1 2007-03-29 Wim Taymans <wim@fluendo.com>
3 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4 (gst_base_rtp_depayload_base_init),
5 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
6 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
7 (gst_base_rtp_depayload_set_gst_timestamp),
8 (gst_base_rtp_depayload_change_state),
9 (gst_base_rtp_depayload_set_property),
10 (gst_base_rtp_depayload_get_property):
11 * gst-libs/gst/rtp/gstbasertpdepayload.h:
12 Add Private structure.
13 Bring element code to 2007.
14 Parse clock-base caps param and use it when generating the
16 Reset variables before going to PAUSED.
19 2007-03-29 Wim Taymans <wim@fluendo.com>
21 * docs/libs/gst-plugins-base-libs-docs.sgml:
22 * docs/libs/gst-plugins-base-libs-sections.txt:
23 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
24 (gst_base_rtp_audio_payload_get_adapter):
28 * gst-libs/gst/rtp/Makefile.am:
29 * gst-libs/gst/rtp/gstrtcpbuffer.c:
30 (gst_rtcp_buffer_new_take_data), (gst_rtcp_buffer_new_copy_data),
31 (gst_rtcp_buffer_validate_data), (gst_rtcp_buffer_validate),
32 (gst_rtcp_buffer_get_packet_count), (read_packet_header),
33 (gst_rtcp_buffer_get_first_packet), (gst_rtcp_packet_move_to_next),
34 (gst_rtcp_buffer_add_packet), (gst_rtcp_packet_remove),
35 (gst_rtcp_packet_get_padding), (gst_rtcp_packet_get_type),
36 (gst_rtcp_packet_get_count), (gst_rtcp_packet_get_length),
37 (gst_rtcp_packet_sr_get_sender_info),
38 (gst_rtcp_packet_sr_set_sender_info),
39 (gst_rtcp_packet_rr_get_ssrc), (gst_rtcp_packet_rr_set_ssrc),
40 (gst_rtcp_packet_get_rb_count), (gst_rtcp_packet_get_rb),
41 (gst_rtcp_packet_add_rb), (gst_rtcp_packet_set_rb),
42 (gst_rtcp_packet_sdes_get_chunk_count),
43 (gst_rtcp_packet_sdes_first_chunk),
44 (gst_rtcp_packet_sdes_next_chunk), (gst_rtcp_packet_sdes_get_ssrc),
45 (gst_rtcp_packet_sdes_first_item),
46 (gst_rtcp_packet_sdes_next_item), (gst_rtcp_packet_sdes_get_item),
47 (gst_rtcp_packet_bye_get_ssrc_count),
48 (gst_rtcp_packet_bye_get_nth_ssrc), (gst_rtcp_packet_bye_add_ssrc),
49 (gst_rtcp_packet_bye_add_ssrcs), (get_reason_offset),
50 (gst_rtcp_packet_bye_get_reason_len),
51 (gst_rtcp_packet_bye_get_reason), (gst_rtcp_packet_bye_set_reason):
52 * gst-libs/gst/rtp/gstrtcpbuffer.h:
53 Add new helper object for parsing and creating RTCP messages.
55 2007-03-29 Sebastian Dröge <slomo@circular-chaos.org>
57 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
58 PCM samples with width=8 must be always unsigned, no matter what
61 2007-03-29 Andy Wingo <wingo@pobox.com>
63 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev): Make
64 perfect offsets also, not just timestamps.
66 * tests/check/elements/videorate.c (test_more): Test that given
67 any incoming offsets, that videorate produces perfect offsets.
69 2007-03-29 Wim Taymans <wim@fluendo.com>
71 * gst-libs/gst/riff/riff-ids.h:
72 Add some more RIFF formats.
74 2007-03-29 Wim Taymans <wim@fluendo.com>
76 * gst-libs/gst/rtp/gstrtpbuffer.c:
77 (gst_rtp_buffer_default_clock_rate):
78 * gst-libs/gst/rtp/gstrtpbuffer.h:
79 Fix fixed payload names and docs.
80 Added method to get the default clock rates of fixed payload types.
81 API: GstRTPBuffer::gst_rtp_buffer_default_clock_rate()
83 2007-03-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
85 * tests/check/pipelines/.cvsignore:
86 Add new vorbisdec test to cvsignore.
88 2007-03-28 Wim Taymans <wim@fluendo.com>
90 * gst-libs/gst/audio/gstbaseaudiosink.c: (slave_method_get_type),
91 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
92 (gst_base_audio_sink_query), (gst_base_audio_sink_get_time),
93 (gst_base_audio_sink_set_property),
94 (gst_base_audio_sink_get_property), (gst_base_audio_sink_event),
95 (clock_convert_external), (gst_base_audio_sink_resample_slaving),
96 (gst_base_audio_sink_skew_slaving),
97 (gst_base_audio_sink_handle_slaving), (gst_base_audio_sink_render),
98 (gst_base_audio_sink_async_play):
99 * gst-libs/gst/audio/gstbaseaudiosink.h:
100 Store private stuff in GstBaseAudioSinkPrivate.
101 Add configurable clock slaving modes property.
102 API:: GstBaseAudioSink::slave-method property
103 Some more latency reporting tweaks.
104 Added skew based clock slaving correction and make it the default until
105 the resampling method is more robust.
107 2007-03-27 Sebastian Dröge <slomo@circular-chaos.org>
109 * gst/audioconvert/audioconvert.c:
110 Add docs to the integer pack functions and implement proper
111 rounding. Before we had rounding towards negative infinity, i.e.
112 always the smaller number was taken. Now we use natural rounding,
113 i.e. rounding to the nearest integer and to the one with the largest
114 absolute value for X.5. The old rounding introduced some minor
115 distortions. Fixes #420079
116 * tests/check/elements/audioconvert.c: (GST_START_TEST):
117 Fix one unit test that assumed the old rounding and added unit tests
118 for checking signed/unsigned int16 <-> signed/unsigned int16 with
119 depth 8, one for signed int16 <-> unsigned int16 and one for the new
120 rounding from signed int32 to signed/unsigned int16.
122 2007-03-27 Michael Smith <msmith@fluendo.com>
124 * gst/audioconvert/gstaudioconvert.c: (strip_width_64),
125 (gst_audio_convert_transform_caps):
126 Fix typo in debug line introduced recently, as pointed out on irc.
128 2007-03-27 Tim-Philipp Müller <tim at centricular dot net>
130 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
131 * tests/check/libs/tag.c: (GST_START_TEST):
132 Make sure we parse floating-point numbers in vorbis comments
133 correctly with either '.' or ',' as separator, no matter what
134 the current locale is. Add unit test for this too.
136 2007-03-26 Tim-Philipp Müller <tim at centricular dot net>
138 Patch by: René Stadler <mail at renestadler de>
140 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_to_vorbis_comments):
141 When writing out floating-point numbers to vorbis comment tags, always
142 use the same character as separator no matter what the current locale is
145 * tests/check/libs/tag.c: (GST_START_TEST):
146 Add unit tests for replaygain tags in vorbis comments (closes #423055).
148 2007-03-26 Thomas Vander Stichele <thomas at apestaart dot org>
150 * ext/vorbis/vorbisdec.c (vorbis_dec_push_forward,
151 vorbis_handle_data_packet):
152 Correctly set DURATION to generate a timestamp-continuous stream.
153 One bug left at the end; see
154 ihttp://bugzilla.gnome.org/show_bug.cgi?id=423086
155 * tests/check/Makefile.am:
156 * tests/check/pipelines/vorbisenc.c (GST_START_TEST):
157 Add a test to check this. Without the above patch this test fails.
159 2007-03-26 Jan Schmidt <thaytan@mad.scientist.com>
161 * gst-libs/gst/rtp/Makefile.am:
162 The base audio payloader uses GstAdapter - we need GST_BASE_LIBS.
164 2007-03-23 Michael Smith <msmith@fluendo.com>
166 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps),
167 (gst_video_rate_reset), (gst_video_rate_chain):
168 If videorate changes caps, we can no longer use the old buffer
169 (which may have a different size, incompatible with our caps).
170 So don't do that; just duplicate the new frame more times.
172 2007-03-22 Jan Schmidt <thaytan@mad.scientist.com>
174 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
175 Remove playbin's override of the set_clock vmethod. It's irrelevant
176 after Wim's commit on the 19th.
178 2007-03-22 Wim Taymans <wim@fluendo.com>
180 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_size),
181 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
182 * ext/gnomevfs/gstgnomevfssrc.h:
183 Don't cache file sizes. Fixes #341078.
185 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
187 * gst/playback/gstplaybin.c: (add_sink):
188 Use GST_PTR_FORMAT to log caps.
190 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
192 Patch by: Young-Ho Cha <ganadist at chollian net>
194 * gst/subparse/samiparse.c: (handle_start_font):
195 Special-case some more colour names that pango doesn't handle by
196 default. Fixes #420578.
198 2007-03-20 Michael Smith <msmith@fluendo.com>
200 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
201 If we get a zero-sized input buffer, don't pass it to libvorbis, as
202 that marks EOS internally. After that, libvorbis will buffer all
203 input data, and encode none of it, eventually leading to memory
206 2007-03-19 Wim Taymans <wim@fluendo.com>
208 * gst/playback/gstdecodebin.c: (remove_fakesink):
209 Don't post STATE_DIRTY anymore.
211 * gst/playback/gstplaybin.c: (add_sink), (gst_play_bin_send_event),
212 (gst_play_bin_change_state):
213 Remove stream_time reset in seek handling, core does that now.
214 Disable clocking for live pipelines by forcing a NULL clock to the
215 complete pipeline, core is too smart now for our previous hack.
216 We can always autoplug in PAUSED now.
218 2007-03-17 David Schleef <ds@schleef.org>
220 * REQUIREMENTS: Update this file, change the formatting to make
221 it more consistent, plus more machine readable.
223 2007-03-16 Michael Smith <msmith@fluendo.com>
225 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
226 (strip_width_64), (append_with_other_format):
227 Previous fix was too simplistic, and broke the tests. Use a better
228 approach; only strip 64 from widths for integer audio.
230 2007-03-16 Michael Smith <msmith@fluendo.com>
232 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
233 (gst_audio_convert_transform_caps):
234 We don't support 64 bit integer audio, so don't try to claim we can.
235 Stops us producing caps don't match our template caps.
238 2007-03-15 Michael Smith <msmith@fluendo.com>
240 * gst/audioresample/gstaudioresample.c:
241 (audioresample_check_discont), (audioresample_transform):
242 Don't trigger discontinuities for very small imperfections; a filter
243 flush will sound bad, and many plugins have rounding errors leading
246 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
248 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
249 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
250 Add min-ptime property to RTP base audio payloader. Patch by
251 olivier.crete@collabora.co.uk.
254 Indentation/whitespace/documentation fixes.
256 2007-03-14 Julien MOUTTE <julien@moutte.net>
258 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
259 (audioresample_transform_size), (audioresample_do_output),
260 (audioresample_transform), (audioresample_pushthrough): Handle
261 discontinuous streams.
262 * gst/audioresample/gstaudioresample.h:
263 * tests/check/elements/audioresample.c:
264 (test_discont_stream_instance), (GST_START_TEST),
265 (audioresample_suite): Add a test for discontinuous streams.
266 * win32/common/config.h: Updated.
268 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
283 Update translations from translation project.
285 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
287 * gst/audioresample/debug.h:
288 * gst/audioresample/resample.c: (resample_init):
289 Since I really am not interested in a debug line for each sample
290 being processed, move the library's debugging to its own category,
293 2007-03-13 Michael Smith <msmith@fluendo.com>
295 * ext/theora/theoradec.c: (theora_handle_type_packet):
296 Since the plugin doesn't support anything other than 4:2:0 right
297 now, post an error and fail if we get something else. Won't matter
298 until libtheora supports the other pixel formats, but hopefully
301 2007-03-10 Sebastien Moutte <sebastien@moutte.net>
303 * gst-libs/gst/audio/gstbaseaudiosink.c:(gst_base_audio_sink_render):
304 Use gst_guint64_to_gdouble for conversion.
306 Add new files to the win32 MANIFEST.
307 * win32/common/libgstaudio.def:
308 * win32/common/libgstpbutils.def:
309 Add new exported functions.
310 * win32/vs6/gst_plugins_base.dsw:
311 * win32/vs6/libgstdecodebin.dsp:
312 * win32/vs6/libgstplaybin.dsp:
313 Change the link to libgstpbutils.lib.
314 * win32/vs6/libgstdecodebin2.dsp:
315 Add a new project for decodebin2.
316 * win32/vs6/libgstpbutils.dsp:
317 Add a new project for pbutils.
319 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
321 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
322 Also accept partial dates with only year and month,
323 like 1999-12-00 (fixes #410396 even more).
325 * tests/check/libs/tag.c: (GST_START_TEST):
326 Add unit test for the above.
328 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
330 * tests/check/elements/subparse.c: (GST_START_TEST),
332 Add unit test for MPL2 subtitle format (#413799).
334 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
336 Patch by: Kamil Pawlowski <kamilpe gmail com>
338 * gst/subparse/Makefile.am:
339 * gst/subparse/gstsubparse.c:
340 (gst_sub_parse_data_format_autodetect),
341 (gst_sub_parse_format_autodetect), (gst_sub_parse_sink_event),
342 (gst_subparse_type_find):
343 * gst/subparse/gstsubparse.h:
344 * gst/subparse/mpl2parse.c: (mpl2_parse_line), (parse_mpl2):
345 * gst/subparse/mpl2parse.h:
346 Add support for MPL2 subtitle format (#413799).
348 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
351 We require core CVS for the new buffer metadata copy functions.
353 2007-03-09 Wim Taymans <wim@fluendo.com>
355 * gst-libs/gst/tag/gstid3tag.c:
356 Add read support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
359 Patch by: Alex Lancaster <alexl at users sourceforge net>
361 2007-03-09 Wim Taymans <wim@fluendo.com>
363 * ext/libvisual/visual.c: (gst_visual_sink_setcaps),
364 (gst_vis_src_negotiate), (get_buffer), (gst_visual_chain):
365 Improve adapter usage and comments.
367 2007-03-09 Wim Taymans <wim@fluendo.com>
369 * ext/pango/gsttextrender.c: (gst_text_render_chain):
370 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_parse_packet):
371 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_copy):
372 Use new metadata copy function.
374 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
375 (gst_ffmpegcsp_transform):
376 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform):
377 Basetransform copied the metadata for us.
379 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
381 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
382 (gst_text_overlay_video_event):
383 Some more logging. Only accept newsegment events in TIME format and
384 send a WARNING message if they are not in TIME format.
386 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
387 (gst_sub_parse_init), (gst_sub_parse_src_event), (handle_buffer),
388 (gst_sub_parse_chain), (gst_sub_parse_sink_event):
389 * gst/subparse/gstsubparse.h:
390 No need to allocate GstSegment structure dynamically, just put it
391 into the instance structure; ignore newsegment events in BYTE
392 format and in particular don't let it overwrite our saved TIME
393 segment from the last seek.
395 2007-03-09 Michael Smith <msmith@fluendo.com>
397 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find):
398 Replace AC3 typefinder with one that isn't terrible, and actually
401 2007-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
403 * gst/audioconvert/gstaudioconvert.c:
404 (gst_audio_convert_transform):
405 fix error category and translatable string
408 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
410 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
411 * pkgconfig/gstreamer-plugins-base.pc.in:
412 Fix up utils => pbutils here too.
414 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
416 * gst/subparse/gstsubparse.c: (handle_buffer):
417 Break out of loop in chain function as soon as possible if we get
418 a non-OK flow return.
420 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
422 * tests/check/elements/alsa.c: (GST_START_TEST):
423 Unref the mixer if the state change fails too (if the
424 alsa devices are inaccessible, for example)
426 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
428 * tests/check/Makefile.am:
429 Don't test libvisual elements in the states check, because libvisual
430 seems to leak internally.
432 Re-enable the alsa and states tests now that there's new suppressions
435 * tests/check/elements/alsa.c: (GST_START_TEST):
436 Don't leak the alsamixer we instantiated.
438 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
440 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
441 (gst_ximagesink_change_state), (gst_ximagesink_reset),
442 (gst_ximagesink_finalize):
443 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
444 (gst_xvimagesink_reset), (gst_xvimagesink_finalize):
445 Move some cleanup stuff from the state change handler into a _reset()
446 function that can be called from _finalize(). This ensures that things
447 get freed even if (for some reason) the NULL->READY state transition
448 fails in the parent class.
449 Even if a parent state change fails, process our downward state change
450 logic instead of bailing out early.
451 Free the correct xcontext pointer in ximagesink's xcontext_clear.
453 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
455 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
458 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_init):
459 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_init):
460 Use pango_font_description_set_family_static instead of
461 pango_font_description_set_family to save a string copy (it was
462 leaking due to the strdup anyway)
464 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_finalize):
465 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_finalize):
466 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_finalize):
467 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_finalize):
468 Chain up in finalize.
470 2007-03-07 Tim-Philipp Müller <tim at centricular dot net>
472 * gst-libs/gst/interfaces/mixertrack.c:
473 (gst_mixer_track_class_init), (gst_mixer_track_get_property),
474 (gst_mixer_track_set_property):
475 API: add "untranslated-label" property which should be set by
476 implementations at construct time (#414645).
478 * ext/alsa/gstalsamixeroptions.c: (gst_alsa_mixer_options_new):
479 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
480 Set "untranslated-label" when constructing mixer track objects.
482 * tests/check/elements/alsa.c: (GST_START_TEST), (alsa_suite):
483 Unit test to check the above.
485 2007-03-07 Wim Taymans <wim@fluendo.com>
487 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
488 Fix confusing debug message.
490 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
492 * gst-plugins-base.doap:
493 update doap file with new version
495 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
500 === release 0.10.12 ===
502 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
505 releasing 0.10.12, "Zombie Horde"
507 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
510 Bump version to 0.10.11.4 pre-release
512 2007-03-06 Wim Taymans <wim@fluendo.com>
514 * gst-libs/gst/audio/gstbaseaudiosink.c:
515 (gst_base_audio_sink_async_play):
516 Fix regression that made GStreamer skip the first samples of audio.
519 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
522 Bump version to 0.10.11.3 pre-release
524 2007-03-05 Sebastian Dröge <slomo@circular-chaos.org>
527 Update paths for the rename from utils to pbutils to fix the build.
529 2007-03-05 Tim-Philipp Müller <tim at centricular dot net>
531 * gst-libs/gst/pbutils/Makefile.am:
532 Change directory to install headers in from gst/utils to gst/pbutils
535 2007-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
538 * docs/libs/gst-plugins-base-libs-docs.sgml:
539 * docs/libs/gst-plugins-base-libs-sections.txt:
540 * gst-libs/gst/Makefile.am:
541 * gst-libs/gst/interfaces/mixer.c:
542 * gst-libs/gst/pbutils/Makefile.am:
543 * gst-libs/gst/pbutils/descriptions.c:
544 (gst_pb_utils_get_source_description),
545 (gst_pb_utils_get_sink_description),
546 (gst_pb_utils_get_decoder_description),
547 (gst_pb_utils_get_encoder_description),
548 (gst_pb_utils_get_element_description),
549 (gst_pb_utils_add_codec_description_to_tag_list),
550 (gst_pb_utils_get_codec_description), (gst_pb_utils_list_all):
551 * gst-libs/gst/pbutils/descriptions.h:
552 * gst-libs/gst/pbutils/install-plugins.c:
553 * gst-libs/gst/pbutils/install-plugins.h:
554 * gst-libs/gst/pbutils/missing-plugins.c:
555 (gst_missing_uri_source_message_new),
556 (gst_missing_uri_sink_message_new),
557 (gst_missing_element_message_new),
558 (gst_missing_decoder_message_new),
559 (gst_missing_encoder_message_new),
560 (gst_missing_plugin_message_get_description):
561 * gst-libs/gst/pbutils/missing-plugins.h:
562 * gst-libs/gst/pbutils/pbutils.c: (gst_pb_utils_init):
563 * gst-libs/gst/pbutils/pbutils.h:
564 * gst-libs/gst/utils/Makefile.am:
565 * gst-libs/gst/utils/base-utils.c:
566 * gst-libs/gst/utils/base-utils.h:
567 * gst-libs/gst/utils/descriptions.c:
568 * gst-libs/gst/utils/descriptions.h:
569 * gst-libs/gst/utils/install-plugins.c:
570 * gst-libs/gst/utils/install-plugins.h:
571 * gst-libs/gst/utils/missing-plugins.c:
572 * gst-libs/gst/utils/missing-plugins.h:
573 * gst-plugins-base.spec.in:
574 * gst/playback/Makefile.am:
575 * gst/playback/gstdecodebin.c:
576 * gst/playback/gstdecodebin2.c:
577 * gst/playback/gstplaybasebin.c: (setup_subtitle),
578 (gen_source_element):
579 * gst/playback/gstplaybin.c: (plugin_init):
580 * tests/check/Makefile.am:
581 * tests/check/libs/pbutils.c: (GST_START_TEST),
582 (test_pb_utils_install_plugins_do_callout), (libgstpbutils_suite):
583 * tests/check/libs/utils.c:
584 rename utils to pbutils
586 2007-03-02 Jan Schmidt <thaytan@mad.scientist.com>
588 * docs/plugins/Makefile.am:
589 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
590 * docs/plugins/gst-plugins-base-plugins-sections.txt:
591 * docs/plugins/inspect/plugin-decodebin2.xml:
592 * gst/playback/gstdecodebin2.c: (gst_decode_bin_class_init):
593 Add documentation for decodebin2 that indicates that the API
596 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
599 Update to 0.10.11.2 (0.10.12 pre-release)
601 2007-03-01 Wim Taymans <wim@fluendo.com>
603 * gst-libs/gst/audio/gstbaseaudiosink.c:
604 (gst_base_audio_sink_async_play):
605 base time is irrelevant here.
607 2007-03-01 Wim Taymans <wim@fluendo.com>
609 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
610 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
613 * gst-libs/gst/audio/gstbaseaudiosink.c:
614 (gst_base_audio_sink_query), (gst_base_audio_sink_event),
615 (gst_base_audio_sink_render), (gst_base_audio_sink_async_play):
616 Improve latency and clock slaving calculations.
617 Improve slave clock calibration.
619 * gst-libs/gst/audio/gstringbuffer.c:
620 (gst_ring_buffer_commit_full):
621 When we are asked to render N sample to 0 bytes, return N.
623 2007-03-01 Wim Taymans <wim@fluendo.com>
625 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
626 (gst_alsasink_write), (gst_alsasink_reset):
627 * ext/alsa/gstalsasink.h:
628 Remove unused dispose function.
629 Rename lock to not interfere with alsasrc lock.
631 * ext/alsa/gstalsasrc.c: (gst_alsasrc_finalize),
632 (gst_alsasrc_class_init), (gst_alsasrc_init), (set_swparams),
633 (gst_alsasrc_read), (gst_alsasrc_reset):
634 * ext/alsa/gstalsasrc.h:
635 Implement finalize function.
636 Use lock to protect alsa access.
640 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
643 Convert to new AG_GST style.
645 2007-02-28 Wim Taymans <wim@fluendo.com>
647 Patch by: Ed Catmur <ed at catmur dot co dot uk>
649 * gst/playback/gstplaybin.c: (gst_play_bin_vis_unblocked),
650 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
651 Fix race condition when rapidly switching visualisations in playbin.
654 2007-02-28 Jan Schmidt <thaytan@mad.scientist.com>
656 * tests/check/Makefile.am:
657 Include local stuff before system installed things in LDFLAGS and
660 2007-02-28 Wim Taymans <wim@fluendo.com>
662 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_sink_activate):
665 2007-02-28 Wim Taymans <wim@fluendo.com>
667 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
668 (gst_v4lsrc_fixate), (gst_v4lsrc_query):
669 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_buffer_new):
670 Fix duration and timestamping, taking latency into account.
671 Implement latency query.
673 2007-02-28 Wim Taymans <wim@fluendo.com>
675 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
676 (gst_audio_clock_new):
679 * gst-libs/gst/audio/gstbaseaudiosink.c:
680 (gst_base_audio_sink_init), (gst_base_audio_sink_query):
681 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
682 (gst_base_audio_src_query), (gst_base_audio_src_get_offset),
683 (gst_base_audio_src_create):
684 Improve latency query code.
685 Use proper clock names.
687 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
689 * tests/check/generic/states.c: (GST_START_TEST):
690 Copy the states.c test from core again
691 * tests/check/Makefile.am:
692 ignore cdio and cdparanoiasrc
694 2007-02-28 Stefan Kost <ensonic@users.sf.net>
696 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
697 (double_hq), (audio_convert_get_func_index), (check_default),
698 (audio_convert_prepare_context), (audio_convert_convert):
699 Also make valgrind happy and avoid copying data in some cases.
701 2007-02-28 Stefan Kost <ensonic@users.sf.net>
703 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
704 (double_hq), (audio_convert_get_func_index),
705 (audio_convert_prepare_context), (audio_convert_convert):
706 * gst/audioconvert/gstaudioconvert.c:
707 (gst_audio_convert_class_init), (gst_audio_convert_get_unit_size),
708 (gst_audio_convert_transform_caps):
709 * tests/check/elements/audioconvert.c: (GST_START_TEST),
710 (audioconvert_suite):
711 Don't run inplace if that overwrites source data as we go. Add more
712 tests. Fixes #339837 even more.
714 2007-02-27 Julien MOUTTE <julien@moutte.net>
716 * tests/examples/seek/seek.c: (do_seek), (set_update_scale),
717 (msg_segment_done): Fix various seeking bugs (Slider was not
718 updating when doing a non flushing seek, Reverse playback
719 on segment seek was wrong).
721 2007-02-26 Wim Taymans <wim@fluendo.com>
723 * tests/examples/seek/seek.c: (stop_seek):
724 When we stop scrubbing, don't leave the pipeline PLAYING when we
725 requested a PAUSED state.
727 2007-02-25 Tim-Philipp Müller <tim at centricular dot net>
729 Patch by: René Stadler <mail at renestadler de>
731 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
732 Parse date strings in vorbis comments that have an invalid (zero)
733 month or day (#410396).
735 * tests/check/libs/tag.c: (GST_START_TEST):
736 Test case for the above.
738 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
740 Patch by: Loïc Minier <lool+gnome at via ecp fr>
743 * ext/alsa/Makefile.am:
744 * gst/audiotestsrc/Makefile.am:
745 Fix compilation with LDFLAGS='-Wl,-z,defs' (#410963).
747 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
749 * gst/playback/gstplaybin.c:
750 Improve docs: point out that the application needs to assist playbin
753 2007-02-23 Tim-Philipp Müller <tim at centricular dot net>
755 * gst-libs/gst/utils/install-plugins.c:
756 * gst-libs/gst/utils/missing-plugins.c:
757 * tests/check/libs/utils.c: (missing_msg_check_getters):
758 Change GStreamer marker prefix in detail string from 'gstreamer.net'
759 to just 'gstreamer'. Document the caps string component of the
760 decoder/encoder detail a bit better, since not everyone will be
761 familiar with the GStreamer media type/caps system (but they better
762 enjoy nested itemized lists).
764 2007-02-22 Tim-Philipp Müller <tim at centricular dot net>
766 * gst-libs/gst/netbuffer/gstnetbuffer.c:
767 (notgst_buffer_copy_fields_in_place), (gst_netbuffer_copy):
768 Fix copying of GstNetBuffer (would crash before, or at least lead to
769 invalid memory access, #410772), for now by copying the GstBuffer copy
770 code from the core over here so we can copy the GstBuffer fields on a
771 provided buffer instance (of type GstNetBuffer in this case). Would be
772 better to fix this with some support by the core though (and in the long
773 run change the broken GstBuffer/GstMiniObject copy semantics, #393099).
775 * tests/check/Makefile.am:
776 Enable unit test for GstNetBuffer.
778 2007-02-22 Andy Wingo <wingo@pobox.com>
780 * gst-libs/gst/audio/gstbaseaudiosink.c
781 (gst_base_audio_sink_init): Disable pull-mode activation until we
782 figure out how to make audio sinks go to PLAYING.
784 2007-02-22 Stefan Kost <ensonic@users.sf.net>
786 * gst/audioconvert/audioconvert.c: (float), (double), (float_hq),
787 (double_hq), (audio_convert_get_func_index),
788 (audio_convert_prepare_context), (audio_convert_convert):
789 * gst/audioconvert/audioconvert.h:
790 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_setup_matrix),
791 (gst_channel_mix_mix_int), (gst_channel_mix_mix_float):
792 * gst/audioconvert/gstchannelmix.h:
793 * tests/check/elements/audioconvert.c: (GST_START_TEST):
794 Add float as an intermediate format, as well as float mixing. Enable
795 test that was failing before. Fixes #339837
797 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
799 * tests/examples/seek/seek.c: (do_seek):
800 Undo the previous commit: -1 as a stop time implies that the stop
801 time is the end of file, clearing any previously configured segment.
803 2007-02-21 Jan Schmidt <thaytan@mad.scientist.com>
805 * tests/examples/seek/seek.c: (do_seek):
806 Don't SEEK_SET with a stop time of -1, use SEEK_NONE instead.
808 2007-02-21 Stefan Kost <ensonic@users.sf.net>
810 * gst/volume/gstvolume.c: (volume_process_int16),
811 (volume_process_int16_clamp), (volume_set_caps):
812 Unbreak volume, value remains gint.
814 2007-02-21 Stefan Kost <ensonic@users.sf.net>
816 * gst/volume/gstvolume.c: (volume_choose_func),
817 (volume_update_real_volume), (gst_volume_set_volume),
818 (gst_volume_init), (volume_process_double), (volume_process_float),
819 (volume_process_int16), (volume_process_int16_clamp),
820 (volume_set_caps), (volume_transform_ip), (volume_update_volume):
821 * gst/volume/gstvolume.h:
822 Extend float audio support (double) and some int->uint cleanups.
824 2007-02-20 Edward Hervey <edward@fluendo.com>
826 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose),
827 (multi_queue_underrun_cb), (gst_decode_group_check_if_drained),
828 (sort_end_pads), (gst_decode_group_expose),
829 (gst_decode_group_hide):
830 Don't free groups from the streaming threads. Just put them aside and
831 free them in dispose.
833 2007-02-20 Edward Hervey <edward@fluendo.com>
835 * gst/playback/gstdecodebin2.c: (connect_element),
836 (pad_added_group_cb), (gst_decode_group_check_if_blocked),
837 (sort_end_pads), (gst_decode_group_expose):
838 Handle dynamic pads within groups.
839 Sort pads before exposing them in order to make playbin happy.
840 There still is a race with the multiqueue filling up. This should be
844 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
846 * gst-libs/gst/utils/base-utils.c:
847 * gst-libs/gst/utils/descriptions.c:
848 * gst-libs/gst/utils/install-plugins.c:
849 * gst-libs/gst/utils/missing-plugins.c:
850 Some more docs (and descriptions for two subtitle formats).
852 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
854 * gst-libs/gst/audio/audio.c:
857 2007-02-16 Tim-Philipp Müller <tim at centricular dot net>
859 Patch by: Yves Lefebvre <ivanohe abacom com>
861 * gst/videorate/gstvideorate.c: (gst_video_rate_setcaps):
862 Don't leak caps. Fixes #408278.
864 2007-02-15 Stefan Kost <ensonic@users.sf.net>
866 * ext/cdparanoia/gstcdparanoiasrc.h:
867 * ext/ogg/gstoggdemux.h:
868 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
869 (gst_audio_frame_length), (gst_audio_duration_from_pad_buffer),
870 (gst_audio_is_buffer_framed), (gst_audio_structure_set_int):
871 * gst-libs/gst/audio/audio.h:
872 * gst-libs/gst/audio/gstaudiofilter.h:
873 * gst-libs/gst/interfaces/videoorientation.h:
874 * gst/adder/gstadder.h:
875 More docs coverage and some ChangeLog surgery (add missing names)
877 2007-02-15 Wim Taymans <wim@fluendo.com>
879 * sys/ximage/ximagesink.c:
880 (gst_ximagesink_calculate_pixel_aspect_ratio):
881 * sys/xvimage/xvimagesink.c:
882 (gst_xvimagesink_calculate_pixel_aspect_ratio):
883 Small constifications.
885 2007-02-15 Wim Taymans <wim@fluendo.com>
887 * gst-libs/gst/audio/gstbaseaudiosink.c:
888 (gst_base_audio_sink_class_init), (gst_base_audio_sink_query),
889 (gst_base_audio_sink_render), (gst_base_audio_sink_callback),
890 (gst_base_audio_sink_async_play),
891 (gst_base_audio_sink_change_state):
892 Answer latency query.
893 Use configured latency when syncing.
896 * gst-libs/gst/audio/gstbaseaudiosrc.c:
897 (gst_base_audio_src_class_init), (gst_base_audio_src_dispose),
898 (gst_base_audio_src_query), (gst_base_audio_src_change_state):
899 Fix possible memleak.
900 Implement latency query.
903 2007-02-15 Wim Taymans <wim@fluendo.com>
905 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
906 Ignore errors in reset, these are not fatal. They also grab the element
907 lock which is already taking when this function is called. Fixes
910 2007-02-13 Stefan Kost <ensonic@users.sf.net>
913 Remove 'tests/examples/xerror/Makefile' from output files again.
915 2007-02-13 Stefan Kost <ensonic@users.sf.net>
918 * docs/plugins/Makefile.am:
919 Also crossref against gst-plugins-base-libs.
921 2007-02-12 Stefan Kost <ensonic@users.sf.net>
924 * docs/libs/Makefile.am:
925 * docs/plugins/Makefile.am:
926 Add crossreferences to glib/gobject/gstream docs.
928 * gst-libs/gst/audio/audio.h:
931 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
932 Add own debug category.
934 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
936 Patch by: René Stadler <mail at renestadler de>
938 * gst-libs/gst/tag/gstvorbistag.c:
939 Add vorbis/FLAC-tag mapping for new GST_TAG_REFERENCE_LEVEL
942 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
944 * gst/playback/gstplaybasebin.c: (setup_source):
945 When we have external subtitles and wait for the subtitle decodebin
946 to get up and running, we set up a (sync) bus handler for the
947 subtitle decodebin, so we can stop waiting when it posts an error
948 message. However, we should do that before we set the subtitle
949 decodebin's state to playing, otherwise things are racy and we might
950 miss error messages posted before we had a chance to set up the bus.
951 This should finally fix totem hanging on .txt pseudo-subtitle files.
953 2007-02-10 Sébastien Moutte <sebastien at moutte dot net>
955 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:(gst_base_rtp_audio_payload_handle_frame_based_buffer):
956 Use gst_gdouble_to_guint64 for conversions.
957 * win32/common/config.h.in:
958 Add a define for GST_INSTALL_PLUGINS_HELPER
959 * win32/common/libgstaudio.def:
960 * win32/common/libgstcdda.def:
961 * win32/common/libgstnetbuffer.def:
962 * win32/common/libgstrtp.def:
963 * win32/common/libgutils.def:
964 Add new exported functions.
965 * win32/vs6/gst_plugins_base.dsw:
966 * win32/vs6/libgstdecodebin.dsp:
967 * win32/vs6/libgstnetbuffer.dsp:
968 * win32/vs6/libgstplaybin.dsp:
969 * win32/vs6/libgstrtp.dsp:
970 * win32/vs6/libgstvorbis.dsp:
971 * win32/vs6/libgstcdda.dsp:
972 * win32/vs6/libgstgdp.dsp:
973 * win32/vs6/libgstutils.dsp:
974 Update and add new project files.
976 2007-02-10 Tim-Philipp Müller <tim at centricular dot net>
978 * gst/subparse/gstsubparse.c: (subrip_remove_unhandled_tag),
979 (subrip_remove_unhandled_tags), (parse_subrip):
980 For SubRip (.srt) subtitles, ignore all markup tags we don't
981 handle (like font tags, for example).
983 * tests/check/elements/subparse.c:
986 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
988 * gst/playback/gstdecodebin.c: (add_fakesink),
989 (gst_decode_bin_change_state):
990 * gst/playback/gstdecodebin2.c: (add_fakesink),
991 (gst_decode_bin_change_state):
992 Don't error out if there is no fakesink in the NULL to READY state
993 change, since when decodebin is re-used, we're only adding the
994 fakesink element in READY to PAUSED.
996 * tests/check/elements/decodebin.c:
997 (new_decoded_pad_plug_fakesink_cb), (GST_START_TEST),
999 Minimal unit test to make sure we can use the same decodebin
1000 instance twice (at least with audiotestsrc input).
1002 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
1004 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name):
1005 Try to get devic-name from device string first, and from handle only
1006 as fallback (seems to yield better results and is more robust
1007 against buggy probing code on the application side).
1009 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
1011 Based on patch by: Julien Puydt <julien.puydt at laposte net>
1013 * ext/alsa/gstalsa.c: (gst_alsa_find_device_name_no_handle),
1014 (gst_alsa_find_device_name):
1015 * ext/alsa/gstalsa.h:
1016 * ext/alsa/gstalsasink.c: (gst_alsasink_get_property):
1017 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_property):
1018 Improve device-name detection a bit, especially in the case where
1019 the device is not actually open (#405020, #405024). Move common code
1020 into gstalsa.c instead of duplicating it.
1022 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
1024 * gst/audioconvert/gstaudioconvert.c:
1025 Fix up docs chunk so that gtk-doc doesn't complain, and fix typo.
1027 2007-02-06 Julien MOUTTE <julien@moutte.net>
1029 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents),
1030 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_clear),
1031 (gst_xvimagesink_interface_supported),
1032 (gst_xvimagesink_probe_get_properties),
1033 (gst_xvimagesink_probe_probe_property),
1034 (gst_xvimagesink_probe_needs_probe),
1035 (gst_xvimagesink_probe_get_values),
1036 (gst_xvimagesink_property_probe_interface_init),
1037 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1038 (gst_xvimagesink_init), (gst_xvimagesink_class_init),
1039 (gst_xvimagesink_get_type):
1040 * sys/xvimage/xvimagesink.h: Implement PropertyProbe Interface
1041 for XVAdaptors so that one can choose the adaptor to use with
1042 gstreamer-properties.
1044 2007-02-06 Stefan Kost <ensonic@users.sf.net>
1046 * gst/audioconvert/gstaudioconvert.c:
1047 Also mention that a conversion from double to float is suboptimal still.
1049 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
1051 * gst-libs/gst/audio/gstaudiofilter.c:
1052 (gst_audio_filter_class_init), (gst_audio_filter_change_state):
1053 Clear our formats structure and free the caps contained in it when
1056 2007-02-05 Andy Wingo <wingo@pobox.com>
1058 * gst-libs/gst/audio/gstbaseaudiosink.c
1059 (gst_base_audio_sink_callback): Update basesink->offset so that we
1060 pull monotonically increasing offsets instead of, um, seeking back
1061 to 0 each time. Fixes alsasrc ! alsasink!
1063 2007-02-05 Tim-Philipp Müller <tim at centricular dot net>
1065 * gst/videoscale/gstvideoscale.c:
1066 A width and height of 1 makes us crash, so increase minimum size to
1067 2x2 pixels until someone feels like fixing this (#404512).
1069 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
1071 * tests/check/pipelines/oggmux.c: (GST_START_TEST), (oggmux_suite):
1072 Add small test to make sure request pads are cleaned up properly
1073 even if oggmux never changes state out of NULL.
1075 2007-02-04 Tim-Philipp Müller <tim at centricular dot net>
1077 * tests/check/libs/utils.c: (GST_START_TEST):
1078 Fix unit test. Turns out things work much better when you
1079 NULL-terminate string arrays. Should make p5 build bot happy again.
1081 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1083 * gst-libs/gst/audio/Makefile.am:
1084 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1085 (gst_audio_filter_template_base_init),
1086 (gst_audio_filter_template_class_init),
1087 (gst_audio_filter_template_init),
1088 (gst_audio_filter_template_set_property),
1089 (gst_audio_filter_template_get_property),
1090 (gst_audio_filter_template_setup),
1091 (gst_audio_filter_template_filter),
1092 (gst_audio_filter_template_filter_inplace), (plugin_init):
1093 Oops, forgot to commit fixed-up example.
1095 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1097 * docs/libs/gst-plugins-base-libs-sections.txt:
1098 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
1099 (gst_audio_filter_class_init), (gst_audio_filter_init),
1100 (gst_audio_filter_set_caps),
1101 (gst_audio_filter_class_add_pad_templates):
1102 * gst-libs/gst/audio/gstaudiofilter.h:
1103 Port GstAudioFilter to 0.10. This change technically breaks
1104 API and ABI (and thus also every library developer's heart),
1105 but seems justifiable on the grounds that the base class was
1106 completely unusable before (ie. would crash immediately when
1107 actually used). Fixes #403963 (and eventually also #403572).
1108 Also document all of this a bit.
1110 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1112 * gst-libs/gst/utils/install-plugins.c:
1113 (gst_install_plugins_spawn_child):
1114 * tests/check/libs/utils.c:
1115 (test_base_utils_install_plugins_do_callout):
1116 Lowering log level to see why things fail on the p5 build bot;
1117 fix some typos in unit test messages.
1119 2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
1121 * tests/check/libs/utils.c:
1122 (test_base_utils_install_plugins_do_callout):
1123 Don't hard-code temp directory for test helper; use GLib functions
1124 to write out file and do error checking etc.
1126 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1128 * gst-libs/gst/utils/Makefile.am:
1129 * gst-libs/gst/utils/base-utils.h:
1130 * gst-libs/gst/utils/install-plugins.c:
1131 (gst_install_plugins_context_set_xid),
1132 (gst_install_plugins_context_new),
1133 (gst_install_plugins_context_free),
1134 (gst_install_plugins_get_helper),
1135 (gst_install_plugins_spawn_child),
1136 (gst_install_plugins_return_from_status),
1137 (gst_install_plugins_installer_exited),
1138 (gst_install_plugins_async), (gst_install_plugins_sync),
1139 (gst_install_plugins_return_get_name),
1140 (gst_install_plugins_installation_in_progress):
1141 * gst-libs/gst/utils/install-plugins.h:
1142 API: add API for applications to initiate installation of missing
1143 plugins, ie. gst_install_plugins_async() primarily.
1144 Based on libgimme-codec by Ryan Lortie.
1147 Add --with-install-plugins-helper configure option so distros can specify
1148 the path of the helper script or program to call when plugin installation
1149 is requested (distros: please do any argument munging in this helper
1150 script instead of patching GStreamer to pass arguments differently
1151 to another program directly).
1153 * docs/libs/gst-plugins-base-libs-docs.sgml:
1154 * docs/libs/gst-plugins-base-libs-sections.txt:
1155 Build and document new API.
1157 * tests/check/libs/utils.c: (result_cb),
1158 (test_base_utils_install_plugins_do_callout), (GST_START_TEST),
1159 (libgstbaseutils_suite):
1160 Some simple checks for the new API.
1162 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1164 * tests/check/elements/audioconvert.c: (test_float_conversion):
1165 Add small test for 32bit float <=> 64bit float conversion (works
1166 only one way so far, 32=>64 produces structured noise).
1168 2007-02-02 Tim-Philipp Müller <tim at centricular dot net>
1170 * gst/audioconvert/gstaudioconvert.c:
1171 (set_structure_widths_32_and_64), (make_lossless_changes):
1172 We don't support floats with a width of 40, 48 or 56 bits.
1174 2007-02-02 Stefan Kost <ensonic@users.sf.net>
1176 * gst/audioconvert/audioconvert.c: (float), (double),
1177 (audio_convert_get_func_index):
1178 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
1179 (make_lossless_changes):
1180 Support for 64-bit float audio in audioconvert (#339837)
1182 2007-02-01 Tim-Philipp Müller <tim at centricular dot net>
1184 Patch by: Holger Wansing <linux wansing-online de>
1188 Add German translation (#352069).
1190 2007-02-01 Sebastian Dröge <slomo@circular-chaos.org>
1192 reviewed by: Wim Taymans <wim@fluendo.com>
1194 * ext/ogg/gstoggmux.c: (gst_ogg_mux_ogg_pad_destroy_notify),
1195 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad):
1196 Use newly added GstCollectPads API to free the allocated resources in
1197 the GstOggPad structures (#402393).
1199 2007-01-31 Jan Schmidt <thaytan@mad.scientist.com>
1201 * gst/playback/gstplaybin.c: (gen_vis_element):
1202 Add audioresample+audioconvert in front of the visualisation
1203 element, so that elements like libvisual 0.4 that don't support all
1204 samplerates can work.
1208 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
1210 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property),
1211 (gst_play_base_bin_get_streaminfo_value_array):
1212 Take some locks and make a copy of the streaminfo value array we
1213 maintain while holding the lock, so that the application can
1214 retrieve the stream-info as a value array in a thread-safe way.
1216 2007-01-30 Wim Taymans <wim@fluendo.com>
1218 * gst/audioconvert/gstaudioconvert.c:
1219 Don't fail on 0 sized buffers. Fixes #396835.
1221 2007-01-29 David Schleef <ds@schleef.org>
1223 * gst/typefind/gsttypefindfunctions.c:
1224 Detect BBCD as video/x-dirac, so we can play raw dirac
1227 2007-01-29 Tim-Philipp Müller <tim at centricular dot net>
1229 * ext/theora/theoraenc.c: (theora_enc_chain):
1230 Check return value of theora_encode_header(), or we might try to
1231 allocate a random number of bytes. theora_encode_header() can fail
1232 if libtheora has been compiled with encoding support disabled.
1235 2007-01-29 Wim Taymans <wim@fluendo.com>
1237 * tests/check/gst/.cvsignore:
1238 Do as buildbot says.
1240 2007-01-29 Wim Taymans <wim@fluendo.com>
1242 * ext/libvisual/visual.c: (gst_visual_src_setcaps):
1243 Fix strides in libvisual. Gst uses X strides.
1244 Inspired by: <ed at catmur dot co dot uk> and
1245 <tim at centricular dot net>
1248 2007-01-27 Wim Taymans <wim@fluendo.com>
1250 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
1251 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
1252 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_do_seek),
1253 (gst_ogg_demux_perform_seek),
1254 (gst_ogg_demux_bisect_forward_serialno),
1255 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
1256 (gst_ogg_demux_find_chains), (gst_ogg_demux_handle_page),
1257 (gst_ogg_demux_chain), (gst_ogg_demux_combine_flows),
1258 (gst_ogg_demux_loop_reverse), (gst_ogg_demux_loop):
1259 * ext/ogg/gstoggdemux.h:
1260 Properly propagate streaming errors when we are scanning the file for
1261 chains so that we don't crash when shut down. Might fix some crashers
1262 when quickly switching oggs in RB such as #332503 and #378436.
1264 2007-01-26 Tim-Philipp Müller <tim at centricular dot net>
1266 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
1267 Map a gnome-vfs HOST_NOT_FOUND error into a GStreamer NOT_FOUND
1270 2007-01-25 Wim Taymans <wim@fluendo.com>
1272 * gst/playback/gstplaybasebin.c: (remove_source):
1273 Don't try to disconnect a signal from a finalized object.
1275 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1277 * gst/playback/gstdecodebin2.c: (gst_decode_bin_dispose):
1278 Cast lock macro parameters to make sure we're actually accessing the
1279 lock member at the right class level. Free list itself in _dispose()
1280 as well and NULL it in case dispose gets called multiple times.
1282 2007-01-25 Edward Hervey <edward@fluendo.com>
1284 * gst/playback/gstdecodebin2.c:
1285 (gst_decode_bin_dispose),(gst_decode_bin_finalize):
1286 Free GstDecodeGroups no longer used.
1287 (gst_decode_group_expose):
1288 Don't unlock too many times !
1289 (deactivate_free_recursive):
1290 Free iterator once we're done with it.
1291 Fix for recursively deactivating elements (stop at ghostpads).
1293 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1295 * gst/playback/gstplaybin.c: (handoff):
1296 Fix up caps on the frame buffer before we save it and potentially
1297 make it accessible to other threads via g_object_get; also use
1298 gst_buffer_replace() instead of gst_mini_object_replace().
1300 2007-01-25 Tim-Philipp Müller <tim at centricular dot net>
1302 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1303 Make getting the current frame thread-safe.
1305 2007-01-25 Edward Hervey <edward@fluendo.com>
1307 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize),
1308 (gst_decode_group_new), (gst_decode_group_free):
1309 Set queues to bigger sizes to cope with HD contents.
1310 Fix some mutex freeing and add comment about MT safe methods.
1312 2007-01-24 Tim-Philipp Müller <tim at centricular dot net>
1314 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1315 (gst_text_overlay_text_event):
1316 Don't unnecessarily ref (and then leak) upstream events if the text
1317 pad is not linked. Fixes #399948.
1319 * tests/check/gst-plugins-base.supp:
1320 Add suppression for pango on edgy/x86 for textoverlay test.
1322 2007-01-24 Wim Taymans <wim@fluendo.com>
1324 * gst-libs/gst/rtp/gstrtpbuffer.h:
1325 Add some more fixed payloads.
1327 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1329 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_read_chain):
1330 Error out properly if we get an error from libogg while reading the
1331 BOS page(s). Fixes crash parsing 'fuzzed' ogg file (#399340).
1333 2007-01-23 Tim-Philipp Müller <tim at centricular dot net>
1335 * gst/playback/gstdecodebin2.c: (gst_decode_bin_finalize):
1338 * tests/check/elements/playbin.c:
1339 (test_sink_usage_video_only_stream),
1340 (test_suburi_error_unknowntype), (test_suburi_error_invalidfile),
1341 (test_suburi_error_wrongproto), (test_missing_urisource_handler),
1342 (test_missing_suburisource_handler),
1343 (test_missing_primary_decoder), (playbin_suite):
1344 Run all tests once with decodebin and once with decodebin2.
1345 One test does not pass yet with decodebin2.
1347 2007-01-23 Edward Hervey <edward@fluendo.com>
1349 * ext/ogg/gstoggmux.c: (all_pads_eos), (gst_ogg_mux_collected):
1350 Fix the cases where oggmux doesn't properly figure out that all
1351 sinkpads have gone EOS, and therefore doesn't push out the remaining
1352 buffers and the final EOS event.
1355 2007-01-23 Julien MOUTTE <julien@moutte.net>
1357 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1358 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1359 Don't lock on navigation event push, just on keysym to string.
1360 Fixes #397673 again.
1362 2007-01-22 Edward Hervey <edward@fluendo.com>
1364 * gst/playback/gstdecodebin2.c: (gst_decode_group_new),
1365 (get_current_group), (group_demuxer_event_probe),
1366 (gst_decode_group_expose), (deactivate_free_recursive),
1367 (gst_decode_group_free):
1369 Don't forget to emit 'no-more-pads' once a group is exposed.
1370 Cleanup elements from a DecodeGroup once we remove it.
1371 Protect call to gst_decode_group_expose() with the decodebin lock.
1373 2007-01-22 Julien MOUTTE <julien@moutte.net>
1375 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1376 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1377 Looking at Xorg code i can't figure out if that XKeysymToString
1378 function is thread sensible or not. Lock it just in case as
1379 recommended by Radek Doulik <rodo at ximian dot com>.
1381 2007-01-22 Julien MOUTTE <julien@moutte.net>
1383 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
1384 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
1385 Lock that X Call as well. Fixes #397673.
1387 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1389 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
1390 Don't go into an endless loop if the file starts with 00 00 01 2X,
1391 like quicktime redirect files might. Fixes #396042.
1393 * tests/check/Makefile.am:
1394 * tests/check/gst/.cvsignore:
1395 * tests/check/gst/typefindfunctions.c: (GST_START_TEST),
1396 (typefindfunctions_suite):
1397 Add unit test for the above.
1399 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1401 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1402 On second thought, use "depth" field rather than "bpp" field.
1404 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
1406 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1407 Camtasia caps apparently need a bpp field (#398875).
1409 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1411 * gst/playback/gstplaybasebin.c: (setup_subtitle),
1412 (gen_source_element), (gst_play_base_bin_change_state):
1413 Attempt at a better error message in case we don't have the required
1414 URI handler installed; post missing-plugin message also when we're
1415 missing an URI handler for the subtitle URI; clean up properly also
1416 when an error occurs and we never made it to PAUSED state.
1418 * tests/check/elements/playbin.c: (GST_START_TEST),
1420 Check that we're also getting a missing-plugin messsage for a
1421 missing subtitle URI handler (and clean up properly).
1423 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1425 * gst/playback/gstplaybasebin.c: (analyse_source), (setup_source):
1426 Plug a few reference leaks.
1428 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1430 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1431 Lower probability a bit if the marker isn't right at the start,
1432 to decrease the chance of false positives.
1434 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
1436 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
1437 Small mpeg2 system stream typefinding improvement: make typefinder
1438 probe a bit into the stream instead of just looking for a marker
1439 at the beginning. Fixes #397810.
1441 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
1443 * gst/audioconvert/gstchannelmix.c:
1444 Remove compatibility cruft for prehistoric GLib versions.
1446 2007-01-17 Tim-Philipp Müller <tim at centricular dot net>
1448 * gst/playback/Makefile.am:
1449 * gst/playback/gstdecodebin.c: (close_pad_link):
1450 * gst/playback/gstdecodebin2.c: (analyze_new_pad):
1451 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1452 (gst_play_base_bin_handle_message_func), (unknown_type):
1453 Let decodebin be the element to post missing-plugin messages for
1454 missing decoders (rather than playbin); make playbin implement
1455 GstBin::handle_message so we can suppress missing-plugin messages
1456 for types we're not handling on purpose (don't want to bring up an
1457 installer in those cases).
1459 2007-01-16 Tim-Philipp Müller <tim at centricular dot net>
1461 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1462 * gst-libs/gst/tag/gstvorbistag.c:
1463 (gst_tag_list_to_vorbiscomment_buffer):
1464 * gst/typefind/gsttypefindfunctions.c: (vorbis_type_find):
1465 Fix potentially unaligned access (#397207).
1467 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1469 * tests/examples/seek/seek.c: (set_scale), (update_scale),
1470 (do_seek), (stop_seek), (pause_cb), (stop_cb), (loop_toggle_cb),
1471 (rate_spinbutton_changed_cb), (msg_eos), (msg_segment_done),
1473 Allow to toggle looping while it plays. Fix callback prototype. Clean
1474 up code a bit more. Add copyright header.
1476 2007-01-16 Stefan Kost <ensonic@users.sf.net>
1478 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
1479 Red and blue mask was swapped (spotted by Dan Williams).
1481 2007-01-15 Stefan Kost <ensonic@users.sf.net>
1483 * gst-libs/gst/tag/gstid3tag.c:
1484 * gst-libs/gst/tag/gstvorbistag.c:
1485 Use new beats-per-minute tag from core.
1487 2007-01-15 Tim-Philipp Müller <tim at centricular dot net>
1490 Add new files with translatable strings, so they actually make it
1491 into the template file one day.
1493 2007-01-12 Andy Wingo <wingo@pobox.com>
1495 * gst-libs/gst/audio/gstbaseaudiosink.c
1496 (gst_base_audio_sink_fixate): Implement, stolen from baseaudiosrc.
1497 (gst_base_audio_sink_activate_pull): Remove the handwavey nego
1498 stuff, as the base class handles this now. Actually tell the ring
1500 (gst_base_audio_sink_callback): Cast the ring buffer correctly.
1501 How did this work before? Maybe I'm not as awesome a programmer as
1504 * gst-libs/gst/audio/gstbaseaudiosrc.c
1505 (gst_base_audio_src_fixate): Rework as a basesrc vmethod instead
1508 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1510 * gst-libs/gst/utils/missing-plugins.c: (copy_and_clean_caps):
1511 Remove more fields so that the application can better blacklist
1512 formats that have been tried before.
1514 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1516 * gst-libs/gst/audio/mixerutils.h:
1517 Add G_BEGIN_DECLS and G_END_DECLS guards so these helpers can be
1518 used when compiling with c++ compilers as well.
1520 2007-01-12 Tim-Philipp Müller <tim at centricular dot net>
1522 * gst/typefind/gsttypefindfunctions.c:
1525 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
1527 * gst/playback/gstplaybin.c: (post_missing_element_message),
1528 (gen_video_element), (gen_text_element), (gen_audio_element),
1530 Post missing-plugin messages also when we error out because
1531 converters, textoverlay or auto*sinks are missing (#161922).
1533 2007-01-10 Wim Taymans <wim@fluendo.com>
1535 * gst/playback/gstdecodebin.c: (dynamic_add), (close_pad_link),
1536 (is_demuxer_element), (new_caps):
1537 * gst/playback/gstplaybasebin.c: (source_new_pad):
1538 Fix the case where we try to ref a NULL element when we delay a link
1539 because of unfixed caps.
1540 Set the state of autoplugged decodebins to PAUSED.
1541 RTSP now works in playbin, we can remove it from the blacklist.
1543 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1545 * gst/playback/Makefile.am:
1546 * gst/playback/gstplaybasebin.c: (string_arr_has_str),
1547 (unknown_type), (setup_subtitle), (gen_source_element):
1548 * gst/playback/gstplaybin.c: (plugin_init):
1549 Post missing-plugin messages on the bus for missing sources and
1550 missing decoders/demuxers/depayloaders; fix error code used when
1551 we're missing an URI handler source; for media types that we are not
1552 handling on purpose at the moment, don't print "don't know how to
1553 handle xyz" messages to the terminal or post missing-plugin
1554 messages on the bus.
1556 * tests/check/elements/playbin.c: (create_playbin),
1557 (GST_START_TEST), (gst_codec_src_uri_get_type),
1558 (gst_codec_src_uri_get_protocols), (gst_codec_src_uri_get_uri),
1559 (gst_codec_src_uri_set_uri), (gst_codec_src_uri_handler_init),
1560 (gst_codec_src_init_type), (gst_codec_src_base_init),
1561 (gst_codec_src_create), (gst_codec_src_class_init),
1562 (gst_codec_src_init), (plugin_init), (playbin_suite):
1563 Add some tests for the missing-plugin stuff.
1565 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1568 * gst-libs/gst/Makefile.am:
1569 * gst-libs/gst/utils/Makefile.am:
1570 * gst-libs/gst/utils/base-utils.c: (gst_base_utils_init):
1571 * gst-libs/gst/utils/base-utils.h:
1572 * gst-libs/gst/utils/descriptions.c: (format_info_get_desc),
1573 (find_format_info), (caps_are_rtp_caps),
1574 (gst_base_utils_get_source_description),
1575 (gst_base_utils_get_sink_description),
1576 (gst_base_utils_get_decoder_description),
1577 (gst_base_utils_get_encoder_description),
1578 (gst_base_utils_get_element_description),
1579 (gst_base_utils_add_codec_description_to_tag_list),
1580 (gst_base_utils_get_codec_description), (gst_base_utils_list_all):
1581 * gst-libs/gst/utils/descriptions.h:
1582 * gst-libs/gst/utils/missing-plugins.c:
1583 (missing_structure_get_type), (copy_and_clean_caps),
1584 (gst_missing_uri_source_message_new),
1585 (gst_missing_uri_sink_message_new),
1586 (gst_missing_element_message_new),
1587 (gst_missing_decoder_message_new),
1588 (gst_missing_encoder_message_new),
1589 (missing_structure_get_string_detail),
1590 (missing_structure_get_caps_detail),
1591 (gst_missing_plugin_message_get_installer_detail),
1592 (gst_missing_plugin_message_get_description),
1593 (gst_is_missing_plugin_message):
1594 * gst-libs/gst/utils/missing-plugins.h:
1595 API: add new libgstbaseutils library with functions
1596 - to create and parse missing-plugins messages
1597 - that provide (translated) descriptions for caps/decoders/sources/etc.
1600 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1601 * pkgconfig/gstreamer-plugins-base.pc.in:
1604 * docs/libs/gst-plugins-base-libs-docs.sgml:
1605 * docs/libs/gst-plugins-base-libs-sections.txt:
1606 Generate docs for new lib and API.
1608 * tests/check/Makefile.am:
1609 * tests/check/libs/.cvsignore:
1610 * tests/check/libs/utils.c: (missing_msg_check_getters),
1611 (GST_START_TEST), (libgstbaseutils_suite):
1612 Add some basic unit tests.
1614 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1616 * ext/ogg/Makefile.am:
1617 Dist gstoggdemux.h to fix 'make distcheck'.
1619 * sys/v4l/Makefile.am:
1620 Fix 'make distcheck' even more.
1622 2007-01-09 Wim Taymans <wim@fluendo.com>
1624 * docs/plugins/Makefile.am:
1625 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1626 * docs/plugins/gst-plugins-base-plugins-sections.txt:
1627 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
1628 (gst_ogg_pad_query_types), (gst_ogg_pad_submit_page),
1629 (gst_ogg_chain_reset), (gst_ogg_chain_new_stream),
1630 (gst_ogg_demux_perform_seek):
1631 * ext/ogg/gstoggdemux.h:
1633 Add some more comments.
1636 2007-01-09 Wim Taymans <wim@fluendo.com>
1638 * ext/theora/theoradec.c:
1639 * ext/vorbis/vorbisdec.c:
1640 * gst-libs/gst/audio/gstringbuffer.c:
1641 (gst_ring_buffer_commit_full):
1642 * gst-libs/gst/audio/gstringbuffer.h:
1643 * gst-libs/gst/rtp/gstrtpbuffer.c:
1644 * gst-libs/gst/tag/gstvorbistag.c:
1645 Small documentation updates/fixes
1647 2007-01-09 Tim-Philipp Müller <tim at centricular dot net>
1650 Require core CVS HEAD for Andy's basesrc/sink API additions.
1652 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1654 Patch by: Günter Thelen <daedalus dot inc at gmx net>
1656 * gst/typefind/gsttypefindfunctions.c: (flac_type_find),
1658 Add typefinder for flac-in-ogg in conformance with the ogg-mapping
1659 on flac.sf.net (there appear to be other versions of the first
1660 ogg page in the wild) (#391365).
1662 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1665 Check if localtime_r() is available.
1667 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_render_time):
1668 If localtime_r() is not available, fall back to localtime(). Should
1669 fix build on MingW (#393310).
1671 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
1673 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
1674 * gst/subparse/gstsubparse.h:
1675 Remove spurious 1000 subtrahend when calculating the timestamp from
1676 the frame number and the frame rate . Also, use the frames/second
1677 value specified in the first line of the file, if one is specified
1678 there. Should fix #357503.
1680 * tests/check/elements/subparse.c: (do_test),
1681 (test_tmplayer_do_test), (test_microdvd_do_test), (GST_START_TEST),
1683 Add some basic unit tests for the microdvd subtitle format.
1685 2007-01-07 Julien MOUTTE <julien@moutte.net>
1687 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1688 (gst_xvimage_buffer_finalize), (gst_xvimagesink_xvimage_new),
1689 (gst_xvimagesink_xvimage_put), (gst_lookup_xv_port_from_adaptor),
1690 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_setcaps),
1691 (gst_xvimagesink_set_xwindow_id),
1692 (gst_xvimagesink_set_event_handling),
1693 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
1694 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
1695 Patch by : Young-Ho Cha <ganadist at chollian dot net>
1697 Add an adaptor property to select a specific XV adaptor.
1698 * sys/xvimage/xvimagesink.h:
1700 2007-01-07 Julien MOUTTE <julien@moutte.net>
1702 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1703 (gst_ximagesink_handle_xerror), (gst_ximagesink_ximage_new),
1704 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
1705 (gst_ximagesink_handle_xevents), (gst_ximagesink_setcaps),
1706 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
1707 (gst_ximagesink_expose), (gst_ximagesink_set_event_handling):
1708 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
1709 (gst_xvimage_buffer_finalize), (gst_xvimagesink_handle_xerror),
1710 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
1711 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_setcaps),
1712 (gst_xvimagesink_change_state), (gst_xvimagesink_set_xwindow_id),
1713 (gst_xvimagesink_expose), (gst_xvimagesink_set_event_handling):
1714 Use flow_lock much more to protect every access to xwindow.
1715 Try to catch erros while creating images in case some drivers are
1716 just generating an XError when the requested image is too big.
1717 Should fix : #354698, #384008, #384060.
1718 * tests/icles/stress-xoverlay.c: (cycle_window), (create_window):
1719 Implement some stress testing of setting window xid.
1721 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
1723 * win32/common/libgsaudio.def:
1724 Add new exported function.
1725 * win32/common/libgstogg.dsp:
1726 Add gstoggaviparse.c to the build.
1727 * win32/common/libgstvideoscale.dsp:
1728 Add vs_4tap.c to the build.
1729 * win32/common/libgstvorbis.dsp:
1730 Add vorbistag.c to the build.
1732 2007-01-06 Andy Wingo <wingo@pobox.com>
1734 * gst-libs/gst/audio/gstbaseaudiosink.c
1735 (gst_base_audio_sink_class_init)
1736 (gst_base_audio_sink_init):
1737 (gst_base_audio_sink_activate_pull): Add an activate_pull function
1738 to baseaudiosink, and tell basesink that we can work in pull mode.
1739 This way the ring buffer thread drives the pipeline directly, if
1740 pull mode is possible. There is some lingering nastiness regarding
1742 (gst_base_audio_sink_callback): Implement the callback to pull
1743 data. This interface is a bit light, though -- it should get a
1744 GstFlowReturn return value at least.
1746 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1748 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_stream_out):
1749 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1750 * gst/playback/gstdecodebin2.c:
1751 (gst_decode_group_check_if_blocked):
1752 Printf format and missing argument fixes.
1754 2007-01-05 Jan Schmidt <thaytan@mad.scientist.com>
1756 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header),
1757 (gst_ogm_parse_change_state):
1758 Activate pads before adding them to the element.
1760 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1762 * tests/examples/seek/scrubby.c: (main):
1763 * tests/examples/seek/seek.c: (main):
1764 Call g_thread_init() first thing in main() (see #391278).
1766 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1768 * tests/check/Makefile.am:
1769 * tests/check/libs/.cvsignore:
1770 * tests/check/libs/netbuffer.c: (GST_START_TEST),
1772 Add test for GstNetBuffer + gst_buffer_copy(). Disabled
1773 for the time being, since it's broken, see #393099.
1775 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
1777 * tests/check/Makefile.am:
1778 Update to use GST_PLUGINS_BASE_CFLAGS as well.
1780 2007-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
1783 split out GST_CFLAGS into GST_PLUGINS_BASE_CFLAGS and GST_CFLAGS
1784 so that GST_BASE_CFLAGS can go inbetween them, making sure
1785 we use uninstalled gst-libs headers
1786 * docs/libs/Makefile.am:
1787 * ext/alsa/Makefile.am:
1788 * ext/cdparanoia/Makefile.am:
1789 * ext/gnomevfs/Makefile.am:
1790 * ext/libvisual/Makefile.am:
1791 * ext/ogg/Makefile.am:
1792 * ext/theora/Makefile.am:
1793 * ext/vorbis/Makefile.am:
1794 * gst-libs/gst/audio/Makefile.am:
1795 * gst-libs/gst/cdda/Makefile.am:
1796 * gst-libs/gst/interfaces/Makefile.am:
1797 * gst-libs/gst/riff/Makefile.am:
1798 * gst-libs/gst/rtp/Makefile.am:
1799 * gst-libs/gst/tag/Makefile.am:
1800 * gst/adder/Makefile.am:
1801 * gst/audioconvert/Makefile.am:
1802 * gst/audiorate/Makefile.am:
1803 * gst/audioresample/Makefile.am:
1804 * gst/playback/Makefile.am:
1805 * gst/tcp/Makefile.am:
1806 * gst/videoscale/Makefile.am:
1807 * gst/volume/Makefile.am:
1808 * sys/ximage/Makefile.am:
1809 * sys/xvimage/Makefile.am:
1810 * tests/icles/Makefile.am:
1813 2007-01-04 Julien MOUTTE <julien@moutte.net>
1815 * gst-libs/gst/interfaces/xoverlay.c:
1816 (gst_x_overlay_handle_events):
1817 * gst-libs/gst/interfaces/xoverlay.h:
1818 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
1819 (gst_ximagesink_set_xwindow_id),
1820 (gst_ximagesink_set_event_handling),
1821 (gst_ximagesink_xoverlay_init), (gst_ximagesink_set_property),
1822 (gst_ximagesink_get_property), (gst_ximagesink_init),
1823 (gst_ximagesink_class_init):
1824 * sys/ximage/ximagesink.h:
1825 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new),
1826 (gst_xvimagesink_set_xwindow_id),
1827 (gst_xvimagesink_set_event_handling),
1828 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_set_property),
1829 (gst_xvimagesink_get_property), (gst_xvimagesink_init),
1830 (gst_xvimagesink_class_init):
1831 * sys/xvimage/xvimagesink.h:
1832 * tests/icles/stress-xoverlay.c: (toggle_events), (create_window):
1833 Add a method to the XOverlay interface to allow disabling of
1834 event handling in x[v]imagesink elements. This will let X events
1835 propagate to parent windows which can be usefull in some cases.
1836 Be carefull that the application is then responsible of pushing
1837 navigation events and expose events to the video sink.
1840 2007-01-03 Tim-Philipp Müller <tim at centricular dot net>
1842 * gst-libs/gst/tag/gstvorbistag.c:
1843 * tests/check/libs/tag.c: (GST_START_TEST):
1844 Add vorbistag <=> GStreamer tag mapping for GST_TAG_LOCATION
1847 2007-01-01 Tim-Philipp Müller <tim at centricular dot net>
1851 * docs/design/Makefile.am:
1854 2006-12-27 Julien MOUTTE <julien@moutte.net>
1856 * docs/libs/gst-plugins-base-libs-sections.txt: Fix a documentation
1857 typo. Fixes: #390063.
1859 2006-12-27 Julien MOUTTE <julien@moutte.net>
1861 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
1862 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Plug a
1864 * win32/common/config.h: Updated.
1866 2006-12-22 Stefan Kost <ensonic@users.sf.net>
1868 * tests/check/elements/gdpdepay.c: (cleanup_gdpdepay),
1869 (setup_gdpdepay_streamheader):
1870 * tests/check/elements/gdppay.c: (cleanup_gdppay),
1871 (setup_gdppay_streamheader):
1872 Fix the dp tests, but activating the pads for the streamheader tests
1873 too and cleaning up conditionaly
1875 2006-12-22 Jan Schmidt <thaytan@mad.scientist.com>
1877 * gst/ffmpegcolorspace/avcodec.h:
1878 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1879 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1880 (gst_ffmpegcsp_avpicture_fill):
1881 * gst/ffmpegcolorspace/imgconvert.c: (img_convert),
1882 (img_get_alpha_info):
1883 Add 2 new caps arrangements, for 24-bit RGB and BGR in 32-bits, but at the
1884 other end of the word. Fixes: #387073.
1886 Add some inconsequential branch hints in a couple of places.
1888 2006-12-21 Tim-Philipp Müller <tim at centricular dot net>
1890 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1891 (gst_ffmpeg_caps_to_smpfmt):
1892 The "signed" field in raw audio caps is of boolean type, trying to
1893 extract the value with _get_int() will fail (fix to keep in sync with
1894 the copy in gst-ffmpeg)
1896 2006-12-21 Stefan Kost <ensonic@users.sf.net>
1898 * tests/check/elements/audioresample.c: (cleanup_audioresample):
1899 * tests/check/elements/audiotestsrc.c: (cleanup_audiotestsrc):
1900 * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
1902 * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay):
1903 * tests/check/elements/subparse.c: (teardown_subparse):
1904 * tests/check/elements/textoverlay.c: (cleanup_textoverlay):
1905 * tests/check/elements/videorate.c: (cleanup_videorate):
1906 * tests/check/elements/videotestsrc.c: (cleanup_videotestsrc):
1907 * tests/check/elements/volume.c: (cleanup_volume):
1908 * tests/check/elements/vorbisdec.c: (setup_vorbisdec),
1909 (cleanup_vorbisdec):
1910 * tests/check/elements/vorbistag.c: (setup_vorbistag),
1911 (cleanup_vorbistag):
1912 consistent pad (de)activation
1914 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1916 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1917 Forgot to register the extensions.
1919 2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
1921 * gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
1923 Add typefinder for VIVO files (my christmas present to the 90s).
1925 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1927 * gst/playback/gstdecodebin.c: (type_found):
1928 Special-case the text/plain media type: we only want to recognise it
1929 as a 'raw' decoded media type if it comes from a demuxer or subtitle
1930 parser, but not if the entire stream is of text/plain type. If the
1931 entire stream is text/plain, we should just error out.
1933 This fixes playback of audio files with lyrics in totem. Totem can't
1934 distinguish between text files and subtitle files and passes any
1935 .txt file with the same basename as the main file to playbin as
1936 suburi, and playbin will then throw a 'subtitle found, but no video
1937 stream' error, which isn't entirely helpful. See #380342.
1939 Also, with this change we'll show a slightly more correct error
1940 message in case totem passes a playlist file to us (although a
1941 custom error message wording instead of the default text would
1942 probably not be a bad idea either).
1944 Same problem also needs to be fixed for playbin+decodebin2.
1946 * tests/check/Makefile.am:
1947 * tests/check/elements/decodebin.c: (src_handoff_cb),
1948 (decodebin_new_decoded_pad_cb), (GST_START_TEST),
1950 Add simple unit test for decodebin for the above.
1952 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
1954 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
1955 * gst/playback/gstdecodebin2.c: (gst_decode_bin_change_state):
1956 Refuse to change state to READY when we failed to create any of the
1957 required elements in our instance init function.
1959 2006-12-15 Tim-Philipp Müller <tim at centricular dot net>
1961 * docs/libs/gst-plugins-base-libs-sections.txt:
1962 Small docs fixes/updates.
1964 * gst-libs/gst/video/gstvideosink.h:
1965 Remove nonfunctional GST_VIDEO_SINK_CLOCK macro which is a leftover
1966 from the 0.9 days (GST_BASE_SINK_CLOCK, which it points to, was
1967 removed from the base sink API between 0.9.6 and 0.9.7).
1968 API: add GST_VIDEO_SINK_CAST and use it for the height/width
1969 accessor macros, so we don't do a runtime GObject type check every
1972 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
1975 * gst-plugins-base.doap:
1976 * gst-plugins-base.spec.in:
1979 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
1981 Patch by: Jens Granseuer <jensgr at gmx net>
1983 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
1984 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1985 (gst_base_rtp_audio_payload_handle_frame_based_buffer),
1986 (gst_base_rtp_audio_payload_handle_sample_based_buffer):
1987 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
1988 Declare variables at the beginning of a block. Fixes #383195.
1990 2006-12-07 Jan Schmidt <thaytan@mad.scientist.com>
1993 Bump version nano - back to CVS.
1996 === release 0.10.11 ===
1998 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
2001 releasing 0.10.11, "Dumb things"
2003 2006-12-05 Jan Schmidt <thaytan@mad.scientist.com>
2005 * gst/playback/gstdecodebin.c: (find_dynamic), (dynamic_add),
2006 (close_pad_link), (elem_is_dynamic), (unlinked), (close_link):
2007 Handle the case where an element has multiple pads with
2008 unfixed caps as well as still possibly producing more dynamic
2009 pads by storing each case as a distinct entry in the dynamic list.
2012 2006-12-04 Wim Taymans <wim@fluendo.com>
2014 * gst/playback/gstdecodebin.c: (close_pad_link):
2015 Fix #382223, add more dynamic caps handling.
2017 2006-12-04 Wim Taymans <wim@fluendo.com>
2019 reviewed by: <delete if not using a buddy>
2021 * gst-libs/gst/audio/gstringbuffer.h:
2022 * gst-libs/gst/netbuffer/gstnetbuffer.c: (gst_netbuffer_init),
2023 (gst_netaddress_set_ip4_interface),
2024 (gst_netaddress_set_ip6_interface), (gst_netaddress_set_loopback),
2025 (gst_netaddress_set_ttl), (gst_netaddress_get_ip4_interface),
2026 (gst_netaddress_get_ip6_interface), (gst_netaddress_get_loopback),
2027 (gst_netaddress_get_ttl):
2028 * gst-libs/gst/netbuffer/gstnetbuffer.h:
2029 * gst/playback/gstdecodebin.c: (close_pad_link):
2030 * tests/examples/seek/seek.c: (end_scrub), (end_seek), (do_seek),
2031 (seek_cb), (stop_seek), (rate_spinbutton_changed_cb):
2032 * win32/common/config.h:
2034 2006-12-01 Michael Smith <msmith@fluendo.com>
2036 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
2037 Delete bad debug code.
2040 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
2042 * gst/videoscale/vs_4tap.c:
2044 * win32/common/config.h:
2045 * win32/vs8/libgstvideoscale.vcproj:
2046 Fix compilation on win32 under VS8
2047 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
2048 Partially fixes #381175
2050 2006-11-30 Michael Smith <msmith@fluendo.com>
2052 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2054 It would be very bad if, after a discont buffer, we thought every
2055 single following buffer was also discont. So, add to the test to
2056 ensure that this isn't the case.
2058 * ext/theora/theoraenc.c: (theora_enc_is_discontinuous):
2059 ... it was the case. So fix it.
2061 2006-11-28 Wim Taymans <wim@fluendo.com>
2063 * gst/playback/gstplaybasebin.c: (check_queue_event):
2066 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps):
2067 Fix width and height range from 16 - 4096 to 1 - MAXINT, just like the
2068 padtemplate caps. Refixes #357577.
2070 2006-11-28 Wim Taymans <wim@fluendo.com>
2072 * gst/playback/gstplaybasebin.c: (check_queue_event),
2073 (queue_threshold_reached), (queue_out_of_data),
2074 (gen_preroll_element):
2075 Add event probe to see when EOS is in a queue and we can disable the
2076 underrun signals. Fixes #357577.
2078 2006-11-28 Edward Hervey <edward@fluendo.com>
2080 * gst/playback/Makefile.am:
2081 * gst/playback/gstdecodebin2.c: (gst_decode_bin_get_type),
2082 (_gst_boolean_accumulator), (gst_decode_bin_class_init),
2083 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
2084 (gst_decode_bin_init), (gst_decode_bin_dispose),
2085 (gst_decode_bin_finalize), (gst_decode_bin_set_property),
2086 (gst_decode_bin_get_property), (gst_decode_bin_set_caps),
2087 (gst_decode_bin_get_caps), (gst_decode_bin_autoplug_continue),
2088 (gst_decode_bin_autoplug_sort), (analyze_new_pad), (connect_pad),
2089 (connect_element), (expose_pad), (type_found),
2090 (pad_added_group_cb), (pad_removed_group_cb),
2091 (no_more_pads_group_cb), (pad_added_cb), (pad_removed_cb),
2092 (no_more_pads_cb), (find_compatibles), (is_demuxer_element),
2093 (are_raw_caps), (multi_queue_overrun_cb),
2094 (multi_queue_underrun_cb), (gst_decode_group_new),
2095 (get_current_group), (group_demuxer_event_probe),
2096 (gst_decode_group_control_demuxer_pad),
2097 (gst_decode_group_control_source_pad),
2098 (gst_decode_group_check_if_blocked),
2099 (gst_decode_group_check_if_drained), (gst_decode_group_expose),
2100 (gst_decode_group_hide), (gst_decode_group_free),
2101 (gst_decode_group_set_complete), (source_pad_blocked_cb),
2102 (source_pad_event_probe), (gst_decode_pad_new), (add_fakesink),
2103 (remove_fakesink), (find_sink_pad), (gst_decode_bin_change_state),
2105 New decodebin2 element.
2107 * gst/playback/gstplay-marshal.list:
2108 Added marshallers for new signals in decodebin2
2109 * gst/playback/gstplaybasebin.c: (setup_subtitle), (make_decoder):
2110 Use decodebin2 if *and only if* the USE_DECODEBIN2 environment variable
2113 2006-11-28 Wim Taymans <wim@fluendo.com>
2115 * gst/playback/gstplaybasebin.c: (setup_source),
2116 (gst_play_base_bin_change_state):
2117 Disable rtsp:// uris for the release, it's not good enough yet.
2120 2006-11-26 Wim Taymans <wim@fluendo.com>
2122 * ext/theora/theoradec.c: (gst_theora_dec_reset),
2123 (theora_dec_push_forward), (theora_dec_push_reverse),
2124 (theora_handle_data_packet), (theora_dec_decode_buffer),
2125 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2126 (theora_dec_chain_forward), (theora_dec_chain):
2127 Implement reverse playback.
2129 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
2130 (vorbis_dec_decode_buffer), (vorbis_dec_flush_decode),
2131 (vorbis_dec_chain_forward):
2132 Clear buffers used for reverse playback in _reset.
2133 No need to set the eos flag, we clip samples using the segment.
2135 2006-11-24 Wim Taymans <wim@fluendo.com>
2137 * ext/ogg/gstoggdemux.c: (gst_ogg_page_copy), (gst_ogg_page_free),
2138 (gst_ogg_pad_init), (gst_ogg_pad_dispose), (gst_ogg_pad_reset),
2139 (gst_ogg_pad_stream_out), (gst_ogg_pad_submit_page),
2140 (gst_ogg_chain_reset), (gst_ogg_demux_perform_seek):
2142 Handle continued pages in reverse mode.
2144 2006-11-24 Wim Taymans <wim@fluendo.com>
2146 * ext/vorbis/vorbisdec.c: (vorbis_dec_push_forward),
2147 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2148 (vorbis_dec_flush_decode):
2150 Don't try to add invalid timestamps.
2151 Clipping will unref the buffer.
2153 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2155 * gst/adder/gstadder.h:
2156 * gst/audiotestsrc/gstaudiotestsrc.h:
2157 remove obsolete _factory_init protos
2159 2006-11-24 Stefan Kost <ensonic@users.sf.net>
2161 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
2162 Fix spacing in debug message.
2164 2006-11-23 Wim Taymans <wim@fluendo.com>
2166 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2167 (gst_ogg_demux_chain):
2168 Don't just ignore return values from _pad_push().
2169 Small debug improvements.
2171 2006-11-23 Michael Smith <msmith@fluendo.com>
2173 * ext/ogg/gstoggmux.c: (gst_ogg_mux_process_best_pad):
2174 If our incoming buffer is marked as DISCONT, then increment the page
2175 number (so that the discontinuity is marked in the final ogg
2176 bitstream) and flush the previous page.
2178 2006-11-22 Michael Smith <msmith@fluendo.com>
2180 * ext/theora/gsttheoraenc.h:
2181 * ext/theora/theoraenc.c: (gst_theora_enc_init),
2182 (theora_enc_reset), (theora_enc_clear), (theora_enc_sink_setcaps),
2183 (theora_buffer_from_packet), (theora_enc_is_discontinuous),
2184 (theora_enc_chain), (theora_enc_change_state):
2185 Mark discontinuities of > 3/4 of a frame, reinit encoder.
2187 * tests/check/pipelines/theoraenc.c: (check_buffer_granulepos),
2188 (GST_START_TEST), (theoraenc_suite):
2189 Enable discontinuity test, fix it.
2191 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2193 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2194 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2195 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2196 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2197 (gst_text_overlay_change_state):
2198 * ext/pango/gsttextoverlay.h:
2199 Some textoverlay fixes: for one, in the video chain function,
2200 actually wait for a text buffer to come in if there is none at the
2201 moment and there should be one; also, deal more gracefully with
2202 incoming buffers that do not have a timestamp or duration; discard
2203 text buffer when not needed any longer. Fixes #341681.
2205 * tests/check/Makefile.am:
2206 * tests/check/elements/.cvsignore:
2207 * tests/check/elements/textoverlay.c:
2208 (notgst_check_setup_src_pad2), (notgst_check_teardown_src_pad2),
2209 (setup_textoverlay), (buffer_is_all_black), (create_black_buffer),
2210 (create_text_buffer), (cleanup_textoverlay), (GST_START_TEST),
2211 (test_video_waits_for_text_send_text_newsegment_thread),
2212 (test_video_waits_for_text_shutdown_element),
2213 (test_render_continuity_push_video_buffers_thread),
2214 (textoverlay_suite):
2215 Add some unit tests for textoverlay.
2217 2006-11-21 Tim-Philipp Müller <tim at centricular dot net>
2219 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2220 Avoid integer underflow when the found probability for mp3 is
2221 smaller than the 'penalty' we subtract if there's not a clean
2222 mp3 header sync at offset 0.
2224 2006-11-21 Stefan Kost <ensonic@users.sf.net>
2226 * docs/libs/gst-plugins-base-libs-sections.txt:
2227 Add some new symbols to the docs
2229 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2231 * tests/check/Makefile.am:
2232 * tests/check/elements/ffmpegcolorspace.c:
2233 (ffmpegcolorspace_suite):
2234 Enable ffmpegcolorspace test now that the RGBA32 issue is fixed
2235 (for now not for valgrinding though, since it takes too long).
2237 2006-11-20 Wim Taymans <wim@fluendo.com>
2239 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2240 (gst_ffmpeg_pixfmt_to_caps):
2241 Fix RGBA32 caps. Fixes #357038.
2243 2006-11-20 Tim-Philipp Müller <tim at centricular dot net>
2245 * gst-libs/gst/interfaces/mixertrack.h:
2246 Add FIXME so we can add some padding here in 0.11
2248 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
2250 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
2251 Fix GstBaseRTPAudioPayload structure so the whole GObject
2252 inheritance business actually works (parent class instance structure
2253 must always come first in the derived class instance structure).
2255 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
2257 * gst/videotestsrc/Makefile.am:
2258 * tests/check/Makefile.am:
2259 Make sure our checks and the videotestsrc plugin link against the
2260 local uninstalled gst libs and not any installed gst libs that
2261 might happen to exist as well.
2263 * tests/check/elements/adder.c: (message_received),
2264 (test_event_message_received), (test_play_twice_message_received):
2265 * tests/check/elements/ffmpegcolorspace.c: (GST_START_TEST):
2266 Fix compiler warnings when compiling against core with disabled
2269 2006-11-16 Michael Smith <msmith@fluendo.com>
2271 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
2272 (gst_audio_rate_sink_event), (gst_audio_rate_chain):
2273 Fix audiorate, so that it accurately sets offsets and timestamps.
2274 Doesn't change the fundamental algorithmic decisions; so should be
2277 * tests/check/Makefile.am:
2278 Enable audiorate test now that it passes.
2280 2006-11-09 Stefan Kost <ensonic@users.sf.net>
2282 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2283 clear xv when going to NULL, remove // commented non-existant proto
2285 * tests/examples/seek/seek.c: (main):
2286 add missing tooltip description for scrub and play_scrub
2288 2006-11-14 David Schleef <ds@schleef.org>
2291 Bump liboil requirement to 0.3.8.
2292 * gst-libs/gst/riff/riff-media.c:
2294 * gst/videoscale/vs_image.h:
2295 * gst/videoscale/vs_scanline.h:
2296 Use liboil's stdint.h.
2297 * gst/videotestsrc/videotestsrc.c:
2298 Remove liboil related ifdef's, since they aren't needed now, and
2299 won't work with future versions.
2301 2006-11-14 David Schleef <ds@schleef.org>
2303 * gst/videoscale/Makefile.am:
2304 * gst/videoscale/gstvideoscale.c:
2305 * gst/videoscale/gstvideoscale.h:
2306 * gst/videoscale/vs_4tap.c:
2307 * gst/videoscale/vs_4tap.h:
2308 * gst/videoscale/vs_image.c:
2309 * gst/videoscale/vs_image.h:
2310 * gst/videoscale/vs_scanline.c:
2311 * gst/videoscale/vs_scanline.h:
2312 Add a 4-tap image scaler. Theoretically looks much prettier.
2313 The tap calculation could use some improvement.
2315 2006-11-14 Wim Taymans <wim@fluendo.com>
2317 Patch by: Jan David Mol <j dot j dot d dot mol at tudelft dot nl>
2319 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds),
2320 (gst_riff_parse_strf_iavs):
2321 * gst/subparse/gstsubparse.c: (convert_encoding):
2322 * gst/tcp/gstmultifdsink.c:
2323 (gst_multi_fd_sink_handle_client_write):
2324 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
2325 (gst_tcp_read_buffer), (gst_tcp_gdp_read_caps),
2326 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
2327 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_render):
2328 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2329 (gst_ximagesink_ximage_new):
2330 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
2331 Various gsize and gssize printf fixes. Fixes #372507.
2333 2006-11-13 Wim Taymans <wim@fluendo.com>
2335 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2336 (vorbis_dec_push_forward), (vorbis_dec_push_reverse),
2337 (vorbis_handle_data_packet), (vorbis_dec_decode_buffer),
2338 (vorbis_dec_flush_decode), (vorbis_dec_chain_reverse),
2339 (vorbis_dec_chain_forward), (vorbis_dec_chain):
2340 * ext/vorbis/vorbisdec.h:
2341 First stab at vorbis reverse playback.
2343 2006-11-13 Wim Taymans <wim@fluendo.com>
2345 * gst-libs/gst/audio/gstbaseaudiosink.c:
2346 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2347 * gst-libs/gst/audio/gstbaseaudiosink.h:
2348 Make the clock sync code more accurate wrt resampling and playback
2351 * gst-libs/gst/audio/gstringbuffer.c:
2352 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit):
2353 * gst-libs/gst/audio/gstringbuffer.h:
2354 Use better algorithm to interpolate sample rates.
2356 2006-11-13 Michael Smith <msmith@fluendo.com>
2358 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page):
2359 Improve a debug line slightly.
2361 * ext/ogg/gstogmparse.c: (gst_ogm_parse_plugin_init):
2362 Call gst_riff_init() in plugin_init, to avoid getting errors from
2363 the debug system (unrelated changes to another plugin made this turn
2366 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
2368 Patch by: Sergey Scobich <sergery.scobich at gmail com>
2370 * win32/common/libgsttag.def:
2371 Add missing symbol (#366492).
2373 2006-11-09 Tim-Philipp Müller <tim at centricular dot net>
2375 * gst/playback/gststreamselector.c: (gst_stream_selector_dispose):
2376 Don't unref a NULL pad.
2378 2006-11-09 Wim Taymans <wim@fluendo.com>
2380 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_page),
2381 (gst_ogg_demux_get_prev_page), (gst_ogg_demux_perform_seek),
2382 (gst_ogg_demux_handle_page), (gst_ogg_demux_chain),
2383 (gst_ogg_demux_loop_forward), (gst_ogg_demux_loop_reverse),
2384 (gst_ogg_demux_loop):
2385 Implement first stab at reverse playback.
2387 2006-11-07 Stefan Kost <ensonic@users.sf.net>
2389 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2390 (gst_riff_create_video_template_caps):
2391 add h263/h264 variants to the caps, Fixes #363118
2393 2006-11-06 Tim-Philipp Müller <tim at centricular dot net>
2395 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func):
2396 * gst-libs/gst/audio/gstaudiosrc.c: (audioringbuffer_thread_func):
2397 Use g_strerror instead of strerror so we get UTF-8.
2399 2006-11-03 David Schleef <ds@schleef.org>
2401 * ext/ogg/gstoggdemux.c:
2402 * ext/ogg/gstoggmux.c:
2403 Add/remove KW-DIRAC header here, since it is ogg-specific.
2405 2006-11-03 Michael Smith <msmith@fluendo.com>
2407 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find):
2408 Recognise more mpeg4 elementary video streams.
2410 2006-11-02 Edward Hervey <edward@fluendo.com>
2412 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
2413 Lower the probability of mp3 typefinding functions if we don't find a
2414 valid mp3 header at the start of the file.
2417 2006-11-02 Wim Taymans <wim@fluendo.com>
2419 * ext/theora/gsttheoradec.h:
2420 * ext/theora/theoradec.c: (gst_theora_dec_init),
2421 (theora_dec_sink_event), (theora_dec_chain_forward),
2422 (theora_dec_flush_decode), (theora_dec_chain_reverse),
2424 Document and partially implement an algorithm for doing reverse playback
2427 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
2429 Patch by: Sergey Scobich <sergey.scobich at gmail com>
2431 * win32/common/config.h:
2432 * win32/common/interfaces-enumtypes.c:
2433 * win32/common/libgsttag.def:
2434 * win32/vs8/gst-plugins-base.sln:
2435 * win32/vs8/libgstaudioresample.vcproj:
2436 * win32/vs8/libgstinterfaces.vcproj:
2437 * win32/vs8/libgstogg.vcproj:
2438 * win32/vs8/libgstriff.vcproj:
2439 * win32/vs8/libgsttag.vcproj:
2440 * win32/vs8/libgsttheora.vcproj:
2441 * win32/vs8/libgstvideoscale.vcproj:
2442 * win32/vs8/libgstvorbis.vcproj:
2443 Misc. VS8 build fixes: fix syntax in config.h, add missing entries
2444 to libgsttag.def; add missing dependencies for some vs8 projects;
2445 re-arrange placement of .def files in vs8 projects (#366334).
2447 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
2450 Remove unused variable.
2452 * ext/ogg/gstoggdemux.c:
2453 Fix Wim's surname in plugin description.
2455 2006-10-31 Wim Taymans <wim@fluendo.com>
2457 * gst-plugins-base.spec.in:
2458 spec new .h file. Fixes #368310.
2460 2006-10-31 Michael Smith <msmith@fluendo.com>
2462 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
2463 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
2464 (gst_multi_fd_sink_get_stats),
2465 (gst_multi_fd_sink_remove_client_link),
2466 (gst_multi_fd_sink_queue_buffer),
2467 (gst_multi_fd_sink_handle_clients):
2468 * gst/tcp/gstmultifdsink.h:
2469 Make using the remove or clear signals threadsafe.
2470 Make calling get-stats with an invalid fd not segfault.
2473 2006-10-31 Wim Taymans <wim@fluendo.com>
2475 * gst-libs/gst/rtp/Makefile.am:
2476 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
2477 (gst_base_rtp_audio_payload_init):
2478 Fix and activate base audio payloader.
2480 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2482 * gst/typefind/gsttypefindfunctions.c: (qtif_type_find),
2484 Add typefinder for QuickTime Image Files (see #366156).
2486 2006-10-28 Tim-Philipp Müller <tim at centricular dot net>
2488 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init):
2489 Another typo fix (#366212).
2491 2006-10-27 Wim Taymans <wim@fluendo.com>
2493 * gst/volume/gstvolume.c: (volume_transform_ip):
2494 Use stream time to synchronize volume property instead of rather random
2495 timestamps. This is needed when gnonlin does its time shifting.
2497 2006-10-27 Wim Taymans <wim@fluendo.com>
2499 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
2501 * ext/ogg/gstoggmux.c: (gst_ogg_mux_release_pad):
2502 Remove the pad from the element in release_pad. Fixes #364812.
2504 2006-10-27 Tim-Philipp Müller <tim at centricular dot net>
2506 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2507 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2508 Explicitly create our custom buffer classes at a thread-safe
2509 location as well, since g_type_class_ref() doesn't seem to be
2510 entirely thread-safe either (#365501; also see #349410).
2512 2006-10-26 Tim-Philipp Müller <tim at centricular dot net>
2514 * gst-libs/gst/riff/riff-read.c: (freeform_string_to_utf8),
2515 (gst_riff_parse_info):
2516 If strings in INFO chunk are not UTF-8, do something similar to
2517 what we do for ID3v1 tags: check a number of environment variables
2518 (GST_AVI_TAG_ENCODING, GST_RIFF_TAG_ENCODING, GST_TAG_ENCODING) for
2519 character sets to try, otherwise try the current locale and/or fall
2520 back on ISO-8859-1. Fixes #360552.
2522 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2524 * gst/videotestsrc/gstvideotestsrc.c:
2525 (gst_video_test_src_pattern_get_type),
2526 (gst_video_test_src_set_pattern):
2527 * gst/videotestsrc/gstvideotestsrc.h:
2528 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_checkers1),
2529 (gst_video_test_src_checkers2), (gst_video_test_src_checkers4),
2530 (gst_video_test_src_checkers8):
2531 * gst/videotestsrc/videotestsrc.h:
2532 Add a bunch of exciting new checkers patterns.
2534 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2536 * gst/subparse/Makefile.am:
2537 * gst/subparse/gstsubparse.c:
2538 (gst_sub_parse_data_format_autodetect),
2539 (gst_sub_parse_format_autodetect), (handle_buffer),
2540 (gst_sub_parse_chain), (gst_subparse_type_find), (plugin_init):
2541 * gst/subparse/gstsubparse.h:
2542 * gst/subparse/tmplayerparse.c: (tmplayer_parse_line),
2544 * gst/subparse/tmplayerparse.h:
2545 Add support for TMPlayer-type subtitles (#362845).
2547 * tests/check/elements/subparse.c: (test_tmplayer_do_test),
2548 (GST_START_TEST), (subparse_suite):
2549 Add some basic unit tests for the above.
2551 2006-10-23 Tim-Philipp Müller <tim at centricular dot net>
2553 * tests/check/elements/audiorate.c: (test_injector_base_init),
2554 (test_injector_class_init), (test_injector_chain),
2555 (test_injector_init), (probe_cb), (do_perfect_stream_test),
2556 (GST_START_TEST), (audiorate_suite):
2557 More tests for audiorate: inject buffers to check behaviour when
2560 2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
2562 * tests/check/Makefile.am:
2563 * tests/check/elements/.cvsignore:
2564 * tests/check/elements/audiorate.c: (probe_cb), (got_buf),
2565 (do_perfect_stream_test), (GST_START_TEST), (audiorate_suite):
2566 Add some basic unit tests for audiorate. Disabled at the moment
2567 since it doesn't pass yet (see bug #363119).
2569 2006-10-20 Tim-Philipp Müller <tim at centricular dot net>
2571 * gst/subparse/gstsubparse.c: (subrip_fix_up_markup),
2572 (parse_subrip), (handle_buffer):
2573 Add missing closing tags for markup and fix broken markup,
2574 otherwise pango won't render anything (fixes #357531). Also,
2575 make sure the text we send out is always NUL-terminated
2576 (better safe than sorry etc.).
2578 * tests/check/elements/subparse.c: (test_srt_do_test),
2580 Some more tests for .srt incl. tests for the above stuff.
2582 2006-10-20 Julien MOUTTE <julien@moutte.net>
2584 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
2585 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
2586 Patch by: Stefan Kost <ensonic@users.sf.net>
2587 Try to redraw borders only when needed. Apparently this consumes
2588 resources on small devices... :-O (#363607)
2590 2006-10-20 Michael Smith <msmith@fluendo.com>
2592 * gst/tcp/gstmultifdsink.c:
2593 (gst_multi_fd_sink_client_queue_buffer):
2594 If caps change, then update the client's idea of the caps so that we
2595 don't end up re-sending streamheaders for every single buffer after
2598 2006-10-20 Michael Smith <msmith@fluendo.com>
2600 * ext/ogg/gstoggparse.c: (gst_ogg_parse_dispose),
2601 (gst_ogg_parse_append_header), (gst_ogg_parse_chain):
2602 Set caps on pushed buffers; fix up refcounting of caps objects.
2604 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2606 * gst/typefind/gsttypefindfunctions.c: (mmsh_type_find),
2608 Typefind mmsh header data packet to application/x-mmsh (#362625).
2610 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2612 * tests/check/Makefile.am:
2613 * tests/check/elements/.cvsignore:
2614 * tests/check/elements/subparse.c: (buffer_from_static_string),
2615 (setup_subparse), (teardown_subparse), (test_srt_do_test),
2616 (GST_START_TEST), (subparse_suite):
2617 Add very simple unit test for subparse.
2619 2006-10-19 Tim-Philipp Müller <tim at centricular dot net>
2621 * gst/subparse/gstsubparse.c: (strip_trailing_newlines),
2623 Strip trailing newlines from subtitle text output.
2625 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2627 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2628 (gst_sub_parse_change_state):
2629 Fix memleak; clear subparse->textbuf n state change function.
2631 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2633 * gst/subparse/gstsubparse.c:
2634 (gst_sub_parse_data_format_autodetect):
2635 Don't require subrip (.srt) files to start with a chunk number of 1.
2637 2006-10-18 Wim Taymans <wim@fluendo.com>
2639 * gst-libs/gst/audio/gstbaseaudiosink.c:
2640 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
2641 * gst-libs/gst/audio/gstbaseaudiosink.h:
2642 Extract rate from the NEWSEGMENT event.
2643 Use commit_full to also take rate adjustment into account when writing
2644 samples to the ringbuffer.
2646 * gst-libs/gst/audio/gstringbuffer.c:
2647 (gst_ring_buffer_commit_full), (gst_ring_buffer_commit),
2648 (gst_ring_buffer_read):
2649 * gst-libs/gst/audio/gstringbuffer.h:
2650 Added _commit_full() to also take rate into account.
2651 Use simple interpolation algorithm to resample audio.
2652 API: gst_ring_buffer_commit_full()
2654 * tests/examples/seek/scrubby.c: (speed_cb), (do_seek):
2655 * tests/examples/seek/seek.c: (segment_done):
2656 Don't try to seek with 0.0 rate, just pause instead.
2657 Remove bogus debug line.
2659 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2661 * gst/playback/gstplaybasebin.c: (subbin_startup_sync_msg),
2663 Catch async errors when starting up the subtitle bin, so we can
2664 stop waiting and continue with the main film instead of hanging
2665 forever. Fixes #339366.
2667 * tests/check/elements/playbin.c: (playbin_suite):
2668 Enable unit test for the above.
2670 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2672 * tests/check/Makefile.am:
2673 * tests/check/elements/.cvsignore:
2674 * tests/check/elements/playbin.c: (GST_START_TEST),
2675 (gst_red_video_src_uri_get_type),
2676 (gst_red_video_src_uri_get_protocols),
2677 (gst_red_video_src_uri_get_uri), (gst_red_video_src_uri_set_uri),
2678 (gst_red_video_src_uri_handler_init),
2679 (gst_red_video_src_init_type), (gst_red_video_src_base_init),
2680 (gst_red_video_src_create), (gst_red_video_src_class_init),
2681 (gst_red_video_src_init), (plugin_init), (playbin_suite):
2682 Some small and basic unit tests for playbin; not very useful yet,
2683 but at least a start.
2685 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2687 * gst/playback/gstplaybin.c: (setup_sinks):
2688 The old pad activation spiel.
2690 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
2692 * gst/playback/gstplaybasebin.c: (setup_source):
2693 Don't hang forever if the subbin already fails to start up in
2694 the state change to PAUSED (#339366).
2696 2006-10-17 Tim-Philipp Müller <tim at centricular dot net>
2698 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_list_channels),
2699 (gst_tuner_set_channel), (gst_tuner_get_channel),
2700 (gst_tuner_list_norms), (gst_tuner_set_norm), (gst_tuner_get_norm),
2701 (gst_tuner_set_frequency), (gst_tuner_get_frequency),
2702 (gst_tuner_signal_strength), (gst_tuner_find_norm_by_name),
2703 (gst_tuner_find_channel_by_name):
2704 Fix some function guards, add some more function guards.
2706 2006-10-17 Jan Schmidt <thaytan@mad.scientist.com>
2708 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2709 (remove_element_chain):
2710 Don't return a pad from get_our_ghost_pad unless it is actually the
2712 Change a cast in remove_element_chain slightly.
2714 2006-10-13 Julien MOUTTE <julien@moutte.net>
2716 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2717 (rate_spinbutton_changed_cb), (segment_done), (msg_state_changed):
2718 Segment seeking needs to use the rate and set stop to -1.
2720 2006-10-13 Wim Taymans <wim@fluendo.com>
2722 * gst-libs/gst/audio/gstbaseaudiosink.c:
2723 (gst_base_audio_sink_setcaps):
2724 Don't crash when ringbuffer is not yet created.
2725 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
2728 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2729 * gst/playback/gststreamselector.c:
2730 (gst_stream_selector_request_new_pad):
2731 Activate pads befre adding them to running elements.
2733 2006-10-13 Julien MOUTTE <julien@moutte.net>
2735 * tests/examples/seek/seek.c: (do_seek), (start_seek),
2736 (rate_spinbutton_changed_cb), (msg_state_changed): Stop the scale
2737 updater when we start grabing the slider. Don't wait for the
2738 pipeline to be PAUSED.
2740 2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
2742 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_list_tracks),
2743 (gst_mixer_set_volume), (gst_mixer_get_volume),
2744 (gst_mixer_set_mute), (gst_mixer_set_option),
2745 (gst_mixer_get_option), (gst_mixer_mute_toggled),
2746 (gst_mixer_record_toggled), (gst_mixer_volume_changed),
2747 (gst_mixer_option_changed):
2748 Guard mixer interface functions against bogus arguments.
2750 2006-10-12 Julien MOUTTE <julien@moutte.net>
2752 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
2753 (play_cb), (pause_cb), (stop_cb), (rate_spinbutton_changed_cb),
2754 (msg_state_changed), (main): Use state-changed messages to trigger
2755 start/stop of scale update timer. Indeed the scale slider was
2756 jumping here and there because the update timer was activated
2757 before seek completed. This fixes instant applying of rate changes
2758 by pressing the spinbutton like a crazy man !
2760 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
2762 Patch by: Sebastien Cote <sebas642 at yahoo.ca>
2764 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
2765 (gst_basertppayload_finalize):
2766 Fix two small memory leaks (#361456).
2768 2006-10-10 Julien MOUTTE <julien@moutte.net>
2770 * tests/examples/seek/seek.c: (do_seek),
2771 (rate_spinbutton_changed_cb): When changing spinbutton we try
2772 to change the rate on the fly.
2774 2006-10-10 Wim Taymans <wim@fluendo.com>
2776 * gst-libs/gst/riff/riff-ids.h:
2777 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
2778 (gst_riff_create_audio_template_caps):
2781 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2783 Patch by: Josep Torre Valles <josep@fluendo.com>
2785 * ext/gnomevfs/gstgnomevfssink.c:
2786 * ext/gnomevfs/gstgnomevfssrc.c:
2787 Fix URI interface implementation return type.
2788 * ext/pango/gsttextoverlay.c: (gst_text_overlay_set_property):
2789 Fix what looks like a copy/paste issue when assigning values.
2790 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2791 (gst_audio_filter_template_get_type):
2792 Cast to prevent Forte warnings.
2793 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2794 Fix URI interface implementation return type.
2795 gst_pad_query_position requires a signed integer pointer as
2796 3rd parameter, GstClockTime is unsigned.
2797 * gst/audioconvert/audioconvert.c:
2798 Fix integer overflow when treated as signed.
2799 * gst/audioresample/resample.c: (resample_add_input_data):
2800 Cast to prevent warnings on Forte.
2801 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette):
2802 Fix integer overflow when treated as signed.
2803 * gst/ffmpegcolorspace/imgconvert_template.h:
2804 Fix integer overflow when treated as signed. RGBA_OUT shifts bits.
2805 * gst/playback/gstdecodebin.c: (queue_filled_cb),
2806 (cleanup_decodebin):
2807 Who initialises a guint to -1!
2808 Cast function pointers to prevent warnings on Forte.
2809 * gst/playback/gstplaybasebin.c: (queue_deadlock_check),
2810 (queue_threshold_reached):
2811 Cast function pointers correctly to prevent warnings on Forte.
2812 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
2813 Cast function pointers correctly to prevent warnings on Forte.
2814 * gst/subparse/gstssaparse.c: (gst_ssa_parse_setcaps):
2815 Obvious change to unsigned, 0xEF > max signed char.
2816 * gst/tcp/gstmultifdsink.c: (get_buffers_max), (count_burst_unit):
2817 GstClockTime is unsigned, initialise correctly.
2818 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
2819 Cast so pointer arithemetic doesn't cause warnings on Forte.
2820 * gst/videorate/gstvideorate.c:
2821 Use correct return value.
2822 * tests/examples/seek/scrubby.c:
2823 GstClockTime is unsigned, initialise correctly.
2825 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
2827 Patch by: Ferenc Gerlits <fgerlits at gmail com>
2829 * gst/typefind/gsttypefindfunctions.c:
2830 Recognise XML files and XML-like files shorter than 256 bytes as
2831 well (fixes #359237).
2833 2006-10-09 Edgard Lima <edgard.lima@indt.org.br>
2835 Patch by: Renato Filho <renato.filho@indt.org.br>
2837 * gst/typefind/gsttypefindfunctions.c:
2838 Added typefind functions to video/x-nuv media.
2840 2006-10-08 Tim-Philipp Müller <tim at centricular dot net>
2842 * gst-libs/gst/interfaces/xoverlay.c:
2843 (gst_x_overlay_set_xwindow_id), (gst_x_overlay_expose):
2844 Some more guards against invalid input.
2846 2006-10-07 Julien MOUTTE <julien@moutte.net>
2848 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event):
2850 * tests/examples/seek/seek.c: (do_seek),
2851 (rate_spinbutton_changed_cb), (main): Add a rate spinbutton in
2852 seek example to experiment with rates != 1.0 (reverse playback !)
2854 2006-10-06 Stefan Kost <ensonic@users.sf.net>
2856 * gst-libs/gst/interfaces/xoverlay.c:
2857 Unref message in doc-example (spotted by Robert McQueen)
2859 2006-10-06 Wim Taymans <wim@fluendo.com>
2861 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2862 (mpeg1_parse_header), (mpeg1_sys_type_find):
2865 2006-10-06 Wim Taymans <wim@fluendo.com>
2867 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2869 * gst/playback/gstplaybasebin.c: (new_decoded_pad_full):
2870 Activate dynamic pads before adding them to the element.
2872 2006-10-06 Michael Smith <msmith@fluendo.com>
2874 * gst-libs/gst/floatcast/floatcast.h:
2875 Fix obviously-bogus macros; use the correct types.
2877 2006-10-06 Wim Taymans <wim@fluendo.com>
2879 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2880 (gst_base_rtp_depayload_change_state):
2881 Also call parent state change function to activate pads.
2883 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2884 (mpeg1_parse_header), (mpeg1_sys_type_find):
2885 Add some more debug info in mpeg typefinding.
2887 2006-10-06 Michael Smith <msmith@fluendo.com>
2889 * ext/theora/theoradec.c: (theora_dec_chain):
2890 Zero byte theora packets are valid and well-defined; don't warn on
2893 2006-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
2895 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2896 (gst_multi_fd_sink_get_stats), (find_limits),
2897 (gst_multi_fd_sink_queue_buffer):
2898 API: add dropped_buffers to the get-stats GValueArray
2900 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
2902 * ext/alsa/gstalsadeviceprobe.c:
2903 (gst_alsa_device_property_probe_get_values):
2904 * ext/alsa/gstalsasink.c: (set_hwparams):
2905 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_elem_pad),
2906 (gst_ogg_chain_new_stream), (gst_ogg_demux_read_chain):
2907 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers),
2908 (gst_ogg_mux_process_best_pad):
2909 * ext/ogg/gstoggparse.c: (gst_ogg_parse_new_stream),
2910 (gst_ogg_parse_chain):
2911 * ext/ogg/gstogmparse.c: (gst_ogm_parse_stream_header):
2912 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2913 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_setup),
2914 (gst_vorbis_enc_buffer_check_discontinuous):
2915 * ext/vorbis/vorbisparse.c: (vorbis_parse_src_query):
2916 * gst-libs/gst/audio/gstbaseaudiosink.c:
2917 (gst_base_audio_sink_render):
2918 * gst-libs/gst/cdda/gstcddabasesrc.c:
2919 (gst_cdda_base_src_handle_track_seek):
2920 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2921 (gst_base_rtp_depayload_push_full):
2922 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
2923 * gst/audioresample/resample.c: (resample_input_pushthrough):
2924 * gst/playback/gstplaybasebin.c: (queue_out_of_data):
2925 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
2926 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2927 (wavpack_type_find):
2928 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2929 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2930 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2931 * tests/check/elements/volume.c: (GST_START_TEST):
2932 Printf format fixes.
2934 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
2936 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_caps):
2937 Fix a simple mistake (see the docs)
2940 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2942 * docs/plugins/Makefile.am:
2943 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2944 * docs/plugins/gst-plugins-base-plugins-sections.txt:
2945 * docs/plugins/gst-plugins-base-plugins.args:
2946 * docs/plugins/gst-plugins-base-plugins.hierarchy:
2947 * docs/plugins/inspect/plugin-adder.xml:
2948 * docs/plugins/inspect/plugin-alsa.xml:
2949 * docs/plugins/inspect/plugin-audioconvert.xml:
2950 * docs/plugins/inspect/plugin-audiorate.xml:
2951 * docs/plugins/inspect/plugin-audioresample.xml:
2952 * docs/plugins/inspect/plugin-audiotestsrc.xml:
2953 * docs/plugins/inspect/plugin-cdparanoia.xml:
2954 * docs/plugins/inspect/plugin-decodebin.xml:
2955 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
2956 * docs/plugins/inspect/plugin-gdp.xml:
2957 * docs/plugins/inspect/plugin-gnomevfs.xml:
2958 * docs/plugins/inspect/plugin-libvisual.xml:
2959 * docs/plugins/inspect/plugin-ogg.xml:
2960 * docs/plugins/inspect/plugin-pango.xml:
2961 * docs/plugins/inspect/plugin-playbin.xml:
2962 * docs/plugins/inspect/plugin-subparse.xml:
2963 * docs/plugins/inspect/plugin-tcp.xml:
2964 * docs/plugins/inspect/plugin-theora.xml:
2965 * docs/plugins/inspect/plugin-typefindfunctions.xml:
2966 * docs/plugins/inspect/plugin-video4linux.xml:
2967 * docs/plugins/inspect/plugin-videorate.xml:
2968 * docs/plugins/inspect/plugin-videoscale.xml:
2969 * docs/plugins/inspect/plugin-videotestsrc.xml:
2970 * docs/plugins/inspect/plugin-volume.xml:
2971 * docs/plugins/inspect/plugin-vorbis.xml:
2972 * docs/plugins/inspect/plugin-ximagesink.xml:
2973 * docs/plugins/inspect/plugin-xvimagesink.xml:
2974 Add vorbistag element to docs; update version numbers to 0.10.10.1.
2976 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
2978 Patch by: James "Doc" Livingston <doclivingston at gmail com>
2980 * ext/vorbis/Makefile.am:
2981 * ext/vorbis/vorbis.c: (plugin_init):
2982 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_class_init),
2983 (vorbis_parse_parse_packet), (vorbis_parse_chain):
2984 * ext/vorbis/vorbisparse.h:
2985 * ext/vorbis/vorbistag.c: (gst_vorbis_tag_base_init),
2986 (gst_vorbis_tag_class_init), (gst_vorbis_tag_init),
2987 (gst_vorbis_tag_parse_packet):
2988 * ext/vorbis/vorbistag.h:
2989 Add new vorbistag element which derives from vorbisparse
2990 and is essentially the same as well, only that it implements
2991 the GstTagSetter interface and can modify the stream's
2992 vorbiscomment on the fly (#335635).
2994 * tests/check/Makefile.am:
2995 * tests/check/elements/.cvsignore:
2996 * tests/check/elements/vorbistag.c: (setup_vorbistag),
2997 (cleanup_vorbistag), (buffer_probe), (start_pipeline),
2998 (get_buffer), (stop_pipeline), (_create_codebook_header_buffer),
2999 (_create_audio_buffer), (GST_START_TEST), (vorbistag_suite):
3000 Add unit test for new vorbistag element.
3002 2006-10-03 Tim-Philipp Müller <tim at centricular dot net>
3004 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init),
3005 (vorbis_parse_push_headers), (vorbis_parse_chain):
3006 Set BOS flag in packet structure to fix 'jump depends
3007 on unitialized value' errors in valgrind; various minor
3010 2006-09-30 Jan Schmidt <thaytan@mad.scientist.com>
3012 * gst/playback/gstdecodebin.c: (close_pad_link):
3013 Fix typo in a debug statement.
3015 * gst/playback/gstplaybasebin.c: (probe_triggered),
3016 (new_decoded_pad_full), (new_decoded_pad), (subs_new_decoded_pad),
3017 (gen_source_element), (source_new_pad), (analyse_source),
3019 When handling no_more_pads in new_decoded_pad, make sure to treat
3020 subtitle pads correctly. Fixes playback with subtitle files.
3022 Move a recurring message to LOG level.
3024 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
3025 The maximum value for the Xv colorkey on this Radeon is 0xFFFFFFFF,
3026 which ends up as -1 when cast to an int. Make the logic handle the
3027 max value as an unsigned mask and only change the colorkey when it's
3028 a value we recognise.
3030 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3032 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3033 Removed empty * between paragraphs
3035 2006-09-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3037 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3038 * gst-libs/gst/rtp/README:
3039 Moved some documentation into .c file
3041 2006-09-29 Wim Taymans <wim@fluendo.com>
3043 * gst/playback/gstdecodebin.c: (no_more_pads):
3046 2006-09-29 Wim Taymans <wim@fluendo.com>
3048 * gst/playback/gstdecodebin.c: (new_caps):
3051 * gst/playback/gstplaybin.c:
3054 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
3056 * tests/check/Makefile.am:
3057 Re-enable cddabasesrc test to see if it works again
3060 2006-09-29 Wim Taymans <wim@fluendo.com>
3062 * gst/playback/gstplaybasebin.c: (setup_subtitle),
3063 (gen_source_element):
3064 Handle invalid URIs a bit more gracefully.
3066 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
3068 * tests/check/pipelines/oggmux.c:
3069 Remove obsolete comment.
3071 2006-09-29 Michael Smith <msmith@fluendo.com>
3073 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
3074 (gst_ogg_mux_release_pad), (gst_ogg_mux_push_buffer),
3075 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
3076 (gst_ogg_mux_send_headers), (gst_ogg_mux_process_best_pad),
3077 (gst_ogg_mux_collected):
3078 Commit patch from James "Doc" Livingston, adds proper EOS handling
3079 in oggmux. GStreamer can, for the first time ever, create a valid
3082 * tests/check/pipelines/oggmux.c: (check_chain_final_state),
3084 Reenable tests now that they pass.
3086 2006-09-29 Wim Taymans <wim@fluendo.com>
3088 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_handle_clients):
3089 Stop reading commands when EOF (we read 0) as well.
3091 2006-09-28 Wim Taymans <wim@fluendo.com>
3093 * gst/playback/gstdecodebin.c: (dynamic_create), (dynamic_free),
3094 (close_pad_link), (dynamic_remove), (no_more_pads), (new_caps),
3095 (find_dynamic), (unlinked), (close_link):
3096 Implement delayed caps linking needed for element with a lot of
3097 different caps on the src pads that get fixed at runtime.
3098 Improve management of dynamic elements.
3100 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
3101 (group_destroy), (group_commit), (check_queue), (queue_overrun),
3102 (gen_preroll_element), (remove_groups), (unknown_type),
3103 (add_element_stream), (no_more_pads_full), (no_more_pads),
3104 (sub_no_more_pads), (source_no_more_pads), (preroll_unlinked),
3105 (new_decoded_pad), (setup_subtitle), (array_has_value),
3106 (gen_source_element), (source_new_pad), (has_all_raw_caps),
3107 (analyse_source), (remove_decoders), (make_decoder),
3108 (remove_source), (setup_source), (finish_source), (prepare_output),
3109 (gst_play_base_bin_change_state):
3110 * gst/playback/gstplaybasebin.h:
3111 Use more _CAST instead of full type checking casts.
3112 Small cleanups, plug some leaks.
3113 Handle dynamic sources.
3114 Add some helper functions to create lists of strings used for
3115 blacklisting and other stuff.
3116 Refactor some code dealing with analysing the source.
3117 Re-enable sources without pads (like cd:// or other selfcontained
3120 2006-09-28 Wim Taymans <wim@fluendo.com>
3122 * gst-libs/gst/audio/gstbaseaudiosink.c:
3123 (gst_base_audio_sink_render):
3124 When we have a timestamp, we can still perform clipping.
3125 When we have no clock, we must play the sample ASAP.
3127 2006-09-28 Wim Taymans <wim@fluendo.com>
3129 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3130 Set caps on outgoing buffers.
3132 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3133 (gst_video_rate_event), (gst_video_rate_chain):
3134 * gst/videorate/gstvideorate.h:
3135 Fix videorate some more. Fixes #357977
3137 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3139 * tests/check/elements/adder.c: (adder_suite):
3140 Don't set timeout to 6 seconds when we're running
3141 in valgrind ... (and how is 6 seconds longer than
3142 the default anyway?)
3144 2006-09-28 Wim Taymans <wim@fluendo.com>
3146 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3147 (gst_audio_rate_sink_event), (gst_audio_rate_convert),
3148 (gst_audio_rate_convert_segments), (gst_audio_rate_chain):
3149 Keep sink and src segment to keep track of time and support more
3151 Fix bogus next_offset and run_time calculation, don't understand how
3152 this could have worked before. Fixes #357976.
3153 Remove some unneeded vars.
3155 2006-09-28 Tim-Philipp Müller <tim at centricular dot net>
3157 * gst/playback/gstplaybin.c: (remove_sinks):
3158 Only remove visualisation from visbin if there is a visbin (or:
3159 don't throw warnings when closing totem without playing a file).
3161 2006-09-27 Wim Taymans <wim@fluendo.com>
3163 * gst-libs/gst/audio/gstbaseaudiosink.c:
3164 (gst_base_audio_sink_render):
3165 Add some more info in a WARNING.
3167 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3168 (gst_base_audio_src_create):
3169 Handle PAUSE in create function, use new -core addition to
3170 wait for playing. Fixes pausing and resuming capture from an
3173 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3174 (gst_ring_buffer_read):
3176 Caller supports interrupted reads now.
3178 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3180 * tests/check/Makefile.am:
3181 Another attempt to make the gen64 buildbot happy.
3183 2006-09-27 Stefan Kost <ensonic@users.sf.net>
3185 Patch by: Jonathan Matthew <jonathan@kaolin.wh9.net>
3187 * ext/libvisual/visual.c: (gst_visual_clear_actors),
3188 (gst_visual_chain), (gst_visual_change_state):
3189 Libvisual plugin was not passing audio data to libvisual 0.4.0
3190 correctly. Fixes #357800
3192 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3194 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
3195 Add timeout to _get_state() so we see which pipeline it is
3196 that causes trouble on the gen64 build bot.
3198 2006-09-27 Wim Taymans <wim@fluendo.com>
3200 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3201 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
3202 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
3203 (gst_base_rtp_depayload_set_gst_timestamp):
3204 the source pad always uses fixed caps.
3206 2006-09-27 Wim Taymans <wim@fluendo.com>
3208 * docs/libs/gst-plugins-base-libs-docs.sgml:
3209 * docs/libs/gst-plugins-base-libs-sections.txt:
3210 * gst-libs/gst/audio/gstaudioclock.c:
3211 * gst-libs/gst/audio/gstaudioclock.h:
3212 * gst-libs/gst/audio/gstaudiosink.c:
3213 * gst-libs/gst/audio/gstaudiosink.h:
3214 * gst-libs/gst/audio/gstaudiosrc.c:
3215 * gst-libs/gst/audio/gstbaseaudiosink.c:
3216 (gst_base_audio_sink_render):
3217 * gst-libs/gst/audio/gstbaseaudiosink.h:
3218 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init):
3219 * gst-libs/gst/audio/gstbaseaudiosrc.h:
3220 * gst-libs/gst/audio/gstringbuffer.h:
3221 Added docs for the audio libs.
3223 2006-09-27 Tim-Philipp Müller <tim at centricular dot net>
3225 * tests/check/Makefile.am:
3226 Temporarily disable test that fails on the bots for unknown reasons.
3228 2006-09-26 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
3230 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
3231 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
3232 Moved AudioCodecType into priv
3233 Renamed all gst_basertpaudiopayload to gst_base_rtp_audio_payload prefixes
3235 2006-09-25 Wim Taymans <wim@fluendo.com>
3237 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3238 (add_fakesink), (remove_fakesink), (pad_probe), (close_pad_link),
3239 (is_demuxer_element), (try_to_link_1), (get_our_ghost_pad),
3241 Cleanups and small leak fixes.
3242 Added Depayloaders to valid list of autopluggable elements.
3244 2006-09-25 Wim Taymans <wim@fluendo.com>
3246 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3247 (gst_play_bin_vis_blocked), (gst_play_bin_set_property),
3248 (gen_video_element), (gen_text_element), (gen_audio_element),
3249 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
3250 (gst_play_bin_set_clock_func), (gst_play_bin_change_state):
3251 Detect NO_PREROLL state change returns and disable clock distribution to
3252 the sinks so that sync is disabled.
3253 Avoid some type checking and do simple casts instead.
3254 Small cleanups, fix some FIXMEs.
3255 Be more robust when linking user specified elements, catch an report
3256 errors. Fixes #357404.
3257 Fix some leaks in the error paths.
3259 2006-09-25 Stefan Kost <ensonic@users.sf.net>
3262 ChangeLog surgery for missing bug-number
3264 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3266 Patch by: Peter Kjellerstedt <pkj at axis com>
3268 * gst/playback/test.c:
3269 Fix compilation with uClibc and -Werror (#357591).
3271 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
3273 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
3274 Parse dates that are followed by a time as well (#357532).
3276 * tests/check/libs/tag.c: (test_vorbis_tags):
3277 Add unit test for this.
3279 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3281 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
3282 (gst_audio_convert_transform_caps):
3283 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor):
3284 * gst/videotestsrc/videotestsrc.h:
3285 A few array const-ifications.
3287 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3289 * tests/check/Makefile.am:
3290 See if this makes the build bots happy.
3292 * tests/check/libs/cddabasesrc.c:
3295 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3297 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3299 * gst/subparse/samiparse.c: (handle_start_font),
3300 (fix_invalid_entities):
3301 More case-insensitivity for certain tags; recognise entities with
3302 decimal codes as special entities as well (#357330).
3304 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3306 * gst-libs/gst/Makefile.am:
3307 Need to build tag directory before cdda.
3309 2006-09-23 Tim-Philipp Müller <tim at centricular dot net>
3311 * docs/libs/gst-plugins-base-libs-sections.txt:
3312 * gst-libs/gst/cdda/Makefile.am:
3313 * gst-libs/gst/cdda/gstcddabasesrc.c:
3314 (gst_cdda_base_src_base_init):
3315 * gst-libs/gst/cdda/gstcddabasesrc.h:
3316 * gst-libs/gst/tag/tag.h:
3317 * gst-libs/gst/tag/tags.c: (gst_tag_register_tags_internal),
3318 (gst_tag_register_musicbrainz_tags):
3319 Move GST_TAG_CDDA_* tags into libgsttag and make libgstcddabasesrc
3320 depend on libgsttag. This is required so we can extract/read tags like
3321 DISCID without depending on libgstcddabasesrc (which used to register
3324 * gst-libs/gst/tag/gstvorbistag.c:
3325 Add vorbiscomment mapping for CDDB_DISCID and MUSICBRAINZ_DISCID
3326 tags (also see #347848).
3328 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1):
3329 Log vorbis comments we are actually writing. Const-ify array.
3331 2006-09-23 Wim Taymans <wim@fluendo.com>
3333 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
3334 Improve buffering a bit by avoiding a deadlock because we cannot assume
3335 the underrun is always called.
3337 2006-09-23 Wim Taymans <wim@fluendo.com>
3339 Patch by: Young-Ho Cha <ganadist at chollian dot net>
3341 * gst-libs/gst/riff/riff-ids.h:
3342 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3343 (gst_riff_create_audio_template_caps):
3344 Added MPEG-4 AAC and id and caps. Fixes #357289
3345 Added WMA9 Lossless id.
3347 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
3349 * ext/gnomevfs/gstgnomevfssrc.c:
3350 Fix misleading docs addition.
3352 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3353 Get rid of compiler warning the right way.
3355 2006-09-22 Wim Taymans <wim@fluendo.com>
3357 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3358 (gst_base_rtp_depayload_finalize),
3359 (gst_base_rtp_depayload_setcaps), (gst_base_rtp_depayload_chain),
3360 (gst_base_rtp_depayload_push_full),
3361 (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_push),
3362 (gst_base_rtp_depayload_process),
3363 (gst_base_rtp_depayload_set_gst_timestamp),
3364 (gst_base_rtp_depayload_queue_release):
3365 * gst-libs/gst/rtp/gstbasertpdepayload.h:
3368 Refactored the process method and added methods to push from the process
3370 Use _scale functions.
3371 API: gst_base_rtp_depayload_push_ts
3372 API: gst_base_rtp_depayload_push
3374 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_push):
3375 timestamps are uint.
3377 2006-09-22 Stefan Kost <ensonic@users.sf.net>
3379 * gst-libs/gst/interfaces/xoverlay.c:
3380 Remove unused statement from doc example.
3382 2006-09-21 Stefan Kost <ensonic@users.sf.net>
3384 * gst-libs/gst/interfaces/videoorientation.c:
3385 (gst_video_orientation_iface_init),
3386 (gst_video_orientation_get_hflip),
3387 (gst_video_orientation_get_vflip),
3388 (gst_video_orientation_get_hcenter),
3389 (gst_video_orientation_get_vcenter),
3390 (gst_video_orientation_set_hflip),
3391 (gst_video_orientation_set_vflip),
3392 (gst_video_orientation_set_hcenter),
3393 (gst_video_orientation_set_vcenter):
3394 Add since tags to new API docs, ChangeLog surgery (forgot API keyword
3397 2006-09-21 Tim-Philipp Müller <tim at centricular dot net>
3399 * tests/check/Makefile.am:
3400 * tests/check/elements/.cvsignore:
3401 * tests/check/elements/ffmpegcolorspace.c: (rgb_format_to_caps),
3402 (create_rgb_conversions), (rgb_conversion_free),
3403 (right_shift_colour), (fix_expected_colour), (check_rgb_buf),
3404 (got_buf_cb), (GST_START_TEST), (ffmpegcolorspace_suite):
3405 Add unit test for ffmpegcolorspace (RGB <=> RGB only so far),
3406 but disable for now since it doesn't pass (something wrong with
3409 2006-09-21 Wim Taymans <wim@fluendo.com>
3411 * gst/playback/gstplaybasebin.c: (group_commit),
3412 (queue_deadlock_check), (queue_overrun), (queue_threshold_reached),
3413 (queue_out_of_data), (gen_preroll_element),
3414 (preroll_remove_overrun), (probe_triggered):
3415 Refactor handling of overrun detection.
3416 Separate handling of group completion and deadlock detection when doing
3417 network buffering. This should fix some deadlocks that were not detected
3418 because the group was completed.
3419 Add more comments, improve debugging.
3421 2006-09-21 Wim Taymans <wim@fluendo.com>
3423 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3424 * tests/check/libs/audio.c:
3425 Some more compilation fixes.
3427 2006-09-21 Wim Taymans <wim@fluendo.com>
3429 * gst-libs/gst/audio/gstringbuffer.c:
3430 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3431 (gst_ring_buffer_read):
3432 Early morning compilation fix.
3434 2006-09-20 Wim Taymans <wim@fluendo.com>
3436 * tests/check/elements/gdpdepay.c: (GST_START_TEST):
3437 * tests/check/elements/multifdsink.c: (GST_START_TEST):
3438 * tests/check/elements/videorate.c: (GST_START_TEST):
3439 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3440 * tests/check/pipelines/oggmux.c: (eos_buffer_probe):
3443 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3445 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3446 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3447 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3448 Handcrafted merge to help CVS understanding what I changed and what
3451 2006-09-20 Stefan Kost <ensonic@users.sf.net>
3453 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3454 (gst_xvimagesink_get_times):
3455 change colorkey behaviour back according to #354773 comment 6/7
3457 2006-09-19 Michael Smith <msmith@fluendo.com>
3459 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3460 (gst_multi_fd_sink_class_init), (get_buffers_max), (find_limits),
3461 (gst_multi_fd_sink_recover_client),
3462 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_set_property),
3463 (gst_multi_fd_sink_get_property):
3464 * gst/tcp/gstmultifdsink.h:
3465 Implement stubbed out properties unit-type, units-soft-max,
3466 units-max, to allow specifying maximum sizes in units other than
3470 2006-09-19 Wim Taymans <wim@fluendo.com>
3472 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
3473 (gst_riff_create_audio_template_caps):
3474 Reorder the audio formats a bit for clarity.
3475 Detect and create caps for MSGSM and MSN (WAV49).
3478 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3479 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
3480 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_show_frame):
3481 Small cleanups, move error handling out of normal flow for clarity.
3483 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3485 * docs/libs/gst-plugins-base-libs-docs.sgml:
3486 * docs/libs/gst-plugins-base-libs.types:
3487 * gst-libs/gst/interfaces/Makefile.am:
3488 * gst-libs/gst/interfaces/videoorientation.c:
3489 (gst_video_orientation_get_type),
3490 (gst_video_orientation_iface_init),
3491 (gst_video_orientation_get_hflip),
3492 (gst_video_orientation_get_vflip),
3493 (gst_video_orientation_get_hcenter),
3494 (gst_video_orientation_get_vcenter),
3495 (gst_video_orientation_set_hflip),
3496 (gst_video_orientation_set_vflip),
3497 (gst_video_orientation_set_hcenter),
3498 (gst_video_orientation_set_vcenter):
3499 * gst-libs/gst/interfaces/videoorientation.h:
3500 API: Add new interface to control video orientation (fixes #354908)
3502 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3504 * gst/videotestsrc/gstvideotestsrc.c:
3505 Use G_UNLIKELY in _create and log one more detail.
3507 (gst_video_test_src_get_times), (gst_video_test_src_create):
3508 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
3509 Use gst_util_uint64_scale_int in _get_times().
3511 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3513 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
3514 Give better warning message (add object and detail).
3516 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3518 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
3519 (gst_xvimagesink_get_times):
3520 xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes
3521 #354773), use gst_util_uint64_scale_int in _get_times()
3523 2006-09-18 Michael Smith <msmith@fluendo.com>
3525 * ext/ogg/gstoggmux.c: (gst_ogg_mux_push_buffer):
3526 Timestamps are unsigned; comparision against GST_CLOCK_TIME_NONE was
3527 always true, leading to dropping all timestamps.
3529 2006-09-18 Stefan Kost <ensonic@users.sf.net>
3531 * ext/libvisual/visual.c: (gst_vis_src_negotiate),
3532 (gst_visual_chain), (gst_visual_change_state):
3533 update to work also with libvisual 0.4 API, fix double unref (#355914)
3535 * tools/gst-launch-ext.1.in:
3536 * tools/gst-visualise.1.in:
3537 remove references to old man-pages
3539 * tests/examples/seek/seek.c: (main):
3540 add real meadi-buttons, add tool-tips for the seek-options, arrange
3541 seek options in a table
3543 2006-09-18 Michael Smith <msmith@fluendo.com>
3545 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear),
3546 (gst_ogg_mux_push_buffer):
3547 Don't generate out-of-order timestamps from oggmux, instead clamp
3548 output timestamps to be >= the previously output ts.
3551 2006-09-18 Michael Smith <msmith@fluendo.com>
3553 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
3554 (gst_multi_fd_sink_class_init):
3555 Updates, fixes, and typo corrections for multifdsink. No functional
3558 2006-09-17 Michael Smith <msmith@fluendo.com>
3560 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find):
3561 Don't crash on truncated files - check that we got an 8 byte buffer
3562 before trying to memcmp it.
3564 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3566 * gst/playback/gstplaybasebin.c: (get_active_source):
3567 Make stream-switching appear instant to the application
3568 (ie. make sure that a g_object_get on 'current-foo' returns
3569 the stream previously set with g_object_set(). Totem needs
3570 this to update stream-related meta-info (like audio-codec)
3571 correctly when switching streams.
3573 2006-09-17 Tim-Philipp Müller <tim at centricular dot net>
3575 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_find_master_mixer),
3576 (gst_alsa_mixer_ensure_track_list):
3577 Try harder to guess which mixer track is the master mixer
3578 track (instead of just taking the first one that has a pvolume).
3581 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3583 reviewed by: <delete if not using a buddy>
3585 * gst-libs/gst/audio/audio.h:
3586 * gst/audiotestsrc/gstaudiotestsrc.c: (plugin_init):
3588 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3590 * gst/audioconvert/gstaudioconvert.c: (set_structure_widths),
3591 (gst_audio_convert_transform_caps):
3592 Get structure-name just once.
3594 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3596 * tests/check/elements/audioresample.c: (GST_START_TEST):
3597 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3598 * tests/check/elements/volume.c: (GST_START_TEST):
3599 * tests/check/elements/vorbisdec.c: (GST_START_TEST):
3600 * tests/check/pipelines/oggmux.c: (validate_ogg_page), (eos_watch),
3601 (test_pipeline), (GST_START_TEST):
3602 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
3603 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
3604 Fix big batch of compiler warnings.
3606 2006-09-17 Stefan Kost <ensonic@users.sf.net>
3608 * ext/gnomevfs/gstgnomevfssrc.c:
3609 Add docs about icydemux usage in connection with gnomevfssrc
3611 * ext/libvisual/visual.c:
3612 * ext/ogg/gstoggaviparse.c:
3613 * ext/ogg/gstoggdemux.c:
3614 * ext/ogg/gstoggmux.c:
3615 * ext/ogg/gstoggparse.c:
3616 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3617 * gst-libs/gst/audio/gstaudiosink.c:
3618 * gst-libs/gst/audio/gstaudiosrc.c:
3619 * gst/audiorate/gstaudiorate.c:
3620 More G_OBJECT macro fixing.
3622 * gst/audiotestsrc/gstaudiotestsrc.h:
3623 Fix wrong info in header due to copy & paste
3625 2006-09-15 Wim Taymans <wim@fluendo.com>
3627 * gst-libs/gst/audio/gstbaseaudiosink.c:
3628 (gst_base_audio_sink_get_time), (gst_base_audio_sink_callback):
3629 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3630 (gst_base_audio_src_get_time), (gst_base_audio_src_fixate),
3631 (gst_base_audio_src_get_times), (gst_base_audio_src_get_offset),
3632 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3633 Do the delay calculation in the source/sink base classes as this is
3634 specific for the capture/playback mode.
3635 Try to fixate a bit better, like round depth up to a multiple of 8
3637 Handle underruns correctly by marking DISCONT on buffers and adjusting
3638 timestamps to handle the gap.
3639 Set offset/offset_end correctly on buffers.
3641 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_pause),
3642 (gst_ring_buffer_samples_done), (gst_ring_buffer_commit),
3643 (gst_ring_buffer_read):
3644 Remove resync and underrun recovery from the ringbuffer.
3645 Fix ringbuffer read code on under/overrun.
3647 2006-09-15 Wim Taymans <wim@fluendo.com>
3649 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
3650 (gst_play_base_bin_init), (fill_buffer), (check_queue),
3651 (queue_threshold_reached), (gst_play_base_bin_set_property),
3652 (gst_play_base_bin_get_property):
3653 * gst/playback/gstplaybasebin.h:
3654 Don't use a 0 low watermark when buffering, it is catching starvation
3655 way too late. Instead, use a 3 second queue with 30 and 95
3656 percent low/high watermarks.
3657 Added queue-min-threshold property to configure low watermark.
3658 Use new _buffering message API.
3659 Make queue_threshold variable big enough to store a uint64 time value.
3660 API: playbin::queue-min-threshold property.
3662 2006-09-15 Wim Taymans <wim@fluendo.com>
3665 We require 0.10.10.1 now because of _wait_preroll().
3667 * gst-libs/gst/audio/gstbaseaudiosink.c:
3668 (gst_base_audio_sink_render):
3669 Use gst_base_sink_wait_preroll().
3671 2006-09-15 Wim Taymans <wim@fluendo.com>
3673 * ext/alsa/gstalsasink.c: (xrun_recovery), (gst_alsasink_write):
3674 * ext/alsa/gstalsasrc.c: (xrun_recovery), (gst_alsasrc_read):
3675 Use DEBUG_OBJECT more.
3677 === release 0.10.10 ===
3679 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3681 patch by: Michael Smith <msmith at fluendo dot com>
3683 * gst/tcp/gstmultifdsink.c: (is_sync_frame),
3684 (gst_multi_fd_sink_client_queue_buffer),
3685 (gst_multi_fd_sink_new_client):
3686 * tests/check/elements/multifdsink.c: (GST_START_TEST),
3687 (multifdsink_suite):
3688 Fix implementation of sync-method 'next-keyframe'
3691 2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
3693 patch by: Wim Taymans <wim at fluendo dot com>
3695 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3696 This patch removes the RANDOM flag that was incorrectly introduced with
3697 revision 1.91. Fixes #354590
3699 2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
3701 * tests/check/Makefile.am:
3702 Random variation in Makefile line to see if it makes the
3703 gen64-base-full bot any happier.
3705 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3707 * tests/check/pipelines/oggmux.c: (oggmux_suite):
3708 Disable test that fails at the moment (killed after timeout).
3710 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
3712 Patch by: James Livingston <doclivingston at gmail.com>
3714 * tests/check/Makefile.am:
3715 * tests/check/pipelines/.cvsignore:
3716 * tests/check/pipelines/oggmux.c: (get_page_codec),
3717 (check_chain_final_state), (fail_if_audio), (validate_ogg_page),
3718 (eos_buffer_probe), (start_pipeline), (stop_pipeline), (eos_watch),
3719 (test_pipeline), (test_vorbis), (test_theora), (test_vorbis_theora),
3720 (test_theora_vorbis), (oggmux_suite):
3721 Add simple unit test for oggmux from #337026 with checking for the
3722 EOS flags disabled for the time being.
3724 2006-09-04 Wim Taymans <wim@fluendo.com>
3726 patch by: Alessandro Dessina <alessandro nnva org>
3728 * ext/ogg/gstoggmux.c:
3729 Add cmml caps to oggmux. Fixes #353912
3731 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3733 * tests/check/elements/videotestsrc.c: (check_rgb_buf):
3734 Returning a return value often helps. In this case, we
3735 don't need the return value anyway, so just get rid of it.
3736 Should make build bots much happier.
3738 2006-09-02 Tim-Philipp Müller <tim at centricular dot net>
3740 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure),
3741 (paint_get_structure), (gst_video_test_src_get_size),
3742 (gst_video_test_src_smpte), (gst_video_test_src_snow),
3743 (gst_video_test_src_unicolor), (paint_setup_AYUV),
3744 (paint_hline_AYUV), (paint_setup_ARGB8888), (paint_setup_ABGR8888),
3745 (paint_setup_RGBA8888), (paint_setup_BGRA8888), (paint_hline_str4):
3746 * gst/videotestsrc/videotestsrc.h:
3747 Add support for AYUV and the various RGBA formats. Initialise
3748 fields of paintinfo structs allocated on the stack.
3750 * tests/check/elements/videotestsrc.c: (right_shift_colour),
3751 (fix_expected_colour), (check_rgb_buf), (got_buf_cb),
3752 (check_rgb_buf), (videotestsrc_suite):
3753 Add unit tests for videotestsrc's RGB output.
3755 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3757 * gst/videotestsrc/gstvideotestsrc.c:
3758 (gst_video_test_src_pattern_get_type),
3759 (gst_video_test_src_set_pattern):
3760 * gst/videotestsrc/gstvideotestsrc.h:
3761 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_unicolor),
3762 (gst_video_test_src_black), (gst_video_test_src_white),
3763 (gst_video_test_src_red), (gst_video_test_src_green),
3764 (gst_video_test_src_blue):
3765 * gst/videotestsrc/videotestsrc.h:
3766 Add more uni-colour patterns ("white", "red", "green", and "blue").
3768 2006-09-01 Tim-Philipp Müller <tim at centricular dot net>
3770 * gst/videotestsrc/videotestsrc.c: (paint_setup_YVYU):
3771 Fix stride for YVYU, should be word-aligned (#353658).
3773 2006-08-31 Tim-Philipp Müller <tim at centricular dot net>
3775 * gst/adder/gstadder.c: (gst_adder_src_event):
3778 2006-08-31 Edward Hervey <edward@fluendo.com>
3780 * gst/adder/gstadder.c: (forward_event_func),
3781 (gst_adder_src_event), (gst_adder_collected),
3782 (gst_adder_change_state):
3783 * gst/adder/gstadder.h:
3784 Remember the start position asked in the incoming seeks, so we can
3785 output GST_EVENT_NEW_SEGMENT with a correct position value (instead
3786 of assuming it will always be 0).
3788 2006-08-31 Edward Hervey <edward@fluendo.com>
3790 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
3791 (gst_ogg_demux_finalize), (gst_ogg_demux_perform_seek),
3792 (gst_ogg_demux_loop):
3793 Send the GST_EVENT_NEW_SEGMENT from the streaming thread.
3795 2006-08-30 Tim-Philipp Müller <tim at centricular dot net>
3797 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3798 (gst_ffmpegcsp_get_unit_size):
3799 Return FALSE instead of returning a random false unit
3800 size when the format isn't known/supported (even if
3801 this shouldn't happen under normal circumstances).
3803 2006-08-29 Wim Taymans <wim@fluendo.com>
3805 Patch by: Tim-Philipp Müller <tim at centricular dot net>
3807 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create),
3808 (gst_gnome_vfs_src_start):
3809 Try harder to get the size from a uri by using _info_uri() when
3810 _info_from_handle() does not give us enough info.
3811 Also follow symlinks when getting the size.
3812 Partially Fixes #332864.
3814 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3816 Patch by: Viktor Peters <viktor dot peters at gmail dot com>
3818 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_ensure_track_list),
3819 (gst_alsa_mixer_update), (gst_alsa_mixer_get_volume),
3820 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
3821 (gst_alsa_mixer_set_record):
3822 * ext/alsa/gstalsamixertrack.c:
3823 (gst_alsa_mixer_track_update_alsa_capabilities),
3824 (alsa_track_has_cap), (gst_alsa_mixer_track_new),
3825 (gst_alsa_mixer_track_update):
3826 * ext/alsa/gstalsamixertrack.h:
3827 Improve and fix mixer track handling, in particular better handling
3828 of alsa's pvolume/pswitch/cvolume/cswitch capabilities; create
3829 separate track objects for tracks that have both capture and playback
3830 volume (and label them differently as well so they're not mistakenly
3831 assumed to be duplicates); classify mixer tracks that only affect
3832 the audible volume of something (rather than the capture volume)
3833 as playback tracks. Redefine/fix meaning of RECORD and MUTE flags
3834 for capture tracks to correspond to alsa-pswitch alsa-cswitch
3835 (following the meaning documented in the mixer interface header
3836 file); add support for alsa's exclusive cswitch groups; update/sync
3837 state/flags better if mixer settings are changed by another
3838 application. Fixes #336075.
3840 2006-08-29 Tim-Philipp Müller <tim at centricular dot net>
3842 * gst/playback/gstplaybin.c:
3843 Improve docs: add section about BUFFERING messages sent by playbin.
3845 2006-08-29 Michael Smith <msmith@fluendo.com>
3847 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_push_buffer),
3848 (gst_vorbis_enc_buffer_check_discontinuous),
3849 (gst_vorbis_enc_chain):
3850 Ignore explicit DISCONT marked on buffers (which is often spurious,
3851 particularly when using multiple segments), in favour of solely
3852 using the timestamps/durations.
3854 2006-08-29 Edward Hervey <edward@fluendo.com>
3856 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain):
3857 Don't rely on incoming buffers offset anymore, since it is completely
3858 broken when using multiple segments.
3859 Instead convert the incoming buffers timestamp to running time, and
3860 then convert that value to the offsets.
3861 Also inform GstSegment of the last outputted stop position, which is
3862 needed if we received several segments with an unknown stop value.
3864 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3866 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
3867 fix buffer unreffing on a header push failure
3869 2006-08-28 Wim Taymans <wim@fluendo.com>
3871 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
3872 (gst_audio_rate_chain):
3873 Make the metadata of the buffer writable before changing its
3876 2006-08-28 Wim Taymans <wim@fluendo.com>
3878 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
3879 (gst_audio_rate_setcaps), (gst_audio_rate_init),
3880 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
3881 (gst_audio_rate_chain), (gst_audio_rate_change_state):
3882 Fix audiorate some more.
3883 Reset and resync counters on flush and READY.
3884 Handle the DISCONT flag correctly.
3885 Use GstSegment to track position.
3886 Fail when not negotiated.
3889 2006-08-25 Michael Smith <msmith@fluendo.com>
3891 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3893 Remove accidently included debug line.
3895 2006-08-25 Wim Taymans <wim@fluendo.com>
3897 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
3899 If a buffer is received with no caps, make the buffer metadata
3900 writable and set the caps, making sure that we don't screw up the
3903 2006-08-25 Michael Smith <msmith@fluendo.com>
3905 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
3906 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
3907 Fix memory leaks and misleading debug messages, add a couple of
3910 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
3911 (gst_multi_fd_sink_render):
3912 Do not use gst_buffer_make_writable() in a basesink render method,
3913 as it may incorrectly unref the buffer. Instead, use convoluted
3914 dance to avoid copying the buffer except when we need to.
3916 2006-08-25 Michael Smith <msmith@fluendo.com>
3918 * ext/vorbis/vorbisenc.c:
3919 (gst_vorbis_enc_buffer_check_discontinuous):
3920 Allow very small discontinuities in the timestamps. These we can't
3921 do anything useful with anyway (because vorbis's timestamps have
3922 only sample granularity), and are commonly produced by elements with
3923 minor bugs. Allow up to 1/2 a sample out.
3926 2006-08-24 Wim Taymans <wim@fluendo.com>
3928 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
3929 (play_scrub_toggle_cb), (main):
3930 Add a checkbox to enable play scrubbing. Makes it possible to disable
3933 2006-08-23 Stefan Kost <ensonic@users.sf.net>
3935 * tests/check/elements/.cvsignore:
3938 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3940 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3941 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
3942 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
3943 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3944 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3945 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
3946 (gst_ogm_text_parse_strip_trailing_zeroes),
3947 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
3948 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
3949 Refactor ogm parse, do better input checking, misc. clean-ups.
3950 Cache incoming events and push them once the source pad has
3951 been created. Don't pass unterminated strings to sscanf().
3952 Strip trailing zeroes from subtitle text output, since they
3953 are not valid UTF-8. Don't push vorbiscomment packets on
3954 the subtitle text pad. Output perfect streams if possible.
3956 2006-08-23 Wim Taymans <wim@fluendo.com>
3958 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
3959 Waits for tasks to settle down so that we clean up correctly for
3962 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3964 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
3965 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
3966 actually return return value in taglists_are_equal.
3968 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
3970 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3971 Fix crash due to broken bitstream parsing on x86-64: can't make
3972 any assumptions about sizeof(struct) due to alignment/packing
3973 differences on different architectures. Fixes #351790.
3975 2006-08-22 Wim Taymans <wim@fluendo.com>
3977 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
3978 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
3979 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
3980 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
3981 (gst_riff_parse_info):
3982 Protect public functions against bad input.
3986 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3988 * gst-libs/gst/riff/riff-ids.h:
3989 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3990 Add voxware audio IDs (even if we can't play it) (#351795).
3992 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
3994 * gst-libs/gst/riff/riff-media.c:
3995 (gst_riff_create_video_template_caps),
3996 (gst_riff_create_audio_template_caps),
3997 (gst_riff_create_iavs_template_caps):
3998 Const-ify some arrays and use G_N_ELEMENTS instead
3999 of wasting oodles of RAM on terminator bits.
4001 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
4003 * gst-libs/gst/tag/gstvorbistag.c:
4004 (gst_tag_list_to_vorbiscomment_buffer):
4005 * tests/check/libs/tag.c: (GST_START_TEST):
4006 And the same for _to_vorbiscomment_buffer(): allow
4007 id_data_len == 0 for speex.
4009 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
4012 * docs/plugins/Makefile.am:
4013 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4014 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4015 * docs/plugins/inspect/plugin-gdp.xml:
4016 * gst/gdp/Makefile.am:
4017 * tests/check/Makefile.am:
4018 Move GDP plugin to -base from -bad. Closes #347783.
4020 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
4022 * gst-libs/gst/tag/gstvorbistag.c:
4023 (gst_tag_list_from_vorbiscomment_buffer):
4024 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
4025 Also add some checks to make sure we don't memcmp() beyond the end of
4026 vorbiscomment buffer if the ID to check for is larger than the buffer.
4028 * tests/check/libs/tag.c: (GST_START_TEST):
4029 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
4031 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
4033 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
4034 (gst_vorbis_enc_set_metadata):
4035 Use vorbis comment utility functions from libgsttag
4036 instead of re-inventing the wheel (partially fixes #347091).
4038 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
4040 * tests/check/elements/audioconvert.c: (GST_START_TEST):
4041 Fix leaks. Wait for state transitions that might happen ASYNC, as well
4044 2006-08-21 Wim Taymans <wim@fluendo.com>
4046 * docs/libs/Makefile.am:
4047 * docs/libs/gst-plugins-base-libs-sections.txt:
4048 * docs/libs/gst-plugins-base-libs.types:
4049 Don't try to GObject scan the netbuffer as it's not a GObject.
4052 * gst-libs/gst/netbuffer/gstnetbuffer.c:
4053 * gst-libs/gst/netbuffer/gstnetbuffer.h:
4054 Document GstNetBuffer.
4056 2006-08-21 Stefan Kost <ensonic@users.sf.net>
4058 * tests/check/elements/audioconvert.c: (GST_START_TEST),
4059 (audioconvert_suite):
4060 Add testcase for caps-size-explosion
4062 2006-08-20 Stefan Kost <ensonic@users.sf.net>
4064 * gst/audioconvert/gstaudioconvert.c:
4065 (gst_audio_convert_get_unit_size), (set_structure_widths):
4066 Lower debug, use g_assert in _get_unit_size
4068 * gst/audioresample/gstaudioresample.c:
4069 (audioresample_get_unit_size):
4070 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4071 (gst_ffmpegcsp_get_unit_size):
4072 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
4073 use g_assert in _get_unit_size
4075 2006-08-18 Wim Taymans <wim@fluendo.com>
4077 * docs/libs/gst-plugins-base-libs-sections.txt:
4078 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
4079 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
4080 (gst_rtp_buffer_get_payload_buffer):
4081 * gst-libs/gst/rtp/gstrtpbuffer.h:
4082 Document GstRTPBuffer.
4083 Added function to efficiently strip payload headers.
4084 API: gst_rtp_buffer_get_payload_subbuffer()
4086 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4088 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
4089 (gst_tag_to_vorbis_comments):
4090 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
4091 tags and deserialise them properly as well (#347091).
4092 Add some more gtk-doc blurbs and also some g_return_if_fail().
4094 * tests/check/libs/tag.c: (GST_START_TEST),
4095 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
4098 2006-08-17 Wim Taymans <wim@fluendo.com>
4100 * ext/ogg/Makefile.am:
4101 * ext/ogg/gstogg.c: (plugin_init):
4102 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
4103 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
4104 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
4105 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
4106 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
4107 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
4108 Added ogg-in-avi parser element. Fixes #140139.
4110 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
4111 Fixed a bug in oggdemux debug code.
4113 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4114 (gst_riff_create_audio_template_caps):
4115 Recognise Ogg in the AVI extensible wave format.
4117 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
4119 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4120 Make buffer durations add up (duration should be next_ts-ts for
4121 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
4124 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
4125 (test_buffer_timestamps), (cddabasesrc_suite):
4126 Add unit test for the above.
4128 * tests/check/Makefile.am:
4129 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
4130 to see what happens.
4132 2006-08-16 Wim Taymans <wim@fluendo.com>
4134 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
4135 (gst_alsasink_open):
4136 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
4138 Avoid setting and using a NULL device name.
4139 Print more info when we fail to open a device.
4141 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
4143 * docs/libs/gst-plugins-base-libs-sections.txt:
4144 * gst-libs/gst/tag/tag.h:
4145 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
4146 API: add gst_tag_parse_extended_comment() (#351426).
4148 * tests/check/Makefile.am:
4149 * tests/check/libs/.cvsignore:
4150 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
4151 Add unit test for gst_tag_parse_extended_comment().
4153 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4155 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
4156 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
4159 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
4161 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4162 * docs/plugins/gst-plugins-base-plugins-sections.txt:
4163 * docs/plugins/gst-plugins-base-plugins.args:
4164 * gst/playback/gstplaybin.c:
4167 * docs/plugins/inspect/plugin-adder.xml:
4168 * docs/plugins/inspect/plugin-alsa.xml:
4169 * docs/plugins/inspect/plugin-audioconvert.xml:
4170 * docs/plugins/inspect/plugin-audiorate.xml:
4171 * docs/plugins/inspect/plugin-audioresample.xml:
4172 * docs/plugins/inspect/plugin-audiotestsrc.xml:
4173 * docs/plugins/inspect/plugin-cdparanoia.xml:
4174 * docs/plugins/inspect/plugin-decodebin.xml:
4175 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4176 * docs/plugins/inspect/plugin-gnomevfs.xml:
4177 * docs/plugins/inspect/plugin-ogg.xml:
4178 * docs/plugins/inspect/plugin-pango.xml:
4179 * docs/plugins/inspect/plugin-playbin.xml:
4180 * docs/plugins/inspect/plugin-subparse.xml:
4181 * docs/plugins/inspect/plugin-tcp.xml:
4182 * docs/plugins/inspect/plugin-theora.xml:
4183 * docs/plugins/inspect/plugin-typefindfunctions.xml:
4184 * docs/plugins/inspect/plugin-video4linux.xml:
4185 * docs/plugins/inspect/plugin-videorate.xml:
4186 * docs/plugins/inspect/plugin-videoscale.xml:
4187 * docs/plugins/inspect/plugin-videotestsrc.xml:
4188 * docs/plugins/inspect/plugin-volume.xml:
4189 * docs/plugins/inspect/plugin-vorbis.xml:
4190 * docs/plugins/inspect/plugin-ximagesink.xml:
4191 * docs/plugins/inspect/plugin-xvimagesink.xml:
4192 Update to CVS version.
4194 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4196 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
4197 (gst_play_bin_set_property), (gst_play_bin_get_property),
4198 (value_list_append_structure_list),
4199 (gst_play_bin_handle_redirect_message),
4200 (gst_play_bin_handle_message):
4201 API: GstPlayBin::connection-speed
4202 Add "connection-speed" property; re-order redirect messages with
4203 multiple redirect locations depending on the minimum bitrate if
4204 that information is available and a connection speed is set
4207 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
4209 * gst/playback/gstplaybin.c:
4210 Update max volume to the same value that the volume element uses.
4212 2006-08-14 Wim Taymans <wim@fluendo.com>
4214 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
4217 2006-08-14 Wim Taymans <wim@fluendo.com>
4219 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
4220 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
4221 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
4222 Add some more debug info.
4223 Don't crash when a seek failed.
4224 Actually return the result of the seek instead of TRUE.
4225 Ignore multiple BOS pages with the same serial so that we don't create
4226 the same stream multiple times.
4227 Post an error when we fail to do the initial seek.
4229 2006-08-13 Wim Taymans <wim@fluendo.com>
4231 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
4232 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
4235 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
4236 (gst_alsa_mixer_new):
4237 Remove hack that always set the device to hw:0*.
4238 Properly find the card name for whatever device was configured.
4239 Do some better debugging.
4242 * ext/alsa/gstalsamixerelement.c:
4243 (gst_alsa_mixer_element_set_property),
4244 (gst_alsa_mixer_element_change_state):
4246 Handle setting of a NULL device name better.
4248 2006-08-11 Wim Taymans <wim@fluendo.com>
4250 * gst/adder/gstadder.c:
4251 Don't clip float values. Fixes #350900.
4253 2006-08-11 Andy Wingo <wingo@pobox.com>
4255 * gst/tcp/gsttcp.c: Really fix the build?
4257 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
4260 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4262 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
4263 Float caps shouldn't have a "signed" field.
4265 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
4267 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
4268 Implement SEEKING query in its most basic form, so that we can
4269 at least check if we're seekable or not (#350655).
4271 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
4273 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
4274 The checks here are not even close to anything that would
4275 justify MAXIMUM probability, lowering to POSSIBLE until someone
4276 fixes the checks (case at hand: quicktime redirection files
4277 might start with 00 00 01 XX and pass the checks here just
4280 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
4282 Patch by: Sjoerd Simons <sjoerd at luon net>
4284 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
4285 Better detection for multipart/x-mixed-replace: accept leading
4286 whitespaces before the boundary marker as well (as our very own
4287 multipartmux used to produce) (#349068).
4289 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
4291 Patch by: Young-Ho Cha <ganadist at chollian net>
4293 * gst-libs/gst/riff/riff-ids.h:
4294 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
4295 (gst_riff_create_audio_template_caps):
4296 Detect DTS audio streams (#350157).
4298 2006-08-05 Andy Wingo <wingo@pobox.com>
4300 * ext/theora/gsttheoraparse.h:
4301 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
4302 (theora_parse_dispose, theora_parse_set_property)
4303 (theora_parse_get_property, theora_parse_munge_granulepos)
4304 (theora_parse_push_buffer, theora_parse_change_state):
4305 API: GstTheoraParse::synchronization-points
4306 Add a property 'synchronization-points' to fix badly synchronized oggs.
4308 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4310 * tests/check/Makefile.am:
4311 * tests/check/libs/.cvsignore:
4312 * tests/check/libs/audio.c: (structure_contains_channel_positions),
4313 (fixed_caps_have_channel_positions), (GST_START_TEST),
4314 (audio_suite), (main):
4315 Add a few tests for the channel position stuff in libgstaudio.
4317 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4319 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
4320 (gst_alsa_detect_channels):
4321 * ext/alsa/gstalsasink.c:
4322 Add support for cards that (only) do more than 8 channels,
4323 like the Delta 44 (#345188).
4325 * gst-libs/gst/audio/multichannel.c:
4326 (gst_audio_check_channel_positions):
4327 * gst-libs/gst/audio/multichannel.h:
4328 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
4329 unspecified channel position and cannot be combined with any
4330 of the other audio channel positions; adjust position layout
4331 checks accordingly (#345188).
4333 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4335 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4336 Recognise ancient RealAudio files (see #349779).
4338 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
4340 Patch by: Jens Granseuer <jensgr at gmx net>
4342 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4343 Add typefinder for Interplay's MVE format (#348973).
4345 2006-08-02 Wim Taymans <wim@fluendo.com>
4347 Patch by: Marcel Moreaux <marcelm at luon dot net>
4349 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4350 (gst_base_rtp_depayload_add_to_queue):
4351 * gst-libs/gst/rtp/gstbasertpdepayload.h:
4352 Handle RTP sequence number rollover.
4353 Disable jitterbuffer by default.
4355 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
4357 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
4358 (audioresample_set_caps):
4359 Don't leak references to the incoming caps. Clean them up when
4362 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
4363 (gst_video_scale_finalize):
4364 Don't leak our temporary pixel buffer.
4366 * tests/check/Makefile.am:
4367 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
4368 (GST_START_TEST), (simple_launch_lines_suite):
4370 Fix leaks and re-enable the test for valgrind checking.
4372 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
4374 Patch by: Sjoerd Simons <sjoerd at luon net>
4376 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
4378 Add typefind function for multipart/x-mixed-replace (#348916).
4380 2006-07-28 Wim Taymans <wim@fluendo.com>
4382 * gst/adder/gstadder.c: (gst_adder_setcaps),
4383 (gst_adder_query_duration):
4384 Fix leak in duration query.
4385 Reflow some docs and notes.
4387 2006-07-28 Michael Smith <msmith@fluendo.com>
4389 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
4391 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
4394 2006-07-28 Michael Smith <msmith@fluendo.com>
4396 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
4397 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
4398 (gst_vorbis_enc_push_buffer),
4399 (gst_vorbis_enc_buffer_check_discontinuous),
4400 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
4401 * ext/vorbis/vorbisenc.h:
4402 Handle discontinuities in the input vorbis stream correctly,
4403 so that the output is properly timestamped (and has good granulepos
4404 values). Needs some oggmux fixes too.
4406 2006-07-27 Wim Taymans <wim@fluendo.com>
4408 patch by: Kai Vehmanen <kv2004 eca cx>
4410 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4411 (gst_base_rtp_depayload_chain),
4412 (gst_base_rtp_depayload_handle_sink_event),
4413 (gst_base_rtp_depayload_change_state):
4414 Don't send multiple newsegments with different formats.
4417 2006-07-26 Wim Taymans <wim@fluendo.com>
4419 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4420 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
4421 Make seeking in ogg more accurate again by doing the more correct
4422 granuletime to stream time conversion.
4424 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
4426 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
4427 (gst_multi_fd_sink_new_client):
4428 debug a little more understandably
4429 do not use goto as a substitute for break, especially if
4430 break is also being used
4432 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
4434 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
4435 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
4436 Remove GLib-2.6 compatibility cruft.
4438 2006-07-24 Wim Taymans <wim@fluendo.com>
4440 * gst-libs/gst/audio/gstbaseaudiosink.c:
4441 (gst_base_audio_sink_render):
4442 Don't try to align a sample to an unknown value.
4444 2006-07-24 Wim Taymans <wim@fluendo.com>
4446 * gst-libs/gst/audio/gstbaseaudiosink.c:
4447 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
4448 When the audio clock is slaved to another clock, never try to align
4449 samples but trust the rate interpolation algorithm.
4451 2006-07-24 Wim Taymans <wim@fluendo.com>
4453 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4454 Don't try to calculate silence samples, base class does this much
4457 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4458 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
4459 (gst_ring_buffer_acquire):
4460 Calculate silence samples correctly.
4462 * gst-libs/gst/audio/gstringbuffer.h:
4465 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
4467 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
4468 Limit search for the first markup tag to the first few kB of
4469 the file. If we don't find one there, it's highly unlikely that
4470 this is an XML(-ish) file.
4472 2006-07-21 Andy Wingo <wingo@pobox.com>
4474 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
4475 test to the one in vorbisenc. Also commented out.
4477 * tests/check/pipelines/vorbisenc.c:
4478 (test_discontinuity): New test, commented out until Mike lands
4479 some elite vorbisenc patches.
4481 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
4482 Bufferstraw was actually factored out of these tests. Now we share
4485 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
4486 for bufferstraw addition to gstcheck.
4488 2006-07-21 Wim Taymans <wim@fluendo.com>
4490 * ext/theora/theoradec.c: (clip_buffer):
4493 2006-07-21 Wim Taymans <wim@fluendo.com>
4495 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
4496 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
4497 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
4499 Avoid type casting when we can.
4501 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
4504 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
4506 * ext/alsa/gstalsamixerelement.c:
4507 (gst_alsa_mixer_element_change_state):
4508 Make state change fail if the specified device can't be opened
4511 2006-07-20 Wim Taymans <wim@fluendo.com>
4513 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
4514 (cb_newpad), (main):
4515 Example of a small audio/video player using decodebin.
4517 2006-07-20 Stefan Kost <ensonic@users.sf.net>
4519 * gst-libs/gst/riff/riff-ids.h:
4522 2006-07-19 Wim Taymans <wim@fluendo.com>
4524 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4525 (gst_base_rtp_depayload_chain),
4526 (gst_base_rtp_depayload_change_state):
4527 Don't assert when not negotiated but post a meaningfull
4528 error message. Fixes #347918.
4530 * gst-libs/gst/rtp/gstbasertppayload.c:
4531 Add comment about better default MTU size.
4533 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
4534 Small cleanups, start docs.
4536 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4538 Patch by: Martin Szulecki
4540 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
4541 If "device-name" is requested and the device is not
4542 open, try to temporarily open it to obtain this
4543 information (#342494).
4545 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
4547 * gst-libs/gst/tag/gstid3tag.c:
4548 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
4550 * gst-libs/gst/tag/gsttageditingprivate.h:
4551 * gst-libs/gst/tag/gstvorbistag.c:
4552 Some more random const-ifications.
4554 2006-07-18 Stefan Kost <ensonic@users.sf.net>
4556 * gst-libs/gst/riff/riff-ids.h:
4557 * gst-libs/gst/riff/riff-media.c:
4558 (gst_riff_create_video_template_caps):
4559 Add more FOURCCs (sort list to make stuff easier to find),
4560 add comment what those 16 bytes in struct _gst_riff_strh according to
4563 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4565 * gst-libs/gst/audio/multichannel.c:
4566 (gst_audio_check_channel_positions),
4567 (gst_audio_fixate_channel_positions):
4568 Const-ify two arrays.
4570 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
4572 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
4573 Fix typo, so that alsasink also advertises 8 channels
4574 if that's supported (tags: can, worms, open, alsa, ph34r).
4576 2006-07-17 Wim Taymans <wim@fluendo.com>
4578 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
4579 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
4580 *sigh*, when is the compiler going to warn when the comments
4581 are out-of-sync with the code.. Refix case of busted theora
4582 headers with 0 granule pos.
4584 2006-07-14 Wim Taymans <wim@fluendo.com>
4586 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4587 (gst_base_rtp_depayload_wait),
4588 (gst_base_rtp_depayload_change_state),
4589 (gst_base_rtp_depayload_set_property),
4590 (gst_base_rtp_depayload_get_property):
4591 Fix 99% cpu load by waiting for absolute times on the
4592 clock. Fixes #347300.
4594 2006-07-14 Andy Wingo <wingo@pobox.com>
4596 * ext/theora/gsttheoraparse.h:
4597 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
4598 (theora_parse_push_headers, theora_parse_clear_queue)
4599 (theora_parse_drain_queue_prematurely, )
4600 (theora_parse_sink_event, theora_parse_change_state): Queue events
4601 until we initialized our state, like in vorbisparse.
4603 * ext/vorbis/vorbisparse.h:
4604 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
4605 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
4606 (vorbis_parse_drain_queue_prematurely, )
4607 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
4608 until we have initialized our state. Fixes seeking after an
4611 2006-07-14 Andy Wingo <wingo@pobox.com>
4613 Patch by: Iain Holmes <iaingnome@gmail.com>
4615 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
4617 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
4620 Bump nano back to CVS
4622 === release 0.10.9 ===
4624 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4627 releasing 0.10.9, "I walk the line"
4629 2006-07-14 Michael Smith <msmith@fluendo.com>
4631 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
4632 Move a g_cond_signal to earlier to avoid sometimes deadlocking
4633 (commonly happens when running this test under valgrind) when trying
4634 to remove the buffer probe.
4636 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4638 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4639 Fix missing g_unlock from the previous commit
4641 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4643 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
4644 (gst_ximagesink_change_state):
4645 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
4646 (gst_xvimagesink_change_state):
4647 Implement a locking order to ensure we always take the object lock
4648 before the x_lock and never vice-versa.
4650 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
4652 * gst/playback/gstdecodebin.c: (find_compatibles):
4653 Fix a caps leak when linking (#347304)
4655 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4656 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
4657 (gst_ximagesink_change_state):
4658 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4659 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
4660 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
4661 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
4662 Don't leak shared memory resources. Use the object lock to protect
4663 against the xcontext disappearing while returning a buffer from the
4666 2006-07-12 Edward Hervey <edward@fluendo.com>
4668 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
4669 (vorbis_handle_comment_packet):
4670 gst_tag_list_merge() returns a new object. Take that into account when
4671 using it. This avoids memleak.
4672 Revert previous commit which is not needed.
4674 2006-07-12 Edward Hervey <edward@fluendo.com>
4676 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
4677 Reset the decoder in finalize so that all fields get cleared.
4679 2006-07-12 Wim Taymans <wim@fluendo.com>
4681 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4682 (gst_base_audio_src_set_clock),
4683 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
4684 Don't try to post an error message when setting the clock fails
4685 as this can happen when adding an element to a bin which will then
4686 deadlock. Fixes #347296.
4688 2006-07-12 Edward Hervey <edward@fluendo.com>
4690 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
4691 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
4692 (vorbis_handle_type_packet):
4693 Post tag messages on the bus even if we're not initialized.
4694 If we're not initialized, we still postpone the event pushing of tags.
4696 2006-07-12 Wim Taymans <wim@fluendo.com>
4698 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4699 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4700 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4701 Revert last two changes that broke the freeze.
4703 2006-07-12 Wim Taymans <wim@fluendo.com>
4705 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
4706 basesink calculates silence sample correctly for us.
4708 2006-07-12 Wim Taymans <wim@fluendo.com>
4710 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
4711 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
4712 Calculate correct silence samples so we don't fill our ringbuffer
4715 2006-07-12 Edward Hervey <edward@fluendo.com>
4717 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
4718 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
4719 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
4720 * ext/vorbis/vorbisdec.h:
4721 Delay sending events (newsegment, tags) until the decoder is properly
4725 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
4727 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
4728 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
4729 Patch from #347221 adding a test for audioconvert
4732 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
4734 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4735 (gst_ssa_parse_parse_line):
4736 Don't include the terminating NUL in the buffer size,
4737 it's only there for extra paranoia (would add random
4738 '*' characters at the end of each subtitle since the
4739 terminator itself is not valid UTF-8 technically).
4740 Also fix indenting after boilerplate macro.
4742 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
4744 * gst/playback/gstdecodebin.c: (close_pad_link):
4745 Also emit 'unknown-type' signal (which should really be
4746 called unhandled-type) if we found potential decoders/demuxers
4747 in the registry but none of them worked in the end (as in the
4748 case where the plugins don't exist any longer but are still
4749 listed in the registry). Fixes #329798.
4751 2006-07-08 Andy Wingo <wingo@pobox.com>
4753 * theoraparse.c (theora_parse_push_buffer)
4754 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
4755 Add some more debugging. Fix granulepos reconstruction in the face
4758 2006-07-06 Wim Taymans <wim@fluendo.com>
4760 * gst-libs/gst/audio/gstbaseaudiosink.c:
4761 (gst_base_audio_sink_class_init),
4762 (gst_base_audio_sink_provide_clock):
4763 Use gobject_class instead of G_OBJECT_CLASS (klass)
4765 * gst-libs/gst/audio/gstbaseaudiosrc.c:
4766 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
4767 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
4768 (gst_base_audio_src_get_time),
4769 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
4770 (gst_base_audio_src_create_ringbuffer):
4771 Fix latency and buffer-time constants and properties ala basesink.
4772 Implement pull based scheduling. Fixes #346527.
4773 Set default blocksize in GstBaseSrc to 0, we default to pushing out
4775 Refuse slaving to another clock instead of silently not working.
4776 Only provide a clock when we are actually able to do so.
4777 Various small cleanups and compiler hints.
4779 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4781 Patch by: Lutz Mueller <lutz at topfrose de>
4783 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
4785 Add typefinding for text/html (#346581).
4787 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4789 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
4790 (xml_check_first_element), (xml_type_find), (smil_type_find):
4791 Fix SMIL typefinding, make xml_check_first_element() more
4794 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
4796 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
4797 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
4798 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
4799 * gst/playback/gstplaybasebin.h:
4800 Protect list of elements with a subtitle-encoding property and
4801 the subtitle encoding member itself with a lock of their own
4802 instead of using the object lock. This prevents a dead-lock in
4803 the element-remove callback in some circumstances when shutting
4806 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
4808 * win32/common/libgsttag.def:
4809 Export some new functions.
4810 * win32/vs6/libgstogg.dsp:
4811 Add a link to libgsttag-0.10.lib.
4813 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
4815 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
4816 Some const-ification.
4818 2006-07-04 Wim Taymans <wim@fluendo.com>
4820 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
4821 Improve checking if we are dealing with a stream. Added some
4822 more uris that need buffering.
4824 2006-07-03 Edward Hervey <edward@fluendo.com>
4826 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
4827 Remove unused variable.
4829 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
4834 add GCOV_LIBS to GST_LIBS
4836 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
4838 Patch by: Michael Sheldon <webmaster at mikeasoft com>
4840 * ext/alsa/gstalsasrc.c:
4841 Add 32 bps to template caps and increase channels range
4842 from [1,2] to [1,MAX]. See #346326.
4844 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
4846 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4847 Recognise 'WMVA' video codec fourcc (#345879).
4849 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
4851 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4852 Fixed nasty memory leak
4854 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
4856 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
4857 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
4860 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
4862 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4863 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
4864 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
4865 Protect remove_fakesink using a mutex, so that we don't try and
4866 remove the fakesink simultaneously from multiple threads.
4868 When going from READY to PAUSED, restore the fakesink, so that
4869 it is there when decodebin gets reused.
4871 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
4873 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
4874 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4875 * gst-libs/gst/rtp/gstbasertppayload.c:
4876 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4877 * gst/tcp/gstmultifdsink.c:
4878 * gst/tcp/gsttcpclientsink.c:
4879 * gst/tcp/gsttcpclientsrc.c:
4880 * gst/tcp/gsttcpserversink.c:
4881 * gst/tcp/gsttcpserversrc.c:
4882 * gst/videorate/gstvideorate.c:
4883 * gst/videotestsrc/gstvideotestsrc.c:
4884 * sys/v4l/gstv4ljpegsrc.c:
4885 * sys/v4l/gstv4lmjpegsink.c:
4886 * sys/v4l/gstv4lsrc.c:
4887 * tests/examples/seek/scrubby.c:
4888 * tests/examples/seek/seek.c:
4889 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
4891 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4893 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
4894 Second field in GEnumValue shouldn't be a description,
4895 but a stringified version of the enum value.
4897 2006-06-22 Wim Taymans <wim@fluendo.com>
4899 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
4900 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
4901 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4902 Avoid type checking in buffer casts.
4903 Avoid caps copy in buffer_alloc when we can.
4904 Use pad_peer_accept.
4906 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4908 * gst-libs/gst/tag/tag.h:
4909 Oops, make that 'Since: 0.10.9'.
4911 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4913 * docs/libs/gst-plugins-base-libs-sections.txt:
4914 * gst-libs/gst/tag/tag.h:
4915 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
4916 (gst_tag_image_type_get_type):
4917 API: add GstTagImageType enum to describe images contained
4918 in image tags (#345641).
4920 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4922 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4923 Fix warnings with gst-inspect: "buffers-min" property
4924 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
4925 typo in property description.
4927 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
4929 Patch by: Cody Russell <bratsche at gnome org>
4931 * gst/audioresample/gstaudioresample.c:
4932 (gst_audioresample_class_init):
4933 * gst/playback/gststreamselector.c:
4934 (gst_stream_selector_class_init):
4935 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
4936 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
4937 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
4938 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
4939 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
4940 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
4941 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
4942 * gst/videotestsrc/gstvideotestsrc.c:
4943 (gst_video_test_src_class_init):
4944 * gst/volume/gstvolume.c: (gst_volume_class_init):
4945 Avoid unnecessary class cast check in class_init
4946 functions (#337747).
4948 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
4950 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
4951 (gst_text_overlay_video_chain):
4952 g_markup_escape_text() REALLY doesn't like non-UTF8 input
4953 and doesn't validate its input either (and neither did
4954 textoverlay it seems). Let's do that then and fix #345206.
4956 2006-06-19 Wim Taymans <wim@fluendo.com>
4958 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
4959 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
4960 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
4961 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
4962 (find_syncframe), (find_limits), (assign_value),
4963 (count_burst_unit), (gst_multi_fd_sink_new_client),
4964 (gst_multi_fd_sink_handle_client_write),
4965 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
4966 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
4967 (gst_multi_fd_sink_change_state):
4968 * gst/tcp/gstmultifdsink.h:
4969 Added shiny new burst-on-connect methods.
4970 Add properties to control the minimal amount of data queued.
4972 API: bytes-min property
4973 API: time-min property
4974 API: buffers-min property
4975 API: burst-unit property
4976 API: burst-value property
4977 API: add-full signal
4979 * gst/tcp/gsttcp-marshal.list:
4980 Added new marshaller code for the new signal.
4982 * tests/check/elements/multifdsink.c: (GST_START_TEST),
4983 (multifdsink_suite):
4984 Added testcases for new burst methods.
4986 2006-06-19 Edward Hervey <edward@fluendo.com>
4988 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
4989 Implement clipping for accurate seeking.
4992 2006-06-19 Wim Taymans <wim@fluendo.com>
4994 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
4996 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
4997 (gst_video_scale_transform):
4998 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
5000 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
5003 Fix --disable-external (can't set conditionals conditionally,
5006 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
5008 * tests/check/elements/audioresample.c: (test_reuse),
5009 (audioresample_suite):
5010 Add test case for bug #342789 fixed below.
5012 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
5014 * gst/audioresample/gstaudioresample.c:
5015 (gst_audioresample_class_init), (gst_audioresample_init),
5016 (audioresample_start), (audioresample_stop),
5017 (gst_audioresample_set_property), (gst_audioresample_get_property):
5018 Implement GstBaseTransform::start and ::stop so that audioresample
5019 can clear its internal state properly and be reused instead of
5020 causing non-negotiated errors with playbin under some circumstances
5023 * tests/check/elements/audioresample.c: (setup_audioresample),
5024 (cleanup_audioresample):
5025 Need to set element state here so that ::start and ::stop are
5028 2006-06-16 Wim Taymans <wim@fluendo.com>
5030 Patch by: Young-Ho Cha <ganadist at chollian dot net>
5032 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
5033 Parse extra data better, apparently it's right behind
5034 the normal strf header size. Fixes #343500.
5036 2006-06-16 Wim Taymans <wim@fluendo.com>
5038 * ext/alsa/gstalsasink.c: (set_hwparams):
5039 If we fail to set the buffer_time and period_time alsa
5040 parameters, post a warning and leave alsa select a
5041 default instead of failing. Fixes #342085
5043 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
5045 * docs/libs/gst-plugins-base-libs-sections.txt:
5046 * gst-libs/gst/cdda/gstcddabasesrc.h:
5047 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
5048 out in the header file and shouldn't be listed in the docs.
5050 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5051 Must dereference pointer to fourcc in the debug statement.
5053 2006-06-16 Stefan Kost <ensonic@users.sf.net>
5055 * docs/libs/Makefile.am:
5056 * docs/libs/gst-plugins-base-libs-docs.sgml:
5057 * docs/libs/gst-plugins-base-libs-sections.txt:
5058 * docs/libs/gst-plugins-base-libs.types:
5059 add remaining symbols into correct setions
5061 * gst-libs/gst/audio/gstringbuffer.c:
5064 * gst-libs/gst/audio/gstringbuffer.h:
5065 comment out not yet implemented function
5068 * gst-libs/gst/floatcast/floatcast.h:
5069 * gst-libs/gst/netbuffer/gstnetbuffer.c:
5070 add short descriptions
5073 * gst-libs/gst/interfaces/propertyprobe.c:
5074 fix return value docs
5076 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5077 simplify debug logging
5079 * gst-libs/gst/riff/riff-read.h:
5080 sync function prototype and docs
5082 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5083 remove left over symbol
5085 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
5090 Use GST_PLUGIN_DOCS macro in configure.ac, add
5091 --enable-plugin-docs default to autogen.sh and use
5092 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
5094 2006-06-15 Wim Taymans <wim@fluendo.com>
5096 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
5097 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
5098 (gst_ogg_demux_loop):
5099 Combine GstFlowReturn from the source pads to give a
5100 meaningfull result to the upstream peer or to stop the
5101 processing task in case of errors.
5103 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5105 * gst/playback/gststreaminfo.c: (cb_probe):
5106 Try GST_TAG_CODEC as fallback when extracting the
5107 codec name; more debug info.
5109 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5111 * ext/ogg/Makefile.am:
5112 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5113 Extract language tags from ogm subtitle streams, so that
5114 the subtitle menu choices are labelled correctly in
5115 Totem (fixes #344708).
5117 2006-06-14 Wim Taymans <wim@fluendo.com>
5119 Patch by: Alessandro Decina <alessandro at nnva dot org>
5121 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
5122 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
5123 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
5124 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5125 Fix various leaks. Fixes #343699.
5126 Add x-smoke mime type.
5128 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
5130 * gst-libs/gst/riff/riff-ids.h:
5131 Add IDs for 'bext' chunks (see #343837).
5133 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
5135 Patch by: Young-Ho Cha <ganadist at chollian net>
5137 * gst/subparse/samiparse.c: (sami_context_pop_state),
5138 (handle_start_font), (end_sami_element):
5139 Honour font face tags in SAMI subtitles (#344503).
5141 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5144 add missing files containing translatable strings
5146 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5148 * docs/libs/tmpl/.cvsignore:
5149 we don't want those *.sgml files in CVS either
5151 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5153 * docs/libs/.cvsignore:
5154 * tests/check/elements/.cvsignore:
5155 * tests/check/libs/.cvsignore:
5158 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5160 * docs/libs/Makefile.am:
5161 also commiting the changed Makefile.am (added more libs to the
5164 2006-06-11 Stefan Kost <ensonic@users.sf.net>
5166 * docs/libs/gst-plugins-base-libs-docs.sgml:
5167 * docs/libs/gst-plugins-base-libs-sections.txt:
5168 * docs/libs/gst-plugins-base-libs.types:
5169 first batch of reordering things, add index & hierarchy
5171 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
5174 use GST_PKG_CHECK_MODULES, cleans up output
5176 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5178 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
5179 Add support for burn:// URIs (#343385); const-ify things a bit,
5180 use G_N_ELEMENTS instead of hard-coded array size.
5182 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
5184 Patch by: Young-Ho Cha <ganadist at chollian net>
5186 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
5187 Fix up broken entities before passing them to libxml *sigh*.
5190 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5195 === release 0.10.8 ===
5197 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
5200 releasing 0.10.8, "Moar gij ziet mij nie"
5202 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5219 * win32/common/config.h:
5222 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
5224 * docs/libs/tmpl/gstaudio.sgml:
5225 * docs/libs/tmpl/gstcolorbalance.sgml:
5226 * docs/libs/tmpl/gstmixer.sgml:
5227 * docs/libs/tmpl/gstringbuffer.sgml:
5228 * docs/libs/tmpl/gsttuner.sgml:
5229 * docs/libs/tmpl/gstxoverlay.sgml:
5230 * gst-libs/gst/audio/audio.c:
5231 * gst-libs/gst/audio/gstringbuffer.c:
5232 * gst-libs/gst/interfaces/colorbalance.c:
5233 * gst-libs/gst/interfaces/mixer.c:
5234 * gst-libs/gst/interfaces/tuner.c:
5235 * gst-libs/gst/interfaces/xoverlay.c:
5236 move last template doc snippets to source code and delete them
5238 2006-06-06 Michael Smith <msmith@fluendo.com>
5240 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
5241 (theora_parse_drain_queue):
5242 Mark DELTA_UNIT on non-keyframes.
5244 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
5246 * gst-libs/gst/audio/gstbaseaudiosink.c:
5247 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
5248 * gst-libs/gst/audio/gstbaseaudiosink.h:
5249 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
5250 (gst_ring_buffer_samples_done):
5251 * gst-libs/gst/audio/gstringbuffer.h:
5252 Document better the fact that latency_time and buffer_time are values
5253 stored in microseconds, and not the usual GStreamer nanoseconds.
5254 Change the variables (compatibly) that store them from GstClockTime
5255 to guint64 to make it more clear that they're not storing clock times.
5256 Also, remove the bogus property description that says the user can
5257 specify -1 to get the default value, since that's never been the case.
5259 When computing the default segment size for the ring buffer, make it
5260 an integer number of samples.
5262 When the sub-class indicates a delay greater than the number of
5263 samples we've written return 0 from the audio sink get_time method.
5265 2006-06-02 Michael Smith <msmith@fluendo.com>
5267 * tests/check/elements/audioconvert.c: (set_channel_positions),
5268 (get_float_mc_caps), (get_int_mc_caps):
5269 * tests/check/elements/audioresample.c:
5270 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
5271 * tests/check/elements/videorate.c:
5272 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
5273 * tests/check/elements/volume.c:
5274 * tests/check/elements/vorbisdec.c:
5275 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
5276 Don't busy-wait in tests; this was causing test timeouts very
5277 frequently when running under valgrind.
5279 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5282 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
5283 (gst_multi_fd_sink_remove_client_link),
5284 (gst_multi_fd_sink_client_queue_caps),
5285 (gst_multi_fd_sink_client_queue_buffer),
5286 (gst_multi_fd_sink_handle_client_write),
5287 (gst_multi_fd_sink_render):
5288 * gst/tcp/gstmultifdsink.h:
5289 make multifdsink properly deal with streamheader:
5290 - streamheader is taken from caps
5291 - buffers marked with IN_CAPS are not sent
5292 - streamheaders are sent, on connection, from the caps of the
5293 buffer where the client gets positioned to
5294 - further streamheader changes are done every time the client
5295 will receive a buffer with different caps
5296 * tests/check/elements/multifdsink.c: (GST_START_TEST),
5297 (gst_multifdsink_create_streamheader):
5300 2006-06-02 Michael Smith <msmith@fluendo.com>
5302 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5303 Reinstate limit on channel count. Vorbis does not define the meaning
5304 of > 6 channels, so they're just independent channels. Gstreamer
5305 currently has no mechanism to represent N independent channels.
5307 2006-06-02 Michael Smith <msmith@fluendo.com>
5309 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
5310 Don't arbitrarily restrict channel counts and rate in vorbis.
5311 In terms of effects likely on real-world files, this fixes 96kHz
5314 2006-06-02 Michael Smith <msmith@fluendo.com>
5316 * gst/audioconvert/audioconvert.c: (float):
5317 More correct float->int conversion.
5319 2006-06-02 Michael Smith <msmith@fluendo.com>
5321 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
5322 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
5323 value. Fixes g-critical on trying to play back ogg containing
5326 2006-06-02 Wim Taymans <wim@fluendo.com>
5328 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
5330 * gst/playback/gstplaybasebin.h:
5331 Make the subtitle detection work from any thread so we don't
5332 deadlock. Fixes #343397.
5334 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
5336 * gst/volume/Makefile.am:
5337 Seriously, it's not *that* hard to get compilation right. Even
5338 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
5340 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5342 * gst/volume/gstvolume.c: (volume_choose_func),
5343 (volume_update_real_volume), (gst_volume_class_init),
5344 (gst_volume_init), (volume_process_float), (volume_process_int16),
5345 (volume_process_int16_clamp), (volume_set_caps),
5346 (volume_transform_ip), (plugin_init):
5347 * gst/volume/gstvolume.h:
5348 rewrite the passthrough check, split _int16 and _int16_clamp, fix
5349 another property desc., remove unused param from process function
5351 * tests/check/elements/volume.c: (volume_suite):
5352 reactivate the passthrough test
5354 2006-06-01 Stefan Kost <ensonic@users.sf.net>
5356 * ext/alsa/gstalsamixerelement.h:
5357 * ext/alsa/gstalsamixeroptions.h:
5358 * ext/alsa/gstalsamixertrack.h:
5359 * ext/gnomevfs/gstgnomevfssink.h:
5360 * ext/gnomevfs/gstgnomevfssrc.h:
5361 * ext/theora/gsttheoradec.h:
5362 * ext/theora/gsttheoraenc.h:
5363 * ext/theora/gsttheoraparse.h:
5364 * ext/vorbis/vorbisparse.h:
5365 * gst-libs/gst/audio/gstaudioclock.h:
5366 * gst-libs/gst/audio/gstaudiofilter.h:
5367 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5368 * gst/audioconvert/gstaudioconvert.h:
5369 * gst/audioresample/gstaudioresample.h:
5370 * gst/audiotestsrc/gstaudiotestsrc.h:
5371 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
5372 * gst/playback/gststreamselector.h:
5373 * gst/tcp/gstmultifdsink.h:
5374 * gst/tcp/gsttcpclientsink.h:
5375 * gst/tcp/gsttcpclientsrc.h:
5376 * gst/tcp/gsttcpserversink.h:
5377 * gst/tcp/gsttcpserversrc.h:
5378 * gst/videorate/gstvideorate.h:
5379 * gst/videoscale/gstvideoscale.h:
5380 * gst/videotestsrc/gstvideotestsrc.h:
5381 * gst/volume/gstvolume.h:
5382 * sys/v4l/gstv4ljpegsrc.h:
5383 * sys/v4l/gstv4lmjpegsink.h:
5384 * sys/v4l/gstv4lmjpegsrc.h:
5385 * sys/v4l/gstv4lsrc.h:
5386 * sys/ximage/ximagesink.h:
5387 * sys/xvimage/xvimagesink.h:
5388 * tests/old/testsuite/alsa/sinesrc.h:
5389 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
5391 2006-05-31 Wim Taymans <wim@fluendo.com>
5393 * ext/libvisual/visual.c: (gst_visual_reset),
5394 (gst_visual_sink_setcaps), (gst_visual_sink_event),
5395 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
5397 Use running time before doing QoS.
5400 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
5402 * docs/libs/Makefile.am:
5403 set a magic variable to indicate we know the docs are incomplete
5405 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
5407 * win32/common/libgstvideo.def:
5408 export gst_video_calculate_display_ratio
5409 * win32/vs6/libgstvideoscale.dsp:
5410 add link to libgstvideo-0.10.lib
5412 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
5414 * gst/playback/gstplaybasebin.c: (gen_source_element):
5415 Throw a more comprehensible error for rtsp:// URIs (rather
5416 than erroring out with a negotiation error later on) until
5417 we fix playbin to handle rtspsrc etc.
5419 2006-05-30 Wim Taymans <wim@fluendo.com>
5421 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
5422 (gst_text_overlay_text_event):
5425 2006-05-30 Wim Taymans <wim@fluendo.com>
5427 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
5428 (gst_adder_request_new_pad), (gst_adder_release_pad):
5429 * gst/adder/gstadder.h:
5430 Implement release_request_pad.
5431 Make padcounter atomic.
5433 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
5434 Added check for release_pad in adder.
5436 2006-05-30 Wim Taymans <wim@fluendo.com>
5438 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
5441 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
5443 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5444 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5445 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5446 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
5447 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
5448 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
5449 (gst_ogg_demux_bisect_forward_serialno),
5450 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
5451 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
5453 clean up printf formats for granulepos and serialno
5455 2006-05-30 Michael Smith <msmith@fluendo.com>
5457 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
5458 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
5459 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
5460 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
5461 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
5462 * ext/vorbis/vorbisenc.h:
5463 Multi-channel caps negotiation, so we can do proper multichannel
5464 vorbis encoding, negotiated through audioconvert.
5466 2006-05-30 Wim Taymans <wim@fluendo.com>
5468 * tests/check/elements/adder.c: (test_event_message_received),
5469 (test_play_twice_message_received), (GST_START_TEST),
5471 Added check to show that #339935 is fixed with ongoing
5472 adder and collectpads fixes.
5474 2006-05-29 Wim Taymans <wim@fluendo.com>
5476 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
5477 Don't leak pad name.
5479 2006-05-29 Wim Taymans <wim@fluendo.com>
5481 * gst/adder/gstadder.c: (gst_adder_query_duration),
5482 (forward_event_func), (forward_event), (gst_adder_src_event):
5484 Make query/seeking code threadsafe.
5486 * tests/check/Makefile.am:
5487 * tests/check/elements/adder.c: (test_event_message_received),
5488 (GST_START_TEST), (test_play_twice_message_received):
5489 Fix adder test case.
5491 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
5493 Patch by: Young-Ho Cha <ganadist at chollian net>
5495 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5496 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
5497 (set_encoding_element), (decodebin_element_added_cb),
5498 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
5499 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
5500 * gst/playback/gstplaybasebin.h:
5501 Add 'subtitle-encoding' property to playbin, so applications can
5502 force a subtitle encoding for non-UTF8 subtitles (#342268).
5504 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
5505 (gst_sub_parse_set_property):
5506 Rename recently-added 'encoding' property to 'subtitle-encoding'
5507 (so it can be proxied by playbin/decodebin in a generic way
5508 with less danger of false positives).
5510 2006-05-29 Michael Smith <msmith@fluendo.com>
5512 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
5513 (append_with_other_format), (set_structure_widths),
5514 (gst_audio_convert_transform_caps):
5515 Patch from #341562: give more specific audio caps in get_caps, so
5516 that basetransform can make better decisions on what caps to
5519 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5521 * tests/check/elements/volume.c:
5522 make it compile again
5524 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5526 * tests/check/elements/volume.c: (volume_suite):
5527 disable test until #343196 gets resolved
5529 2006-05-28 Stefan Kost <ensonic@users.sf.net>
5531 * gst/adder/gstadder.c: (gst_adder_get_type):
5532 Make it easier to copy&paste
5534 * gst/volume/Makefile.am:
5535 * gst/volume/gstvolume.c: (volume_update_real_volume),
5536 (gst_volume_set_volume), (gst_volume_set_mute),
5537 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
5538 (volume_transform_ip), (volume_update_mute),
5539 (volume_update_volume):
5540 * gst/volume/gstvolume.h:
5541 Add own debug category, move duplicate code to helper function, fix
5542 property texts, add more comments and prepare ffor liboil-goodness
5544 * tests/check/Makefile.am:
5545 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
5546 add test for mute and passtrough case, be a bit more verbose to track
5549 * tests/check/generic/states.c: (GST_START_TEST):
5550 catch elements that fail to instantiate
5552 2006-05-28 Edward Hervey <edward@fluendo.com>
5554 * tests/check/pipelines/simple-launch-lines.c:
5555 * tests/check/pipelines/theoraenc.c:
5556 * tests/check/pipelines/vorbisenc.c:
5557 Comment out tests using parse_launch() if core was built without
5558 parsing capabilities.
5560 2006-05-27 Edward Hervey <edward@fluendo.com>
5562 * tests/check/Makefile.am:
5563 Extra bonus points for whoever explains to ensonic that you are meant
5564 to test unit tests thoroughly before commiting them, especially if
5565 you know it's going to break.
5566 De-activated element/adder tests.
5568 2006-05-27 Edward Hervey <edward@fluendo.com>
5570 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5571 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
5572 Marking caps conversion issues as GST_WARNING is way too verbose,
5573 Moving them to GST_LOG.
5575 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
5578 Replace current README (containing the release notes from
5579 some 0.9.x version) with a proper README taken from the core.
5581 2006-05-26 Wim Taymans <wim@fluendo.com>
5583 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
5584 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
5585 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
5586 (vorbis_dec_change_state):
5589 Clip output samples to segment boundaries.
5591 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5593 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
5594 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
5595 Improve the errors produced on bad output, including some human
5596 readable description strings.
5597 Handle the (theoretical for ximagesink) case where the XServer
5598 has a different idea about the size required for a particular
5599 frame and gives us too small a memory allocation.
5601 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
5603 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5604 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
5605 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5606 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
5607 Improve the errors produced on bad output, including some human
5608 readable description strings.
5609 Handle RGB Xv formats properly by transforming them into our
5610 big-endian caps description.
5611 Use gst_caps_truncate to ensure that we never try and choose a
5612 non-fixed caps in buffer_alloc.
5613 Handle the case where the XServer has a different idea about the size
5614 required for a particular frame and gives us too small a memory
5616 Use -1 to indicate 'no image format', because 0 is a valid XServer
5617 image format number.
5618 Put RGB Xv formats at the end of the caps, so that we always prefer
5620 Iterate the available Xv Encodings to determine the maximum width and
5621 height, and then return that in our caps.
5622 (Closes #315312, #337544)
5624 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
5626 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
5627 When there is only one unfinished pad and it receives an event that
5628 doesn't match our requirements, we need to set alldone=FALSE so that
5629 the fakesink is not removed yet.
5631 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
5633 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
5634 Use gst_type_find_helper_for_buffer() to find the type
5635 of stream from the first packet.
5638 Bump requirements to core CVS (needed for vorbis
5639 typefinding to work).
5641 2006-05-24 Edward Hervey <edward@fluendo.com>
5643 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
5644 Added the 'prfl' atom type which MQV (no, it's not a typo) files
5645 contain. Else they play perfectly fine with qtdemux.
5647 2006-05-23 Stefan Kost <ensonic@users.sf.net>
5649 * ext/theora/theoradec.c:
5650 * ext/theora/theoraenc.c:
5651 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
5652 * gst/audiorate/gstaudiorate.c:
5653 make more debug catagories static
5655 * tests/check/Makefile.am:
5656 * tests/check/elements/adder.c: (message_received),
5657 (test_event_message_received), (GST_START_TEST),
5658 (test_play_twice_message_received), (adder_suite):
5659 added test case for using element twice, extra bonus points for anyone
5660 who can make these test run reliably
5662 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
5664 * ext/theora/theoradec.c: (theora_dec_chain):
5665 Make work with time-stamped input buffers that do not
5666 have a granulepos in BUFFER_OFFSET_END (like theora
5667 buffers coming from matroskademux). Fixes #342448.
5669 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
5671 Patch by: Peter Kjellerstedt <pkj at axis com>
5673 * gst/tcp/Makefile.am:
5674 fdstresstest doesn't need Gtk+, fix compilation if
5675 gtk is not available (#342566).
5677 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5679 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5681 Removed redundant floor()
5683 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5685 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5686 On second thought, just skip JUNK chunks automatically, so
5687 the caller doesn't have to handle this. Fixes #342345.
5688 Also, return GST_FLOW_UNEXPECTED if we get a short read,
5691 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
5693 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
5694 Don't bail out on JUNK chunks with a size of 0 (would try to
5695 pull_range 0 bytes before, which sources don't like too much).
5698 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5700 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5701 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5702 Use the gstutil scaling function to preserve 64 bits while calculating
5703 output width and height from the display-aspect-ratio. (A continuation
5706 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
5708 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
5709 (gst_xvimagesink_buffer_alloc):
5710 * sys/xvimage/xvimagesink.h:
5711 When performing buffer allocations, remember the caps and image format
5712 we return so that if the same caps are asked for next time we can
5713 return them immediately without doing any caps intersections.
5715 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
5717 * gst-libs/gst/rtp/README:
5718 Some new documentation
5719 * gst-libs/gst/rtp/gstrtpbuffer.h:
5720 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
5721 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
5722 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
5723 New RTP audio base payloader class. Supports frame or sample based
5724 codecs. Not enabled in Makefile.am until approved.
5726 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5728 * tests/check/elements/alsa.c: (test_device_property_probe):
5729 Fix test case: don't try to free NULL GValueArray when there
5732 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5734 * tests/check/Makefile.am:
5735 * tests/check/elements/alsa.c: (test_device_property_probe),
5736 (alsa_suite), (main):
5737 Add simple test that runs a device property probe on alsasrc,
5738 alsasink and alsamixer. Disable valgrind check for now (too
5739 many leaks in libasound, and valgrind ignored my suppressions
5742 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5744 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
5745 (gst_alsa_device_property_probe_probe_property),
5746 (gst_alsa_device_property_probe_needs_probe),
5747 (gst_alsa_device_property_probe_get_values),
5748 (gst_alsa_type_add_device_property_probe_interface):
5749 * ext/alsa/gstalsadeviceprobe.h:
5750 * ext/alsa/gstalsamixerelement.c:
5751 (gst_alsa_mixer_element_init_interfaces):
5752 * ext/alsa/gstalsamixerelement.h:
5753 Clean up and simplify alsa device probing. Make it actually work
5754 for multiple classes. Don't cache results any longer.
5756 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
5757 (gst_alsasink_init):
5758 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
5759 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
5760 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
5761 Make alsasink and alsasrc implement the GstPropertyProbe interface
5762 for device probing (#342181).
5763 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
5765 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
5767 * gst/subparse/samiparse.c: (handle_start_font):
5768 Don't ignore return value of strtol (++compiler_happiness).
5770 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
5772 Patch by: Young-Ho Cha <ganadist chollian net>
5774 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5775 (gst_sub_parse_class_init), (gst_sub_parse_init),
5776 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
5778 * gst/subparse/gstsubparse.h:
5779 Add 'encoding' property (#341681).
5781 * gst/subparse/samiparse.c: (characters_sami):
5782 Output is pango markup, so we need to escape text
5783 between tags (#342143).
5785 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5787 * gst-libs/gst/audio/multichannel.c:
5788 (gst_audio_check_channel_positions):
5789 It's okay to have caps with channels=1 and a channel position
5790 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
5791 (deinterleavers might want to keep the position in the caps,
5792 so that they can be re-interleaved again properly later).
5793 Leave check for unexpected 2-channel layouts intact for now.
5795 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
5797 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
5798 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
5799 basesrc can do its job correctly.
5801 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
5803 * ext/alsa/Makefile.am:
5804 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
5805 (gst_alsa_detect_formats), (get_channel_free_structure),
5806 (caps_add_channel_configuration), (gst_alsa_detect_channels),
5807 (gst_alsa_probe_supported_formats):
5808 * ext/alsa/gstalsa.h:
5809 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5810 Refactor and improve caps probing code: probe signedness
5811 when we probe the supported formats/widths; set endianness
5812 to the one we actually probed for (ie. cpu endianness).
5814 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
5815 (gst_alsasrc_close):
5816 * ext/alsa/gstalsasrc.h:
5817 Implement caps probing for alsasrc.
5819 2006-05-15 Wim Taymans <wim@fluendo.com>
5821 * ext/theora/theoradec.c: (gst_theora_dec_reset),
5822 (theora_dec_src_query), (theora_dec_src_event),
5823 (theora_dec_sink_event), (theora_handle_comment_packet),
5824 (theora_handle_data_packet), (theora_dec_change_state):
5825 Cleanups, add some G_LIKELY.
5826 Use segment helpers instead of our own wrong code.
5827 Clear queued buffers on seek and READY.
5829 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
5830 (vorbis_dec_convert), (vorbis_dec_src_query),
5831 (vorbis_dec_src_event), (vorbis_dec_sink_event),
5832 (vorbis_handle_comment_packet), (vorbis_dec_push),
5833 (vorbis_handle_data_packet), (vorbis_dec_chain),
5834 (vorbis_dec_change_state):
5835 * ext/vorbis/vorbisdec.h:
5836 Remove old useless packetno variable.
5837 Do position query properly.
5839 Do cleanup of queued buffers in new helper function
5842 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5844 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
5845 Query supported sample rates. Fixes #341732.
5847 2006-05-15 Julien MOUTTE <julien@moutte.net>
5849 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
5850 (gst_decode_bin_change_state): Make decodebin reusable
5851 when going from PAUSE_TO_READY and then back to PAUSED.
5854 2006-05-15 Wim Taymans <wim@fluendo.com>
5856 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
5857 (vorbis_dec_convert), (vorbis_dec_src_query),
5858 (vorbis_dec_sink_query), (vorbis_dec_src_event),
5859 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
5860 (vorbis_dec_clean_queued), (vorbis_dec_push),
5861 (vorbis_handle_data_packet), (vorbis_dec_change_state):
5862 Cleanups. Use refcounting and DEBUG_OBJECT.
5863 Reset segment on flush, use code methods instead of our
5865 Fix potential memleak.
5867 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5869 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5870 (gst_alsasink_init):
5871 * ext/alsa/gstalsasink.h:
5872 Don't leak allocated snd_output_t structure if there's
5873 more than one alsasink instance at a time (#341873).
5874 Also fix GObject macros in header file.
5876 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5878 * gst/subparse/gstsubparse.c:
5879 (gst_sub_parse_data_format_autodetect):
5880 Don't use libxml functions in the typefinding code.
5882 2006-05-15 Wim Taymans <wim@fluendo.com>
5884 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
5885 Fix seeking performance in the case where a non-header
5886 packet has a 0 granulepos (busted theora case).
5888 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
5889 the first place, you limelight stealer you)
5891 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5893 * gst/subparse/gstsubparse.c:
5894 (gst_sub_parse_data_format_autodetect):
5895 Improve SAMI typefinding: handle case where there are
5896 whitespaces or newlines in front of the first <SAMI>
5899 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5902 Build video4linux plugin even if there's no XVIDEO, just
5903 without implementing the GstXOverlay interface (#334002).
5905 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5908 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
5910 Add tentative support for libvisual-0.4 (#336881).
5912 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5914 Patch by: Young-Ho Cha <ganadist at chollian net>
5916 * gst/subparse/samiparse.c: (handle_start_font):
5917 Need to map "silver" colour explicitly (#169936).
5919 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
5921 Patch by: Young-Ho Cha <ganadist at chollian net>
5923 * gst/subparse/Makefile.am:
5924 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
5925 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
5926 (gst_sub_parse_format_autodetect), (feed_textbuf),
5927 (gst_subparse_type_find), (plugin_init):
5928 * gst/subparse/gstsubparse.h:
5929 * gst/subparse/samiparse.c:
5930 * gst/subparse/samiparse.h:
5931 Add support for SAMI subtitles (#169936).
5933 2006-05-14 Michael Smith <msmith@fluendo.com>
5935 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
5936 Fix #341696: crash when mixing L+R+C to mono or stereo.
5937 * tests/check/Makefile.am:
5938 * tests/check/elements/audioconvert.c: (set_channel_positions),
5939 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
5940 (audioconvert_suite):
5941 Add test for the above, including some generic framework bits for
5942 testing multichannel things.
5944 === release 0.10.7 ===
5946 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
5949 releasing 0.10.7, "Leave the gun"
5951 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
5953 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5954 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5957 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
5959 * docs/libs/gst-plugins-base-libs-docs.sgml:
5960 * docs/libs/gst-plugins-base-libs-sections.txt:
5961 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
5962 * gst-libs/gst/video/video.h:
5963 * gst/videoscale/Makefile.am:
5964 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
5965 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5966 * tests/check/Makefile.am:
5967 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
5969 Fix integer overflow problem with pixel-aspect-ratio calculations
5970 in videoscale and xvimagesink (#341542)
5972 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
5974 * gst-libs/gst/tag/gstid3tag.c:
5975 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
5977 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
5980 update win32 files listing
5982 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
5984 patch by: Sjoerd Simons (sjoerd@luon.net)
5986 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
5987 (group_create), (group_destroy), (add_stream),
5988 (gst_play_base_bin_get_property),
5989 (gst_play_base_bin_get_streaminfo_value_array):
5990 * gst/playback/gstplaybasebin.h:
5991 API: GstPlayBaseBin::stream-info-value-array property
5992 use a more bindings-friendly way of exposing streaminfo
5993 using a GValueArray. Tested in ipython.
5996 2006-05-11 Wim Taymans <wim@fluendo.com>
5998 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
5999 (queue_underrun_cb), (queue_filled_cb):
6000 Also catch queue underruns but don't do anything yet.
6001 Refactor and comment queue enlarging code a bit.
6003 * gst/playback/gstplaybasebin.c: (queue_overrun),
6004 (queue_threshold_reached), (queue_out_of_data),
6005 (gen_preroll_element):
6006 If a queue over/underruns check that we don't create nasty
6007 deadlocks when the min-threshold is not reached but the
6008 max-bytes is. In those cases disable max-bytes when we
6009 know that the queue is fed timed data.
6012 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
6014 * gst/playback/gstplaybin.c: (gen_audio_element):
6015 Make playbin automatically plug an 'audioresample'
6016 element before the audio sink as well. This solves
6017 problems with sinks that only accept a very specific
6018 sample rate, like esdsink (e.g. #340379).
6020 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
6022 * gst/playback/gstplaybasebin.c: (gen_source_element):
6023 Make http sources send special headers so that we receive
6024 icecast metadata if the http stream is an icecast stream
6025 (otherwise the server will just ignore them). This also
6026 means that from now on users will need the 'icydemux'
6027 element from gst-plugins-good installed if they want to
6028 listen to icecast radio streams. (#341432, #333657).
6030 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
6032 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
6033 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
6034 remove stupid example from docs - it should come with a simple
6037 * tests/check/elements/multifdsink.c: (wait_bytes_served),
6038 (fail_if_can_read), (GST_START_TEST),
6039 (gst_multifdsink_create_streamheader), (multifdsink_suite):
6040 add a test for changing streamheader which exposes a bug in
6043 2006-05-11 Michael Smith <msmith@fluendo.com>
6045 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
6046 (gst_gnome_vfs_src_received_headers_callback):
6047 * ext/gnomevfs/gstgnomevfssrc.h:
6048 Don't set icy-caps unless we have a sane interval value. Move
6049 interval to a local variable; we never use it outside this function.
6051 2006-05-11 Wim Taymans <wim@fluendo.com>
6053 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
6054 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
6055 Register special buffer types along with the objects so
6056 that they are not registered at runtime from N different
6057 streaming threads since they are not threadsafe.
6059 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
6061 * tests/check/elements/multifdsink.c: (wait_bytes_served),
6062 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
6063 add two more tests, one doing streamheader
6065 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
6067 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
6068 clean up the bufqueue when shutting down
6069 * tests/check/Makefile.am:
6070 * tests/check/elements/multifdsink.c: (setup_multifdsink),
6071 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
6073 add a test for the leak that was just fixed
6075 2006-05-10 Wim Taymans <wim@fluendo.com>
6077 * gst/adder/gstadder.c: (gst_adder_setcaps),
6078 (gst_adder_query_duration), (gst_adder_query), (forward_event),
6079 (gst_adder_src_event), (gst_adder_sink_event),
6080 (gst_adder_class_init), (gst_adder_finalize),
6081 (gst_adder_request_new_pad), (gst_adder_collected):
6082 * gst/adder/gstadder.h:
6083 Updated some docs. Added comments and FIXMEs all over the place.
6084 Improve debugging info.
6085 Fix leak on finalize by not calling the parent.
6086 Implement duration query.
6087 Make event forwarding threadsafe.
6088 Correctly send NEWSEGMENT at start and after flush.
6089 Handle EOS correctly.
6090 Post error when not negotiated.
6092 * tests/check/elements/adder.c: (GST_START_TEST):
6093 Added FIXME in the test.
6095 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6097 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
6098 (gst_text_overlay_halign_get_type),
6099 (gst_text_overlay_wrap_mode_get_type):
6100 * ext/theora/theoradec.c: (theora_handle_type_packet),
6101 (theora_handle_data_packet):
6102 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
6103 (theora_enc_sink_setcaps), (theora_enc_chain):
6104 * gst-libs/gst/cdda/gstcddabasesrc.c:
6105 (gst_cdda_base_src_mode_get_type):
6106 * gst/audiotestsrc/gstaudiotestsrc.c:
6107 (gst_audiostestsrc_wave_get_type):
6108 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6109 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6110 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6111 (gst_sync_method_get_type), (gst_unit_type_get_type),
6112 (gst_client_status_get_type):
6113 * gst/videoscale/gstvideoscale.c:
6114 (gst_video_scale_method_get_type):
6115 * gst/videotestsrc/gstvideotestsrc.c:
6116 (gst_video_test_src_pattern_get_type):
6117 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
6118 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
6119 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
6120 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
6121 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
6122 (paint_setup_RGB565), (paint_setup_xRGB1555):
6123 Const-ify GEnumValue and GFlagsValue arrays. Use
6124 GST_ROUND_UP_* macros instead of home-made ones.
6126 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6129 Require core CVS for the new newsegment stuff.
6131 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6133 Patch by: Sjoerd Simons <sjoerd at luon net>
6135 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
6136 Register nick for enum value (#341160).
6138 2006-05-09 Stefan Kost <ensonic@users.sf.net>
6140 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
6142 backout typefind patch #340375
6144 * tests/check/elements/adder.c: (message_received),
6145 (GST_START_TEST), (adder_suite):
6146 redo, signal-handling of test
6148 2006-05-09 Wim Taymans <wim@fluendo.com>
6150 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
6151 (gst_adder_collected):
6152 * gst/adder/gstadder.h:
6153 Remove bogus segment merging and forwarding, we don't
6154 care about timestamps anyway and we just produce a
6156 Also create a nice NEWSEGMENT event when we start.
6157 Use _scale_int some more.
6159 2006-05-09 Edward Hervey <edward@fluendo.com>
6161 * tests/icles/stress-xoverlay.c:
6162 Fix if core was built without parsing support.
6164 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
6166 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6167 Add SEDG (Samsung MPEG-4) fourcc.
6169 2006-05-09 Edward Hervey <edward@fluendo.com>
6171 * tests/icles/stress-xoverlay.c:
6172 * tests/examples/volume/volume.c:
6173 Fix if core was built without parsing support.
6175 * tests/examples/seek/seek.c:
6176 Disable the parse_launch example if core was built without parsing
6179 2006-05-08 Edward Hervey <edward@fluendo.com>
6181 * autogen.sh: (CONFIGURE_DEF_OPT):
6182 libtoolize on Darwin/MacOSX is called glibtoolize
6184 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6186 * tests/check/Makefile.am:
6187 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
6188 Disable the adder test, until the build-slaves posses the kindness to
6189 either like it or to give valid reason for not doing so
6191 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6193 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6195 Shuffle NULL state change around and raise timeout more
6197 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6199 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
6200 (mp4_type_find), (plugin_init):
6201 Add typefind to distinguish between "audio/x-m4a" and new type
6202 "video/mp4". Fixes #340375
6204 * tests/check/elements/adder.c: (adder_suite):
6205 Raise timeout to make buildbot happy
6207 2006-05-07 Stefan Kost <ensonic@users.sf.net>
6209 * gst/adder/gstadder.c: (gst_adder_sink_event),
6210 (gst_adder_request_new_pad), (gst_adder_change_state):
6211 * gst/adder/gstadder.h:
6212 * tests/check/Makefile.am:
6213 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
6214 (adder_suite), (main):
6215 Add sink-event handling to adder. It tries to merge incomming
6216 newsegment-events. Added test to check if segment_done is comming
6217 through. Fixes #340060
6219 2006-05-05 Andy Wingo <wingo@pobox.com>
6221 * ext/theora/theoraparse.c (gst_theora_parse_init)
6222 (theora_parse_src_convert, theora_parse_src_query):
6223 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6224 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
6225 query functions on the source pads of the theora and vorbis parse
6226 elements. Fixes position querying when doing a remux.
6228 2006-05-05 Michael Smith <msmith@fluendo.com>
6230 * ext/theora/theoraparse.c: (parse_granulepos),
6231 (theora_parse_drain_queue_prematurely),
6232 (theora_parse_queue_buffer), (theora_parse_sink_event):
6234 Fix invalid granulepos outputs when starting with a non-keyframe.
6236 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
6238 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
6239 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
6240 Rearrange MPEG system stream detection, fixing some memleaks in the
6242 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
6243 they clean up their data correctly.
6244 Remove unused ogganx caps and move the 'is_annodex' check to inside
6245 the 'is_ogg' if statement.
6247 2006-05-05 Wim Taymans <wim@fluendo.com>
6249 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
6250 Properly remove ghostpads. Fixes #340392
6252 2006-05-04 David Schleef <ds@schleef.org>
6254 * gst/typefind/gsttypefindfunctions.c:
6256 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
6258 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
6259 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
6261 When typefinding an MP3 in push-based mode, don't penalise the
6262 probability down to 74% when we found 5 valid frames just because we
6263 can't peek the end of the file.
6265 Make the probability for detecting MPEG Transport Streams based on the
6266 number of sequential headers we successfully detected.
6268 2006-05-03 Wim Taymans <wim@fluendo.com>
6270 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6271 (vorbis_dec_push), (vorbis_dec_chain):
6272 Still produce an error when we receive an empty packet.
6274 2006-05-03 Wim Taymans <wim@fluendo.com>
6276 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6277 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
6278 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
6279 Mark buffers with DISCONT after seek and after activating new
6282 * ext/theora/gsttheoradec.h:
6283 * ext/theora/theoradec.c: (gst_theora_dec_reset),
6284 (theora_get_query_types), (theora_dec_sink_event),
6285 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
6286 (theora_dec_change_state):
6288 Detect and mark DISCONT buffers.
6290 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6291 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
6292 (vorbis_dec_change_state):
6293 * ext/vorbis/vorbisdec.h:
6295 Detect and mark DISCONT buffers.
6296 Don't crash on 0 sized buffers.
6298 2006-05-03 Wim Taymans <wim@fluendo.com>
6300 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
6301 (volume_transform_ip):
6302 Increase "volume" property to 10.0. Fixes #340369.
6303 Set the process function to NULL when capsnego fails so that
6304 we properly error out.
6306 2006-05-02 Stefan Kost <ensonic@users.sf.net>
6308 * gst/playback/gstplaybin.c: (add_sink):
6309 * gst/playback/test.c: (main):
6310 * gst/playback/test5.c: (dump_element_stats):
6311 * gst/playback/test6.c: (main):
6312 free caps using gst_caps_unref, don't leak caps-strings
6314 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
6316 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
6318 Refine musepack typefinding a bit. Return MAXIMUM
6319 probability when we detect stream version 7 to make
6320 sure the mpeg audio typefinder doesn't trump us.
6322 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
6324 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
6325 Protect against unexpected NULL strf_data buffer.
6327 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6329 * tests/check/elements/audioconvert.c: (verify_convert),
6331 interpret the out[] buffer in the order the bytes are actually
6332 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
6333 Other tests should use BYTE_ORDER since the array is filled in
6336 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6338 * tests/check/elements/audioconvert.c: (verify_convert),
6340 when a test fails, give an indication of which it is
6342 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
6344 * gst-libs/gst/cdda/gstcddabasesrc.c:
6345 compile fix; strtol() needs <stdlib.h>
6347 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6349 * ext/alsa/gstalsamixerelement.c:
6350 * ext/alsa/gstalsasrc.c:
6351 * ext/cdparanoia/gstcdparanoiasrc.c:
6352 * ext/gnomevfs/gstgnomevfssink.c:
6353 * ext/gnomevfs/gstgnomevfssrc.c:
6354 * ext/ogg/gstoggdemux.c:
6355 * ext/ogg/gstoggmux.c:
6356 * ext/ogg/gstoggparse.c:
6357 * ext/ogg/gstogmparse.c:
6358 * ext/pango/gstclockoverlay.c:
6359 * ext/pango/gsttextoverlay.c:
6360 * ext/pango/gsttextrender.c:
6361 * ext/pango/gsttimeoverlay.c:
6362 * ext/theora/theoradec.c:
6363 * ext/theora/theoraenc.c:
6364 * ext/vorbis/vorbisdec.c:
6365 * ext/vorbis/vorbisenc.c:
6366 * gst-libs/gst/audio/gstaudiofilter.c:
6367 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6368 * gst/audioconvert/gstaudioconvert.c:
6369 * gst/audiorate/gstaudiorate.c:
6370 * gst/audioresample/gstaudioresample.c:
6371 * gst/audiotestsrc/gstaudiotestsrc.c:
6372 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6373 * gst/playback/gstdecodebin.c:
6374 * gst/playback/gstplaybin.c:
6375 * gst/playback/gststreamselector.c:
6376 * gst/subparse/gstsubparse.c:
6377 * gst/tcp/gstmultifdsink.c:
6378 * gst/tcp/gsttcpclientsink.c:
6379 * gst/tcp/gsttcpclientsrc.c:
6380 * gst/tcp/gsttcpserversink.c:
6381 * gst/tcp/gsttcpserversrc.c:
6382 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6383 * gst/videorate/gstvideorate.c:
6384 * gst/videoscale/gstvideoscale.c:
6385 * gst/videotestsrc/gstvideotestsrc.c:
6386 * gst/volume/gstvolume.c:
6387 * sys/v4l/gstv4ljpegsrc.c:
6388 * sys/v4l/gstv4lmjpegsink.c:
6389 * sys/v4l/gstv4lmjpegsrc.c:
6390 * sys/v4l/gstv4lsrc.c:
6391 * sys/ximage/ximagesink.c:
6392 * sys/xvimage/xvimagesink.c:
6393 * tests/check/libs/cddabasesrc.c:
6394 make GstElementDetails const
6396 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6398 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
6400 send events from src-pad to all sink-pads fixes #338657
6402 2006-04-28 Stefan Kost <ensonic@users.sf.net>
6404 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
6405 (alsasink_parse_spec):
6406 query width capabilities from alsa, fixes #338919
6408 2006-04-28 Wim Taymans <wim@fluendo.com>
6410 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
6411 (gst_multi_fd_sink_remove_client_link):
6412 * gst/tcp/gstmultifdsink.h:
6413 Fix race condition in multifdsink that can lead to spurious
6414 duplicate clients. this patch adds a new signal that is fired when
6415 multifdsink has removed all references to the fd.
6417 Updated documentation.
6418 API: client-fd-removed signal added
6420 2006-04-28 Michael Smith <msmith@fluendo.com>
6422 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
6423 When asking g_value_array_new to prealloc elements, we may as well
6424 ask for the right number of elements.
6426 2006-04-28 Wim Taymans <wim@fluendo.com>
6428 * gst-libs/gst/audio/gstbaseaudiosink.c:
6429 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
6430 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6431 patch to make timestamp checking more tollerant to rounding
6432 errors given that real discontinuities are to be marked on
6433 buffers. Fixes some asf files and #338778.
6434 Also avoid some crashers when we receive an event in the
6437 2006-04-28 Michael Smith <msmith@fluendo.com>
6439 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
6440 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
6441 (gst_gnome_vfs_src_get_property),
6442 (gst_gnome_vfs_src_send_additional_headers_callback),
6443 (gst_gnome_vfs_src_received_headers_callback),
6444 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
6445 (gst_gnome_vfs_src_stop):
6446 * ext/gnomevfs/gstgnomevfssrc.h:
6447 Remove ICY handling (mostly) from gnomevfssrc, in favour of
6448 proper shared support within icydemux.
6450 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6452 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
6453 (gst_video_rate_swap_prev), (gst_video_rate_chain):
6455 fix a leak when no caps negotiated
6456 fix counting of input frames
6457 * tests/check/elements/.cvsignore:
6458 * tests/check/elements/videorate.c: (assert_videorate_stats),
6459 (GST_START_TEST), (videorate_suite):
6462 2006-04-28 Wim Taymans <wim@fluendo.com>
6464 * gst-libs/gst/audio/gstringbuffer.c:
6465 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
6466 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
6467 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
6468 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
6469 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
6470 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6471 (gst_ring_buffer_commit), (gst_ring_buffer_read),
6472 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
6473 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
6474 Check arguments passed to public functions instead of
6477 2006-04-28 Wim Taymans <wim@fluendo.com>
6479 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
6480 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
6481 GstBaseAudioSrc must be live or it does not work.
6483 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
6484 Don't set live to TRUE as this is the default in the parentclass.
6486 2006-04-28 Wim Taymans <wim@fluendo.com>
6488 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
6489 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
6490 Videoscale doesn't pass on pixel-aspect ratio. Handle all
6491 fixation cases better. Fixes #338991
6493 2006-04-28 Wim Taymans <wim@fluendo.com>
6495 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6496 Handle 0/1 framerate correctly Fixes #331901.
6498 2006-04-28 Wim Taymans <wim@fluendo.com>
6500 * tests/check/elements/audioconvert.c: (get_float_caps),
6501 (GST_START_TEST), (audioconvert_suite):
6502 Added check for correct clipping when doing float samples
6505 2006-04-28 Wim Taymans <wim@fluendo.com>
6507 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
6508 (gst_video_rate_chain):
6509 Print more debugging info.
6511 2006-04-28 Wim Taymans <wim@fluendo.com>
6513 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
6514 (resample_set_state_from_caps):
6515 Add support for other formats audioresample can handle such as
6516 32 bits in and float and 64 bits float. Fixes #301759
6518 2006-04-28 Wim Taymans <wim@fluendo.com>
6520 * gst/audioconvert/audioconvert.c: (float):
6521 correctly clip float samples > 1.0. Fixes #338718
6523 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6525 Patch by: Young-Ho Cha <ganadist at chollian net>
6527 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
6528 (gst_text_overlay_render_text):
6529 Don't strip newlines from the text. Also, center lines
6530 within multi-line paragraphs (#339405).
6532 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
6534 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
6535 Fix wavpack typefinding to work in more cases (don't peek
6536 for chunks of multiple hundred kBs at once, but process
6537 things step-by-step in smaller units). Fixes #339786.
6539 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6544 === release 0.10.6 ===
6546 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
6549 releasing 0.10.6, "Chao"
6551 2006-04-26 David Schleef <ds@schleef.org>
6553 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
6556 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6559 * win32/common/config.h:
6562 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6564 patch by: Wim Taymans
6566 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6567 (gst_ogg_demux_perform_seek):
6568 make sure correct newsegments are sent, so that the decoder
6569 and the demuxer agree on timestamps. Fixes playback of a lot
6570 of Ogg files that do not start from 0. Fixes #339833.
6572 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
6574 Patch by: Edward Hervey <edward@fluendo.com>
6576 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
6577 * tests/check/Makefile.am:
6578 * tests/check/elements/videorate.c: (assert_videorate_stats),
6579 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
6580 (videorate_suite), (main):
6581 Fix an infinite loop if frames are passed in with wrongly ordered
6582 timestamps. Fixes #339013.
6584 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6586 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6588 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
6589 fix typefinding on some ISO files. Fixes #339212.
6591 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6593 Patch by: Tim-Philipp Müller <tim at centricular dot net>
6595 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6596 add another H264 fourcc. Fixes #339047.
6598 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
6600 Patch by: Jan Schmidt
6602 * gst/playback/gststreamselector.c:
6603 (gst_stream_selector_bufferalloc):
6604 Restore old StreamSelector behaviour.
6607 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
6610 * win32/common/config.h:
6613 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6615 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
6617 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6618 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
6619 Fix some memory leaks: on finalize, free buffers left in the queue
6620 before destroying the queue; in _push(), unref rtp_buf even if
6621 the process vfunc returned a NULL buffer as output buffer (#337548);
6622 demote some recuring debug messages to LOG level.
6624 2006-04-11 Wim Taymans <wim@fluendo.com>
6626 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6627 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6628 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
6629 (gst_ogg_demux_loop):
6631 Respect segment stop when emiting EOS or SEGMENT_DONE.
6634 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
6636 * gst/playback/gststreamselector.c:
6637 (gst_stream_selector_get_property):
6638 Don't leak pad name.
6640 2006-04-10 Michael Smith <msmith@fluendo.com>
6642 * tests/check/Makefile.am:
6643 * tests/check/gst-plugins-base.supp:
6644 Suppress an old libtheora bug (fixed in more recent versions), so
6645 that FC4 buildslaves can pass.
6647 2006-04-10 Wim Taymans <wim@fluendo.com>
6649 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6650 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6651 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
6652 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
6653 (gst_ogg_demux_loop):
6655 Remember what error we got when finding chains, if we
6656 were shutdown, that would not be an error.
6658 2006-04-10 Wim Taymans <wim@fluendo.com>
6660 * gst-libs/gst/audio/gstbaseaudiosink.c:
6661 (gst_base_audio_sink_event):
6662 Starting the ringbuffer when we did not acquire it can cause
6663 a deadlock, is pointless and causes nasty things for
6665 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
6667 2006-04-10 Wim Taymans <wim@fluendo.com>
6669 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6670 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
6671 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
6672 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6673 (gst_ogg_demux_deactivate_current_chain),
6674 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
6675 (gst_ogg_demux_bisect_forward_serialno),
6676 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
6677 Add some more debugging.
6679 2006-04-10 Wim Taymans <wim@fluendo.com>
6681 * ext/theora/theoradec.c: (theora_dec_src_event),
6682 (theora_handle_data_packet):
6683 Some more debug info.
6685 * tests/examples/seek/seek.c: (start_seek), (main):
6686 Print element messages too.
6688 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
6690 * gst/audioresample/debug.h:
6691 replace debug macros with variable number of parameters
6692 by a simple alias to gstreamer standard debug macros
6693 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
6694 supported by MSVC 6.0 and 7.1)
6695 * gst/audioresample/resample.h:
6696 define M_PI and rint for WIN32
6697 * win32/common/libgstaudio.def:
6698 * win32/common/libgstriff.def:
6699 * win32/common/libgsttag.def:
6700 * win32/common/libgstvideo.def:
6701 add new exported functions
6703 update project files
6705 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6707 * ext/alsa/gstalsamixeroptions.c:
6708 (gst_alsa_mixer_options_class_init):
6709 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
6710 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
6711 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
6712 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
6713 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
6714 * gst-libs/gst/audio/gstaudiofilter.c:
6715 (gst_audio_filter_class_init):
6716 * gst-libs/gst/audio/gstaudiosink.c:
6717 (gst_audioringbuffer_class_init):
6718 * gst-libs/gst/audio/gstaudiosrc.c:
6719 (gst_audioringbuffer_class_init):
6720 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
6721 * gst-libs/gst/interfaces/colorbalancechannel.c:
6722 (gst_color_balance_channel_class_init):
6723 * gst-libs/gst/interfaces/mixeroptions.c:
6724 (gst_mixer_options_class_init):
6725 * gst-libs/gst/interfaces/mixertrack.c:
6726 (gst_mixer_track_class_init):
6727 * gst-libs/gst/interfaces/tunerchannel.c:
6728 (gst_tuner_channel_class_init):
6729 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
6730 * gst-libs/gst/netbuffer/gstnetbuffer.c:
6731 (gst_netbuffer_class_init):
6732 * gst-libs/gst/rtp/gstbasertppayload.c:
6733 (gst_basertppayload_class_init):
6734 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6735 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
6736 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6737 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
6738 * gst/playback/gststreamselector.c:
6739 (gst_stream_selector_class_init):
6740 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
6741 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
6742 * sys/v4l/gstv4lcolorbalance.c:
6743 (gst_v4l_color_balance_channel_class_init):
6744 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
6745 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
6746 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
6747 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
6748 (gst_v4l_tuner_norm_class_init):
6749 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
6750 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
6751 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
6752 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
6754 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6756 * ext/pango/gsttextrender.h:
6757 * gst-libs/gst/audio/gstaudiosink.h:
6758 * gst-libs/gst/audio/gstaudiosrc.h:
6759 * gst-libs/gst/audio/gstbaseaudiosink.h:
6760 * gst-libs/gst/audio/gstbaseaudiosrc.h:
6761 * gst-libs/gst/audio/gstringbuffer.h:
6762 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6763 * gst-libs/gst/rtp/gstbasertppayload.h:
6764 * gst-libs/gst/video/gstvideofilter.h:
6765 * gst-libs/gst/video/gstvideosink.h:
6766 * gst/playback/gstplaybasebin.h:
6767 * gst/tcp/gstmultifdsink.h:
6768 * sys/v4l/gstv4lelement.h:
6769 Fix broken GObject macros
6771 2006-04-08 Stefan Kost <ensonic@users.sf.net>
6773 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
6774 More debug to trace why my USB headset is not working with gst
6776 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6778 * gst/playback/gstplaybasebin.c: (group_destroy):
6779 Clean up our group elements properly in the case where it never
6780 got committed - it still got added unconditionally to the bin.
6782 2006-04-07 Wim Taymans <wim@fluendo.com>
6784 * ext/theora/theoradec.c: (theora_dec_sink_event),
6785 (theora_handle_data_packet), (theora_dec_chain):
6786 Unref unhandled events.
6787 Protect against empty buffers.
6788 Perform QoS on running time.
6790 2006-04-07 Michael Smith <msmith@fluendo.com>
6792 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
6793 (gst_vorbis_enc_chain):
6794 Remove leaks from vorbisenc.
6795 Mostly minor changes, the only significant one is that now the
6796 buffers we set as 'streamheader' on the caps are copies of the
6797 original buffers, to avoid circular refcounting problems.
6799 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
6801 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
6802 Don't remove our mute-probe if someone else already did so.
6803 Don't set a 2nd one if there is already one pending on the pad.
6805 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6807 When a seek fails, ensure that playbin is still set back to playing.
6809 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
6810 (mpeg_ts_type_find), (plugin_init):
6811 Add a typefind function for mpeg-ts streams. (Closes: #336617)
6813 2006-04-06 Andy Wingo <wingo@pobox.com>
6815 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
6816 (gst_video_rate_init): Caps-related parameters should not be reset
6817 by a flush -- move their inits to the instance init function.
6818 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
6819 is not OK, just return the result.
6821 * gst/audiotestsrc/gstaudiotestsrc.c
6822 (gst_audio_test_src_class_init)
6823 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
6824 broken by Stefan's commit on 24 March.
6826 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
6827 buffers being pushed out. Fixes oggmux ! multifdsink.
6829 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
6831 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
6832 (gst_vorbis_dec_init), (vorbis_dec_finalize):
6833 * ext/vorbis/vorbisdec.h:
6834 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
6835 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
6836 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
6837 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
6838 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
6839 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
6840 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
6841 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
6842 (gst_vorbis_enc_buffer_from_packet),
6843 (gst_vorbis_enc_buffer_from_header_packet),
6844 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
6845 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
6846 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
6847 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
6848 (gst_vorbis_enc_change_state):
6849 * ext/vorbis/vorbisenc.h:
6850 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
6851 vorbisenc adhere to the official nomenclature; use boilerplate
6854 2006-04-04 Andy Wingo <wingo@pobox.com>
6856 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6857 Whoops, fix bug introduced. Bad hacker!
6859 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
6860 Properly handle the case where you get EOS before any buffers are
6861 received. Use gst_buffer_make_metadata_writable where appropriate.
6863 * ext/theora/theoradec.c (theora_handle_data_packet): This value
6864 is often negative -- make it signed so as not to wrap around.
6865 Fixes segfaults introduced on 9 March.
6867 2006-04-03 Wim Taymans <wim@fluendo.com>
6869 * ext/theora/gsttheoradec.h:
6870 * ext/theora/theoradec.c: (theora_dec_src_event):
6871 Don't try to store a gdouble in a gboolean.
6874 2006-04-03 Michael Smith <msmith@fluendo.com>
6876 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
6878 Make it suck slightly less by writing out the final page.
6879 Still can't encode a vorbis-in-ogg file correctly, though.
6881 2006-04-03 Andy Wingo <wingo@pobox.com>
6883 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
6886 * ext/theora/theora.c (plugin_init): Register theoraparse.
6888 * ext/theora/gsttheoraparse.h:
6889 * ext/theora/theoraparse.c: New files implementing a theora
6890 parser. Now we can properly remux ogg/theora+vorbis, yay.
6892 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
6894 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6896 * gst/audiotestsrc/gstaudiotestsrc.c:
6897 Fixed the sample pipeline (see #323798)
6899 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
6902 * win32/common/config.h:
6903 * win32/common/config.h.in:
6904 use AS_VERSION and AS_NANO
6907 2006-03-31 Andy Wingo <wingo@pobox.com>
6909 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
6910 uninitialized variable return that would happen.
6912 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
6913 uninitialized variable return that would never happen.
6915 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
6916 (vorbis_parse_sink_event): Add an event function to flush our
6917 state on a seek, and to drain buffers on a premature EOS.
6918 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
6919 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
6920 (vorbis_parse_chain, vorbis_parse_queue_buffer)
6921 (vorbis_parse_drain_queue): Queue up buffers until we can set
6922 their timestamps and granulepos values.
6924 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
6925 and keep track of data needed for deriving granulepos and
6926 timestamps for buffers.
6928 2006-03-29 Wim Taymans <wim@fluendo.com>
6930 Patch by: j^ <j at bootlab dot org>
6932 * ext/alsa/gstalsamixerelement.c:
6933 (gst_alsa_mixer_element_class_init):
6934 * ext/alsa/gstalsasink.c:
6935 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
6936 * ext/ogg/gstoggdemux.c:
6937 * ext/ogg/gstoggmux.c:
6938 * ext/ogg/gstoggparse.c:
6939 * ext/pango/gstclockoverlay.c:
6940 * ext/pango/gsttextoverlay.c:
6941 * ext/pango/gsttextrender.c:
6942 * ext/pango/gsttimeoverlay.c:
6943 * ext/theora/theoradec.c:
6944 * ext/theora/theoraenc.c:
6945 * ext/vorbis/vorbisdec.c:
6946 * ext/vorbis/vorbisenc.c:
6947 * gst/audioconvert/gstaudioconvert.c:
6948 * gst/subparse/gstsubparse.c:
6949 * gst/tcp/gstmultifdsink.c:
6950 * gst/tcp/gsttcpclientsink.c:
6951 * gst/tcp/gsttcpclientsrc.c:
6952 * gst/tcp/gsttcpserversink.c:
6953 * gst/tcp/gsttcpserversrc.c:
6954 better/unified long descriptions
6957 2006-03-29 Wim Taymans <wim@fluendo.com>
6959 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
6961 Don't let double and triple clicks mess up our state.
6963 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6965 * gst/playback/gstplaybin.c: (gen_video_element),
6966 (gen_text_element), (gen_audio_element), (gen_vis_element):
6967 Error out gracefully when we can't create any of the usual
6968 conversion elements for some reason. Also, don't try to
6969 create an audioscale (sic) element that's not used anyway.
6971 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
6973 * gst/playback/gstplaybasebin.c: (setup_source):
6974 Don't post RESOURCE_NOT_FOUND error when we can't find a source
6975 element for a particular protocol, that's confusing for users.
6976 Instead, post a RESOURCE_FAILED error, so that our own error
6977 message is actually shown in totem etc. (#336303).
6979 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6981 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
6983 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
6984 (gst_gnome_vfs_src_get_icy_metadata):
6985 Fix some minor memory leaks (#336194).
6987 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
6989 * ext/gnomevfs/gstgnomevfs.c:
6990 (gst_gnome_vfs_location_to_uri_string):
6991 * ext/gnomevfs/gstgnomevfs.h:
6992 * ext/gnomevfs/gstgnomevfssink.c:
6993 (gst_gnome_vfs_sink_set_property):
6994 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
6995 Make gnomevfssink accept filenames as well as URIs for the
6996 "location" property, just like gnomevfssrc does (and
6997 filesrc/filesink do) (#336190).
6999 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
7001 * tests/check/generic/clock-selection.c: (GST_START_TEST):
7002 set to NULL before unreffing, fixes a valgrind leak.
7003 Why was this not triggering the error that an object needs to
7004 be NULL before unreffing ?
7005 * win32/common/config.h:
7008 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
7010 * gst/subparse/gstsubparse.c: (convert_encoding),
7011 (gst_sub_parse_change_state):
7012 * gst/subparse/gstsubparse.h:
7013 Text subtitle files may or may not be UTF-8. If it's not, we
7014 don't really want to see '?' characters in place of non-ASCII
7015 characters like accented characters. So let's assume the input
7016 is UTF-8 until we come across text that is clearly not. If it's
7017 not UTF-8, we don't really know what it is, so try the following:
7018 (a) see whether the GST_SUBTITLE_ENCODING environment variable
7019 is set; if not, check (b) if the current locale encoding is
7020 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
7021 the current locale encoding is UTF-8 and the environment variable
7022 was not set to any particular encoding. Not perfect, but better
7023 than nothing (and better than before, I think) (fixes #172848).
7025 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
7028 update core requirement to 0.10.4.1 because of async_playback
7029 vmethod on GstBaseSink
7031 2006-03-24 Stefan Kost <ensonic@users.sf.net>
7033 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
7034 * gst/adder/gstadder.c: (gst_adder_init):
7035 use DEBUG_FUNCPTR for collectpads
7037 2006-03-24 Stefan Kost <ensonic@users.sf.net>
7039 * docs/plugins/Makefile.am:
7040 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7041 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7042 * ext/cdparanoia/gstcdparanoiasrc.c:
7043 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
7044 (gst_gnome_vfs_sink_class_init):
7045 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
7046 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
7047 * ext/ogg/gstoggmux.c:
7048 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
7049 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
7050 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
7051 * ext/pango/gsttextoverlay.c:
7052 * ext/pango/gsttextrender.c:
7053 * ext/theora/theoradec.c:
7054 * ext/theora/theoraenc.c:
7055 * ext/vorbis/vorbisdec.c:
7056 * ext/vorbis/vorbisenc.c:
7057 * gst-libs/gst/audio/gstaudiofilter.c:
7058 (gst_audio_filter_base_init):
7059 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
7060 (gst_audio_filter_template_base_init):
7061 * gst/adder/gstadder.c: (gst_adder_get_type):
7062 * gst/adder/gstadder.h:
7063 * gst/audioconvert/gstaudioconvert.c:
7064 * gst/audiotestsrc/gstaudiotestsrc.c:
7065 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
7066 (gst_audio_test_src_create):
7067 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7068 * gst/playback/gstdecodebin.c:
7069 * gst/playback/gstplaybin.c:
7070 * gst/playback/gststreamselector.c:
7071 (gst_stream_selector_base_init):
7072 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
7073 * gst/volume/gstvolume.c:
7074 * sys/v4l/gstv4lmjpegsink.c:
7075 * sys/v4l/gstv4lmjpegsrc.c:
7076 * tests/check/libs/cddabasesrc.c:
7077 * tests/old/examples/gob/gst-identity2.gob:
7078 Add docs for adder, use GST_ELEMENT_DETAILS macro,
7079 define GstElementDetails at the top
7081 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
7083 * win32/common/libgstinterfaces.def:
7084 Add a lot of export functions for gst-python
7085 * win32/vs6/libgstinterfaces.dsp:
7086 Add a missing include folder in the project configuration
7088 2006-03-23 Wim Taymans <wim@fluendo.com>
7090 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7091 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7092 (gst_base_audio_src_change_state):
7093 Fix audio sources, forgot to make the ringbuffer
7096 2006-03-23 Wim Taymans <wim@fluendo.com>
7098 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7099 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
7100 (gst_base_audio_src_change_state):
7101 unparent instead of unref the ringbuffer.
7103 2006-03-23 Wim Taymans <wim@fluendo.com>
7105 * gst-libs/gst/audio/gstbaseaudiosink.c:
7106 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
7107 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
7108 Implement new async_play vmethod to start slaving and allow
7109 playback start in case of async PLAY state changes.
7111 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7112 Enable QoS with new method in base class.
7114 2006-03-23 Wim Taymans <wim@fluendo.com>
7116 Patch by: Julien MOUTTE <julien at moutte dot net>
7118 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
7119 (gst_video_test_src_do_seek), (gst_video_test_src_create):
7120 Partially handle 0 framerate, only EOS after the first frame
7123 2006-03-23 Wim Taymans <wim@fluendo.com>
7125 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7127 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7128 (gst_riff_create_video_template_caps):
7129 * gst/ffmpegcolorspace/avcodec.h:
7130 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7131 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7132 (gst_ffmpegcsp_avpicture_fill):
7133 * gst/ffmpegcolorspace/imgconvert.c:
7134 Patch for support of YVU9 AVI files (#334822)
7136 2006-03-22 Edward Hervey <edward@fluendo.com>
7138 * docs/design/design-decodebin.txt:
7139 Added design document for new decodebin
7140 (Target Caps): text/x-pango-markup is also a default target caps.
7142 2006-03-22 Wim Taymans <wim@fluendo.com>
7144 * gst-libs/gst/audio/gstbaseaudiosink.c:
7145 (gst_base_audio_sink_dispose):
7146 Since we _parent the ringbuffer, we also need to
7147 _unparent instead of a plain _unref.
7149 2006-03-22 Wim Taymans <wim@fluendo.com>
7151 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
7152 (stop_seek), (scrub_toggle_cb), (main):
7155 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
7157 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
7158 (gst_ogg_parse_chain):
7159 Fix very inefficient usage of linked lists (#335365).
7161 2006-03-21 Edward Hervey <edward@fluendo.com>
7163 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7164 * gst/playback/gstplaybin.c: (handoff):
7165 * gst/playback/gststreamselector.c:
7166 (gst_stream_selector_set_property):
7167 gcc 4.1 unreferenced pointer fixes.
7168 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
7169 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
7170 gst_buffer_ref() now takes a GstBuffer*.
7172 2006-03-20 Julien MOUTTE <julien@moutte.net>
7174 * sys/xvimage/xvimagesink.c:
7175 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
7178 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
7180 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
7181 (id3v1_type_find), (apetag_type_find), (plugin_init):
7182 Can't do tag preferences via probability, as tags would then
7183 lose against types that are recognised with MAXIMUM probability
7184 (like .wav); so let all tag typefinders return MAXIMUM themselves
7185 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
7186 that we can prefer APE to ID3v1 (fixes #335028).
7188 2006-03-17 Wim Taymans <wim@fluendo.com>
7190 * gst-libs/gst/audio/gstbaseaudiosink.c:
7191 (gst_base_audio_sink_change_state):
7192 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
7193 (gst_ring_buffer_may_start):
7194 * gst-libs/gst/audio/gstringbuffer.h:
7195 Only start playback if we are playing.
7198 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
7200 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
7201 * win32/common/config.h:
7202 Revert accidental commits to these files.
7204 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7206 Patch by: Michal Benes <michal dot benes at xeris dot cz>
7208 * tests/Makefile.am:
7209 Don't try to build tests in tests/icles if we
7210 don't have X (#323852)
7212 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
7214 * gst-libs/gst/tag/gstid3tag.c:
7215 Add TXXX frame identifiers for replaygain stuff as used
7216 by some taggers (see #323721).
7218 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
7220 * gst/playback/gststreamselector.c:
7221 (gst_stream_selector_set_property),
7222 (gst_stream_selector_bufferalloc):
7223 Preserve the existing buggy streamselector behaviour by performing
7224 a fallback buffer allocation when downstream isn't linked yet.
7225 This should really be fixed in playbin by blocking pads until it's
7227 Also, use gst_pad_alloc_buffer instead of
7228 gst_pad_alloc_buffer_and_set.
7230 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7232 * gst-libs/gst/tag/gstid3tag.c:
7233 Don't crash on unknown ID3v2 TXXX frames.
7235 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
7237 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
7238 Chain up to the parent finalize method.
7239 Add 32-bit sample size to the template caps.
7241 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7242 (gst_riff_create_video_template_caps):
7243 Add the fourcc that the VMWare codec uses.
7245 * gst/playback/gststreamselector.c:
7246 (gst_stream_selector_set_property),
7247 (gst_stream_selector_bufferalloc),
7248 (gst_stream_selector_request_new_pad):
7249 For the active pad, forward buffer-alloc requests, otherwise
7250 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
7251 having to memcpy every frame when used by playbin.
7253 * gst/tcp/gstmultifdsink.c:
7254 (gst_multi_fd_sink_handle_client_write):
7255 Get negotiated caps from the sink pad, rather than the sink
7258 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7260 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7262 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
7263 Don't forget to set src->callbacks_pushed to FALSE again when
7264 popping them, otherwise re-activation in a different mode won't
7267 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
7269 Patch by: Sebastien Moutte <sebastien moutte net>
7271 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
7272 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
7273 (gst_ffmpeg_smpfmt_to_caps):
7274 Replace __VA_ARGS__ caps creation macros with varargs functions.
7275 Makes things compile on MSVC (#320765), looks nicer, and we can
7276 tell the compiler to check for the NULL terminator.
7278 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7280 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
7282 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7283 Make sure the buffer we copy into is really always big
7284 enough, this time for real (#333488).
7286 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7288 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7289 Add support for 24bpp DIB (#305279).
7291 2006-03-14 Wim Taymans <wim@fluendo.com>
7293 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
7294 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7295 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
7296 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7297 (gst_video_scale_init), (gst_video_scale_src_event):
7298 Re-enable QoS after the release.
7299 Rework videoscale to use the base class src_event handler.
7301 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
7306 === release 0.10.5 ===
7308 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
7311 releasing 0.10.5, "Net"
7313 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
7315 * docs/plugins/Makefile.am:
7316 Part of previous cdparanoiasrc docs fixes, forgot to commit.
7318 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7320 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7321 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7322 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7323 Add cdparanoiasrc to docs.
7325 * gst-libs/gst/cdda/gstcddabasesrc.c:
7326 More GstCddaBaseSrc docs.
7328 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
7330 * docs/libs/gst-plugins-base-libs-sections.txt:
7331 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
7332 * gst-libs/gst/tag/tag.h:
7333 API: libgsttag: new method gst_tag_from_id3_user_tag().
7335 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7337 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7338 NULL-terminate array of mpeg4 video file extensions.
7339 Fixes crash on PPC (#334226).
7341 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
7343 * ext/gnomevfs/gstgnomevfssrc.c:
7344 (gst_gnome_vfs_src_check_get_range):
7345 gnome_vfs_uri_is_local() alone is not a good indicator
7346 whether we can operate in pull-mode with a specific URI,
7347 as it returns FALSE for file:// URIs that point to an
7348 NFS-mounted path. Be more conservative here: whitelist
7349 local files, blacklist http URIs and use the old
7350 mechanism for anything else (fixes #334216).
7352 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7357 === release 0.10.4 ===
7359 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
7362 releasing 0.10.4, "Power"
7364 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
7366 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7367 Disable max-lateness by setting it to -1 for now, so that
7368 we can bed QoS stuff in thoroughly between now and the next
7371 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
7373 Patch by: Fabrizio Gennari
7375 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7376 Make sure we don't read beyond the palette buffer in case of
7377 broken or manipulated files (#333488)
7379 2006-03-10 Edward Hervey <edward@fluendo.com>
7381 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7382 Fix for variable not initialized.
7384 2006-03-09 Wim Taymans <wim@fluendo.com>
7386 * ext/libvisual/visual.c: (gst_visual_get_type),
7387 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
7391 * ext/theora/gsttheoradec.h:
7392 * ext/theora/theoradec.c: (gst_theora_dec_init),
7393 (gst_theora_dec_reset), (_theora_granule_time),
7394 (theora_dec_src_convert), (theora_dec_sink_convert),
7395 (theora_dec_src_query), (theora_dec_src_event),
7396 (theora_dec_sink_event), (theora_handle_comment_packet),
7397 (theora_handle_header_packet), (theora_dec_push),
7398 (theora_handle_data_packet), (theora_dec_chain),
7399 (theora_dec_change_state):
7402 2006-03-09 Wim Taymans <wim@fluendo.com>
7404 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
7405 (audiocast_register_listener), (gst_gnome_vfs_src_start):
7408 2006-03-09 Wim Taymans <wim@fluendo.com>
7410 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
7411 Don't try to activate NULL chains.
7413 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7415 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
7416 Fix invalid memory access to region before peek'd data (#332964).
7418 2006-03-09 Wim Taymans <wim@fluendo.com>
7420 Patch by: Christophe Fergeau
7422 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
7423 * ext/pango/gsttextrender.c: (gst_text_render_init):
7424 * gst/adder/gstadder.c: (gst_adder_init):
7425 Don't leak padtemplates, closes #333510.
7427 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7429 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
7430 Fix invalid memory access: make sure string passed to
7431 regexec() is NUL-termianted.
7433 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7435 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
7437 Refactor mpeg/audio typefinding to make it more maintainable
7438 and easier to fine-tune. Make probing into middle of the file
7439 work properly (fixes #333900, also see #152688).
7441 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
7443 * gst/typefind/gsttypefindfunctions.c:
7444 (utf8_type_find_have_valid_utf8_at_offset):
7445 Remove part from previous commit that was bogus:
7446 g_utf8_validate() does in fact not accept embedded
7447 zeroes, so we don't need to check for those (thanks
7448 to Mike for the hint).
7450 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7452 * gst/typefind/gsttypefindfunctions.c:
7453 (utf8_type_find_count_embedded_zeroes),
7454 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
7455 Make plain/text typefinder more conservative: firstly, check
7456 for embedded zeroes, which are perfectly valid UTF-8 characters,
7457 but also a fairly good sign that something is not a plain text
7458 file; secondly, probe into the middle of the file if possible.
7459 If we can't probe into the middle, limit the probability value
7460 to be returned to TYPE_FIND_POSSIBLE (see #333900).
7462 2006-03-08 Michael Smith <msmith@fluendo.com>
7464 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7465 Make typefind function name for mpeg4 video unique.
7467 2006-03-08 Wim Taymans <wim@fluendo.com>
7469 * ext/libvisual/visual.c: (gst_visual_init),
7470 (gst_visual_clear_actors), (gst_visual_dispose),
7471 (gst_visual_reset), (gst_visual_src_setcaps),
7472 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
7473 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
7474 (gst_visual_chain), (gst_visual_change_state):
7475 Cleanups, post nice errors.
7476 Handle sink and src events.
7477 Implement simple QoS.
7479 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
7480 Use new basesink methods to configure max-lateness.
7483 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7484 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
7485 Debug statement cleanups.
7487 * gst/volume/gstvolume.c: (gst_volume_class_init):
7490 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7492 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
7493 (gst_text_overlay_init), (gst_text_overlay_set_property),
7494 (gst_text_overlay_get_property):
7495 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
7496 as string type properties, but mark them deprecated. Add
7497 'halignment' and 'valignment' properties that use enums
7500 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
7502 Patch by: Fabrizio Gennari
7504 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7505 Allow palettes with less than 256 colours in AVI files
7508 2006-03-07 Julien MOUTTE <julien@moutte.net>
7510 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
7511 (gst_text_overlay_video_event): Fix wrong EOS handling on text
7512 pad. We were releasing the queued text buffer when we should keep
7513 it until video pad gets EOS or discard the text buffer because it's
7514 too old. That was eating the last subtitle buffer. Add some more
7517 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7519 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
7520 (gst_text_overlay_video_chain):
7521 Fix invalid memory access (we can't access a buffer after it's been
7522 pushed downstream without taking a reference); fix memory leak (if
7523 there's no text to render, bail out before allocating stuff).
7525 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7527 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
7528 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
7529 * ext/pango/gsttextoverlay.h:
7530 If input is plain text, escape it before passing it to
7531 pango_layout_set_markup().
7533 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7535 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
7536 Don't ignore flow return from gst_pad_push().
7538 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
7540 Patch by: Fabrizio Gennari
7542 * ext/libvisual/visual.c: (gst_visual_getcaps),
7543 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
7544 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
7545 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
7546 (gst_vorbisenc_convert_sink):
7547 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
7548 (gst_audio_duration_from_pad_buffer):
7549 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
7550 (gst_audio_filter_chain):
7551 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7552 (gst_base_rtp_depayload_setcaps):
7553 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
7554 (gst_video_get_size):
7555 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
7556 Don't leak references returned by gst_pad_get_parent()
7559 2006-03-06 Stefan Kost <ensonic@users.sf.net>
7561 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7562 change location param details
7563 * gst/volume/gstvolume.c: (plugin_init):
7564 correct plugin description
7566 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7568 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
7569 (gst_gnome_vfs_src_check_get_range):
7570 Override GstBaseSrc::check_get_range() in order to avoid opening
7571 the resource just to check whether we can operate in pull-mode or
7572 not - we can predict that pretty well from the URI alone. Should
7573 fix problems with last.fm (#331690). (Requires latest core CVS).
7575 2006-03-06 Wim Taymans <wim@fluendo.com>
7577 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
7578 (gst_video_sink_class_init):
7579 Throw away frames that are later than 20 ms.
7581 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
7583 Patch by: Fabrizio Gennari
7585 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
7586 Set depth on WMA caps (#333545)
7588 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
7590 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7591 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7592 put Theora BOS pages before others. This hardcodes
7593 the Ogg/Theora I profile, but hey.
7595 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
7598 updated with some examples
7599 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
7600 (granulepos_add), (theora_buffer_from_packet):
7601 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
7602 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
7603 (gst_vorbisenc_chain):
7604 implement strategy from ext/ogg/README
7605 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
7606 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7607 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
7608 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
7609 Fix muxer so that oggz-validate is happy with all streams;
7610 except for no eos mark, and the BOS page ordering
7611 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7612 (check_buffer_granulepos):
7613 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
7614 update tests to check for OFFSET being set as requested
7615 fixed type of granulepos, it's not a ClockTime
7617 2006-03-05 Julien MOUTTE <julien@moutte.net>
7619 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7620 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
7621 Check that the xvimage we are creating has a correct size
7622 before returning it. (#314897)
7624 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7626 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
7627 Give id3 and ape tag typefinders a rank slightly higher
7628 than PRIMARY to ensure they're always run before any of
7629 the other typefinders (in particular wav and mp3) (#324186).
7631 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
7633 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7634 Add support for '3IVD' fourcc (#333403).
7636 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
7639 Bump requirements to GStreamer CVS for the new error enum.
7641 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
7642 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
7643 space left on the device (fixes #333352).
7645 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
7648 add a project file for libgstvolume
7649 update the workspace
7651 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
7653 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
7654 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
7656 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
7657 Set IN_CAPS on header buffers
7659 2006-03-02 Wim Taymans <wim@fluendo.com>
7661 * docs/plugins/Makefile.am:
7662 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7663 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7664 Add audioresample to docs.
7666 * gst/audioconvert/gstaudioconvert.c:
7669 * gst/audioresample/gstaudioresample.c:
7670 (gst_audioresample_base_init), (gst_audioresample_class_init),
7671 (gst_audioresample_init), (gst_audioresample_dispose),
7672 (audioresample_get_unit_size), (audioresample_transform_caps),
7673 (resample_set_state_from_caps), (audioresample_transform_size),
7674 (audioresample_set_caps), (audioresample_event),
7675 (audioresample_do_output), (audioresample_transform),
7676 (audioresample_pushthrough), (gst_audioresample_set_property),
7677 (gst_audioresample_get_property), (plugin_init):
7678 * gst/audioresample/gstaudioresample.h:
7680 Small code cleanups.
7682 2006-03-02 Wim Taymans <wim@fluendo.com>
7684 * docs/plugins/Makefile.am:
7685 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7686 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7687 Added videoscale to docs.
7689 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
7690 (gst_video_rate_swap_prev), (gst_video_rate_event),
7691 (gst_video_rate_chain):
7694 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
7695 (gst_video_scale_init), (gst_video_scale_prepare_size),
7696 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
7697 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
7698 * gst/videoscale/gstvideoscale.h:
7699 Added docs, examples.
7701 Post errors instead of g_warning.
7703 2006-03-02 Wim Taymans <wim@fluendo.com>
7705 * docs/libs/gst-plugins-base-libs-docs.sgml:
7706 * docs/libs/gst-plugins-base-libs-sections.txt:
7707 * docs/libs/gst-plugins-base-libs.types:
7708 * docs/plugins/Makefile.am:
7709 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7710 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7711 Added some more docs to libs and plugins.
7713 * gst-libs/gst/audio/gstringbuffer.c:
7714 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
7715 * gst-libs/gst/audio/gstringbuffer.h:
7716 Document ringbuffer some more.
7718 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
7719 (gst_video_rate_setcaps), (gst_video_rate_reset),
7720 (gst_video_rate_init), (gst_video_rate_flush_prev),
7721 (gst_video_rate_swap_prev), (gst_video_rate_event),
7722 (gst_video_rate_chain), (gst_video_rate_change_state):
7723 * gst/videorate/gstvideorate.h:
7724 Fix videorate to use segments.
7725 Make it work with 0/1 framerates (closes #331903)
7726 Handle EOS correctly.
7729 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7731 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
7732 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
7733 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
7734 In state change function, first chain up to parent class,
7735 then handle downwards state change stuff. Remove some
7736 commented out cruft from 0.8 code.
7738 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
7740 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7741 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
7742 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
7743 (gst_ogm_parse_chain):
7744 Don't remove/re-add source pad if the new caps are the same as
7745 the old caps anyway (#333042). When removing source pad, don't
7746 unref it afterwards - we didn't ref it when adding. Sprinkle some
7747 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
7748 after using gst_pad_get_parent(). Return downstream flow return
7749 value in chain function.
7751 2006-03-02 Wim Taymans <wim@fluendo.com>
7753 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7754 * docs/plugins/gst-plugins-base-plugins.args:
7755 * docs/plugins/gst-plugins-base-plugins.hierarchy:
7756 * docs/plugins/gst-plugins-base-plugins.interfaces:
7757 * docs/plugins/gst-plugins-base-plugins.signals:
7758 Fix hierarchy, added some more elements to the docs.
7760 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7761 (gst_ffmpegcsp_get_type):
7762 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7763 Fix docs for ffmpegcolorspace.
7765 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
7767 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
7768 (apetag_type_find), (ape_type_find), (plugin_init):
7769 Some typefinding fine-tuning:
7770 - rank ID3/APE tags in order of preference via probabilities, so that
7771 ID3v2 > APEv2 > APEv1 > ID3v1.
7772 - three or four bytes don't really justify MAXIMUM probability,
7773 change those to 'very likely' (musepack and monkeysaudio).
7775 2006-03-01 Wim Taymans <wim@fluendo.com>
7777 * docs/plugins/Makefile.am:
7778 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7779 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7780 * ext/alsa/gstalsamixer.c:
7781 * ext/alsa/gstalsamixer.h:
7782 * ext/alsa/gstalsamixerelement.c:
7783 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
7784 * ext/alsa/gstalsamixerelement.h:
7785 * ext/alsa/gstalsasink.c:
7786 * ext/alsa/gstalsasink.h:
7787 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
7789 * ext/alsa/gstalsasrc.h:
7791 Small code cleanups.
7793 2006-03-01 Wim Taymans <wim@fluendo.com>
7795 * ext/theora/Makefile.am:
7796 Dist new header too,
7798 2006-03-01 Wim Taymans <wim@fluendo.com>
7800 * docs/plugins/Makefile.am:
7801 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7802 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7803 * ext/gnomevfs/gstgnomevfssink.h:
7804 * ext/gnomevfs/gstgnomevfssrc.h:
7805 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7806 * ext/vorbis/vorbisdec.h:
7807 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
7808 * ext/vorbis/vorbisenc.h:
7809 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
7810 (vorbis_parse_chain), (vorbis_parse_change_state):
7811 * ext/vorbis/vorbisparse.h:
7812 * gst/audioconvert/gstaudioconvert.h:
7813 * gst/tcp/gsttcpserversink.h:
7814 * gst/videotestsrc/gstvideotestsrc.c:
7815 * gst/videotestsrc/gstvideotestsrc.h:
7816 * gst/volume/gstvolume.c:
7817 * gst/volume/gstvolume.h:
7819 Added docs for vorbisdec and vorbisparse.
7822 2006-03-01 Wim Taymans <wim@fluendo.com>
7824 * docs/plugins/Makefile.am:
7825 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7826 * docs/plugins/gst-plugins-base-plugins-sections.txt:
7827 * ext/pango/gstclockoverlay.h:
7828 * ext/pango/gsttextoverlay.h:
7829 * ext/pango/gsttextrender.h:
7830 * ext/pango/gsttimeoverlay.h:
7831 * ext/theora/gsttheoradec.h:
7832 * ext/theora/gsttheoraenc.h:
7833 * ext/theora/theoradec.c:
7834 * ext/theora/theoraenc.c:
7835 * gst/audioconvert/gstaudioconvert.h:
7836 * gst/audiotestsrc/gstaudiotestsrc.h:
7837 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
7838 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
7839 * gst/tcp/gstmultifdsink.h:
7840 Updated/added documentation.
7842 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
7843 (gst_text_overlay_halign_get_type),
7844 (gst_text_overlay_wrap_mode_get_type),
7845 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
7846 (gst_text_overlay_init), (gst_text_overlay_set_property),
7847 (gst_text_overlay_get_property):
7848 Fix up properties to be enums instead of string to make bindings,
7849 introspection and automatic GUI creation possible.
7850 Add getters for the properties.
7852 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
7854 * gst/audiotestsrc/gstaudiotestsrc.c:
7855 added defines of M_PI and M_PI_2
7856 * gst/ffmpegcolorspace/avcodec.h:
7857 removed #include "stdint.h" for win32 as _stdint.h is
7858 autogenerated to win32/common
7859 * win32/common/libgstaudio.def:
7860 * win32/common/libgsttag.def:
7863 some project files bugs corrected
7865 project files are reset to the default vs7 configuration
7866 (they link to msvcr71.dll using default optimizations)
7868 2006-02-28 Wim Taymans <wim@fluendo.com>
7870 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
7873 2006-02-28 Edward Hervey <edward@fluendo.com>
7875 * ext/alsa/gstalsasrc.c:
7876 Set proper class on the ElementDetails:
7877 Source/Audio instead of Src/Audio/
7879 2006-02-28 Edward Hervey <edward@fluendo.com>
7881 * gst/videoscale/vs_scanline.c:
7882 (vs_scanline_resample_nearest_RGBA):
7883 Revert optimization in videoscale. It should go in liboil and have
7884 an appropriate liboil function.
7886 2006-02-28 Wim Taymans <wim@fluendo.com>
7888 * gst-libs/gst/audio/gstbaseaudiosink.c:
7889 (gst_base_audio_sink_provide_clock):
7890 Don't try to provide a clock in the NULL state.
7892 2006-02-28 Wim Taymans <wim@fluendo.com>
7894 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7895 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
7896 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7897 (gst_ogg_demux_deactivate_current_chain),
7898 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
7899 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
7900 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
7901 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7902 Use GstSegment infrastructure to remove duplicated code
7903 and handle more seek cases correctly.
7905 2006-02-28 Wim Taymans <wim@fluendo.com>
7907 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7908 (gst_ffmpegcsp_transform):
7909 Don't ignore return code from ffmpeg convert function.
7911 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
7912 Split out some long statements to ease debugging.
7914 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
7916 * ext/libvisual/visual.c: (gst_visual_init),
7917 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
7918 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
7919 being able to renegotiate the size. Instead, use the negotiation
7920 algorithm from the goom plugin to pick an initial output caps.
7922 Also, allow theoretical libvisual plugins that might support non-GL
7923 output even if they also do GL.
7925 2006-02-26 Julien MOUTTE <julien@moutte.net>
7927 * ext/libvisual/visual.c: (gst_visual_init),
7928 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
7929 (plugin_init): Load only non GL plugins. Fix some memleaks and
7930 possible negotiation issues.
7932 2006-02-25 Julien MOUTTE <julien@moutte.net>
7934 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
7936 2006-02-24 Michael Smith <msmith@fluendo.com>
7938 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
7939 (cmml_type_find), (plugin_init):
7940 Fix CMML type find function to not require a specific minor version
7943 Add an MPEG4 video elementary stream typefind function.
7945 2006-02-04 Michael Smith <msmith@fluendo.com>
7947 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
7948 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
7949 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
7950 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
7951 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
7952 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
7953 Annodex support in ogg demuxer. Doesn't do very much without the
7954 other annodex patches (to come).
7956 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7958 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
7960 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
7961 Pick up palette for MS video v1 (#327028)
7963 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7965 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7966 (gst_ffmpegcsp_caps_remove_format_info),
7967 (gst_ffmpegcsp_get_unit_size):
7968 The 'palette_data' field from incoming RGB caps shouldn't be
7969 proxied on outgoing YUV caps; also, restrict unit size
7970 adjustment in case of paletted data only to the unit that
7971 actually has a palette. Fixes #330711.
7973 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7975 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7976 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
7977 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
7978 (gst_ffmpegcsp_get_unit_size):
7979 Plug some memory leaks.
7981 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
7983 * sys/ximage/Makefile.am:
7984 * sys/xvimage/Makefile.am:
7985 Add some _CFLAGS and _LIBS that seem to be missing
7986 and/or required for Cygwin (see #317048).
7988 2006-02-22 Wim Taymans <wim@fluendo.com>
7990 * ext/alsa/gstalsasrc.c:
7991 Fix description as pointed out by caugier.
7993 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
7995 Reviewed by : Edward Hervey <edward@fluendo.com>
7997 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
7999 Better 3gp typefinding (#331526).
8001 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
8003 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8004 Don't send EOS event here, the base class will send one for us.
8006 * gst/playback/gstplaybasebin.c: (prepare_output):
8007 Subpictures without video stream aren't allowed either.
8009 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
8010 Fix debug statement copy'n'paste-o.
8012 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
8014 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
8015 Fix issues with mixer keeping state when muting/unmuting
8016 and when changing the volume whilst muted (see #331763
8019 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
8021 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
8022 (parse_subrip), (gst_sub_parse_format_autodetect):
8023 Set right caps given that we send escaped text. Also,
8024 honour <i></i>, <b></b> and <u></u> markers that can be found
8025 in .srt files (fixes #310202).
8027 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
8029 * gst-libs/gst/audio/mixerutils.c:
8030 (element_factory_rank_compare_func):
8031 Make order in which elements are tried more determinable.
8033 2006-02-20 Julien MOUTTE <julien@moutte.net>
8035 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
8036 (remove_element_chain), (cleanup_decodebin),
8037 (gst_decode_bin_change_state): Make decodebin reusable by
8038 fixing remove_element_chain first and then introduce a
8039 cleaner in state change to ->NULL. (Closes #331678)
8041 2006-02-19 Wim Taymans <wim@fluendo.com>
8043 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
8044 use 0666 mask when creating files so umask gets applied
8045 correctly. Fixes #331295.
8047 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
8049 * gst/subparse/Makefile.am:
8050 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
8051 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
8052 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
8053 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
8054 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
8055 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
8056 * gst/subparse/gstssaparse.h:
8057 * gst/subparse/gstsubparse.c: (plugin_init):
8058 Add very basic parser for SSA subtitle streams (as often
8059 found in matroska files).
8061 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
8063 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
8064 That should be text/x-pango-markup, not text/x-pango-layout.
8066 2006-02-19 Julien MOUTTE <julien@moutte.net>
8068 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
8071 2006-02-19 Julien MOUTTE <julien@moutte.net>
8073 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8074 (gst_text_overlay_finalize), (gst_text_overlay_init),
8075 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8076 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8077 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8078 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8079 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8080 Fix state change deadlock.
8082 2006-02-19 Julien MOUTTE <julien@moutte.net>
8084 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8085 (gst_text_overlay_finalize), (gst_text_overlay_init),
8086 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8087 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8088 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
8089 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
8090 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
8091 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
8092 and subtitles files.
8094 2006-02-19 Julien MOUTTE <julien@moutte.net>
8096 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
8097 should be considered as raw.
8099 2006-02-19 Julien MOUTTE <julien@moutte.net>
8101 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
8103 * gst/playback/gststreaminfo.h: Introduce language informations.
8105 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
8107 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
8108 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
8109 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
8110 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
8111 Set shared memory segments to be deleted as soon as we have attached,
8112 that way they get cleaned up automatically if we crash.
8114 2006-02-18 Julien MOUTTE <julien@moutte.net>
8116 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
8117 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
8118 functions are called with lock held.
8120 2006-02-18 Julien MOUTTE <julien@moutte.net>
8122 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
8123 (gst_text_overlay_finalize), (gst_text_overlay_init),
8124 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
8125 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
8126 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
8127 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
8128 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
8129 (gst_text_overlay_change_state): Refactoring of textoverlay
8130 without collectpads. This now supports sparse subtitles coming
8131 from a demuxer instead of a sub file. Seeking is still broken
8132 though. Need to discuss with wtay some more on how to handle
8134 * ext/pango/gsttextoverlay.h:
8135 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
8136 subtitles coming from the demuxer.
8138 2006-02-17 Wim Taymans <wim@fluendo.com>
8140 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
8141 (gst_vorbisenc_convert_sink):
8142 Use some more scaling functions.
8144 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
8146 * ext/cdparanoia/gstcdparanoiasrc.c:
8147 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
8148 (gst_cd_paranoia_paranoia_callback),
8149 (gst_cd_paranoia_src_signal_is_being_watched),
8150 (gst_cd_paranoia_src_read_sector):
8151 * ext/cdparanoia/gstcdparanoiasrc.h:
8152 Add back 'transport-error' and 'uncorrected-error' signals and
8153 make them actually be fired when bad stuff happens (#319340).
8155 2006-02-17 Wim Taymans <wim@fluendo.com>
8157 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8158 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8159 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
8160 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
8161 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
8162 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
8163 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
8164 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8165 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
8166 (gst_ring_buffer_clear):
8168 Added some G_LIKELY.
8170 2006-02-17 Wim Taymans <wim@fluendo.com>
8172 * gst-libs/gst/audio/TODO:
8175 * gst-libs/gst/audio/gstbaseaudiosink.c:
8176 (gst_base_audio_sink_get_offset):
8177 When trying to play samples ASAP and we don't have a
8178 previous sample, try to play at position 0 instead of
8179 an invalid position.
8181 2006-02-17 Wim Taymans <wim@fluendo.com>
8183 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
8184 (gst_alsasink_reset):
8185 Also release lock when we get an error in _reset();
8186 fix an error message.
8188 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8190 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8191 (gst_alsasink_init), (get_channel_free_structure),
8192 (caps_add_channel_configuration), (gst_alsasink_getcaps),
8193 (gst_alsasink_close):
8194 * ext/alsa/gstalsasink.h:
8195 Add support for more than 2 channels (#326720).
8197 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8199 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
8200 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
8201 with 4 or 6 channels, assume a default channel layout to make things
8202 work (not sure there's anything else we can do in those cases).
8204 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8206 * gst-libs/gst/audio/multichannel.c:
8209 * gst-libs/gst/riff/Makefile.am:
8210 * gst-libs/gst/riff/riff-ids.h:
8211 * gst-libs/gst/riff/riff-media.c:
8212 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
8213 Add support for WAVEFORMATEX, eg. PCM audio with more than two
8214 channels and a channel layout map.
8216 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
8218 Reviewed by Edward Hervey <edward@fluendo.com>
8220 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
8221 C-level optimization of the RGBA nearest neighbour function.
8222 Eventually this might end up in liboil with vectorized versions.
8224 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8226 * gst-libs/gst/audio/multichannel.c:
8227 (gst_audio_get_channel_positions):
8228 When we have more than 2 channels, but no channel layout is
8229 specified in the caps, return some default channel layout
8230 to the caller and warn about about a possibly buggy element
8231 (could be buggy filtercaps as well of course) (#317038).
8233 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
8235 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
8236 Add gst-libs/gst/cdda to list of lib search paths.
8238 2006-02-15 Andy Wingo <wingo@pobox.com>
8240 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
8241 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
8242 to the Lord Jesus that I do not have to touch the ogg muxer ever
8245 2006-02-15 Edward Hervey <edward@fluendo.com>
8247 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8248 quicktime movie files can also contain 'uuid' atoms.
8250 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
8252 * gst/audioconvert/plugin.c: (plugin_init):
8253 Register the GstAudioChannelPosition enum type with the type
8254 system in the plugin_init function, so that it is known before
8255 any element actually makes use of multi-channel stuff. This is
8256 required for example if one wants to be able to deserialise/use
8257 a caps string with channel positions before any pipeline has
8258 been setup and started, like with gst-launch.
8260 2006-02-14 Wim Taymans <wim@fluendo.com>
8262 * gst-libs/gst/audio/gstringbuffer.c:
8263 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
8264 (gst_ring_buffer_samples_done), (wait_segment),
8265 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
8266 Add some compiler G_(UN_)LIKELY help.
8267 SIGNAL the ringbuffer waiters when going to PAUSED as well to
8268 make sure they can exit their functions. Should fix #330748
8270 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
8275 * win32/common/_stdint.h:
8276 Windows does not have long long; copy the generated _stdint.h
8277 * win32/common/interfaces-enumtypes.c:
8278 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8279 (gst_mixer_track_flags_get_type),
8280 (gst_tuner_channel_flags_get_type):
8281 * win32/common/multichannel-enumtypes.c:
8282 (gst_audio_channel_position_get_type):
8285 2006-02-13 Wim Taymans <wim@fluendo.com>
8287 * gst-libs/gst/audio/gstbaseaudiosink.c:
8288 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
8289 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8290 Always sync on first sample we receive when starting.
8292 2006-02-13 Wim Taymans <wim@fluendo.com>
8294 * gst/playback/gstplaybin.c: (gen_vis_element):
8295 Update vis bin docs.
8296 Move queue after tee so we don't queue video buffers but
8297 audio samples instead. Fixes problems where the video queue
8298 is filled and the audio queue empty.
8300 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
8302 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
8303 No need to push an EOS event here, GstBaseSrc will do that for us
8304 when we return FLOW_UNEXPECTED.
8306 2006-02-12 Wim Taymans <wim@fluendo.com>
8308 * gst-libs/gst/audio/gstbaseaudiosink.c:
8309 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
8310 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
8311 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8312 Use scale functions when possible.
8314 Free clockid when after waiting for EOS.
8315 Use G_(UN_)LIKLY when it makes sense.
8316 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
8318 2006-02-12 Edward Hervey <edward@fluendo.com>
8320 * gst/playback/gstplaybasebin.c: (prepare_output):
8321 Remove stray semi-colon (fixes #330888).
8323 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
8325 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
8326 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
8327 Fix up the XShm call testing so that we catch errors, and don't
8328 cause new ones by attempting to detach from a segment we failed
8329 to attach to. Fixes #312439.
8331 2006-02-10 Edward Hervey <edward@fluendo.com>
8333 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8334 Added flv file typefind (video/x-flv).
8336 2006-02-10 Edward Hervey <edward@fluendo.com>
8338 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8339 (gst_riff_create_video_template_caps):
8340 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
8341 Also added the caps to the default set of riff video caps.
8343 2006-02-09 Andy Wingo <wingo@pobox.com>
8345 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
8346 time and the end time of the last packet in the page.
8347 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
8348 on the pages in our queue, set the duration as well. Reflow a
8350 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
8351 Fixes bad muxing order.
8353 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
8355 * gst-libs/gst/rtp/gstbasertppayload.c:
8356 (gst_basertppayload_setcaps), (gst_basertppayload_push):
8357 update seqnum before setting it on the packet; this makes sure
8358 that the timestamp and seqnum properties match after pushing
8361 2006-02-09 Andy Wingo <wingo@pobox.com>
8363 * gst-libs/gst/audio/gstringbuffer.c
8364 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
8365 overflow after 13.5 hours of recording. Kapow!
8367 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
8368 the buffer size -- we don't care about underrun/overrun reporting
8369 right now, just need to return a useful value.
8371 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8376 === release 0.10.3 ===
8378 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
8381 releasing 0.10.3, "Under Pressure"
8383 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8386 Drat. Bump libtool version number for new API.
8387 Prelease 0.10.2.3 (of 0.10.3)
8389 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8392 * win32/common/config.h:
8393 0.10.2.2 prerelease (of 0.10.3).
8395 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
8397 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
8398 Revert Andy's newsegment change pending a more correct
8401 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
8403 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
8404 (qt_type_find), (plugin_init):
8405 detect more files as 3gp
8406 group and reorder the iso file formats
8408 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8410 * ext/vorbis/vorbis.c: (plugin_init):
8411 Register musicbrainz tags, so apps don't have to.
8413 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8415 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
8416 (gst_tag_to_vorbis_tag):
8417 Make sure we called gst_tag_register_musicbrainz_tags()
8418 before possibly mapping a vorbiscomment string from/to a
8421 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8423 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
8424 In case we can't find the required number of consecutive
8425 mpeg audio frames to positively identify an MPEG audio
8426 stream, check if there's at least a valid mpeg audio
8427 frame right at offset 0 and if so suggest mpeg/audio
8428 caps with a very low probability (#153004).
8430 2006-02-07 Andy Wingo <wingo@pobox.com>
8432 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
8433 a TIME segment if we get timestamped buffers. Requires recent
8434 fixes in core to work properly.
8436 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8438 * gst/playback/gstplaybasebin.c: (prepare_output):
8439 Don't print the URI as part of the error message, it
8440 makes error dialogs look rather ugly, especially if
8441 the URI is very long or has characters in it that
8444 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8446 * gst/playback/gstplaybasebin.c: (prepare_output):
8447 Error out if we have only text or subtitles, but nothing
8448 else. Also error out if we have subtitles but no video
8451 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
8453 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
8454 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
8455 Post an error message on the bus when we encounter an
8456 error, which will hopefully be more meaningful than the
8457 'Internal Flow Error' message users get to see if we
8458 just return GST_FLOW_ERROR.
8460 2006-02-07 Andy Wingo <wingo@pobox.com>
8462 * configure.ac (GST_MAJORMINOR): Update core version req to
8463 0.10.2.2, for the collectpads API addition (#330244).
8465 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
8467 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8468 Return FALSE from plugin_init() when GnomeVFS can't
8469 be initialised for some reason (#328423).
8471 2006-02-06 Julien MOUTTE <julien@moutte.net>
8473 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
8474 Stick to seeking theory until i find the bug.
8475 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
8477 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8479 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8480 (theora_enc_finalize), (theora_enc_sink_setcaps),
8481 (theora_set_header_on_caps), (theora_enc_chain),
8482 (theora_enc_change_state):
8483 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
8484 Make theoraenc and the tests leak free. Like, really.
8486 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
8488 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
8489 (theora_enc_finalize), (theora_enc_sink_setcaps):
8490 Add a finalize method to ensure we clean up state even if
8491 someone omitted the state change back to NULL.
8493 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
8494 (gst_vorbisenc_chain):
8495 Free some more leaked bits.
8497 * tests/check/pipelines/theoraenc.c: (start_pipeline),
8499 Wait for state changes to happen if they're ASYNC.
8501 This ought to teach those fancy pants buildbots a lesson.
8503 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8505 * gst-libs/gst/tag/gstid3tag.c:
8506 Add mapping for ID3 International Standard Recording Code
8509 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
8511 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
8512 Don't leak tag names.
8514 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8516 * docs/libs/gst-plugins-base-libs-docs.sgml:
8517 * docs/libs/gst-plugins-base-libs-sections.txt:
8518 * gst-libs/gst/tag/gstid3tag.c:
8519 * gst-libs/gst/tag/gstvorbistag.c:
8520 * gst-libs/gst/tag/tags.c:
8521 Split libgsttag docs into multiple sections.
8523 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8525 * docs/libs/Makefile.am:
8526 * docs/libs/gst-plugins-base-libs-docs.sgml:
8527 * docs/libs/gst-plugins-base-libs-sections.txt:
8528 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
8529 * gst-libs/gst/tag/gstvorbistag.c:
8530 * gst-libs/gst/tag/tag.h:
8531 * gst-libs/gst/tag/tags.c:
8532 Add libgsttag to the docs.
8534 2006-02-05 Julien MOUTTE <julien@moutte.net>
8536 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
8537 (gst_text_overlay_init), (gst_text_overlay_src_event),
8538 (gst_text_overlay_collected): Fix clockoverlay.
8540 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8542 * docs/libs/compiling.sgml:
8543 Fix typo: it's pkg-config, not pkg-gconfig
8545 * docs/libs/gst-plugins-base-libs-docs.sgml:
8546 * docs/libs/gst-plugins-base-libs-sections.txt:
8547 * docs/libs/tmpl/gstgconf.sgml:
8548 There is no libgstgconf in 0.10, remove it
8551 2006-02-05 Julien MOUTTE <julien@moutte.net>
8553 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
8554 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
8555 (gst_text_overlay_src_event), (gst_text_overlay_collected):
8556 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
8557 (gst_sub_parse_class_init), (gst_sub_parse_init),
8558 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
8559 (parse_mpsub), (parser_state_init), (handle_buffer),
8560 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
8561 * gst/subparse/gstsubparse.h: Introduce seeking code.
8563 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8565 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8566 Add comment about LANGUAGE tag inconsistency (we want
8567 ISO-639-1, but extract three-letter identifiers?)
8570 Add two translatable files.
8572 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
8574 * gst-libs/gst/tag/Makefile.am:
8575 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
8576 * gst-libs/gst/tag/tag.h:
8577 * gst-libs/gst/tag/tags.c:
8578 (gst_tag_register_musicbrainz_tags_internal),
8579 (gst_tag_register_musicbrainz_tags):
8580 Forward-port some tags stuff from the 0.8 branch. This is
8581 mostly the addition of musicbrainz tags and their mapping
8582 to vorbistags, and a vorbistag mapping of the language tag.
8584 2006-02-05 Julien MOUTTE <julien@moutte.net>
8586 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
8589 2006-02-04 David Schleef <ds@schleef.org>
8591 * ext/ogg/gstoggmux.c:
8592 * gst/typefind/gsttypefindfunctions.c:
8593 Add Dirac typefinding and add dirac format to oggmux.
8595 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
8597 * gst/playback/gstdecodebin.c: (try_to_link_1):
8598 Don't put essential function call into
8599 g_return_*() macro, otherwise it'll all be
8600 replaced by NOOPs when compiling with
8601 G_DISABLE_CHECKS defined.
8603 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
8605 * ext/ogg/gstoggdemux.c:
8606 * ext/ogg/gstoggparse.c:
8607 * gst/tcp/gsttcpserversink.c:
8608 * sys/v4l/v4lsrc_calls.c:
8609 * sys/v4l/v4lsrc_calls.h:
8610 Just make it compile with --disable-gst-debug.
8612 2006-02-03 Wim Taymans <wim@fluendo.com>
8614 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8615 (gst_alsasink_class_init), (gst_alsasink_init),
8616 (gst_alsasink_write), (gst_alsasink_reset):
8617 * ext/alsa/gstalsasink.h:
8618 Add lock to protect alsa calls.
8619 Implement reset to flush samples ASAP, does not work
8622 2006-02-02 Wim Taymans <wim@fluendo.com>
8624 * gst-libs/gst/audio/gstbaseaudiosink.c:
8625 (gst_base_audio_sink_provide_clock):
8626 Ugh.. getting late I guess...
8628 2006-02-02 Wim Taymans <wim@fluendo.com>
8630 * gst-libs/gst/audio/gstbaseaudiosink.c:
8631 (gst_base_audio_sink_provide_clock),
8632 (gst_base_audio_sink_set_property),
8633 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
8634 Don't try to provide a clock when we are not negotiated since
8635 we might not be able to make it run.
8637 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
8639 * gst/playback/gstdecodebin.c: (try_to_link_1):
8640 Unlinking two source pads is ... hard.
8642 2006-02-02 Wim Taymans <wim@fluendo.com>
8644 * gst-libs/gst/audio/TODO:
8647 * gst-libs/gst/audio/gstbaseaudiosink.c:
8648 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
8649 On EOS, wait till the last sample is played before posting EOS.
8651 2006-02-01 Philippe Kalaf <burger at speedy dot org>
8653 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8654 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
8655 setting queue_delay to zero. Also avoid thread being started if
8656 queue_delay is zero.
8658 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8660 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
8661 Make test work again by connecting fakesinks to each decoded pad,
8662 which makes the pipeline wait until each fakesink has a buffer
8663 queued before going to PAUSED state. At that point we know the
8664 decodebin pads are negotiated.
8666 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8668 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
8669 (gst_cdda_base_src_handle_event):
8670 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
8671 Pass unhandled queries to the parent class's query function.
8673 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8675 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
8676 (gst_ogg_pad_src_query):
8677 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8678 * ext/theora/theoradec.c: (theora_dec_src_query),
8679 (theora_dec_sink_query):
8680 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8681 (vorbis_dec_sink_query):
8682 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
8683 (gst_vorbisenc_sink_query):
8684 * gst/adder/gstadder.c: (gst_adder_query):
8685 Pass unhandled queries upstream instead of just
8686 dropping them (#326447). Also, fix supported
8687 query types list for some elements.
8689 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
8691 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
8692 (paris_type_find), (ilbc_type_find), (plugin_init):
8693 Fix typefinding for audio/x-au, audio/x-paris and
8694 audio/iLBC-sh. We cannot use the START_WITH macros
8695 here, because there can only be one typefind factory
8696 with the same name (caps), so the second one would
8697 replace the first one and the first one would never
8698 be called when doing typefinding (see #161712).
8701 2006-01-31 Wim Taymans <wim@fluendo.com>
8703 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
8704 (vorbis_handle_header_packet), (vorbis_dec_push),
8705 (vorbis_handle_data_packet):
8706 Use scale_int when we can, add some more scaling.
8707 Check packettype before parsing it.
8709 2006-01-31 Wim Taymans <wim@fluendo.com>
8711 * ext/theora/theoradec.c: (_theora_granule_time),
8712 (theora_dec_src_convert), (theora_dec_sink_convert):
8713 Call right _scale functions.
8714 Use parameter instead of some other random value.
8716 2006-01-31 Wim Taymans <wim@fluendo.com>
8718 * ext/theora/theoradec.c: (_theora_granule_frame),
8719 (_theora_granule_time), (_inc_granulepos),
8720 (theora_dec_src_convert), (theora_dec_sink_convert),
8721 (theora_handle_type_packet), (theora_handle_data_packet),
8723 Use higher precision timestamps calculation.
8724 Convert some other conversions to _scale.
8726 2006-01-31 Stefan Kost <ensonic@users.sf.net>
8728 * gst/audiotestsrc/gstaudiotestsrc.c:
8729 (gst_audio_test_src_create_sine_table), (plugin_init):
8730 * gst/volume/gstvolume.c: (plugin_init):
8731 initialize gst_controller before using
8733 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
8735 * tests/check/pipelines/theoraenc.c:
8736 * tests/check/pipelines/vorbisenc.c:
8737 Define constant using G_GINT64_CONSTANT to avoid errors when
8738 passing it around - otherwise it gets truncated to 32 bits.
8740 Fixes failing tests.
8742 2006-01-31 Andy Wingo <wingo@pobox.com>
8744 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
8745 caps being set doesn't have a framerate value. Basically a stopgap
8748 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
8749 technically correct enough to put into core though.
8750 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
8751 DURATION. Fixes theoraenc ! oggmux.
8753 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
8754 fraction, not double.
8756 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
8759 add vs7 project files created by Sergey Scobich
8761 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
8764 add vs8 project files created by Sergey Scobich
8766 2006-01-30 Andy Wingo <wingo@pobox.com>
8768 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
8769 timestamp + duration, not just timestamp -- ogg pages should be
8770 ordered by stop time. Necessary fix given the change in vorbis
8773 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
8774 (gst_theora_enc_init): Pull the granule shift out of the encoder.
8775 (granulepos_add): New function, handles the messiness of adjusting
8777 (theora_buffer_from_packet):
8779 (theora_enc_sink_event): Use granulepos_add, not +.
8781 * tests/check/pipelines/theoraenc.c
8782 (check_buffer_granulepos_from_starttime): Just check the frame
8783 count, not the actual granulepos -- we can't dictate to the
8784 encoder when it should be placing keyframes.
8786 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
8788 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
8789 SERVICE_NOT_AVAILABLE happens for example when you're trying to
8790 play an http:// stream from a server that's not serving
8792 2006-01-30 Andy Wingo <wingo@pobox.com>
8794 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
8795 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
8796 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
8799 * ext/theora/gsttheoraenc.h:
8800 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
8801 although theoraenc was timestamping correctly. Added handling of
8802 streams that start with nonzero timestamps.
8804 * tests/check/Makefile.am:
8805 * tests/check/pipelines/theoraenc.c: New file, basically does same
8808 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
8810 2006-01-30 Wim Taymans <wim@fluendo.com>
8812 * gst-libs/gst/audio/gstaudiosink.c:
8813 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
8814 (gst_audioringbuffer_pause):
8815 Implement pause that does not wait for completion.
8817 * gst-libs/gst/audio/gstbaseaudiosink.c:
8818 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
8819 Don't drop buffers when going to PAUSED but perform preroll on
8820 remaining samples now that core base class supports this.
8822 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
8823 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
8824 (gst_ring_buffer_commit):
8825 Pause should not signal waiters.
8826 Implement return value of _commit correctly.
8828 2006-01-30 Andy Wingo <wingo@pobox.com>
8830 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
8832 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
8833 updated to timestamp from the first sample, not the last.
8834 (gst_vorbisenc_buffer_from_header_packet): New function, takes
8835 special care of granulepos and timestamp for header packets.
8836 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
8837 when the first buffer has a nonzero timestamp.
8839 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
8840 (GstVorbisEnc.subgranule_offset): New members. Take care of the
8841 case when the first audio buffer we get has a nonzero timestamp.
8842 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
8843 properly timestamp vorbis buffers with the time of the first
8844 sample, not the last.
8846 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
8847 vorbis_granule_time_copy -- now it takes the granule/subgranule
8848 offset into account.
8850 * tests/check/pipelines/vorbisenc.c: New test for correctness of
8851 timestamps, durations, and granulepos on buffers produced by
8854 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
8856 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8857 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
8858 Patch from Eric Jonas to support conversions to/from UYVY
8861 2006-01-30 Julien MOUTTE <julien@moutte.net>
8863 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
8864 (setup_subtitle), (setup_source), (set_active_source):
8865 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
8866 (gen_text_element), (gen_audio_element), (gen_vis_element),
8867 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
8869 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
8871 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
8872 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
8873 use gst_guint64_to_gdouble to be compliant with vs6
8874 * gst/playback/gstdecodebin.c: (try_to_link_1)
8875 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
8876 use G_GINT64_CONSTANT for int64 constants
8877 * win32/common/libgstinterfaces.def:
8878 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
8880 update and add new project files
8882 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8886 * win32/common/interfaces-enumtypes.c:
8887 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
8888 (gst_mixer_track_flags_get_type),
8889 (gst_tuner_channel_flags_get_type):
8890 * win32/common/interfaces-enumtypes.h:
8891 * win32/common/multichannel-enumtypes.c:
8892 (gst_audio_channel_position_get_type):
8893 * win32/common/multichannel-enumtypes.h:
8894 add a win32-update rule like in core, and copy over enumtypes files
8896 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
8899 * win32/common/config.h:
8900 * win32/common/config.h.in:
8901 add config files just like in core
8903 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
8905 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
8906 Make gcc-4.1 happy (part of #327357).
8908 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8910 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
8911 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
8912 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
8913 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
8914 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
8915 (gst_alsasrc_unprepare), (gst_alsasrc_read):
8916 Update all error messages. All of them should either use
8917 the default translated message, or actually provide a
8918 translatable string.
8919 Make the string for channel count problems meaningful.
8921 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
8923 * sys/v4l/v4l_calls.c: (gst_v4l_open):
8924 check for and throw RESOURCE_BUSY
8926 2006-01-27 David Schleef <ds@schleef.org>
8928 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
8929 checked in this change -- it requires liboil features not
8930 in 0.3.6. Revert parts.
8932 2006-01-27 David Schleef <ds@schleef.org>
8935 * configure.ac: update liboil requirement to 0.3.6
8936 * gst/videoscale/Makefile.am:
8937 * gst/videoscale/vs_scanline.c: liboilify
8939 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8941 * ext/libvisual/visual.c: (get_buffer):
8942 When pad_alloc returns a GstFlowReturn other
8943 than GST_FLOW_OK, make sure it is passed upstream.
8945 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
8947 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
8948 (gst_alsasink_class_init):
8949 Free the device name string.
8951 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
8952 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
8953 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
8954 Don't remove a pad from the collectpads structure until it
8955 is released - it's a request pad, and may receive data again
8956 if the element gets moved back to PLAYING state.
8958 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
8959 Ensure we turn on double buffering on the Xv port, and
8960 set the colour key to something dark and mysterious that
8963 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
8965 * ext/alsa/gstalsaplugin.c: (plugin_init):
8966 * ext/cdparanoia/gstcdparanoiasrc.c:
8967 (gst_cd_paranoia_src_base_init), (plugin_init):
8968 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8969 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
8970 - a library should not call setlocale. see "Libraries" node in
8972 - make sure all plugins that use translation do bindtextdomain
8973 to point to the localedir
8974 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
8975 (setup_sinks), (plugin_init):
8976 all this, and check for NULL when creating sinks
8978 2006-01-27 Julien MOUTTE <julien@moutte.net>
8980 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
8981 (plugin_init): Make typefinding of subtitles work again.
8983 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
8985 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
8986 (mp3_type_frame_length_from_header), (mp3_type_find),
8987 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
8989 Backport a bunch of typefinding fixes from the 0.8 branch.
8990 Also, improve wavpack typefinding: if we can't peek the
8991 entire wavpack block, try to parse the bits we can get and
8992 see if we find what we're looking for in those.
8994 2006-01-26 Julien MOUTTE <julien@moutte.net>
8996 * sys/ximage/ximagesink.c:
8997 (gst_ximagesink_calculate_pixel_aspect_ratio):
8998 * sys/xvimage/xvimagesink.c:
8999 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
9000 more cases of pixel aspect ratio.
9002 2006-01-26 Edward Hervey <edward@fluendo.com>
9004 * gst/playback/gstdecodebin.c: (pad_probe):
9005 Also consider the flush-start and tag events as unblockers
9008 2006-01-26 Julien MOUTTE <julien@moutte.net>
9010 * gst/playback/gstplaybin.c: (gst_play_bin_init),
9011 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
9012 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
9013 On the fly visualisation switch, works disabling, enabling as
9014 well but it won't be able to enable vis in a playbin that was
9015 created with no visualisation.
9017 2006-01-25 Wim Taymans <wim@fluendo.com>
9019 * gst-libs/gst/audio/gstbaseaudiosink.c:
9020 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
9021 Undo previous commit that returned WRONG_STATE sooner, it breaks
9024 2006-01-25 Wim Taymans <wim@fluendo.com>
9026 * gst-libs/gst/audio/gstbaseaudiosink.c:
9027 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
9028 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
9030 Post error when caps cannot be parsed.
9031 Resync on discontinuity in the stream.
9032 Clip samples to segment boundaries.
9033 return WRONG_STATE sooner when we are flushing.
9035 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
9036 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
9037 Make audiosrc operate in TIME.
9038 Set TIMESTAMP and DURATION on buffers.
9040 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
9042 * tests/examples/seek/seek.c: (main):
9043 Output tag messages as well.
9045 2006-01-23 Edward Hervey <edward@fluendo.com>
9047 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
9048 (free_pad_probes), (remove_fakesink), (pad_probe),
9049 (close_pad_link), (gst_decode_bin_change_state):
9050 Replace GstPadBlockCallback with pad probes that detect
9051 first buffer AND eos before removing fakesink.
9052 Fixes hang with demuxers doing EOS while pre-rolling.
9055 2006-01-23 Andy Wingo <wingo@pobox.com>
9057 * ext/alsa/gstalsasink.c:
9058 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9059 (gst_base_rtp_depayload_setcaps),
9060 (gst_base_rtp_depayload_add_to_queue),
9061 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
9063 Patch by: Jens Granseuer <jensgr at gmx dot net>
9065 2006-01-22 Julien MOUTTE <julien@moutte.net>
9067 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
9068 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9069 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
9070 frames. We might get a frame destroyed after changing state to
9071 NULL, adding a safety check on xcontext.
9073 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
9075 * gst-libs/gst/interfaces/xoverlay.c:
9076 Fix prepare-xwindow-id code example in the docs - we need to
9077 ignore all messages that aren't element messages as well.
9079 2006-01-21 Julien MOUTTE <julien@moutte.net>
9081 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
9082 I think one day i'll completely undestand how caps negotiation
9083 is supposed to work. This refactoring handles buffer_alloc
9084 called with caps we can't handle. We definitely don't want a
9085 set_caps with those caps, so we define and allocate a buffer
9086 we would like to receive.
9088 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
9090 * gst/playback/gstplaybasebin.c: (setup_source):
9091 Free iterator when done.
9093 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
9095 * gst-libs/gst/audio/gstbaseaudiosink.c:
9096 (gst_base_audio_sink_render):
9097 Fix playback of non-synchronised streams by assuming a rate
9098 of 1.0 instead of a random one.
9100 Makes this work again:
9102 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
9103 endianness=(int)4321, signed=(boolean)true, width=(int)16,
9104 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
9105 audioresample ! alsasink
9107 === release 0.10.2 ===
9109 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9112 releasing 0.10.2, "Then the devil is six"
9114 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
9116 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9117 * gst/playback/gststreamselector.c:
9118 (gst_stream_selector_set_property):
9119 Comment out broken code that connects to the state-changed signal.
9120 At this point, changing current stream selection is broken, but
9121 stuff like gst-launch playbin current-audio=1 works and filters
9122 to the chosen stream.
9124 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
9126 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9127 Fix #327216 (null dereference in vorbisdec)
9129 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
9131 * ext/theora/theoradec.c: (theora_handle_comment_packet):
9132 Post taglist actually on bus instead of just freeing it
9133 (fixes #327114 and totem bug #327080).
9135 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
9136 Use gst_element_found_tags_for_pad(), so that the tags
9137 are sent downstream as an event as well.
9139 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
9141 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9142 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
9143 (gst_ximagesink_buffer_alloc):
9144 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9145 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
9146 (gst_xvimagesink_buffer_alloc):
9147 move all regularly occurring messages to GST_LOG level
9148 add some more object logs
9150 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
9152 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9153 fix a silly segfault
9155 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
9157 * docs/libs/gst-plugins-base-libs-docs.sgml:
9158 * docs/libs/gst-plugins-base-libs-sections.txt:
9159 * gst-libs/gst/audio/mixerutils.c:
9160 * gst-libs/gst/audio/mixerutils.h:
9161 Add docs for mixerutils stuff.
9163 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
9165 * gst/playback/gstplaybasebin.c: (setup_source):
9166 Fix playback for sources that emit raw audio or
9167 raw video streams (e.g.: cd audio sources) (#325984).
9169 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
9171 * gst-libs/gst/audio/mixerutils.c:
9172 (gst_audio_mixer_filter_do_filter):
9173 actually save the element we create
9175 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
9177 * gst-libs/gst/cdda/gstcddabasesrc.c:
9178 (gst_cdda_base_src_handle_track_seek):
9179 No need to post a tag message on the bus when seeking
9180 within the same track, only post it when the current
9183 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9185 * gst/playback/gstplaybasebin.c: (group_destroy),
9186 (probe_triggered), (new_decoded_pad), (mute_group_type),
9187 (set_active_source):
9188 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
9189 * gst/playback/gststreamselector.c:
9190 (gst_stream_selector_base_init),
9191 (gst_stream_selector_set_property),
9192 (gst_stream_selector_request_new_pad):
9193 Reenable stream selection. These mechanisms need a complete overhaul
9194 in the face of 0.8->0.10 changes though.
9196 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
9198 * ext/ogg/gstoggdemux.c:
9199 Change the pad template to src_%d to match the pads that
9200 are created from it. decodebin needs this information in order
9201 to decide that oggdemux is capable of producing multiple pads
9202 (and hence needs queues inserted).
9204 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
9205 (gst_ogg_mux_collected):
9206 Make debug output more useful by using GST_PTR_FORMAT.
9208 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9210 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
9212 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
9213 Set depth and width for alaw/mulaw (fixes #326601).
9215 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
9217 * tests/icles/Makefile.am:
9218 don't build the tests if we don't have the libs
9220 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9222 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
9223 (gst_cd_paranoia_paranoia_callback):
9224 Don't try to free NULL pointers.
9226 2006-01-10 Edward Hervey <edward@fluendo.com>
9228 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
9229 (gst_audio_rate_change_state), (plugin_init):
9230 Add debugging category.
9232 Add case for incoming buffers without valid offset/offset_end.
9234 2006-01-10 Michael Smith <msmith@fluendo.com>
9236 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
9237 Don't leak GCond in audio sources.
9239 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
9241 * gst/playback/gstplaybin.c: (gen_audio_element):
9242 Don't leak an autoaudiosink/alsasink when we generate
9243 a new audio element. (old code, I guess)
9245 2006-01-10 Michael Smith <msmith@fluendo.com>
9247 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
9248 Support float audio in audiorate.
9249 Use width rather than depth for selecting sample width.
9251 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9253 * gst/videotestsrc/videotestsrc.h:
9254 Use GLib types here (that way we don't have to include the
9255 generated _stdint.h header, which makes life easier for win32
9256 folks that don't use autotools for the build) (#325990, patch
9257 by: Sergey Scobich).
9259 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
9261 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9262 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9263 (gst_ring_buffer_pause), (wait_segment):
9264 * gst-libs/gst/audio/gstringbuffer.h:
9265 Name (private) union, makes Forte compiler happy (this time
9266 for real) (#324900).
9268 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9270 * gst-libs/gst/audio/Makefile.am:
9271 Link against libgstinterfaces, needed for mixer
9272 and property probe stuff.
9274 2006-01-09 Edward Hervey <edward@fluendo.com>
9276 * gst-libs/gst/Makefile.am:
9278 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
9280 * gst-libs/gst/audio/Makefile.am:
9281 * gst-libs/gst/audio/mixerutils.c:
9282 (gst_audio_mixer_filter_do_filter),
9283 (gst_audio_mixer_filter_check_element),
9284 (gst_audio_mixer_filter_probe_feature),
9285 (element_factory_rank_compare_func),
9286 (gst_audio_default_registry_mixer_filter):
9287 * gst-libs/gst/audio/mixerutils.h:
9288 Add gst_audio_default_registry_mixer_filter() utility
9291 2006-01-03 Michael Smith <msmith@fluendo.com>
9293 * gst/audioresample/resample.h:
9294 As before, but for o_buf
9296 2006-01-03 Michael Smith <msmith@fluendo.com>
9298 * gst/audioresample/resample.h:
9299 Declare struct _ResampleState.buffer as unsigned char *, not void *,
9300 since we do arithmetic on it.
9302 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
9304 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
9305 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
9306 (gst_ring_buffer_pause), (wait_segment):
9307 * gst-libs/gst/audio/gstringbuffer.h:
9308 Sun's Forte compiler doesn't seem to like anonymous structs,
9309 so use same setup as in GstBaseSrc (fixes #324900).
9311 2005-12-30 Stefan Kost <ensonic@users.sf.net>
9314 * gst/volume/Makefile.am:
9315 * gst/volume/demo.c:
9316 move old example to tests/examples/volume/volune.c
9317 * tests/examples/Makefile.am:
9318 * tests/examples/seek/seek.c: (main):
9319 change window-close event from "delete-event" to "destroy"
9320 * tests/examples/volume/Makefile.am:
9321 * tests/examples/volume/volume.c: (value_changed_callback),
9322 (setup_gui), (message_received), (eos_message_received), (main):
9323 fix event handling and bus usage
9325 2005-12-29 Stefan Kost <ensonic@users.sf.net>
9327 * gst/audiotestsrc/gstaudiotestsrc.c:
9328 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
9329 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
9330 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
9331 (gst_audio_test_src_create_square),
9332 (gst_audio_test_src_create_saw),
9333 (gst_audio_test_src_create_triangle),
9334 (gst_audio_test_src_create_silence),
9335 (gst_audio_test_src_create_white_noise),
9336 (gst_audio_test_src_create_pink_noise),
9337 (gst_audio_test_src_init_sine_table),
9338 (gst_audio_test_src_create_sine_table),
9339 (gst_audio_test_src_change_wave),
9340 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
9341 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
9342 * gst/audiotestsrc/gstaudiotestsrc.h:
9343 update to basesrc changes, implement segmented seeking and eos
9344 handling, add a 'sine-tab' waveform for performance critical playback
9346 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9349 ... and this time the other modified file that I missed last time.
9351 2005-12-29 Michael Smith <msmith@fluendo.com>
9353 * gst/playback/gstdecodebin.c: (new_pad):
9354 Fix non-C89 variable declaration not at the start of a block. Should
9355 help some compilers.
9357 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9359 * tests/check/Makefile.am:
9360 And now fix 'make distcheck' (builddir != srcdir)
9362 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9365 * ext/cdparanoia/Makefile.am:
9366 * ext/cdparanoia/gstcdparanoia.c:
9367 * ext/cdparanoia/gstcdparanoia.h:
9368 * ext/cdparanoia/gstcdparanoiasrc.c:
9369 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
9370 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
9371 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
9372 (gst_cd_paranoia_paranoia_callback),
9373 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
9374 (gst_cd_paranoia_src_set_property),
9375 (gst_cd_paranoia_src_get_property), (plugin_init):
9376 * ext/cdparanoia/gstcdparanoiasrc.h:
9377 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
9378 plugin again (there are still fixes required to playbin to make
9379 cdda:// uris work there).
9381 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9383 * tests/check/Makefile.am:
9384 Fix test case compilation.
9386 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
9388 * gst-libs/gst/cdda/gstcddabasesrc.c:
9389 (gst_cdda_base_src_update_duration),
9390 (gst_cdda_base_src_calculate_cddb_id):
9391 An integer is not a string. Fix access to uninitialised variable.
9393 * tests/check/Makefile.am:
9394 Add cddabasesrc unit test; also actually enable the vorbis test.
9396 * tests/check/generic/states.c:
9397 Blacklist new cd audio elements as well.
9399 * tests/check/libs/cddabasesrc.c:
9400 Unit test for GstCddaBaseSrc (discid calculation mostly).
9402 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9404 * docs/libs/Makefile.am:
9405 * docs/libs/gst-plugins-base-libs-docs.sgml:
9406 * docs/libs/gst-plugins-base-libs-sections.txt:
9407 * docs/libs/gst-plugins-base-libs.types:
9408 Add docs for libgstcdda/GstCddaBaseSrc.
9410 * gst-libs/gst/interfaces/mixertrack.h:
9411 Do one struct member per line with a semicolon at the end, that way
9412 even gtk-doc might parse it without complaining.
9414 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9417 * gst-libs/gst/Makefile.am:
9418 * gst-libs/gst/cdda/Makefile.am:
9419 * gst-libs/gst/cdda/base64.c:
9420 * gst-libs/gst/cdda/base64.h:
9421 * gst-libs/gst/cdda/gstcddabasesrc.c:
9422 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
9423 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
9424 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
9425 (gst_cdda_base_src_get_property),
9426 (gst_cdda_base_src_get_track_from_sector),
9427 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
9428 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
9429 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
9430 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
9431 (gst_cdda_base_src_uri_get_protocols),
9432 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
9433 (gst_cdda_base_src_uri_handler_init),
9434 (gst_cdda_base_src_setup_interfaces),
9435 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
9436 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
9437 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
9438 (gst_cdda_base_src_add_tags),
9439 (gst_cdda_base_src_add_index_associations),
9440 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
9441 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
9442 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
9443 (gst_cdda_base_src_create):
9444 * gst-libs/gst/cdda/gstcddabasesrc.h:
9445 * gst-libs/gst/cdda/sha1.c:
9446 * gst-libs/gst/cdda/sha1.h:
9447 Add new libgstcdda with GstCddaBaseSrc class.
9449 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
9451 * ext/gnomevfs/gstgnomevfssink.h:
9452 Use GstBaseSinkClass as parent_class member for class struct, not
9455 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9457 Patch by: Michael Benes
9459 * gst/videotestsrc/gstvideotestsrc.c:
9460 (gst_video_test_src_class_init), (gst_video_test_src_start):
9461 Add start method to reset running time and number of frames sent
9462 when starting up (fixes #324696)
9464 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9466 * docs/plugins/Makefile.am:
9467 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9468 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9469 * docs/plugins/gst-plugins-base-plugins.args:
9470 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9471 * docs/plugins/gst-plugins-base-plugins.signals:
9472 Add docs stuff for gnomevfssrc and gnomevfssink.
9474 * ext/gnomevfs/gstgnomevfssrc.c:
9475 Fix example pipeline in gtk-doc blurb.
9477 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
9479 * ext/gnomevfs/Makefile.am:
9480 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
9481 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
9482 (gst_gnome_vfs_handle_get_type), (plugin_init):
9483 * ext/gnomevfs/gstgnomevfs.h:
9484 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
9485 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
9486 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
9487 (gst_gnome_vfs_sink_set_property),
9488 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
9489 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
9490 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
9491 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
9492 (gst_gnome_vfs_sink_uri_get_type),
9493 (gst_gnome_vfs_sink_uri_get_protocols),
9494 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
9495 (gst_gnome_vfs_sink_uri_handler_init):
9496 * ext/gnomevfs/gstgnomevfssink.h:
9497 Port gnomevfssink; add gtk-doc blurb.
9499 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
9500 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
9501 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
9502 (gst_gnome_vfs_src_uri_get_type),
9503 (gst_gnome_vfs_src_uri_get_protocols),
9504 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
9505 (gst_gnome_vfs_src_uri_handler_init),
9506 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
9507 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
9508 (gst_gnome_vfs_src_send_additional_headers_callback),
9509 (gst_gnome_vfs_src_received_headers_callback),
9510 (gst_gnome_vfs_src_push_callbacks),
9511 (gst_gnome_vfs_src_pop_callbacks),
9512 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
9513 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
9514 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
9515 * ext/gnomevfs/gstgnomevfssrc.h:
9516 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
9517 file; add gtk-doc blurb with example pipelines.
9519 === release 0.10.1 ===
9521 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
9524 releasing 0.10.1, "Dobro Dedek"
9526 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
9528 * gst/typefind/gsttypefindfunctions.c:
9529 iLBC30 and iLBC20 added to typefind.
9531 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
9533 * gst-libs/gst/audio/gstbaseaudiosink.c:
9534 (gst_base_audio_sink_class_init):
9535 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9536 (gst_base_audio_src_class_init):
9537 update strings, values are in microseconds
9538 change the default sink buffer time to something that is smaller
9539 (to help software volume mixing have a slightly lower delay) but
9540 still be acceptable on Wim's laptop
9542 2005-12-20 Edward Hervey <edward@fluendo.com>
9544 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
9545 Made a quack, forgot to add DUCK to the riff video template.
9547 2005-12-19 Edward Hervey <edward@fluendo.com>
9549 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
9550 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
9551 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9552 (gst_ogm_parse_chain):
9553 Make sure pads are initialized correctly.
9554 * gst-libs/gst/riff/riff-ids.h:
9555 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
9556 (gst_riff_create_video_template_caps):
9557 Add a whole bunch of FOURCC <=> MimeType.
9558 Extend the riff video pad template to support the newly added fourcc.
9560 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
9562 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
9563 (gst_ogg_demux_activate_chain):
9564 Extra debug output when activating/deactivating chains.
9566 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
9567 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
9569 Remove a queue from our list when it becomes unlinked.
9570 Don't add queues to elements in class 'Demux' if they
9571 can only produce one pad
9573 2005-12-18 Julien MOUTTE <julien@moutte.net>
9575 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
9576 (gst_video_sink_get_type): Add a debug category.
9578 2005-12-17 Philippe Khalaf <burger@speedy.org>
9580 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9581 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
9582 Handle downstream newsegment by sending our own newsegment before the
9583 next buffer to be released. (#323900)
9585 2005-12-17 Philippe Khalaf <burger@speedy.org>
9587 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9588 (gst_base_rtp_depayload_set_gst_timestamp):
9589 add queue delay to new segment as well (as opposed to just the first
9590 buffer). (bug #322347)
9592 2005-12-16 Stefan Kost <ensonic@users.sf.net>
9594 * ext/libvisual/visual.c: (make_valid_name):
9595 change some char* into char[]
9596 * gst/audiotestsrc/gstaudiotestsrc.c:
9597 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
9598 (gst_audio_test_src_create):
9599 * gst/audiotestsrc/gstaudiotestsrc.h:
9600 prepare to handle EOS and SEGMENT_DONE
9602 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9604 * tests/check/generic/states.c: (GST_START_TEST):
9605 Blacklist cdparanoia element in state test.
9607 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
9609 Patch by: Benjamin Pineau
9612 * gst/tcp/gsttcpclientsink.c:
9613 * gst/tcp/gsttcpserversink.c:
9614 * gst/tcp/gsttcpserversrc.c:
9615 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
9617 2005-12-15 Michael Smith <msmith@fluendo.com>
9619 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
9620 (gst_video_rate_chain):
9621 Fix timestamping for videorate when the first buffer it sees has a
9622 non-zero timestamp. Fix some misleading debug output.
9624 2005-12-15 Michael Smith <msmith@fluendo.com>
9626 * gst/audioresample/gstaudioresample.c:
9627 Don't leak all input buffers to audioresample.
9629 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9631 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
9632 Don't operate on empty text buffers. Strip newlines and
9633 tabs only from the end of the text, but leave them intact
9634 in the middle. Fix typo in gtk-doc description.
9636 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
9638 * gst/playback/gstplaybasebin.c:
9639 * gst/playback/gstplaybin.c: (handoff):
9640 Make sure the video frame buffer we return to apps via the
9641 "frame" property always has caps set on it. Modify
9642 _gst_gvalue_set_object() macro to handle NULL objects
9645 2005-12-14 Stefan Kost <ensonic@users.sf.net>
9647 * gst/audiotestsrc/gstaudiotestsrc.c:
9648 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
9649 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
9650 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
9651 (gst_audio_test_src_create):
9652 * gst/audiotestsrc/gstaudiotestsrc.h:
9653 Adjust to some recent api changes and add wtays new cool seeking
9656 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
9658 * ext/alsa/Makefile.am:
9659 * ext/alsa/gstalsadeviceprobe.c:
9660 * ext/alsa/gstalsadeviceprobe.h:
9661 Helper functions to add device probing via the GstPropertyProbe
9662 interface to a class.
9664 * ext/alsa/gstalsamixer.h:
9665 Comment out GST_ALSA_MIXER, it returns a struct that's not
9668 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
9669 Add some debug info.
9671 * ext/alsa/gstalsamixerelement.c:
9672 (gst_alsa_mixer_element_interface_supported),
9673 (gst_implements_interface_init),
9674 (gst_alsa_mixer_element_init_interfaces),
9675 (gst_alsa_mixer_element_class_init),
9676 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
9677 (gst_alsa_mixer_element_set_property),
9678 (gst_alsa_mixer_element_get_property),
9679 (gst_alsa_mixer_element_change_state):
9680 * ext/alsa/gstalsamixerelement.h:
9681 Add 'device' and 'device-name' properties. Add GstPropertyProbe
9682 for device handling (gnome-volume-control will need that).
9684 2005-12-12 Christian Schaller <uraeus@gnome.org>
9686 * ext/Makefile.am: fix cdparanoia entry
9687 * gst-plugins-base.spec.in: add cdparanoia
9689 2005-12-12 Michael Smith <msmith@fluendo.com>
9691 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
9692 Use the correct function to free list of typefind factories.
9694 2005-12-12 Wim Taymans <wim@fluendo.com>
9696 * gst/videotestsrc/gstvideotestsrc.c:
9697 (gst_video_test_src_class_init), (gst_video_test_src_init),
9698 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
9699 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
9700 (gst_video_test_src_create):
9701 * gst/videotestsrc/gstvideotestsrc.h:
9702 Implement seeking in videotestsrc.
9705 2005-12-12 Wim Taymans <wim@fluendo.com>
9707 * ext/cdparanoia/Makefile.am:
9708 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
9709 (gst_paranoia_endian_get_type), (_do_init),
9710 (cdparanoia_class_init), (cdparanoia_init),
9711 (cdparanoia_set_property), (cdparanoia_get_property),
9712 (cdparanoia_do_seek), (cdparanoia_is_seekable),
9713 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
9714 (cdparanoia_convert), (cdparanoia_get_query_types),
9715 (cdparanoia_query), (cdparanoia_set_index),
9716 (cdparanoia_uri_set_uri):
9717 * ext/cdparanoia/gstcdparanoia.h:
9718 Partially ported cdparanoia now that basesrc can support a
9721 2005-12-12 Wim Taymans <wim@fluendo.com>
9723 * tests/examples/seek/scrubby.c: (main):
9724 Set higher priority for bus events so they don't get reordered with
9727 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
9728 (flush_toggle_cb), (main):
9729 Added checkbox to disable flushing seeks.
9730 Disable scrubbing when doing non flushing seeks.
9732 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
9734 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
9735 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
9736 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
9737 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
9738 Implement some sort of event handling that doesn't rely on
9739 g_return_if_fail; make sure we always push the last chunk of an
9740 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
9741 state change function; remove some old cruft. Seeking is still
9742 rather unlikely to work though.
9747 2005-12-11 Julien MOUTTE <julien@moutte.net>
9749 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
9750 Fixed a leak of the current image reference when cleaning up.
9751 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
9753 2005-12-09 Michael Smith <msmith@fluendo.com>
9755 * tools/Makefile.am:
9756 * tools/gst-launch-ext-m.m:
9757 Remove gst-launch-ext. It doesn't work, and is no longer
9758 particularly useful.
9760 2005-12-08 Luca Ognibene <luogni@tin.it>
9762 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
9763 don't pass random values to ogmparse convert function.
9764 Make seeking possible in the exile1.ogm file.
9766 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
9768 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
9769 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
9770 Work around refcount problem with g_value_set_object() that occur
9771 if the core has been compiled against GLib-2.6 (g_value_set_object()
9772 will only g_object_ref() the element, but the caller will
9773 gst_object_unref() it and bad things will happen due to the way
9774 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
9775 totem for people on FC4 using Thomas's 0.10 RPMs.
9777 2005-12-07 Edward Hervey <edward@fluendo.com>
9779 Time to welcome ogm to 0.10 :)
9781 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
9782 (gst_ogg_pad_typefind):
9783 Oggdemux can now properly typefind elements with dynamic pads.
9784 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9785 Properly set caps on src pad, and set caps on outgoing buffers.
9787 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
9789 * ext/alsa/gstalsamixer.h:
9790 * ext/alsa/gstalsamixerelement.h:
9791 * ext/alsa/gstalsamixeroptions.h:
9792 * ext/alsa/gstalsamixertrack.h:
9793 * ext/alsa/gstalsasink.c:
9794 * ext/alsa/gstalsasink.h:
9795 * ext/alsa/gstalsasrc.c:
9796 * ext/alsa/gstalsasrc.h:
9797 * ext/cdparanoia/gstcdparanoia.h:
9798 * ext/gnomevfs/gstgnomevfsuri.h:
9799 * ext/ogg/gstoggdemux.c:
9800 * ext/ogg/gstoggmux.c:
9801 * ext/pango/gsttextoverlay.h:
9802 * ext/theora/theoradec.c:
9803 * ext/theora/theoraenc.c:
9804 * ext/vorbis/vorbisdec.h:
9805 * ext/vorbis/vorbisenc.c:
9806 * ext/vorbis/vorbisenc.h:
9807 * ext/vorbis/vorbisparse.h:
9808 * gst-libs/gst/audio/gstaudioclock.h:
9809 * gst-libs/gst/audio/gstaudiosink.c:
9810 * gst-libs/gst/audio/gstaudiosink.h:
9811 * gst-libs/gst/audio/gstaudiosrc.c:
9812 * gst-libs/gst/audio/gstaudiosrc.h:
9813 * gst-libs/gst/audio/gstbaseaudiosink.c:
9814 * gst-libs/gst/audio/gstbaseaudiosink.h:
9815 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9816 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9817 * gst-libs/gst/audio/gstringbuffer.h:
9818 * gst-libs/gst/audio/multichannel.h:
9819 * gst-libs/gst/floatcast/floatcast.h:
9820 * gst-libs/gst/interfaces/colorbalance.c:
9821 * gst-libs/gst/interfaces/colorbalance.h:
9822 * gst-libs/gst/interfaces/colorbalancechannel.h:
9823 * gst-libs/gst/interfaces/mixer.h:
9824 * gst-libs/gst/interfaces/mixeroptions.h:
9825 * gst-libs/gst/interfaces/mixertrack.h:
9826 * gst-libs/gst/interfaces/navigation.h:
9827 * gst-libs/gst/interfaces/propertyprobe.h:
9828 * gst-libs/gst/interfaces/tuner.h:
9829 * gst-libs/gst/interfaces/tunerchannel.h:
9830 * gst-libs/gst/interfaces/tunernorm.h:
9831 * gst-libs/gst/interfaces/xoverlay.h:
9832 * gst-libs/gst/netbuffer/gstnetbuffer.h:
9833 * gst-libs/gst/riff/riff-ids.h:
9834 * gst-libs/gst/riff/riff-media.h:
9835 * gst-libs/gst/riff/riff-read.h:
9836 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9837 * gst-libs/gst/rtp/gstbasertppayload.c:
9838 * gst-libs/gst/rtp/gstbasertppayload.h:
9839 * gst-libs/gst/rtp/gstrtpbuffer.c:
9840 * gst-libs/gst/rtp/gstrtpbuffer.h:
9841 * gst-libs/gst/tag/gsttageditingprivate.h:
9842 * gst-libs/gst/tag/gstvorbistag.c:
9843 (gst_tag_list_from_vorbiscomment_buffer):
9844 * gst-libs/gst/tag/tag.h:
9845 * gst-libs/gst/video/video.h:
9846 * gst/adder/gstadder.c:
9847 * gst/adder/gstadder.h:
9848 * gst/audioconvert/audioconvert.c:
9849 * gst/audioconvert/audioconvert.h:
9850 * gst/audioconvert/gstaudioconvert.c:
9851 * gst/audioconvert/gstchannelmix.c:
9852 * gst/audioconvert/gstchannelmix.h:
9853 * gst/audiorate/gstaudiorate.c:
9854 * gst/audioresample/buffer.h:
9855 * gst/audioresample/functable.h:
9856 * gst/audioresample/gstaudioresample.c:
9857 * gst/audioresample/resample.h:
9858 * gst/ffmpegcolorspace/avcodec.h:
9859 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9860 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
9861 * gst/ffmpegcolorspace/imgconvert.c:
9862 * gst/ffmpegcolorspace/imgconvert_template.h:
9863 * gst/playback/gstdecodebin.c:
9864 * gst/playback/gstplaybasebin.h:
9865 * gst/playback/gstplaybin.c:
9866 * gst/playback/gststreaminfo.h:
9867 * gst/tcp/gstfdset.c:
9868 * gst/tcp/gstfdset.h:
9869 * gst/tcp/gstmultifdsink.c:
9870 * gst/tcp/gstmultifdsink.h:
9872 * gst/tcp/gsttcpclientsrc.c:
9873 * gst/tcp/gsttcpclientsrc.h:
9874 * gst/tcp/gsttcpplugin.h:
9875 * gst/tcp/gsttcpserversink.c:
9876 * gst/tcp/gsttcpserversrc.c:
9877 * gst/typefind/gsttypefindfunctions.c:
9878 * gst/videorate/gstvideorate.c:
9879 * gst/videotestsrc/gstvideotestsrc.h:
9880 * gst/videotestsrc/videotestsrc.h:
9881 * sys/v4l/gstv4lcolorbalance.h:
9882 * sys/v4l/gstv4ltuner.h:
9883 * sys/v4l/gstv4lxoverlay.h:
9884 * sys/v4l/v4l_calls.h:
9885 * sys/v4l/videodev_mjpeg.h:
9886 * tests/check/elements/audioconvert.c:
9887 * tests/check/elements/audioresample.c:
9888 * tests/check/elements/audiotestsrc.c:
9889 * tests/check/elements/videotestsrc.c:
9890 * tests/check/elements/volume.c:
9891 * tests/examples/seek/scrubby.c:
9892 * tests/examples/seek/seek.c:
9895 === release 0.10.0 ===
9897 2005-12-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9900 releasing 0.10.0, "Mont-d'or"
9902 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
9904 * tests/examples/seek/Makefile.am:
9905 Build fix for when gtk is not available.
9907 2005-12-05 Andy Wingo <wingo@pobox.com>
9909 * ext/libvisual/visual.c: (get_buffer):
9910 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
9911 * ext/pango/gsttextrender.c: (gst_text_render_chain):
9912 * ext/theora/theoradec.c: (theora_handle_data_packet):
9913 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9915 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9916 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
9917 Update for alloc_buffer changes.
9919 2005-12-05 Andy Wingo <wingo@pobox.com>
9921 patch by: Kai Vehmanen <kv2004 eca cx>
9923 * gst-libs/gst/rtp/gstbasertpdepayload.c
9924 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
9926 2005-12-04 Andy Wingo <wingo@pobox.com>
9928 patch by: Sebastien Cote <sebas642 yahoo ca>
9930 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
9933 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
9935 * docs/plugins/Makefile.am:
9936 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9937 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9938 * docs/plugins/gst-plugins-base-plugins.hierarchy:
9939 * ext/pango/gstclockoverlay.c:
9940 * ext/pango/gsttextoverlay.c:
9941 * ext/pango/gsttextrender.c:
9942 * ext/pango/gsttimeoverlay.c:
9943 Add gtk-doc blurbs to pango elements.
9945 2005-12-02 Wim Taymans <wim@fluendo.com>
9947 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
9948 * gst/audioresample/buffer.h:
9949 * gst/audioresample/gstaudioresample.c:
9950 * gst/audioresample/gstaudioresample.h:
9951 * gst/audioresample/resample.c: (resample_input_flush),
9952 (resample_input_pushthrough), (resample_input_eos),
9953 (resample_get_output_size_for_input),
9954 (resample_get_input_size_for_output), (resample_get_output_size),
9955 (resample_get_output_data):
9956 * gst/audioresample/resample.h:
9957 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9958 Fix audioresample, seek torture, new segments, reverse negotiation
9961 2005-12-02 Wim Taymans <wim@fluendo.com>
9963 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
9966 2005-12-02 Wim Taymans <wim@fluendo.com>
9968 * gst/audioconvert/gstaudioconvert.c:
9969 (gst_audio_convert_transform):
9972 === release 0.9.7 ===
9974 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9977 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
9979 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
9985 add win32 MANIFEST file
9986 do something to the hungarian translation
9988 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
9991 Add $(PANGO_DIR) to SUBDIRS
9993 * ext/pango/gstclockoverlay.c:
9994 * ext/pango/gsttimeoverlay.c:
9995 Fix and improve element descriptions.
9997 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
9999 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10000 * docs/plugins/inspect/plugin-libvisual.xml:
10001 * docs/plugins/inspect/plugin-pango.xml:
10002 add pango plugin to docs
10004 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10008 moved pango to base
10010 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10013 * tests/Makefile.am:
10014 * tests/icles/.cvsignore:
10015 * tests/icles/Makefile.am:
10016 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
10017 (close_display), (resize_window), (move_window), (create_window),
10018 (terminate_playback), (pause_playback), (start_playback), (main):
10019 add stress test for xoverlay from Julien
10021 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10023 * docs/libs/tmpl/gstcolorbalance.sgml:
10024 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10025 * gst-libs/gst/rtp/gstbasertppayload.c:
10026 * gst-libs/gst/rtp/gstrtpbuffer.c:
10027 * gst-libs/gst/rtp/gstrtpbuffer.h:
10028 Do burger's rename for rtp payloaders and depayloaders
10030 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10033 add Visual Studio 6 build files
10035 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10037 * docs/libs/gst-plugins-base-libs-docs.sgml:
10038 * docs/libs/gst-plugins-base-libs-sections.txt:
10039 * docs/libs/tmpl/gstaudio.sgml:
10040 * docs/libs/tmpl/gstringbuffer.sgml:
10041 * gst-libs/gst/interfaces/xoverlay.c:
10042 * gst-libs/gst/video/gstvideofilter.c:
10043 * gst-libs/gst/video/gstvideosink.c:
10044 update documentation
10046 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10048 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
10049 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
10050 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
10051 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
10052 (gst_multi_fd_sink_get_stats),
10053 (gst_multi_fd_sink_remove_client_link),
10054 (gst_multi_fd_sink_handle_client_read),
10055 (gst_multi_fd_sink_client_queue_data),
10056 (gst_multi_fd_sink_client_queue_caps),
10057 (gst_multi_fd_sink_client_queue_buffer),
10058 (gst_multi_fd_sink_new_client),
10059 (gst_multi_fd_sink_handle_client_write),
10060 (gst_multi_fd_sink_recover_client),
10061 (gst_multi_fd_sink_queue_buffer),
10062 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
10063 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
10064 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
10065 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
10066 * gst/tcp/gstmultifdsink.h:
10067 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
10068 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
10069 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
10070 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
10071 (gst_tcp_client_sink_set_property),
10072 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
10073 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
10074 * gst/tcp/gsttcpclientsink.h:
10075 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
10076 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
10077 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
10078 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
10079 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
10080 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
10081 * gst/tcp/gsttcpclientsrc.h:
10082 * gst/tcp/gsttcpplugin.c: (plugin_init):
10083 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
10084 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
10085 (gst_tcp_server_sink_finalize),
10086 (gst_tcp_server_sink_handle_server_read),
10087 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
10088 (gst_tcp_server_sink_set_property),
10089 (gst_tcp_server_sink_get_property),
10090 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
10091 * gst/tcp/gsttcpserversink.h:
10092 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
10093 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
10094 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
10095 (gst_tcp_server_src_set_property),
10096 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
10097 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
10098 * gst/tcp/gsttcpserversrc.h:
10101 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
10103 * docs/plugins/Makefile.am:
10104 * docs/plugins/gst-plugins-base-plugins.args:
10105 * docs/plugins/inspect/plugin-libvisual.xml:
10106 * gst/audioconvert/plugin.h:
10107 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
10108 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
10109 (gst_audio_rate_setcaps), (gst_audio_rate_init),
10110 (gst_audio_rate_chain), (gst_audio_rate_set_property),
10111 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
10113 * gst/audiotestsrc/gstaudiotestsrc.c:
10114 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
10115 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
10116 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
10117 (gst_audio_test_src_get_query_types),
10118 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
10119 (gst_audio_test_src_create_square),
10120 (gst_audio_test_src_create_saw),
10121 (gst_audio_test_src_create_triangle),
10122 (gst_audio_test_src_create_silence),
10123 (gst_audio_test_src_create_white_noise),
10124 (gst_audio_test_src_init_pink_noise),
10125 (gst_audio_test_src_generate_pink_noise_value),
10126 (gst_audio_test_src_create_pink_noise),
10127 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
10128 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
10129 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
10131 * gst/audiotestsrc/gstaudiotestsrc.h:
10132 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
10133 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
10134 (gst_sub_parse_init), (gst_sub_parse_formats),
10135 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
10136 (convert_encoding), (get_next_line),
10137 (gst_sub_parse_data_format_autodetect),
10138 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
10139 (gst_sub_parse_loop), (gst_sub_parse_chain),
10140 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
10142 * gst/subparse/gstsubparse.h:
10143 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
10144 (gst_video_rate_base_init), (gst_video_rate_class_init),
10145 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
10146 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
10147 (gst_video_rate_init), (gst_video_rate_event),
10148 (gst_video_rate_chain), (gst_video_rate_set_property),
10149 (gst_video_rate_get_property), (gst_video_rate_change_state),
10151 * gst/videoscale/gstvideoscale.c:
10152 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
10153 (gst_video_scale_src_template_factory),
10154 (gst_video_scale_sink_template_factory),
10155 (gst_video_scale_get_type), (gst_video_scale_base_init),
10156 (gst_video_scale_class_init), (gst_video_scale_init),
10157 (gst_video_scale_set_property), (gst_video_scale_get_property),
10158 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
10159 (gst_video_scale_prepare_size), (parse_caps),
10160 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
10161 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
10162 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
10164 * gst/videoscale/gstvideoscale.h:
10165 * gst/videotestsrc/gstvideotestsrc.c:
10166 (gst_video_test_src_pattern_get_type),
10167 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
10168 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
10169 (gst_video_test_src_set_pattern),
10170 (gst_video_test_src_set_property),
10171 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
10172 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
10173 (gst_video_test_src_event), (gst_video_test_src_get_times),
10174 (gst_video_test_src_create), (plugin_init):
10175 * gst/videotestsrc/gstvideotestsrc.h:
10176 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
10177 (gst_video_test_src_smpte), (gst_video_test_src_snow),
10178 (gst_video_test_src_black):
10179 * gst/videotestsrc/videotestsrc.h:
10181 clean up docs a little
10183 2005-11-30 Wim Taymans <wim@fluendo.com>
10185 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10186 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
10187 (gst_basertppayload_event), (gst_basertppayload_push),
10188 (gst_basertppayload_change_state):
10189 * gst-libs/gst/rtp/gstbasertppayload.h:
10192 2005-11-30 Julien MOUTTE <julien@moutte.net>
10194 * docs/libs/gst-plugins-base-libs-docs.sgml:
10195 * docs/libs/gst-plugins-base-libs-sections.txt:
10196 * gst-libs/gst/video/gstvideofilter.c:
10197 * gst-libs/gst/video/gstvideosink.c:
10198 * gst-libs/gst/video/gstvideosink.h: Adding docs.
10200 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10220 * scripts/autoplugins.sh:
10223 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
10227 * examples/Makefile.am:
10228 * examples/capsfilter/Makefile.am:
10229 * examples/capsfilter/capsfilter1.c:
10230 * examples/gob/Makefile.am:
10231 * examples/gob/gst-identity2.gob:
10232 * examples/indexing/.cvsignore:
10233 * examples/indexing/Makefile.am:
10234 * examples/indexing/indexmpeg.c:
10235 * examples/seeking/.cvsignore:
10236 * examples/seeking/Makefile.am:
10237 * examples/seeking/cdparanoia.c:
10238 * examples/seeking/cdplayer.c:
10239 * examples/seeking/chained.c:
10240 * examples/seeking/scrubby.c:
10241 * examples/seeking/seek.c:
10242 * examples/stats/Makefile.am:
10243 * examples/stats/mp2ogg.c:
10244 * examples/switch/.cvsignore:
10245 * examples/switch/Makefile.am:
10246 * examples/switch/switcher.c:
10247 * tests/Makefile.am:
10248 * tests/check/generic/.cvsignore:
10249 * tests/check/pipelines/.cvsignore:
10250 * tests/examples/Makefile.am:
10251 * tests/examples/seek/Makefile.am:
10252 reorganize stuff under tests/
10254 2005-11-30 Edward Hervey <edward@fluendo.com>
10256 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
10257 Go away you stupid GstStaticPadTemplate memleak.
10259 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10261 * gst-libs/gst/net/Makefile.am:
10262 * gst-libs/gst/net/README:
10263 * gst-libs/gst/net/gstnetbuffer.c:
10264 * gst-libs/gst/net/gstnetbuffer.h:
10265 this was moved to "netbuffer"
10267 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10269 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
10270 (gst_video_filter_class_init), (gst_video_filter_init):
10271 * gst-libs/gst/video/gstvideofilter.h:
10272 borgify name to bring in line with other classes
10274 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
10276 * gst/audioscale/.cvsignore:
10277 * gst/audioscale/Makefile.am:
10278 * gst/audioscale/README:
10279 * gst/audioscale/audioscale.vcproj:
10280 * gst/audioscale/dtof.c:
10281 * gst/audioscale/dtos.c:
10282 * gst/audioscale/functable.c:
10283 * gst/audioscale/gstaudioscale.c:
10284 * gst/audioscale/gstaudioscale.h:
10285 * gst/audioscale/private.h:
10286 * gst/audioscale/resample.c:
10287 * gst/audioscale/resample.h:
10288 * gst/audioscale/test.c:
10291 2005-11-30 Edward Hervey <edward@fluendo.com>
10293 * gst-libs/gst/netbuffer/Makefile.am:
10294 really, really tired
10296 2005-11-30 Edward Hervey <edward@fluendo.com>
10298 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10299 Update for new GstTypeFindFactory _register()
10301 2005-11-30 Edward Hervey <edward@fluendo.com>
10303 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
10304 Let's not override libgstnet from core for no reason...
10305 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
10306 Ok, maybe not so quick next time.
10308 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10311 * gst-libs/gst/Makefile.am:
10312 moved gst-libs/gst/net to netbuffer through CVS surgery
10313 remove old directory
10314 updating build to accomodate
10317 2005-11-29 Andy Wingo <wingo@pobox.com>
10319 * pkgconfig/gstreamer-plugins-base.pc.in:
10320 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
10321 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
10324 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10326 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
10327 3rd time's the charm. Correct ref-counting for discarded buffers.
10329 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10331 * gst/playback/gststreamselector.c:
10332 (gst_stream_selector_class_init),
10333 (gst_stream_selector_set_property),
10334 (gst_stream_selector_get_property),
10335 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10338 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
10340 * gst/subparse/gstsubparse.c: (feed_textbuf):
10341 Don't access already unref'ed buffer.
10343 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
10345 * gst/playback/gststreamselector.c:
10346 (gst_stream_selector_class_init), (gst_stream_selector_init),
10347 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
10348 (gst_stream_selector_get_property),
10349 (gst_stream_selector_get_linked_pad),
10350 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
10351 * gst/playback/gststreamselector.h:
10352 Add the active-pad property for playbin to use shortly. Ignore buffers
10353 from any other pad, returning GST_FLOW_NOT_LINKED
10355 2005-11-29 Julien MOUTTE <julien@moutte.net>
10357 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
10358 patch from bug #322704 (Alessandro Decina).
10360 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10362 * gst-libs/gst/audio/Makefile.am:
10363 folded audiofilter into the audio library
10365 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
10367 * gst/videoscale/gstvideoscale.h:
10368 * gst/videoscale/gstvideoscale.c:
10369 remove unimplemented scale methods
10371 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
10373 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
10376 2005-11-28 Julien MOUTTE <julien@moutte.net>
10378 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
10379 (gst_ximagesink_setcaps):
10380 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10381 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
10382 happens (only visible on ximagesink but bug is in xv too) set_caps was
10383 destroying the internal x[v]image used to memcpy non locally alloced
10384 buffers so that it got renewed on next _chain. The issue is that
10385 _expose will try to put that image as it reffed it in _put.
10386 Using gst_buffer_unref instead of destroy fixes it !
10388 2005-11-28 Edward Hervey <edward@fluendo.com>
10390 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
10391 (try_to_link_1), (queue_filled_cb):
10392 Better use of the queues. Start with a small size queue and only increase
10393 the size of the queues when the other queues are empty.
10395 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
10397 * gst-libs/gst/video/Makefile.am:
10398 compile in copied-over videofilter into the video library
10399 * gst-libs/gst/video/videosink.h:
10400 rename the header to gstvideosink.h since it's a base GstObject class
10401 * sys/ximage/ximagesink.h:
10402 * sys/xvimage/xvimagesink.h:
10405 2005-11-28 Wim Taymans <wim@fluendo.com>
10407 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
10408 * gst/playback/gstplaybasebin.h:
10409 Prepare to handle errors betters.
10411 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
10412 Set sinks to PAUSED first before adding and linking them so that
10413 we don't interrupt dataflow.
10415 2005-11-28 Wim Taymans <wim@fluendo.com>
10417 * gst-libs/gst/audio/TODO:
10420 * gst-libs/gst/audio/gstaudiosink.c:
10421 (gst_audioringbuffer_open_device),
10422 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
10423 (gst_audioringbuffer_release):
10426 * gst-libs/gst/audio/gstbaseaudiosink.c:
10427 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
10428 (gst_base_audio_sink_change_state):
10429 Slave to the master clock when going to PLAYING and unslave when
10432 * gst-libs/gst/audio/gstringbuffer.c:
10433 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
10434 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
10435 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10436 (gst_ring_buffer_clear_all), (wait_segment),
10437 (gst_ring_buffer_commit), (gst_ring_buffer_read),
10438 (gst_ring_buffer_advance):
10439 * gst-libs/gst/audio/gstringbuffer.h:
10440 Add some docs and cleanups.
10442 2005-11-28 Julien MOUTTE <julien@moutte.net>
10444 * sys/xvimage/xvimagesink.c:
10445 (gst_xvimagesink_navigation_send_event): Fix navigation events
10446 coordinates translation with pixel aspect ratios.
10448 2005-11-28 Julien MOUTTE <julien@moutte.net>
10450 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
10451 Use calculated video geometry from _setcaps instead of buffer
10452 caps to respect pixel aspect ratio. (fixes #322388)
10454 2005-11-28 Julien MOUTTE <julien@moutte.net>
10456 * docs/libs/tmpl/gstcolorbalance.sgml:
10457 * docs/libs/tmpl/gstmixer.sgml:
10458 * docs/libs/tmpl/gstxoverlay.sgml:
10459 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
10462 2005-11-28 Julien MOUTTE <julien@moutte.net>
10464 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
10465 Refuse to create an XvImage if we can't find the format.
10467 2005-11-28 Edward Hervey <edward@fluendo.com>
10469 * gst-libs/gst/riff/riff-media.c:
10470 (gst_riff_create_audio_template_caps):
10471 Add ATRAC3 to the list of riff-possible audio caps.
10472 I know we still don't have a plugin for atrac3, but it's saner to output
10473 that than a cryptic mimetype.
10475 2005-11-27 Edward Hervey <edward@fluendo.com>
10477 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
10478 Don't try to create a zero-sized subbuffer.
10480 2005-11-27 Julien MOUTTE <julien@moutte.net>
10482 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
10483 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
10484 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
10485 (gst_ximagesink_expose): Fixed a tricky race.
10486 * sys/ximage/ximagesink.h:
10487 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10488 (gst_xvimagesink_expose): Fixed a tricky race.
10489 * sys/xvimage/xvimagesink.h:
10491 2005-11-27 Edward Hervey <edward@fluendo.com>
10493 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10494 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
10495 Remove unused properties, and add queues between demuxers and decoders
10496 so that a lot more files can preroll properly.
10498 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10500 * gst-libs/gst/net/Makefile.am:
10501 * gst-libs/gst/rtp/Makefile.am:
10502 * gst-libs/gst/tag/Makefile.am:
10503 remove silly include
10504 * gst/tags/Makefile.am:
10505 * gst/tags/gsttagediting.c:
10506 * gst/tags/gsttageditingprivate.h:
10507 * gst/tags/tagedit.vcproj:
10508 remove directory, is as good as empty
10510 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
10513 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
10514 * gst-libs/Makefile.am:
10515 * gst-libs/gst/audio/Makefile.am:
10516 * gst-libs/gst/interfaces/Makefile.am:
10517 * gst-libs/gst/net/Makefile.am:
10518 * gst-libs/gst/riff/Makefile.am:
10519 * gst-libs/gst/rtp/Makefile.am:
10520 * gst-libs/gst/tag/Makefile.am:
10521 * gst-libs/gst/video/Makefile.am:
10524 2005-11-27 Julien MOUTTE <julien@moutte.net>
10526 * docs/libs/tmpl/gstcolorbalance.sgml:
10527 * docs/libs/tmpl/gstmixer.sgml:
10528 * docs/libs/tmpl/gstxoverlay.sgml:
10529 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
10530 * sys/ximage/ximagesink.h:
10531 * sys/xvimage/xvimagesink.h: More and more documentation.
10533 2005-11-26 Julien MOUTTE <julien@moutte.net>
10535 * docs/libs/gst-plugins-base-libs-docs.sgml:
10536 * docs/libs/gst-plugins-base-libs-sections.txt:
10537 * docs/libs/tmpl/gstcolorbalance.sgml:
10538 * docs/libs/tmpl/gstmixer.sgml:
10539 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
10542 2005-11-26 Julien MOUTTE <julien@moutte.net>
10544 * docs/plugins/Makefile.am:
10545 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10546 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10547 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
10549 2005-11-26 Julien MOUTTE <julien@moutte.net>
10551 * docs/plugins/Makefile.am:
10552 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
10553 * docs/plugins/gst-plugins-base-plugins-sections.txt:
10554 * docs/plugins/inspect/plugin-adder.xml:
10555 * docs/plugins/inspect/plugin-alsa.xml:
10556 * docs/plugins/inspect/plugin-audioconvert.xml:
10557 * docs/plugins/inspect/plugin-audiorate.xml:
10558 * docs/plugins/inspect/plugin-audioresample.xml:
10559 * docs/plugins/inspect/plugin-audiotestsrc.xml:
10560 * docs/plugins/inspect/plugin-decodebin.xml:
10561 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
10562 * docs/plugins/inspect/plugin-gnomevfs.xml:
10563 * docs/plugins/inspect/plugin-ogg.xml:
10564 * docs/plugins/inspect/plugin-playbin.xml:
10565 * docs/plugins/inspect/plugin-subparse.xml:
10566 * docs/plugins/inspect/plugin-tcp.xml:
10567 * docs/plugins/inspect/plugin-theora.xml:
10568 * docs/plugins/inspect/plugin-typefindfunctions.xml:
10569 * docs/plugins/inspect/plugin-video4linux.xml:
10570 * docs/plugins/inspect/plugin-videorate.xml:
10571 * docs/plugins/inspect/plugin-videoscale.xml:
10572 * docs/plugins/inspect/plugin-videotestsrc.xml:
10573 * docs/plugins/inspect/plugin-volume.xml:
10574 * docs/plugins/inspect/plugin-vorbis.xml:
10575 * docs/plugins/inspect/plugin-ximagesink.xml:
10576 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
10577 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
10579 2005-11-26 Edward Hervey <edward@fluendo.com>
10581 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
10582 Properly return GstFlowReturn from gst_pad_push in chain functions.
10584 2005-11-25 Michael Smith <msmith@fluendo.com>
10586 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
10587 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
10588 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10589 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10590 Handle various conditions better when we don't understand a stream.
10591 Removes a heap of CRITICALs on ogg streams containing unknown data.
10593 2005-11-24 Andy Wingo <wingo@pobox.com>
10595 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
10598 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10600 * configure.ac: back to HEAD
10602 === release 0.9.6 ===
10604 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10607 releasing 0.9.6, "White Eight"
10609 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10611 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
10612 * docs/plugins/inspect/plugin-sine.xml:
10613 remove sinesrc some more
10615 2005-11-23 Wim Taymans <wim@fluendo.com>
10617 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
10618 If we are reading too slowly, jump forward in the ringbuffer
10619 instead of blocking.
10621 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10623 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10624 (gst_visual_chain):
10625 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
10626 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
10627 (gst_videorate_chain):
10628 * gst/videotestsrc/gstvideotestsrc.c:
10629 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
10630 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
10631 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
10632 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
10633 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10634 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10635 Updates for API changes
10637 2005-11-23 Wim Taymans <wim@fluendo.com>
10639 * gst-libs/gst/audio/gstbaseaudiosink.c:
10640 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10641 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10642 Fix for calibration API change.
10644 2005-11-23 Michael Smith <msmith@fluendo.com>
10646 * gst-libs/gst/audio/multichannel.c:
10647 (gst_audio_get_channel_positions),
10648 (gst_audio_set_channel_positions),
10649 (gst_audio_set_structure_channel_positions_list),
10650 (gst_audio_fixate_channel_positions):
10651 Use gst_value_array_*() functions on value arrays, not
10652 gst_value_list_*().
10654 2005-11-23 Edward Hervey <edward@fluendo.com>
10657 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
10660 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10662 * check/Makefile.am:
10663 * check/elements/videotestsrc.c: (setup_videotestsrc),
10664 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
10666 add a test for videotestsrc
10668 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10670 * gst/sine/.cvsignore:
10671 * gst/sine/Makefile.am:
10672 * gst/sine/gstsinesrc.c:
10673 * gst/sine/gstsinesrc.h:
10674 * gst/sine/sinesrc.vcproj:
10675 and remove sinesrc from the repository. Closes #321446
10677 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10680 * gst-plugins-base.spec.in:
10681 remove sinesrc from the build
10683 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
10685 * check/Makefile.am:
10686 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
10687 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
10689 add a test for audiotestsrc, testing all waves. Even seems
10690 leak-free at first glance, nice job Stefan
10692 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10708 Translation string updates
10710 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10711 (gst_v4lsrc_set_caps):
10712 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10713 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10714 * sys/v4l/v4lsrc_calls.h:
10715 Improve v4lsrc, by making it work again.
10717 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
10719 * ext/libvisual/visual.c: (gst_visual_chain):
10720 Fix the fps calculations.
10722 * gst/ffmpegcolorspace/avcodec.h:
10723 Move structure element for clarity
10725 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
10726 * gst-libs/gst/interfaces/tunernorm.h:
10727 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
10728 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
10729 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
10730 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
10731 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
10732 (gst_v4lmjpegsrc_getcaps):
10733 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
10734 (gst_v4lsrc_set_caps):
10735 * sys/v4l/gstv4lsrc.h:
10736 * sys/v4l/v4l_calls.c: (gst_v4l_open):
10737 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
10738 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
10739 * sys/v4l/v4lsrc_calls.h:
10740 Fractional framerates...
10742 2005-11-22 Wim Taymans <wim@fluendo.com>
10744 * gst-libs/gst/audio/gstbaseaudiosink.c:
10745 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
10746 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10747 And we provide a clock by default, of course...
10749 2005-11-22 Wim Taymans <wim@fluendo.com>
10751 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
10752 This clock can be slaved to a master clock now.
10754 * gst-libs/gst/audio/gstbaseaudiosink.c:
10755 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10756 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
10757 (gst_base_audio_sink_set_clock),
10758 (gst_base_audio_sink_set_property),
10759 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
10760 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
10761 * gst-libs/gst/audio/gstbaseaudiosink.h:
10762 Handle slaving the internal clock to the clock selected in the
10764 Add property to make the basesink not provide a clock.
10766 * gst-libs/gst/rtp/gstbasertpdepayload.c:
10767 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
10768 (gst_base_rtp_depayload_wait):
10769 * gst-libs/gst/rtp/gstbasertpdepayload.h:
10770 We can use the clock in GstElement, no need to store it ourselves.
10772 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10774 * docs/libs/tmpl/gstaudio.sgml:
10776 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
10777 (gst_paranoia_endian_get_type):
10778 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
10779 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
10780 * gst/audiotestsrc/gstaudiotestsrc.c:
10781 (gst_audiostestsrc_wave_get_type):
10782 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
10783 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
10784 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
10785 (gst_sync_method_get_type), (gst_unit_type_get_type),
10786 (gst_client_status_get_type), (gst_multifdsink_class_init),
10787 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
10788 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
10789 (gst_multifdsink_get_property):
10790 * gst/tcp/gstmultifdsink.h:
10791 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
10792 * gst/videotestsrc/gstvideotestsrc.c:
10793 (gst_videotestsrc_pattern_get_type):
10794 remove deprecated properties
10795 fix up enums to correctly have short lowercase dashed nicks
10797 2005-11-22 Michael Smith <msmith@fluendo.com>
10799 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10800 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10803 2005-11-22 Michael Smith <msmith@fluendo.com>
10805 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
10806 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
10807 Use utility method for scaling clocktime for fractional framerates.
10809 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
10811 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
10812 (gst_visual_chain):
10813 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10814 * ext/theora/theoradec.c: (theora_handle_type_packet):
10815 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10816 (theora_enc_chain):
10817 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
10818 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
10819 * gst-libs/gst/video/video.h:
10820 * gst/ffmpegcolorspace/avcodec.h:
10821 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10822 (gst_ffmpeg_caps_to_pixfmt):
10823 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10824 (gst_ffmpegcsp_set_caps):
10825 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10826 (gst_videorate_setcaps), (gst_videorate_blank_data),
10827 (gst_videorate_chain):
10828 * gst/videotestsrc/gstvideotestsrc.c:
10829 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
10830 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
10831 (gst_videotestsrc_event), (gst_videotestsrc_create):
10832 * gst/videotestsrc/gstvideotestsrc.h:
10833 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
10834 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
10835 (gst_ximagesink_get_times), (gst_ximagesink_init):
10836 * sys/ximage/ximagesink.h:
10837 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10838 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10839 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
10840 * sys/xvimage/xvimagesink.h:
10841 Convert elements to use fractions for their framerate.
10842 V4L elements to come later tonight.
10844 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10846 * gst-libs/gst/audio/audio.c:
10847 * gst-libs/gst/audio/audio.h:
10848 remove some deprecated functions
10850 2005-11-22 Andy Wingo <wingo@pobox.com>
10852 * Update for gst_tag_setter API changes.
10854 2005-11-22 Andy Wingo <wingo@pobox.com>
10856 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
10857 (gst_ogg_demux_perform_seek):
10858 * ext/theora/theoradec.c (theora_dec_sink_event):
10859 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
10862 2005-11-22 Wim Taymans <wim@fluendo.com>
10864 * examples/seeking/seek.c: (main):
10865 Give higher priority to bus signals than the gtk events
10866 to fix a race condition in the segment looping.
10868 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10870 * ext/theora/Makefile.am:
10871 * ext/vorbis/Makefile.am:
10872 * gst-libs/gst/tag/Makefile.am:
10873 * gst-plugins-base.spec.in:
10874 Rename libgsttagedit to libgsttag (#322117).
10876 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10878 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
10879 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
10880 Call gst_x_overlay_prepare_xwindow_id() to give applications
10881 a final chance to set their own xwindow id before the video
10882 sink creates its own window.
10884 2005-11-22 Julien MOUTTE <julien@moutte.net>
10886 * sys/xvimage/xvimagesink.c:
10887 (gst_xvimagesink_navigation_send_event): Handle navigation
10888 events correcly with borders if applicable.
10890 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
10892 Patch by: Luca Ognibene
10894 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10895 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
10896 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10897 (gst_ffmpegcsp_caps_remove_format_info):
10898 * gst/ffmpegcolorspace/imgconvert.c:
10899 * gst/ffmpegcolorspace/imgconvert_template.h:
10900 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
10901 #318353); use gst_structure_has_name().
10903 2005-11-22 Julien MOUTTE <julien@moutte.net>
10905 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
10906 (gst_ximagesink_class_init): Add debug macros on functions.
10907 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10908 (gst_xvimagesink_xwindow_draw_borders),
10909 (gst_xvimagesink_xvimage_put),
10910 (gst_xvimagesink_xwindow_update_geometry),
10911 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
10912 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
10913 (gst_xvimagesink_xcontext_clear),
10914 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
10915 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
10916 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10917 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10918 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
10919 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10920 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
10921 expose while being PAUSED, out of data flow navigation events, etc..
10923 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
10925 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10926 * gst-libs/gst/audio/audio.h:
10927 fix prototype - wondering why the test worked regardless
10929 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
10931 * check/Makefile.am:
10932 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
10933 * gst-libs/gst/audio/audio.h:
10934 add a method that returns a proper GstClockTime
10936 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10938 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
10939 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
10940 * gst-libs/gst/interfaces/xoverlay.h:
10941 Remove everything having to do with the desired size; add
10942 gst_x_overlay_prepare_xwindow_id() function; remove the
10943 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
10944 post a message on the bus instead (#321816).
10946 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
10947 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
10948 (gst_xvimagesink_xoverlay_init):
10949 Remove desired size stuff (#321816).
10951 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
10953 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10954 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10955 (mpeg_video_type_find), (mpeg_video_stream_type_find):
10956 Terminate vararg functions with NULL instead of 0 to
10959 2005-11-21 Andy Wingo <wingo@pobox.com>
10961 patch by: Sebastien Cote <sebas642@yahoo.ca>
10963 * gst-libs/gst/rtp/gstrtpbuffer.h:
10964 * gst-libs/gst/rtp/gstrtpbuffer.c
10965 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
10967 2005-11-21 Andy Wingo <wingo@pobox.com>
10969 * gst/playback/gstplaybin.c (gen_audio_element)
10970 (gen_video_element): Use the new MISSING_PLUGIN core error
10971 category. Closes #320060.
10973 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
10974 * gst/videorate/gstvideorate.c (gst_videorate_event):
10975 * ext/theora/theoradec.c (theora_dec_sink_event):
10976 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
10979 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
10980 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
10981 stream lock changes.
10983 2005-11-21 Wim Taymans <wim@fluendo.com>
10985 * gst-libs/gst/audio/gstbaseaudiosink.c:
10986 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
10987 (gst_base_audio_sink_provide_clock),
10988 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
10989 (gst_base_audio_sink_change_state):
10990 * gst/audioresample/gstaudioresample.c:
10991 Segment update fix.
10993 2005-11-21 Andy Wingo <wingo@pobox.com>
10996 * *.c: Ran scripts/update-macros. Oh yes.
10998 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
11000 * sys/ximage/Makefile.am:
11001 * sys/ximage/ximage.c:
11002 Rename ximage plugin to ximagesink (#321426) (Don't forget to
11003 remove your old libgstximage.* manually if necessary).
11005 2005-11-21 Michael Smith <msmith@fluendo.com>
11007 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
11008 Minimal fix for bug #320200: set the min/max bitrate in the correct
11009 units. A better fix would be to upgrade to the RATEMANAGE2
11010 interface, rather than using the deprecated interface used here, but
11011 that would require an update in our libvorbis dependency (to 1.1),
11012 which is probably undesirable.
11014 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
11016 * ext/libvisual/visual.c: (get_buffer):
11017 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11018 (gst_base_audio_src_fixate):
11019 * gst/audioconvert/gstaudioconvert.c:
11020 (gst_audio_convert_fixate_caps):
11021 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
11022 * gst/audiotestsrc/gstaudiotestsrc.c:
11023 (gst_audiotestsrc_src_fixate):
11024 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
11025 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
11026 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
11027 * gst/videotestsrc/gstvideotestsrc.c:
11028 (gst_videotestsrc_src_fixate):
11029 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
11030 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
11031 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
11035 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
11037 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11038 (gst_riff_create_iavs_caps):
11039 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
11040 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
11041 (gst_riff_parse_info):
11042 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
11043 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
11044 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
11045 Fixes for GST_FOURCC_FORMAT API change.
11047 2005-11-21 Andy Wingo <wingo@pobox.com>
11049 patch by: Alessandro Dessina <alessandro nnva org>
11051 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
11052 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
11053 (gst_ogg_parse_chain):
11054 * ext/theora/theoraenc.c (theora_set_header_on_caps):
11055 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
11056 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
11057 gst_value_list calls on arrays. Fixes #321962.
11059 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
11061 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
11062 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
11063 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11064 * gst/adder/gstadder.c: (gst_adder_init),
11065 (gst_adder_request_new_pad), (gst_adder_collected),
11066 (gst_adder_change_state):
11067 Update for gst_collectpads_foo() to gst_collect_pads_foo()
11070 2005-11-21 Michael Smith <msmith@fluendo.com>
11072 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
11073 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
11074 Properly handle pad_push return values.
11076 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
11078 * gst-libs/gst/tag/Makefile.am:
11079 * gst-libs/gst/tag/gstvorbistag.c:
11080 (gst_tag_list_to_vorbiscomment_buffer):
11081 Remove obsolete vorbistag element and debug category.
11083 * gst/playback/gstplaybasebin.c: (check_queue):
11084 Don't divide by 0 when queue-threshold is 0.
11086 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
11087 Don't modify an existing pixel-aspect-ratio if we fail to read
11090 2005-11-20 Wim Taymans <wim@fluendo.com>
11092 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
11093 (gst_vorbisenc_push_packet):
11094 GST_PAD_IS_USABLE is gone, use the return value of
11095 the push or pad_alloc_buffer instead.
11097 2005-11-18 Julien MOUTTE <julien@moutte.net>
11099 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11100 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
11101 (gst_ximagesink_ximage_destroy),
11102 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
11103 (gst_ximagesink_xwindow_new),
11104 (gst_ximagesink_xwindow_update_geometry),
11105 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
11106 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
11107 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
11108 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
11109 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
11110 (gst_ximagesink_navigation_send_event),
11111 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
11112 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
11113 (gst_ximagesink_finalize), (gst_ximagesink_init),
11114 (gst_ximagesink_class_init):
11115 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
11116 This new version brings correct software scaling, non flickering
11117 window while resizing, pixel aspect ratio handling, usage of
11118 hardware buffer pools, out of data flow event thread for
11119 navigation and handling of expose events even when being PAUSED,
11120 a new property to keep video aspect ratio when resizing, etc...
11122 2005-11-18 Julien MOUTTE <julien@moutte.net>
11124 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
11125 (gst_videoscale_fixate_caps): Introduce back caps fixate with
11128 2005-11-18 Edward Hervey <bilboed@dvdsrc.fluendo.com>
11130 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
11131 Unsetting IS_SINK flag from the fakesink, so decodebin
11132 never behaves as a sink.
11134 2005-11-17 Wim Taymans <wim@fluendo.com>
11136 * gst-libs/gst/audio/gstbaseaudiosrc.c:
11137 (gst_base_audio_src_change_state):
11138 Fix the audiosrc base class again, we did not unflush.
11140 2005-11-17 Julien MOUTTE <julien@moutte.net>
11142 * examples/seeking/seek.c: (make_dv_pipeline),
11143 (make_vorbis_theora_pipeline), (make_avi_pipeline),
11144 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
11145 to ogg/vorbis/theora pipeline.
11147 2005-11-17 Wim Taymans <wim@fluendo.com>
11149 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
11150 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11151 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11152 Fix EOS on multiple streams.
11155 2005-11-16 Wim Taymans <wim@fluendo.com>
11157 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
11158 (gst_ogg_demux_perform_seek):
11159 Segment done must include stream time.
11161 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
11162 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
11163 (gst_ogg_mux_change_state):
11164 Fix ogg muxer again.
11166 2005-11-16 Wim Taymans <wim@fluendo.com>
11168 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
11171 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11173 * ext/libvisual/visual.c: (gst_visual_init):
11174 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
11175 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
11176 (gst_ogg_parse_chain):
11177 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11178 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
11179 * ext/theora/theoradec.c: (gst_theora_dec_init):
11180 * ext/theora/theoraenc.c: (gst_theora_enc_init):
11181 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
11182 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
11183 * gst/adder/gstadder.c: (gst_adder_class_init),
11184 (gst_adder_dispose):
11185 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
11186 * gst/subparse/gstsubparse.c: (gst_subparse_init):
11187 * gst/videorate/gstvideorate.c: (gst_videorate_init):
11188 Fix a whole set of pad template leaks
11190 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11192 * check/generic/states.c: (GST_START_TEST):
11193 fix the test so that it only checks for elements that are part of
11196 2005-11-16 Michael Smith <msmith@fluendo.com>
11198 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
11199 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
11200 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11201 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11202 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
11203 (gst_ogg_mux_change_state):
11204 Fix leaking collectpads.
11206 2005-11-16 Edward Hervey <edward@fluendo.com>
11208 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
11209 (gst_videorate_event), (gst_videorate_chain):
11210 Handle segment seeks
11212 2005-11-16 Wim Taymans <wim@fluendo.com>
11214 * gst-libs/gst/audio/gstbaseaudiosink.c:
11215 (gst_base_audio_sink_provide_clock),
11216 (gst_base_audio_sink_change_state):
11217 Set ringbuffer to non-flushing when going to PAUSED, set to
11218 flushing again when going to READY.
11220 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
11221 (gst_ring_buffer_stop):
11222 Start in flushing mode by default.
11223 Don't set flushing in the _stop method, let the app call
11226 2005-11-16 Julien MOUTTE <julien@moutte.net>
11228 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
11229 * gst-libs/gst/video/videosink.h: Add helper function needed
11232 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
11234 * gst/videoscale/gstvideoscale.c:
11235 (gst_videoscale_handle_src_event):
11236 Don't leak reference to pad parent.
11238 2005-11-16 Wim Taymans <wim@fluendo.com>
11240 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
11241 Set ringbuffer to flushing when stopping so that we don't
11242 block on wait_segment anymore and livelock.
11244 2005-11-16 Wim Taymans <wim@fluendo.com>
11246 * examples/seeking/seek.c: (send_event), (do_seek),
11247 (loop_toggle_cb), (segment_done), (main):
11248 Added looping checkbox.
11250 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
11252 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11253 (gst_ogg_demux_init):
11254 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11255 (gst_vorbis_dec_init):
11256 revert unrefs, they don't pass make check
11258 2005-11-15 Johan Dahlin <johan@gnome.org>
11260 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11261 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
11262 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
11263 (gst_vorbis_dec_init):
11264 Fix pad template leaks.
11266 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
11268 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
11269 Make state change function thread safe.
11271 2005-11-15 Edward Hervey <edward@fluendo.com>
11273 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
11274 (gst_ogg_demux_class_init):
11275 Implement GstElement::send_event, so we can send seek events
11278 2005-11-14 Julien MOUTTE <julien@moutte.net>
11280 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
11281 Discovered how to take away flickering while resizing the
11282 window. Please don't put that in ximagesink, refactoring in
11285 2005-11-14 Michael Smith <msmith@fluendo.com>
11287 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
11288 (gst_multifdsink_render):
11289 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
11291 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
11293 * gst/playback/gstplaybin.c: (gen_audio_element):
11294 Use autoaudiosink, it tends to be more widely available than
11297 2005-11-14 Andy Wingo <wingo@pobox.com>
11299 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
11300 as well if it is available. Fixes #316442.
11302 2005-11-14 Michael Smith <msmith@fluendo.com>
11304 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
11305 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
11306 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11307 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11308 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
11309 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
11310 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
11311 (gst_vorbisenc_change_state):
11312 Fix a small memory leak in vorbisenc.
11313 Fix large memory leaks in oggmux, also fix lots of state change
11316 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
11318 * gst/videotestsrc/gstvideotestsrc.c:
11319 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
11320 (gst_videotestsrc_src_fixate):
11321 move fixation to a fixate function
11322 remove negotiate function, basesrc's is good enough
11323 fixes a bug for check when using the element alone
11325 2005-11-13 Edward Hervey <edward@fluendo.com>
11327 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
11328 (key_toggle_cb), (main):
11329 Added checkboxes for adding/removing the accurate and key_unit seek
11332 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11334 * configure.ac: back to HEAD
11336 === release 0.9.5 ===
11338 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
11341 releasing 0.9.5, "No No Kia"
11343 2005-11-11 Edward Hervey <edward@fluendo.com>
11345 * examples/seeking/seek.c: (make_parselaunch_pipeline):
11346 Added parse-launch syntax seeking mode for the seeking example.
11347 This should help stress-test even more cases.
11348 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
11350 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11352 * sys/xvimage/xvimagesink.c:
11353 (gst_xvimagesink_navigation_send_event):
11354 Check whether peer pad exists before sending navigation events
11357 2005-11-11 Michael Smith <msmith@fluendo.com>
11359 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
11360 (gst_vorbisenc_buffer_from_packet):
11361 * ext/vorbis/vorbisenc.h:
11362 Set duration on encoded buffers. This allows oggmux's
11363 max_page_delay parameter to actually work.
11365 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
11367 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11368 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11369 (gst_ffmpegcsp_avpicture_fill):
11370 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11371 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
11372 Make palettes work again (see #132341). Use our own macros
11375 2005-11-10 Andy Wingo <wingo@pobox.com>
11377 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
11380 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11382 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11383 (gst_ffmpegcsp_transform_caps):
11384 Prefer passthrough in transform_caps
11386 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11388 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11389 check for ALSA errors properly, instead of relying on ALSA's
11390 error strings to serve to the user.
11392 2005-11-10 Wim Taymans <wim@fluendo.com>
11394 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
11395 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
11396 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
11397 Modernise the seek code.
11399 2005-11-10 Michael Smith <msmith@fluendo.com>
11401 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
11402 (setup_substreams), (set_active_source):
11403 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
11404 trying to go to NULL if we failed to read a file.
11406 2005-11-10 Wim Taymans <wim@fluendo.com>
11408 * gst/audiotestsrc/gstaudiotestsrc.c:
11409 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
11410 (gst_audiotestsrc_create):
11411 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11412 (gst_sinesrc_get_times), (gst_sinesrc_create):
11413 * gst/videotestsrc/gstvideotestsrc.c:
11414 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
11415 (gst_videotestsrc_create):
11416 The base class can now sync for us.
11418 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
11420 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
11421 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
11422 name=source autoprobe=false autoprobe-fps=false copy-mode=1
11423 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
11424 format=(fourcc)I420" ! xvimagesink
11426 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
11428 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
11429 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
11430 (gst_sinesrc_newsegment):
11431 Send newsegment event in TIME format, set duration if
11432 num-buffers is set, fix duration querying.
11434 2005-11-10 Michael Smith <msmith@fluendo.com>
11436 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11437 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
11438 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
11439 (gst_ogg_mux_collected):
11440 Fix EOS handling, partially. Now forwarding an EOS event once we have
11441 EOS on all pads works correctly. However, we still don't properly set
11442 EOS on the actual ogg stream pages.
11444 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
11446 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
11447 Set elements to NULL state before disposing of them.
11449 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
11451 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11453 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11454 (gst_base_rtp_depayload_init),
11455 (gst_base_rtp_depayload_set_gst_timestamp):
11456 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11457 We need to send a newsegment event for each instance, not
11458 just for the first instance of this class (get rid of
11459 static variable in function). (#321011).
11461 2005-11-08 Michael Smith <msmith@fluendo.com>
11463 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
11464 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
11465 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
11466 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
11467 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
11468 This makes us mux things correctly according to the ogg muxing
11469 rules. Still not handling EOS correctly right now, though.
11471 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11473 * gst/audioconvert/gstaudioconvert.c:
11476 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
11478 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11479 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
11480 Initialise segment_stop to GST_CLOCK_TIME_NONE when
11481 creating a new chain; should fix live streaming. Also
11482 add more debug output and fix a typo.
11484 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
11486 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11488 * gst/volume/gstvolume.c: (volume_set_caps):
11489 Fix compilation on Solaris with Forte. (#320923)
11491 2005-11-08 Wim Taymans <wim@fluendo.com>
11493 * gst-libs/gst/audio/gstbaseaudiosink.c:
11494 (gst_base_audio_sink_render):
11495 No need to do a typecheck.
11497 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
11499 * ext/alsa/gstalsa.h:
11500 We register a debug category, so let's use it.
11502 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11504 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11505 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
11506 Fixed a small problem.
11508 2005-11-04 Wim Taymans <wim@fluendo.com>
11510 * examples/seeking/Makefile.am:
11511 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
11512 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
11513 (make_playerbin_pipeline), (format_value), (update_scale),
11514 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
11515 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
11516 (print_usage), (main):
11517 Added app for playback speed testing.
11519 * examples/seeking/seek.c: (dynamic_link),
11520 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
11521 (make_mpeg_pipeline), (do_seek), (set_update_scale),
11522 (message_received), (main):
11523 Updated seek example.
11525 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
11527 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11528 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11529 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
11530 (gst_base_rtp_depayload_set_clock):
11531 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11532 Don't sleep on the bench (system clock) when you have a nice
11533 comfortable bed (Gstreamer clock) to sleep on.
11535 2005-11-03 Wim Taymans <wim@fluendo.com>
11537 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11538 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
11539 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
11540 Handle the case where a pad_block failed.
11542 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
11544 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11546 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11547 (gst_base_rtp_depayload_add_to_queue),
11548 (gst_base_rtp_depayload_push),
11549 (gst_base_rtp_depayload_set_gst_timestamp),
11550 (gst_base_rtp_depayload_queue_release):
11551 Fixes some bugs in the depayloader's queuing/de-queueing code.
11553 2005-10-31 Michael Smith <msmith@fluendo.com>
11555 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11556 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
11557 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
11558 Patch from Alessandro Decina <alessandro@nnva.org>.
11559 Make oggdemux only find the final time in a chain, not per-pad,
11560 since the per-pad information can be very expensive to locate, and
11561 it isn't used anywhere. This makes reading a file containing
11562 OggSkeleton reasonably fast.
11563 Also, make chain finding work when there are logical bitstreams that
11564 can't be decoded. Fixes #319110.
11566 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11568 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11569 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
11570 (gst_base_rtp_depayload_chain),
11571 (gst_base_rtp_depayload_add_to_queue),
11572 (gst_base_rtp_depayload_push),
11573 (gst_base_rtp_depayload_set_gst_timestamp),
11574 (gst_base_rtp_depayload_queue_release),
11575 (gst_base_rtp_depayload_start_thread),
11576 (gst_base_rtp_depayload_set_property),
11577 (gst_base_rtp_depayload_get_property):
11578 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11579 Some random fixes, to fullfill the desires of thomas.
11581 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11583 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11584 (gst_base_rtp_depayload_add_to_queue),
11585 (gst_base_rtp_depayload_push):
11586 Fixed the queueing algorithm.
11588 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
11590 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11591 (gst_base_rtp_depayload_push):
11594 2005-10-31 Wim Taymans <wim@fluendo.com>
11596 * gst-libs/gst/audio/gstringbuffer.h:
11599 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11600 (gst_ffmpeg_caps_to_pixfmt):
11601 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11602 (gst_ffmpegcsp_set_caps):
11603 Some more comments.
11604 Handle missing required caps fields better.
11606 2005-10-31 Wim Taymans <wim@fluendo.com>
11608 * gst-libs/gst/audio/gstbaseaudiosink.c:
11609 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
11610 (gst_base_audio_sink_render):
11611 * gst-libs/gst/audio/gstringbuffer.c:
11612 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11613 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
11614 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
11615 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
11616 (gst_ring_buffer_read):
11617 * gst-libs/gst/audio/gstringbuffer.h:
11618 Add flushing mode to the ringbuffer so that it in all cases does
11619 not try to handle more audio. This makes sure it does not try to
11620 block anymore when flushing and fixes a livelock.
11622 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
11624 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
11625 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
11626 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
11627 Explicitly check for -1 values before doing a conversion
11628 and always map them to -1. (#315545)
11630 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
11632 * gst/playback/gstplaybin.c: (gen_video_element):
11633 first try autovideosink, then xvimagesink, then error out
11635 add translatable file
11650 update translations
11652 2005-10-27 Philippe Khalaf <burger at speedy dot org>
11654 * gst-libs/gst/rtp/gstbasedepayload.c:
11655 * gst-libs/gst/rtp/gstbasedepayload.h:
11658 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
11660 * gst/playback/.cvsignore:
11661 * gst/playback/decodetest.c:
11662 * gst/playback/test3.c:
11663 Port these two tests as well.
11665 2005-10-27 Wim Taymans <wim@fluendo.com>
11667 * ext/theora/theoradec.c: (theora_dec_src_query),
11668 (theora_dec_sink_event):
11669 * ext/theora/theoraenc.c: (theora_enc_sink_event),
11670 (theora_enc_change_state):
11671 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11672 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
11673 Take proper locks when handling events.
11675 2005-10-27 Wim Taymans <wim@fluendo.com>
11677 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
11678 (gst_adder_change_state):
11679 Fix timestamps and fix deadlock when stopping the collectpads.
11681 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
11683 * gst-libs/gst/rtp/gstrtpbuffer.h:
11684 Declaring the payload types as strings too so that they can be used
11685 in the padtemplate inialization.
11687 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
11689 reviewed by: Zeeshan Ali <zeenix@gmail.com>
11691 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11692 (gst_base_rtp_depayload_class_init):
11693 Fixes a small but nasty bug. The derived elements no longer segfaults
11696 2005-10-26 Michael Smith <msmith@fluendo.com>
11698 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
11699 When clearing an audioconvert context, set tmpbufsize to zero, so
11700 we'll allocate it again later if required.
11701 This fixes audioconvert re-negotiating formats, which previously
11702 segfaulted with a NULL destination buffer.
11704 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11706 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11707 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
11708 (gst_base_rtp_depayload_set_gst_timestamp),
11709 (gst_base_rtp_depayload_queue_release):
11710 Fixed a smalll memleak.
11712 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
11713 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11714 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
11715 (gst_base_rtp_depayload_finalize),
11716 (gst_base_rtp_depayload_setcaps),
11717 (gst_base_rtp_depayload_add_to_queue),
11718 (gst_base_rtp_depayload_push),
11719 (gst_base_rtp_depayload_set_gst_timestamp),
11720 (gst_base_rtp_depayload_queue_release),
11721 (gst_base_rtp_depayload_thread),
11722 (gst_base_rtp_depayload_change_state):
11723 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11724 Changed the C++ comments to C comments
11726 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
11728 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
11729 * gst/tcp/gsttcpclientsrc.h:
11730 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
11731 * gst/tcp/gsttcpserversrc.h:
11732 Remove unused 'curoffset' structure member.
11734 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
11736 * gst-libs/gst/rtp/gstbasertpdepayload.c:
11737 (gst_base_rtp_depayload_base_init),
11738 (gst_base_rtp_depayload_finalize):
11739 * gst-libs/gst/rtp/gstbasertpdepayload.h:
11740 * gst-libs/gst/rtp/gstbasertppayload.h:
11741 The pad-template on the sinkpad should be set by the derived classes.
11742 Also added some useful macros.
11744 2005-10-24 Wim Taymans <wim@fluendo.com>
11746 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
11747 Correctly flush decoder samples even if we could not
11748 copy them to an output buffer. Fixes #319618.
11750 2005-10-24 Julien MOUTTE <julien@moutte.net>
11752 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
11753 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
11754 the caps against our xcontext caps.
11756 2005-10-24 Wim Taymans <wim@fluendo.com>
11758 * gst-libs/gst/audio/gstbaseaudiosink.c:
11759 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11761 Use sync property from baseclass to disable sync.
11763 2005-10-24 Wim Taymans <wim@fluendo.com>
11765 * gst-libs/gst/audio/gstbaseaudiosink.c:
11766 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
11767 Buffers with no timestamps get aligned with previous buffers or
11768 on underrun, played ASAP.
11770 2005-10-24 Julien MOUTTE <julien@moutte.net>
11772 * gst-libs/gst/video/video.h:
11773 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11774 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
11775 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
11776 here comes my change on caps for framerate and geometry range.
11777 We are now accepting 1 to MAXINT for width and height, and from
11778 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
11779 to be blended correctly in videomixer.
11781 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
11786 === release 0.9.4 ===
11788 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11793 releasing 0.9.4, "Velociraptor"
11795 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
11797 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
11801 2005-10-21 Wim Taymans <wim@fluendo.com>
11803 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11804 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
11805 (pad_blocked), (close_pad_link), (new_pad):
11806 Don't try to remove elements twice.
11808 2005-10-21 Wim Taymans <wim@fluendo.com>
11810 * ext/theora/theoradec.c: (theora_dec_src_query),
11811 (theora_dec_sink_event):
11812 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11813 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11814 (vorbis_handle_data_packet):
11815 * ext/vorbis/vorbisdec.h:
11818 * gst-libs/gst/audio/gstbaseaudiosink.c:
11819 (gst_base_audio_sink_render):
11820 Don't try to sync on buffers without a timestamp.
11822 2005-10-21 Wim Taymans <wim@fluendo.com>
11824 * ext/theora/theoradec.c: (theora_dec_src_query),
11825 (theora_dec_sink_event):
11826 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11827 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
11828 (vorbis_handle_data_packet):
11829 * ext/vorbis/vorbisdec.h:
11832 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11834 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
11835 (gst_vorbisenc_src_query):
11836 Implement position and duration queries.
11838 * gst/playback/test3.c: (update_scale), (main):
11839 Fix for async state changes and print nicer output.
11841 2005-10-20 Wim Taymans <wim@fluendo.com>
11843 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11844 (dump_element_stats), (main):
11845 * gst/playback/test6.c: (main):
11848 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11850 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11851 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11852 Don't use functions for position queries when handling
11855 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
11857 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11858 (vorbis_handle_data_packet), (vorbis_dec_chain),
11859 (vorbis_dec_change_state):
11860 * ext/vorbis/vorbisdec.h:
11861 Vorbis streams can be embedded in other container formats
11862 than ogg, container formats where the demuxer might set
11863 timestamps on encoded vorbis buffers instead of those silly
11864 granulepos thingies. In short: make vorbisdec handle
11865 timestamps on incoming buffers as well.
11867 2005-10-20 Wim Taymans <wim@fluendo.com>
11869 * gst/playback/gstplaybasebin.c: (group_destroy),
11870 (gst_play_base_bin_change_state):
11872 Handle case where playbasebin is now ASYNC because
11875 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11877 * gst/audioconvert/Makefile.am:
11878 * gst/audioconvert/bufferframesconvert.c:
11879 * gst/audioconvert/plugin.c: (plugin_init):
11880 * gst/audioconvert/plugin.h:
11881 And bye bye buffer-frames-convert
11883 2005-10-19 Wim Taymans <wim@fluendo.com>
11885 * check/elements/audioconvert.c:
11886 * docs/libs/tmpl/gstaudio.sgml:
11887 * docs/libs/tmpl/gstcolorbalance.sgml:
11888 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11889 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
11890 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11891 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
11892 * gst-libs/gst/audio/audio.h:
11893 * gst/audioconvert/audioconvert.h:
11894 * gst/audioconvert/gstaudioconvert.c:
11895 (gst_audio_convert_parse_caps):
11896 * gst/volume/gstvolume.c:
11897 Bye bye buffer-frames.
11899 2005-10-19 Wim Taymans <wim@fluendo.com>
11901 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
11902 (query_positions_elems), (query_positions_pads), (update_scale),
11903 (do_seek), (set_update_scale), (message_received), (main):
11904 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
11905 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
11906 (gst_ogg_demux_loop):
11907 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
11908 * ext/theora/theoradec.c: (theora_dec_src_query),
11909 (theora_dec_sink_event):
11910 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11911 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
11912 * gst/adder/gstadder.c: (gst_adder_query):
11913 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
11914 * gst/playback/test3.c: (update_scale):
11915 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11916 (dump_element_stats), (main):
11917 * gst/playback/test6.c: (main):
11918 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
11921 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
11923 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
11924 (xml_check_first_element), (xml_type_find), (smil_type_find),
11926 Add typefinding for SMIL and for generic XML. Based on patch by
11927 Akos Maroy (#308663).
11929 2005-10-18 Wim Taymans <wim@fluendo.com>
11931 * gst/playback/Makefile.am:
11932 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11933 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
11934 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
11935 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
11936 (gst_decode_bin_change_state):
11937 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11938 (gst_play_bin_send_event_to_sink):
11939 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
11940 (dump_element_stats), (main):
11941 * gst/playback/test6.c: (main):
11942 Make playbin async, it'll commit state to paused when all streams
11945 Added test6.c to show async behaviour.
11947 2005-10-18 Wim Taymans <wim@fluendo.com>
11949 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
11950 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
11951 Fix for segment-start/stop API change.
11953 2005-10-18 Wim Taymans <wim@fluendo.com>
11955 * check/Makefile.am:
11956 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
11958 Add future test for clock selection.
11960 2005-10-18 Wim Taymans <wim@fluendo.com>
11962 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
11963 (gst_alsasink_close):
11964 Set handle to NULL.
11966 * gst-libs/gst/audio/gstringbuffer.c:
11967 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
11968 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
11969 (gst_ring_buffer_start), (gst_ring_buffer_pause),
11970 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
11971 (gst_ring_buffer_read):
11974 2005-10-17 Stefan Kost <ensonic@users.sf.net>
11976 * gst/audiotestsrc/Makefile.am:
11977 * gst/sine/Makefile.am:
11978 * gst/volume/Makefile.am:
11979 fix broken build of controllerized plugins
11981 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11983 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
11985 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
11986 (gst_riff_create_video_template_caps):
11987 Add support for Indeo-3 (IV32).
11989 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11994 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
11996 * gst-libs/gst/video/video.c: (gst_video_get_size):
11997 * gst/audiotestsrc/gstaudiotestsrc.c:
12000 2005-10-17 Andy Wingo <wingo@pobox.com>
12002 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
12003 with the collectpads change.
12004 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
12006 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
12008 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
12010 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
12011 alloc_buffer flow return to callers.
12012 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
12013 change. Fix some memleaks in theoraenc.
12015 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
12016 in strange circumstance.
12018 2005-10-17 Julien MOUTTE <julien@moutte.net>
12020 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12021 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
12022 from caps, let's use the caps...
12024 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
12027 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
12029 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
12031 * gst-libs/gst/interfaces/Makefile.am:
12034 2005-10-16 Andy Wingo <wingo@pobox.com>
12036 * gst/playback/gstdecodebin.c
12037 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
12039 (try_to_link_1): Increase kraziness level.
12041 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
12044 restructure like the core one
12045 * gst-libs/gst/audio/Makefile.am:
12046 * gst-libs/gst/interfaces/Makefile.am:
12047 * gst-libs/gst/net/Makefile.am:
12048 * gst-libs/gst/riff/Makefile.am:
12049 * gst-libs/gst/rtp/Makefile.am:
12050 * gst-libs/gst/tag/Makefile.am:
12051 * gst-libs/gst/video/Makefile.am:
12052 use correct linker flags, now the libs are properly versioned
12053 * check/elements/audioconvert.c: (verify_convert):
12054 * ext/alsa/gstalsaplugin.c:
12055 * ext/cdparanoia/gstcdparanoia.c:
12056 * ext/gnomevfs/gstgnomevfs.c:
12057 * ext/libvisual/visual.c:
12058 * ext/ogg/gstogg.c:
12059 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
12060 * ext/theora/theora.c:
12061 * ext/vorbis/vorbis.c:
12062 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
12063 * gst-libs/gst/tag/gsttagediting.c:
12064 * gst-libs/gst/video/video.c:
12065 * gst/adder/gstadder.c:
12066 * gst/audioconvert/plugin.c:
12067 * gst/audiorate/gstaudiorate.c:
12068 * gst/audioresample/gstaudioresample.c:
12069 * gst/audioresample/resample_ref.c: (resample_scale_ref):
12070 * gst/audioscale/gstaudioscale.c:
12071 * gst/audioscale/resample.c:
12072 * gst/audiotestsrc/gstaudiotestsrc.c:
12073 * gst/ffmpegcolorspace/gstffmpeg.c:
12074 * gst/playback/gstdecodebin.c: (close_pad_link):
12075 * gst/playback/gstplaybin.c: (gen_video_element),
12076 (gen_audio_element):
12077 * gst/sine/gstsinesrc.c:
12078 * gst/subparse/gstsubparse.c:
12079 * gst/tags/gsttagediting.c:
12080 * gst/tcp/gsttcpplugin.c:
12081 * gst/typefind/gsttypefindfunctions.c:
12082 * gst/videorate/gstvideorate.c:
12083 * gst/videoscale/gstvideoscale.c:
12084 * gst/videotestsrc/gstvideotestsrc.c:
12085 * gst/volume/gstvolume.c:
12086 * sys/v4l/gstv4l.c:
12087 * sys/ximage/ximage.c:
12088 * sys/xvimage/xvimagesink.c:
12091 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
12093 * ext/vorbis/vorbisenc.c:
12094 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
12095 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
12096 (gst_tag_to_vorbis_comments):
12097 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
12099 2005-10-13 Stefan Kost <ensonic@users.sf.net>
12101 * examples/stats/mp2ogg.c:
12102 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12105 2005-10-13 Michael Smith <msmith@fluendo.com>
12107 * ext/ogg/gstoggmux.c:
12108 Use magic glib macros to define constants as 64 bit, to ensure
12109 appropriate vararg passing.
12111 2005-10-13 Michael Smith <msmith@fluendo.com>
12113 * ext/ogg/gstoggmux.c:
12114 * gst/audioconvert/audioconvert.c: (float):
12115 Don't use LL suffix, as it's not portable, and neither of these
12116 uses required it anyway.
12118 2005-10-12 Stefan Kost <ensonic@users.sf.net>
12120 * examples/indexing/indexmpeg.c: (main):
12121 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
12122 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
12123 (cdparanoia_convert), (cdparanoia_query):
12124 * ext/cdparanoia/gstcdparanoia.h:
12125 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
12126 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
12127 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
12128 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
12129 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
12130 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
12131 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
12132 (gst_multifdsink_render), (gst_multifdsink_start),
12133 (gst_multifdsink_stop):
12134 * gst/tcp/gstmultifdsink.h:
12135 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
12136 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
12137 (gst_tcpclientsink_stop):
12138 * gst/tcp/gsttcpclientsink.h:
12139 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
12140 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
12141 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
12142 * gst/tcp/gsttcpclientsrc.h:
12143 * gst/tcp/gsttcpserversink.h:
12144 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
12145 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
12146 (gst_tcpserversrc_stop):
12147 * gst/tcp/gsttcpserversrc.h:
12148 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
12149 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
12150 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
12151 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
12152 moved bitshift from macro to enum definition
12154 2005-10-12 Wim Taymans <wim@fluendo.com>
12156 * examples/seeking/Makefile.am:
12159 2005-10-12 Wim Taymans <wim@fluendo.com>
12161 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12162 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12163 Don't assert on normal stuff.
12165 * gst/playback/gstplaybin.c: (do_playbin_seek):
12168 2005-10-12 Wim Taymans <wim@fluendo.com>
12170 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12171 * examples/seeking/Makefile.am:
12172 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
12173 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12174 (do_seek), (set_update_scale), (message_received), (main):
12175 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12176 (gst_ring_buffer_read), (gst_ring_buffer_clear):
12177 Update for _get_state() API change.
12179 2005-10-11 Wim Taymans <wim@fluendo.com>
12181 * gst-libs/gst/audio/gstbaseaudiosink.c:
12182 (gst_base_audio_sink_render):
12183 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12184 (gst_base_audio_src_create):
12185 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
12186 (gst_ring_buffer_read):
12188 Commit and read from ringbuffer in samples rather than bytes.
12190 2005-10-11 Wim Taymans <wim@fluendo.com>
12192 * gst-libs/gst/audio/gstbaseaudiosink.c:
12193 (gst_base_audio_sink_render):
12194 Respect segment rate and accum when scheduling samples.
12196 2005-10-11 Julien MOUTTE <julien@moutte.net>
12198 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
12199 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
12200 EOS correctly, that needs more work.
12202 2005-10-11 Wim Taymans <wim@fluendo.com>
12204 * check/generic/states.c: (GST_START_TEST):
12205 remove old property.
12207 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
12208 (gst_ogg_demux_perform_seek):
12209 * ext/theora/theoradec.c: (theora_dec_sink_event):
12210 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
12211 (vorbis_handle_data_packet):
12212 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12213 (gst_base_rtp_depayload_set_gst_timestamp):
12214 * gst/videorate/gstvideorate.c: (gst_videorate_event):
12215 Update for newsegment API change.
12217 2005-10-11 Michael Smith <msmith@fluendo.com>
12219 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
12220 (do_playbin_seek), (gst_play_bin_send_event):
12221 Override send_event differently, so that we can takes bits of
12222 functionality from GstPipeline (special handling for seeks,
12223 including pausing/resuming, and resetting stream time) and still get
12224 the appropriate behaviour of only forwarding event to a single sink,
12225 rather than all of them.
12226 Unfortunately requires a lot of code duplication, but the
12227 alternatives are equally ugly in the end.
12229 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
12231 * check/elements/audioconvert.c: (setup_audioconvert),
12232 (cleanup_audioconvert), (get_int_caps), (verify_convert),
12233 (GST_START_TEST), (audioconvert_suite):
12234 clean up tests a little, fix some leaks.
12236 2005-10-10 Wim Taymans <wim@fluendo.com>
12238 * ext/alsa/gstalsasink.c:
12239 Also allow unsigned int.
12241 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12242 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12245 2005-10-10 Wim Taymans <wim@fluendo.com>
12247 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12248 Small update, use API as stated in design docs.
12250 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
12251 (update_scale), (do_seek), (seek_cb), (set_update_scale),
12252 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
12253 (message_received), (main):
12254 Updated seek example for GOption. Some usability improvements.
12256 2005-10-10 Wim Taymans <wim@fluendo.com>
12258 * gst/audioconvert/audioconvert.h:
12259 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
12260 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
12261 Alloc temp storage somewhere else where we can do it more
12264 2005-10-10 Wim Taymans <wim@fluendo.com>
12266 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
12267 (gst_tcpserversrc_start):
12268 Don't block in accept while doing the state change, move
12269 to poll and make cancellable.
12271 2005-10-09 Philippe Khalaf <burger@speedy.org>
12273 * gst-libs/gst/rtp/rtpbasedepayload.c:
12274 Set timestamp and add queue delay to timestamp
12275 * gst-libs/gst/rtp/rtpbuffer.h:
12276 Set correct payload type for h263
12278 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12280 * gst/audiotestsrc/gstaudiotestsrc.c:
12281 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
12282 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
12283 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
12284 (gst_audiotestsrc_create_triangle),
12285 (gst_audiotestsrc_create_silence),
12286 (gst_audiotestsrc_create_white_noise),
12287 (gst_audiotestsrc_init_pink_noise),
12288 (gst_audiotestsrc_generate_pink_noise_value),
12289 (gst_audiotestsrc_create_pink_noise),
12290 (gst_audiotestsrc_change_wave):
12291 * gst/audiotestsrc/gstaudiotestsrc.h:
12292 fixed typo, added pink noise
12294 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12296 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
12298 Add wavpack and spc typefind functions from 0.8 branch.
12300 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12302 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
12303 (ar_type_find), (msdos_type_find), (plugin_init):
12304 Add typefind functions for tar archives, ar archives,
12305 RAR archives, and msdos-executables (dlls, exe, etc.).
12306 Some of those would be wrongly identified as mpeg
12307 streams of some sort before (#315550).
12309 2005-10-09 Stefan Kost <ensonic@users.sf.net>
12312 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12313 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12314 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
12315 * gst/audiotestsrc/Makefile.am:
12316 * gst/audiotestsrc/gstaudiotestsrc.c:
12317 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
12318 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
12319 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
12320 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
12321 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
12322 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
12323 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
12324 (gst_audiotestsrc_create_silence),
12325 (gst_audiotestsrc_create_white_noise),
12326 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
12327 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
12328 (gst_audiotestsrc_start), (plugin_init):
12329 * gst/audiotestsrc/gstaudiotestsrc.h:
12330 add new plugin and element
12331 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
12334 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
12336 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
12337 (gst_adder_init), (gst_adder_request_new_pad),
12338 (gst_adder_change_state):
12339 Add query function to source pad, so adder reports the correct
12340 time/sample position when queried (#315457); fix state change
12341 function; use GST_DEBUG_FUNCPTR() for pad functions.
12343 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
12345 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
12346 Fix leaks in typefind registration
12347 Clean up the gratuitous commenting and whitespacing a little
12349 2005-10-08 Wim Taymans <wim@fluendo.com>
12351 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
12352 Only actually wait for the thread to be stopped if it's
12355 2005-10-08 Wim Taymans <wim@fluendo.com>
12357 * gst-libs/gst/audio/gstbaseaudiosink.c:
12358 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
12359 If we receive EOS we can start playback of what we had.
12361 2005-10-08 Wim Taymans <wim@fluendo.com>
12363 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
12364 (gst_multifdsink_finalize), (multifdsink_hash_remove),
12365 (gst_multifdsink_stop):
12366 Fix crasher when going to NULL multiple times.
12368 2005-10-06 Wim Taymans <wim@fluendo.com>
12370 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
12371 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
12372 * gst-libs/gst/audio/gstbaseaudiosrc.h:
12373 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
12374 patch from Edgard Lima <edgard.lima@indt.org.br>
12375 Fixed gstbaseaudiosrc adding ring buffer sync to it.
12377 2005-10-06 Wim Taymans <wim@fluendo.com>
12379 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
12380 Report the FLOW_RETURN as string in the error message.
12382 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
12383 Don't assert when clearing an unnegotiated buffer.
12385 2005-10-04 Michael Smith <msmith@fluendo.com>
12387 * gst/playback/gstplaybasebin.c: (group_destroy),
12388 (gen_preroll_element), (remove_groups), (setup_source):
12389 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
12390 (setup_sinks), (gst_play_bin_send_event),
12391 (gst_play_bin_change_state):
12392 Set state to NULL before removing from bin. Fix refcounting.
12394 2005-10-04 Michael Smith <msmith@fluendo.com>
12396 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
12397 Correct refcounting in send_event() function. Previously was wrong
12398 if the first sink was unable to handle the event.
12400 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12403 back to development
12405 === release 0.9.3 ===
12407 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
12410 Releasing 0.9.3, "De Facto"
12412 2005-10-03 Andy Wingo <wingo@pobox.com>
12414 * gst/playback/gstdecodebin.c (try_to_link_1)
12415 (remove_element_chain): set element to NULL before removing it.
12417 2005-10-02 Johan Dahlin <johan@gnome.org>
12419 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
12420 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
12423 2005-10-02 Andy Wingo <wingo@pobox.com>
12425 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
12426 (gst_ring_buffer_prepare_read):
12427 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
12430 2005-09-29 Wim Taymans <wim@fluendo.com>
12432 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
12433 * ext/theora/theoradec.c: (theora_handle_data_packet):
12434 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
12435 Propagate error codes from alloc_buffer too.
12437 2005-09-29 Wim Taymans <wim@fluendo.com>
12439 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
12442 * gst/playback/Makefile.am:
12443 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
12444 (dump_element_stats), (main):
12445 Added example stream introspection code.
12447 2005-09-28 Stefan Kost <ensonic@users.sf.net>
12449 * gst/adder/gstadder.c: (gst_adder_collected):
12450 fix adder for float elements
12452 2005-09-28 Wim Taymans <wim@fluendo.com>
12454 * gst-libs/gst/audio/gstbaseaudiosink.c:
12455 (gst_base_audio_sink_class_init),
12456 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
12457 * gst-libs/gst/audio/gstbaseaudiosrc.c:
12458 (gst_base_audio_src_class_init),
12459 (gst_base_audio_src_provide_clock):
12460 get_clock -> provide_clock
12462 2005-09-28 Andy Wingo <wingo@pobox.com>
12464 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
12467 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
12470 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
12471 Actually add the pad template.
12472 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
12474 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
12477 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
12478 from fdsrc. Get caps in create() instead of start() so it can be
12479 interrupted. Interruption somewhat untested.
12481 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
12482 Proper EOS handling.
12484 2005-09-27 Andy Wingo <wingo@pobox.com>
12486 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
12488 * gst/tcp/gsttcpserversrc.c: Cleaned up.
12490 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
12492 * gst/tcp/gsttcp.h:
12493 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
12494 out of tcpclientsrc.c. Cancellable.
12495 (gst_tcp_socket_read): Made private, cancellable, with better
12496 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
12497 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
12498 whole buffer, and better diagnostics.
12499 (gst_tcp_gdp_read_caps): Same.
12501 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
12503 2005-09-26 Andy Wingo <wingo@pobox.com>
12505 * gst/sine/gstsinesrc.h:
12506 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
12507 change the 'sync' property to 'is-live' and implement it halfway,
12508 update for controller api change.
12510 * gst/volume/gstvolume.c (volume_transform_ip): Update for
12511 controller api change.
12513 2005-09-24 Wim Taymans <wim@fluendo.com>
12515 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
12516 * gst-libs/gst/audio/gstaudiosink.c:
12517 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
12518 (gst_audioringbuffer_stop):
12519 * gst-libs/gst/audio/gstbaseaudiosink.c:
12520 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
12521 (gst_base_audio_sink_change_state):
12522 * gst-libs/gst/audio/gstbaseaudiosink.h:
12523 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
12524 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
12525 (gst_ring_buffer_commit), (gst_ring_buffer_read):
12526 * gst-libs/gst/audio/gstringbuffer.h:
12527 Fix sync again. Moved sample alignment to basesink.
12529 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
12531 * docs/plugins/Makefile.am:
12532 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12533 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12534 * gst/volume/gstvolume.c:
12536 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
12537 * gst-libs/gst/audio/audio.h:
12538 add conversion macros for frames <-> clocktime
12540 2005-09-23 David Schleef <ds@schleef.org>
12542 * gst/audioresample/Makefile.am:
12543 * gst/audioresample/debug.h:
12544 * gst/audioresample/gstaudioresample.c:
12545 * gst/audioresample/resample.c: Convert to using gst debugging
12547 2005-09-22 Wim Taymans <wim@fluendo.com>
12549 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12550 (gst_play_bin_send_event):
12551 Only seek on one sink, the first one that succeeds.
12553 2005-09-22 Michael Smith <msmith@fluendo.com>
12555 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
12556 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
12557 Don't flush encoder state unless we have an initialised encoder.
12558 Clear out encoder state on PAUSED_TO_READY.
12560 2005-09-22 Wim Taymans <wim@fluendo.com>
12562 * gst-libs/gst/rtp/gstbasertppayload.c:
12563 (gst_basertppayload_class_init), (gst_basertppayload_init),
12564 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12565 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12566 (gst_basertppayload_is_filled), (gst_basertppayload_push),
12567 (gst_basertppayload_set_property),
12568 (gst_basertppayload_get_property),
12569 (gst_basertppayload_change_state):
12570 * gst-libs/gst/rtp/gstbasertppayload.h:
12571 Added max-ptime to control amount of data in the rtp packets.
12573 2005-09-21 Andy Wingo <wingo@pobox.com>
12575 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
12578 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
12579 can be called multiple times, dogs.
12581 2005-09-21 Wim Taymans <wim@fluendo.com>
12583 * gst-libs/gst/rtp/gstbasertppayload.c:
12584 (gst_basertppayload_class_init), (gst_basertppayload_init),
12585 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12586 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12587 (gst_basertppayload_push), (gst_basertppayload_get_property),
12588 (gst_basertppayload_change_state):
12591 2005-09-21 Stefan Kost <ensonic@users.sf.net>
12593 * docs/libs/compiling.sgml:
12596 2005-09-20 Wim Taymans <wim@fluendo.com>
12598 * gst-libs/gst/rtp/gstbasertppayload.c:
12599 (gst_basertppayload_class_init), (gst_basertppayload_init),
12600 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12601 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12602 (gst_basertppayload_push), (gst_basertppayload_set_property),
12603 (gst_basertppayload_get_property),
12604 (gst_basertppayload_change_state):
12605 * gst-libs/gst/rtp/gstbasertppayload.h:
12606 Added property to configure sequence number offsets.
12608 2005-09-20 Wim Taymans <wim@fluendo.com>
12610 * gst-libs/gst/rtp/gstbasertppayload.c:
12611 (gst_basertppayload_class_init), (gst_basertppayload_init),
12612 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12613 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12614 (gst_basertppayload_push), (gst_basertppayload_set_property),
12615 (gst_basertppayload_get_property),
12616 (gst_basertppayload_change_state):
12617 * gst-libs/gst/rtp/gstbasertppayload.h:
12618 Make timestamp offset configurable.
12620 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
12622 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12623 fix wrong pop/unref
12625 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
12627 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
12629 * gst-libs/gst/interfaces/propertyprobe.c:
12630 (gst_property_probe_probe_property_name),
12631 (gst_property_probe_needs_probe_name),
12632 (gst_property_probe_get_values_name),
12633 (gst_property_probe_probe_and_get_values_name):
12634 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
12635 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
12637 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
12639 * check/Makefile.am:
12640 have some tests be disabled for valgrinding
12641 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
12643 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
12644 Fix A Leak. Chain To Parent Finalize.
12646 2005-09-19 Wim Taymans <wim@fluendo.com>
12648 * examples/seeking/seek.c: (make_wav_pipeline), (main):
12649 Fixed wav pipeline.
12651 2005-09-19 Wim Taymans <wim@fluendo.com>
12653 * gst-libs/gst/rtp/gstbasertppayload.c:
12654 (gst_basertppayload_class_init), (gst_basertppayload_init),
12655 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
12656 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
12657 (gst_basertppayload_push), (gst_basertppayload_get_property),
12658 (gst_basertppayload_change_state):
12659 Posting ERROR and WARNING messages is good.
12661 2005-09-19 Wim Taymans <wim@fluendo.com>
12663 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12664 (gst_base_rtp_depayload_add_to_queue),
12665 (gst_base_rtp_depayload_push),
12666 (gst_base_rtp_depayload_set_gst_timestamp),
12667 (gst_base_rtp_depayload_queue_release):
12668 This one was not supposed to go in.
12670 2005-09-19 Wim Taymans <wim@fluendo.com>
12672 * check/pipelines/simple_launch_lines.c: (run_pipeline):
12675 * gst-libs/gst/rtp/gstbasertpdepayload.c:
12676 (gst_base_rtp_depayload_chain),
12677 (gst_base_rtp_depayload_add_to_queue),
12678 (gst_base_rtp_depayload_push),
12679 (gst_base_rtp_depayload_set_gst_timestamp),
12680 (gst_base_rtp_depayload_queue_release):
12683 * gst-libs/gst/rtp/gstbasertppayload.c:
12684 (gst_basertppayload_class_init), (gst_basertppayload_init),
12685 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
12686 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12687 (gst_basertppayload_get_property),
12688 (gst_basertppayload_change_state):
12689 Added debugging category.
12691 2005-09-18 David Schleef <ds@schleef.org>
12693 * gst/playback/gstdecodebin.c: free plugin list correctly
12694 * gst/playback/gstplaybin.c: emit warning if autovideosink
12695 and autoaudiosink can't be found (instead of segfaulting)
12697 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
12699 * check/elements/audioconvert.c: (GST_START_TEST):
12700 try out 24 bit conversion
12702 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12704 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12705 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12706 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
12707 * ext/vorbis/vorbisenc.h:
12708 Fix EOS handling. Still needs a fix in the ogg muxer to
12709 mark the last page as eos.
12711 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12713 * common/gtk-doc-plugins.mak:
12714 * docs/plugins/Makefile.am:
12715 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12716 * gst/ffmpegcolorspace/Makefile.am:
12717 * gst/ffmpegcolorspace/avcodec.h:
12718 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12719 * gst/tcp/gstmultifdsink.c:
12720 fix up ffmpegcolorspace docs; extract header
12722 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12724 * common/gtk-doc-plugins.mak:
12725 * docs/plugins/Makefile.am:
12726 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12727 * ext/theora/Makefile.am:
12728 * ext/theora/gsttheoraenc.h:
12729 * ext/theora/theoraenc.c:
12730 * ext/vorbis/vorbisenc.c:
12731 pick up signals and args for vorbis; add some docs for vorbis
12733 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
12735 * common/gstdoc-scangobj:
12736 * common/gtk-doc-plugins.mak:
12737 * docs/libs/Makefile.am:
12738 * docs/plugins/gst-plugins-base-plugins.args:
12739 * docs/plugins/gst-plugins-base-plugins.hierarchy:
12740 * docs/plugins/gst-plugins-base-plugins.interfaces:
12741 * docs/plugins/gst-plugins-base-plugins.prerequisites:
12742 * docs/plugins/gst-plugins-base-plugins.signals:
12743 only scanobj stuff from our source module. Not sure yet
12744 if that's correct, given the hierarchy stuff :)
12746 2005-09-15 Wim Taymans <wim@fluendo.com>
12748 * gst/audioconvert/gstaudioconvert.c:
12749 And enable 24 bits mode as well..
12751 2005-09-15 Wim Taymans <wim@fluendo.com>
12753 * gst-libs/gst/rtp/Makefile.am:
12754 * gst-libs/gst/rtp/gstbasertppayload.c:
12755 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
12756 (gst_basertppayload_class_init), (gst_basertppayload_init),
12757 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
12758 (gst_basertppayload_chain), (gst_basertppayload_set_options),
12759 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
12760 (gst_basertppayload_set_property),
12761 (gst_basertppayload_get_property),
12762 (gst_basertppayload_change_state):
12763 * gst-libs/gst/rtp/gstbasertppayload.h:
12764 Added rtp payloader base class.
12766 2005-09-15 Andy Wingo <wingo@pobox.com>
12768 * configure.ac (plugindir): Remove the EOL matcher from the
12769 regexp, as it causes me problems. Libtool? Make? Who knows?
12771 2005-09-14 David Schleef <ds@schleef.org>
12773 * check/generic/states.c:
12774 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
12775 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
12776 Fixes for changes in registry API.
12778 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
12779 to GST_PLUGIN_LDFLAGS.
12780 * ext/libvisual/visual.c: Make the library shut up.
12781 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
12782 * gst-libs/gst/audio/gstaudiofilter.c: same
12784 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12786 * docs/plugins/Makefile.am:
12787 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12788 * docs/plugins/inspect/plugin-libvisual.xml:
12789 * docs/plugins/tmpl/element-tcpserversink.sgml:
12790 * ext/theora/theoraenc.c:
12791 add libvisual plugin and theoraenc element to docs
12793 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
12795 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12796 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12797 * ext/theora/theoraenc.c:
12800 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
12802 * gst/audioconvert/Makefile.am:
12803 Audioconvert derives from GstBaseTransform and should
12804 link to the library with our base elements to avoid
12805 unresolved symbols. Makes things work with MinGW (#316160)
12807 * gst/playback/test4.c: (main):
12808 Fix MinGW build problem and use g_usleep() instead of
12811 2005-09-12 Wim Taymans <wim@fluendo.com>
12813 * gst/audioconvert/audioconvert.c: (float),
12814 (audio_convert_prepare_context), (audio_convert_convert):
12815 * gst/audioconvert/audioconvert.h:
12816 Cleanups, speedups, simplifications, added back support
12819 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
12821 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
12822 * docs/plugins/gst-plugins-base-plugins-sections.txt:
12823 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12824 * docs/plugins/tmpl/element-tcpserversink.sgml:
12825 * gst/ffmpegcolorspace/gstffmpeg.c:
12826 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12827 * gst/videotestsrc/gstvideotestsrc.c:
12828 * gst/volume/gstvolume.c:
12829 add more elements to the docs
12831 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
12833 * check/Makefile.am:
12834 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12835 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
12836 Add extra tests for basetransform based components.
12837 Comment out the test_element_negotiation test until we decide
12838 if it's testing correct behaviour.
12839 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
12840 (gst_visual_chain), (gst_visual_change_state):
12841 Slightly more correct but still bogus timestamping.
12842 Fix state change function.
12843 * gst/audioconvert/gstaudioconvert.c:
12844 (gst_audio_convert_class_init):
12845 * gst/audioresample/gstaudioresample.c:
12846 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12847 (gst_ffmpegcsp_class_init):
12848 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
12849 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
12850 (gst_videoscale_prepare_image):
12851 * gst/volume/gstvolume.c: (gst_volume_class_init),
12852 (volume_transform_ip):
12853 Basetransform updates. Enable passthrough modes.
12854 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12855 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
12856 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
12857 Negotiation fix that allows the window to return to the original
12858 size and renegotiate passthrough upstream. Extra debug output.
12860 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
12862 * gst/sine/gstsinesrc.c:
12863 * gst/volume/gstvolume.c:
12864 fix up header include
12866 2005-09-09 Stefan Kost <ensonic@users.sf.net>
12868 * gst-libs/gst/audio/gstbaseaudiosink.c:
12869 (gst_base_audio_sink_render):
12870 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
12871 * gst/volume/gstvolume.c: (gst_volume_class_init),
12872 (volume_transform):
12873 fixing lost sync, some more debugging
12875 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
12877 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12878 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
12879 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12880 (gst_xvimagesink_check_xshm_calls):
12881 Fix compilation when XShm is not available.
12883 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12885 * ext/libvisual/visual.c: (gst_visual_dispose),
12886 (gst_visual_getcaps), (gst_visual_src_setcaps),
12887 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
12888 (gst_visual_change_state):
12889 Finish fixing up libvisual plugin so that it runs.
12891 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12893 * ext/vorbis/vorbisenc.c:
12894 * gst-libs/gst/tag/gstvorbistag.c:
12895 gsttaginterface.h -> gsttagsetter.h
12897 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12899 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
12900 added another test that failes for me (test is not active by default)
12902 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
12905 v4l2 is no longer in gst-plugins-base
12907 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
12910 In the output at the end, don't show the first plugin on the same
12911 line as "Core plug-ins, always built:".
12912 Indent the output as for other plugin categories
12913 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
12914 #define that can be used to not use peer buffer_alloc functions for
12916 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
12917 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
12918 (gst_ximagesink_show_frame):
12919 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
12920 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
12921 (gst_xvimagesink_show_frame):
12922 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
12923 fails gracefully instead of XError aborting or deadlocking.
12925 2005-09-07 Stefan Kost <ensonic@users.sf.net>
12927 * ext/libvisual/Makefile.am:
12928 link against gst-base-libs
12930 2005-09-06 David Schleef <ds@schleef.org>
12932 * configure.ac: Enable libvisual plugin.
12933 * ext/libvisual/Makefile.am:
12934 * ext/libvisual/visual.c: Fixes to make it compile.
12936 === release 0.9.2 ===
12938 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
12943 * docs/random/ChangeLog-0.8:
12944 releasing 0.9.2, "Spoon"
12946 2005-09-05 Michael Smith <msmith@fluendo.com>
12948 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
12949 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
12950 that in the vorbisenc element.
12952 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12954 * common/gtk-doc-plugins.mak:
12955 * docs/plugins/Makefile.am:
12957 * gst/audioresample/resample.c:
12958 fix wrong docstring
12960 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
12962 * common/gst-xmlinspect.py:
12963 * common/gtk-doc-plugins.mak:
12964 only inspect plugins for this given package
12965 require gst-python 0.9
12967 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
12971 * common/gst-xmlinspect.py:
12973 * docs/Makefile.am:
12974 * docs/plugins/inspect/plugin-alsa.xml:
12975 * docs/plugins/inspect/plugin-audioresample.xml:
12976 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
12977 * docs/plugins/inspect/plugin-ogg.xml:
12978 * docs/plugins/tmpl/element-gnomevfssink.sgml:
12979 * docs/plugins/tmpl/element-multifdsink.sgml:
12980 * docs/plugins/tmpl/element-tcpserversink.sgml:
12981 * docs/plugins/tmpl/element-vorbisenc.sgml:
12982 * gst-plugins-base.spec.in:
12983 various doc-related updates
12985 2005-08-31 Wim Taymans <wim@fluendo.com>
12987 * gst-libs/gst/audio/gstbaseaudiosink.c:
12988 (gst_base_audio_sink_render):
12989 Resync if the buffer timestamps drift more than a 10th
12992 2005-08-31 Tim-Philipp Müller <tim at centricular dot net>
12994 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
12995 (gst_v4lsrc_get_property):
12996 The 'timestamp-offset' property is registered as an int64, so
12997 let's use g_value_{set|get}_int64() in our setter and getter
12998 functions (makes it work and fixes warnings with gst-inspect).
13000 2005-08-30 Wim Taymans <wim@fluendo.com>
13002 * check/elements/audioconvert.c: (setup_audioconvert):
13003 * check/elements/audioresample.c: (setup_audioresample):
13004 * check/elements/volume.c: (setup_volume):
13007 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
13009 * common/gtk-doc-plugins.mak:
13010 * common/plugins.xsl:
13011 * docs/plugins/Makefile.am:
13012 make module a param
13014 2005-08-30 Stefan Kost <ensonic@users.sf.net>
13016 * examples/seeking/seek.c: (make_mp3_pipeline),
13017 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
13018 (play_cb), (pause_cb), (stop_cb):
13021 2005-08-30 Stefan Kost <ensonic@users.sf.net>
13023 * gst/volume/gstvolume.c: (gst_volume_class_init),
13024 (volume_transform):
13025 do not update controlled params, if buffer has no timestamp
13027 2005-08-29 Stefan Kost <ensonic@users.sf.net>
13030 * gst/sine/Makefile.am:
13031 * gst/volume/Makefile.am:
13032 controllerized elements also need to link against controller-libs ;)
13034 2005-08-29 Stefan Kost <ensonic@users.sf.net>
13036 * docs/libs/tmpl/gstcolorbalance.sgml:
13037 * docs/libs/tmpl/gstgconf.sgml:
13038 * docs/libs/tmpl/gstmixer.sgml:
13039 * docs/libs/tmpl/gstringbuffer.sgml:
13040 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
13041 (gst_sinesrc_create):
13042 * gst/volume/gstvolume.c: (gst_volume_class_init),
13043 (volume_transform):
13044 controllerized two audio plugins
13046 2005-08-29 Andy Wingo <wingo@pobox.com>
13048 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
13049 (vorbis_handle_data_packet): Fix some int overflow errors.
13051 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
13053 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
13055 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
13056 if it's valid. Fixed streaming-mode playback.
13058 * check/elements/volume.c (cleanup_volume): Fix for running
13061 * check/elements/audioconvert.c: Convert from native endian, not
13064 2005-08-29 Michael Smith <msmith@fluendo.com>
13066 * ext/ogg/Makefile.am:
13067 * ext/ogg/gstogg.c: (plugin_init):
13068 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
13069 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
13070 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
13071 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
13072 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
13073 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
13074 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
13075 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
13076 Add an ogg parser element.
13078 2005-08-28 Andy Wingo <wingo@pobox.com>
13080 * Updates for two-arg init from GST_BOILERPLATE_FULL.
13082 2005-08-26 Wim Taymans <wim@fluendo.com>
13084 * gst/audioconvert/audioconvert.c: (if), (float),
13085 (audio_convert_get_func_index), (check_default),
13086 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13087 (audio_convert_clean_context), (audio_convert_get_sizes),
13088 (audio_convert_convert):
13091 2005-08-26 Wim Taymans <wim@fluendo.com>
13093 * gst/audioconvert/audioconvert.c: (if), (float),
13094 (audio_convert_get_func_index), (check_default),
13095 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13096 (audio_convert_clean_context), (audio_convert_get_sizes),
13097 (audio_convert_convert):
13098 More elegant and working temp buffer selection algo.
13100 2005-08-26 Wim Taymans <wim@fluendo.com>
13102 * gst/audioconvert/audioconvert.c: (if), (float),
13103 (audio_convert_get_func_index), (check_default),
13104 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13105 (audio_convert_clean_context), (audio_convert_get_sizes),
13106 (get_temp_buffer), (audio_convert_convert):
13107 Use realloc else we lose our original data.
13109 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
13111 * gst/audioresample/gstaudioresample.c:
13112 use base class' newsegment to properly timestamp
13114 2005-08-26 Wim Taymans <wim@fluendo.com>
13116 * gst/audioconvert/audioconvert.c: (if), (float),
13117 (audio_convert_get_func_index), (check_default),
13118 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13119 (audio_convert_clean_context), (audio_convert_get_sizes),
13120 (get_temp_buffer), (audio_convert_convert):
13121 * gst/audioconvert/gstaudioconvert.c:
13122 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
13123 (gst_audio_convert_transform_caps),
13124 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
13125 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
13126 Oops, allocate enough space to perform the channel mix.
13128 2005-08-26 Wim Taymans <wim@fluendo.com>
13130 * gst/audioconvert/Makefile.am:
13131 * gst/audioconvert/audioconvert.c: (if), (float),
13132 (audio_convert_get_func_index), (check_default),
13133 (audio_convert_clean_fmt), (audio_convert_prepare_context),
13134 (audio_convert_clean_context), (audio_convert_get_sizes),
13135 (get_temp_buffer), (audio_convert_convert):
13136 * gst/audioconvert/audioconvert.h:
13137 * gst/audioconvert/gstaudioconvert.c:
13138 (gst_audio_convert_class_init), (gst_audio_convert_init),
13139 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
13140 (gst_audio_convert_get_unit_size),
13141 (gst_audio_convert_transform_caps),
13142 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
13143 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
13144 * gst/audioconvert/gstaudioconvert.h:
13145 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
13146 (gst_channel_mix_fill_identical),
13147 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
13148 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
13149 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
13150 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
13151 (gst_channel_mix_mix):
13152 * gst/audioconvert/gstchannelmix.h:
13153 Cleanups, librarify a bit, optimize, better negotiation and more.
13155 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13157 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
13158 Another from MikeS:
13159 During typefinding, don't support negative offsets
13160 (offsets from the end of the stream) in our typefind->peek() function
13161 - nothing embedded in ogg ever needs them. However, we need to recognise
13162 those requests and reject them, otherwise we return invalid pointers.
13164 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
13166 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
13167 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
13168 (vorbisdec_finalize), (vorbis_handle_type_packet):
13169 Big shout-out to MikeS for fixing this giant memory leak.
13172 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13174 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
13175 (audio_convert_get_unit_size):
13178 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13180 * check/Makefile.am:
13181 * check/elements/audioconvert.c: (setup_audioconvert),
13182 (cleanup_audioconvert), (get_int_caps), (verify_convert),
13183 (GST_START_TEST), (audioconvert_suite), (main):
13184 add a test for audioconvert
13185 * gst/audioresample/gstaudioresample.c:
13186 * gst/audioresample/gstaudioresample.h:
13187 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
13188 note that for buffers of 1/3 sec this means DURATION(c) is
13189 one nanosecond more than for a and b
13191 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13193 * check/Makefile.am:
13194 * check/elements/audioresample.c: (setup_audioresample),
13195 (cleanup_audioresample), (fail_unless_perfect_stream),
13196 (test_perfect_stream_instance), (GST_START_TEST),
13197 add a check for audioresample
13198 (audioresample_suite), (main):
13199 * check/elements/volume.c: (GST_START_TEST):
13200 remove unused method
13201 * gst/audioresample/gstaudioresample.c:
13202 set correct buffer parameters since we're changing them
13203 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13206 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
13208 * gst/audioresample/debug.c:
13209 * gst/audioresample/gstaudioresample.c:
13210 add room for extra overlap samples when asked to transform size
13211 protect against possible mem corruption and check for discrepancies
13212 between written size and outbuffer's size so we can warn for
13214 * gst/audioresample/resample.c: (resample_init),
13215 (resample_get_output_size_for_input), (resample_get_output_size),
13216 (resample_set_n_channels), (resample_set_format):
13217 set debug level based on RESAMPLE_DEBUG env var
13218 make sure that get_output_size* returns a whole number of
13220 set sample_size each time either channel or format is set
13221 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
13222 * gst/audioresample/resample_functable.c:
13223 (resample_scale_functable):
13224 * gst/audioresample/resample_ref.c: (resample_scale_ref):
13225 remove r->sample_size, it's done in resample.c now
13226 add some debugging to the ref implementation
13227 make sure we only give back bytes that are wholes of the sample
13230 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
13231 * gst/playback/gstplaybasebin.c: (fill_buffer):
13232 Revert unpopular change for GST_MESSAGE_SRC to GObject.
13234 2005-08-25 Stefan Kost <ensonic@users.sf.net>
13236 * gst/volume/gstvolume.c:
13237 made set_caps function static
13239 2005-08-24 Wim Taymans <wim@fluendo.com>
13241 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13242 (gst_vorbisenc_change_state):
13243 Stop leaking taglists.
13245 2005-08-24 Wim Taymans <wim@fluendo.com>
13247 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
13248 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
13249 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
13250 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
13251 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13252 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
13253 Parse seeking events better.
13255 Generate correct newsegment events, fixes seeking in live oggs.
13257 * ext/theora/theoradec.c: (theora_dec_src_query),
13258 (theora_dec_src_event), (theora_dec_src_getcaps),
13259 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
13260 Use newsegment values to report correct play time.
13262 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13263 (vorbis_dec_src_event), (vorbis_dec_sink_event):
13264 * ext/vorbis/vorbisdec.h:
13265 Parse and use newsegment values to report correct play time.
13267 * gst-libs/gst/audio/gstbaseaudiosink.c:
13268 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
13269 Clear ringbuffer on flush.
13270 Use newsegment values to calculate playback time.
13272 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
13273 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
13274 Basesink does newsegment calculations for us now.
13276 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13278 * check/Makefile.am:
13280 add core's plugins to the mix so that playbin works
13281 * check/generic/states.c: (GST_START_TEST):
13282 set a 0 timeout on pipelines, so they don't force the next
13284 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
13285 (gst_play_base_bin_change_state):
13286 remove the crappy error handling and do GST error handling
13288 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13290 * check/Makefile.am:
13291 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
13292 add same test as to core, it bitches out on playbin atm.
13294 2005-08-24 Wim Taymans <wim@fluendo.com>
13299 2005-08-24 Wim Taymans <wim@fluendo.com>
13301 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
13302 (gst_videoscale_prepare_size), (parse_caps),
13303 (gst_videoscale_set_caps), (gst_videoscale_get_size),
13304 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
13305 (gst_videoscale_transform):
13306 * gst/videoscale/gstvideoscale.h:
13307 Refactor, make use of BaseTranform really well.
13309 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13312 compile audioresample
13313 * gst/audioresample/Makefile.am:
13314 * gst/audioresample/buffer.c:
13315 * gst/audioresample/functable.c:
13316 * gst/audioresample/gstaudioresample.c:
13317 * gst/audioresample/gstaudioresample.h:
13318 * gst/audioresample/resample.c:
13319 (resample_get_output_size_for_input):
13320 * gst/audioresample/resample.h:
13321 * gst/audioresample/resample_chunk.c:
13322 * gst/audioresample/resample_functable.c:
13323 * gst/audioresample/resample_ref.c:
13324 port to use basetransform; doesn't work in all cases yet
13326 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
13328 * gst/audioconvert/gstaudioconvert.c:
13329 (gst_audio_convert_class_init), (gst_audio_convert_init),
13330 (audio_convert_get_unit_size), (audio_convert_transform_caps),
13331 (audio_convert_fixate_caps), (audio_convert_set_caps),
13332 (audio_convert_transform),
13333 (gst_audio_convert_buffer_to_default_format),
13334 (gst_audio_convert_buffer_from_default_format),
13335 (gst_audio_convert_channels):
13336 * gst/audioconvert/gstchannelmix.c:
13337 * gst/audioconvert/gstchannelmix.h:
13338 port to basetransform
13339 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13340 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
13341 (gst_ffmpegcsp_get_unit_size):
13342 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
13343 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
13344 fix for basetransform changes
13346 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
13348 * check/Makefile.am:
13349 Add CHECK_CFLAGS and LDFLAGS
13351 * gst/playback/gstplaybasebin.c: (fill_buffer):
13352 GST_MESSAGE_SRC became a GObject
13354 2005-08-24 Wim Taymans <wim@fluendo.com>
13356 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
13357 (gst_ring_buffer_clear_all):
13358 * gst-libs/gst/audio/gstringbuffer.h:
13359 Added function to clear the ringbuffer.
13361 2005-08-24 Andy Wingo <wingo@pobox.com>
13363 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
13364 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
13365 of _open and _close.
13367 * sys/v4l/gstv4lxoverlay.h:
13368 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
13369 an Xv connection here, instead of all the time. Make Xv only be
13370 loaded if you axe for it. Kindof a workaround for buggy behaviour
13371 of Xv when using remote xservers (XvQueryExtension would block).
13372 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
13373 replace the _open and _close public API. Only start the xv
13374 connection if necessary.
13375 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
13377 2005-08-23 David Schleef <ds@schleef.org>
13379 * gst/audioresample/Makefile.am: Leet audioresampling code
13380 * gst/audioresample/buffer.c:
13381 * gst/audioresample/buffer.h:
13382 * gst/audioresample/debug.c:
13383 * gst/audioresample/debug.h:
13384 * gst/audioresample/functable.c:
13385 * gst/audioresample/functable.h:
13386 * gst/audioresample/gstaudioresample.c:
13387 * gst/audioresample/gstaudioresample.h:
13388 * gst/audioresample/resample.c:
13389 * gst/audioresample/resample.h:
13390 * gst/audioresample/resample_chunk.c:
13391 * gst/audioresample/resample_functable.c:
13392 * gst/audioresample/resample_ref.c:
13394 2005-08-23 Wim Taymans <wim@fluendo.com>
13396 * examples/seeking/seek.c: (make_vorbis_pipeline),
13397 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
13398 Small seek updates.
13400 2005-08-23 Andy Wingo <wingo@pobox.com>
13402 * gst-libs/gst/audio/gstbaseaudiosrc.c
13403 (gst_base_audio_src_fixate): Only fixate endianness if it is
13404 present in the caps.
13406 2005-08-22 Andy Wingo <wingo@pobox.com>
13408 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
13409 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
13410 device-name property.
13412 * gst-libs/gst/audio/gstaudiosrc.h:
13413 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
13414 close_device in the ring buffer, like gstaudiosink.
13416 * ext/alsa/gstalsamixer.h:
13417 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
13418 macro to implement the interface without much code. Cleanups.
13420 * ext/alsa/gstalsasrc.h:
13421 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
13424 * ext/alsa/Makefile.am: Add new files.
13425 * ext/alsa/gstalsamixerelement.c:
13426 * ext/alsa/gstalsamixerelement.c: Split element code out from
13427 mixer code so that alsasrc can be a mixer too.
13429 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
13431 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13433 * check/elements/vorbisdec.c: (setup_vorbisdec),
13434 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
13435 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
13436 (vorbis_handle_identification_packet),
13437 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
13438 (vorbis_handle_header_packet), (vorbis_dec_push),
13439 (vorbis_dec_chain):
13440 use the setup/teardown methods to save code. save code is good.
13442 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13444 * check/Makefile.am:
13445 add ext dir for plugins
13446 add vorbisdec test conditionally
13447 * check/elements/volume.c: (setup_volume), (cleanup_volume),
13448 (GST_START_TEST), (volume_suite):
13449 add a test with wrong caps
13450 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
13451 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
13452 add a vorbisdec test
13453 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
13454 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
13455 clean up debug output
13456 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13457 yay, fix a segfault/security issue in vorbisdec
13458 gst-launch fakesrc ! vorbisdec wasn't happy
13459 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
13460 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
13461 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
13462 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
13463 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
13464 (gst_vorbisenc_set_metadata), (get_constraints_string),
13465 (update_start_message), (gst_vorbisenc_setup),
13466 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
13467 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
13468 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
13469 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
13470 * ext/vorbis/vorbisenc.h:
13472 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13473 (gst_ffmpegcsp_transform):
13474 have the kow come home
13475 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13477 * gst/volume/gstvolume.c: (volume_set_caps):
13480 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
13483 * check/.cvsignore:
13484 * check/Makefile.am:
13485 * check/elements/.cvsignore:
13486 * check/elements/volume.c: (chain_func), (event_func),
13487 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
13490 add unit test structure for gst-plugins-base
13491 add a test for volume
13492 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
13493 (gst_volume_set_volume), (gst_volume_get_volume),
13494 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
13495 (volume_funcfind), (volume_process_float), (volume_process_int16),
13496 (volume_set_caps), (volume_transform), (volume_update_mute),
13497 (volume_update_volume), (volume_set_property),
13498 (volume_get_property):
13499 document a little; use basetransform vmethod _set_caps
13501 2005-08-19 Andy Wingo <wingo@pobox.com>
13503 * ext/alsa/gstalsamixertrack.h:
13504 * ext/alsa/gstalsamixertrack.c:
13505 * ext/alsa/gstalsamixeroptions.h:
13506 * ext/alsa/gstalsamixeroptions.c:
13507 * ext/alsa/gstalsamixer.h:
13508 * ext/alsa/gstalsamixer.c: Port to 0.9.
13510 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
13511 Remove gstalsa.c and alsaclock. No more cruft here.
13513 2005-08-18 Wim Taymans <wim@fluendo.com>
13515 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13516 (gst_base_rtp_depayload_chain),
13517 (gst_base_rtp_depayload_add_to_queue),
13518 (gst_base_rtp_depayload_push),
13519 (gst_base_rtp_depayload_queue_release):
13520 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13521 Fix for RTPBuffer changes.
13523 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
13524 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
13525 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
13526 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
13527 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
13528 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
13529 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
13530 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
13531 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
13532 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
13533 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
13534 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
13535 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
13536 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
13537 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
13538 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
13539 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
13540 (gst_rtpbuffer_get_payload):
13541 * gst-libs/gst/rtp/gstrtpbuffer.h:
13542 Don't subclass GstBuffer but add methods and helper functions
13543 to construct and manipulate RTP packets in regular GstBuffers.
13545 2005-08-18 Stefan Kost <ensonic@users.sf.net>
13547 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
13548 moved statement below switch
13549 * gst/volume/gstvolume.c: (gst_volume_class_init):
13552 2005-08-16 Wim Taymans <wim@fluendo.com>
13554 * gst-libs/gst/audio/gstbaseaudiosrc.c:
13555 (gst_base_audio_src_change_state):
13556 Open and close device in READY<->NULL state change.
13558 2005-08-16 Andy Wingo <wingo@pobox.com>
13560 * examples/seeking/Makefile.am: Don't compile non-compiling
13561 compiled objects with the compiler.
13563 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
13566 2005-08-12 Philippe Khalaf <burger@speedy.org>
13567 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13568 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13569 Made a thread to release the queue.
13570 Removed timestamp conversion for now.
13572 2005-08-10 Philippe Khalaf <burger@speedy.org>
13573 * gst-libs/gst/rtp/gstbasertpdepayload.c:
13574 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13575 Added rtp timestamp -> gst timestamp conversion.
13576 Fixed several problems with queue.
13578 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13580 * gst-libs/gst/audio/gstaudioclock.h:
13581 * gst-libs/gst/audio/gstaudiofilter.h:
13582 * gst-libs/gst/audio/gstaudiosink.h:
13583 * gst-libs/gst/audio/gstaudiosrc.h:
13584 * gst-libs/gst/audio/gstbaseaudiosink.h:
13585 * gst-libs/gst/audio/gstbaseaudiosrc.h:
13586 * gst-libs/gst/audio/gstringbuffer.h:
13587 * gst-libs/gst/net/gstnetbuffer.h:
13588 * gst-libs/gst/rtp/gstbasertpdepayload.h:
13589 * gst-libs/gst/rtp/gstrtpbuffer.h:
13590 Add padding (you will need to rebuild gst-plugins-base,
13591 gst-plugins and all applications afterwards!)
13593 2005-08-09 Tim-Philipp Müller <tim at centricular dot net>
13595 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
13596 (gst_riff_parse_chunk):
13597 Fix bug in debug message and add some more debug messages.
13599 2005-08-08 Edward Hervey <edward@fluendo.com>
13601 * gst-libs/gst/riff/riff-media.c:
13602 backported updates since branch
13604 2005-08-08 Andy Wingo <wingo@pobox.com>
13606 * gst-libs/gst/audio/gstbaseaudiosink.c
13607 (gst_base_audio_sink_change_state): Open the device in NULL->READY
13608 like good elements should. Close on READY->NULL too.
13610 * gst-libs/gst/audio/gstaudiosink.c
13611 (gst_audioringbuffer_open_device,
13612 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
13613 (gst_audioringbuffer_release): Updates for new ring buffer API,
13614 hook into the new audio sink api.
13616 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
13617 (GstAudioSinkClass.close): Just open and close the device -- no
13618 resource allocation or configuration.
13619 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
13620 vmethods, handle device setup and resource allocation.
13622 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
13623 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
13626 * gst-libs/gst/audio/gstringbuffer.h
13627 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
13630 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
13631 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
13632 New API functions. The device should be opened before acquiring
13633 and closed after releasing.
13635 2005-08-08 Tim-Philipp Müller <tim at centricular dot net>
13637 * gst-libs/gst/interfaces/mixer.h:
13638 Reset padding to GST_PADDING.
13640 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13642 * gst/playback/gstplaybin.c: (remove_sinks):
13643 Remove visualization from parent explicitely; works around some
13644 apparent refcount issue that I haven't tracked down yet.
13646 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13648 * ext/alsa/gstalsasink.c: (set_hwparams):
13649 Assign debug category, add negotiation debug msgs.
13651 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13653 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
13654 Fix error code for file-not-found to NOT_FOUND.
13656 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13658 * common/gtk-doc-plugins.mak:
13659 * docs/plugins/Makefile.am:
13660 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13661 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13662 renamed to actual element names, so much nicer to look at
13663 * docs/plugins/tmpl/gstmultifdsink.sgml:
13665 * docs/plugins/tmpl/multifdsink.sgml:
13666 * docs/plugins/tmpl/tcpserversink.sgml:
13668 * ext/alsa/gstalsa.c:
13669 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
13670 * ext/ogg/gstoggmux.c:
13671 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
13672 * gst/playback/gstdecodebin.c:
13673 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
13674 * gst/tcp/gsttcpserversink.c:
13675 various fixes and documentation additions
13677 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
13679 * common/Makefile.am:
13680 * common/gstdoc-scangobj:
13681 * common/gtk-doc-plugins.mak:
13682 * common/gtk-doc.mak:
13683 add a custom scangobj that uses the registry
13684 add a custom gtk-doc-plugins.mak that uses it
13685 some doc build fixes
13687 * docs/Makefile.am:
13688 * docs/plugins/Makefile.am:
13689 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
13690 * docs/plugins/gst-plugins-base-plugins-sections.txt:
13691 * docs/plugins/gst-plugins-base-plugins.types:
13692 * docs/plugins/tmpl/gstmultifdsink.sgml:
13693 add docs for one element, multifdsink
13694 * gst/adder/gstadder.h:
13695 * gst/volume/gstvolume.h:
13696 don't privatize enum
13697 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
13698 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
13699 (gst_sync_method_get_type), (gst_client_status_get_type),
13700 (gst_multifdsink_class_init),
13701 (gst_multifdsink_client_queue_buffer),
13702 (gst_multifdsink_handle_client_write):
13703 * gst/tcp/gstmultifdsink.h:
13704 * gst/tcp/gsttcp.h:
13705 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
13706 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
13707 (gst_tcpclientsink_render):
13708 * gst/tcp/gsttcpclientsink.h:
13709 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
13710 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
13711 (gst_tcpclientsrc_start):
13712 * gst/tcp/gsttcpclientsrc.h:
13713 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
13714 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
13715 * gst/tcp/gsttcpserversrc.h:
13716 * gst/typefind/gsttypefindfunctions.c:
13717 remove superfluous Type stuff
13719 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13721 * gst/playback/gstplaybin.c: (gen_video_element):
13724 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13726 * gst-libs/gst/gconf/gconf.c:
13727 * gst-libs/gst/gconf/gconf.h:
13728 Fix some Andy Problem [tm].
13730 2005-08-04 Andy Wingo <wingo@pobox.com>
13732 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
13733 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
13734 (gst_ffmpegcsp_get_size): Adapt to API changes.
13736 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
13737 Implement an in-place do-nothing transform.
13739 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13741 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
13742 (gst_ximagesink_renegotiate_size):
13743 Do not set new window sizes yet if we prepare a new buffer size
13744 for upstream renegotiation (software scaling) at some point in the
13745 future, because this new size waqs not actually accepted yet. Once
13746 accepted, renegotiation later on will set the new sizes just fine.
13747 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
13748 embedding testcase.
13750 2005-08-03 Andy Wingo <wingo@pobox.com>
13752 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
13753 (gst_ximagesink_buffer_alloc):
13754 Protect the height, width, and desired_caps with the pool_lock.
13755 Fixes videotestsrc ! queue ! ximagesink.
13757 2005-08-02 Edward Hervey <edward@fluendo.com>
13759 * gst/volume/gstvolume.c:
13760 include left from controller cleanup
13762 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
13763 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
13764 Stop collectpads before calling the parent state
13765 change function on PAUSED->READY.
13767 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
13769 When testing for X libs, use the X CFlags
13770 * gst/adder/gstadder.c: (gst_adder_change_state):
13771 Stop the collectpads before calling parent state change function
13772 on PAUSED->READY, otherwise we deadlock deactivating pads.
13774 2005-08-01 Stefan Kost <ensonic@users.sf.net>
13777 * docs/libs/tmpl/gstcolorbalance.sgml:
13778 * docs/libs/tmpl/gstmixer.sgml:
13779 * examples/Makefile.am:
13780 * gst/sine/Makefile.am:
13781 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
13782 (gst_sinesrc_set_property), (plugin_init):
13783 * gst/sine/gstsinesrc.h:
13784 * gst/volume/Makefile.am:
13785 * gst/volume/gstvolume.c: (gst_volume_set_volume),
13786 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
13787 (volume_process_float), (volume_process_int16),
13788 (volume_set_property), (plugin_init):
13789 * gst/volume/gstvolume.h:
13790 deactivate and remove dparams (libgstcontrol)
13792 2005-07-29 Wim Taymans <wim@fluendo.com>
13794 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
13795 Convert me to BaseTransform!! help..
13797 2005-07-29 Andy Wingo <wingo@pobox.com>
13799 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
13802 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
13803 support of both endiannesses.
13805 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13807 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13808 Fix confusing debug message (s/event/query/)
13810 2005-07-28 Tim-Philipp Müller <tim at centricular dot net>
13812 * gst/videotestsrc/videotestsrc.h:
13813 Use "_stdint.h" instead of <stdint.h>
13815 2005-07-27 Wim Taymans <wim@fluendo.com>
13817 * ext/vorbis/Makefile.am:
13818 Revert wrong commit.
13820 2005-07-27 Wim Taymans <wim@fluendo.com>
13822 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
13823 More compilation fixen.
13825 2005-07-27 Wim Taymans <wim@fluendo.com>
13827 * gst-libs/gst/audio/gstbaseaudiosink.c:
13828 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
13829 (gst_base_audio_sink_create_ringbuffer),
13830 (gst_base_audio_sink_change_state):
13833 2005-07-27 Wim Taymans <wim@fluendo.com>
13835 * examples/seeking/seek.c: (setup_dynamic_link),
13836 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
13837 (query_positions_elems), (query_positions_pads), (do_seek):
13838 Update seek example.
13840 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13841 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
13842 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
13843 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
13844 (gst_ogg_demux_handle_event),
13845 (gst_ogg_demux_deactivate_current_chain),
13846 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13847 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13848 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
13849 (gst_ogg_demux_loop):
13850 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
13851 * ext/theora/theoradec.c: (theora_dec_src_event),
13852 (theora_dec_src_getcaps), (theora_dec_sink_event),
13853 (theora_dec_push), (theora_dec_chain):
13854 * ext/vorbis/Makefile.am:
13855 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
13856 (vorbis_dec_sink_event), (vorbis_dec_push),
13857 (vorbis_handle_data_packet):
13858 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
13859 (gst_vorbisenc_chain):
13860 * gst/playback/gststreaminfo.c: (cb_probe):
13861 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
13862 * gst/videorate/gstvideorate.c: (gst_videorate_event):
13863 * gst/videoscale/gstvideoscale.c:
13864 (gst_videoscale_handle_src_event):
13865 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
13866 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
13867 (gst_ximagesink_navigation_send_event):
13868 * sys/xvimage/xvimagesink.c:
13869 (gst_xvimagesink_navigation_send_event):
13870 Various event updates and cleanups
13872 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13874 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
13875 Fix segfault for I420/YV12.
13877 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13879 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
13882 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13884 * gst/playback/gstplaybin.c: (gen_video_element),
13885 (gen_audio_element):
13886 Switch to auto*sink elements as default sinks; add volume element
13887 so that volume control in totem works.
13889 2005-07-21 Wim Taymans <wim@fluendo.com>
13891 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
13892 * gst/playback/gstplaybin.c: (setup_sinks),
13893 (gst_play_bin_change_state):
13894 Refcount fix and more comments.
13896 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
13898 * sys/ximage/Makefile.am:
13899 * sys/ximage/ximage.c: (plugin_init):
13900 * sys/ximage/ximagesink.c:
13901 Prepare for adding ximagesrc, rename of plugin to ximage etc.
13904 2005-07-21 Wim Taymans <wim@fluendo.com>
13906 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
13907 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13908 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13909 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13910 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13911 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
13912 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
13913 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
13914 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
13915 Generate correct disconts for live chained oggs.
13917 * gst-libs/gst/audio/gstbaseaudiosink.c:
13918 (gst_base_audio_sink_render),
13919 (gst_base_audio_sink_create_ringbuffer),
13920 (gst_base_audio_sink_change_state):
13921 Handle discont math correctly.
13923 * gst/playback/gstplaybin.c: (add_sink):
13924 Some small debug cleanup.
13926 2005-07-21 Wim Taymans <wim@fluendo.com>
13928 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
13929 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
13930 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
13931 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
13932 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
13933 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
13934 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
13935 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
13936 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
13937 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
13938 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
13939 (gst_ogg_demux_change_state), (gst_ogg_print):
13940 Reorganize code to send the right disconts when in streaming
13943 2005-07-20 Andy Wingo <wingo@pobox.com>
13945 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
13946 fix (?), fixes a seggie mcfalterson (#310894).
13948 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13950 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
13951 (gst_ogg_mux_set_header_on_caps):
13952 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
13953 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
13954 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
13955 * gst-libs/gst/audio/multichannel.c:
13956 (gst_audio_set_channel_positions),
13957 (gst_audio_set_structure_channel_positions_list):
13958 * gst/playback/gstdecodebin.c: (dynamic_create):
13959 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
13960 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
13961 Fixes for API changes in core.
13963 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13965 * gst/playback/gstplaybasebin.c: (fill_buffer):
13966 Use _new_custom() so we can set custom message types for buffering
13969 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13972 * gst-libs/gst/Makefile.am:
13973 * gst-libs/gst/gconf/.cvsignore:
13974 * gst-libs/gst/gconf/Makefile.am:
13975 * gst-libs/gst/gconf/test-gconf.c:
13976 * pkgconfig/Makefile.am:
13977 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
13978 * pkgconfig/gstreamer-gconf.pc.in:
13979 Remove gconf stuff, use gconf elements instead from now on.
13981 2005-07-20 Wim Taymans <wim@fluendo.com>
13983 * gst-libs/gst/audio/TODO:
13984 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
13985 (gst_audio_clock_get_internal_time):
13986 * gst-libs/gst/audio/gstaudioclock.h:
13987 * gst-libs/gst/audio/gstbaseaudiosink.c:
13988 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
13989 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
13990 (gst_base_audio_sink_render),
13991 (gst_base_audio_sink_create_ringbuffer),
13992 (gst_base_audio_sink_change_state):
13993 Make sure the audio clock always returns an increasing value.
13995 2005-07-19 Andy Wingo <wingo@pobox.com>
13997 * gst/videotestsrc/: Cleanups.
13999 2005-07-19 Wim Taymans <wim@fluendo.com>
14001 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
14004 2005-07-19 Wim Taymans <wim@fluendo.com>
14006 * examples/seeking/seek.c: (make_dv_pipeline),
14007 (make_vorbis_theora_pipeline), (query_rates),
14008 (query_positions_elems), (query_positions_pads), (do_seek):
14009 Make correct DV pipeline.
14011 2005-07-18 Andy Wingo <wingo@pobox.com>
14013 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
14014 default. Also because it's the only thing that really works. (This
14015 is used in the GConf elements).
14016 Use AS_LIBTOOL_TAGS.
14018 2005-07-18 Wim Taymans <wim@fluendo.com>
14020 * gst/playback/gstdecodebin.c: (remove_element_chain):
14021 * gst/playback/gstplaybin.c: (add_sink):
14022 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
14023 (gst_stream_info_set_mute):
14024 * gst/playback/gststreamselector.c:
14025 (gst_stream_selector_get_linked_pad),
14026 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
14027 More leak and compile fixes.
14029 2005-07-18 Wim Taymans <wim@fluendo.com>
14031 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14032 (query_rates), (query_positions_elems), (query_positions_pads),
14033 (do_seek), (seek_cb), (stop_seek):
14034 Updated seek example.
14036 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
14037 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
14038 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
14039 * gst/playback/gstplaybin.c: (add_sink):
14040 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
14041 (gst_stream_info_set_mute):
14042 Some refcount leak fixes.
14044 2005-07-16 Wim Taymans <wim@fluendo.com>
14046 * gst-libs/gst/audio/gstbaseaudiosink.c:
14047 (gst_base_audio_sink_render):
14048 Align samples even if we have roundoff errors in the
14049 timestamp conversion.
14051 2005-07-16 Wim Taymans <wim@fluendo.com>
14053 * docs/libs/tmpl/gstringbuffer.sgml:
14054 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14055 (query_rates), (query_positions_elems), (query_positions_pads),
14056 (update_scale), (do_seek):
14057 Updated seek example.
14059 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14060 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
14061 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
14062 (gst_ogg_demux_loop):
14063 Push out correct discont values.
14065 * ext/theora/theoradec.c: (theora_dec_src_convert),
14066 (theora_dec_sink_convert), (theora_dec_src_getcaps),
14067 (theora_dec_sink_event), (theora_handle_type_packet),
14068 (theora_handle_header_packet), (theora_dec_push),
14069 (theora_handle_data_packet), (theora_dec_chain),
14070 (theora_dec_change_state):
14071 Better timestamping.
14073 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
14074 (vorbis_dec_sink_event), (vorbis_dec_push),
14075 (vorbis_handle_data_packet), (vorbis_dec_chain):
14076 * ext/vorbis/vorbisdec.h:
14077 Better timestamping.
14079 * gst-libs/gst/audio/gstbaseaudiosink.c:
14080 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
14081 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
14082 Handle syncing on timestamps instead of sample offsets. Make
14083 use of DISCONT values as described in design docs.
14085 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14086 (gst_base_audio_src_get_time):
14087 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
14088 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
14089 (gst_ring_buffer_read):
14090 * gst-libs/gst/audio/gstringbuffer.h:
14091 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
14092 (gst_ximagesink_show_frame):
14093 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
14094 Correcly convert buffer timestamp to stream time.
14096 2005-07-16 Wim Taymans <wim@fluendo.com>
14098 * gst/audioconvert/gstaudioconvert.c:
14099 (gst_audio_convert_get_buffer):
14100 Timestamp buffers correctly.
14102 * gst/playback/gstplaybin.c: (gen_video_element):
14103 Make internal fakesink silent.
14105 2005-07-15 Wim Taymans <wim@fluendo.com>
14107 * gst/ffmpegcolorspace/Makefile.am:
14108 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14109 (gst_ffmpegcsp_caps_remove_format_info),
14110 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
14111 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
14112 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
14113 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
14114 Ported ffmpegcolorspace to basetransform.
14116 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
14117 * gst/volume/gstvolume.c: (volume_transform):
14120 2005-07-14 Wim Taymans <wim@fluendo.com>
14122 * gst/videotestsrc/Makefile.am:
14123 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
14124 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
14125 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
14126 (gst_videotestsrc_init), (gst_videotestsrc_event),
14127 (gst_videotestsrc_create), (gst_videotestsrc_start),
14128 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
14129 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14130 (gst_videotestsrc_get_property):
14131 * gst/videotestsrc/gstvideotestsrc.h:
14132 Make videotestsrc a pushsrc.
14134 2005-07-14 Wim Taymans <wim@fluendo.com>
14136 * gst/tcp/gstfdset.c: (gst_fdset_free):
14137 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
14138 (gst_multifdsink_add), (gst_multifdsink_remove),
14139 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
14140 (gst_multifdsink_remove_client_link),
14141 (gst_multifdsink_client_queue_data),
14142 (gst_multifdsink_client_queue_caps),
14143 (gst_multifdsink_client_queue_buffer),
14144 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
14145 (gst_multifdsink_stop):
14146 * gst/tcp/gstmultifdsink.h:
14149 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
14150 Also draw image when not from a pool.
14152 2005-07-14 Wim Taymans <wim@fluendo.com>
14154 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
14155 (mute_stream), (silence_stream):
14156 Small debug additions.
14158 2005-07-14 Wim Taymans <wim@fluendo.com>
14160 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
14161 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
14162 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
14163 Better error recovery, ignore unconnected pads and
14166 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
14168 * docs/libs/tmpl/gstaudio.sgml:
14169 * docs/libs/tmpl/gstcolorbalance.sgml:
14170 * docs/libs/tmpl/gstgconf.sgml:
14171 * docs/libs/tmpl/gstmixer.sgml:
14172 * docs/libs/tmpl/gstringbuffer.sgml:
14173 * docs/libs/tmpl/gsttuner.sgml:
14174 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14175 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14176 (gst_tcpclientsrc_class_init):
14177 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14178 (gst_tcpserversrc_class_init):
14179 * sys/v4l/gstv4lelement.c:
14180 more autistic cleanliness in functions/names/defines
14182 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
14185 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
14186 added manually to each Makefile.am so we are sure it goes
14187 *last* and doesn't add -L flags before linking in libs of our
14188 own, like, say, internal .la libs, that then accidentally pick
14189 up the installed copy.
14190 * docs/libs/Makefile.am:
14191 * ext/alsa/Makefile.am:
14192 * ext/cdparanoia/Makefile.am:
14193 * ext/gnomevfs/Makefile.am:
14194 * ext/libvisual/Makefile.am:
14195 * ext/ogg/Makefile.am:
14196 * ext/theora/Makefile.am:
14197 * ext/vorbis/Makefile.am:
14198 * gst-libs/gst/video/Makefile.am:
14199 * gst/adder/Makefile.am:
14200 * gst/audioconvert/Makefile.am:
14201 * gst/audiorate/Makefile.am:
14202 * gst/audioscale/Makefile.am:
14203 * gst/ffmpegcolorspace/Makefile.am:
14204 * gst/playback/Makefile.am:
14205 * gst/sine/Makefile.am:
14206 * gst/subparse/Makefile.am:
14207 * gst/tags/Makefile.am:
14208 * gst/tcp/Makefile.am:
14209 * gst/typefind/Makefile.am:
14210 * gst/videorate/Makefile.am:
14211 * gst/videoscale/Makefile.am:
14212 * gst/videotestsrc/Makefile.am:
14213 * gst/volume/Makefile.am:
14214 * sys/v4l/Makefile.am:
14215 * sys/ximage/Makefile.am:
14216 * sys/xvimage/Makefile.am:
14217 adapt properly to this change. This should make sure that
14218 plugins and libs properly link to the as-yet-uninstalled
14219 copies of stuff like libgstinterfaces and libgstvideo
14221 2005-07-13 Andy Wingo <wingo@pobox.com>
14223 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
14224 (gst_v4lsrc_fixate): Fixate on format as well.
14226 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
14227 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
14228 buffer points to it.
14229 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
14230 rather just doing X calls ourselves. Also fixes a memleak.
14232 2005-07-12 Andy Wingo <wingo@pobox.com>
14234 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
14235 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
14236 (gst_v4lsrc_create): Re-add the copy-mode property, default to
14237 TRUE to avoid deadlocks if an element holds on to our buffers.
14239 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
14241 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14242 (gst_sinesrc_init), (gst_sinesrc_create),
14243 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14244 (gst_sinesrc_start):
14245 * gst/sine/gstsinesrc.h:
14246 removing num-buffers property before moving it
14248 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
14251 use overridable ERROR_CFLAGS
14252 * docs/libs/gst-plugins-base-libs.types:
14253 * docs/libs/tmpl/gstringbuffer.sgml:
14254 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
14255 (gst_alsasink_class_init):
14256 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14257 (gst_alsasrc_class_init):
14258 * gst-libs/gst/audio/audio.h:
14259 * gst-libs/gst/audio/gstaudioclock.h:
14260 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
14261 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
14262 (gst_audio_filter_link), (gst_audio_filter_init),
14263 (gst_audio_filter_chain), (gst_audio_filter_set_property),
14264 (gst_audio_filter_get_property),
14265 (gst_audio_filter_class_add_pad_templates):
14266 * gst-libs/gst/audio/gstaudiofilter.h:
14267 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
14268 (gst_audio_filter_template_get_type),
14269 (gst_audio_filter_template_base_init),
14270 (gst_audio_filter_template_class_init),
14271 (gst_audio_filter_template_init),
14272 (gst_audio_filter_template_set_property),
14273 (gst_audio_filter_template_get_property), (plugin_init),
14274 (gst_audio_filter_template_setup),
14275 (gst_audio_filter_template_filter),
14276 (gst_audio_filter_template_filter_inplace):
14277 * gst-libs/gst/audio/gstaudiosink.c:
14278 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14279 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
14280 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14281 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14282 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
14283 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
14284 * gst-libs/gst/audio/gstaudiosink.h:
14285 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14286 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14287 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14288 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
14289 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
14290 (gst_audio_src_class_init), (gst_audio_src_init),
14291 (gst_audio_src_create_ringbuffer):
14292 * gst-libs/gst/audio/gstaudiosrc.h:
14293 * gst-libs/gst/audio/gstbaseaudiosink.c:
14294 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
14295 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
14296 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
14297 (gst_base_audio_sink_set_property),
14298 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
14299 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
14300 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
14301 (gst_base_audio_sink_create_ringbuffer),
14302 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
14303 * gst-libs/gst/audio/gstbaseaudiosink.h:
14304 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14305 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
14306 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
14307 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
14308 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
14309 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
14310 (gst_base_audio_src_event), (gst_base_audio_src_create),
14311 (gst_base_audio_src_create_ringbuffer),
14312 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
14313 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14314 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
14315 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
14316 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
14317 (gst_ring_buffer_debug_spec_caps),
14318 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
14319 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
14320 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
14321 (gst_ring_buffer_start), (gst_ring_buffer_pause),
14322 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
14323 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
14324 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
14325 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
14326 (gst_ring_buffer_clear):
14327 * gst-libs/gst/audio/gstringbuffer.h:
14328 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
14329 (gst_video_sink_class_init), (gst_video_sink_get_type):
14330 * gst-libs/gst/video/videosink.h:
14331 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14332 (gst_multifdsink_class_init),
14333 (gst_multifdsink_handle_client_write),
14334 (gst_multifdsink_change_state):
14335 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14336 (gst_tcpclientsink_setcaps):
14337 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14338 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
14339 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
14340 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
14341 (gst_ximagesink_send_pending_navigation),
14342 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
14343 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
14344 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
14345 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
14346 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
14347 (gst_xvimagesink_send_pending_navigation),
14348 (gst_xvimagesink_navigation_send_event),
14349 (gst_xvimagesink_set_xwindow_id),
14350 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
14351 (gst_xvimagesink_get_type):
14352 more macro splitting
14354 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14356 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
14357 plug a memleak, allows me to import 1479 albums in one go
14359 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14360 (vorbis_handle_type_packet), (vorbis_dec_chain),
14361 (vorbis_dec_change_state):
14362 fix some format strings
14364 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14366 * docs/libs/tmpl/gstcolorbalance.sgml:
14367 * docs/libs/tmpl/gstmixer.sgml:
14368 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
14369 (gst_alsasink_set_property), (gst_alsasink_get_property):
14370 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
14371 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
14372 add device property
14374 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
14376 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
14377 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
14378 (audiocast_register_listener), (audiocast_thread_run),
14379 (gst_gnomevfssrc_send_additional_headers_callback),
14380 (gst_gnomevfssrc_received_headers_callback),
14381 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
14382 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
14383 (gst_gnomevfssrc_get_size):
14384 add/clean up debugging
14385 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
14388 2005-07-07 Andy Wingo <wingo@pobox.com>
14390 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
14391 framerate. Need to get a handle on when exactly this function is
14394 * sys/v4l/v4lsrc_calls.h:
14395 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
14396 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
14397 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
14399 * sys/v4l/v4l_calls.h: Cast to V4lElement.
14400 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
14401 v4lelements are sources.
14403 * sys/v4l/gstv4lxoverlay.h:
14404 * sys/v4l/gstv4lxoverlay.c:
14405 * sys/v4l/gstv4ltuner.h:
14406 * sys/v4l/gstv4ltuner.c: Header loc fixen.
14408 * sys/v4l/gstv4lsrc.h:
14409 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
14410 PushSrc/BaseSrc. Removed most sync-related properties, videorate
14411 or something should handle that. Made a live source.
14413 * sys/v4l/gstv4lelement.h:
14414 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
14415 signals. Some cleanups.
14417 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
14419 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
14422 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
14425 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
14427 2005-07-07 Wim Taymans <wim@fluendo.com>
14429 * ext/theora/theoradec.c: (theora_get_query_types),
14430 (theora_dec_src_getcaps), (theora_dec_push):
14431 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
14432 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
14433 Remove deprecated/unused query types.
14435 2005-07-06 Wim Taymans <wim@fluendo.com>
14437 * ext/alsa/Makefile.am:
14438 * ext/alsa/gstalsaplugin.c: (plugin_init):
14439 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
14440 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
14441 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
14442 (gst_alsasrc_class_init), (gst_alsasrc_init),
14443 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
14444 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
14445 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
14446 (gst_alsasrc_reset):
14447 * ext/alsa/gstalsasrc.h:
14448 * gst-libs/gst/audio/Makefile.am:
14449 * gst-libs/gst/audio/gstaudiosink.c:
14450 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14451 (gst_audioringbuffer_start):
14452 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
14453 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
14454 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
14455 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
14456 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
14457 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
14458 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
14459 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
14460 * gst-libs/gst/audio/gstaudiosrc.h:
14461 * gst-libs/gst/audio/gstbaseaudiosink.c:
14462 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14463 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
14464 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
14465 * gst-libs/gst/audio/gstbaseaudiosrc.c:
14466 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
14467 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
14468 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
14469 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
14470 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
14471 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
14472 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
14473 (gst_baseaudiosrc_change_state):
14474 * gst-libs/gst/audio/gstbaseaudiosrc.h:
14475 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
14476 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
14477 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
14478 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
14479 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
14480 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
14481 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
14482 * gst-libs/gst/audio/gstringbuffer.h:
14483 Added audiosource base classes.
14484 Ported alsasrc, still very basic.
14486 2005-07-06 Wim Taymans <wim@fluendo.com>
14488 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
14489 (theora_dec_push), (theora_handle_data_packet):
14490 Prepare for better timestamp fix later.
14492 * gst/audioconvert/gstaudioconvert.c:
14493 List most accurate caps first
14495 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
14496 Use proper pad task function.
14498 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14499 (gst_xvimagesink_show_frame):
14500 Fix deadlock when alloc failed.
14502 2005-07-05 Andy Wingo <wingo@pobox.com>
14504 * ext/gnomevfs/gstgnomevfssrc.c:
14505 * gst/sine/gstsinesrc.c:
14506 * gst/tcp/gsttcpserversrc.c:
14507 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
14509 * sys/v4l/: Port from 0.8.
14511 * Many files: Null if we got it....
14513 2005-07-05 Andy Wingo <wingo@pobox.com>
14515 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
14516 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
14519 2005-07-05 Wim Taymans <wim@fluendo.com>
14522 * gst/tcp/Makefile.am:
14524 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
14525 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
14526 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
14527 (is_sync_frame), (gst_multifdsink_handle_client_write),
14528 (gst_multifdsink_render), (gst_multifdsink_start),
14529 (gst_multifdsink_stop), (gst_multifdsink_change_state):
14530 * gst/tcp/gstmultifdsink.h:
14531 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
14532 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
14533 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
14534 * gst/tcp/gsttcp.h:
14535 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
14536 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
14537 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
14538 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
14539 * gst/tcp/gsttcpclientsink.h:
14540 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
14541 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
14542 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
14543 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
14544 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
14545 * gst/tcp/gsttcpclientsrc.h:
14546 * gst/tcp/gsttcpplugin.c: (plugin_init):
14547 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
14548 * gst/tcp/gsttcpserversink.h:
14549 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
14550 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
14551 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
14552 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
14553 (gst_tcpserversrc_stop):
14554 * gst/tcp/gsttcpserversrc.h:
14555 * gst/tcp/gsttcpsink.c:
14556 * gst/tcp/gsttcpsink.h:
14557 * gst/tcp/gsttcpsrc.c:
14558 * gst/tcp/gsttcpsrc.h:
14559 Ported tcp plugins to 0.9.
14562 2005-07-05 Andy Wingo <wingo@pobox.com>
14564 * gst/playback/gstplaybasebin.c (fill_buffer):
14565 message_new_application fixen.
14567 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
14570 2005-07-04 Wim Taymans <wim@fluendo.com>
14572 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
14573 Set caps on output buffer.
14575 2005-07-04 Andy Wingo <wingo@pobox.com>
14577 * ext/gnomevfs/gstgnomevfssrc.c
14578 (gst_gnomevfssrc_received_headers_callback)
14579 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
14582 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
14583 No refcount leakage.
14585 * configure.ac: Enable -Werror.
14587 * ext/theora/theoradec.c (theora_dec_src_getcaps):
14588 * gst/audioconvert/bufferframesconvert.c
14589 (buffer_frames_convert_fixate):
14590 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
14591 (gst_audio_convert_fixate):
14592 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
14593 (gst_sinesrc_create): Fixate func changes.
14595 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14596 (gst_ximagesink_buffer_alloc): Unused var.
14598 2005-07-01 Andy Wingo <wingo@pobox.com>
14600 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
14601 getcaps to do explicit caps. Needs to be done in all decoders,
14602 possibly via a base class.
14604 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
14606 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
14607 caps on the sink pad, just rely on the pad template. Also, setting
14608 ANY caps on a pad is not valid because the caps are not fixed.
14610 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
14611 caps on the buffer, and get the width from the desired_caps if
14613 (gst_ximagesink_renegotiate_size): Implement via setting the
14614 desired_caps on the ximagesink.
14615 (gst_ximagesink_setcaps): Only reset the width of the player if it
14616 wasn't already set. Not sure if this is right.
14617 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
14619 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
14620 that the user wants. NULL unless the window has been resized.
14622 * gst/volume/gstvolume.c (volume_transform): Adapt to
14623 basetransform refcount changes.
14625 2005-07-01 Andy Wingo <wingo@pobox.com>
14627 * gst/videoscale/gstvideoscale.c:
14628 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
14629 from BaseTransform, implements a transform_caps. Removed dead code
14630 including some PAR stuff that was never reached -- should probably
14631 be added back somehow.
14633 2005-07-01 Andy Wingo <wingo@pobox.com>
14635 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
14638 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
14641 * docs/libs/Makefile.am:
14642 * docs/libs/gst-plugins-libs.types:
14643 * ext/alsa/Makefile.am:
14644 * ext/alsa/gstalsamixer.h:
14645 * ext/alsa/gstalsamixeroptions.h:
14646 * ext/alsa/gstalsamixertrack.h:
14647 * gst-libs/gst/Makefile.am:
14648 * gst-libs/gst/colorbalance/.cvsignore:
14649 * gst-libs/gst/colorbalance/Makefile.am:
14650 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
14651 * gst-libs/gst/colorbalance/colorbalance.c:
14652 * gst-libs/gst/colorbalance/colorbalance.h:
14653 * gst-libs/gst/colorbalance/colorbalance.vcproj:
14654 * gst-libs/gst/colorbalance/colorbalancechannel.c:
14655 * gst-libs/gst/colorbalance/colorbalancechannel.h:
14656 * gst-libs/gst/interfaces/Makefile.am:
14657 * gst-libs/gst/interfaces/colorbalance.c:
14658 (gst_color_balance_class_init):
14659 * gst-libs/gst/interfaces/colorbalance.h:
14660 * gst-libs/gst/interfaces/interfaces-marshal.list:
14661 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
14662 * gst-libs/gst/interfaces/mixer.h:
14663 * gst-libs/gst/interfaces/mixeroptions.h:
14664 * gst-libs/gst/interfaces/navigation.c:
14665 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
14666 * gst-libs/gst/interfaces/tuner.h:
14667 * gst/volume/Makefile.am:
14668 * gst/volume/gstvolume.c:
14669 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
14670 * sys/ximage/Makefile.am:
14671 * sys/ximage/ximagesink.c:
14672 * sys/xvimage/Makefile.am:
14673 * sys/xvimage/xvimagesink.c:
14674 fold in all interfaces into an interfaces dir, preserving CVS
14677 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14679 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14680 Fix build after riff changes.
14682 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14684 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
14685 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
14686 (gst_riff_create_video_template_caps),
14687 (gst_riff_create_audio_template_caps),
14688 (gst_riff_create_iavs_template_caps):
14689 * gst-libs/gst/riff/riff-media.h:
14690 * gst-libs/gst/riff/riff-read.h:
14691 * gst-libs/gst/riff/riff.c: (gst_riff_init):
14692 Add gst_riff_init() to initialize the debug category, instead
14693 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
14695 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14697 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
14698 Oops, I shouldn't apply hacks.
14700 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14702 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
14703 Remove pad_loop function which doesn't work.
14705 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14707 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
14708 Send EOS when deactivating.
14709 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
14710 (check_queue), (queue_threshold_reached), (queue_out_of_data),
14711 (gen_preroll_element), (probe_triggered), (mute_stream),
14712 (silence_stream), (new_decoded_pad), (setup_substreams),
14713 (set_active_source):
14714 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
14715 (remove_sinks), (add_sink):
14716 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
14717 Change for new probe API.
14719 2005-06-29 Wim Taymans <wim@fluendo.com>
14721 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
14722 * gst-libs/gst/audio/gstbaseaudiosink.c:
14723 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
14724 (gst_baseaudiosink_change_state):
14725 * gst-libs/gst/audio/gstbaseaudiosink.h:
14726 * gst-libs/gst/audio/gstringbuffer.c:
14727 (gst_ringbuffer_set_callback):
14728 Fix compilation error.
14729 Ringbuffer starts out as not running.
14730 Free our clock in dispose.
14731 When releasing the ringbuffer we need to renegotiate so
14732 clear the pad caps.
14734 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
14738 * docs/Makefile.am:
14739 * docs/libs/Makefile.am:
14740 * docs/libs/gst-plugins-libs-docs.sgml:
14741 * docs/libs/gst-plugins-libs-sections.txt:
14742 * docs/libs/gst-plugins-libs.types:
14743 * docs/libs/tmpl/gstaudio.sgml:
14744 * docs/libs/tmpl/gstcolorbalance.sgml:
14745 * docs/libs/tmpl/gstringbuffer.sgml:
14746 * gst-libs/gst/audio/gstringbuffer.c:
14747 (gst_ringbuffer_set_callback):
14748 reinstate gtk-doc docs for plugin libs
14750 2005-06-28 Wim Taymans <wim@fluendo.com>
14752 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14753 (gst_ogg_demux_init):
14754 Removed pad loop function.
14756 2005-06-28 Wim Taymans <wim@fluendo.com>
14758 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
14759 If we're building a chain we are not in an error case
14760 when we queue a buffer.
14762 2005-06-28 Andy Wingo <wingo@pobox.com>
14764 * *.c: Don't cast to GstObject before reffing/unreffing.
14766 2005-06-27 Andy Wingo <wingo@pobox.com>
14768 * gst/videotestsrc/gstvideotestsrc.c
14769 (gst_videotestsrc_activate_push): Activation API changes.
14771 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
14772 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
14773 they have refs on the decodebin.
14775 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
14777 (gst_ogg_pad_typefind): Don't leak a pad ref.
14778 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
14779 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
14780 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
14782 2005-06-27 Edward Hervey <edward@fluendo.com>
14784 * ext/theora/theoradec.c: (theora_dec_change_state):
14785 re-arranged call to parent's state change in order to avoid locks (or
14788 2005-06-26 Edward Hervey <edward@fluendo.com>
14790 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14791 2nd argument of 'unknow-type' signal is a GstCaps and not a
14794 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
14795 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
14796 Set the worker thread's running flag to TRUE before starting the
14798 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
14799 Catch a failure to add typefind to the bin.
14801 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
14803 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
14804 (gst_sinesrc_init), (gst_sinesrc_create),
14805 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
14806 (gst_sinesrc_start):
14807 * gst/sine/gstsinesrc.h:
14808 add num-buffers and timestamp-offset properties
14809 * gst/videotestsrc/gstvideotestsrc.c:
14810 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
14811 (gst_videotestsrc_get_property):
14812 add timestamp-offset property
14814 2005-06-23 Christian Schaller <uraeus@gnome.org>
14816 * configure.ac: add videorate
14817 * gst-plugins-base.spec.in: add videorate
14819 2005-06-23 Wim Taymans <wim@fluendo.com>
14821 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14822 (gst_videorate_getcaps), (gst_videorate_setcaps),
14823 (gst_videorate_event), (gst_videorate_chain):
14824 Fixed videorate, fixating an already fixated caps is not
14827 2005-06-23 Wim Taymans <wim@fluendo.com>
14830 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
14831 Buffer on caps is not boxed anymore.
14833 2005-06-22 Wim Taymans <wim@fluendo.com>
14835 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
14836 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
14837 Set buffers on caps as miniobjects and not as boxed.
14839 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14844 === release 0.9.1 ===
14846 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
14867 updates for release
14869 2005-06-09 Andy Wingo <wingo@pobox.com>
14871 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
14873 2005-06-09 Andy Wingo <wingo@pobox.com>
14876 * gst-libs/gst/Makefile.am:
14877 * gst-libs/gst/net/Makefile.am:
14878 Add gstnet to build.
14880 2005-06-09 Andy Wingo <wingo@pobox.com>
14882 * gst-libs/gst/gconf/gconf.c:
14883 * gst/playback/test.c:
14884 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
14887 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
14889 * ext/theora/theoraenc.c (theora_enc_chain):
14890 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
14892 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
14895 2005-06-02 Wim Taymans <wim@fluendo.com>
14897 * gst-libs/gst/net/Makefile.am:
14898 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
14899 * pkgconfig/gstreamer-libs.pc.in:
14900 Added net stuff, version net lib.
14902 2005-06-02 Wim Taymans <wim@fluendo.com>
14904 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
14905 (query_rates), (query_positions_elems), (query_positions_pads),
14907 Updated seek example.
14909 2005-06-02 Andy Wingo <wingo@pobox.com>
14911 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
14912 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
14915 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
14916 remove the typefind, the bin dispose will do it for us. When it's
14917 removed and unreffed, the signal handler will be disconnected,
14919 (unlinked): It's too difficult to disconnect from unlinked
14920 handlers, as they are on pads not elements. Just punt if the pads
14921 aren't grandkids of the bin.
14923 2005-06-02 Wim Taymans <wim@fluendo.com>
14926 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14927 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
14928 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
14929 * ext/theora/theoradec.c: (theora_dec_src_query),
14930 (theora_handle_data_packet):
14931 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
14932 (theora_enc_chain):
14933 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
14934 (vorbis_handle_data_packet):
14935 * gst/audioconvert/bufferframesconvert.c:
14936 (buffer_frames_convert_chain):
14937 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14938 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
14939 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
14940 (gst_ffmpegcsp_chain):
14941 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
14942 (gst_videorate_getcaps), (gst_videorate_setcaps),
14943 (gst_videorate_event), (gst_videorate_chain):
14944 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
14945 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
14946 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14947 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
14948 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
14949 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
14950 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
14951 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
14952 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
14953 Cleanups and buffer alloc.
14955 2005-05-31 Wim Taymans <wim@fluendo.com>
14957 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
14958 Don't try to call the delay method when the device is not
14961 2005-05-31 Wim Taymans <wim@fluendo.com>
14963 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
14964 Get actual segment size and buffer size after opening
14967 2005-05-30 Wim Taymans <wim@fluendo.com>
14969 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
14970 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
14971 Also FLUSH upstream, makes the loop function exit faster.
14973 * ext/theora/theoradec.c: (theora_dec_src_query):
14974 Some more debug info in the query.
14976 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14977 (gst_ximagesink_setcaps):
14978 Release lock on par error, better error reporting.
14980 2005-05-26 Wim Taymans <wim@fluendo.com>
14982 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
14983 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
14984 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
14985 Clear chains in READY
14986 Queue packets until the chain is activated.
14988 2005-05-25 Wim Taymans <wim@fluendo.com>
14990 * gst-libs/gst/audio/gstaudiosink.c:
14991 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
14992 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
14993 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
14994 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
14995 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
14996 (gst_audiosink_create_ringbuffer):
14997 * gst-libs/gst/audio/gstbaseaudiosink.c:
14998 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
14999 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15000 (gst_baseaudiosink_set_property), (build_linear_format),
15001 (debug_spec_caps), (debug_spec_buffer),
15002 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15003 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15004 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15005 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15006 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15007 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15008 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15009 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15010 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15011 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15012 (wait_segment), (gst_ringbuffer_commit),
15013 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15014 (gst_ringbuffer_clear):
15015 Various small cleanups.
15017 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15018 (gst_audio_convert_change_state):
15019 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
15020 No need to take the locks anymore.
15022 2005-05-25 Wim Taymans <wim@fluendo.com>
15024 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
15025 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
15026 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
15028 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
15029 (group_destroy), (group_commit), (queue_overrun),
15030 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
15031 (mute_stream), (new_decoded_pad), (setup_substreams),
15032 (setup_source), (mute_group_type), (set_active_source),
15033 (gst_play_base_bin_change_state):
15034 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
15035 (gen_video_element), (gen_text_element), (gen_audio_element),
15036 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
15037 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
15038 (gst_stream_info_dispose), (gst_stream_info_set_mute):
15039 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
15040 Some playbin cleanups mostly refcounting sloppyness.
15042 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15044 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
15045 Work with streaming input.
15047 2005-05-25 Wim Taymans <wim@fluendo.com>
15049 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15050 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15051 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15052 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
15053 No need to take the STREAM lock anymore.
15055 2005-05-25 Wim Taymans <wim@fluendo.com>
15057 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
15058 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
15059 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
15060 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
15061 (gst_ogg_demux_sink_activate):
15062 * ext/theora/theoradec.c: (theora_dec_src_event),
15063 (theora_handle_comment_packet), (theora_dec_chain),
15064 (theora_dec_change_state):
15065 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15066 (vorbis_handle_data_packet), (vorbis_dec_chain),
15067 (vorbis_dec_change_state):
15068 Remove STREAM locks as they are taken in core now.
15069 Never set bogus granulepos on vorbis/theora.
15070 Fix leaks in theoradec tag parsing.
15072 2005-05-25 Wim Taymans <wim@fluendo.com>
15074 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
15075 Fix memleaks, GST_BUFFER_DATA() is not freed.
15077 2005-05-25 Wim Taymans <wim@fluendo.com>
15079 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
15080 Open non-blocking, set to blocking mode afterwards to avoid
15081 lockups when audio device is busy.
15083 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15085 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
15086 This can't be good.
15088 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15090 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15091 (gst_audio_convert_chain), (gst_audio_convert_link_src),
15092 (gst_audio_convert_setcaps):
15093 Implement instant setup switching.
15095 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15097 * gst/playback/gstplaybasebin.c: (probe_triggered):
15098 Fix missing unlock.
15099 * gst/playback/gstplaybin.c: (add_sink):
15100 First add, then link (otherwise pad link fails).
15102 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15104 * examples/Makefile.am:
15105 fix buildbot (make distcheck)
15107 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15109 * gst/playback/gstplaybin.c: (gen_vis_element):
15110 Remove some wrong code. Doesn't work yet.
15112 2005-05-19 Wim Taymans <wim@fluendo.com>
15114 * gst-libs/gst/net/Makefile.am:
15115 * gst-libs/gst/net/README:
15116 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
15117 (gst_netbuffer_class_init), (gst_netbuffer_init),
15118 (gst_netbuffer_finalize), (gst_netbuffer_copy),
15119 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
15120 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
15121 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
15122 * gst-libs/gst/net/gstnetbuffer.h:
15123 Added buffer subclass to store extra to/from addresses for
15124 network sources/sinks.
15126 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15128 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
15129 Don't lock an unassigned variable.
15131 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15133 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
15134 Increase buffer for video, decrease buffer for other media types.
15135 * gst/playback/gstplaybin.c: (gen_video_element),
15136 (gen_audio_element):
15137 Change names for debugging purposes.
15139 2005-05-18 Wim Taymans <wim@fluendo.com>
15141 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15142 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15143 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
15144 (gst_ffmpegcsp_chain):
15145 Enable buffer alloc passthrough if the source and dest
15146 formats are the same.
15148 2005-05-17 Wim Taymans <wim@fluendo.com>
15150 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
15151 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
15152 (gst_ogg_demux_chain_unlocked):
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_change_state):
15157 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15158 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15159 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
15160 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
15161 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
15162 (gst_ffmpegcsp_get_property):
15163 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
15164 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
15165 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
15166 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
15167 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
15168 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
15169 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
15170 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
15171 Leak fixes in oggdemux.
15172 Some cleanups in audioconvert.
15173 Make passthrough work along with buffer_alloc etc.
15174 Make buffer_alloc and buffer recycling actually work in
15177 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
15179 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
15180 make the compiler happy
15182 2005-05-17 Wim Taymans <wim@fluendo.com>
15184 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
15185 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
15186 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
15187 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
15188 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
15189 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
15190 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
15191 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
15192 (gst_xvimagesink_set_xwindow_id):
15193 * sys/xvimage/xvimagesink.h:
15194 Port xvimagesink to new MiniObject.
15196 2005-05-17 Wim Taymans <wim@fluendo.com>
15198 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
15199 (gst_audiofilter_chain):
15200 * gst-libs/gst/audio/gstaudiosink.c:
15201 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15202 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15203 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15204 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15205 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15206 (gst_audiosink_create_ringbuffer):
15207 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15208 (gst_audio_convert_caps_remove_format_info),
15209 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15210 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15211 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15212 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15213 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15214 Fix passthrough in ffmpegcolorspace.
15215 Fix memset in audiosink on wrong memory.
15217 2005-05-16 David Schleef <ds@schleef.org>
15219 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
15222 2005-05-16 David Schleef <ds@schleef.org>
15224 Port from GstData to GstMiniObject.
15225 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
15226 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
15227 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
15228 (gst_ogg_mux_collected):
15229 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
15230 * ext/theora/theoradec.c: (theora_handle_comment_packet),
15231 (theora_handle_data_packet):
15232 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
15233 (theora_set_header_on_caps), (theora_enc_chain):
15234 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
15235 (vorbis_handle_comment_packet):
15236 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
15237 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
15238 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
15239 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
15240 * gst/audioconvert/gstaudioconvert.c:
15241 (gst_audio_convert_get_buffer):
15242 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
15243 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
15244 (mute_stream), (silence_stream):
15245 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
15246 * gst/volume/gstvolume.c: (volume_transform):
15247 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
15248 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
15249 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
15250 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
15251 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
15252 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
15253 (gst_ximagesink_buffer_alloc):
15254 * sys/ximage/ximagesink.h:
15256 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15258 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15259 (fill_buffer), (check_queue), (queue_threshold_reached),
15260 (queue_out_of_data):
15261 * gst/playback/gstplaybasebin.h:
15262 Post buffer-fullness on the bus.
15264 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15266 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15268 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15269 (group_commit), (probe_triggered), (setup_source),
15270 (gst_play_base_bin_change_state):
15271 * gst/playback/gstplaybasebin.h:
15272 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15273 (gst_play_bin_init), (remove_sinks), (setup_sinks),
15274 (gst_play_bin_change_state):
15275 Move setup_output_pads into a virtual function, remove
15276 group-switch (no longer needed) and redirect (handled by bus
15279 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15281 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15282 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
15283 (get_active_group), (get_building_group), (group_destroy),
15284 (group_commit), (check_queue), (queue_overrun),
15285 (queue_threshold_reached), (queue_out_of_data),
15286 (gen_preroll_element), (remove_groups), (unknown_type),
15287 (add_element_stream), (no_more_pads), (probe_triggered),
15288 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
15289 (setup_substreams), (setup_source), (finish_source),
15290 (prepare_output), (muted_group_change_state),
15291 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
15292 (gst_play_base_bin_change_state):
15293 * gst/playback/gstplaybasebin.h:
15294 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15295 (gst_play_bin_init), (gst_play_bin_set_property),
15296 (gen_video_element), (gen_text_element), (gen_audio_element),
15297 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
15298 (gst_play_bin_change_state):
15299 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
15300 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
15301 (stream_info_change_state), (gst_stream_info_set_mute),
15302 (gst_stream_info_get_property):
15303 * gst/playback/gststreaminfo.h:
15304 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
15305 (gst_stream_selector_get_linked_pad),
15306 (gst_stream_selector_getcaps),
15307 (gst_stream_selector_get_linked_pads),
15308 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
15309 * gst/playback/gststreamselector.h:
15310 Rough port of playbin. Needs some more work, but is mostly done,
15311 and uses a few locks in important places, which should make stuff
15312 like chain-switches clean. Still uses GST_STATE() in a few places,
15313 which isn't all that good an idea, subtitles/elements disabled
15314 because no elements to test with and thus probably broken, query
15315 and event handling moved to GstBin, internal thread removed
15316 alltogether because the pipeline does that for us now. Can play
15317 Ogg/Vorbis files. Haven't tested anything else yet.
15319 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15321 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
15322 Do no-more-pads (needed for autoplugging).
15324 2005-05-10 Andy Wingo <wingo@pobox.com>
15326 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
15327 message to the bus with the tags. Still not sent downstream tho.
15329 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
15331 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
15332 avoid refcounting hassles.
15334 2005-05-09 Andy Wingo <wingo@pobox.com>
15336 * gst/volume/Makefile.am:
15337 * gst/volume/demo.c
15338 * gst/volume/gstvolume.h
15339 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
15340 basetransform. Probably need an audio filter base class.
15342 2005-05-09 Wim Taymans <wim@fluendo.com>
15344 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
15345 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
15346 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
15347 (gst_vorbisenc_chain):
15348 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15349 (gst_audio_convert_caps_remove_format_info),
15350 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15351 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15352 Make caps writable before writing to it.
15353 Fix negotiation in audioconvert some more.
15355 2005-05-09 Wim Taymans <wim@fluendo.com>
15357 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
15358 (gst_videorate_getcaps), (gst_videorate_setcaps),
15359 (gst_videorate_event), (gst_videorate_chain):
15360 Better negotiation.
15362 2005-05-09 Wim Taymans <wim@fluendo.com>
15364 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15365 (gst_videorate_getcaps), (gst_videorate_setcaps),
15366 (gst_videorate_blank_data), (gst_videorate_init),
15367 (gst_videorate_event), (gst_videorate_chain),
15368 (gst_videorate_change_state):
15369 Port videorate, do a better job at negotiation while we're at
15372 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
15377 * examples/Makefile.am:
15378 * gst-libs/gst/audio/Makefile.am:
15379 * gst-libs/gst/riff/Makefile.am:
15380 * gst-libs/gst/tag/Makefile.am:
15381 * gst-libs/gst/video/Makefile.am:
15382 Fixups for missing variables.
15384 2005-05-09 Wim Taymans <wim@fluendo.com>
15386 * examples/seeking/seek.c: (make_theora_pipeline),
15387 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
15388 (query_rates), (query_positions_elems), (query_positions_pads),
15389 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
15390 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
15391 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
15392 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
15393 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
15394 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
15395 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15396 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15397 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15398 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
15399 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
15400 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
15401 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
15402 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
15403 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
15404 (theora_dec_src_convert), (theora_dec_sink_convert),
15405 (theora_dec_src_query), (theora_dec_sink_query),
15406 (theora_dec_src_event), (theora_dec_sink_event),
15407 (theora_handle_comment_packet), (theora_handle_type_packet),
15408 (theora_handle_header_packet), (theora_handle_data_packet),
15409 (theora_dec_chain):
15410 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
15411 (vorbis_dec_convert), (vorbis_dec_src_query),
15412 (vorbis_dec_sink_query), (vorbis_dec_src_event),
15413 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15414 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15415 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15416 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
15417 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
15418 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
15419 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15420 (gst_play_bin_query):
15421 * gst/playback/test3.c: (update_scale):
15422 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
15423 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
15424 * gst/subparse/gstsubparse.c: (gst_subparse_init):
15425 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15426 (gst_videotestsrc_src_query):
15427 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
15428 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
15429 (paint_hline_YUV9):
15430 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
15431 Port to new query API.
15433 Cleanups in x[v]imagesink
15435 2005-05-09 Andy Wingo <wingo@pobox.com>
15437 * ext/alsa/gstalsasink.h:
15438 * ext/gnomevfs/gstgnomevfssrc.c:
15439 (gst_gnomevfssrc_get_icy_metadata):
15440 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
15441 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
15442 * ext/theora/theoradec.c (theora_dec_src_query)
15443 (theora_dec_src_event, theora_dec_sink_event)
15444 (theora_handle_comment_packet, theora_handle_data_packet):
15445 * ext/theora/theoraenc.c (theora_enc_chain):
15446 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
15447 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
15448 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
15449 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
15451 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
15452 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
15453 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
15454 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
15455 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
15456 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
15457 (paint_setup_xBGR8888, paint_setup_RGBx8888)
15458 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
15459 (paint_setup_RGB565, paint_setup_xRGB1555):
15460 * gst/videotestsrc/videotestsrc.h:
15461 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
15462 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
15463 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
15466 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
15467 gst_pad_query_position. Fixes oggdemux.
15469 2005-05-08 David Schleef <ds@schleef.org>
15471 * configure.ac: Require liboil.
15472 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
15474 * gst/videotestsrc/videotestsrc.c:
15475 * gst/videotestsrc/videotestsrc.h:
15477 2005-05-06 Wim Taymans <wim@fluendo.com>
15479 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15480 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15481 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15482 Well, unreffing a buffer right before pushing it is asking
15485 2005-05-06 Christian Schaller <uraeus@gnome.org>
15487 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
15489 2005-05-06 Wim Taymans <wim@fluendo.com>
15491 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15492 (gst_audio_convert_caps_remove_format_info),
15493 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
15494 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15495 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15496 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
15497 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
15498 * gst/sine/Makefile.am:
15499 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
15500 (gst_sinesrc_class_init), (gst_sinesrc_init),
15501 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
15502 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
15503 (gst_sinesrc_update_freq):
15504 * gst/sine/gstsinesrc.h:
15505 * gst/tcp/gstmultifdsink.c:
15506 * sys/xvimage/xvimagesink.c:
15507 Fixed negotiation wrt _peer_get_caps()
15511 2005-05-06 Wim Taymans <wim@fluendo.com>
15513 * gst-libs/gst/audio/gstaudiosink.c:
15514 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15515 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15516 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15517 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15518 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15519 (gst_audiosink_create_ringbuffer):
15520 * gst-libs/gst/audio/gstbaseaudiosink.c:
15521 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15522 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15523 (gst_baseaudiosink_set_property), (build_linear_format),
15524 (debug_spec_caps), (debug_spec_buffer),
15525 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15526 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15527 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15528 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15529 * gst-libs/gst/audio/gstbaseaudiosink.h:
15530 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15531 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15532 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
15533 (gst_ringbuffer_play), (gst_ringbuffer_pause),
15534 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
15535 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
15536 (wait_segment), (gst_ringbuffer_commit),
15537 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
15538 (gst_ringbuffer_clear):
15539 * gst-libs/gst/audio/gstringbuffer.h:
15540 Make the base audiosink return an error when there is no
15541 audiobuffer negotiated.
15543 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15546 Disable cdparanoia until someone ports it!
15548 2005-05-06 Wim Taymans <wim@fluendo.com>
15550 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15551 (gst_ogg_demux_sink_activate):
15552 And revert after wingo's revert.. sigh..
15554 2005-05-05 Andy Wingo <wingo@pobox.com>
15556 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
15558 * configure.ac: Return audiorate and subparse from the ghetto.
15559 Re-enable -Wall -Werror.
15560 * gst/subparse/gstsubparse.c:
15561 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
15562 or chain-based. Cleaned up a bit. Not tested.
15564 2005-05-05 Christian Schaller <christian@fluendo.com>
15566 * Makefile.am: remove stuff that is not building
15567 * configure.ac: remove stuff that is not building
15568 * examples/Makefile.am: remove stuff that is not building
15569 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
15570 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
15571 * sys/Makefile.am: remove stuff that is not building
15572 * testsuite/Makefile.am: remove stuff that is not building
15574 2005-05-05 Andy Wingo <wingo@pobox.com>
15576 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
15577 * gst-libs/gst/tag/gstvorbistag.c:
15578 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
15579 * gst/adder/gstadder.h:
15580 * gst/audioconvert/gstchannelmix.c:
15581 (gst_audio_convert_fill_one_other):
15582 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
15583 (gst_audiorate_init), (gst_audiorate_chain):
15584 * gst/playback/gstplaybasebin.c: (setup_source):
15585 * gst/playback/test3.c: (update_scale):
15603 2005-05-05 Wim Taymans <wim@fluendo.com>
15605 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15606 (gst_audio_convert_caps_remove_format_info),
15607 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
15608 (gst_audio_convert_change_state), (gst_audio_convert_channels):
15609 * gst/videotestsrc/gstvideotestsrc.c:
15610 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
15611 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
15612 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
15613 (gst_videotestsrc_init), (gst_videotestsrc_loop):
15614 Don't ignore _push() return values.
15615 Make sure no processing is done when shutting down.
15616 Videotestsrc pad activation fix.
15618 2005-05-05 Wim Taymans <wim@fluendo.com>
15620 * gst/adder/Makefile.am:
15621 * gst/adder/gstadder.c: (gst_adder_setcaps),
15622 (gst_adder_class_init), (gst_adder_init),
15623 (gst_adder_request_new_pad), (gst_adder_collected),
15624 (gst_adder_change_state):
15625 * gst/adder/gstadder.h:
15626 Ported adder as an example of a mixer element using
15627 collect pads. Needs more negotiation work.
15629 2005-05-05 Wim Taymans <wim@fluendo.com>
15631 * ext/theora/theoradec.c: (_inc_granulepos),
15632 (theora_dec_src_event), (theora_dec_sink_event),
15633 (theora_handle_comment_packet), (theora_handle_type_packet),
15634 (theora_handle_header_packet), (theora_handle_data_packet),
15635 (theora_dec_chain):
15636 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15637 (gst_theora_enc_init), (theora_enc_sink_setcaps),
15638 (theora_push_buffer), (theora_push_packet),
15639 (theora_enc_sink_event), (theora_enc_chain),
15640 (theora_enc_change_state), (theora_enc_set_property),
15641 (theora_enc_get_property):
15642 Added stream lock to decoder so that we can serialize
15644 More theoraenc porting, recover from errors, do clean
15647 2005-05-05 Wim Taymans <wim@fluendo.com>
15649 * ext/ogg/Makefile.am:
15651 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15652 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
15654 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15655 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
15656 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
15657 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
15658 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
15659 (gst_ogg_mux_change_state):
15662 2005-05-05 Wim Taymans <wim@fluendo.com>
15664 * docs/design-audiosinks.txt:
15665 * gst-libs/gst/audio/TODO:
15666 * gst-libs/gst/audio/gstaudiosink.c:
15667 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15668 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15669 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15670 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15671 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15672 (gst_audiosink_create_ringbuffer):
15673 * gst-libs/gst/audio/gstbaseaudiosink.c:
15674 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15675 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15676 (gst_baseaudiosink_set_property), (build_linear_format),
15677 (debug_spec_caps), (debug_spec_buffer),
15678 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15679 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15680 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15681 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15682 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15683 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15684 (gst_ringbuffer_release), (gst_ringbuffer_play),
15685 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15686 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15687 (gst_ringbuffer_set_sample), (wait_segment),
15688 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15689 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15690 More work on the audiosink, mostly debugging and a race in
15693 2005-04-28 Wim Taymans <wim@fluendo.com>
15695 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
15696 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
15697 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
15698 (vorbis_dec_src_query), (vorbis_dec_src_event),
15699 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15700 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15701 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
15702 Don't crap out when seeking back to position 0.
15704 2005-04-28 Wim Taymans <wim@fluendo.com>
15706 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
15707 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
15708 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
15709 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
15710 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
15711 Make audio sink configurable, use alsasink as default.
15713 2005-04-28 Wim Taymans <wim@fluendo.com>
15715 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
15716 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
15717 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
15718 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
15719 (vorbis_dec_change_state):
15720 * ext/vorbis/vorbisdec.h:
15721 Refactor, use STREAM_LOCK.
15723 2005-04-28 Wim Taymans <wim@fluendo.com>
15725 * ext/theora/theoradec.c: (_inc_granulepos),
15726 (theora_dec_sink_event), (theora_handle_comment_packet),
15727 (theora_handle_type_packet), (theora_handle_header_packet),
15728 (theora_handle_data_packet), (theora_dec_chain),
15729 (theora_dec_change_state):
15730 Refactor a bit, use STREAM_LOCK.
15732 2005-04-28 Wim Taymans <wim@fluendo.com>
15734 * ext/alsa/Makefile.am:
15735 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
15736 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
15737 (gst_alsa_link), (gst_alsa_close_audio):
15738 * ext/alsa/gstalsaplugin.c: (plugin_init):
15739 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
15740 (gst_alsasink_dispose), (gst_alsasink_base_init),
15741 (gst_alsasink_class_init), (gst_alsasink_init),
15742 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
15743 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
15744 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
15745 (gst_alsasink_reset):
15746 * ext/alsa/gstalsasink.h:
15747 Implement alsasink with simple open/write/close API.
15748 Make alsa dir build by disabling compilation of code.
15750 2005-04-28 Wim Taymans <wim@fluendo.com>
15752 * gst-libs/gst/audio/Makefile.am:
15753 * gst-libs/gst/audio/audio.h:
15754 * gst-libs/gst/audio/audioclock.c:
15755 * gst-libs/gst/audio/audioclock.h:
15756 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
15757 (gst_audio_clock_class_init), (gst_audio_clock_init),
15758 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
15759 * gst-libs/gst/audio/gstaudioclock.h:
15760 * gst-libs/gst/audio/gstaudiosink.c:
15761 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15762 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15763 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
15764 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
15765 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
15766 (gst_audiosink_create_ringbuffer):
15767 * gst-libs/gst/audio/gstbaseaudiosink.c:
15768 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
15769 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
15770 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
15771 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
15772 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
15773 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
15774 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
15775 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
15776 * gst-libs/gst/audio/gstbaseaudiosink.h:
15777 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
15778 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
15779 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
15780 (gst_ringbuffer_release), (gst_ringbuffer_play),
15781 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
15782 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
15783 (gst_ringbuffer_set_sample), (wait_segment),
15784 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
15785 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
15786 * gst-libs/gst/audio/gstringbuffer.h:
15787 Make ringbuffer faster and more simple by removing the locks
15788 in the playback thread.
15789 Add sample accurate playback based on buffer sample offsets.
15790 Make the baseaudiosink provide a clock.
15791 Parse caps in the base class.
15792 Correctly handle seeking, flushing and state changes.
15794 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
15797 * gst/audioconvert/Makefile.am:
15798 * gst/audioscale/Makefile.am:
15799 Fix part of the build. Come on guys, autogen didn't even work :)
15801 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15804 * gst-libs/gst/Makefile.am:
15805 * gst-libs/gst/media-info/.cvsignore:
15806 * gst-libs/gst/media-info/Makefile.am:
15807 * gst-libs/gst/media-info/README:
15808 * gst-libs/gst/media-info/media-info-priv.c:
15809 * gst-libs/gst/media-info/media-info-priv.h:
15810 * gst-libs/gst/media-info/media-info-test.c:
15811 * gst-libs/gst/media-info/media-info.c:
15812 * gst-libs/gst/media-info/media-info.h:
15813 * gst-libs/gst/media-info/media-info.vcproj:
15814 * pkgconfig/Makefile.am:
15815 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
15816 * pkgconfig/gstreamer-media-info.pc.in:
15817 Remove media-info, which is also successed by playbin (see Totem
15820 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15823 * examples/Makefile.am:
15824 * examples/gstplay/.cvsignore:
15825 * examples/gstplay/Makefile.am:
15826 * examples/gstplay/player.c:
15827 * gst-libs/gst/Makefile.am:
15828 * gst-libs/gst/play/.cvsignore:
15829 * gst-libs/gst/play/Makefile.am:
15830 * gst-libs/gst/play/play.c:
15831 * gst-libs/gst/play/play.h:
15832 * gst-libs/gst/play/play.vcproj:
15833 * pkgconfig/Makefile.am:
15834 * pkgconfig/gstreamer-play-uninstalled.pc.in:
15835 * pkgconfig/gstreamer-play.pc.in:
15836 Remove libgstplay, playbin is now the official successor.
15838 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15841 * gst-libs/gst/Makefile.am:
15842 * gst-libs/gst/xwindowlistener/Makefile.am:
15843 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15844 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
15845 Remove deprecated xwindowlistener (I've moved xwindowlistening
15846 in the v4l/v4l2 plugins over to serverside).
15848 2005-04-25 David Schleef <ds@schleef.org>
15850 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
15851 to examples/dynparams. Examples do not belong interspersed with
15853 * examples/dynparams/demo-dparams.c:
15854 * gst/sine/Makefile.am:
15855 * gst/sine/demo-dparams.c:
15857 2005-04-25 David Schleef <ds@schleef.org>
15859 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
15860 * gst-libs/gst/audio/Makefile.am:
15861 * gst-libs/gst/riff/Makefile.am:
15862 * gst-libs/gst/tag/Makefile.am:
15863 * gst-libs/gst/video/Makefile.am:
15864 * gst-libs/gst/xwindowlistener/Makefile.am:
15866 Convert to 0.9 API, seems to work:
15867 * sys/ximage/Makefile.am:
15868 * sys/ximage/ximagesink.c:
15870 2005-04-24 David Schleef <ds@schleef.org>
15872 Link plugins against libraries:
15873 * ext/alsa/Makefile.am:
15874 * gst/tcp/Makefile.am:
15876 Remove asm code that should be in liboil
15877 * gst/videoscale/Makefile.am:
15878 * gst/videoscale/videoscale_x86_asm.s:
15880 gettext wants these checked in:
15896 2005-04-24 David Schleef <ds@schleef.org>
15898 Convert gst_main() to g_main_loop_run()
15899 * gst/playback/decodetest.c: (main):
15900 * gst/playback/test2.c: (main):
15901 * gst/playback/test3.c: (main):
15902 * gst/playback/test4.c: (main):
15904 Link plugins against libraries:
15905 * ext/libvisual/Makefile.am:
15906 * sys/xvimage/Makefile.am:
15908 2005-04-24 David Schleef <ds@schleef.org>
15910 * configure.ac: Remove idct and resample libs
15911 * gst-libs/gst/Makefile.am: same
15913 Remove usage of gst_library_load():
15914 * ext/alsa/gstalsaplugin.c: (plugin_init):
15915 * ext/libvisual/visual.c: (plugin_init):
15916 * ext/ogg/gstogg.c: (plugin_init):
15917 * ext/theora/theora.c: (plugin_init):
15918 * ext/vorbis/vorbis.c: (plugin_init):
15919 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
15920 * gst/audioscale/gstaudioscale.c:
15921 * gst/adder/gstadder.c: (plugin_init):
15922 * gst/audioconvert/plugin.c: (plugin_init):
15923 * sys/ximage/ximagesink.c: (plugin_init):
15924 * sys/xvimage/xvimagesink.c: (plugin_init):
15925 * gst/tcp/gsttcpplugin.c: (plugin_init):
15927 Link plugins against libraries:
15928 * ext/ogg/Makefile.am:
15929 * ext/theora/Makefile.am:
15930 * ext/vorbis/Makefile.am:
15931 * gst/audioconvert/Makefile.am:
15933 Create proper libraries:
15934 * gst-libs/gst/riff/Makefile.am:
15935 * gst-libs/gst/audio/Makefile.am:
15936 * gst-libs/gst/video/Makefile.am:
15938 Move resample library to audioscale plugin directory:
15939 * gst-libs/gst/resample/Makefile.am:
15940 * gst-libs/gst/resample/README:
15941 * gst-libs/gst/resample/dtof.c:
15942 * gst-libs/gst/resample/dtos.c:
15943 * gst-libs/gst/resample/functable.c:
15944 * gst-libs/gst/resample/private.h:
15945 * gst-libs/gst/resample/resample.c:
15946 * gst-libs/gst/resample/resample.h:
15947 * gst-libs/gst/resample/resample.vcproj:
15948 * gst-libs/gst/resample/test.c:
15949 * gst/audioscale/Makefile.am:
15950 * gst/audioscale/README:
15951 * gst/audioscale/dtof.c:
15952 * gst/audioscale/dtos.c:
15953 * gst/audioscale/functable.c:
15954 * gst/audioscale/private.h:
15955 * gst/audioscale/resample.c:
15956 * gst/audioscale/resample.h:
15957 * gst/audioscale/test.c:
15959 Move tagedit library to gst-libs:
15960 * gst-libs/gst/tag/Makefile.am:
15961 * gst-libs/gst/tag/gstid3tag.c:
15962 * gst-libs/gst/tag/gsttagediting.c:
15963 * gst-libs/gst/tag/gsttageditingprivate.h:
15964 * gst-libs/gst/tag/gstvorbistag.c:
15965 * gst/tags/Makefile.am:
15966 * gst/tags/gstid3tag.c:
15967 * gst/tags/gstvorbistag.c:
15969 Fix for core changes:
15970 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
15971 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
15972 (gst_sinesrc_getrange):
15974 2005-04-23 David Schleef <ds@schleef.org>
15976 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
15977 in gst-plugins in a long time, and properly belongs in liboil.
15978 * gst-libs/gst/idct/Makefile.am:
15979 * gst-libs/gst/idct/README:
15980 * gst-libs/gst/idct/dct.h:
15981 * gst-libs/gst/idct/doieee:
15982 * gst-libs/gst/idct/fastintidct.c:
15983 * gst-libs/gst/idct/floatidct.c:
15984 * gst-libs/gst/idct/idct.c:
15985 * gst-libs/gst/idct/idct.h:
15986 * gst-libs/gst/idct/idtc.vcproj:
15987 * gst-libs/gst/idct/ieeetest.c:
15988 * gst-libs/gst/idct/intidct.c:
15990 2005-04-20 Wim Taymans <wim@fluendo.com>
15992 * docs/design-audiosinks.txt:
15993 * gst-libs/gst/audio/Makefile.am:
15994 * gst-libs/gst/audio/TODO:
15995 * gst-libs/gst/audio/gstaudiosink.c:
15996 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
15997 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
15998 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
15999 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
16000 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
16001 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
16002 (gst_audiosink_class_init), (gst_audiosink_init),
16003 (gst_audiosink_create_ringbuffer):
16004 * gst-libs/gst/audio/gstaudiosink.h:
16005 * gst-libs/gst/audio/gstbaseaudiosink.c:
16006 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
16007 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
16008 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
16009 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
16010 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
16011 (gst_baseaudiosink_create_ringbuffer),
16012 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
16013 * gst-libs/gst/audio/gstbaseaudiosink.h:
16014 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
16015 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
16016 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
16017 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
16018 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
16019 (gst_ringbuffer_play), (gst_ringbuffer_pause),
16020 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
16021 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
16022 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
16023 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
16024 * gst-libs/gst/audio/gstringbuffer.h:
16025 An attempt at a set of audio base classes together with some
16028 2005-04-20 Wim Taymans <wim@fluendo.com>
16030 * gst/audioconvert/Makefile.am:
16031 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
16032 (gst_audio_convert_caps_remove_format_info),
16033 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
16034 (gst_audio_convert_channels):
16035 Link against audio libs.
16036 Fix audio convert plugin.
16038 2005-04-20 Wim Taymans <wim@fluendo.com>
16040 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
16041 (gst_ogg_demux_sink_activate):
16042 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
16043 (theora_set_header_on_caps), (theora_enc_sink_event),
16044 (theora_enc_chain):
16045 Fix theora encoder.
16047 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16049 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
16050 * gst/playback/gstdecodebin.c: (find_compatibles):
16051 Work with staticpadtemplates in elementfactories.
16053 2005-04-12 Wim Taymans <wim@fluendo.com>
16055 * gst/playback/README:
16056 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
16057 (compare_ranks), (print_feature), (gst_decode_bin_init),
16058 (dynamic_create), (dynamic_free), (find_compatibles),
16059 (mimetype_is_raw), (close_pad_link), (got_redirect),
16060 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
16061 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
16062 (gst_decode_bin_change_state):
16063 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16064 (gst_play_base_bin_init), (group_destroy), (group_commit),
16065 (check_queue), (queue_overrun), (queue_threshold_reached),
16066 (queue_out_of_data), (gen_preroll_element), (unknown_type),
16067 (new_decoded_pad), (setup_subtitle), (gen_source_element),
16068 (got_redirect), (setup_source), (play_base_eos),
16069 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
16070 (gst_play_base_bin_remove_element):
16071 * gst/playback/gstplaybasebin.h:
16072 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16073 (gst_play_bin_init), (gst_play_bin_dispose),
16074 (gst_play_bin_set_property), (gen_video_element),
16075 (gen_text_element), (gen_audio_element), (remove_sinks),
16076 (gst_play_bin_send_event):
16077 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
16078 (stream_info_change_state), (gst_stream_info_set_mute):
16079 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16080 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
16081 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
16082 (gst_stream_selector_chain):
16083 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
16085 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
16086 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
16087 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16088 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
16089 Raw and crude port of decodebin.
16090 Make playbin compile.
16092 2005-04-06 Wim Taymans <wim@fluendo.com>
16094 * ext/gnomevfs/Makefile.am:
16095 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
16096 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16097 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
16098 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
16099 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
16100 (gst_gnomevfssrc_stop):
16101 * ext/ogg/Makefile.am:
16102 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
16103 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
16104 * ext/theora/Makefile.am:
16105 * ext/theora/theoradec.c: (_inc_granulepos),
16106 (theora_dec_sink_event), (theora_dec_chain):
16107 * ext/vorbis/Makefile.am:
16108 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
16109 (vorbis_dec_sink_event), (vorbis_dec_chain):
16110 * gst-libs/gst/audio/Makefile.am:
16111 * sys/xvimage/Makefile.am:
16112 Make gnomevfssrc extend the source base class.
16113 Fix linking against libs in various plugins.
16115 2005-04-06 Andy Wingo <wingo@pobox.com>
16117 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
16120 * configure.ac: Add check and AC_SUBST for libgstbase.
16122 2005-03-31 Wim Taymans <wim@fluendo.com>
16124 * examples/seeking/Makefile.am:
16125 * examples/seeking/cdparanoia.c: (main):
16126 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
16127 (play_cb), (pause_cb), (stop_cb), (main):
16128 * examples/seeking/playbin.c:
16129 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
16130 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
16131 (make_sid_pipeline), (make_vorbis_pipeline),
16132 (make_theora_pipeline), (make_vorbis_theora_pipeline),
16133 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
16134 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
16135 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
16136 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
16138 * examples/seeking/spider_seek.c:
16139 * examples/seeking/vorbisfile.c:
16140 * ext/gnomevfs/Makefile.am:
16141 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
16142 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
16143 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
16144 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
16145 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
16146 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
16147 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
16148 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16150 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
16151 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
16152 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
16153 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
16154 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
16155 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
16156 (gst_ogg_pad_event), (gst_ogg_pad_reset),
16157 (gst_ogg_demux_factory_filter), (compare_ranks),
16158 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
16159 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
16160 (gst_ogg_chain_new), (gst_ogg_chain_free),
16161 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
16162 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
16163 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
16164 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
16165 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
16166 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
16167 (gst_ogg_demux_get_prev_page),
16168 (gst_ogg_demux_deactivate_current_chain),
16169 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
16170 (gst_ogg_demux_bisect_forward_serialno),
16171 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
16172 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
16173 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
16174 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
16175 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
16176 (gst_ogg_demux_change_state), (gst_ogg_print):
16177 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16178 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
16179 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16180 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
16181 (gst_ogg_mux_loop):
16182 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
16183 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
16184 (theora_dec_src_convert), (theora_dec_sink_convert),
16185 (theora_dec_src_query), (theora_dec_src_event),
16186 (theora_dec_sink_event), (theora_dec_chain),
16187 (theora_dec_change_state):
16188 * ext/theora/theoraenc.c: (gst_theora_enc_init),
16189 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
16190 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
16191 (theora_enc_change_state):
16192 * ext/vorbis/Makefile.am:
16193 * ext/vorbis/oggvorbisenc.c:
16194 * ext/vorbis/oggvorbisenc.h:
16195 * ext/vorbis/vorbis.c: (plugin_init):
16196 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
16197 (vorbis_dec_src_query), (vorbis_dec_src_event),
16198 (vorbis_dec_sink_event), (vorbis_dec_chain),
16199 (vorbis_dec_change_state):
16200 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
16201 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
16202 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16203 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
16204 (gst_vorbisenc_change_state):
16205 * ext/vorbis/vorbisenc.h:
16206 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
16207 * gst-libs/gst/audio/audioclock.c:
16208 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
16209 (gst_audiofilter_init), (gst_audiofilter_chain):
16210 * gst-libs/gst/audio/testchannels.c: (main):
16211 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
16212 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
16213 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
16214 (gmip_find_track_streaminfo), (gmip_find_track_format):
16215 * gst-libs/gst/media-info/media-info.c:
16216 (gst_media_info_read_idler):
16217 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
16218 (gst_play_get_all_by_interface):
16219 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
16220 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
16221 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
16222 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
16223 (gst_riff_parse_info):
16224 * gst-libs/gst/riff/riff-read.h:
16225 * gst-libs/gst/riff/riff.c: (plugin_init):
16226 * gst-libs/gst/video/Makefile.am:
16227 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
16228 (gst_videosink_class_init), (gst_videosink_get_type):
16229 * gst-libs/gst/video/videosink.h:
16230 * gst/audioconvert/bufferframesconvert.c:
16231 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
16232 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
16233 * gst/audioconvert/channelmixtest.c: (main):
16234 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
16235 (gst_audio_convert_chain),
16236 (gst_audio_convert_caps_remove_format_info),
16237 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
16238 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
16239 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
16240 (gst_audio_convert_buffer_to_default_format),
16241 (gst_audio_convert_buffer_from_default_format),
16242 (gst_audio_convert_channels):
16243 * gst/audioconvert/gstchannelmix.h:
16244 * gst/ffmpegcolorspace/avcodec.h:
16245 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16246 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16247 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
16248 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
16249 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
16250 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
16251 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16252 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
16253 (mpeg_video_type_find), (mpeg_video_stream_type_find),
16255 * gst/videotestsrc/gstvideotestsrc.c:
16256 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
16257 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
16258 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
16259 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
16260 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
16261 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
16262 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
16263 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
16264 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
16265 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
16266 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
16267 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
16268 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
16269 (gst_xvimagesink_navigation_send_event),
16270 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
16271 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
16272 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16273 * sys/xvimage/xvimagesink.h:
16274 Plugin port to 0.9, ogg/theora playback should work in the seek
16276 Removed old examples.
16277 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
16278 explained in 0.9 TODO doc.
16281 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
16303 * testsuite/Makefile.am:
16304 remove a whole bunch of plugins. This module now contains a set
16305 of free reference plugins/elements as agreed.
16307 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
16310 hunting season on 0.9 is now OPEN
16312 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16314 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16315 Kick the hell out of gcc for not warning me about a symbol conflict.
16317 2005-02-22 Luca Ognibene <luogni@tin.it>
16319 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16321 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
16322 Don't leak caps string (fixes #168134)
16324 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
16325 (gst_jpegenc_init), (gst_jpegenc_finalize),
16326 (gst_jpegenc_change_state):
16327 Don't leak line buffers and context struct (fixes #168133).
16329 2005-02-21 Tim-Philipp Müller <tim at centricular dot net>
16332 * ext/dirac/gstdiracdec.cc:
16333 (gst_diracdec_chain):
16334 Since dirac 0.5.0 the framerate in dirac is expressed as a
16335 rational number. Fix build and up requirement to 0.5.0, and
16336 also pass parameters to gst_diracdec_link in the right order
16339 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
16341 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
16342 * ext/faad/gstfaad.h:
16343 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
16344 certain invalid muxed streams, where some packets will contain
16345 junk after decoder data. Partially fixes #149158.
16347 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
16348 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
16349 Make sure we only write to writable buffers
16351 2005-02-20 Tim-Philipp Müller <tim at centricular dot net>
16353 * gst-libs/gst/riff/riff-media.c:
16354 (gst_riff_create_audio_caps_with_data):
16355 Do actually fix invalid RIFF fmt header values for alaw
16356 and mulaw audio instead of just saying so.
16358 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16359 Give gst_riff_create_audio_caps_with_data() a chance to
16360 fix up broken format header fields before extracting any
16361 parameters from the header. (fixes #167633)
16363 2005-02-19 Martin Holters <martin.holters@gmx.de>
16365 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16367 * gst/audioconvert/bufferframesconvert.c:
16368 (buffer_frames_convert_link):
16369 Don't leak othercaps. (fixes #167878)
16371 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
16374 * ext/libvisual/visual.c: (gst_visual_srclink),
16375 (gst_visual_change_state):
16376 Support libvisual 0.2.0.
16378 2005-02-18 Tim-Philipp Müller <tim at centricular dot net>
16380 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
16381 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
16382 Use same rowstrides for I420 as used everywhere else.
16384 2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
16386 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16387 Declare variables at beginning of block and make gcc-2.95 happy
16388 (fixes # 167482, patch by Gergely Nagy).
16390 * gst/tcp/gsttcpclientsrc.c:
16391 * gst/tcp/gsttcpclientsrc.h:
16392 Move some includes into the header, so that struct sockaddr_in is
16393 defined when it should be defined on FreeBSD as well (fixes
16396 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16397 Don't pass uninitialised values to setsockopt() here either.
16399 2005-02-17 Luca Ognibene <luogni at tin dot it>
16401 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
16403 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
16404 Don't pass uninitialised values to setsockopt(). (fixes #167704)
16406 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16408 * gst/playback/gstplaybin.c: (add_sink):
16409 Invert bin_add/link order to workaround deadlock in opt.
16411 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16413 * gst/modplug/gstmodplug.cc:
16414 Add missing break causing position queries to fail.
16416 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16418 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
16419 Granpos can apparently be -1, which screws up calculations...
16421 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
16423 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
16424 (gst_ximagesink_send_pending_navigation),
16425 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
16426 (gst_ximagesink_init):
16427 * sys/ximage/ximagesink.h:
16428 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
16429 (gst_xvimagesink_send_pending_navigation),
16430 (gst_xvimagesink_navigation_send_event),
16431 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
16432 * sys/xvimage/xvimagesink.h:
16433 Use a mutex protected list to marshal navigation
16434 events into the stream thread from whichever thread
16437 2005-02-15 Tim-Philipp Müller <tim at centricular dot net>
16439 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
16440 Display current position and track length; misc. clean-ups.
16442 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
16443 (speed_init), (speed_chain):
16444 Add query function, so that the stream length and current position
16445 get adjusted when queried (note that current position queries may
16446 still be wrong if the audio sink returns values based on buffer
16447 timestamps instead of passing on the query).
16449 2005-02-13 Benjamin Otte <otte@gnome.org>
16451 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
16452 (gst_audio_convert_channels):
16453 create channel conversion matrix when linking
16454 * gst/audioconvert/.cvsignore:
16455 * gst/audioconvert/Makefile.am:
16456 * gst/audioconvert/channelmixtest.c: (main):
16457 add (ugly) test that ensures stereo <=> mono conversion works
16460 2005-02-13 Benjamin Otte <otte@gnome.org>
16462 * gst/audioconvert/gstchannelmix.h:
16463 include missing header file
16464 * gst/audioconvert/gstchannelmix.c:
16465 (gst_audio_convert_fill_compatible):
16466 use same sign for both channels when converting to/from compatible
16467 channel. Previously used different signs made the signals cancel
16468 each other out and appear like silence. (fixes #167269)
16470 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16472 * gst/ffmpegcolorspace/avcodec.h:
16473 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16474 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
16475 (gst_ffmpegcsp_avpicture_fill):
16476 * gst/ffmpegcolorspace/imgconvert.c:
16477 Convert to and from YV12 (fixes #156379).
16479 2005-02-12 Julien MOUTTE <julien@moutte.net>
16481 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
16482 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16483 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16484 (gst_ximagesink_expose), (gst_ximagesink_set_property),
16485 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
16486 methods from chain and negotiation and vice versa (Fixes #166142).
16487 * sys/ximage/ximagesink.h: Add stream_lock.
16488 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16489 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16490 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16491 (gst_xvimagesink_expose): Check for xcontext before trying to link.
16493 2005-02-12 Tim-Philipp Müller <tim at centricular dot net>
16495 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
16496 Don't send "Hey! You gave me a NULL pointer you naughty person" as
16497 error message when we can't open the DVD device (when dvdnav_open()
16498 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
16499 the above). Send something more useful instead (fixes #167117).
16501 2005-02-11 Julien MOUTTE <julien@moutte.net>
16503 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
16504 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
16505 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
16506 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
16507 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
16508 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
16509 methods from chain and negotiation and vice versa (Fixes #166142).
16510 Fix a possible bug of images in the buffer pool being discarded because
16511 we are looking at the wrong geometry.
16512 * sys/xvimage/xvimagesink.h: Add stream_lock.
16514 2005-02-11 David Schleef <ds@schleef.org>
16516 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
16517 unsigned int. (fixes #167128)
16519 2005-02-11 David Schleef <ds@schleef.org>
16521 * gst/librfb/Makefile.am: Testing stuff before committing is
16522 for wimps... and people with fast machines. Fix stupid
16525 2005-02-11 David Schleef <ds@schleef.org>
16527 * configure.ac: Pull in librfb from my CVS tree, because it is
16528 too small and annoying to be separate. Move rfbsrc plugin
16531 * ext/librfb/Makefile.am:
16532 * ext/librfb/gstrfbsrc.c:
16533 * gst/librfb/Makefile.am:
16534 * gst/librfb/gstrfbsrc.c:
16535 * gst/librfb/rfb.c:
16536 * gst/librfb/rfb.h:
16537 * gst/librfb/rfbbuffer.c:
16538 * gst/librfb/rfbbuffer.h:
16539 * gst/librfb/rfbbytestream.c:
16540 * gst/librfb/rfbbytestream.h:
16541 * gst/librfb/rfbcontext.h:
16542 * gst/librfb/rfbdecoder.c:
16543 * gst/librfb/rfbdecoder.h:
16544 * gst/librfb/rfbutil.h:
16546 2005-02-10 Tim-Philipp Müller <tim at centricular dot net>
16548 * gst/speed/Makefile.am:
16549 * gst/speed/demo-mp3.c: (main):
16550 * gst/speed/filter.func:
16551 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
16552 (speed_class_init), (speed_init), (speed_chain_int16),
16553 (speed_chain_float32), (speed_chain), (speed_set_property),
16554 (speed_get_property), (speed_change_state):
16555 * gst/speed/gstspeed.h:
16556 Fix speed element and make it chain-based (fixes #156467),
16557 and make it handle more than one channel.
16559 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
16561 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
16562 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
16563 (gst_dtsdec_chain), (gst_dtsdec_change_state):
16564 * ext/dts/gstdtsdec.h:
16565 Don't clobber the stack constructing the channels array.
16566 Make the element chain-based. DTS tracks can now be played.
16568 2005-02-09 Tim-Philipp Müller <tim at centricular dot net>
16570 * gst-libs/gst/audio/multichannel.h:
16571 * gst-libs/gst/gconf/gconf.h:
16572 * gst-libs/gst/idct/idct.h:
16573 * gst-libs/gst/media-info/media-info-priv.h:
16574 * gst-libs/gst/play/play.h:
16575 * gst-libs/gst/resample/private.h:
16576 * gst-libs/gst/resample/resample.h:
16577 * gst-libs/gst/riff/riff-ids.h:
16578 * gst-libs/gst/video/video.h:
16579 * gst-libs/gst/video/videosink.h:
16580 Add G_BEGIN_DECLS and G_END_DECLS around headers where
16581 missing, so that they work when included from C++ code.
16583 2005-02-09 David Schleef <ds@schleef.org>
16585 * testsuite/gst-lint: Check for non-statically scoped
16586 parent_class variables. This won't be a problem once
16587 plugins are loaded with RTLD_LOCAL.
16589 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16591 * ext/mplex/gstmplexibitstream.cc:
16594 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16596 * ext/ogg/gstogmparse.c:
16597 * gst/debug/gstnavigationtest.c:
16598 Die, thou faulty symbol pollutors (non-static parent_class).
16600 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16602 * ext/mplex/gstmplexibitstream.cc:
16603 Fix event handling (#165525).
16605 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16607 * ext/mikmod/gstmikmod.c:
16608 * gst/modplug/gstmodplug.cc:
16609 Add missing endianness to template (fixes #165509).
16611 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16613 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
16614 Fix wrong order of reading of optional bytes (#165290).
16616 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16618 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16619 Implement FILLER event awareness.
16621 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16623 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
16624 Fix track calculations (#166208).
16626 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16628 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16630 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
16631 * ext/libpng/gstpngenc.c:
16632 Fix byte-order, use proper fixed caps. Fixes #164197.
16634 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
16639 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
16640 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
16641 Don't push buffers if the src pad isn't negotiated yet.
16643 * gst/audioconvert/gstaudioconvert.c:
16644 (gst_audio_convert_buffer_to_default_format),
16645 (gst_audio_convert_buffer_from_default_format):
16646 Add support for 24-bit width.
16648 * gst/dvdlpcmdec/.cvsignore:
16649 * gst/dvdlpcmdec/Makefile.am:
16650 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
16651 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
16652 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
16653 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
16655 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
16656 New decoder for rearranging DVD LPCM into our audio/x-raw-int
16657 format. Needs support for the channels maps if someone can find
16658 a DVD LPCM track with > 2 channels.
16660 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
16661 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
16662 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
16663 * gst/mpegstream/gstdvddemux.h:
16664 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
16665 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
16666 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
16667 * gst/mpegstream/gstmpegdemux.h:
16668 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
16669 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
16670 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
16671 (gst_mpeg_parse_handle_src_query),
16672 (gst_mpeg_parse_handle_src_event):
16673 Use audio/x-dvd-lpcm for LPCM output.
16676 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
16678 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16680 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
16681 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
16682 Add BGRA handling (#165736).
16684 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
16686 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16688 * gst/law/alaw-decode.c: (alawdec_link):
16689 * gst/law/alaw-encode.c: (alawenc_link):
16690 * gst/law/mulaw-decode.c: (mulawdec_link):
16691 * gst/law/mulaw-encode.c: (mulawenc_link):
16692 Fix caps memleaks (#166600).
16694 2005-02-08 Tim-Philipp Müller <tim at centricular dot net>
16696 * ext/tarkin/mem.h:
16697 * ext/tarkin/wavelet.h:
16698 * ext/tarkin/yuv.h:
16699 * gst/ffmpegcolorspace/avcodec.h:
16700 Include "_stdint.h" instead of <stdint.h>. Fixes build on
16701 systems that don't have stdint.h, like Solaris9 (fixes #166631).
16703 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16705 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
16706 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
16707 (gst_xvimagesink_change_state):
16708 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
16709 Xv video (and thereby regenerate Xv colourkey) in clear() so
16710 that PLAY -> READY -> PLAY works (fixes #162504).
16712 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16714 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
16715 Switch to list instead of range, since MJPEG-devices really just
16716 support decimations, not any size.
16718 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16719 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
16720 (gst_mpeg2dec_reset), (free_all_buffers),
16721 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
16722 * ext/mpeg2dec/gstmpeg2dec.h:
16723 The libmpeg2 user-allocated buffer management is awkward,
16724 to say the least. Hopefully this fixes things.
16726 2005-02-04 Andy Wingo <wingo@pobox.com>
16728 * gst/audioconvert/bufferframesconvert.c
16729 (buffer_frames_convert_fixate): New function, fixates to 256
16730 frames per buffer by default. (Much better than 1.)
16731 (buffer_frames_convert_init): Set the fixate function for both src
16733 (buffer_frames_convert_link): After success setting nonfixed caps,
16734 get the negotiated caps so we can know how many buffer-frames it
16735 will be. No idea how this worked at all before.
16737 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
16739 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
16740 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
16741 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
16742 (handle_sequence), (handle_picture):
16743 * ext/mpeg2dec/gstmpeg2dec.h:
16744 Rearrange buffer tracking and refcounting and refactor
16745 a little for readability.
16747 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
16748 * sys/v4l/gstv4l.c: (plugin_init):
16749 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
16750 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
16751 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
16752 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
16753 * sys/v4l/gstv4ljpegsrc.h:
16754 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
16755 * sys/v4l/v4l_calls.h:
16756 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
16757 (gst_v4lsrc_get_fps):
16758 * sys/v4l/v4lsrc_calls.h:
16759 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
16760 you jpeg inside rgb frames" driver.
16761 Don't error in the v4lsrc link function, just return
16764 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16766 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
16767 (gst_qcamsrc_open):
16768 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
16770 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16772 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16773 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
16775 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16777 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
16778 Reset negotiated state on PAUSED->READY.
16780 2005-02-02 David Schleef <ds@schleef.org>
16782 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
16783 whereever possible. (Fixes #165997)
16784 * examples/capsfilter/capsfilter1.c: (main):
16785 * examples/dynparams/filter.c: (create_ui):
16786 * examples/seeking/cdparanoia.c: (get_track_info), (main):
16787 * examples/seeking/chained.c: (main):
16788 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
16789 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
16790 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
16791 (make_mpeg_pipeline), (make_mpegnt_pipeline):
16792 * examples/seeking/spider_seek.c: (make_spider_pipeline):
16793 * examples/switch/switcher.c: (main):
16794 * ext/dv/demo-play.c: (main):
16795 * ext/faad/gstfaad.c: (gst_faad_change_state):
16796 * ext/mad/gstmad.c: (gst_mad_chain):
16797 * ext/smoothwave/demo-osssrc.c: (main):
16798 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
16799 (gst_gconf_render_bin_from_description),
16800 (gst_gconf_get_default_audio_sink),
16801 (gst_gconf_get_default_video_sink),
16802 (gst_gconf_get_default_audio_src),
16803 (gst_gconf_get_default_video_src),
16804 (gst_gconf_get_default_visualization_element):
16805 * gst/level/demo.c: (main):
16806 * gst/level/plot.c: (main):
16807 * gst/playback/gstplaybin.c: (gen_video_element),
16808 (gen_audio_element):
16809 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
16810 * gst/playondemand/demo-mp3.c: (setup_pipeline):
16811 * gst/sine/demo-dparams.c: (main):
16812 * gst/spectrum/demo-osssrc.c: (main):
16813 * gst/speed/demo-mp3.c: (main):
16814 * gst/volume/demo.c: (main):
16815 * testsuite/embed/embed.c: (main):
16817 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16819 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
16820 (gst_tcpclientsink_finalize):
16821 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16822 (gst_tcpclientsrc_finalize):
16823 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16824 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
16825 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16826 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
16827 Don't leak the hostname when shutting down.
16828 In tcpserversrc, take a copy of the default hostname.
16830 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16832 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
16833 Set caps to systemstream=TRUE.
16835 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16837 * testsuite/Makefile.am:
16838 Fix more OSX buildbots.
16840 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
16842 * ext/mpeg2dec/gstmpeg2dec.c:
16843 Don't send things to NULL PAD_PEERs
16845 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
16846 Copy-on-write the incoming buffer.
16848 * gst/mpegstream/gstdvddemux.h:
16849 * gst/mpegstream/gstmpegclock.h:
16850 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
16851 (normal_seek), (gst_mpeg_demux_handle_src_event):
16852 * gst/mpegstream/gstmpegdemux.h:
16853 * gst/mpegstream/gstmpegpacketize.h:
16854 * gst/mpegstream/gstmpegparse.c:
16855 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
16856 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
16857 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
16858 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
16859 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
16860 * gst/mpegstream/gstmpegparse.h:
16861 * gst/mpegstream/gstrfc2250enc.h:
16862 Various changes to the way time is computed that make seeking and
16863 total time estimation much better here.
16864 Use G_BEGIN/END_DECLS instead of __cplusplus
16866 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
16867 Use gst_buffer_stamp instead of only copying the TIMESTAMP
16869 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16871 * gst/subparse/gstsubparse.c:
16874 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16876 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16877 (theora_enc_chain), (theora_enc_change_state):
16878 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
16879 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
16880 (gst_vorbisenc_change_state):
16881 * ext/vorbis/vorbisenc.h:
16882 Set granulepos and timestamp correctly for streams not
16883 starting at 0, taking into account the initial delay.
16885 2005-01-31 Tim-Philipp Müller <tim at centricular dot net>
16887 * gst/mpegstream/gstdvddemux.c:
16888 Add audio/x-dts to audio pad template caps
16890 2005-01-30 David Schleef <ds@schleef.org>
16892 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
16893 (create_context), (gst_polypsink_link): Fix silly endianness
16894 bug. Add some debugging. Remove float from caps; it doesn't
16895 work. Attempt to get remote audio working.
16897 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16899 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
16902 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16904 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
16905 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
16906 (gst_avi_demux_stream_data):
16907 * gst/avi/gstavidemux.h:
16908 Invert DIB images. Fixes #132341.
16910 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16912 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16913 (gst_ffmpegcsp_chain):
16914 D'oh, reference the palette data, not the palette structure.
16915 Fixes color distortion in #132341.
16917 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16919 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
16920 PAR can be non-fixed when not provided as argument (#162626).
16922 2005-01-29 David Moore <dcm@acm.org>
16924 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16926 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16927 (gst_qtdemux_loop_header):
16928 Re-apply patch from #142272 that allows non-seekable sources,
16929 re-proposed by Daniel Drake <dsd@gentoo.org>.
16931 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16933 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
16934 Use the src template for creating the src pad (#162330).
16936 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16939 * ext/musepack/Makefile.am:
16940 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
16941 (gst_musepackdec_init), (gst_musepackdec_dispose),
16942 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
16943 (gst_musepack_stream_init), (gst_musepackdec_loop),
16944 (gst_musepackdec_change_state):
16945 * ext/musepack/gstmusepackdec.cpp:
16946 * ext/musepack/gstmusepackdec.h:
16947 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
16948 (gst_musepack_reader_read), (gst_musepack_reader_seek),
16949 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
16950 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
16951 * ext/musepack/gstmusepackreader.cpp:
16952 * ext/musepack/gstmusepackreader.h:
16953 Update to 1.1 API (#165446).
16955 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16960 2005-01-28 Andy Wingo <wingo@pobox.com>
16962 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
16963 to reflect a different dubious internet source. Add a reference
16964 and some commentary.
16966 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16968 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
16969 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
16970 * gst/playback/gststreamselector.h:
16971 Be more selective when we're redoing caps negotiation from
16972 within the chain function on a stream change.
16974 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16978 * ext/amrnb/Makefile.am:
16979 * ext/amrnb/amrnb.c: (plugin_init):
16980 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
16981 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
16982 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
16983 (gst_amrnbdec_state_change):
16984 * ext/amrnb/amrnbdec.h:
16985 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
16986 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
16987 (gst_amrnbparse_init), (gst_amrnbparse_formats),
16988 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
16989 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
16990 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
16991 * ext/amrnb/amrnbparse.h:
16992 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
16993 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16994 Add AMR-NB/-WB raw formats.
16995 * ext/alsa/gstalsa.c: (gst_alsa_link):
16996 Keep valid time when changing format.
16997 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16998 (qtdemux_parse_trak):
16999 Add some more format-specific options (#140141, #143555, #155163).
17001 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17003 * gst/matroska/matroska-demux.c:
17004 (gst_matroska_demux_parse_blockgroup):
17005 Fix logic error in timing of subtitle stream synchronization.
17006 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
17007 Add skip-chunk, which is found in kodak-camera streams.
17009 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
17013 Adding Vietnamese translation (submitted by Clytie Siddall)
17015 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17017 * gst/playback/gstdecodebin.c: (try_to_link_1):
17018 Use realpad for signal.
17020 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17022 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
17023 Fix category so decodebin picks it up.
17025 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17027 * ext/mad/Makefile.am:
17028 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
17029 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
17030 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
17031 (found_type), (gst_id3demux_bin_change_state):
17032 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
17033 (gst_id3_tag_init), (gst_id3_tag_handle_event),
17034 (gst_id3_tag_src_link), (gst_id3_tag_chain),
17035 (gst_id3_tag_change_state), (plugin_init):
17036 * ext/mad/gstmad.h:
17037 Add id3demuxbin (which is a simple bin consisting of id3demux
17038 and typefind), take over rank from id3demux, remove typefind
17039 code from id3demux. Makes all broken mp3s that I know of work,
17040 and thereby fixes #152688.
17042 2005-01-27 Edward Hervey <bilboed@bilboed.com>
17044 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17046 * ext/mad/gstmad.c: (gst_mad_src_event):
17047 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
17048 Allow seeks on audio pad, make mad forward those (#164826).
17049 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17050 Set duration (#165335).
17052 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17054 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
17055 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
17056 (gst_asf_demux_process_ext_content_desc),
17057 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
17058 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
17059 * gst/asfdemux/gstasfdemux.h:
17060 Improve metadata display, e.g. if the metadata comes before the
17061 streams are loaded (which is perfectly valid).
17063 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17065 * tools/gst-launch-ext-m.m:
17066 Fix AVI/ASF pipelines (#165340).
17068 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
17069 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
17070 build failure on amd64
17072 2005-01-26 Tim-Philipp Müller <tim at centricular dot net>
17074 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
17075 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
17076 Check environment variables GST_ID3V2_TAG_ENCODING,
17077 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17078 list of character encodings to force interpretation of non-unicode
17079 strings stored in an ID3v2 tag to a particular encoding. If none
17080 is specified, try to use current locale's encoding, then fall back
17081 to ISO-8859-1 (which will always succeed). (Resolves #149274)
17082 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
17083 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
17084 Check environment variables GST_ID3V1_TAG_ENCODING,
17085 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
17086 list of character encodings to use in case a string encountered
17087 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
17088 specified, try to use the current locale's encoding, then fall
17089 back to ISO-8859-1 (which will always succeed).
17091 2005-01-25 Benjamin Otte <otte@gnome.org>
17093 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17094 - on half framerate, compute the rate in advance so the comparisons
17095 don't compare wrong values
17096 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
17098 - don't use mad_header_decode anymore, mad_frame_decode does that
17100 - when getting rid of consumed bytes, reset the stream's skiplen
17103 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17105 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
17106 Use 1/2 a second for default max_discont, as PES streams from DVB
17107 seem to have larger spacings in the SCR.
17110 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17112 * gst/playback/gstplaybasebin.c: (group_commit):
17113 Notify delayed stream-info availability.
17115 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
17116 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
17117 (gst_a52dec_handle_event), (gst_a52dec_chain):
17118 Add some debug output. Check that a discont has a valid
17120 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17121 (gst_alsa_sink_loop):
17122 Ignore TAG events. A little extra debug for broken timestamps.
17123 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
17124 (dvdnavsrc_change_state):
17125 Ensure we send a discont to engage the link before we send any
17127 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
17128 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
17129 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
17130 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
17131 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
17132 dvd://title works in totem because typefinding sends a seek that ends
17133 up going back to chapter 1 regardless.
17134 * ext/mpeg2dec/gstmpeg2dec.c:
17135 * ext/mpeg2dec/gstmpeg2dec.h:
17136 Output correct timestamps and handle disconts.
17137 * ext/ogg/gstoggdemux.c: (get_relative):
17138 Small guard against a null dereference.
17139 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
17140 (gst_textoverlay_set_property):
17141 Free memory when done. Don't call gst_event_filler_get_duration on
17142 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
17144 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
17145 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
17146 (gst_sw_srclink), (gst_smoothwave_chain):
17147 Draw solid lines, prettier colours.
17148 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
17149 Add a default palette that'll work for some movies.
17150 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
17151 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
17152 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
17153 * gst/mpegstream/gstdvddemux.h:
17154 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
17155 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
17156 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
17157 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
17158 * gst/mpegstream/gstmpegparse.h:
17159 Use PTM/NAV events when for timestamp adjustment when connected to
17160 dvdnavsrc. Don't use many discont events where one suffices.
17161 * gst/playback/gstplaybasebin.c: (group_destroy),
17162 (gen_preroll_element), (gst_play_base_bin_add_element):
17163 * gst/playback/gstplaybasebin.h:
17164 Make sure we remove subtitles from the same bin we put them in.
17165 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
17166 (gst_subparse_buffer_format_autodetect),
17167 (gst_subparse_change_state):
17168 Fix some memleaks and invalid accesses.
17169 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
17170 (oggskel_type_find), (cmml_type_find), (plugin_init):
17171 Some typefind functions for Annodex v3.0 files
17172 * gst/wavparse/gstwavparse.h:
17173 GstRiffReadClass is the correct parent class.
17175 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17177 * gst-libs/gst/riff/riff-media.c:
17178 (gst_riff_create_video_caps_with_data):
17179 Add extradata to huffyuv (fixes #165013).
17180 * gst-libs/gst/riff/riff-read.c:
17181 (gst_riff_read_strf_vids_with_data):
17182 Fix extradata extraction if it is in the chunk size.
17184 2005-01-25 Edward Hervey <bilboed@bilboed.com>
17186 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17188 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
17189 (gst_quarktv_change_state), (gst_quarktv_dispose):
17190 Memory free'ing location fix (#164708).
17192 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17194 * gst/playback/gstplaybasebin.c: (group_commit),
17195 (gen_preroll_element), (probe_triggered), (gen_source_element),
17196 (setup_source), (gst_play_base_bin_change_state),
17197 (gst_play_base_bin_add_element):
17198 Don't block for streams.
17199 * gst/playback/gststreaminfo.c: (stream_info_change_state),
17200 (gst_stream_info_set_mute):
17201 Use gst_pad_set_active_recursive.
17203 2005-01-25 Andy Wingo <wingo@pobox.com>
17205 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
17206 for #ifndef HAVE_XVIDEO.
17208 2005-01-24 Jeffrey C. Ollie
17210 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
17212 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
17213 * ext/gsm/gstgsmdec.h:
17214 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
17215 * ext/gsm/gstgsmenc.h:
17216 Fix rate to 8kHz as per spec, removes obscure errors when no rate
17217 was given by property. Add proper buffer timestamps and offsets.
17219 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17221 * gst-libs/gst/riff/riff-media.c:
17222 (gst_riff_create_audio_caps_with_data):
17223 Audio can be <8000Hz.
17225 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17227 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17228 Explicit state change to workaround refcount bugs.
17230 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17232 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
17233 (gst_avimux_riff_get_avi_header):
17236 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17238 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
17239 (gst_riff_read_element_data):
17240 * gst-libs/gst/riff/riff-read.h:
17241 Add _peek version (req'ed in CDXA).
17242 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
17243 (gst_cdxaparse_loop):
17244 Fix parsing in playbin.
17245 * gst/playback/gstdecodebin.c: (close_pad_link):
17246 Ignore current_ pads, they cause major annoyance.
17248 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17250 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17253 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17255 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
17258 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17260 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
17261 Allow for 0-sized buffers. Fixes length query problems in
17262 starwars.mkv from the testsuite.
17264 2005-01-19 Tim-Philipp Müller <tim at centricular dot net>
17266 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
17267 (gst_video_box_i420), (gst_video_box_chain):
17268 Fix row strides for I420 (fixes #163159)
17270 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17272 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17273 MPEG2 has a useful rate property, so we can actually use that.
17274 For MPEG-1, continue using the bytes/time properties.
17276 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17278 * gst-libs/gst/riff/riff-media.c:
17279 (gst_riff_create_video_caps_with_data),
17280 (gst_riff_create_video_template_caps):
17283 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17285 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
17286 Fail if caps negotiation fails. Should fix #162184, and should
17287 definately be in there regardless of it fixing the actual bug.
17288 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
17289 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
17290 (gst_avimux_riff_get_avix_header),
17291 (gst_avimux_riff_get_video_header),
17292 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
17293 (gst_avimux_start_file), (gst_avimux_handle_event),
17294 (gst_avimux_change_state):
17295 * gst/avi/gstavimux.h:
17296 Refactor structure writing to use GST_WRITE_UINT macros, add
17297 metadata writing support.
17299 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17301 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
17302 Elements may already be destroyed when this function is called.
17304 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17306 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17307 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
17308 More memory leak fixes (#149162).
17310 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17312 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17313 (gst_qtdemux_add_stream):
17316 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17318 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17321 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17323 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
17324 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
17325 when fixating to six channels in Totem.
17327 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17329 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
17330 Fix compile warnings on Solaris 10 buildbot
17332 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17334 * ext/dvdread/dvdreadsrc.c: (_read):
17335 Don't read beyond the last cell in a chapter (fixes
17336 invalid memory access)
17338 2005-01-17 Tim-Philipp Müller <tim at centricular dot net>
17340 * ext/dvdread/stream_labels.c:
17341 (dvdreadsrc_get_audio_stream_labels):
17342 Use NULL for an empty GList instead of g_list_alloc(); fix
17343 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
17344 of GString (easier to bulk free later)
17346 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17348 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17350 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17351 (gst_ffmpeg_pixfmt_to_caps):
17352 Fix BGRA32 caps (#164209).
17354 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
17356 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17358 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17359 (gst_ffmpeg_caps_to_pixfmt):
17360 alpha_mask can be RGBA/ABGR. Fixes #164265.
17362 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
17364 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17366 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
17367 (gst_mpeg2dec_alloc_buffer):
17368 * ext/mpeg2dec/gstmpeg2dec.h:
17369 Crop if decoding size is not the actual image size (#163676).
17371 2005-01-17 Steve Baker <steve@stevebaker.org>
17373 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17375 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
17376 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
17377 Add libsndfile typefind functions (#163309).
17379 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17381 * tools/gst-launch-ext-m.m:
17382 Add .aac, fix .m1v/.m2v (#163891).
17384 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17386 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
17387 Sanity check, don't wait endlessly since the clock might not
17388 actually run at this point (which is a deadlock). Fixes #164069.
17390 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17392 * gst/playback/gstplaybasebin.c: (probe_triggered):
17393 Of course, only pause if group is done...
17395 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17397 * gst/playback/gstplaybasebin.c: (probe_triggered):
17400 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
17402 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
17403 Don't return state change success when the parent
17406 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17408 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
17409 Free events (fix memleak in #162905).
17411 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
17413 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17415 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17416 (gst_ffmpeg_caps_to_pixfmt):
17417 Fix for depth = 15. Fixes #161675.
17419 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17421 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
17422 Set FPS correctly, even for webcams and the like.
17423 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
17424 Don error on setting while capturing.
17426 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17428 * ext/dv/gstdvdec.c:
17429 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17430 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17431 I'm a bad boy. using /1001. to force C to do float division
17432 and not integer division (as it did in my last commit)
17433 Thanks to David I. Lehn for pointing this mistake.
17435 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17437 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
17438 Revert Johan's 1.35->1.36 since it breaks compat.
17440 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17442 * ext/dv/gstdvdec.c:
17443 * ext/libfame/gstlibfame.c:
17444 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
17445 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
17446 replace framerate aproximations by their real value
17447 (24000/1001, 30000/1001, 60000/1001)
17448 Finish fixing bug #164049
17450 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
17452 * ext/ogg/gstoggmux.c:
17454 * gst/tcp/gstmultifdsink.c:
17455 * gst/tcp/gstmultifdsink.h:
17456 * gst/tcp/gsttcp.c:
17457 * gst/tcp/gsttcp.h:
17458 * gst/tcp/gsttcpclientsink.c:
17459 * gst/tcp/gsttcpclientsrc.c:
17460 * gst/tcp/gsttcpserversink.c:
17461 * gst/tcp/gsttcpserversrc.c:
17462 improve reusability of elements after state changes and errors
17463 make multifdsink throw away streamheaders when receiving new ones
17465 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17467 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17468 Fix for if items are already in list...
17470 2005-01-12 Benjamin Otte <otte@gnome.org>
17472 * gst/adder/gstadder.c: (gst_adder_loop):
17473 fix adder a bit so it doesn't screw up with events as much anymore
17475 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
17477 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
17478 (pixbufscale_scale), (gst_pixbufscale_chain):
17479 * ext/gdk_pixbuf/pixbufscale.h:
17480 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
17481 to ensure rowstrides are calculated the same way as
17483 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
17484 that we pick up duration and offset also.
17486 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17488 * gst/avi/gstavimux.c: (gst_avimux_class_init),
17489 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
17492 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17494 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17495 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17496 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17497 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17498 Update flags when requested.
17500 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17502 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
17505 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17507 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17508 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
17509 (probe_triggered), (new_decoded_pad), (gen_source_element),
17510 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
17511 * gst/playback/gstplaybasebin.h:
17512 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
17513 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
17514 (gst_play_bin_change_state):
17515 Implement group-switch signal for use in apps to clear metadata
17516 cache, clean up subtitle, add suburi property instead of # hack,
17517 some error-out fixes.
17519 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17521 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
17523 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
17524 If we got a state change in the _get handler, don't return success.
17526 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17528 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
17529 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
17530 Make jpegdec quiet on MJPEG decoding
17531 * gst/asfdemux/README:
17532 Fix mimetypes for MJPEG and H263
17534 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17536 * ext/theora/theoradec.c: (theora_dec_chain):
17537 Fix broken code generation by gcc by swapping arguments.
17538 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17541 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17544 delete this file, it is by far outdated
17545 * ext/alsa/gstalsa.1: remove
17546 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
17547 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
17548 (gst_alsa_get_caps):
17549 Add HW probing for supported sample rates. Fixes #161704
17551 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17553 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17554 Don't crash, biatch! :).
17556 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17558 * ext/musepack/gstmusepackreader.cpp:
17559 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
17560 Some work on tags - still doesn't work in playbin...
17561 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17564 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17566 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
17567 Also shove tags on kid pads.
17569 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17571 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
17572 Don't bail on unknown events.
17573 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
17574 Don't crash on events before negotiation.
17575 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17576 Send tags on pads, too.
17577 * gst/playback/gststreamselector.c:
17578 (gst_stream_selector_request_new_pad):
17579 Forward events on first pad if no input was selected yet.
17581 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17583 * gst/playback/gstplaybasebin.c: (setup_substreams):
17584 Don't disable streamtype if the stream doesn't exist, since
17585 then playing a video after audio will disable both and nothing
17586 will happen. Fixes the testsuite.
17588 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17590 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
17591 (gst_v4l_xoverlay_set_xwindow_id):
17592 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
17593 (gst_v4l2_xoverlay_set_xwindow_id):
17594 Add debug categories, fix overlay disabling.
17596 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17598 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
17599 * ext/alsa/gstalsa.h:
17600 Add HW probing for period_count/size and buffer_size MIX/MAX
17601 Adjust default/user defined value if out of bounds
17602 Should fix bug #162024
17604 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17606 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
17607 Fix warning (#161191).
17609 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17611 * ext/dvdread/stream_labels.c:
17612 (dvdreadsrc_get_audio_stream_labels):
17613 Fix warning (init the good variable in switch default)
17615 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
17617 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17619 * gst/tta/gstttaparse.c: (gst_tta_src_event):
17620 Fix gcc-2.95 compile (#163485).
17622 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17625 * ext/flac/gstflacenc.c: (gst_flacenc_init),
17626 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
17627 (gst_flacenc_tell_callback), (gst_flacenc_chain),
17628 (gst_flacenc_change_state):
17629 * ext/flac/gstflacenc.h:
17630 Update for API change in flac-1.1.1. Update requirement in
17631 configure.ac. Fixes #162974.
17633 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17635 * gst/playback/gstplaybasebin.c: (group_destroy):
17636 Remove hack to get rid of assert and get rid of unlinked
17639 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17641 * gst/playback/gstplaybasebin.c: (setup_source):
17642 Set source to NULL so that resources are free'ed. Fixes issues
17643 with playback of CDDA and similar device-accessing things.
17645 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17647 * testsuite/embed/Makefile.am:
17648 test->noinst, fix make test in buildbot.
17650 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17652 * ext/dvdread/stream_labels.c: new file
17653 * ext/dvdread/stream_labels.h: new file
17654 * ext/dvdread/Makefile.am:
17655 * ext/dvdread/dvdreadsrc.c: (_seek_title):
17656 Extract audio stream label from DVD IFO files.
17657 It only dump them on the console for now, still have to
17658 make playbin aware of them.
17660 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17662 * gst/playback/gstplaybasebin.c: (setup_source):
17665 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17667 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17668 (gen_preroll_element), (remove_groups), (setup_subtitle),
17669 (gen_source_element), (setup_source):
17670 * gst/playback/gstplaybasebin.h:
17671 Multiple .sub files is just a stupid idea... Fix some threading
17672 mistakes. Interestingly, external .sub files cause playbin to
17673 hang, I don't know why... Parsing fixes contributed by Fran??ois
17674 Kooman <fkooman@tuxed.net>.
17676 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17678 * testsuite/embed/Makefile.am:
17681 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17683 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17685 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17686 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17687 (gst_pngenc_set_property):
17688 * ext/libpng/gstpngenc.h:
17689 Add compression level property (#163323).
17691 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17694 * examples/capsfilter/capsfilter1.c: (main):
17695 * examples/seeking/spider_seek.c: (make_spider_pipeline):
17696 * ext/dvdread/Makefile.am:
17697 * ext/dvdread/demo-play:
17698 * ext/dvdread/demo-play.c:
17699 * gconf/gstreamer.schemas.in:
17700 * gst-libs/gst/gconf/gconf.c:
17702 * testsuite/Makefile.am:
17703 * testsuite/embed/Makefile.am:
17704 * testsuite/embed/embed.c: (cb_expose), (main):
17705 Remove all references to xvideosink, fix examples (#140845).
17706 * gst/playback/gstplaybasebin.c: (group_destroy):
17707 Apparently, disposal does not unlink - so do explicitely.
17708 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17711 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
17713 * README: fix PKG_CONFIG_PATH instructions, what was there
17714 previously was breaking default search path, not nice.
17717 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17719 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
17720 (gst_audioscale_chain):
17721 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
17722 when resampling - how the ^@$^!@^! is this possible?!?
17724 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17726 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17727 Reset variables on READY.
17728 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
17729 (gst_matroska_mux_loop):
17730 Require data before writing header.
17732 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
17734 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17736 * ext/mad/gstmad.c: (gst_mad_chain):
17737 Don't call mad_stream_sync() directly after recovering sync.
17740 2005-01-09 Martin Eikermann <meiker@upb.de>
17742 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17744 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
17745 (snapshot_handler), (gst_snapshot_sinkconnect),
17746 (gst_snapshot_chain):
17747 Allocate resources when required, fix recursive signal emission
17748 and fix caps. Fixes #161667.
17750 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
17752 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17754 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
17755 (gst_pngdec_chain):
17756 Handle only 8-bppc (bits-per-pixel-component) images, better
17757 error handling and correct strides. Fixes #163177.
17758 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
17759 (gst_pngenc_chain):
17760 Better error handling. Fixes #163348.
17762 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17764 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
17765 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
17766 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
17767 (dvdnavsrc_uri_handler_init):
17768 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
17769 * gst/playback/gstplaybasebin.c: (gen_source_element):
17770 Add MMS to streaming URIs.
17772 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17774 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
17775 * sys/xvimage/xvimagesink.c:
17776 (gst_xvimagesink_navigation_send_event):
17777 Check for pad availability before sending event.
17779 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17781 * gst-plugins.spec.in:
17784 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17787 Since we use functions from CVS, up requirement.
17789 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17791 * gst/playback/Makefile.am:
17792 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
17793 (group_destroy), (group_commit), (group_is_muted),
17794 (gen_preroll_element), (add_stream), (unknown_type),
17795 (probe_triggered), (preroll_unlinked), (mute_stream),
17796 (silence_stream), (new_decoded_pad), (setup_substreams),
17797 (setup_source), (get_active_source), (mute_group_type),
17798 (muted_group_change_state), (set_active_source),
17799 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17800 (play_base_eos), (gst_play_base_bin_change_state):
17801 * gst/playback/gstplaybasebin.h:
17802 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
17803 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
17804 (gst_stream_info_dispose), (stream_info_mute_pad),
17805 (stream_info_change_state), (gst_stream_info_set_mute):
17806 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
17807 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
17808 (gst_stream_selector_init), (gst_stream_selector_dispose),
17809 (gst_stream_selector_get_linked_pad),
17810 (gst_stream_selector_get_caps), (gst_stream_selector_link),
17811 (gst_stream_selector_get_linked_pads),
17812 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
17813 * gst/playback/gststreamselector.h:
17814 Adding stream selection support plus required properties for
17815 applications to use this. Fully fixes #100931.
17817 2005-01-08 Benjamin Otte <otte@gnome.org>
17819 * gst/games/gstpuzzle.c: (nav_event_handler):
17820 - handle nav events differently: forward every event no matter if it
17821 was handled or not.
17823 You can now cheat by using navigationtest ! puzzle and moving the
17824 mouse close to the edge of a tile. ;)
17826 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17829 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
17830 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
17831 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
17832 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
17833 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
17834 (gst_ogm_parse_plugin_init):
17835 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
17836 (gst_textoverlay_link), (gst_textoverlay_getcaps),
17837 (gst_textoverlay_event), (gst_textoverlay_video_chain),
17838 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
17839 * ext/pango/gsttextoverlay.h:
17840 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17841 (gst_matroska_demux_handle_seek_event),
17842 (gst_matroska_demux_sync_streams),
17843 (gst_matroska_demux_parse_blockgroup),
17844 (gst_matroska_demux_subtitle_caps),
17845 (gst_matroska_demux_plugin_init):
17846 * gst/matroska/matroska-ids.h:
17847 * gst/playback/gstdecodebin.c: (close_pad_link):
17848 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
17849 (gen_preroll_element), (remove_groups), (add_stream),
17850 (new_decoded_pad), (setup_subtitles), (gen_source_element),
17852 * gst/playback/gstplaybasebin.h:
17853 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
17854 * gst/subparse/Makefile.am:
17855 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
17856 (gst_subparse_base_init), (gst_subparse_class_init),
17857 (gst_subparse_init), (gst_subparse_formats),
17858 (gst_subparse_eventmask), (gst_subparse_event),
17859 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
17860 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
17861 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
17862 (parse_mpsub_deinit), (parse_mpsub_init),
17863 (gst_subparse_buffer_format_autodetect),
17864 (gst_subparse_format_autodetect), (gst_subparse_loop),
17865 (gst_subparse_change_state), (gst_subparse_type_find),
17867 * gst/subparse/gstsubparse.h:
17868 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
17870 Add subtitle support, .sub parser (supports SRT and MPsub),
17871 OGM text support, Matroska UTF-8 text support, deadlock fixes
17872 all over the place, subtitle awareness in decodebin/playbin
17873 and some fixes to textoverlay to handle subtitles in a stream
17874 correctly. Fixes #100931.
17876 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17878 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
17879 Check for pad availability before doing a query on it.
17881 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17883 * ext/dv/gstdvdec.c:
17884 really fix bpp24/32 dvdec caps (classic rgba indeed)
17885 * gst/asfdemux/gstasfdemux.c:
17886 (gst_asf_demux_process_ext_content_desc):
17887 don't send text tags if they are empty (bis repetita)
17889 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17891 * ext/dv/gstdvdec.c:
17892 remove unneeded comment from dvdec
17893 (related to DV 4CC codes in AVI files)
17894 moved them in gstreamer/docs/random/mimetypes
17895 * gst/asfdemux/gstasfdemux.c:
17896 (gst_asf_demux_process_ext_content_desc):
17897 don't send text tags if they are empty
17898 fix mem leak on error path
17899 * gst/ffmpegcolorspace/avcodec.h:
17900 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17901 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
17902 (gst_ffmpegcsp_avpicture_fill):
17903 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
17904 * gst/ffmpegcolorspace/imgconvert_template.h:
17905 adds BGR32 and BGRA32 to ffmpegcolorspace
17906 (still bad colors, fixing it on next commit)
17907 helps with dvdec outputing BGR32
17909 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17911 * ext/dv/gstdvdec.c:
17912 Fix audio caps i just broke (missing ',')
17913 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
17914 (gst_matroska_mux_reset):
17915 Fix typo + add FIXME about old "x-gst-metadata" crap
17917 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
17919 * ext/dv/demo-play.c: (main):
17920 xvideosink -> xvimagesink
17921 * ext/dv/gstdvdec.c:
17922 change rgb 32/32 caps to 24/32 (no alpha)
17923 change nb of channels to be a list (2 or 4, not 2)
17924 change sample rate to be a list (32, 44.1, 48 kHz) not a range
17925 * gst/asfdemux/gstasfdemux.c:
17926 (gst_asf_demux_process_ext_content_desc):
17927 Add 'date/year' to extracted metadata list
17929 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17931 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
17932 The return value of fixate_to does not imply that the requested
17933 value was set, so don't assume.
17935 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
17937 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17939 * ext/libpng/gstpngdec.c:
17940 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
17941 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
17942 * ext/libpng/gstpngenc.h:
17943 Alpha support (encoder; #163161), mime fixage.
17945 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
17947 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17949 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
17950 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
17951 (gst_faac_set_property), (gst_faac_get_property):
17952 * ext/faac/gstfaac.h:
17953 Allow for ADTS output (#153434).
17955 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17957 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
17958 Fix against template (#150576).
17960 2005-01-06 Benjamin Otte <otte@gnome.org>
17962 * gst/games/gstpuzzle.c: (draw_puzzle):
17963 don't draw a puzzle if either width or height of tiles would be 0.
17965 2005-01-06 Benjamin Otte <otte@gnome.org>
17967 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
17968 (gst_puzzle_class_init), (gst_puzzle_finalize):
17969 no memleaks, please
17970 (gst_puzzle_create), (gst_puzzle_init),
17971 (gst_puzzle_set_property), (gst_puzzle_setup):
17972 change initialization code around so we don't reshuffle on resize
17974 fix another stupid typo
17976 2005-01-06 Benjamin Otte <otte@gnome.org>
17978 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
17979 fix stupid typo that borked copying on YUY2
17981 2005-01-06 Benjamin Otte <otte@gnome.org>
17983 * gst/games/gstpuzzle.c: (draw_puzzle):
17984 fix edges when image sizes aren't multiples of tile sizes
17986 2005-01-06 Benjamin Otte <otte@gnome.org>
17988 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17989 make RGB endianness work correctly
17990 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
17991 refactor and fix race with initial shuffling
17992 (nav_event_handler):
17993 allow using the mouse to puzzle
17995 insist on tiles having width and height as multiples of 4 to get
17996 clean YUV image handling
17997 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17998 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
17999 s/DEBUG/LOG/ for common messages
18000 (gst_xvimagesink_navigation_send_event):
18001 fix mouse event translation to not include screen PAR
18002 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
18003 fix mouse event translation to actually work
18005 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
18007 * gst/asfdemux/gstasfdemux.c:
18008 (gst_asf_demux_process_ext_content_desc):
18009 Extract TrackNumber metadata + clean up code
18010 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
18011 Hope this is the good fix (var used unitialised)
18013 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18015 * ext/faad/gstfaad.c: (gst_faad_chain):
18016 Only increment timestamp if it's valid. Fixes raw AAC streams.
18018 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18021 * gst/games/Makefile.am:
18022 * gst/games/gstpuzzle.c:
18023 add a puzzle game with...
18024 * gst/games/gstvideoimage.c:
18025 * gst/games/gstvideoimage.h:
18026 ... full colorspace support (that includes YUV9 and RGB16)) stolen
18027 from videotestsrc and made into something that would be a nice
18028 library for a lot of other plugins.
18030 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
18033 don't compile faad plugin if a RC of 2.0 is found
18034 Fixes #155346 (and FC1 buildbot)
18035 * gst/asfdemux/gstasfdemux.c:
18036 (gst_asf_demux_process_ext_content_desc):
18037 try to make Solaris compiler happier
18039 2005-01-06 Paul Jack <pjack@sfaf.org>
18041 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18043 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
18044 Fix segfault (#161667).
18046 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18048 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
18049 Fix framerate reporting.
18051 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
18053 * gst-libs/gst/riff/riff-ids.h:
18054 * gst/wavenc/riff.h:
18055 Add AMR (VBR and CBR) ids to riff.h audio codec list
18056 * gst/asfdemux/gstasfdemux.c:
18057 (gst_asf_demux_process_ext_content_desc),
18058 (gst_asf_demux_process_object):
18059 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
18061 2005-01-05 Martin Eikermann <meiker@upb.de>
18063 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18065 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18066 (gst_dvd_demux_handle_discont):
18067 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
18068 (gst_mpeg_demux_handle_discont):
18069 Recreate pads on new-media (#160730).
18070 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
18071 Send discont even if manager changes timestamps (#161929).
18073 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
18075 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18077 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
18078 Fix invalid memory access (#159211).
18080 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18082 * examples/gstplay/player.c: (main):
18084 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
18085 Add visualizations.
18086 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
18087 (gst_a52dec_handle_frame):
18089 * ext/dvdnav/gst-dvd:
18090 Add audioconvert. Fixes #161325.
18091 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
18092 Explicitely case to gint64. Possible valgrind error.
18093 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
18094 (gst_play_tick_callback), (gst_play_change_state),
18095 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
18096 (gst_play_set_location), (gst_play_get_location),
18097 (gst_play_seek_to_time), (gst_play_set_data_src),
18098 (gst_play_set_video_sink), (gst_play_set_audio_sink),
18099 (gst_play_set_visualization), (gst_play_connect_visualization),
18100 (gst_play_get_framerate), (gst_play_get_all_by_interface),
18102 Use playbin. Fixes #139749 and #147744.
18103 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
18105 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
18106 (audioscale_get_type), (gst_audioscale_base_init),
18107 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
18108 (gst_audioscale_getcaps), (gst_audioscale_fixate),
18109 (gst_audioscale_link), (gst_audioscale_get_buffer),
18110 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
18111 (gst_audioscale_init), (gst_audioscale_dispose),
18112 (gst_audioscale_chain), (gst_audioscale_set_property),
18113 (gst_audioscale_get_property), (plugin_init):
18115 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18117 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
18118 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18119 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
18120 Add more metadata (fixes #162656).
18122 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18127 === release 0.8.7 ===
18129 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18134 releasing 0.8.7, "Hyperspace"
18136 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
18138 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
18140 * gst/playback/gstplaybasebin.c:
18141 Fix for #162924 - free caps after use, not before
18143 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
18145 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18147 * gst/playback/gstplaybasebin.c:
18148 * gst/wavparse/gstwavparse.c:
18149 Fix for #154773 - fixes playback of small .wav files
18151 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
18153 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
18155 * gst/audioscale/gstaudioscale.c:
18156 Fix for #162819 - make audioscale reusable
18157 Fixes playback of more than one file with playbin/totem
18159 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18161 * gst/ffmpegcolorspace/avcodec.h:
18162 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18163 * gst/ffmpegcolorspace/imgconvert.c:
18164 clean up the mess that made me cry and avoid needless duplication
18166 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
18168 * gst/ffmpegcolorspace/imgconvert.c:
18169 give some indication of why we're segfaulting
18171 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18174 Fix indentation, fix v4l2 plugin detection.
18176 Fix libmms location (Maciej, use diff -u!).
18177 * ext/alsa/gstalsa.c: (gst_alsa_init):
18178 Initialize caps cache to NULL.
18179 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
18180 Only change state on audiosink if it exists.
18182 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
18184 * gst/matroska/matroska-demux.c:
18185 * gst/matroska/matroska-ids.h:
18186 * gst/matroska/matroska-demux.h:
18187 Fix Vorbis streams failing to decode in some files, where cluster_time
18188 isn't 0, because then it doesn't send codec_priv before actual data.
18189 Remove time-based test and replace it with marker set on beginning of
18192 2004-12-28 David Schleef <ds@schleef.org>
18194 Merge patch from Ronald fixing problems with streaming
18196 * ext/cairo/gstcairo.c: (plugin_init):
18197 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18198 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18199 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18200 (gst_textoverlay_font_init), (gst_textoverlay_init),
18201 (gst_textoverlay_set_property):
18202 * ext/cairo/gsttextoverlay.h:
18204 2004-12-27 David Schleef <ds@schleef.org>
18206 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
18207 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18208 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
18209 (gst_textoverlay_font_init), (gst_textoverlay_init),
18210 (gst_textoverlay_set_property): Improvements to actually
18211 render text as white on black outline on video, including
18212 font selection and horizontal/vertical alignment. (Ronald's
18214 * ext/cairo/gsttextoverlay.h:
18216 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18218 * ext/ogg/gstogg.c:
18219 * ext/ogg/gstogmparse.c:
18220 fix ogm[audio/video]parse plugin registration
18221 (riff won't load if bytestream is already loaded)
18223 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18225 * gst/audioconvert/gstchannelmix.c:
18228 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18232 disable docs again until it actually passes make distcheck.
18234 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18236 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
18237 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
18239 Add 3GP (variables name Q3GP because they can't start with a
18240 number). Add samr audio fourcc (used in .3gp files), decoder
18241 is work in progress. Also do a GST_WARNING instead of ERROR
18242 in case of unknown nodes, to decrease output.
18244 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
18249 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18252 * ext/speex/gstspeexdec.h:
18253 * ext/speex/gstspeexenc.h:
18254 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
18255 Fix detection code in configure.ac
18257 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18259 * gst/matroska/matroska-demux.c:
18260 (gst_matroska_demux_parse_blockgroup):
18261 Save position, so that queries give proper return values. Don't
18262 know how this could ever have worked before...
18264 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
18267 Put additional LAME check inside the conditional. Fixes #152339
18269 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18271 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18272 (gst_avi_demux_stream_scan):
18273 Add some more debug. Fix logic error when setting movi offset
18274 while reading index.
18276 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18278 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18279 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
18280 (gst_avi_demux_process_next_entry):
18281 Add some debugging. Better detection of broken indexes and the
18282 accompanying index recovery. No infinite loops on state changes
18283 when we're still in our loopfunction.
18285 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18290 2004-12-22 Archana Shah <archana.shah@wipro.com>
18292 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18294 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
18295 Normalizing the value before setting
18296 (gst_sunaudiomixer_get_volume):
18297 Normalizing the value after getting. Fixes bug# 161980
18299 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18301 * Makefile.am: Make sure docs gets disted
18302 * docs/Makefile.am: Make sure all needed files get disted
18303 * gst-plugins.spec.in: latest updates
18305 2004-12-22 Wim Taymans <wim@fluendo.com>
18307 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
18308 Revert patch 1.38 as clock distribution over schedulers does
18309 not work correcly in the core yet.
18311 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18313 * sys/oss/README: remove this file, which predates my birth
18314 (and which content is by far outdated)
18316 2004-12-20 Stefan Kost <ensonic@users.sf.net>
18320 * docs/Makefile.am:
18321 * docs/libs/Makefile.am:
18322 * docs/libs/gst-plugins-libs-docs.sgml:
18323 * docs/libs/gst-plugins-libs-sections.txt:
18324 * docs/libs/tmpl/gstgconf.sgml:
18326 * docs/version.entities.in:
18327 Added boilerplate gtk-doc files for plugin-libs documentation.
18329 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18331 * gst/auparse/gstauparse.c: fix int and float audio caps
18333 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18335 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
18336 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
18337 g_assert() can be a macro, don't use #ifdef inside it.
18339 2004-12-19 Edward Hervey <bilboed@bilboed.com>
18341 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18343 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
18344 (gst_videorate_init), (gst_videorate_chain),
18345 (gst_videorate_change_state):
18346 Event handling (fixes #159986).
18348 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18350 * gst-libs/gst/riff/riff-media.c:
18351 (gst_riff_create_video_caps_with_data):
18352 Add BLZ0 (Blizzard's version of DivX) fourcc.
18354 2004-12-18 David Schleef <ds@schleef.org>
18356 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
18359 2004-12-18 David Schleef <ds@schleef.org>
18361 * gst/tta/ttadec.h: Disable some header code that isn't used
18362 and clearly isn't portable.
18364 2004-12-18 David Schleef <ds@schleef.org>
18366 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
18367 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18368 (avcodec_get_pix_fmt), (avpicture_layout),
18369 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
18370 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
18371 Fix code to not use GCC extensions (and c99 extensions that
18372 Forte does not like.)
18374 2004-12-19 Tim-Philipp Müller <t.i.m@zen.co.uk>
18376 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18378 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
18379 (gst_deinterlace_chain):
18380 Rowstride fixes. Fixes #161039.
18381 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
18382 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
18383 (gst_video_crop_getcaps), (gst_video_crop_link),
18384 (gst_video_crop_i420), (gst_video_crop_chain),
18385 (gst_video_crop_change_state):
18386 Rework of negotiation. Actually works now. Fixes #158650.
18388 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18390 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
18391 That was very stupid.
18393 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18395 * gst/matroska/matroska-demux.c:
18396 (gst_matroska_demux_parse_blockgroup):
18397 Fix possible crasher.
18399 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18401 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
18402 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
18403 Lace sizes can be zero.
18405 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18407 * ext/musepack/gstmusepackdec.cpp:
18408 Fetch error return values. Fixes #161624.
18409 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
18412 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18414 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
18415 Work for truncated (unfinished download etc.) files. Fixes #160514.
18417 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18419 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
18420 Fix for integer overflow. Makes #156001 not crash. Probably masks
18423 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18425 * gst/ac3parse/gstac3parse.c: (plugin_init):
18426 Parsers never have ranks. Fixes #159651.
18428 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
18430 * gst/playback/gstdecodebin.c: (compare_ranks):
18431 make sure the facotries are ordered the same every time even if they
18432 have the same rank by using the name
18433 * gst/playback/gstdecodebin.c: (find_compatibles):
18434 make sure we don't add factories to the list twice
18436 2004-12-16 David Schleef <ds@schleef.org>
18438 * configure.ac: look for musepack headers as musepack/*.h
18440 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
18441 * ext/musepack/gstmusepackreader.h: same
18443 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18445 * gst-libs/gst/riff/riff-read.c:
18446 (gst_riff_read_strf_auds_with_data):
18447 Read extradata correctly (fixes #155879).
18449 2004-12-16 David Schleef <ds@schleef.org>
18451 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
18452 audio. does _not_ attempt or allow conversion unless channels
18455 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18457 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
18459 2004-12-16 David Schleef <ds@schleef.org>
18461 * gst/audioscale/gstaudioscale.c: the resample library only
18462 handles 1 or 2 channels. Change caps to compensate.
18464 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18466 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
18467 (gst_matroska_demux_audio_caps):
18468 Some MPEG-AAC hacks, because else it doesn't work...
18470 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18472 * gst-libs/gst/riff/riff-media.c:
18473 (gst_riff_create_video_caps_with_data),
18474 (gst_riff_create_video_template_caps):
18477 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18479 * gst-libs/gst/audio/Makefile.am:
18480 Try to fix buildbot.
18482 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
18484 * gst/tcp/gstmultifdsink.c:
18485 Clean up and uniformize debugging.
18487 2004-12-16 Edward Hervey <bilboed@bilboed.com>
18489 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18491 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18492 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
18493 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
18494 (gst_mpeg_demux_change_state):
18495 Reset on ready. Fixes 160276.
18497 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18499 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18501 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18502 (gst_ffmpegcsp_pad_link):
18503 Fix memleak (#154815).
18505 2004-12-16 James Bowes <bowes@cs.dal.ca>
18507 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18509 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
18510 (gst_musicbrainz_init), (gst_musicbrainz_chain),
18511 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
18512 * ext/musicbrainz/gsttrm.h:
18513 Add support for using a proxy server when getting a trm id from
18514 the MusicBrainz database (#149613).
18516 2004-12-16 Christophe Fergeau <teuf@gnome.org>
18518 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18520 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
18521 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
18522 Fix memleaks (#157233).
18524 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
18526 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18528 * gst-libs/gst/resample/resample.c: (gst_resample_close):
18529 * gst-libs/gst/resample/resample.h:
18530 * gst/audioscale/gstaudioscale.c:
18531 Fix memleak (#159215).
18533 2004-12-16 Toni Willberg <toniw@iki.fi>
18535 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18537 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18538 * sys/oss/oss_probe.c: (main):
18539 Check for mono/stereo support (similar to samplerate probing),
18540 fixes #159433. Also add missing copyright header to oss_probe.c.
18542 2004-12-15 David Schleef <ds@schleef.org>
18544 * configure.ac: add audioresample and cairo plugins. Remove
18545 HAVE_MMX stuff, because it's not used.
18546 * ext/Makefile.am: same
18547 * ext/audioresample/Makefile.am: You are not ready for an
18548 audio resampling element based on audioresample.
18549 * ext/audioresample/gstaudioresample.c:
18550 * ext/audioresample/gstaudioresample.h:
18551 * ext/cairo/Makefile.am: You are not ready for overlay elements
18552 based on cairo. Don't look too closely, these elements kinda
18554 * ext/cairo/gstcairo.c: new
18555 * ext/cairo/gsttextoverlay.c: new
18556 * ext/cairo/gsttextoverlay.h: new
18557 * ext/cairo/gsttimeoverlay.c: new
18558 * ext/cairo/gsttimeoverlay.h: new
18559 * gst-libs/gst/media-info/media-info-priv.h: fix compile
18560 problem with compilers that don't support variadic macros.
18562 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
18564 Reviewed by: David Schleef <ds@schleef.org>
18566 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
18567 Bala, registering sunaudiosrc (oops!), and cleaning up code a
18568 bit. Also ran indent-gst.
18569 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
18570 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
18571 (gst_sunaudiosrc_setparams):
18573 2004-12-14 David Schleef <ds@schleef.org>
18575 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
18576 output rate to 16000. Should fix #160235.
18578 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18580 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
18581 Add typefinding for mpeg2 pes streams
18583 2004-12-13 David Schleef <ds@schleef.org>
18585 * configure.ac: Applied patch from bug #143659, making default
18586 sources and sinks OS-dependent (for Solaris), and added code
18588 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
18590 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18592 * gst-libs/gst/riff/riff-media.c:
18593 forgot to add h2.64 to avidemux template caps
18595 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18597 * gst/wavenc/riff.h:
18598 * gst-libs/gst/riff/riff-media.c:
18599 * gst-libs/gst/riff/riff-ids.h:
18600 * gst/avi/gstavimux.c
18601 add 4CC code for VideoSoft h264 in AVI (VSSH)
18603 remove s323 from riff, it's quicktime specific :(
18605 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18607 * gst/asfdemux/README
18608 * gst/wavenc/riff.h
18609 * gst-libs/gst/riff/riff-ids.h
18610 * gst-libs/gst/riff/riff-media.c
18611 * gst/qtdemux/qtdemux.c:
18612 add new 4CC codes for h263 related codecs
18613 fixes partially bug #155163
18615 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
18617 * configure.ac: Update polyaudio requirement to 0.7
18618 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
18620 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18622 * gst/interleave/deinterleave.c:
18623 fix my name's spelling! :)
18625 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
18627 * AUTHORS ChangeLog
18628 * gst/auparse/gstauparse.c
18629 * gst/interleave/deinterleave.c
18631 alaw-decode.c alaw-encode.c
18632 mulaw-decode.c mulaw-encode.c
18633 * gst/oneton/gstoneton.c
18635 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
18637 cocoawindow.h cocoawindow.m
18638 osxvideosink.h osxvideosink.m
18640 put the same mail address for Zaheer Abbas Merali everywhere
18642 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18644 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
18645 Align by packetsize, and assert that we a packet available before
18646 playing. The first makes webstreams work (they often include
18647 trailing padding data in a packet), the second allows pausing a
18648 ASF stream in totem without getting demux errors afterwards.
18650 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18652 * ext/ogg/gstoggdemux.c: (get_relative):
18653 Check for non-NULL before accessing member (end-of-chain).
18655 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18657 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
18658 (cdparanoia_set_property), (cdparanoia_get_property):
18659 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
18660 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
18661 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
18662 (dvdreadsrc_init), (dvdreadsrc_set_property),
18663 (dvdreadsrc_get_property):
18664 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
18665 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
18666 Synchronize property names where not yet the case. Devices are
18667 now device=X, other versions are deprecated (but still exist).
18668 Also use g_free() unconditionally.
18669 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
18670 (setup_source), (gst_play_base_bin_get_property):
18673 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
18675 * configure.ac: move GCONF macro outside conditional for the am
18676 conditional. Fixes #160439
18678 2004-12-08 David Schleef <ds@schleef.org>
18680 * tools/gst-visualise-m.m: Switch to elements that currently
18683 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18685 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
18686 We love wrong commas.
18688 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18690 * gst/matroska/matroska-demux.c:
18691 (gst_matroska_demux_handle_src_query):
18692 Don't set DEFAULT, unsupported - makes length display incorrectly
18695 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18697 * gst/monoscope/README: remove blurb about files being GPL
18698 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
18699 * gst/monoscope/monoscope.c: Change license to BSD with explanation
18700 monoscope is now effectively LGPL licensed
18702 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
18704 * gst/monoscope/README: Update information to be more correct
18705 * gst/monoscope/convolve.c: Relicense to LGPL
18706 * gst/monoscope/convolve.h: Relicense to LGPL
18708 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
18710 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18711 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
18712 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
18713 set default_duration for mpeg1 audio
18715 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18717 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
18718 * ext/alsa/gstalsa.h:
18719 refactor big chunks of the core caps negotiation code to make it
18720 a lot faster, because people claim it's really slow
18721 (actually, just cache the getcaps when the device is opened)
18723 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18725 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
18726 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
18727 (gst_a52dec_handle_frame), (gst_a52dec_chain),
18728 (gst_a52dec_change_state), (plugin_init):
18729 * ext/a52dec/gsta52dec.h:
18730 Do something useful with timestamps. Make chain-based (since
18731 there's really no reason to be loopbased).
18732 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18733 Update current_byte/frame correctly.
18735 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18737 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
18738 (gst_ape_demux_stream_init):
18741 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18743 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
18744 Let's make sure we're done typefinding when detecting tags.
18746 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18748 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
18749 (gst_ebml_read_init), (gst_ebml_read_use_event),
18750 (gst_ebml_read_element_id), (gst_ebml_peek_id),
18751 (gst_ebml_read_seek), (gst_ebml_read_skip),
18752 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
18753 (gst_ebml_read_master):
18754 * gst/matroska/ebml-read.h:
18755 * gst/matroska/matroska-demux.c:
18756 (gst_matroska_demux_parse_contents),
18757 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
18758 Disgustingly evil hack for working around INTERRUPT events and
18759 their extremely annoying habit of being a pain in the ass. We
18760 simply peek a cluster before reading any of it.
18762 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18764 * ext/musepack/gstmusepackdec.cpp:
18765 There's also floating point libmusepacks.
18767 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18769 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
18770 (gst_faad_chanpos_to_gst), (gst_faad_chain):
18771 Set DURATION even if source buffer didn't. Also use increasing
18773 * gst-libs/gst/riff/riff-media.c:
18774 (gst_riff_create_audio_caps_with_data):
18775 Block_align can have larger values than 8192.
18777 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18779 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
18780 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
18781 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
18782 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
18785 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18787 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
18790 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18792 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
18795 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18797 * ext/esd/esdsink.c: (gst_esdsink_chain):
18798 Make error actually say something useful (fixes #156798).
18799 * gst-libs/gst/riff/riff-media.c:
18800 (gst_riff_create_video_caps_with_data),
18801 (gst_riff_create_video_template_caps):
18802 Add Intel Video 5.0 fourcc (IV50).
18804 2004-12-01 Christophe Fergeau <teuf@gnome.org>
18806 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
18807 detection on mono and stereo mp3 files.
18809 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18811 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
18812 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
18813 the contained stream).
18815 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18817 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
18818 Oops, remove debug.
18820 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18822 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18824 * gst/law/alaw-decode.c: (alawdec_getcaps):
18825 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
18826 Prevent warnings when negotiating caps (fixes #159338).
18828 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18830 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18831 (gst_ffmpegcsp_chain):
18832 Remove old leftover that shouldn't be there...
18834 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
18836 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18838 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
18839 Don't forward DISCONT events (fixes #159684).
18841 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18843 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
18844 Unlink manually since sometimes bin disposal (and therefore
18845 pad unlinking) is delayed, which will cause a new media file
18846 to not be able to start playing instantly.
18848 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18850 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
18851 On mute of an unlinked stream, check for pad availability so
18852 we don't crash on unlinked pad.
18854 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18856 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18857 (gst_avi_demux_massage_index):
18858 Fix quite humiliating bug in omitting 0-sized index chunks but
18859 forgetting to count them for timestamps.
18861 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18863 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18864 Actually leave the loop if we failed to sync. Don't crash.
18866 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18868 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
18869 (gst_dvd_demux_process_private):
18870 * gst/mpegstream/gstdvddemux.h:
18871 Fix crash (#159759). Doesn't work, though. :-(.
18873 2004-11-28 Benjamin Otte <otte@gnome.org>
18875 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18876 more overwriting protection due to modifying channels one by one
18877 instead of all at once
18879 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18881 * gst/audioconvert/gstchannelmix.c:
18882 (gst_audio_convert_fill_normalize):
18883 Normalize using absolute values.
18885 2004-11-28 Julien MOUTTE <julien@moutte.net>
18889 * ext/directfb/Makefile.am:
18890 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
18891 (gst_directfbvideosink_get_pixel_format),
18892 (gst_directfbvideosink_get_format_from_fourcc),
18893 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
18894 (gst_directfbvideosink_sink_link),
18895 (gst_directfbvideosink_change_state),
18896 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
18897 (gst_directfbvideosink_buffer_alloc),
18898 (gst_directfbvideosink_interface_supported),
18899 (gst_directfbvideosink_interface_init),
18900 (gst_directfbvideosink_navigation_send_event),
18901 (gst_directfbvideosink_navigation_init),
18902 (gst_directfbvideosink_set_property),
18903 (gst_directfbvideosink_get_property),
18904 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
18905 (gst_directfbvideosink_base_init),
18906 (gst_directfbvideosink_class_init),
18907 (gst_directfbvideosink_get_type), (plugin_init):
18908 * ext/directfb/directfbvideosink.h: Adding a first version of
18910 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
18913 2004-11-28 Benjamin Otte <otte@gnome.org>
18915 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
18916 walk the samples backwards if out_channels > in_channels so we don't
18919 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18921 * gst/audioconvert/Makefile.am:
18922 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
18923 (gst_audio_convert_link), (gst_audio_convert_change_state),
18924 (gst_audio_convert_channels):
18925 * gst/audioconvert/gstchannelmix.c:
18926 (gst_audio_convert_unset_matrix),
18927 (gst_audio_convert_fill_identical),
18928 (gst_audio_convert_fill_compatible),
18929 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
18930 (gst_audio_convert_fill_others),
18931 (gst_audio_convert_fill_normalize),
18932 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
18933 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
18934 * gst/audioconvert/gstchannelmix.h:
18935 Implement a channel mixer.
18937 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
18939 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
18940 * ext/alsa/gstalsa.h:
18941 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
18942 Make alsasink actually honor gst_element_set_clock and use that
18943 clock instead of its internal one.
18945 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18947 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
18948 (gst_play_base_bin_change_state): nullify source and decoder when
18949 going from READY to NULL so that we don't try to do weird stuff with
18950 them when going from NULL to READY
18951 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
18952 instead of g_object_unref
18953 (gen_video_element), (gen_audio_element): more refcounting fixes, now
18954 it should be correct
18955 (gst_play_bin_change_state): don't call remove_sinks if we are
18956 currently disposing the object
18958 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18960 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
18961 Don't forget bass if it's there. Else left channel is silent...
18963 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18965 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
18966 (gst_a52dec_change_state):
18967 Don't do sample adjusting anymore, we use float audio now.
18968 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
18969 Don't fixate to non-existing properties.
18971 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18973 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
18974 (gst_a52dec_change_state):
18975 Advertise that we can do surround sound.
18977 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
18979 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
18980 Add buffer-frames=0.
18981 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
18982 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
18983 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
18984 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
18985 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
18986 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
18987 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
18988 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
18989 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
18990 * ext/dvdread/dvdreadsrc.h:
18991 Add seeking, querying for bytes, sectors, title, angle and
18992 chapter. Handle multiple chapters. Relicense to LGPL because
18993 Billy agreed on that (thanks Billy!).
18995 2004-11-27 Christophe Fergeau <teuf@gnome.org>
18997 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
18998 call parent dispose method
19000 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
19002 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
19003 (gst_audio_clock_get_internal_time):
19004 Fix active <-> inactive transitions: ensure time value always
19005 grows and avoid abrupt value changes.
19007 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
19010 * gst/tta/Makefile.am:
19012 * gst/tta/filters.h:
19013 * gst/tta/gsttta.c:
19014 * gst/tta/gstttadec.c:
19015 * gst/tta/gstttadec.h:
19016 * gst/tta/gstttaparse.c:
19017 * gst/tta/gstttaparse.h:
19018 * gst/tta/ttadec.h:
19019 added TTA parser and decoder
19021 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19023 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19024 (probe_triggered), (check_queue), (buffer_underrun),
19025 (buffer_running), (buffer_overrun), (gen_source_element),
19027 * gst/playback/gstplaybasebin.h:
19028 Implement buffering. Needs some more work.
19030 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19032 * ext/theora/theoradec.c: (theora_dec_chain):
19033 Fix ilog mask range overflow.
19035 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19037 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
19038 Don't omit the last (which in case of dmix is the only :) )
19039 channel count. Don't set channels if <= 2.
19041 2004-11-26 Christophe Fergeau <teuf@gnome.org>
19043 * gst/playback/gstplaybin.c: (gen_video_element),
19044 (gen_audio_element): Removed 2 obsolete comments
19046 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19048 * ext/vorbis/oggvorbisenc.c
19049 * ext/vorbis/vorbisenc.c :
19050 change description fields of those plugins to differentiate them
19051 (pitivi show Encoders by description, they had the same one)
19053 2004-11-25 Christophe Fergeau <teuf@gnome.org>
19055 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19057 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
19058 (gst_play_bin_set_property), (gen_video_element),
19059 (gen_audio_element):
19060 Refcounting fixes for provided audio-/videosinks.
19062 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19064 * gst/playback/gstplaybin.c: (gen_video_element),
19065 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
19066 Don't reference all sinks, but only the video- and audiosinks.
19067 The vis. element should be disposed when we're done with it.
19068 We don't have any reason to keep it around. This fixes warnings
19069 when reusing playbin for playing multiple audio files with
19070 vis. enabled. Also release audio device on pause - idea stolen
19073 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19075 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
19076 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
19077 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
19078 * ext/alsa/gstalsaplugin.c: (plugin_init):
19079 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
19080 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
19081 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
19082 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
19083 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
19084 (gst_faad_change_state), (plugin_init):
19085 * ext/faad/gstfaad.h:
19086 * ext/vorbis/vorbis.c: (plugin_init):
19087 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19088 * gst-libs/gst/audio/Makefile.am:
19089 * gst-libs/gst/audio/audio.c: (plugin_init):
19090 * gst-libs/gst/audio/multichannel.c:
19091 (gst_audio_check_channel_positions),
19092 (gst_audio_get_channel_positions),
19093 (gst_audio_set_channel_positions),
19094 (gst_audio_set_structure_channel_positions_list),
19095 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
19096 (gst_audio_fixate_channel_positions):
19097 * gst-libs/gst/audio/multichannel.h:
19098 * gst-libs/gst/audio/testchannels.c: (main):
19099 * gst/audioconvert/gstaudioconvert.c:
19100 (gst_audio_convert_class_init), (gst_audio_convert_init),
19101 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
19102 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
19103 (gst_audio_convert_fixate), (gst_audio_convert_channels):
19104 * gst/audioconvert/plugin.c: (plugin_init):
19105 Surround sound support.
19107 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19109 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19110 Fix position for discont if we're close as well. Nitpicking, but
19111 saves a few milliseconds of extra waiting or skipping.
19113 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19115 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
19116 We sometimes need parsers for playback, so add those too.
19118 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19121 * gst/apetag/Makefile.am:
19122 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
19123 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
19124 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
19125 (gst_ape_demux_get_src_query_types),
19126 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
19127 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
19128 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
19129 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
19130 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
19131 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
19132 (gst_ape_demux_change_state):
19133 * gst/apetag/apedemux.h:
19134 * gst/apetag/apetag.c: (plugin_init):
19135 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
19137 APE v1/2 tag reader plus typefind function.
19139 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19142 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19143 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19144 Remove hacks for older core. Require newer core version
19147 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19149 * gst/cdxaparse/Makefile.am:
19150 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
19151 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
19152 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
19153 * gst/cdxaparse/gstcdxaparse.h:
19154 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
19155 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
19156 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
19157 (gst_cdxastrip_get_src_query_types),
19158 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
19159 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
19160 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
19161 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
19162 * gst/cdxaparse/gstcdxastrip.h:
19163 SVCD/VCD header stripping separated from CDXA image parsing.
19164 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19166 Add VCD/SVCD header typefinding for VCD/SVCD.
19167 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
19168 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
19169 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
19170 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
19171 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
19172 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
19173 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
19174 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
19175 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
19176 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
19177 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
19178 * sys/vcd/vcdsrc.h:
19179 Fix up, add seeking, querying, URI interface. Works in totem now.
19181 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19186 === release 0.8.6 ===
19188 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
19206 releasing 0.8.6, "IOU Love"
19208 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19210 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19212 * gst/playback/gstplaybasebin.c:
19213 Fix unplayable files error handling. Fixes #158365
19215 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19217 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19219 * gst/typefind/gsttypefindfunctions.c:
19220 Fix broken mp3 typefinding. Fixes #158375
19222 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19224 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
19226 * ext/ogg/gstoggdemux.c:
19227 Fix sync on broken files. Fixes #158976
19229 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19231 patch by: Edward Hervey <bilboed@bilboed.com>
19233 * ext/libpng/gstpngenc.c:
19234 Copy over buffer properties. Fixes #158832
19236 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19238 patch by: Tim-Philipp Müller <t.i.m@zen.co.uk>
19240 * ext/dvdread/dvdreadsrc.c:
19241 Fixes invalid reads (#158462)
19243 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19245 * sys/v4l/gstv4lsrc.c:
19246 * sys/v4l/gstv4lsrc.h:
19247 * sys/v4l/v4lsrc_calls.c:
19248 Probe less and cache it. Fixes #159187.
19250 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
19252 * gst/videorate/gstvideorate.c:
19253 Handle all video formats. Fixes #159186.
19255 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
19256 * gst/synaesthesia/gstsynaesthesia.c:
19257 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
19258 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
19259 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
19260 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
19261 (gst_synaesthesia_change_state), (plugin_init):
19262 Fix up synaesthesia to work under different samplerates/ buffer sizes.
19263 Force 320x200 output, as that's the only thing the underlying
19264 synaesthesia implementation supports. Still needs to be made
19267 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19270 Fix mpeg2enc configure check (similar to mplex check below).
19272 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
19274 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19276 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19277 Fix for gcc-2.95 (fixes #158221).
19279 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19281 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19282 Re-add clock distribution hack (until new core is released).
19285 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
19287 fix mplex configure check segfaulting on some systems (bug #140994)
19289 2004-11-13 Benjamin Otte <otte@gnome.org>
19291 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
19293 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19294 do a wait when we enter the loop func with no data available to
19295 write instead of getting into an 100% CPU loop by just returning and
19296 being called again by the scheduler
19298 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
19301 * ext/libvisual/visual.c: (gst_visual_get_type),
19302 (libvisual_log_handler), (gst_visual_getcaps),
19303 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
19305 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
19306 * ext/smoothwave/Makefile.am:
19307 * ext/smoothwave/demo-osssrc.c: (main):
19308 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
19309 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
19310 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
19312 * ext/smoothwave/gstsmoothwave.h:
19313 Make gstsmoothwave a working element in the 20th century.
19315 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
19316 Fix incorrect link function
19318 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19320 * gst/volume/gstvolume.c:
19321 Allow buffer-frames=0.
19323 2004-11-12 Iain <iaingnome@gmail.com>
19325 * configure.ac: Check for polypaudio
19327 * ext/Makefile.am: Build the polyp dir
19329 * ext/polyp: The polypsink sources.
19331 2004-10-30 Iain <iaingnome@gmail.com>
19333 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
19334 caps to reflect the new number of channels.
19336 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19338 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19339 Fix for negotiation order problem. This would show when the
19340 ALSA loopfuction was called before any other function. ALSA
19341 wouldn't do anything because we're not negotiated yet, leading
19342 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
19344 2004-11-11 Tim-Philipp Müller <t.i.m@zen.co.uk>
19346 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19348 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
19349 No warnings (#157986).
19351 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19353 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19354 Prefer apev1/2 and id3v1 (at end of file) over musepack.
19356 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19358 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
19359 Signal no-more-pads (so it works in playbin).
19361 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19363 * ext/musepack/gstmusepackreader.cpp:
19364 Workaround for older core.
19366 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19368 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
19369 Actually test for odd width/height rather than testing whether
19370 a temporary variable that was 0 before we subtracted 1 is now
19371 not equal to zero (which it always is).
19373 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19375 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
19376 Fix compilation if HAVE_XVIDEO is not defined
19378 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19380 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
19381 Fix compilation if HAVE_XVIDEO is not defined
19383 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
19385 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19386 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
19387 (gst_goom_change_state), (plugin_init):
19388 Use the bytestream adapter so goom doesn't depend on the input
19390 Add a debug category
19392 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19394 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19395 Only set hardware parameters *after* negotiation. Before
19396 negotiation, it will set ANY and that seems to cause crashes
19397 (see e.g. #151288, #153227).
19399 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19401 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19402 This seems to be antique leftover. It needs to pass error
19404 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19405 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
19406 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
19407 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
19408 Fix GstXOverlay implementation (#151059).
19410 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19412 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19413 Don't assert (#157853).
19415 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19417 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19418 Fix bytes/samples confustion.
19419 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
19420 Fix for underrun (#144389).
19422 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19424 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
19425 Disable halfway-seek for pending release (since it needs a new
19428 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19430 * sys/v4l/gstv4lsrc.c:
19431 * sys/v4l/gstv4lsrc.h:
19432 * sys/v4l/v4lsrc_calls.c:
19433 add autoprobe-fps property so we can separate autoprobing parts
19435 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
19437 * sys/v4l/gstv4lsrc.c:
19438 * sys/v4l/v4lsrc_calls.c:
19439 initialise fourcc to catch unset fourcc's, and debug
19441 2004-11-09 Wim Taymans <wim@fluendo.com>
19443 * gst/playback/README:
19444 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19445 * gst/playback/gstplaybin.c: (gst_play_bin_init),
19446 (gst_play_bin_dispose), (gst_play_bin_set_property),
19447 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
19448 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19449 (gst_play_bin_get_formats), (gst_play_bin_convert),
19450 (gst_play_bin_get_query_types), (gst_play_bin_query):
19451 Cleanups and some more documentation.
19453 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
19455 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
19456 (gst_cacasink_init), (gst_cacasink_chain):
19457 * ext/libcaca/gstcacasink.h:
19458 Cacasink inherits from VideoSink, so let that store the clock.
19460 2004-11-09 Wim Taymans <wim@fluendo.com>
19462 * gst/playback/README:
19463 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
19464 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
19465 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
19466 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
19467 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
19469 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
19470 (gst_stream_info_is_mute), (gst_stream_info_set_property):
19471 * gst/playback/gststreaminfo.h:
19473 Only switch groups if all streams have muted (EOSed).
19474 Send Tags in sync with the stream playback instead of in
19475 the playback/preroll phase.
19476 Some cleanups, free the fakesrc elements.
19478 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
19480 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
19481 buffer-frames property was missing
19482 * ext/arts/gst_arts.c:
19483 rate missing from sinkcaps
19484 * ext/audiofile/gstafparse.c:
19485 * ext/audiofile/gstafsink.c:
19486 * ext/audiofile/gstafsrc.c:
19487 * ext/swfdec/gstswfdec.c:
19488 int audio doesn't know buffer-frames
19489 * ext/cdparanoia/gstcdparanoia.c:
19490 int audio doesn't know chunksize either
19491 * ext/nas/nassink.c:
19492 it's endianness, not endianess
19493 * gst-libs/gst/audio/audio.h:
19494 make float standard pad template caps really describe float
19495 * gst/law/mulaw.c: (linear_factory):
19496 signed only, please
19497 * gst/mpegstream/gstdvddemux.c:
19498 widths of 20 are not valid
19500 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
19502 Submitted by: Luca Ferretti <elle.uca@infinito.it>
19508 2004-11-08 Wim Taymans <wim@fluendo.com>
19510 * gst/playback/README:
19511 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
19512 * gst/playback/gstplaybasebin.c: (probe_triggered),
19513 (gst_play_base_bin_change_state):
19514 Updated README, added more comments for fixmes etc..
19516 2004-11-08 Wim Taymans <wim@fluendo.com>
19518 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
19519 We can remove this hack now.
19521 2004-11-08 Wim Taymans <wim@fluendo.com>
19523 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
19524 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19525 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19526 Only mix AYUV for maximum quality.
19528 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19530 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
19531 (gst_ogg_demux_push), (gst_ogg_pad_push):
19532 Let's act as if we're synchronized now! :).
19533 * ext/theora/theoradec.c: (theora_dec_chain):
19536 2004-11-08 Wim Taymans <wim@fluendo.com>
19538 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19539 (gst_alpha_set_property), (gst_alpha_sink_link),
19540 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
19541 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
19542 (gst_alpha_init_params), (gst_alpha_chain):
19543 Implement alpha functions for AYUV too, this increases
19544 accuracy quite a bit.
19546 2004-11-08 Wim Taymans <wim@fluendo.com>
19548 * gst/ffmpegcolorspace/avcodec.h:
19549 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19550 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
19551 (gst_ffmpegcsp_avpicture_fill):
19552 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19553 (gst_ffmpegcsp_caps_remove_format_info):
19554 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19555 (shrink12), (img_get_alpha_info), (deinterlace_line),
19556 (deinterlace_line_inplace):
19557 * gst/ffmpegcolorspace/imgconvert_template.h:
19558 Added AYUV colorspace and handle RGBA a bit more respectful.
19560 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19562 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19563 Actually always send a discont (cornercase when resending the
19564 same serial-tagged chain twice).
19566 2004-11-08 Julien MOUTTE <julien@moutte.net>
19568 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
19569 (gst_ximagesink_finalize):
19570 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
19571 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
19573 2004-11-08 Wim Taymans <wim@fluendo.com>
19575 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
19576 Don't segfault on NULL data.
19578 2004-11-08 Wim Taymans <wim@fluendo.com>
19580 * gst/playback/gstdecodebin.c: (unlinked):
19581 * gst/playback/gstplay-marshal.list:
19582 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
19583 (gst_play_base_bin_init), (group_create), (get_active_group),
19584 (get_building_group), (group_destroy), (group_commit),
19585 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
19586 (add_element_stream), (no_more_pads), (probe_triggered),
19587 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
19588 (state_change), (setup_source), (gst_play_base_bin_get_property),
19589 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19590 (gst_play_base_bin_link_stream),
19591 (gst_play_base_bin_get_streaminfo):
19592 * gst/playback/gstplaybasebin.h:
19593 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
19594 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
19595 Add support for chained ogg files. Prepare for playlist
19596 support. This patch introduces the concept of pad groups, which
19597 together compose one playable media file.
19599 2004-11-07 David Schleef <ds@schleef.org>
19601 * testsuite/gst-lint: Check for pad templates that aren't statically
19604 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19608 * ext/musepack/Makefile.am:
19609 * ext/musepack/gstmusepackdec.cpp:
19610 * ext/musepack/gstmusepackdec.h:
19611 * ext/musepack/gstmusepackreader.cpp:
19612 * ext/musepack/gstmusepackreader.h:
19613 Add musepack decoder.
19614 * ext/faad/gstfaad.c: (gst_faad_base_init):
19615 Make pad templates static.
19616 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
19618 Add musepack typefinder, make mp3 typefinding work halfway stream,
19619 which doesn't actually work yet because id3demux doesn't implement
19622 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19624 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
19625 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
19626 Fix interrupt event handling (#144436).
19628 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19630 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
19633 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19635 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19637 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
19638 Fix weird caps (#157548).
19640 2004-11-06 Tim-Philipp Müller <t.i.m@zen.co.uk>
19642 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19644 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
19645 Add missing NULL terminator (#157543).
19647 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
19649 * gst/tcp/gsttcp.h:
19650 * gst/tcp/gsttcpclientsink.c:
19651 * gst/tcp/gsttcpclientsrc.c:
19652 * gst/tcp/gsttcpserversink.c:
19653 * gst/tcp/gsttcpserversrc.c:
19654 ports can go up to 65535. Move common defines to gsttcp.h
19656 2004-11-05 Wim Taymans <wim@fluendo.com>
19658 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
19659 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
19660 Added two more colorspaces.
19662 2004-11-05 Wim Taymans <wim@fluendo.com>
19664 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19665 (gst_ffmpegcsp_avpicture_fill):
19666 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19667 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
19668 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
19671 2004-11-05 Wim Taymans <wim@fluendo.com>
19673 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
19674 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
19675 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19676 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
19677 (gst_videomixer_loop):
19680 2004-11-05 Benjamin Otte <otte@gnome.org>
19682 * ext/mad/gstmad.c: (gst_mad_chain):
19683 don't overflow data buffer. Flush not needed sync data when syncing
19686 2004-11-04 Wim Taymans <wim@fluendo.com>
19688 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19689 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19690 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
19691 (gst_alpha_init_params), (gst_alpha_chain),
19692 (gst_alpha_change_state):
19693 Updated the chroma keying algorithm with something more
19696 2004-11-03 Wim Taymans <wim@fluendo.com>
19698 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
19699 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
19700 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
19701 Fix stride issues. Does not completely work for odd
19704 2004-11-03 Wim Taymans <wim@fluendo.com>
19706 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19707 (gst_alpha_chroma_key), (gst_alpha_chain):
19708 Fix stride issues. Does not completely work for odd
19711 2004-11-03 Christophe Fergeau <teuf@gnome.org>
19713 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
19714 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
19717 2004-11-03 Wim Taymans <wim@fluendo.com>
19719 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19720 (gst_ffmpegcsp_avpicture_fill):
19721 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
19723 * gst/ffmpegcolorspace/imgconvert_template.h:
19724 Use correct _fill function to get correct strides.
19726 2004-11-02 David Schleef <ds@schleef.org>
19728 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19729 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
19730 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
19731 Change all g_print()s to debugging. Add a bunch of consistency
19734 2004-11-02 Wim Taymans <wim@fluendo.com>
19736 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19737 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
19738 (unlinked), (no_more_pads), (close_link):
19739 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
19740 (unknown_type), (add_element_stream), (new_decoded_pad),
19741 (removed_decoded_pad), (setup_source):
19742 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
19743 (gst_stream_info_class_init), (gst_stream_info_init),
19744 (gst_stream_info_new), (gst_stream_info_dispose),
19745 (stream_info_mute_pad), (gst_stream_info_set_property),
19746 (gst_stream_info_get_property):
19747 * gst/playback/gststreaminfo.h:
19748 Fix playback of multiple files.
19749 a slightly different approach to handling dynamic pad removals.
19750 This one only looks at pads that we have linked.
19752 2004-11-01 Christophe Fergeau <teuf@gnome.org>
19754 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
19755 free" warning from libc.
19757 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19759 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
19760 (get_unconnected_element), (remove_starting_from), (pad_removed),
19762 Implement support for dynamic pad changing. We listen to "live"
19763 pad removals (i.e. while playing) and re-setup autoplugging
19764 after that. Playbasebin/playbin need some more work for this
19765 to finally work, but decodebin supports (and replugs) chained
19768 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
19770 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
19771 (gst_alsa_finalize):
19772 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
19773 (gst_cdaudio_finalize):
19774 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
19775 (cdparanoia_finalize):
19776 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
19777 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
19778 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
19779 (dvdreadsrc_finalize):
19780 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
19781 (gst_flacdec_finalize):
19782 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
19783 (gst_flacenc_finalize):
19784 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
19785 (gst_gnomevfssink_finalize):
19786 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
19787 (gst_gnomevfssrc_finalize):
19788 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
19789 (gst_fameenc_finalize):
19790 * ext/nas/nassink.c: (gst_nassink_class_init),
19791 (gst_nassink_finalize):
19792 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19793 (gst_sdlvideosink_class_init):
19794 * ext/sndfile/gstsf.c: (gst_sf_dispose):
19795 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
19796 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
19797 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
19798 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
19799 (gst_x_window_listener_dispose):
19800 * gst/audioscale/gstaudioscale.c:
19801 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
19802 (play_on_demand_finalize):
19803 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
19804 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
19805 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
19806 (cdplayer_finalize):
19807 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
19808 (gst_glimagesink_class_init):
19809 * sys/oss/gstosselement.c: (gst_osselement_class_init),
19810 (gst_osselement_finalize):
19811 * sys/oss/gstosssink.c: (gst_osssink_dispose):
19812 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
19813 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
19814 Fixes a bunch of problems with finalize and dispose functions,
19815 either assumptions that dispose is only called once, or not calling
19816 the parent class dispose/finalize function
19818 2004-11-01 Stefan Kost <ensonic@users.sf.net>
19820 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
19821 added two api precondition guards
19822 use g_strdup with getenv to fix crash when using ENVVAR
19824 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
19825 * ext/esd/esdsink.c: (gst_esdsink_class_init),
19826 (gst_esdsink_finalize):
19827 Use a finalize function, not dispose, and more importantly,
19828 call the parent class finalize function too
19830 2004-11-01 Johan Dahlin <johan@gnome.org>
19832 * ext/ogg/gstoggdemux.c:
19833 * gst/tags/gstvorbistag.c:
19836 2004-10-31 Benjamin Otte <otte@gnome.org>
19838 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
19839 lotsa memleaks today. But they're all small...
19841 2004-10-31 Benjamin Otte <otte@gnome.org>
19843 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19844 another memleak crushed
19846 2004-10-31 Benjamin Otte <otte@gnome.org>
19848 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
19851 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19853 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
19854 Hack to prevent crash when going to READY inside signal handler
19855 while this function is active.
19857 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19859 * gst/ffmpegcolorspace/Makefile.am:
19860 * gst/ffmpegcolorspace/avcodec.h:
19861 * gst/ffmpegcolorspace/common.h:
19862 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
19863 * gst/ffmpegcolorspace/dsputil.h:
19864 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
19865 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19866 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
19867 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
19868 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
19869 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
19870 (gst_ffmpegcsp_avpicture_fill):
19871 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19872 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19873 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
19874 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
19875 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
19876 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
19877 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
19878 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
19879 * gst/ffmpegcolorspace/imgconvert.c:
19880 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
19881 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
19882 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
19883 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
19884 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
19885 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
19886 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
19887 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
19888 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
19889 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
19890 (grow21), (grow22), (grow41), (grow44), (conv411),
19891 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
19892 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
19893 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
19894 (avpicture_free), (is_yuv_planar), (img_convert),
19895 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
19896 (deinterlace_line_inplace), (deinterlace_bottom_field),
19897 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19898 * gst/ffmpegcolorspace/imgconvert_template.h:
19899 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19900 * gst/ffmpegcolorspace/mmx.h:
19901 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
19902 (av_fast_realloc), (av_mallocz_static), (av_free_static),
19903 (av_freep), (avcodec_get_context_defaults),
19904 (avcodec_alloc_context), (avcodec_init):
19905 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
19906 handling plus update from ffmpeg CVS. Large clean-up.
19908 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19910 * gst/playback/Makefile.am:
19911 We need the marshallers for decodebin, too.
19913 2004-10-30 David Schleef <ds@schleef.org>
19915 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
19916 quicktime typefinding work with 64-bit offsets.
19918 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
19920 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
19921 Set EOS on the element when processing an EOS event.
19922 * ext/speex/gstspeexdec.h:
19923 * ext/speex/gstspeexenc.h:
19924 Only keep a const ptr to the mode
19925 * gst-libs/gst/riff/riff-media.c:
19926 (gst_riff_create_audio_caps_with_data),
19927 (gst_riff_create_audio_template_caps):
19928 Allow WMAV3, with up to 6 channels.
19929 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
19930 Don't call gst_pad_set_event_function on a sink pad.
19931 * gst/mpegstream/gstdvddemux.c:
19932 (gst_dvd_demux_get_subpicture_stream),
19933 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
19934 Copy the explicit caps that were set across to the cur_* pads,
19935 instead of trying to use a possibly non-existent negotiated caps.
19936 Reset the type of subpicture pads to UNKNOWN after calling
19937 init_stream, so that the caps get set.
19939 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
19941 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19943 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19944 Don't touch buffer if it is of size 0 (fixes #151064).
19946 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19948 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
19949 Synchronized discont handling.
19951 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19953 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
19954 (gst_ogg_demux_push):
19955 Make seeking sort-of exact again (fixes #156387).
19957 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19959 * gst/playback/gstplaybasebin.c: (unknown_type),
19960 (add_element_stream), (new_decoded_pad),
19961 (gst_play_base_bin_change_state):
19962 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
19963 (gst_stream_info_init), (gst_stream_info_new),
19964 (gst_stream_info_dispose), (gst_stream_info_get_property):
19965 * gst/playback/gststreaminfo.h:
19966 Make caps explicitely available. Makes testing for unsupported
19967 types possible. Improves error reporting.
19969 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19971 * gst/audioconvert/gstaudioconvert.c:
19972 (gst_audio_convert_buffer_to_default_format):
19973 Really don't touch read-only buffers (#156563).
19975 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
19977 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
19979 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
19980 Fix memleak (#155223).
19982 2004-10-29 Wim Taymans <wim@fluendo.com>
19984 * gst/tcp/.cvsignore:
19985 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
19986 (gst_multifdsink_class_init), (gst_multifdsink_init),
19987 (gst_multifdsink_add), (gst_multifdsink_remove),
19988 (gst_multifdsink_remove_client_link), (is_sync_frame),
19989 (gst_multifdsink_new_client),
19990 (gst_multifdsink_handle_client_write),
19991 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
19992 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
19993 (gst_multifdsink_get_property):
19994 * gst/tcp/gstmultifdsink.h:
19995 Added burst on connect sync_method, deprecated sync_clients,
19996 streamlined the sync code some more.
19998 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20000 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
20001 (gst_play_base_bin_change_state):
20002 Improve error reporting.
20004 2004-10-28 Wim Taymans <wim@fluendo.com>
20006 * gst/tcp/Makefile.am:
20007 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
20008 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
20009 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
20010 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
20011 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
20012 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
20014 Added more locks around fdset structures. Fixed/reworked
20015 the poll array resizing code.
20016 Added stress test for fdset.
20018 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20020 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
20023 2004-10-28 Benjamin Otte <otte@gnome.org>
20025 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
20026 fix link function to always query channels and query width for
20030 * gst/equalizer/Makefile.am:
20031 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
20032 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
20033 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
20034 (arg_to_scale), (setup_filter),
20035 (gst_iir_equalizer_compute_frequencies),
20036 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
20037 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
20041 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
20043 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
20047 Added Norwegian Bokmaal translation
20049 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20051 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20052 Don't break on options (fixes #156488).
20054 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
20057 * ext/cdaudio/Makefile.am:
20059 fix build on older automake
20061 2004-10-26 Wim Taymans <wim@fluendo.com>
20063 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20064 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20065 Allow a little margin when negotiating the framerate.
20067 2004-10-26 Stefan Kost <ensonic@users.sf.net>
20069 * gst/level/gstlevel.c:
20070 synchonised naming of pads and pad-templates
20072 2004-10-26 Wim Taymans <wim@fluendo.com>
20074 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20075 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
20076 (_find_streams_check), (gst_ogg_demux_push):
20077 Fix EOS again. Needs to be done in a better way. We should not
20078 remove the pad if there is no new chained stream.
20080 2004-10-26 Iain <iaingnome@gmail.com>
20082 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
20083 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
20085 * gst/interleave/interleave.c (interleave_class_init): Hook up release
20087 (interleave_release_pad): Remove the pad.
20088 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
20089 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
20091 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
20093 (gst_xvimagesink_xcontext_clear): Free the xcontext.
20094 (gst_xvimagesink_finalize): Free the par.
20096 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20098 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
20099 (gst_avimux_stop_file):
20100 First calculate the rate, and only then use it. Hdr.rate is a
20101 multiple and not a derivative of hdr.scale. Scale is not the
20102 same as blockalign but is solely related to rate.
20104 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20106 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
20107 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
20110 2004-10-25 James Henstridge <james@jamesh.id.au>
20112 Reviewed by: David Schleef <ds@schleef.org>
20114 * examples/gstplay/player.c: (got_stream_length), (main):
20115 * examples/seeking/cdplayer.c: (update_scale):
20116 * examples/seeking/seek.c: (format_value), (update_scale):
20117 * examples/seeking/spider_seek.c: (format_value), (update_scale),
20119 Build fixes on AMD64.
20121 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20123 reviewed by: Ronald Bultje <rbultje at gnome dot org>
20125 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
20126 Fix for some v4l cards which hang in v4lsrc
20128 2004-10-25 Wim Taymans <wim@fluendo.com>
20130 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
20131 (gst_ogg_demux_push), (gst_ogg_chains_clear):
20132 Make sure to remove the pad when a new chain is
20133 encountered. Set some vars to NULL so we don't try
20134 to reference freed memory.
20136 2004-10-25 Wim Taymans <wim@fluendo.com>
20138 * examples/seeking/Makefile.am:
20139 * examples/seeking/cdplayer.c: (update_scale):
20140 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
20141 * examples/seeking/playbin.c: (make_playerbin_pipeline),
20142 (format_value), (update_scale), (iterate), (start_seek),
20143 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
20144 (print_usage), (main):
20145 Added some more examples, update others.
20147 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20149 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
20150 * ext/speex/gstspeexdec.c: (speex_dec_chain):
20151 * ext/theora/theoradec.c: (theora_dec_chain):
20152 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20153 Add codec-name metadata.
20155 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
20157 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20159 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20160 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20161 * ext/alsa/gstalsamixertrack.h:
20163 ALSA mixer track label internationalization (#154054).
20165 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20167 * ext/theora/theoradec.c: (theora_dec_chain):
20168 Export bitrate as metadata.
20170 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20172 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20173 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
20174 * ext/alsa/gstalsamixertrack.h:
20175 Fix names, fix loop.
20177 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20179 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
20180 (speex_dec_convert):
20181 sinkconvert function so oggdemux can get the file length (totem).
20183 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
20185 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20187 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
20188 Don't push incomplete packets.
20189 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
20190 Fix MPEG-4 audio typefinding.
20192 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20194 * sys/v4l/Makefile.am:
20195 * sys/v4l/gstv4l.c: (plugin_init):
20196 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
20197 (gst_v4lelement_init), (gst_v4lelement_dispose),
20198 (gst_v4lelement_change_state):
20199 * sys/v4l/gstv4lelement.h:
20200 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
20201 (gst_v4l_xoverlay_close), (idle_refresh),
20202 (gst_v4l_xoverlay_set_xwindow_id):
20203 * sys/v4l/gstv4lxoverlay.h:
20204 * sys/v4l/v4l-overlay_calls.c:
20205 * sys/v4l/v4l_calls.h:
20206 * sys/v4l2/Makefile.am:
20207 * sys/v4l2/gstv4l2.c: (plugin_init):
20208 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
20209 (gst_v4l2element_init), (gst_v4l2element_dispose),
20210 (gst_v4l2element_change_state):
20211 * sys/v4l2/gstv4l2element.h:
20212 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
20213 (gst_v4l2_xoverlay_close), (idle_refresh),
20214 (gst_v4l2_xoverlay_set_xwindow_id):
20215 * sys/v4l2/gstv4l2xoverlay.h:
20216 * sys/v4l2/v4l2-overlay_calls.c:
20217 * sys/v4l2/v4l2_calls.h:
20218 Remove client-side overlay handling, use the X-server v4l plugin
20219 for that. Nicer overlay, less code. Also make the plugin
20220 compileable without X (but then without overlay, obviously).
20221 Makes xwindowlistener obsolete, should we remove that?
20223 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20225 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
20226 (gst_osssrc_src_query):
20227 * sys/oss/gstosssrc.h:
20228 OK, so people want offset in DEFAULT. This time, actually fix all
20230 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
20233 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20235 * gst/asfdemux/gstasfmux.c:
20236 * gst/avi/gstavimux.c:
20239 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20241 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
20242 Fix properties (channel, norm, frequency).
20244 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20246 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
20248 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
20251 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20253 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
20256 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20258 * sys/v4l2/gstv4l2element.h:
20259 Yet Another Hack (tm) for kernel header borkedness.
20260 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
20261 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
20262 (gst_v4l2src_link), (gst_v4l2src_getcaps),
20263 (gst_v4l2src_change_state):
20264 * sys/v4l2/gstv4l2src.h:
20265 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
20266 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
20267 Fix caps, keep track of state, work.
20269 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20271 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
20274 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20276 * sys/oss/gstosssrc.c: (gst_osssrc_get):
20277 Don't mix bytes and samples.
20279 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20281 * ext/ogg/gstoggmux.c:
20282 Basic pad template which accepts OGM tracks, speex, flac, vorbis
20283 and theora. Any is incorrect.
20284 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
20286 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
20287 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
20288 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
20289 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
20290 * sys/v4l/gstv4lmjpegsrc.h:
20291 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20292 (gst_v4lsrc_change_state):
20293 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
20294 (gst_v4lmjpegsrc_capture_stop):
20295 Fix caps. Keep track of internal state. Work.
20297 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20300 Fix the build fixes.
20302 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20304 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20305 (gst_ogg_demux_src_event), (_find_chain_seek),
20306 (gst_ogg_pad_push):
20307 Check for pad availability before using it.
20308 * ext/ogg/gstoggdemux.c: (_find_chain_process):
20309 Fix parsing of chained ogg. Needs more work on the decoder side.
20311 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
20313 * gst/spectrum/Makefile.am:
20314 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
20316 Fix demo and reenable it. Yes, I'm currently playing with audio
20319 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20321 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20322 We love it if files that start at zero work too...
20324 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20326 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20327 Handle files with missing EOS headers.
20329 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20331 * gst/tcp/gsttcpserversink.c:
20332 (gst_tcpserversink_handle_server_read),
20333 (gst_tcpserversink_init_send):
20334 Zero some variables first (need for accept not to return EINVAL)
20336 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20338 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20339 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20340 * ext/theora/theoradec.c: (theora_dec_sink_convert),
20341 (theora_dec_chain):
20342 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
20343 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
20344 Seeking and querying finetune.
20346 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
20350 * ext/raw1394/Makefile.am:
20353 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20355 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20357 * gst/playback/Makefile.am:
20358 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
20359 * gst/playback/gstplay-marshal.list:
20360 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
20363 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20365 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
20368 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20370 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20371 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20372 (gst_ogg_pad_push):
20373 Yay for non-lineair granulepos in theora.
20375 2004-10-18 Wim Taymans <wim@fluendo.com>
20377 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20378 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
20379 * ext/dv/gstdvdec.h:
20380 Make sure we renegotiate aspect ratio when the camera switches.
20382 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20384 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20385 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
20387 * ext/theora/theoradec.c: (theora_dec_chain):
20388 Skip headers. Bad idea for chained ogg, but fixes seeking.
20390 2004-10-18 Wim Taymans <wim@fluendo.com>
20393 I swear, this is the last time I touch this.
20395 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20397 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
20398 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
20399 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
20401 * ext/theora/theoradec.c: (theora_dec_sink_convert):
20402 Time-to-default conversion.
20403 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
20404 Don't error on unknown packets, just skip. We should probably
20405 read them if we want to support chained ogg.
20407 2004-10-18 Wim Taymans <wim@fluendo.com>
20410 Added cdaudio to wrong list.
20412 2004-10-18 Wim Taymans <wim@fluendo.com>
20417 2004-10-18 Wim Taymans <wim@fluendo.com>
20419 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
20420 (gst_dvdec_video_link), (gst_dvdec_push):
20421 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20422 (gst_smokeenc_resync), (gst_smokeenc_chain):
20423 Fix mimetype on smoke encoder.
20424 Add aspect ratio to dvdec. Not sure if these
20425 values are correct though....
20427 2004-10-18 Wim Taymans <wim@fluendo.com>
20429 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
20430 Fix vorbis property descriptions and ranges.
20432 2004-10-18 Wim Taymans <wim@fluendo.com>
20434 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
20435 Really do nothing when no data is available.
20436 Go to the playing state when the stream is not seekable
20437 instead of failing.
20439 2004-10-18 Wim Taymans <wim@fluendo.com>
20441 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
20442 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
20443 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
20444 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
20445 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
20446 Added uri handler for cd://
20449 2004-10-18 Wim Taymans <wim@fluendo.com>
20451 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20452 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20453 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20454 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20455 (remove_prerolls), (unknown_type), (add_element_stream),
20456 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
20457 (gst_play_base_bin_remove_element),
20458 (gst_play_base_bin_link_stream):
20459 * gst/playback/gstplaybin.c: (gen_video_element),
20460 (gen_vis_element), (remove_sinks), (setup_sinks):
20461 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20462 (gst_stream_info_get_type), (gst_stream_info_class_init),
20463 (gst_stream_info_init), (gst_stream_info_new),
20464 (gst_stream_info_dispose), (stream_info_mute_pad),
20465 (gst_stream_info_set_property), (gst_stream_info_get_property):
20466 * gst/playback/gststreaminfo.h:
20467 Add sink padtemplate to decodebin.
20468 Added some more comments.
20469 Make queue size configurable in playbasebin.
20470 Added possibility to use elements as sinks (ex cdaudio).
20472 2004-10-15 Wim Taymans <wim@fluendo.com>
20474 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
20475 (gst_speexenc_chain):
20476 Fix speex timestamps so that it gets muxed properly.
20478 2004-10-15 Wim Taymans <wim@fluendo.com>
20480 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
20481 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
20482 (gst_dv1394src_init), (gst_dv1394src_dispose),
20483 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
20484 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
20485 (gst_dv1394src_event), (gst_dv1394src_get_formats),
20486 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
20487 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
20488 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
20489 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
20490 * ext/raw1394/gstdv1394src.h:
20491 Added conversion/query functions.
20492 Update buffer timestamps,
20494 Added uri dv:// so it might play from the firewire in playbin.
20495 Fix a possible leak.
20498 2004-10-15 Wim Taymans <wim@fluendo.com>
20500 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20501 (gst_dv1394src_init), (gst_dv1394src_set_property),
20502 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
20503 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
20504 * ext/raw1394/gstdv1394src.h:
20505 Added AV/C VTR control support needed for some cameras.
20506 Added automatic port detection.
20507 Added properties for selecting the channel.
20508 The configure.ac script is not yet updated to reflect the
20509 new libavc1394 and librom1394 dependencies.
20511 2004-10-15 Wim Taymans <wim@fluendo.com>
20513 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20514 (qtdemux_parse), (gst_qtdemux_handle_esds):
20515 An esds box is not a container.
20516 Fix parsing of mp4v boxes.
20517 Do not try to renegotiate fps for each frame. Need to
20518 find a better method. This should fix mp4 playback.
20520 2004-10-14 David Schleef <ds@schleef.org>
20522 * configure.ac: update for swfdec-0.3 and liboil-0.2
20523 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
20524 * ext/swfdec/gstswfdec.h: same
20525 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
20526 * gst/videotestsrc/videotestsrc.c: same
20528 2004-10-14 Wim Taymans <wim@fluendo.com>
20530 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
20531 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
20532 (is_sync_frame), (gst_multifdsink_new_client),
20533 (gst_multifdsink_handle_client_write),
20534 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20535 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
20536 Turn warnings into info.
20537 Don't allow a state change in the streaming thread.
20539 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
20541 * ext/vorbis/oggvorbisenc.c:
20542 * ext/vorbis/vorbisdec.c:
20543 fix template sample rate
20545 2004-10-13 Wim Taymans <wim@fluendo.com>
20547 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
20548 Decoding the header first fixes some problems in resyncing
20551 2004-10-12 Wim Taymans <wim@fluendo.com>
20553 * gst/playback/gstplaybin.c: (gen_video_element),
20554 (gen_vis_element), (remove_sinks), (setup_sinks):
20555 Added vis plugin support, need to configure the vis
20556 element to activate it.
20558 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20560 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
20561 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
20563 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20564 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
20565 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
20566 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
20567 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
20568 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
20569 * gst/avi/gstavidemux.h:
20570 Support for openDML-2.0 indx/ix## chunks. Support for broken index
20571 recovery (where, if part of the index is broken, we will still read
20572 the rest of the index and recover the broken part by stream
20573 scanning). More broken media support. EOS workarounds. General AVI
20574 braindamage headache recovery. Aspirin included.
20576 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20578 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
20579 (cdparanoia_event), (cdparanoia_query):
20580 Get rid of hideous lead-in.
20582 2004-10-11 Wim Taymans <wim@fluendo.com>
20584 * gst/playback/gstplaybasebin.c: (setup_source):
20585 Wrong var used to get g_list_next.
20587 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20589 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
20590 (cdparanoia_get), (cdparanoia_open):
20591 Report discid as metadata, add duration.
20593 2004-10-11 Wim Taymans <wim@fluendo.com>
20595 * gst/playback/gstplaybasebin.c: (setup_source):
20596 Cleanup the previous pipeline a little earlier for the
20597 case that a source element provides raw data.
20599 2004-10-11 Benjamin Otte <otte@gnome.org>
20601 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20602 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
20603 consuming the last 128 bytes, even though it was valid mp3 data.
20605 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20607 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
20608 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20609 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20610 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
20612 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20614 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
20615 Fix for webcams that support only specific width or height
20617 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20619 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20621 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
20622 Fix wrong discont event setup (fixes #154967).
20624 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
20626 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20628 * gst/auparse/gstauparse.c: (gst_auparse_chain):
20629 Error out on invalid data (fixes #154807).
20631 2004-10-09 Tim-Philipp Müller <t.i.m@zen.co.uk>
20633 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20635 * ext/dvdread/dvdreadsrc.c: (_read):
20636 Make titles > 0 work again (fixes #154834).
20638 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20640 * gst-libs/gst/riff/riff-media.c:
20641 (gst_riff_create_video_template_caps):
20642 WMV3 missing in template caps.
20644 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20646 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20647 OK, so the original code was too strict. It makes random AVI files
20648 hang for seconds upon opening, which is unacceptable and is far
20649 beyond the original goal of getting multiple chunks for one-chunk
20650 sounc stream files. So now do just that.
20652 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20654 * gst/playback/gstplaybasebin.c: (setup_source),
20655 (gst_play_base_bin_change_state):
20656 Actually clean up streaminfo if output fails. This would trigger
20657 if, for example, there was no CD in the drive. No preroll, so
20658 a streaminfo structure is created, but the subsequent state change
20659 of the thread fails.
20660 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
20661 Don't change state if parent failed.
20663 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20665 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
20666 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
20667 (gen_video_element), (remove_sinks):
20668 Add small bits of code for screenshot handling.
20670 2004-10-08 Wim Taymans <wim@fluendo.com>
20672 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
20673 (gen_video_element), (gen_audio_element), (setup_sinks):
20674 Don't assume the user provided sinks are named "sink"...
20676 2004-10-08 Wim Taymans <wim@fluendo.com>
20678 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
20679 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
20680 (gst_play_base_bin_link_stream):
20681 Do not try to autoplug sources that generate raw streams like
20683 disconnect the preroll overrun signal when we don't need it anymore.
20685 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
20687 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20688 Added reworked patch from #154903 from milosz derezynski (deadchip).
20690 2004-10-08 Wim Taymans <wim@fluendo.com>
20692 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
20693 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
20694 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
20695 (cdparanoia_convert), (cdparanoia_uri_get_type),
20696 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
20697 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
20698 * ext/cdparanoia/gstcdparanoia.h:
20699 This adds the cdda://<tracknum> uri.
20701 2004-10-08 Wim Taymans <wim@fluendo.com>
20703 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
20704 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
20705 (try_to_link_1), (no_more_pads), (close_link), (type_found):
20706 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
20707 (unknown_type), (gst_play_base_bin_remove_element),
20708 (gst_play_base_bin_link_stream):
20709 * gst/playback/gstplaybasebin.h:
20710 * gst/playback/gstplaybin.c: (gst_play_bin_init),
20711 (gst_play_bin_set_property), (gen_video_element),
20712 (gen_audio_element), (setup_sinks):
20713 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
20714 (gst_stream_info_get_type), (gst_stream_info_class_init),
20715 (gst_stream_info_init), (gst_stream_info_new),
20716 (gst_stream_info_dispose), (stream_info_mute_pad),
20717 (gst_stream_info_set_property), (gst_stream_info_get_property):
20718 * gst/playback/gststreaminfo.h:
20719 Reuse the audio and video bins.
20720 Some internal cleanups in the stream selection code.
20722 2004-10-08 Julien MOUTTE <julien@moutte.net>
20724 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20725 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20726 * sys/ximage/ximagesink.h:
20727 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20728 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20729 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
20730 not coming from those elements. Moreover these elements should not keep
20731 the xid they have been given when in NULL state.
20733 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20735 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20736 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
20737 * sys/ximage/ximagesink.h:
20738 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20739 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
20740 * sys/xvimage/xvimagesink.h:
20741 Actually only create a new toplevel window if we're not gonna
20742 embed it right after.
20744 2004-10-07 Wim Taymans <wim@fluendo.com>
20746 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
20747 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
20748 * gst/playback/gstplaybin.c: (setup_sinks):
20749 Implement muting/unmuting of streams, mute streams that are not
20752 2004-10-07 Wim Taymans <wim@fluendo.com>
20754 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
20756 Added lame audio/x-ac3 typefind function.
20758 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20763 === release 0.8.5 ===
20765 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20770 releasing 0.8.5, "Take You On"
20772 2004-10-06 Wim Taymans <wim@fluendo.com>
20774 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20775 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20776 (no_more_pads), (close_link), (type_found):
20777 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20778 * gst/playback/gstplaybin.c: (gen_video_element):
20779 Do not signal the no_more_pads after the first pad when
20780 we are plugging a non dynamic element with multiple
20781 output pads (like swfdec, dvdec, ...).
20783 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20786 bump for prerelease
20788 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20790 * gst/wavparse/gstwavparse.c:
20791 add ATRAC3 to STATIC CAPS to fix a warning
20793 * gst/matroska/ebml-read.c:
20794 * gst-libs/gst/riff/riff-read.c:
20797 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20799 * gst-libs/gst/riff/riff-media.c:
20800 generate caps for ATRAC3 audio streams
20802 * gst/realmedia/rmdemux.c:
20803 generate caps for ATRAC3 audio streams
20805 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20807 * gst/wavparse/Makefile.am
20808 * gst/wavparse/riff.h
20809 * gst/wavparse/wavparse.vcproj
20810 riff.h removal (unused and duplication with riff-ids.h)
20812 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20814 * gst/wavparse/gstwavparse.h
20815 remove duplicated defines for audio codec codes
20817 * gst-libs/gst/riff/riff-ids.h
20818 * gst/wavenc/riff.h:
20819 add "4CC" code for ATRAC3 audio streams
20820 add "4CC" code for ITU_G721_ADPCM (unused for now)
20822 2004-10-06 Wim Taymans <wim@fluendo.com>
20824 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
20825 Actually _do_ negotiation. Pass gdouble as arg instead
20826 of guint64 for the framerate.
20828 2004-10-06 Wim Taymans <wim@fluendo.com>
20830 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
20831 (find_compatibles), (close_pad_link), (try_to_link_1),
20832 (no_more_pads), (close_link), (type_found):
20833 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
20834 * gst/playback/gstplaybin.c: (gen_video_element),
20835 (gen_audio_element):
20836 Set state on newly added element to READY so that negotiation
20838 Addes some more debug info.
20839 Do not try to plug pads with multiple caps structures or ANY
20840 because it is too dangerous since we do not do dynamic
20843 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
20845 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
20849 add Oriya translation
20851 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20853 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20854 Prevent overwrite of size member. Makes audio sound crappy.
20856 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20858 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
20859 Add rmvb to the list of known RealMedia extensions
20861 2004-10-05 Wim Taymans <wim@fluendo.com>
20863 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
20864 (mngdec_openstream), (mngdec_closestream),
20865 (mngdec_handle_sink_event), (mngdec_readdata),
20866 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
20867 (mngdec_getcanvasline), (mngdec_refresh),
20868 (gst_mngdec_change_state):
20869 Set the framerate correctly.
20871 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20873 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20874 There was something wrong with the index massaging.
20876 2004-10-04 Wim Taymans <wim@fluendo.com>
20878 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
20879 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
20880 (gst_smokedec_chain):
20881 * ext/jpeg/gstsmokedec.h:
20882 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
20883 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
20884 * ext/jpeg/gstsmokeenc.h:
20885 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
20886 (smokecodec_decode_new), (smokecodec_info_free),
20887 (smokecodec_set_quality), (smokecodec_get_quality),
20888 (smokecodec_set_threshold), (smokecodec_get_threshold),
20889 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20890 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
20891 (smokecodec_encode), (smokecodec_parse_id),
20892 (smokecodec_parse_header), (smokecodec_decode):
20893 * ext/jpeg/smokecodec.h:
20894 * ext/jpeg/smokeformat.h:
20895 Updated smoke, new bitstream, allows embedding in ogg.
20897 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20899 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
20900 Fix seeking in some files. All this code is no longer needed (and
20901 actually breaks stuff) because we now synchronize the full index
20902 right when reading the header.
20904 2004-10-04 Wim Taymans <wim@fluendo.com>
20907 configure update for libmng.
20909 2004-10-04 Wim Taymans <wim@fluendo.com>
20911 * ext/libmng/Makefile.am:
20912 * ext/libmng/gstmng.c: (plugin_init):
20913 * ext/libmng/gstmng.h:
20914 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
20915 (gst_mngdec_base_init), (gst_mngdec_class_init),
20916 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
20917 (gst_mngdec_loop), (gst_mngdec_get_property),
20918 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
20919 (mngdec_closestream), (mngdec_handle_sink_event),
20920 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
20921 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
20922 (gst_mngdec_change_state):
20923 * ext/libmng/gstmngdec.h:
20924 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
20925 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
20926 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
20927 (gst_mngenc_chain), (gst_mngenc_get_property),
20928 (gst_mngenc_set_property):
20929 * ext/libmng/gstmngenc.h:
20930 Added basic MNG decoder. Needs more work. The encoder does
20933 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20935 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
20936 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
20937 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
20938 Don't hang on length=0 chunks. Some negotiation fixes. Signal
20941 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
20944 you need at least 1.0.4 of speex
20946 2004-10-04 Iain <iaingnome@gmail.com>
20948 * ext/speex/gstspeexdec.h: Revert the includes changes.
20950 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
20952 2004-09-30 Iain <iaingnome@gmail.com>
20954 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
20955 found during init or set as a property instead of hardcoding /dev/audio
20957 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20959 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
20960 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
20961 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
20962 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
20963 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
20964 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
20965 (gst_rmdemux_dump_data):
20966 Use debug category, fix EOS handling. filesrc ! rmdemux now
20969 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20971 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
20972 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
20973 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
20974 Improve allocation, cutting and sorting of the index. How takes a
20975 few seconds instead of minutes.
20977 2004-10-03 Christophe Fergeau <teuf@gnome.org>
20979 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
20982 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20984 * gst-libs/gst/riff/riff-media.c:
20985 (gst_riff_create_video_caps_with_data),
20986 (gst_riff_create_video_template_caps):
20987 Add wing commander format mimetype/fourccs.
20988 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
20989 Don't crash if some value is 0.
20991 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
20993 * gst-libs/gst/riff/riff-media.c:
20994 (gst_riff_create_video_caps_with_data),
20995 (gst_riff_create_video_template_caps):
20996 Add DIB fourcc (raw, palettized 8-bit RGB).
20997 * gst-libs/gst/riff/riff-read.c:
20998 (gst_riff_read_strf_vids_with_data):
20999 Oops, fix strf_data reading bug.
21000 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
21001 Use a non-NULL tag.
21002 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
21003 Time for hacks. Sorry Dave. At least one quicktime movie (a
21004 trailer) that I've encountered contains multiple video tracks.
21005 One of those is the actual video track, the other are one-frame
21006 tracks (images). Unfortunately, the number of frames according
21007 to the trak header is 1 for each, so that doesn't help. So
21008 instead, I look at the duration and discard tracks with a
21009 duration shorter than 20% of the length of the stream. Better
21012 2004-10-01 Christian Schaller <christian@fluendo.com>
21014 * ext/ivorbis/vorbis.c:
21015 Patch from Phil Blundell (Bug 152341)
21017 2004-10-01 Wim Taymans <wim@fluendo.com>
21019 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
21020 (speex_dec_get_formats), (speex_dec_convert),
21021 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
21022 (speex_dec_chain), (gst_speexdec_get_property),
21023 (gst_speexdec_set_property):
21026 2004-10-01 Wim Taymans <wim@fluendo.com>
21028 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
21029 (gst_wavparse_stream_init), (gst_wavparse_fmt),
21030 (gst_wavparse_other), (gst_wavparse_loop),
21031 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21032 (gst_wavparse_srcpad_event):
21033 * gst/wavparse/gstwavparse.h:
21034 Added some more debugging info.
21035 Fix the case where the length of the file is 0.
21036 Make sure we seek to sample borders.
21038 2004-10-01 Wim Taymans <wim@fluendo.com>
21040 * gst/playback/README:
21041 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
21042 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
21043 (try_to_link_1), (no_more_pads), (close_link), (type_found):
21044 Add some debug info to decodebin, update README
21046 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21048 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
21049 Don't use g_print(); use GST_DEBUG().
21051 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21053 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21054 (gst_ogg_mux_queue_pads):
21055 Handle EOS properly.
21057 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
21059 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21061 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
21062 (gst_faad_chain), (gst_faad_change_state):
21063 * ext/faad/gstfaad.h:
21064 Allow playback of raw (unframed) MPEG AAC files (#148993).
21066 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
21068 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21070 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21071 Throw error if we didn't recognize the stream. Fixes #152289.
21073 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21075 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
21078 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
21080 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21082 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
21085 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
21087 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21089 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
21091 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
21094 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21096 * gst-libs/gst/riff/riff-media.c:
21097 (gst_riff_create_video_caps_with_data),
21098 (gst_riff_create_audio_caps_with_data):
21099 Add codec_data handling (like asfdemux used to do).
21100 * gst/asfdemux/gstasf.c: (plugin_init):
21101 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21102 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
21103 Use riff-media for caps creation instead of our own (mostly
21104 broken) copy of its functions.
21106 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21108 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
21109 Don't actually error out if we get another return value than
21110 -EINVAL. Opposite to what I first thought, drivers have random
21111 return values for this, although -EINVAL is the expected return
21112 value. Since this is not fatal, we shouldn't use
21113 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
21115 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21117 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
21118 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
21119 (dvdreadsrc_get_property), (_open), (_seek), (_read),
21120 (dvdreadsrc_get), (dvdreadsrc_open_file),
21121 (dvdreadsrc_change_state):
21122 Fix. Don't do one big huge loop around the whole DVD, that will
21123 cache all data and thus eat sizeof(dvd) (several GB) before we
21125 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21126 Actually NULL'ify event after using it.
21127 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
21128 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
21129 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21130 (gst_ebml_read_seek), (gst_ebml_read_skip):
21132 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
21133 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
21134 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
21135 Fix timing (this will probably break if I seek using menus, but
21136 I didn't get there yet). VOBs and normal DVDs should now work.
21137 Add a mpeg2-only pad with high rank so this get autoplugged for
21139 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
21140 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
21141 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
21142 (gst_mpeg_demux_get_audio_stream),
21143 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
21144 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
21145 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
21146 MPEG-1 but use dvddemux for MPEG-2.
21147 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
21148 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
21149 (gst_mpeg_parse_parse_packhead):
21150 Timing. Only add pad template if it exists. Add sink template from
21151 class and not from ourselves. This means we will always use the
21152 correct sink template even if it is not the one defined in this
21155 2004-09-29 Wim Taymans <wim@fluendo.com>
21157 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
21158 (gst_mpeg_demux_parse_pes):
21159 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
21160 Fix playback of mpeg again, timestamps where screwed up by
21163 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21165 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
21166 Only return true if we actually filled something in. Prevents
21167 player applications from showing a random length for flac files.
21168 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21169 (gst_riff_read_use_event), (gst_riff_read_handle_event),
21170 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
21171 (gst_riff_read_strf_vids_with_data),
21172 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
21173 OK, ok, so I implemented event handling. Apparently it's normal
21174 that we receive random events at random points without asking
21176 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
21177 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21178 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
21179 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
21180 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
21181 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
21182 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
21183 * gst/avi/gstavidemux.h:
21184 Implement non-lineair chunk handling and subchunk processing.
21185 The first solves playback of AVI files where the audio and video
21186 data of individual buffers that we read are not synchronized.
21187 This should not happen according to the wonderful AVI specs, but
21188 of course it does happen in reality. It is also a prerequisite for
21189 the second. Subchunk processing allows us to cut chunks in small
21190 pieces and process each of these pieces separately. This is
21191 required because I've seen several AVI files with incredibly large
21192 audio chunks, even some files with only one audio chunk for the
21193 whole file. This allows for proper playback including seeking.
21194 This patch is supposed to fix all AVI A/V sync issues.
21195 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
21196 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
21198 * gst/modplug/gstmodplug.cc:
21199 Proper return value setting for the query() function.
21200 * gst/playback/gstplaybasebin.c: (setup_source):
21201 Being in non-playing state (after, e.g., EOS) is not necessarily
21202 a bad thing. Allow for that. This fixes playback of short files.
21203 They don't actually playback fully now, because the clock already
21204 runs. This means that small files (<500kB) with a small length
21205 (<2sec) will still not or barely play. Other files, such as mod
21206 or flx, will work correctly, however.
21208 2004-09-28 Wim Taymans <wim@fluendo.com>
21210 * ext/speex/gstspeex.c: (plugin_init):
21211 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
21212 (gst_speex_dec_class_init), (speex_dec_get_formats),
21213 (speex_get_event_masks), (speex_get_query_types),
21214 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
21215 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
21216 (gst_speexdec_get_property), (gst_speexdec_set_property),
21217 (speex_dec_change_state):
21218 * ext/speex/gstspeexdec.h:
21219 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
21220 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
21221 (gst_speexenc_base_init), (gst_speexenc_class_init),
21222 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
21223 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
21224 (gst_speexenc_src_query), (gst_speexenc_init),
21225 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
21226 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
21227 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
21228 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
21229 (gst_speexenc_chain), (gst_speexenc_get_property),
21230 (gst_speexenc_set_property), (gst_speexenc_change_state):
21231 * ext/speex/gstspeexenc.h:
21232 Rewrote speex encoder, make sure it can be embedded in ogg.
21233 Implemented speex decoder.
21235 2004-09-28 Christian Schaller <christian@fluendo.com>
21238 Remove kioslave plugin. Markey is brewing a new working one
21239 * ext/Makefile.am: Remove kioslave plugin
21241 * gst-plugins.spec.in: remove kio plugin from spec
21243 2004-09-27 Wim Taymans <wim@fluendo.com>
21245 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21246 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
21247 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
21248 (gst_multifdsink_new_client),
21249 (gst_multifdsink_handle_client_write),
21250 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
21251 (gst_multifdsink_handle_clients):
21252 * gst/tcp/gstmultifdsink.h:
21253 Make syncing to keyframes actually work for new clients and lagging
21256 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
21258 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
21259 (gst_navigationtest_handle_src_event), (draw_box_planar411),
21260 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
21261 * gst/debug/gstnavigationtest.h:
21262 make navigationtest display button-press and button-release events
21264 2004-09-26 Iain <iaingnome@gmail.com>
21266 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
21267 the channels have received a new media event.
21268 (interleave_buffered_loop): Compresses a new media event on all
21271 2004-09-26 Iain <iaingnome@gmail.com>
21273 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
21274 call the sinkpad's default event handler and not the srcpads. He also
21275 says this is confusing :)
21276 (gst_wavenc_stop_file): Company says that seek events only go upstream
21277 we should send a discontinuous downstream instead.
21279 2004-09-25 Christian Schaller <christian@fluendo.com>
21281 * Update SPEC file to be usable in conjunction with Fedora Core,
21282 Fedora.us and freshrpms packages
21283 * Fix typo in multifilesrc test Makefile
21285 2004-09-24 Wim Taymans <wim@fluendo.com>
21287 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
21288 Only signal the no_more_pads signal when we have
21289 added the stream to our list.
21291 2004-09-24 Wim Taymans <wim@fluendo.com>
21293 * gst/playback/gstplaybasebin.c: (remove_prerolls),
21295 * gst/playback/gstplaybasebin.h:
21296 * gst/playback/gstplaybin.c: (setup_sinks):
21297 Don't try to preroll or decode more than one audio/video
21300 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21302 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
21303 Throw error if we failed to find a suitable output. This should
21304 throw an error if we successfully set up a pipeline (e.g. because
21305 we recognized a media file) but found no decodable streams in it
21306 (e.g. because it contains only media stream types for which we
21307 have no decoders, or because it's not a media type).
21309 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21311 * ext/dirac/Makefile.am:
21312 * ext/dirac/gstdirac.cc:
21313 * ext/dirac/gstdiracdec.cc:
21314 * ext/dirac/gstdiracdec.h:
21315 Do something. Don't actually know if this works because I don't
21316 have a demuxer yet.
21317 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
21318 Add channels=1 to caps returned from _getcaps().
21319 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
21320 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
21321 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
21322 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
21323 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
21324 (gst_ogm_parse_change_state):
21325 Separate between audio/video so ogmaudioparse actually uses the
21326 audio pad templates. Both audio and video work now, including
21327 autoplugging. Also use sometimes-srcpad hack.
21328 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21329 Handle events better. Don't hang on infinite loops.
21330 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
21331 (gst_avi_demux_init), (gst_avi_demux_reset),
21332 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
21333 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
21334 (gst_avi_demux_change_state):
21335 * gst/avi/gstavidemux.h:
21336 Improve A/V sync. Still not perfect.
21337 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
21338 (gst_ebml_read_skip):
21339 Handle events better.
21340 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21341 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
21342 (qtdemux_audio_caps):
21343 Add IMA4. Improve event handling. Save offset after a seek when
21344 the headers are at the end of the file so that we don't end up in
21346 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
21347 Add low-priority typefind support for files with no length.
21349 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21351 * testsuite/multifilesink/Makefile.am:
21354 2004-09-22 Julien MOUTTE <julien@moutte.net>
21356 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21357 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
21358 mistakes from thaytan's patches.
21360 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21362 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
21363 For completeness, XSync in the destroy function as xvimage does.
21365 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
21367 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
21368 Correct caps negotiation
21369 * gst/volume/gstvolume.c: (volume_chain_float),
21370 (volume_chain_int16):
21371 Modify debug output to be little more informative
21372 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
21373 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21374 (gst_xvimagesink_xvimage_destroy):
21375 Add XSync calls after detaching from the shared memory segment to
21378 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21380 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
21381 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
21382 * ext/vorbis/vorbis.c: (plugin_init):
21383 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
21384 (gst_vorbisenc_chain):
21385 * ext/vorbis/vorbisenc.h:
21386 remove explicit newmedia support from oggmux and vorbisenc
21387 add debug category to vorbisenc
21388 * gst/multifilesink/gstmultifilesink.c:
21389 (gst_multifilesink_class_init), (gst_multifilesink_init),
21390 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
21391 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
21392 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
21394 * gst/multifilesink/gstmultifilesink.h:
21395 add support for streamheader in multifilesink
21397 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21399 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
21400 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
21401 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
21402 Prevent infinite loops. More correct error reporting.
21403 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21404 Error out if negotiation fails.
21405 * gst/playback/gstplaybasebin.c: (setup_source),
21406 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
21407 (gst_play_base_bin_found_tag):
21408 Error/tag forwarding. Pre-roll fixes for source errors on state
21409 changes (e.g. "file does not exist") to prevent hangs.
21411 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21413 * testsuite/multifilesink/Makefile.am:
21414 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
21415 (gst_newmedia_class_init), (gst_newmedia_init),
21416 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21417 (newfile_signal), (test_signal), (main):
21418 * testsuite/multifilesink/multifilesrc_test.c: (main):
21419 * testsuite/multifilesink/oggtheora_test.c:
21420 (gst_newmedia_base_init), (gst_newmedia_class_init),
21421 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21422 (test_format), (newfile_signal), (test_signal), (main):
21423 * testsuite/multifilesink/oggvorbis_test.c:
21424 (gst_newmedia_base_init), (gst_newmedia_class_init),
21425 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
21426 (test_format), (newfile_signal), (test_signal), (main):
21427 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
21428 (gst_newmedia_class_init), (gst_newmedia_init),
21429 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
21430 (newfile_signal), (test_signal), (main):
21433 2004-09-20 Christian Schaller <christian@fluendo.com>
21435 * Fix mikmod license to LGPL as they have relicensed
21436 * Move Dirac and Effectv into LGPL section of README_license
21438 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21440 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
21441 (gst_mad_change_state):
21442 Allow for mp3 rate/channels changes. However, only very
21443 conservatively. Reason that we *have* to enable this is smiply
21444 because the mad find_sync() function is not good enough, it will
21445 regularly sync on random data as valid frames and therefore make
21446 us provide random caps as *final* caps of the stream. The best fix
21447 I could think of is to simply require several of the same stream
21448 changes in a row before we change caps.
21449 The actual testcase that works now is #
21450 * ext/ogg/Makefile.am:
21451 * ext/ogg/gstogg.c: (plugin_init):
21452 * ext/ogg/gstogmparse.c:
21453 OGM support (video only for now; I need an audio sample file).
21454 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
21455 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
21456 (gst_asf_demux_add_video_stream):
21458 * gst/playback/gstplaybasebin.c: (unknown_type):
21459 Don't error out on single unknown-types after all. It's wrong.
21460 If we found type of video and audio but not of a subtitle stream,
21461 it will still error out (which is unwanted). Will find a better fix
21463 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
21464 (ogmaudio_type_find), (plugin_init):
21467 2004-09-20 Johan Dahlin <johan@gnome.org>
21469 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
21470 after setting caps.
21472 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21474 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
21475 * gst/wavenc/gstwavenc.h:
21476 Added newmedia support to wavenc
21478 2004-09-17 Wim Taymans <wim@fluendo.com>
21480 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
21481 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
21482 (gst_fdset_fd_can_write), (gst_fdset_wait):
21483 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
21484 (gst_multifdsink_init), (gst_multifdsink_add),
21485 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
21486 (gst_multifdsink_remove_client_link),
21487 (gst_multifdsink_client_queue_buffer),
21488 (gst_multifdsink_handle_client_write),
21489 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
21490 (gst_multifdsink_close), (gst_multifdsink_change_state):
21491 * gst/tcp/gstmultifdsink.h:
21492 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
21493 (gst_tcpserversink_removed):
21494 Small cleanups in fdset.c
21495 Use a hastable to map fd to the client structure for faster
21496 lookup in _remove and get_stats.
21497 Added virtual function to close the fds.
21498 Handle clients even when the select/poll call was unblocked because
21500 Implement syncing to keyframe in the recovery procedure.
21502 2004-09-16 Iain <iaingnome@gmail.com>
21504 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
21507 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21509 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
21510 Caps are only set if the type of the stream is unknown, but this
21511 is initialized in ->init_stream(), so set to UNKNOWN after calling
21512 ->init_stream() so that capsnego starts.
21514 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21516 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21517 (gst_avi_demux_stream_data):
21518 Just hardcode for raw audio then. AVI audio sucks.
21520 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
21522 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
21523 * gst/matroska/matroska-mux.c: (audiosink_templ),
21524 (gst_matroska_mux_audio_pad_link):
21525 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
21526 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
21528 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21530 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21531 (gst_avi_demux_stream_data):
21532 Try to fix a/v sync issues.
21534 2004-09-15 David Schleef <ds@schleef.org>
21536 * configure.ac: remove NASM check, since we don't use it. Update
21538 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
21539 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21540 Initialized variables.
21541 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21542 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
21543 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
21546 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21548 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
21549 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
21550 * gst/avi/gstavidemux.h:
21551 Fix for compressed audio (mp3) timestamp generation. How did this
21554 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21556 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
21557 Volume is a double not a float.
21559 2004-09-15 Wim Taymans <wim@fluendo.com>
21561 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
21562 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
21563 Don't close the fd in multifdsink as we didn't open it in the
21564 first place. Some cleanups.
21566 2004-09-15 Wim Taymans <wim@fluendo.com>
21568 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21569 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21570 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21571 Fix the case where the muxer would mark pages as delta
21572 frames when they are not (vorbis only ogg).
21574 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21576 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
21577 (gst_play_base_bin_change_state):
21578 Handle the case where we failed to setup a clear pipeline. This
21579 will throw an error (or EOS, another nice case) and if you don't
21580 catch that, the app will wait for the signal forever (and thus
21583 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21585 * ext/gnomevfs/gstgnomevfssink.c:
21586 (gst_gnomevfssink_uri_get_protocols):
21587 * ext/gnomevfs/gstgnomevfssrc.c:
21588 (gst_gnomevfssrc_uri_get_protocols):
21589 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21590 * ext/gnomevfs/gstgnomevfsuri.h:
21591 Use _uri_new() instead of _open(), so it doesn't take as long and
21592 Christophe's computer won't hang.
21593 * gst/playback/gstplaybasebin.c: (unknown_type):
21594 Throw error on unknown media type, so apps actually display it.
21596 2004-09-14 Brian Cameron <brian.cameron@sun.com
21598 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
21599 this script to work on Solaris since bash shell handles echo
21600 differenly than bash.
21602 2004-09-17 Wim Taymans <wim@fluendo.com>
21604 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
21605 (setup_source), (gst_play_base_bin_set_property),
21606 (gst_play_base_bin_add_element):
21607 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
21608 Some more work on making sure seeking pauses the pipeline and
21609 that changing the uri actually does something.
21611 2004-09-17 Wim Taymans <wim@fluendo.com>
21613 * gst/tcp/gstfdset.c: (gst_fdset_wait):
21614 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
21615 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
21616 (gst_tcpserversink_close):
21617 Be a bit more paranoid when freeing memory.
21619 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21621 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
21622 (qtdemux_parse_trak):
21623 Don't crash by dividing by zero (see sample movie in #126922).
21625 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21627 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21628 Don't touch non-existing data (fixes crash on file in #140147).
21630 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21632 * gst/playback/gstplaybasebin.c:
21633 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
21634 Handle double disposals, and proper change of URIs.
21636 2004-09-13 Martin Eikermann <meiker@upb.de>
21638 * gst/mpegstream/gstmpegparse.c:
21639 fix synchronistation for streams recorded from digital PCR
21642 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21644 * ext/gnomevfs/Makefile.am:
21645 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21646 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
21647 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
21648 (gst_gnomevfssink_uri_get_type),
21649 (gst_gnomevfssink_uri_get_protocols),
21650 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
21651 (gst_gnomevfssink_uri_handler_init),
21652 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
21653 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
21654 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
21655 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
21656 (gst_gnomevfssrc_uri_get_type),
21657 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
21658 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
21659 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
21660 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
21661 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
21662 * ext/gnomevfs/gstgnomevfsuri.h:
21663 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
21664 of fake URIs to see which this version of Gnome-VFS likes, and
21665 uses that for the Gst-URI interface. Makes playbin support http://
21666 streams. Also fix up some stupid behaviour in gnomevfssrc.
21668 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21670 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
21671 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21672 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
21673 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
21674 Update mixer (to sync with other sessions) if we try to obtain
21675 a new value. This makes alsamixer work accross applications.
21676 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21677 Only call sync functions if we're running, else alsalib asserts.
21678 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21679 Sometimes fails to compile. Possibly a gcc bug.
21680 * gst/playback/gstplaybin.c: (gen_video_element),
21681 (gen_audio_element):
21682 Add a reference to an application-provided object, because we lose
21683 this same reference if we add it to the bin. If we don't do this,
21684 we can only use this object once and thus crash if we go from
21685 ready to playing, back to ready and back to playing again.
21686 Also add an audioscale element because several cheap soundcards -
21687 like mine - don't support all samplerates.
21688 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21689 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
21690 Fix wrong order or PAR calls. Makes automatically obtained PAR
21691 from the X server atually being used.
21693 2004-09-12 David Schleef <ds@schleef.org>
21695 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
21696 #151887, #152102, #152247.
21697 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
21698 * examples/seeking/cdparanoia.c: same
21699 * examples/seeking/cdplayer.c: same
21700 * examples/seeking/seek.c: same
21701 * examples/seeking/spider_seek.c: same
21702 * examples/seeking/vorbisfile.c: same
21703 * examples/stats/mp2ogg.c: same
21704 * ext/esd/esdsink.c: (gst_esdsink_class_init),
21705 (gst_esdsink_dispose): Dispose of element properly.
21706 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
21708 * ext/nas/nassink.c: (gst_nassink_class_init),
21709 (gst_nassink_dispose): Dispose of element correctly.
21710 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
21711 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21712 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
21713 Fix 64-bit warning.
21714 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21715 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
21716 Fix 64-bit warning.
21718 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21720 * configure.ac : change speex detection as 1.1.6 now uses
21721 .pc/pkg-config and they changed their headers location.
21723 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
21725 * gst/matroska/matroska-mux.h:
21726 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
21727 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21728 (gst_matroska_mux_write_data):
21729 Write multiple blocks/frames per cluster.
21730 Write meta-seek information (seek heads).
21732 2004-09-09 Scott Wheeler <wheeler@kde.org>
21734 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
21735 (gst_play_bin_set_property), (gst_play_bin_get_property),
21736 (gen_audio_element), (gen_audio_element):
21737 Add a volume element / property to the pipeline.
21739 2004-09-07 Wim Taymans <wim@fluendo.com>
21741 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
21742 Copy timestamps from the master pad to the output buffers.
21744 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
21746 * ext/raw1394/gstdv1394src.c:
21747 throw errors when applicable
21749 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
21751 * gst/matroska/ebml-ids.h:
21752 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
21753 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
21754 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
21755 automatically convert unix time <-> ebml time when reading/writing
21756 a date, use gst_ebml_write_uint to write CUETIME,
21757 not gst_ebml_write_date.
21758 * gst/matroska/matroska-ids.h:
21759 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
21760 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
21761 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
21762 (gst_matroska_mux_write_data):
21763 Write track and segment UIDs, write muxing date, write
21764 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
21765 Create cues for audio only files.
21767 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
21769 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21770 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21771 Re-commit ALSA switches.
21772 * gst/adder/gstadder.c: (gst_adder_loop):
21773 64-bit fix (#151416).
21774 * gst/debug/progressreport.c: (gst_progressreport_report):
21775 64-bit fix (#151419).
21776 * gst/matroska/matroska-demux.c:
21777 (gst_matroska_demux_parse_contents):
21778 64-bit fix (#151420).
21779 * gst/playback/test3.c: (update_scale):
21780 64-bit fix (#151421).
21782 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21787 === release 0.8.4 ===
21789 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
21791 * configure.ac: releasing 0.8.4, "Alias"
21793 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
21795 * ext/theora/Makefile.am:
21796 fix makefile. Fixes #151462.
21798 2004-08-30 Wim Taymans <wim@fluendo.com>
21800 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
21801 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21802 (gst_multifdsink_remove_client_link),
21803 (gst_multifdsink_client_queue_buffer),
21804 (gst_multifdsink_handle_client_write):
21805 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
21806 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
21807 Fix some memory leaks.
21809 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21811 Patch by: David Schleef
21815 rename our detection macro for V4L2. Fixes #151236.
21817 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
21819 Patch by: David Schleef
21822 check to define LAMEPRESET. Fixes #151232.
21824 2004-08-27 David Schleef <ds@schleef.org>
21826 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
21827 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
21828 (gst_glimagesink_fixate): Move local variable declarations to
21829 make gcc-2.95 happy.
21831 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21834 bump nano for prerelease
21836 2004-08-27 David Schleef <ds@schleef.org>
21838 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
21839 * sys/sunaudio/gstsunaudiosrc.c:
21840 * sys/sunaudio/gstsunaudiosrc.h:
21842 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
21844 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
21845 handle EOS correctly
21846 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
21847 * gst/matroska/matroska-mux.h:
21848 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
21849 VFW compatibility mode
21851 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
21853 patch by: Zaheer Abbas Merali
21855 * ext/ogg/gstoggmux.c:
21856 * ext/vorbis/vorbisenc.c:
21857 * ext/vorbis/vorbisenc.h:
21860 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
21862 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
21863 fix byte order reversion on little endian machines.
21864 * gst/matroska/matroska-mux.c: (audiosink_templ),
21865 (gst_matroska_mux_audio_pad_link):
21866 add TTA codec to the list of supported codecs.
21867 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
21868 (gst_matroska_mux_start), (gst_matroska_mux_finish),
21869 (gst_matroska_mux_write_data):
21870 * gst/matroska/matroska-mux.h:
21871 write segment duration correctly, write muxing app string, fixes bugs
21872 #140897 and #140898.
21873 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
21874 wait for all pads to be negotiated before starting to mux.
21876 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21878 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
21879 * ext/lame/gstlame.h:
21880 Added new media support to lame
21882 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
21884 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
21885 send vorbis headers at the beginning of a stream, fixes bug #141554.
21886 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
21888 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
21889 (gst_matroska_demux_plugin_init):
21890 * gst/matroska/matroska-ids.h:
21891 enable demuxing of TTA audio streams, fixes bug #148951.
21892 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
21893 enable typefinding for TTA audio files, fixes bug #148711.
21894 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
21895 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
21896 fixes playback of packed bitstream and xvid with bframes, bug #135407.
21898 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
21900 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21901 (gst_riff_read_element_data), (gst_riff_read_seek),
21902 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
21903 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
21906 2004-08-23 Iain <iaingnome@gmail.com>
21908 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
21909 tags. They appear to be handled differently to normal.
21910 (tag_list_to_id3_tag_foreach): Ditto.
21912 2004-08-22 Wim Taymans <wim@fluendo.com>
21914 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21915 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
21916 Make sure we never send -1 granulepos.
21918 2004-08-20 Wim Taymans <wim@fluendo.com>
21920 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
21921 (gst_ogg_mux_loop):
21922 I will accept bitchslappings with non sharp objects.
21924 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21927 Clean up the test for lame presets
21929 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21932 * ext/lame/Makefile.am:
21933 * ext/lame/gstlame.c: (gst_lame_class_init),
21934 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
21935 Only enable lame presets if version of lame has presets in API
21937 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
21938 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
21939 * gst/udp/gstudpsrc.h:
21940 Don't call gst_pad_push in a get function. Fixes #150449
21942 2004-08-18 Wim Taymans <wim@fluendo.com>
21944 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
21945 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
21946 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21947 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21948 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21950 * gst/tcp/gstfdset.h:
21951 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
21952 (gst_multifdsink_client_queue_buffer),
21953 (gst_multifdsink_handle_client_write):
21954 * gst/tcp/gstmultifdsink.h:
21955 Some extra checks in gstfdset.
21956 Only use send() when the fd is a socket. Don't try to
21957 read from write only fds.
21959 2004-08-18 Wim Taymans <wim@fluendo.com>
21961 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
21962 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
21963 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
21964 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
21966 Add more locking and bounds checking.
21968 2004-08-18 Wim Taymans <wim@fluendo.com>
21970 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
21971 Realloc test fdset in the lock and right before starting
21972 the poll call. Bump the limit to 4096.
21974 2004-08-17 David Schleef <ds@schleef.org>
21976 * sys/sunaudio/Makefile.am:
21977 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
21978 of rates and channels. Make debugging less obnoxious.
21980 Patch from Balamurali Viswanathan implementing a mixer for
21981 Sun audio. (bug #144091):
21982 * sys/sunaudio/gstsunelement.c:
21983 * sys/sunaudio/gstsunelement.h:
21984 * sys/sunaudio/gstsunmixer.c:
21985 * sys/sunaudio/gstsunmixer.h:
21987 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21989 * gst/audioscale/gstaudioscale.c:
21990 * gst/audioscale/gstaudioscale.h:
21991 made audioscale resample from any sample rate to any sample rate
21993 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
21995 * ext/libpng/gstpngdec.c:
21996 error out on unsupported types
21998 2004-08-17 Iain <iaingnome@gmail.com>
22000 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
22001 mid_side and loose_mid_side properties if its a stereo stream.
22003 2004-08-17 Wim Taymans <wim@fluendo.com>
22005 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22006 (theora_get_formats), (theora_dec_src_convert),
22007 (theora_dec_sink_convert), (theora_dec_src_query),
22008 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
22011 2004-08-17 Wim Taymans <wim@fluendo.com>
22013 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
22014 (gst_ogg_pad_push):
22015 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
22016 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
22017 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
22018 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
22019 Mark delta units in the muxer.
22020 Try to decode the packet after an out-of-sync error from
22023 2004-08-17 Wim Taymans <wim@fluendo.com>
22025 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22026 (gst_multifdsink_init), (gst_multifdsink_add),
22027 (gst_multifdsink_client_queue_buffer),
22028 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
22029 * gst/tcp/gstmultifdsink.h:
22030 Added option to send a keyframe to clients as the first buffer.
22031 Make timeout property writable.
22033 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
22035 patch by: Wim Taymans
22037 * gst/tcp/gstfdset.c:
22038 * gst/tcp/gstmultifdsink.c:
22039 fix index comparison, should include 0
22041 2004-08-16 Wim Taymans <wim@fluendo.com>
22043 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
22044 (gst_fdset_add_fd), (gst_fdset_remove_fd),
22045 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
22046 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
22048 copy when reallocing for poll so the select arguments don't get
22049 changed during the call
22051 2004-08-16 Wim Taymans <wim@fluendo.com>
22053 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22054 (gst_theora_enc_class_init), (theora_enc_sink_link),
22055 (theora_buffer_from_packet), (theora_enc_chain):
22056 Fix bug where buffers were not marked as keyframes
22059 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22061 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22062 (gst_lame_preset_get_type), (gst_lame_class_init):
22063 describe the enum values for vbr mode and presets more verbosely
22065 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22067 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
22068 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
22069 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
22070 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
22071 * ext/lame/gstlame.h:
22072 add preset property to lame so it can use lame presets
22074 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22076 * ext/lame/gstlame.c: (gst_lame_get_property):
22077 whoops forgot break, thanks teuf
22079 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22081 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
22082 (gst_lame_class_init), (gst_lame_src_getcaps),
22083 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
22084 (gst_lame_get_property), (gst_lame_setup):
22085 * ext/lame/gstlame.h:
22086 fix lame's broken vbr stuff, allow it to resample if need be, and also
22087 make xing header optional
22089 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22091 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
22092 added getcaps function so samplerate doesnt get fixated to silly values
22094 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22096 * ext/lame/gstlame.c: (gst_lame_src_link):
22097 revert previous fix
22099 2004-08-12 Johan Dahlin <johan@gnome.org>
22101 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
22102 checks. Doesn't matter what state we are in. Interfaces are a
22103 compile time thing, not runtime. It also broke the python bindings.
22105 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22107 * ext/lame/gstlame.c: (gst_lame_src_link):
22108 made source pad link function check if sinkpad is ok..fixes the problem
22109 where core fixates the output rate of lame stupidly
22111 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
22113 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
22114 * sys/v4l/v4l_calls.c:
22115 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
22116 fix fixate function to handle nonsimple caps.
22117 remove bogus check in _link
22120 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22122 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
22123 set default compression ratio parameter to 0.0 so bitrate parameter
22126 2004-08-11 David Schleef <ds@schleef.org>
22128 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
22130 2004-08-11 David Schleef <ds@schleef.org>
22132 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
22135 2004-08-11 David Schleef <ds@schleef.org>
22137 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
22139 2004-08-11 David Schleef <ds@schleef.org>
22141 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
22143 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
22144 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
22146 * gst/auparse/gstauparse.c: Fix plugin license field.
22147 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
22148 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
22149 * gst/rtp/gstrtp.c: Fix plugin license field.
22151 2004-08-11 Wim Taymans <wim@fluendo.com>
22153 * gst/tcp/Makefile.am:
22154 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
22155 (ensure_size), (gst_fdset_new), (gst_fdset_free),
22156 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
22157 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
22158 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
22159 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
22160 (gst_fdset_fd_can_write), (gst_fdset_wait):
22161 * gst/tcp/gstfdset.h:
22162 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22163 (gst_multifdsink_class_init), (gst_multifdsink_init),
22164 (gst_multifdsink_add), (gst_multifdsink_remove),
22165 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22166 (gst_multifdsink_remove_client_link),
22167 (gst_multifdsink_handle_client_read),
22168 (gst_multifdsink_client_queue_data),
22169 (gst_multifdsink_client_queue_caps),
22170 (gst_multifdsink_client_queue_buffer),
22171 (gst_multifdsink_handle_client_write),
22172 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22173 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22174 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
22175 (gst_multifdsink_close):
22176 * gst/tcp/gstmultifdsink.h:
22177 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
22178 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
22179 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
22180 (gst_tcpserversink_close):
22181 * gst/tcp/gsttcpserversink.h:
22182 Abstracted away the select call, implemented poll (yes we ran into
22183 the 1024 limit in production).
22185 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
22187 * gst/tcp/gsttcp.c:
22188 * gst/tcp/gsttcpplugin.c:
22189 improve debuggging, remove assert
22191 2004-08-10 Wim Taymans <wim@fluendo.com>
22193 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
22194 (gst_client_status_get_type), (gst_multifdsink_class_init),
22195 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
22196 (gst_multifdsink_handle_client_read),
22197 (gst_multifdsink_handle_client_write),
22198 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
22199 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
22200 (gst_multifdsink_get_property):
22201 * gst/tcp/gstmultifdsink.h:
22202 * gst/tcp/gsttcp-marshal.list:
22203 Starting to prepare for specifying buffer time in other units
22204 than buffers. Expose remove reason in signal.
22206 2004-08-10 Wim Taymans <wim@fluendo.com>
22208 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
22209 (gst_multifdsink_remove), (gst_multifdsink_clear),
22210 (gst_multifdsink_remove_client_link),
22211 (gst_multifdsink_handle_client_read),
22212 (gst_multifdsink_client_queue_data),
22213 (gst_multifdsink_client_queue_buffer),
22214 (gst_multifdsink_handle_client_write),
22215 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
22216 (gst_multifdsink_chain), (gst_multifdsink_close):
22217 * gst/tcp/gstmultifdsink.h:
22218 Added more debugging info. Changed the way clients are
22219 removed from the lists. Fixed a bug where a bad file descriptor
22220 could cause many clients to be removed.
22222 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
22224 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
22225 allow all pixel-aspect-ratios, not just 1:1
22227 2004-08-09 David Schleef <ds@schleef.org>
22229 * sys/glsink/ARB_multitexture.h: Remove old files.
22230 * sys/glsink/EXT_paletted_texture.h:
22231 * sys/glsink/NV_register_combiners.h:
22232 * sys/glsink/gstgl_nvimage.c:
22233 * sys/glsink/gstgl_pdrimage.c:
22234 * sys/glsink/gstgl_rgbimage.c:
22235 * sys/glsink/gstglsink.c:
22236 * sys/glsink/gstglsink.h:
22237 * sys/glsink/gstglxwindow.c:
22238 * sys/glsink/regcomb_yuvrgb.c:
22240 2004-08-09 David Schleef <ds@schleef.org>
22242 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
22243 GL sink plugin. (Bug #147302)
22245 * configure.ac: Test for OpenGL
22246 * sys/Makefile.am: Use test for OpenGL
22247 * sys/glsink/Makefile.am:
22248 * sys/glsink/glimagesink.c: rewrite
22249 * sys/glsink/glimagesink.h: rewrite
22251 2004-08-09 David Schleef <ds@schleef.org>
22253 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
22255 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
22256 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
22257 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
22259 2004-08-09 Wim Taymans <wim@fluendo.com>
22261 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22262 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22263 (gst_multifdsink_client_remove),
22264 (gst_multifdsink_handle_client_read),
22265 (gst_multifdsink_handle_client_write),
22266 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22267 Do a bit more logging, make the client_read code more robust.
22269 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22271 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
22272 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
22273 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
22274 (gst_jpegdec_init), (gst_jpegdec_chain):
22275 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
22276 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
22277 cleanups, debugging fixes and memleak plugging
22279 2004-08-09 Wim Taymans <wim@fluendo.com>
22281 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22282 (theora_get_formats), (theora_dec_src_convert),
22283 (theora_dec_sink_convert), (theora_dec_src_query),
22284 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
22285 (theora_dec_change_state):
22286 Don't crash on missing header packets.
22288 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22292 Added Albanian translation (Laurent Dhima)
22296 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22298 * ext/lame/gstlame.c:
22301 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
22303 * sys/ximage/ximagesink.c:
22304 * sys/xvimage/xvimagesink.c:
22305 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
22307 2004-08-06 Wim Taymans <wim@fluendo.com>
22309 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22310 (gst_multifdsink_add), (gst_multifdsink_get_stats),
22311 (gst_multifdsink_client_remove),
22312 (gst_multifdsink_handle_client_read),
22313 (gst_multifdsink_handle_client_write),
22314 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22315 Make sure we don't try to read more from a client that what
22316 ioctl says us or we deadlock.
22318 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22320 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
22321 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
22322 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
22323 decouple running_time and n_frames so it can handle changing
22324 framerate while running
22326 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
22330 updated translations
22332 2004-08-04 Benjamin Otte <otte@gnome.org>
22334 * gst/videotestsrc/gstvideotestsrc.c:
22335 (gst_videotestsrc_get_capslist), (generate_capslist),
22337 generate the list of supported caps at startup and reuse it instead
22338 of always generating it
22340 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
22342 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
22343 whoops, last checkin broke normal build
22345 2004-08-03 Benjamin Otte <otte@gnome.org>
22347 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
22348 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
22349 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
22350 (gst_alsa_mixer_get_option):
22351 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
22352 (dvdnavsrc_print_event):
22353 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
22354 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
22355 (gst_ogg_mux_pad_unlink):
22356 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
22357 (gst_multipart_mux_pad_unlink):
22358 * gst/videofilter/gstvideobalance.c:
22359 (gst_videobalance_colorbalance_set_value):
22360 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
22361 (gst_videomixer_pad_unlink):
22363 * sys/oss/gstossmixer.c:
22364 * sys/v4l/gstv4lcolorbalance.c:
22365 * sys/v4l/gstv4ltuner.c:
22366 * sys/v4l/v4lsrc_calls.c:
22367 * sys/v4l2/gstv4l2colorbalance.c:
22368 * sys/v4l2/gstv4l2tuner.c:
22369 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
22371 2004-08-03 Benjamin Otte <otte@gnome.org>
22373 * examples/dynparams/filter.c: (ui_control_create):
22374 * examples/gstplay/player.c: (print_tag):
22375 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
22376 * ext/gdk_pixbuf/gstgdkanimation.c:
22377 (gst_gdk_animation_iter_may_advance):
22378 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
22379 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
22380 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
22381 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
22382 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
22383 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22384 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
22385 * gst/sine/demo-dparams.c: (main):
22386 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
22387 * testsuite/alsa/formats.c: (create_pipeline):
22388 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
22389 fixes for G_DISABLE_ASSERT and friends
22390 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
22391 (mp3_type_frame_length_from_header), (mp3_type_find),
22393 require mp3 typefinding to have at least MIN_HEADERS valid headers
22394 add typefinding for AAC adts files
22396 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
22398 * sys/ximage/ximagesink.c:
22399 (gst_ximagesink_calculate_pixel_aspect_ratio):
22400 * sys/xvimage/xvimagesink.c:
22401 (gst_xvimagesink_calculate_pixel_aspect_ratio):
22402 Make sure we calculate pixel-aspect-ratio using floating point maths
22404 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22407 updated translation
22409 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
22411 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22412 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
22413 add debugging for display PAR calculation
22415 2004-08-02 David Schleef <ds@schleef.org>
22417 * configure.ac: Fix mikmod CFLAGS.
22419 2004-07-27 Benjamin Otte <otte@gnome.org>
22421 * gst/audioscale/gstaudioscale.c:
22422 - fix templates to only support S16, it's the only format that works
22423 - make caps nego code use try_set_caps_nonfixed and fixation instead
22424 of try_set_caps twice, which is not nice for autopluggers
22425 - change rank to secondary, so autopluggers can pick it up after
22428 2004-08-02 Iain <iain@prettypeople.org>
22430 * gst/interleave/interleave.c (interleave_init),
22431 (interleave_request_new_pad),
22432 (interleave_pad_removed),
22433 (interleave_buffered_loop): Use the real pad count, not the artificial
22436 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22438 * configure.ac: bump nano back to development
22440 === release 0.8.3 ===
22442 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22444 * configure.ac: releasing 0.8.3, "Water"
22446 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22448 * sys/xvimage/xvimagesink.c:
22449 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22450 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
22451 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
22452 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22453 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22454 * sys/xvimage/xvimagesink.h:
22455 apply similar PAR fixes as to ximagesink
22457 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
22459 patch from: Benjamin Otte
22461 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
22462 add link function to lame. Fixes #148986.
22464 2004-08-02 Johan Dahlin <johan@gnome.org>
22466 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
22469 2004-07-30 David Schleef <ds@schleef.org>
22471 * gst/videomixer/Makefile.am: Fix things that should have been
22472 fixed in the last checkin.
22474 2004-07-30 David Schleef <ds@schleef.org>
22476 * gst/multipart/Makefile.am: Fix things that should have been
22477 fixed in the last checkin.
22479 2004-07-30 David Schleef <ds@schleef.org>
22481 * testsuite/multifilesink/Makefile.am: Fix unused variable.
22483 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22486 bump nano for prerelease
22498 2004-07-30 Wim Taymans <wim@fluendo.com>
22500 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
22501 (gst_multifdsink_add), (gst_multifdsink_remove),
22502 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
22503 (gst_multifdsink_client_remove),
22504 (gst_multifdsink_handle_client_write),
22505 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
22506 * gst/tcp/gstmultifdsink.h:
22507 Recover from a select with a bad file descriptor by removing
22510 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
22513 fix requirement of core
22514 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
22515 (gst_play_pipeline_setup):
22516 don't use colorspace element. do use hermescolorspace element.
22517 make macro to get a colorspace element.
22518 mark strings for translation.
22530 update translations
22532 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22534 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
22535 fix default for newmedia flag
22537 2004-07-30 Wim Taymans <wim@fluendo.com>
22539 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
22540 (gst_theora_dec_init), (theora_get_formats),
22541 (theora_dec_src_convert), (theora_dec_sink_convert),
22542 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22543 (theora_dec_chain), (theora_dec_set_property),
22544 (theora_dec_get_property):
22545 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
22546 (gst_theora_enc_class_init), (gst_theora_enc_init),
22547 (theora_enc_sink_link), (theora_enc_chain),
22548 (theora_enc_set_property), (theora_enc_get_property):
22549 Added cropping option to theora decoder.
22550 Added border option to theora encoder.
22552 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22554 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22555 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22556 (gst_pngenc_set_property):
22557 * ext/libpng/gstpngenc.h:
22558 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
22560 2004-07-30 Wim Taymans <wim@fluendo.com>
22562 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22563 (theora_enc_sink_link), (theora_enc_chain),
22564 (theora_enc_set_property), (theora_enc_get_property):
22565 Fix encoding of non-multiple-of-16 video.
22567 2004-07-29 David Schleef <ds@schleef.org>
22569 * configure.ac: make test for audiofile more strict
22571 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
22573 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
22574 give different names to typefind functions
22576 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22578 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22579 (gst_ximagesink_calculate_pixel_aspect_ratio),
22580 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
22581 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
22582 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
22583 (gst_ximagesink_get_property), (gst_ximagesink_init):
22584 * sys/ximage/ximagesink.h:
22585 allocate PAR's dynamically.
22586 use autodetected PAR if no object-set PAR is given.
22587 add workaround for directfb's X not setting physical size.
22588 fix to xvimagesink will follow tomorrow.
22590 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22592 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
22593 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
22594 (gst_shout2send_get_type), (gst_shout2send_set_clock),
22595 (gst_shout2send_class_init), (gst_shout2send_init),
22596 (set_shout_metadata), (gst_shout2send_set_metadata),
22597 (gst_shout2send_chain), (gst_shout2send_set_property),
22598 (gst_shout2send_get_property), (gst_shout2send_connect),
22599 (gst_shout2send_change_state):
22600 * ext/shout2/gstshout2.h:
22601 - fix for sending mp3 audio to icecast2 server, if pad link function not
22602 called before PAUSED state
22603 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
22604 - added tagging support for mp3 audio broadcasted
22605 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
22608 2004-07-28 Wim Taymans <wim@fluendo.com>
22610 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
22611 (gst_ogg_demux_push):
22612 Return query failure when we don't know the length of
22613 an ogg stream insteda of returning TRUE with a bogus value.
22615 2004-07-28 Wim Taymans <wim@fluendo.com>
22617 * ext/theora/theoradec.c: (theora_get_formats),
22618 (theora_dec_src_convert), (theora_dec_sink_convert),
22619 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22620 (theora_dec_chain):
22621 Don't screw up the 1 Chroma for 1 luma sample situation when we
22622 have an odd offset/width by adding a black border in those cases.
22624 2004-07-28 Wim Taymans <wim@fluendo.com>
22626 * ext/theora/theoradec.c: (theora_get_formats),
22627 (theora_dec_src_convert), (theora_dec_sink_convert),
22628 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
22629 (theora_dec_chain):
22630 * ext/theora/theoraenc.c: (theora_enc_sink_link):
22631 Added first attempt at cropping of the image as required by the
22632 theora spec. We need more properties in the caps (offset_x,
22633 offset_y,stride) to implement this correctly.
22635 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
22637 * ext/dvdnav/README:
22638 Update the README to use dvddemux
22639 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
22640 Ensure getcaps returns a subset of the template caps
22641 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
22642 (gst_mpeg2subt_init):
22643 Ensure getcaps returns a subset of the template caps
22644 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
22645 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
22646 (gst_dvd_demux_get_subpicture_stream),
22647 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
22648 * gst/mpegstream/gstdvddemux.h:
22649 Set the explicit caps on the current_video pad before pushing
22651 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22652 (gst_mpeg_demux_get_audio_stream):
22653 Free caps used to gst_pad_set_explicit_caps, which takes a const
22656 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
22658 * configure.ac: update GStreamer requirement to 0.8.4 because of
22661 2004-07-28 Wim Taymans <wim@fluendo.com>
22663 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
22664 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
22665 Add the pad to the element after setting up the caps. This
22666 makes it a lot easier to autoplug.
22668 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22670 * gst/median/gstmedian.c:
22671 * gst/mpeg2subt/gstmpeg2subt.c:
22672 * gst/mpegaudioparse/gstmpegaudioparse.c:
22673 * gst/mpegstream/gstdvddemux.c:
22674 * gst/mpegstream/gstmpegdemux.c:
22675 * gst/mpegstream/gstmpegpacketize.c:
22676 * gst/rtjpeg/gstrtjpeg.c:
22677 * gst/rtjpeg/gstrtjpegdec.c:
22678 * gst/rtjpeg/gstrtjpegenc.c:
22679 * gst/sine/gstsinesrc.c:
22680 * gst/smooth/gstsmooth.c:
22681 * gst/smpte/gstsmpte.c:
22682 * gst/smpte/gstsmpte.h:
22683 * gst/stereo/gststereo.c:
22684 * gst/videofilter/gstgamma.c:
22685 * gst/videofilter/gstvideobalance.c:
22686 * gst/videofilter/gstvideofilter.c:
22687 * gst/videofilter/gstvideoflip.c:
22688 * gst/videoscale/gstvideoscale.c:
22689 * gst/videoscale/videoscale.c:
22690 * gst/videotestsrc/gstvideotestsrc.c:
22691 * gst/videotestsrc/videotestsrc.c:
22692 * gst/wavenc/gstwavenc.c:
22693 * gst/wavparse/gstwavparse.c:
22694 fix local includes and 64 bits constants
22696 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22699 * gst-libs/gst/*/*.vcproj:
22701 more working plugins
22703 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22705 * testsuite/alsa/Makefile.am:
22706 * testsuite/alsa/srcstate.c:
22707 add test for alsasrc changing state
22709 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22711 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
22713 * gst/silence/gstsilence.h:
22714 fix silence generation for 16bit raw audio
22716 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22718 * gst/matroska/matroska-demux.c:
22719 (gst_matroska_demux_parse_metadata),
22720 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
22721 * gst/mpegaudio/common.c:
22722 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
22723 (gst_videoscale_getcaps), (gst_videoscale_link),
22724 (gst_videoscale_src_fixate), (gst_videoscale_init),
22725 (gst_videoscale_finalize):
22726 * gst/videoscale/gstvideoscale.h:
22727 * gst/videotestsrc/gstvideotestsrc.c:
22728 (gst_videotestsrc_get_capslist):
22729 * gst/wavenc/gstwavenc.c:
22730 * sys/oss/gstossmixer.c: (fill_labels):
22731 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22732 (gst_ximagesink_handle_xevents),
22733 (gst_ximagesink_calculate_pixel_aspect_ratio),
22734 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
22735 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
22736 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
22737 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22738 (gst_ximagesink_init), (gst_ximagesink_class_init):
22739 * sys/ximage/ximagesink.h:
22740 * sys/xvimage/xvimagesink.c:
22741 (gst_xvimagesink_calculate_pixel_aspect_ratio),
22742 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
22743 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
22744 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22745 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
22746 * sys/xvimage/xvimagesink.h:
22747 first batch of pixel aspect ratio commits.
22749 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22751 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22752 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
22753 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
22754 handle stride, needs work if we want to move stride handling
22755 upstream, but works correctly for our purposes.
22757 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22759 * gst/videoscale/README:
22760 add testing examples
22761 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
22762 (gst_videoscale_chain):
22763 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22764 (gst_videoscale_get_size):
22765 add get_size function that handles stride like videotestsrc.
22766 fixes conversion for YUV formats for as much as I can test them.
22768 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
22770 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22771 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
22772 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22773 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
22774 (gst_xvimagesink_xvimage_put):
22775 further cleanups, logging, error handling and synchronizing
22777 2004-07-27 Wim Taymans <wim@fluendo.com>
22779 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
22780 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
22781 (gst_videomixer_pad_set_property),
22782 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
22783 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
22784 (gst_videomixer_class_init), (gst_videomixer_init),
22785 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
22786 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
22787 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
22788 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
22789 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
22790 (gst_videomixer_loop), (plugin_init):
22791 Be a nicer negotiation citizen and provide a getcaps function on
22792 the srcpad. This also fixes a crash when resizing.
22794 2004-07-27 Julien MOUTTE <julien@moutte.net>
22796 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
22797 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
22799 2004-07-27 Wim Taymans <wim@fluendo.com>
22801 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
22802 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
22803 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
22804 (gst_pngenc_set_property):
22805 * ext/libpng/gstpngenc.h:
22806 Added snapshot property to pngenc.
22807 removed g_print from pngdec
22809 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
22811 * gst/ac3parse/ac3parse.vcproj
22812 * gst/adder/adder.vcproj
22813 * gst/alpha/alpha.vcproj
22814 * gst/alpha/alphacolor.vcproj
22815 * gst/asfdemux/asf.vcproj
22816 * gst/audioconvert/audioconvert.vcproj
22817 * gst/audiorate/audiorate.vcproj
22818 * gst/audioscale/audioscale.vcproj
22819 * gst/auparse/auparse.vcproj
22820 * gst/avi/avi.vcproj
22821 * gst/cdxaparse/cdxaparse.vcproj
22822 * gst/chart/chart.vcproj
22823 * gst/colorspace/colorspace.vcproj
22824 * gst/cutter/cutter.vcproj
22825 * gst/debug/debug.vcproj
22826 * gst/debug/efence.vcproj
22827 * gst/debug/navigationtest.vcproj
22828 * gst/deinterlace/deinterlace.vcproj
22829 * gst/effectv/effectv.vcproj
22830 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
22831 * gst/filter/filter.vcproj
22832 * gst/flx/flxdec.vcproj
22833 * gst/goom/goom.vcproj
22834 * gst/interleave/interleave.vcproj
22835 * gst/law/alaw.vcproj
22836 * gst/law/mulaw.vcproj
22837 * gst/matroska/matroska.vcproj
22838 * gst/median/median.vcproj
22839 * gst/mixmatrix/mixmatrix.vcproj
22840 * gst/mpeg1sys/mpeg1systemencode.vcproj
22841 * gst/mpeg1videoparse/mp1videoparse.vcproj
22842 * gst/mpeg2sub/mpeg2subt.vcproj
22843 * gst/mpegaudio/mpegaudio.vcproj
22844 * gst/mpegaudioparse/mpegaudioparse.vcproj
22845 * gst/mpegstream/mpegstream.vcproj
22846 * gst/multifilesink/multifilesink.vcproj
22847 * gst/multipart/multipart.vcproj
22848 * gst/oneton/oneton.vcproj
22849 * gst/overlay/overlay.vcproj
22850 * gst/passthrough/passthrough.vcproj
22851 * gst/qtdemux/qtdemux.vcproj
22852 * gst/realmedia/rmdemux.vcproj
22853 * gst/rtjpeg/rtjpeg.vcproj
22854 * gst/rtp/rtp.vcproj
22855 * gst/silence/silence.vcproj
22856 * gst/sine/sinesrc.vcproj
22857 * gst/smooth/smooth.vcproj
22858 * gst/smpte/smpte.vcproj
22859 * gst/spectrum/spectrum.vcproj
22860 * gst/speed/speed.vcproj
22861 * gst/stereo/stereo.vcproj
22862 * gst/switch/switch.vcproj
22863 * gst/tags/tagedit.vcproj
22864 * gst/tcp/tcp.vcproj
22865 * gst/typefind/typefindfunctions.vcproj
22866 * gst/udp/udp.vcproj
22867 * gst/videobox/videobox.vcproj
22868 * gst/videocrop/videocrop.vcproj
22869 * gst/videodrop/videodrop.vcproj
22870 * gst/videofilter/gamma.vcproj
22871 * gst/videofilter/videobalance.vcproj
22872 * gst/videofilter/videofilter.vcproj
22873 * gst/videofilter/videoflip.vcproj
22874 * gst/videoflip/videoflip.vcproj
22875 * gst/videomixer/videomixer.vcproj
22876 * gst/videorate/videorate.vcproj
22877 * gst/videoscale/videoscale.vcproj
22878 * gst/videotestsrc/videotestsrc.vcproj
22879 * gst/virtualdub/virtualdub.vcproj
22880 * gst/volenv/volenv.vcproj
22881 * gst/volume/volume.vcproj
22882 * gst/wavenc/wavenc.vcproj
22883 * gst/wavparse/wavparse.vcproj
22884 * gst/y4m/y4menc.vcproj
22885 * gst-libs/gst/audio/audio.vcproj
22886 * gst-libs/gst/audio/audiofilter.vcproj
22887 * gst-libs/gst/colorbalance/colorbalance.vcproj
22888 * gst-libs/gst/idct/idtc.vcproj
22889 * gst-libs/gst/media-info/media-info.vcproj
22890 * gst-libs/gst/mixer/mixer.vcproj
22891 * gst-libs/gst/navigation/navigation.vcproj
22892 * gst-libs/gst/play/play.vcproj
22893 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
22894 * gst-libs/gst/resample/resample.vcproj
22895 * gst-libs/gst/riff/riff.vcproj
22896 * gst-libs/gst/tuner/tuner.vcproj
22897 * gst-libs/gst/video/video.vcproj
22898 * gst-libs/gst/xoverlay/xoverlay.vcproj
22899 avoid problems with math.h, fix release dependancy
22900 rename GStreamer-0.8.lib to libgstreamer.lib
22902 2004-07-27 Julien MOUTTE <julien@moutte.net>
22904 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
22905 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
22906 the atom is not available we have to unlock the mutex. Fixes #148023
22908 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22910 * gst-libs/gst/media-info/media-info.h:
22911 issue for a vararg macro with MSVC
22913 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22915 * gst/effectv/effectv.vcproj
22916 * gst-libs/gst/idct/idct.vcproj:
22917 * gst-libs/gst/media-info/media-info.vcproj:
22918 * gst-libs/gst/navigation/navigation.vcproj:
22919 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
22920 * gst-libs/gst/video/video.vcproj:
22921 * gst-libs/gst/xoverlay/xoverlay.vcproj:
22922 fixes for build problems
22924 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22926 * gst-libs/gst/audio/audio.def:
22927 * gst-libs/gst/audio/riff.def:
22928 add some definitions needed by plugins
22930 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22932 * gst/asfdemux/gstasfmux.c
22933 Fix some 64 bits constants to be glib friendly
22935 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22937 * gst/ac3parse/gstac3parse.c
22938 * gst/audioscale/gstaudioscale.c
22939 * gst/auparse/gstauparse.c
22940 * gst/colorspace/gstcolorspace.c
22941 * gst/colorspace/yuv2rgb.h
22942 local include fixes
22944 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
22947 add more plugins to the build
22949 2004-07-26 Julien MOUTTE <julien@moutte.net>
22951 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
22952 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
22954 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22956 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22957 (gst_level_set_property), (gst_level_get_property),
22958 (gst_level_base_init), (gst_level_class_init):
22959 add debugging categories. cleanups.
22961 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22963 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22964 (gst_videoscale_planar411), (gst_videoscale_planar400),
22965 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
22966 (gst_videoscale_scale_nearest_str1),
22967 (gst_videoscale_scale_nearest_str2),
22968 (gst_videoscale_scale_nearest_str4),
22969 (gst_videoscale_scale_nearest_16bit),
22970 (gst_videoscale_scale_nearest_24bit):
22971 fixed stride issues
22972 tested with 320x240 -> 321, 322, 324 x240
22973 tested with YV12, I420, YUY2, UYVY
22974 fixed packed422rev (don't think it could have worked before)
22975 by testing with UYVY
22977 2004-07-26 Benjamin Otte <otte@gnome.org>
22979 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
22980 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
22982 add debugging category, add error checks like checking return values
22983 of setup calls, make sure it still works after
22984 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
22986 2004-07-26 Wim Taymans <wim@fluendo.com>
22988 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
22989 (gst_mpeg_demux_get_audio_stream),
22990 (gst_mpeg_demux_process_private):
22991 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
22992 Check for error codes from the negotiation functions. Make sure
22993 we really set the pad caps when a new pad is created.
22995 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
22997 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
22998 (gst_ffmpeg_caps_to_pix_fmt):
22999 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
23000 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23001 (gst_ffmpegcolorspace_pad_link):
23002 don't make function do two things at the same time without reason.
23004 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
23006 * gst/ac3parse/ac3parse.vcproj
23007 * gst/adder/adder.vcproj
23008 * gst/alpha/alpha.vcproj
23009 * gst/alpha/alphacolor.vcproj
23010 * gst/asfdemux/asf.vcproj
23011 * gst/audioconvert/audioconvert.vcproj
23012 * gst/audiorate/audiorate.vcproj
23013 * gst/audioscale/audioscale.vcproj
23014 * gst/auparse/auparse.vcproj
23015 * gst/avi/avi.vcproj
23016 * gst/cdxaparse/cdxaparse.vcproj
23017 * gst/chart/chart.vcproj
23018 * gst/colorspace/colorspace.vcproj
23019 * gst/cutter/cutter.vcproj
23020 * gst/debug/debug.vcproj
23021 * gst/debug/efence.vcproj
23022 * gst/debug/navigationtest.vcproj
23023 * gst/deinterlace/deinterlace.vcproj
23024 * gst/effectv/effectv.vcproj
23025 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
23026 * gst/filter/filter.vcproj
23027 * gst/flx/flxdec.vcproj
23028 * gst/goom/goom.vcproj
23029 * gst/interleave/interleave.vcproj
23030 * gst/law/alaw.vcproj
23031 * gst/law/mulaw.vcproj
23032 * gst/matroska/matroska.vcproj
23033 * gst/median/median.vcproj
23034 * gst/mixmatrix/mixmatrix.vcproj
23035 * gst/mpeg1sys/mpeg1systemencode.vcproj
23036 * gst/mpeg1videoparse/mp1videoparse.vcproj
23037 * gst/mpeg2sub/mpeg2subt.vcproj
23038 * gst/mpegaudio/mpegaudio.vcproj
23039 * gst/mpegaudioparse/mpegaudioparse.vcproj
23040 * gst/mpegstream/mpegstream.vcproj
23041 * gst/multifilesink/multifilesink.vcproj
23042 * gst/multipart/multipart.vcproj
23043 * gst/oneton/oneton.vcproj
23044 * gst/overlay/overlay.vcproj
23045 * gst/passthrough/passthrough.vcproj
23046 * gst/qtdemux/qtdemux.vcproj
23047 * gst/realmedia/rmdemux.vcproj
23048 * gst/rtjpeg/rtjpeg.vcproj
23049 * gst/rtp/rtp.vcproj
23050 * gst/silence/silence.vcproj
23051 * gst/sine/sinesrc.vcproj
23052 * gst/smooth/smooth.vcproj
23053 * gst/smpte/smpte.vcproj
23054 * gst/spectrum/spectrum.vcproj
23055 * gst/speed/speed.vcproj
23056 * gst/stereo/stereo.vcproj
23057 * gst/switch/switch.vcproj
23058 * gst/tags/tagedit.vcproj
23059 * gst/tcp/tcp.vcproj
23060 * gst/typefind/typefindfunctions.vcproj
23061 * gst/udp/udp.vcproj
23062 * gst/videobox/videobox.vcproj
23063 * gst/videocrop/videocrop.vcproj
23064 * gst/videodrop/videodrop.vcproj
23065 * gst/videofilter/gamma.vcproj
23066 * gst/videofilter/videobalance.vcproj
23067 * gst/videofilter/videofilter.vcproj
23068 * gst/videofilter/videoflip.vcproj
23069 * gst/videoflip/videoflip.vcproj
23070 * gst/videomixer/videomixer.vcproj
23071 * gst/videorate/videorate.vcproj
23072 * gst/videoscale/videoscale.vcproj
23073 * gst/videotestsrc/videotestsrc.vcproj
23074 * gst/virtualdub/virtualdub.vcproj
23075 * gst/volenv/volenv.vcproj
23076 * gst/volume/volume.vcproj
23077 * gst/wavenc/wavenc.vcproj
23078 * gst/wavparse/wavparse.vcproj
23079 * gst/y4m/y4menc.vcproj
23080 more plugins supported under windows
23082 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
23084 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23085 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
23086 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
23087 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23088 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
23089 Add debugging statements. Use the sizes as returned by the
23090 *CreateImage calls.
23092 2004-07-26 Johan Dahlin <johan@gnome.org>
23094 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
23095 the pad is negotiated.
23097 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
23099 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
23101 * gst-libs/gst/colorbalance/colorbalance.vcproj:
23102 * gst-libs/gst/idct/idct.vcproj:
23103 * gst-libs/gst/media-info/media-info.vcproj:
23104 * gst-libs/gst/mixer/mixer.vcproj:
23105 * gst-libs/gst/navigation/navigation.vcproj:
23106 * gst-libs/gst/play/play.vcproj:
23107 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
23108 * gst-libs/gst/resample/resample.vcproj:
23109 * gst-libs/gst/tuner/tuner.vcproj:
23110 * gst-libs/gst/video/video.vcproj:
23111 * gst-libs/gst/xoverlay/xoverlay.vcproj:
23112 more plugins supported under windows
23114 2004-07-25 Iain <iain@prettypeople.org>
23116 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
23117 pad now rather than when the pad is created because state changes wipe
23118 explicit caps (fixes #148043).
23120 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
23122 reviewed by Benjamin Otte <otte@gnome.org>
23124 * ext/mad/gstmad.c:
23125 fix mad plugin crashing on Sun (fixes #148289)
23127 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23130 * gst/avi/avi.vcproj:
23131 * gst/matroska/matroska.def:
23132 * gst/matroska/matroska.vcproj:
23133 remove unused .def files
23135 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23137 * gst-libs/gst/audio/gstaudiofilter.c:
23138 Clean the local include
23140 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23143 * gst-libs/gst/audio/audio.def:
23144 * gst-libs/gst/audio/audio.vcproj:
23145 * gst-libs/gst/audio/audiofilter.vcproj:
23146 * gst-libs/gst/audio/riff.def:
23147 * gst-libs/gst/audio/riff.vcproj:
23148 * gst-libs/gst/gst-libs.def:
23149 * gst-libs/gst/gst-libs.vcproj:
23150 * gst/avi/avi.vcproj:
23151 * gst/avi/avi.vcproj:
23152 Copy the files where needed after building, cleaner projects
23154 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
23156 * gst/matroska/ebml-write.c:
23157 Fix some 64 bits constants to be glib friendly
23159 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
23162 * gst-libs/gst/gst-libs.def:
23163 * gst-libs/gst/gst-libs.vcproj:
23164 * gst/matroska/matroska.def:
23165 * gst/matroska/matroska.vcproj:
23166 Add the preliminary canvas to build plugins on Win32
23168 2004-07-23 Benjamin Otte <otte@gnome.org>
23170 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23171 don't enfore negotiation from source side, it breaks
23172 sinesrc ! audioconvert ! osssink
23174 2004-07-22 David Schleef <ds@schleef.org>
23176 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
23177 for ELF files, since they can easily be recognized as audio/mpeg.
23180 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23182 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
23183 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
23184 (gst_videoscale_scale_nearest_24bit),
23185 (gst_videoscale_scale_nearest_16bit):
23186 fix 16bit and 24bit for stride (24bit might need testing)
23187 don't pretend we do more than one algorithm
23189 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
23193 * gst/multifilesink/Makefile.am:
23194 * gst/multifilesink/gstmultifilesink.c:
23195 (gst_multifilesink_get_formats),
23196 (gst_multifilesink_get_query_types), (_do_init),
23197 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
23198 (gst_multifilesink_init), (gst_multifilesink_dispose),
23199 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
23200 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
23201 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
23202 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
23203 (gst_multifilesink_chain), (gst_multifilesink_change_state),
23204 (gst_multifilesink_uri_get_type),
23205 (gst_multifilesink_uri_get_protocols),
23206 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
23207 (gst_multifilesink_uri_handler_init), (plugin_init):
23208 * gst/multifilesink/gstmultifilesink.h:
23209 * testsuite/Makefile.am:
23210 * testsuite/multifilesink/Makefile.am:
23211 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
23212 (gst_newmedia_class_init), (gst_newmedia_init),
23213 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
23214 (newfile_signal), (test_signal), (main):
23215 multifilesink plugin for creating new files every time a new media
23216 discontinuity event occurs
23218 2004-07-22 Wim Taymans <wim@fluendo.com>
23220 * gst/alpha/Makefile.am:
23221 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
23222 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
23223 (gst_alpha_color_init), (gst_alpha_color_set_property),
23224 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
23225 (transform), (gst_alpha_color_chain),
23226 (gst_alpha_color_change_state), (plugin_init):
23227 Stupid plugin to to RGBA to AYUV conversion because none of
23228 the colorspace plugins can handle that yet.
23230 2004-07-22 Wim Taymans <wim@fluendo.com>
23232 * examples/seeking/seek.c: (update_scale), (main):
23233 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23234 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23235 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23236 (gst_decode_bin_init), (gst_decode_bin_dispose),
23237 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23238 (no_more_pads), (close_link), (type_found),
23239 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23241 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23242 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23243 (gst_play_base_bin_dispose), (queue_overrun),
23244 (gen_preroll_element), (remove_prerolls), (unknown_type),
23245 (no_more_pads), (new_stream), (setup_source),
23246 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23247 (play_base_eos), (gst_play_base_bin_change_state),
23248 (gst_play_base_bin_add_element),
23249 (gst_play_base_bin_remove_element),
23250 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23251 (gst_play_base_bin_unlink_stream),
23252 (gst_play_base_bin_get_streaminfo):
23253 * gst/playback/gstplaybin.c: (gen_video_element),
23254 (gen_audio_element):
23255 * gst/playback/gststreaminfo.h:
23256 More playback updates, attempt to fix things after the state change
23259 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23261 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
23262 (gst_videoscale_scale_nearest_16bit):
23265 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
23267 * gst/videotestsrc/gstvideotestsrc.c:
23268 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
23269 (gst_videotestsrc_init), (gst_videotestsrc_get),
23270 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
23271 (gst_videotestsrc_get_property):
23272 * gst/videotestsrc/gstvideotestsrc.h:
23273 * gst/videotestsrc/videotestsrc.c:
23274 * gst/videotestsrc/videotestsrc.h:
23275 cleanup and commenting
23277 2004-07-21 Wim Taymans <wim@fluendo.com>
23279 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
23280 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
23281 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
23282 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
23283 (_find_chain_get_unknown_part), (_find_streams_check),
23284 (gst_ogg_demux_push), (gst_ogg_pad_push):
23285 * ext/theora/theoradec.c: (theora_get_formats),
23286 (theora_dec_src_convert), (theora_dec_sink_convert),
23287 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23288 (theora_dec_chain):
23289 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23290 (vorbis_dec_convert), (vorbis_dec_src_query),
23291 (vorbis_dec_src_event), (vorbis_dec_event):
23292 More seeking fixes, oggdemux now supports seeking to time and
23293 uses the downstream element to convert granulepos to time.
23294 Seeking in theora-only ogg files now works.
23296 2004-07-21 Wim Taymans <wim@fluendo.com>
23298 * ext/theora/theoradec.c: (gst_theora_dec_init),
23299 (theora_get_formats), (theora_get_event_masks),
23300 (theora_get_query_types), (theora_dec_src_convert),
23301 (theora_dec_sink_convert), (theora_dec_src_query),
23302 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
23303 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
23304 (vorbis_get_event_masks), (vorbis_get_query_types),
23305 (gst_vorbis_dec_init), (vorbis_dec_convert),
23306 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
23307 Added query/convert/formats functions to vorbis and theora decoders
23308 so that the outside world can use them too. Fixed seeking on an
23309 ogg/theora/vorbis file by disabling the seeking seeking on the
23312 2004-07-21 Julien MOUTTE <julien@moutte.net>
23314 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
23315 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
23316 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
23317 images creation for both elements. We don't create the image on caps
23318 nego or renego, we just destroy the internal one if present if it does
23319 not match the needs. The chain function takes care of creating a new
23321 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
23322 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
23323 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
23324 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
23325 the image format information. The buffer pool checks for the context
23326 image format and discard images with different formats.
23327 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
23329 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
23331 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23332 (gst_ffmpegcolorspace_chain):
23333 no point in doing any chaining if the pad we want to push from
23336 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
23338 * gst-libs/gst/riff/riff-media.c:
23339 (gst_riff_create_audio_caps_with_data):
23340 Fix double end-to-native symbol conversion (#148021).
23342 2004-07-20 David Schleef <ds@schleef.org>
23344 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
23345 Don't use an Atom that doesn't exist.
23347 2004-07-20 Wim Taymans <wim@fluendo.com>
23349 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23350 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23351 (gst_multifdsink_client_remove),
23352 (gst_multifdsink_handle_client_write),
23353 (gst_multifdsink_queue_buffer):
23354 * gst/tcp/gstmultifdsink.h:
23355 More multifdsink stats. Avoid deadlock by releasing locks
23356 before sending out a signal.
23358 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
23362 added Hungarian translation (Laszlo Dvornik)
23364 2004-07-20 Wim Taymans <wim@fluendo.com>
23366 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23367 (gst_multifdsink_add), (gst_multifdsink_client_remove),
23368 (gst_multifdsink_handle_client_write),
23369 (gst_multifdsink_queue_buffer):
23370 * gst/tcp/gsttcp-marshal.list:
23371 Fixed the stupid marshal definition.
23373 2004-07-20 Wim Taymans <wim@fluendo.com>
23375 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23376 (gst_multifdsink_init), (gst_multifdsink_add),
23377 (gst_multifdsink_client_remove),
23378 (gst_multifdsink_handle_client_write),
23379 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
23380 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
23381 (gst_multifdsink_init_send):
23382 * gst/tcp/gstmultifdsink.h:
23383 Added more stats, added timeout for a client, fixed some typos
23384 and added some comments.
23386 2004-07-20 Wim Taymans <wim@fluendo.com>
23388 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
23389 (gst_multifdsink_add), (gst_multifdsink_get_stats),
23390 (gst_multifdsink_client_remove),
23391 (gst_multifdsink_handle_client_write):
23392 * gst/tcp/gstmultifdsink.h:
23393 * gst/tcp/gsttcp-marshal.list:
23394 Added get_stats method that returns a GValueArray of
23397 2004-07-19 Benjamin Otte <otte@gnome.org>
23399 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23400 make sure longname, description and author are valid UTF-8
23402 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
23404 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
23405 (gst_ximagesink_set_property):
23406 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
23407 (gst_xvimagesink_set_property):
23408 make sure SYNCHRONOUS is respected after getting the X context
23410 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23412 * gst/matroska/matroska-demux.c:
23413 (gst_matroska_demux_handle_src_event),
23414 (gst_matroska_demux_parse_blockgroup):
23415 * gst/matroska/matroska-ids.h:
23416 add BlockReference tag and ignore it to clear out log.
23417 ignore NAVIGATION events to clear out log.
23419 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
23421 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
23422 (gst_matroska_demux_add_stream):
23423 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
23424 add debug categories
23426 2004-07-16 Wim Taymans <wim@fluendo.com>
23428 * ext/libpng/Makefile.am:
23429 * ext/libpng/gstpng.c: (plugin_init):
23430 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
23431 (gst_pngdec_get_type), (gst_pngdec_base_init),
23432 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
23433 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
23434 * ext/libpng/gstpngdec.h:
23437 2004-07-16 Julien MOUTTE <julien@moutte.net>
23439 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23440 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
23441 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
23442 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
23443 (gst_ximagesink_buffer_alloc):
23444 * sys/ximage/ximagesink.h:
23445 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23446 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23447 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
23448 (gst_xvimagesink_buffer_alloc):
23449 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
23450 again. Using internal data pointer of the x(v)image to store image's
23451 data to be coherent with the buffer alloc mechanism. Investigated the
23452 image destruction code to be sure that everything gets freed correctly.
23454 2004-07-16 Wim Taymans <wim@fluendo.com>
23456 * gst-libs/gst/riff/riff-read.c:
23457 (gst_riff_read_strf_vids_with_data),
23458 (gst_riff_read_strf_auds_with_data):
23459 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23460 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23461 Make sure we don't create 0 sized subbuffers in riff-read.
23462 Signal the no more pads signal after reading the avi header.
23464 2004-07-16 Wim Taymans <wim@fluendo.com>
23466 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23467 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
23468 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
23469 (gst_decode_bin_init), (gst_decode_bin_dispose),
23470 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23471 (no_more_pads), (close_link), (type_found),
23472 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23473 (gst_decode_bin_change_state), (plugin_init):
23474 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23475 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23476 (gst_play_base_bin_dispose), (queue_overrun),
23477 (gen_preroll_element), (remove_prerolls), (unknown_type),
23478 (no_more_pads), (new_stream), (setup_source),
23479 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
23480 (play_base_eos), (gst_play_base_bin_change_state),
23481 (gst_play_base_bin_add_element),
23482 (gst_play_base_bin_remove_element),
23483 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23484 (gst_play_base_bin_unlink_stream),
23485 (gst_play_base_bin_get_streaminfo):
23486 * gst/playback/gstplaybasebin.h:
23487 Better error recovery. Added configurable preroll queue size. Faster
23488 detection of no-more-pads.
23490 2004-07-16 Wim Taymans <wim@fluendo.com>
23492 * gst-libs/gst/video/video.h:
23493 Added 32 bits RGBA. Not sure if we should use another mime-type
23494 for alpha rgb. Currently the presence of the alpha_mask property
23495 signals an alpha channel.
23497 2004-07-16 Wim Taymans <wim@fluendo.com>
23499 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23500 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23501 FPS seems to be 0.0 to MAX everywhere else.
23503 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23505 * gst-libs/gst/riff/riff-media.c:
23506 (gst_riff_create_video_caps_with_data):
23507 mp42/mp43 (no caps) exist too.
23508 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
23509 Set pixel_width/height; we've got them in-caps.
23510 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
23511 * gst/wavparse/gstwavparse.c: (plugin_init):
23512 Both are valid primary.
23513 * sys/oss/gstossmixer.c:
23514 Remove i18n hack and enable translations.
23516 2004-07-15 Benjamin Otte <otte@gnome.org>
23518 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23519 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
23520 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
23522 2004-07-15 Benjamin Otte <otte@gnome.org>
23524 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23525 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
23526 (gst_alsa_close_audio):
23527 disable some of the debugging code for now. Writing debugging to a
23528 buffer is broken in current alsalib releases.
23530 2004-07-12 Benjamin Otte <otte@gnome.org>
23532 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
23535 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
23537 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
23538 (theora_dec_src_query), (theora_dec_event):
23539 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
23540 add debugging categories. Remove \n's.
23542 2004-07-13 Johan Dahlin <johan@gnome.org>
23544 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
23545 (gst_play_bin_get_property): Impl.
23547 2004-07-13 Wim Taymans <wim@fluendo.com>
23549 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
23550 When trying to find the stream length, seek back N pages
23551 instead of just one, where N is the number of streams in
23554 2004-07-13 Wim Taymans <wim@fluendo.com>
23556 * gst-libs/gst/riff/riff-media.c:
23557 (gst_riff_create_audio_caps_with_data),
23558 (gst_riff_create_audio_caps),
23559 (gst_riff_create_audio_template_caps):
23560 * gst-libs/gst/riff/riff-media.h:
23561 * gst-libs/gst/riff/riff-read.c:
23562 (gst_riff_read_strf_vids_with_data),
23563 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
23564 * gst-libs/gst/riff/riff-read.h:
23565 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
23566 (gst_avi_demux_add_stream):
23567 Set codec_data on caps for avidemuxer.
23569 2004-07-12 David Schleef <ds@schleef.org>
23571 * configure.ac: Fix test for Objective C
23573 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
23574 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
23575 (gst_gdk_pixbuf_chain):
23576 Add svg and pcx to template caps, and ensure that getcaps returns a
23577 subset of the template caps.
23578 Copy each row manually for output, as gdkpixbuf may pad the
23579 rowstride to a 32-bit word boundary.
23581 2004-07-12 Wim Taymans <wim@fluendo.com>
23583 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
23584 (gst_riff_create_video_template_caps):
23585 Fix the template caps to include some more media types.
23587 2004-07-12 Wim Taymans <wim@fluendo.com>
23589 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23590 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23591 (compare_ranks), (print_feature), (gst_decode_bin_init),
23592 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23593 (try_to_link_1), (new_pad), (close_link), (type_found),
23594 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23595 (gst_decode_bin_change_state), (plugin_init):
23596 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23597 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23598 (gst_play_base_bin_dispose), (queue_overrun),
23599 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23600 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23601 (gst_play_base_bin_get_property), (play_base_eos),
23602 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23603 (gst_play_base_bin_remove_element),
23604 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23605 (gst_play_base_bin_unlink_stream),
23606 (gst_play_base_bin_get_streaminfo):
23607 * gst/playback/gstplaybasebin.h:
23608 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23609 (gst_play_bin_class_init), (gst_play_bin_init),
23610 (gst_play_bin_dispose), (gst_play_bin_set_property),
23611 (gst_play_bin_get_property), (gen_video_element),
23612 (gen_audio_element), (remove_sinks), (setup_sinks),
23613 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23614 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23615 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23616 (gst_play_bin_query), (plugin_init):
23617 * gst/playback/test4.c: (main):
23618 More fixes on reusing of the element.
23620 2004-07-11 Benjamin Otte <otte@gnome.org>
23622 * ext/mad/gstmad.c: (normal_seek):
23623 allow seeking for other methods than just SET
23625 2004-07-11 Andy Wingo <wingo@pobox.com>
23627 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
23628 float, "any" caps -> buffer_frames=[0,MAX].
23630 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
23631 doesn't intersect our caps with the template any more. Do it
23633 (interleave_buffered_loop): Use g_newa instead of malloc/free.
23635 2004-07-09 Wim Taymans <wim@fluendo.com>
23637 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23638 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23639 (compare_ranks), (print_feature), (gst_decode_bin_init),
23640 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23641 (try_to_link_1), (new_pad), (close_link), (type_found),
23642 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23643 (gst_decode_bin_change_state), (plugin_init):
23644 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23645 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23646 (gst_play_base_bin_dispose), (queue_overrun),
23647 (gen_preroll_element), (remove_prerolls), (no_more_pads),
23648 (new_stream), (setup_source), (gst_play_base_bin_set_property),
23649 (gst_play_base_bin_get_property), (play_base_eos),
23650 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
23651 (gst_play_base_bin_remove_element),
23652 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23653 (gst_play_base_bin_unlink_stream),
23654 (gst_play_base_bin_get_streaminfo):
23655 * gst/playback/gstplaybasebin.h:
23656 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23657 (gst_play_bin_class_init), (gst_play_bin_init),
23658 (gst_play_bin_dispose), (gst_play_bin_set_property),
23659 (gst_play_bin_get_property), (gen_video_element),
23660 (gen_audio_element), (remove_sinks), (setup_sinks),
23661 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
23662 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23663 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23664 (gst_play_bin_query), (plugin_init):
23665 * gst/playback/test4.c: (main):
23666 Work on object reuse and seeking.
23668 2004-07-09 Wim Taymans <wim@fluendo.com>
23670 * examples/seeking/seek.c: (iterate):
23671 Don't consume all CPU in the idle loop.
23673 2004-07-09 Wim Taymans <wim@fluendo.com>
23675 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
23676 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
23677 Add pad to element *after* setting the pad functions so that
23678 the scheduler can use the correct ones.
23680 2004-07-09 Wim Taymans <wim@fluendo.com>
23682 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23683 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
23684 Sync to keyframe after seek
23686 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23688 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23689 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
23690 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
23691 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
23692 * ext/libvisual/visual.c: (gst_visual_change_state):
23693 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
23694 * ext/theora/theoradec.c: (theora_dec_change_state):
23695 * ext/theora/theoraenc.c: (theora_enc_change_state):
23696 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
23697 * gst-libs/gst/navigation/navigation.c:
23698 * gst/adder/gstadder.c: (gst_adder_change_state):
23699 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23700 (gst_audio_convert_get_buffer):
23701 * gst/multipart/multipartdemux.c:
23702 (gst_multipart_demux_change_state):
23703 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
23704 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
23705 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
23706 * gst/videoscale/gstvideoscale.c:
23707 (gst_videoscale_handle_src_event):
23708 * gst/volume/gstvolume.c: (volume_chain_int16):
23709 don't assert in state change, this should be done by the base
23711 various debugging fixes.
23713 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23716 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23717 (gst_play_dispose), (gst_play_set_location),
23718 (gst_play_set_data_src), (gst_play_set_video_sink),
23719 (gst_play_set_audio_sink), (gst_play_set_visualization),
23720 (gst_play_connect_visualization), (gst_play_get_sink_element),
23721 (gst_play_get_all_by_interface):
23722 * gst-libs/gst/play/play.h:
23723 add new method to get elements implementing an interface.
23724 add various error logging
23726 2004-07-08 Wim Taymans <wim@fluendo.com>
23728 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
23729 (make_mpeg_pipeline), (make_mpegnt_pipeline),
23730 (make_playerbin_pipeline), (query_durations_elems),
23731 (query_durations_pads), (query_positions_elems),
23732 (query_positions_pads), (update_scale), (iterate), (stop_seek),
23734 Added playbin seeking example.
23736 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23738 * gst-libs/gst/play/play.c: (gst_play_set_location),
23739 (gst_play_set_data_src), (gst_play_set_video_sink),
23740 (gst_play_set_audio_sink), (gst_play_set_visualization),
23741 (gst_play_connect_visualization), (gst_play_get_framerate):
23742 use a macro to look up elements from hash table
23744 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23746 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23747 (gst_play_get_length_callback), (gst_play_set_location),
23748 (gst_play_seek_to_time), (gst_play_set_data_src),
23749 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23750 (gst_play_set_visualization), (gst_play_connect_visualization),
23751 (gst_play_get_sink_element):
23752 - add debugging info
23753 - fix looking up sink elements by iterating over complete caps
23754 - put everything except for source and autoplugger in a complete bin
23756 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23758 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
23759 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
23760 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
23761 (gst_alsa_sink_write), (gst_alsa_sink_loop):
23762 * ext/alsa/gstalsasink.h:
23763 - add debugging info
23764 - clean up schizophrenia of data/buffer/event
23765 - fix double event unref error
23767 2004-07-08 Wim Taymans <wim@fluendo.com>
23769 * gst/playback/Makefile.am:
23770 Add headers to noinst
23772 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23774 * tools/gst-launch-ext-m.m:
23775 * tools/gst-launch-ext.1.in:
23776 convert to the third millenium
23778 2004-07-07 David Schleef <ds@schleef.org>
23780 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
23782 2004-07-07 Wim Taymans <wim@fluendo.com>
23784 * gst/playback/Makefile.am:
23785 * gst/playback/README:
23786 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23787 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23788 (compare_ranks), (print_feature), (gst_decode_bin_init),
23789 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
23790 (try_to_link_1), (new_pad), (close_link), (type_found),
23791 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
23793 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
23794 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
23795 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
23796 (gen_preroll_element), (no_more_pads), (new_stream),
23797 (setup_source), (gst_play_base_bin_set_property),
23798 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
23799 (gst_play_base_bin_add_element),
23800 (gst_play_base_bin_remove_element),
23801 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
23802 (gst_play_base_bin_unlink_stream),
23803 (gst_play_base_bin_get_streaminfo):
23804 * gst/playback/gstplaybasebin.h:
23805 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23806 (gst_play_bin_class_init), (gst_play_bin_init),
23807 (gst_play_bin_dispose), (gst_play_bin_set_property),
23808 (gst_play_bin_get_property), (gen_video_element),
23809 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
23810 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
23811 (gst_play_bin_get_formats), (gst_play_bin_convert),
23812 (gst_play_bin_get_query_types), (gst_play_bin_query),
23814 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
23815 (gst_stream_info_get_type), (gst_stream_info_class_init),
23816 (gst_stream_info_init), (gst_stream_info_new),
23817 (gst_stream_info_dispose), (gst_stream_info_set_property),
23818 (gst_stream_info_get_property):
23819 * gst/playback/gststreaminfo.h:
23820 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
23822 * gst/playback/test2.c: (main):
23823 * gst/playback/test3.c: (update_scale), (main):
23824 More playbin fixes. Added README. Do better element filtering.
23825 Added base class to preroll media. Added test apps.
23827 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
23829 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
23830 * ext/mpeg2dec/gstmpeg2dec.h:
23831 various debugging improvements. Reset stream to next picture
23832 instead of sequence header, otherwise seeks cannot work.
23834 2004-07-07 Wim Taymans <wim@fluendo.com>
23836 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
23837 (gst_video_box_class_init), (gst_video_box_set_property),
23838 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
23839 Use pad_alloc where possible.
23841 2004-07-07 Wim Taymans <wim@fluendo.com>
23843 * sys/oss/gstosselement.c: (gst_osselement_reset),
23844 (gst_osselement_parse_caps):
23845 * sys/oss/gstosselement.h:
23846 * sys/oss/gstosssrc.c: (gst_osssrc_get):
23847 Fix offset on osssrc.
23849 2004-07-07 Wim Taymans <wim@fluendo.com>
23851 * ext/theora/theora.c: (plugin_init):
23852 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
23853 (theora_dec_src_query), (theora_dec_chain):
23854 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
23855 (theora_enc_sink_link), (theora_buffer_from_packet),
23856 (theora_push_packet), (theora_enc_chain):
23857 Fix theora granulepos calculation.
23858 Fix overflow in duration/position calculation.
23859 Bump rank to PRIMARY for theoradec.
23860 Use granulepos of last packet to calculate position.
23861 Set keyframe flag on buffers when needed.
23863 2004-07-06 David Schleef <ds@schleef.org>
23865 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
23866 serious? (Fixed, obviously.)
23868 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
23872 added Czech translation (Miloslav Trmac)
23874 2004-07-05 Wim Taymans <wim@fluendo.com>
23876 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23877 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23878 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23879 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23880 (close_link), (type_found), (gst_decode_bin_set_property),
23881 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
23882 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
23883 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
23884 (gst_decode_bin_query), (plugin_init):
23885 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23886 (gst_play_bin_class_init), (gst_play_bin_init),
23887 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
23888 (get_video_element), (new_pad), (setup_source),
23889 (gst_play_bin_set_property), (gst_play_bin_get_property),
23890 (gst_play_bin_change_state), (gst_play_bin_add_element),
23891 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23892 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23893 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23894 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23895 * gst/playback/test.c: (main):
23896 More fixes, cleaned up playbin, make it use decodebin. Added
23897 threaded property to playbin.
23899 2004-07-05 Wim Taymans <wim@fluendo.com>
23902 * gst/playback/Makefile.am:
23903 * gst/playback/decodetest.c: (main):
23904 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
23905 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
23906 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
23907 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
23908 (close_link), (type_found), (gst_decode_bin_set_property),
23909 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
23910 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
23911 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
23912 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
23914 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
23915 (gst_play_bin_class_init), (gst_play_bin_init),
23916 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
23917 (collect_sink_pads), (find_compatibles), (close_pad_link),
23918 (try_to_link_1), (new_pad), (close_link), (type_found),
23919 (setup_source), (gst_play_bin_set_property),
23920 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
23921 (compare_ranks), (gst_play_bin_collect_factories),
23922 (gst_play_bin_change_state), (gst_play_bin_add_element),
23923 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
23924 (gst_play_bin_send_event), (gst_play_bin_get_formats),
23925 (gst_play_bin_convert), (gst_play_bin_get_query_types),
23926 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
23927 * gst/playback/test.c: (main):
23928 Added some playback helper elements and some test apps, very alpha
23931 2004-07-04 Benjamin Otte <otte@gnome.org>
23933 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23934 only restart audio when we indeed have an xrun to fix repeated
23935 xruns. Fix suggested by Giuliano Pochini.
23937 2004-07-03 David Schleef <ds@schleef.org>
23939 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
23940 call to gst_debug_log() if debugging is disabled (bug #145118)
23942 2004-07-03 Benjamin Otte <otte@gnome.org>
23944 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
23945 use our own functions for restarting the alsa device.
23946 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23947 I should apply patches myself - use MIN for the third argument, not
23948 the second, this fixes seeking
23950 2004-07-02 David Schleef <ds@schleef.org>
23952 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
23953 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
23956 2004-07-02 David Schleef <ds@schleef.org>
23958 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
23959 output buffers. Fix logic mistake. (bug #144866)
23961 2004-07-02 David Schleef <ds@schleef.org>
23963 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
23964 on X. (bug #144753)
23966 2004-07-02 David Schleef <ds@schleef.org>
23968 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
23969 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
23971 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23972 (gst_osselement_rate_probe_check): Add another workaround for
23973 buggy drivers (bug #145336)
23975 2004-07-02 David Schleef <ds@schleef.org>
23977 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
23978 Most systems don't have MSG_NOSIGNAL.
23980 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
23983 * gst-libs/gst/colorbalance/Makefile.am:
23984 * gst-libs/gst/mixer/Makefile.am:
23985 * gst-libs/gst/play/Makefile.am:
23986 * gst-libs/gst/tuner/Makefile.am:
23987 (hopefully) fix both install and dist and make error message useful.
23988 needs testing across automakes.
23990 2004-07-02 Benjamin Otte <otte@gnome.org>
23992 * ext/ogg/gstogg.c: (plugin_init):
23993 we require bytestream now
23994 * ext/ogg/gstoggdemux.c:
23995 huge diff to implement chain setup in a fast and generic way. This
23996 improves tag reading and startup of huge files (read: Theora videos)
23997 quite a bit. It probably contains bugs, too, so please test.
23998 Seeking is not improved to the fast method.
24000 2004-06-29 Wim Taymans <wim@fluendo.com>
24002 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
24003 * ext/ogg/gstoggmux.c:
24004 Fix memleak in oggdemux when running unconnected pads.
24005 doc update in mux, start working on keyframe mode.
24007 2004-06-29 Benjamin Otte <otte@gnome.org>
24009 * sys/oss/gstosssink.c:
24010 * sys/oss/gstosssrc.c:
24011 advertise correct template caps - we indeed do non-native endianness
24012 and 8bit audio has no endianness
24013 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
24014 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
24015 avoid (wrong) duplications in getcaps function and return
24018 2004-06-29 Wim Taymans <wim@fluendo.com>
24020 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24021 (gst_multifdsink_class_init), (gst_multifdsink_add),
24022 (gst_multifdsink_remove), (gst_multifdsink_clear),
24023 (gst_multifdsink_client_remove),
24024 (gst_multifdsink_handle_client_read),
24025 (gst_multifdsink_client_queue_data),
24026 (gst_multifdsink_client_queue_caps),
24027 (gst_multifdsink_client_queue_buffer),
24028 (gst_multifdsink_handle_client_write),
24029 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24030 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24031 (gst_multifdsink_init_send), (gst_multifdsink_close):
24032 Fix wrong GList iteration that could crash the server when
24033 more then 2 clients disconnect at the same time. Read all the
24034 pending commands in one batch to recover from command storms under
24037 2004-06-28 Wim Taymans <wim@fluendo.com>
24039 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
24040 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
24041 (gst_videomixer_pad_set_property),
24042 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
24043 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
24044 (gst_videomixer_class_init), (gst_videomixer_init),
24045 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
24046 (pad_zorder_compare), (gst_videomixer_sort_pads),
24047 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
24048 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
24049 (gst_videomixer_update_queues), (gst_videomixer_loop),
24051 Avoid divide by zero, choose masterpad as the pad with the highest
24054 2004-06-27 Julien Moutte <julien@moutte.net>
24056 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24057 (gst_ximagesink_xwindow_new):
24058 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24059 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
24060 function directly. We might want to call it from somewhere else one day.
24062 2004-06-27 Julien Moutte <julien@moutte.net>
24064 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
24065 (gst_ximagesink_xwindow_new):
24066 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
24067 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
24068 window decorations.
24070 2004-06-27 Wim Taymans <wim@fluendo.com>
24072 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
24073 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
24074 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
24075 (gst_dvdec_set_property), (gst_dvdec_get_property):
24076 * ext/dv/gstdvdec.h:
24077 Implement drop_factor property to lower the framerate with
24080 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
24082 * gst-libs/gst/colorbalance/Makefile.am:
24083 * gst-libs/gst/mixer/Makefile.am:
24084 * gst-libs/gst/play/Makefile.am:
24085 * gst-libs/gst/tuner/Makefile.am:
24086 unbreak Company's fix that didn't install the -enum.h files
24088 2004-06-27 Wim Taymans <wim@fluendo.com>
24090 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
24091 (gst_dvdec_change_state):
24092 * ext/dv/gstdvdec.h:
24093 Fix timestamp, duration and offset of the buffers.
24095 2004-06-27 Wim Taymans <wim@fluendo.com>
24097 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24098 (gst_multifdsink_class_init), (gst_multifdsink_add),
24099 (gst_multifdsink_remove), (gst_multifdsink_clear),
24100 (gst_multifdsink_client_remove),
24101 (gst_multifdsink_handle_client_read),
24102 (gst_multifdsink_client_queue_data),
24103 (gst_multifdsink_client_queue_caps),
24104 (gst_multifdsink_client_queue_buffer),
24105 (gst_multifdsink_handle_client_write),
24106 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24107 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24108 (gst_multifdsink_init_send), (gst_multifdsink_close):
24109 * gst/tcp/gstmultifdsink.h:
24110 * gst/tcp/gsttcpserversink.c:
24111 (gst_tcpserversink_handle_server_read),
24112 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
24113 More multifdsink fixes, more recovery policy fixes.
24114 Removed stupid g_print
24116 2004-06-26 Wim Taymans <wim@fluendo.com>
24118 * gst/tcp/Makefile.am:
24119 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
24120 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
24121 (gst_multifdsink_class_init), (gst_multifdsink_init),
24122 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
24123 (gst_multifdsink_handle_client_read),
24124 (gst_multifdsink_client_queue_data),
24125 (gst_multifdsink_client_queue_caps),
24126 (gst_multifdsink_client_queue_buffer),
24127 (gst_multifdsink_handle_client_write),
24128 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
24129 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
24130 (gst_multifdsink_chain), (gst_multifdsink_set_property),
24131 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
24132 (gst_multifdsink_close), (gst_multifdsink_change_state):
24133 * gst/tcp/gstmultifdsink.h:
24134 * gst/tcp/gsttcpplugin.c: (plugin_init):
24135 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
24136 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
24137 (gst_tcpserversink_handle_server_read),
24138 (gst_tcpserversink_handle_select),
24139 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
24140 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24141 * gst/tcp/gsttcpserversink.h:
24142 Added multifdsink, made tcpserversink a subclass of fdsink, removed
24143 one of the locks, added recovery policy to multifdsink.
24145 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24147 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24148 fix decision for when getting frames with same timestamp
24149 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24150 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24151 (gst_v4lsrc_get_property):
24152 * sys/v4l/gstv4lsrc.h:
24153 add latency offset property
24155 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
24157 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
24159 fix debugging. add category.
24161 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24163 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24166 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24168 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24169 (gst_alsa_src_get_time), (gst_alsa_src_loop),
24170 (gst_alsa_src_change_state):
24171 return a time that is in sync with the element's processing
24173 2004-06-25 Wim Taymans <wim@fluendo.com>
24175 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24176 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24177 (gst_tcpserversink_client_remove),
24178 (gst_tcpserversink_handle_client_read),
24179 (gst_tcpserversink_client_queue_data),
24180 (gst_tcpserversink_client_queue_caps),
24181 (gst_tcpserversink_client_queue_buffer),
24182 (gst_tcpserversink_handle_client_write),
24183 (gst_tcpserversink_queue_buffer),
24184 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
24185 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
24186 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
24187 (gst_tcpserversink_close):
24188 * gst/tcp/gsttcpserversink.h:
24189 Serversink rewrite. Really do non blocking writes to clients and
24190 maintain an internal queue to handle slower clients while not
24191 disturbing fast clients.
24193 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
24195 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24196 better debug, don't override OFFSET and OFFSET_END
24198 2004-06-25 Iain <iain@prettypeople.org>
24200 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
24201 name=source for the wavparse pipeline.
24203 2004-06-24 Johan Dahlin <johan@gnome.org>
24205 * ext/theora/theoraenc.c (theora_enc_chain): Call
24206 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
24207 streamheader caps are set correctly.
24209 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24211 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24212 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
24213 respect minimum bitrate; same could be done for max bitrate
24215 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24217 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
24218 (gst_vorbisenc_setup):
24219 fix sample rate range
24221 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
24223 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
24224 (gst_oggvorbisenc_setup):
24225 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
24226 (gst_vorbisenc_setup):
24227 resolve ambiguities in code and description
24229 2004-06-24 Wim Taymans <wim@fluendo.com>
24231 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
24232 * ext/alsa/gstalsa.h:
24233 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24234 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
24235 Use alsa trigger_tstamp to get the timestamp of the first
24236 sample in the buffer for more precise sync. Some cleanups.
24238 2004-06-24 Wim Taymans <wim@fluendo.com>
24240 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
24241 (gst_audiorate_init), (gst_audiorate_chain),
24242 (gst_audiorate_set_property), (gst_audiorate_get_property):
24243 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24244 (gst_videorate_chain):
24245 Added some logging, fixed an overflow bug in videorate.
24247 2004-06-24 Benjamin Otte <otte@gnome.org>
24249 * ext/kio/Makefile.am:
24250 fix for builddir != srcdir and distcheck
24252 2004-06-24 Benjamin Otte <otte@gnome.org>
24254 * gst-libs/gst/colorbalance/Makefile.am:
24255 * gst-libs/gst/mixer/Makefile.am:
24256 * gst-libs/gst/play/Makefile.am:
24257 * gst-libs/gst/tuner/Makefile.am:
24258 * gst/tcp/Makefile.am:
24259 * sys/dxr3/Makefile.am:
24260 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
24262 Also add all *.list files that were missing.
24264 add a distcheck hook to ensure the above doesn't happen again.
24266 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
24268 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
24270 2004-06-23 Colin Walters <walters@redhat.com>
24272 * m4/Makefile.am: Distribute gst-fionread.m4.
24274 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24276 * configure.ac: back to dev
24278 2004-06-23 Wim Taymans <wim@fluendo.com>
24280 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
24281 (gst_alsa_xrun_recovery):
24282 * ext/alsa/gstalsa.h:
24283 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
24284 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
24285 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
24286 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
24287 (gst_alsa_src_loop):
24288 Add clock to alsasrc. Take new capture timestamp when
24289 restarting after an overrun. Split up some functions between
24290 alsasrc and alsasink.
24292 === release 0.8.2 ===
24294 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
24296 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24297 (gst_alsa_change_state), (gst_alsa_update_avail),
24298 (gst_alsa_xrun_recovery):
24299 * ext/alsa/gstalsa.h:
24300 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24301 merge back changes from release
24303 2004-06-23 Wim Taymans <wim@fluendo.com>
24305 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
24306 (gst_audiorate_init), (gst_audiorate_chain),
24307 (gst_audiorate_set_property), (gst_audiorate_get_property):
24308 Implement sample dropping and notify
24310 2004-06-22 Wim Taymans <wim@fluendo.com>
24312 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24313 (theora_enc_sink_link), (theora_buffer_from_packet),
24314 (theora_push_packet), (theora_enc_chain):
24315 Some cleanups, make sure the timestamps are correct.
24317 2004-06-22 Wim Taymans <wim@fluendo.com>
24319 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
24320 (gst_alsa_change_state), (gst_alsa_update_avail),
24321 (gst_alsa_xrun_recovery):
24322 * ext/alsa/gstalsa.h:
24323 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24324 Cleanups, take queued samples into account when reporting
24327 2004-06-22 Wim Taymans <wim@fluendo.com>
24329 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24330 (gst_videorate_init):
24331 Initialize the property as well.
24333 2004-06-22 Wim Taymans <wim@fluendo.com>
24335 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
24336 (gst_videorate_init), (gst_videorate_chain),
24337 (gst_videorate_set_property), (gst_videorate_get_property):
24338 Add property to make videorate silent.
24339 Add property to prefer new frames over old ones.
24341 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24343 * sys/osxvideo/Makefile.am:
24344 Workaround so that the osxvideo .so file gets linked with the
24345 Cocoa, OpenGL and QuickTime frameworks
24347 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24349 * sys/osxaudio/Makefile.am:
24350 Workaround so that the osxaudio .so file gets linked with the
24351 CoreAudio framework
24353 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24356 Whoops, my fault...fixed build issues
24358 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24361 Add objective-c support if running in Darwin/Mac OS X
24364 * sys/osxvideo/Makefile.am:
24365 * sys/osxvideo/osxvideosink.h:
24366 * sys/osxvideo/osxvideosink.m:
24367 * sys/osxvideo/cocoawindow.h:
24368 * sys/osxvideo/cocoawindow.m:
24369 Add osxvideosink, a cocoa-based osx video sink
24372 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
24373 * ext/dvdnav/gst-dvd:
24374 Grab the gconf key from the right spot
24375 * gst/debug/gstnavseek.c: (gst_navseek_init),
24376 (gst_navseek_segseek), (gst_navseek_handle_src_event),
24377 (gst_navseek_chain):
24378 * gst/debug/gstnavseek.h:
24379 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
24380 and loop parameters of a segment seek.
24381 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
24382 (gst_videotestsrc_get_event_masks),
24383 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
24384 * gst/videotestsrc/gstvideotestsrc.h:
24385 Add seeking support to videotestsrc
24386 Initialise the timestamp_offset variable.
24388 2004-06-18 Wim Taymans <wim@fluendo.com>
24390 * ext/sidplay/gstsiddec.cc:
24391 Fix negotiation and set correct end offset.
24393 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
24395 * configure.ac: branch and prerelease
24397 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24399 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
24400 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
24401 (gst_tcpclientsrc_init_receive):
24402 * gst/tcp/gsttcpclientsrc.h:
24403 read caps when connecting to server for GDP so we set them correctly
24405 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24407 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
24408 notify drops and duplicates
24409 * gst/videoscale/videoscale.c: (videoscale_get_structure):
24410 no good reason to limit ourselves to 100x100
24412 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24414 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
24415 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
24416 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24417 (gst_v4lsrc_get_property):
24418 * sys/v4l/gstv4lsrc.h:
24419 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24420 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24421 (gst_v4l_set_audio):
24422 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
24423 (gst_v4lsrc_try_capture):
24424 * sys/v4l/v4lsrc_calls.h:
24425 change try_palette to more general try_capture
24426 add autoprobe option so we can turn off autoprobing
24429 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
24433 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
24434 (gst_ximagesink_class_init):
24435 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
24436 (gst_xvimagesink_class_init):
24437 run them as finalize, not dispose, since dispose can be invoked
24440 2004-06-17 Wim Taymans <wim@fluendo.com>
24442 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
24443 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
24444 * ext/alsa/gstalsa.h:
24445 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
24446 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
24447 (gst_alsa_src_change_state):
24448 * ext/alsa/gstalsasrc.h:
24449 Make the xrun code timestamp and offset the buffers correctly.
24450 moved the clock to the base class, use alsa methods to get time.
24451 Do correct timestamping on outgoing buffers.
24453 2004-06-17 Wim Taymans <wim@fluendo.com>
24455 * gst/audiorate/Makefile.am:
24456 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
24457 (gst_audiorate_base_init), (gst_audiorate_class_init),
24458 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
24459 (gst_audiorate_set_property), (gst_audiorate_get_property),
24460 (gst_audiorate_change_state), (plugin_init):
24461 Added an audiorate converter that fills in gaps.
24463 2004-06-17 Johan Dahlin <johan@gnome.org>
24465 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
24467 2004-06-16 Wim Taymans <wim@fluendo.com>
24469 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
24470 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24471 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24472 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24473 (gst_v4lsrc_get_property):
24474 * sys/v4l/gstv4lsrc.h:
24475 Added a copy mode to v4lsrc where it will output a copied version
24476 of its internal hardware buffer.
24477 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
24480 2004-06-16 Wim Taymans <wim@fluendo.com>
24482 * sys/oss/gstosssrc.c: (gst_osssrc_get):
24485 2004-06-16 Wim Taymans <wim@fluendo.com>
24487 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
24488 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
24489 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
24490 (gst_v4lsrc_get_property):
24491 * sys/v4l/gstv4lsrc.h:
24492 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24493 Added a sync mode enum property to control v4lsrc timestamp method
24494 Removed the use-fixed-fps property and moved functionality in
24496 Don't error on an error value from v4l-conf, it might not always
24499 2004-06-16 Wim Taymans <wim@fluendo.com>
24501 * gst/videorate/Makefile.am:
24502 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
24503 (gst_videorate_base_init), (gst_videorate_class_init),
24504 (gst_videorate_getcaps), (gst_videorate_link),
24505 (gst_videorate_init), (gst_videorate_chain),
24506 (gst_videorate_set_property), (gst_videorate_get_property),
24507 (gst_videorate_change_state), (plugin_init):
24508 Added a video timestamp corrector.
24510 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24512 fixed a potential leak with previous commit
24514 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24516 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24518 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
24519 Added missing refcount, fixes bug #144425
24520 Cheers Tim for finding the bug
24522 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
24524 * sys/v4l/gstv4l.c: (plugin_init):
24525 * sys/v4l/gstv4lcolorbalance.c:
24526 * sys/v4l/gstv4lcolorbalance.h:
24527 * sys/v4l/gstv4lelement.c:
24528 * sys/v4l/gstv4lelement.h:
24529 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24530 * sys/v4l/gstv4lmjpegsink.h:
24531 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24532 * sys/v4l/gstv4lmjpegsrc.h:
24533 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24534 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24535 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
24536 * sys/v4l/gstv4lsrc.h:
24537 * sys/v4l/gstv4ltuner.c:
24538 * sys/v4l/gstv4ltuner.h:
24539 * sys/v4l/gstv4lxoverlay.c:
24540 * sys/v4l/gstv4lxoverlay.h:
24541 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
24542 (gst_v4l_set_window), (gst_v4l_enable_overlay):
24543 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24544 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
24545 (gst_v4l_set_audio):
24546 * sys/v4l/v4l_calls.h:
24547 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24548 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
24549 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
24550 (gst_v4lmjpegsink_playback_init),
24551 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
24552 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
24553 (gst_v4lmjpegsink_playback_stop),
24554 (gst_v4lmjpegsink_playback_deinit):
24555 * sys/v4l/v4lmjpegsink_calls.h:
24556 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24557 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
24558 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24559 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
24560 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
24561 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
24562 * sys/v4l/v4lmjpegsrc_calls.h:
24563 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24564 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
24565 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
24566 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
24567 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
24568 (gst_v4lsrc_try_palette):
24569 * sys/v4l/v4lsrc_calls.h:
24570 bunch of paranoia cleanups
24572 2004-06-14 David Schleef <ds@schleef.org>
24574 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
24575 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
24576 Send discont events and change timestamps appropriately when
24577 we get a seek event. (bug #144240)
24578 * ext/cdparanoia/gstcdparanoia.h:
24580 2004-06-14 Benjamin Otte <otte@gnome.org>
24582 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
24583 snd_pcm_hw_params_set_rate since the latter fails for no good
24584 reason on some setups.
24586 2004-06-14 David Schleef <ds@schleef.org>
24588 * gst/volume/demo.c: (value_changed_callback): exp10() is not
24589 standard. Thank you for playing.
24591 2004-06-14 Wim Taymans <wim@fluendo.com>
24593 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
24594 Patch 1.3 broke the ordering of the colorspace info and
24595 made the plugin basically work by coincidence, reordered
24598 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24600 * ext/lame/gstlame.c:
24601 * ext/mad/gstmad.c:
24602 sync caps. Make sure mad can only output a list of rates, not
24603 a full range. In the future, have three caps lists for each of the
24604 mpeg versions. Change mpegversion to a double as well.
24606 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
24608 * gst/volume/.cvsignore:
24609 * gst/volume/Makefile.am:
24610 * gst/volume/demo.c: (value_changed_callback), (idler),
24611 (setup_gui), (main):
24612 added small demo app
24614 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
24615 * ext/esd/esdsink.c: (gst_esdsink_change_state):
24616 * ext/esd/esdsink.h:
24617 Close the esd connection on pause, because esd will just wait -
24618 blocking all other esd clients indefinitely.
24620 2004-06-12 Christophe Fergeau <teuf@gnome.org>
24622 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
24623 previous commit with GST_DEBUG
24625 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
24628 add a header check for a dvdread header in dvdnav. Fixes #133002
24630 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24632 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
24633 * gst/tcp/gsttcpclientsink.h:
24634 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
24635 * gst/tcp/gsttcpclientsrc.h:
24636 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
24637 (gst_tcpserversink_handle_server_read),
24638 (gst_tcpserversink_init_send):
24639 * gst/tcp/gsttcpserversink.h:
24640 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
24641 * gst/tcp/gsttcpserversrc.h:
24642 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
24645 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
24648 Added ogg library so that OSX detects libtheora properly
24650 2004-06-11 Wim Taymans <wim@fluendo.com>
24652 * ext/theora/theoradec.c: (theora_dec_chain),
24653 (theora_dec_change_state):
24654 Don't try to decode frames before we received a keyframe.
24656 2004-06-11 Wim Taymans <wim@fluendo.com>
24658 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24659 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24660 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24661 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24662 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24663 Added property to set the maximum delay of a page.
24665 2004-06-10 Wim Taymans <wim@fluendo.com>
24667 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
24668 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
24669 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24670 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
24671 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
24672 Added max-delay property to control the maximum amount
24673 of data to put in one page.
24675 2004-06-10 Wim Taymans <wim@fluendo.com>
24677 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
24678 (gst_theora_enc_init), (theora_enc_sink_link),
24679 (theora_buffer_from_packet), (theora_enc_set_property),
24680 (theora_enc_get_property):
24681 Set duration on encoded buffer, added some more properties
24683 2004-06-10 Wim Taymans <wim@fluendo.com>
24685 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
24686 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
24687 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
24688 * ext/theora/theoraenc.c: (theora_enc_chain):
24689 Fix refcounting bugs
24691 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
24693 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
24694 (gst_asf_demux_loop), (gst_asf_demux_process_file),
24695 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
24696 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
24697 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
24698 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
24699 (gst_asf_demux_change_state):
24700 * gst/asfdemux/gstasfdemux.h:
24701 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
24702 feels like. I think we should set a new requirement for demuxers
24703 from now on to implement sane loop functions, data loops, query
24704 and seek functions before first commit into CVS. And this commit
24705 fixes all of the above.
24707 2004-06-10 Christophe Fergeau <teuf@gnome.org>
24709 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
24710 vorbis comments are properly encoded in UTF-8 before adding them
24713 2004-06-09 Benjamin Otte <otte@gnome.org>
24715 * ext/alsa/gstalsa.c: (add_channels):
24716 handle min <= max correctly
24717 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
24718 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
24719 add fixation functions so we fixate correctly. No preferring of alaw
24720 anymore because it's the first structure.
24721 * ext/alsa/gstalsa.h:
24722 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
24723 (gst_alsa_hw_params_dump):
24724 add functions to ease debugging in alsalib
24725 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24726 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24727 (gst_alsa_start_audio):
24728 only specify hw params if we really setup a format (fixes #134007 -
24729 or at least works around it)
24731 2004-06-09 Wim Taymans <wim@fluendo.com>
24733 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
24734 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
24735 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
24736 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
24737 (gst_ogg_mux_loop):
24738 Use stream caps to setup the initial pages in the ogg stream.
24739 Correctly set the streamheader caps on the srcpad.
24741 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
24743 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
24744 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
24745 (gst_v4lsrc_getcaps):
24746 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
24747 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
24748 add querying of fps lists for webcams. Negotiating to a framerate
24751 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24753 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
24754 (theora_push_buffer), (theora_push_packet),
24755 (theora_set_header_on_caps), (theora_enc_chain):
24756 mark buffers and put on streamheader, raw theora streaming
24757 now works too, whee
24759 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24761 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24762 (gst_tcp_gdp_read_caps):
24763 do a looping read for caps and GDP headers too
24765 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24767 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24768 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
24769 return EOS instead of NULL in _get
24771 2004-06-08 Wim Taymans <wim@fluendo.com>
24773 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
24774 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
24775 (gst_tcp_gdp_write_caps):
24776 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24777 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
24778 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
24781 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24783 * ext/vorbis/Makefile.am:
24784 * ext/vorbis/vorbis.c: (plugin_init):
24785 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
24786 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
24787 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
24788 (vorbis_parse_change_state):
24789 * ext/vorbis/vorbisparse.h:
24790 adding a vorbisparse element that marks the buffers, streaming
24791 raw vorbis using GDP now works, whee
24793 2004-06-08 Wim Taymans <wim@fluendo.com>
24795 * ext/jpeg/Makefile.am:
24797 * ext/jpeg/gstjpeg.c: (plugin_init):
24798 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
24799 (gst_smokedec_base_init), (gst_smokedec_class_init),
24800 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
24801 * ext/jpeg/gstsmokedec.h:
24802 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
24803 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
24804 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
24805 (gst_smokeenc_resync), (gst_smokeenc_chain),
24806 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
24807 * ext/jpeg/gstsmokeenc.h:
24808 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
24809 (smokecodec_flush_destination), (smokecodec_term_destination),
24810 (smokecodec_init_source), (smokecodec_fill_input_buffer),
24811 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
24812 (smokecodec_term_source), (smokecodec_encode_new),
24813 (smokecodec_decode_new), (smokecodec_info_free),
24814 (smokecodec_set_quality), (smokecodec_get_quality),
24815 (smokecodec_set_threshold), (smokecodec_get_threshold),
24816 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
24817 (find_best_size), (abs_diff), (put), (smokecodec_encode),
24818 (smokecodec_parse_header), (smokecodec_decode):
24819 * ext/jpeg/smokecodec.h:
24820 Added a new simple jpeg based codec
24822 2004-06-08 Wim Taymans <wim@fluendo.com>
24824 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24825 (gst_multipart_mux_loop):
24828 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24830 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
24831 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
24832 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
24833 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
24834 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
24835 * gst/tcp/gsttcpserversink.h:
24836 take streamheader into account
24838 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24840 * gst/level/Makefile.am:
24841 * gst/level/gstlevel.c: (gst_level_class_init):
24842 clean up marshal generation
24844 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
24846 * gst/tcp/Makefile.am:
24847 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
24848 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
24849 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
24850 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
24851 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
24852 (gst_tcpclientsrc_get_property):
24853 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
24854 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
24855 (gst_tcpserversink_handle_client_read),
24856 (gst_tcpserversink_handle_client_write),
24857 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
24858 * gst/tcp/gsttcpserversink.h:
24859 add signals client-added and client-removed
24860 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
24861 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
24862 (gst_tcpserversrc_get_property):
24863 uniformized, change default protocol to NONE
24864 * gst/tcp/gsttcp-marshal.list: added
24865 2004-06-07 Benjamin Otte <otte@gnome.org>
24867 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24868 handle discont events if they happen before caps nego
24870 2004-06-07 Wim Taymans <wim@fluendo.com>
24872 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
24873 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
24874 (gst_multipart_demux_plugin_init):
24875 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
24876 (gst_multipart_mux_init), (gst_multipart_mux_loop),
24877 (gst_multipart_mux_change_state):
24878 Small updates, fix a memleak
24880 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
24882 * configure.ac: OSS portability
24883 * ext/arts/gst_arts.c: idem
24884 * sys/oss/gstosselement.c: idem
24885 * sys/oss/gstossmixer.c: idem
24886 * sys/oss/gstosssink.c: idem
24887 * sys/oss/gstosssrc.c: idem
24888 * sys/oss/oss_probe.c: idem
24889 - check for soundcard.h in different places for some BSD
24891 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
24894 Add me to the authors file
24896 Increase the libdv requirement to >= version 0.100
24897 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
24898 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
24899 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
24900 * ext/dv/gstdvdec.h:
24901 Add support for the new_media flag when sending DISCONT events
24902 Make the querying work when video pad is not linked
24904 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24906 reviewed by Benjamin Otte <otte@gnome.org>
24908 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
24909 create a NULL-initialized array of pads, so we don't think they
24910 exist already. (fixes #143130)
24912 2004-06-07 Benjamin Otte <otte@gnome.org>
24914 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
24915 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
24916 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
24917 don't use // coments
24919 2004-06-07 Benjamin Otte <otte@gnome.org>
24921 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
24922 cast to GstClockTime to get higher granularity
24923 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24924 use gst_element_set_time_delay to get the exact time
24925 * ext/mad/gstmad.c: (gst_mad_chain):
24926 use the negotiated rate instead of the current frame's rate which
24927 might be wrong because of bit errors. This avoids emitting totally
24928 bogus timestamps and screwing sync.
24931 2004-06-07 Tim-Philipp Müller <t.i.m@zen.co.uk>
24933 reviewed by Benjamin Otte <otte@gnome.org>
24935 * gst/adder/gstadder.c: (gst_adder_loop):
24936 properly error out when no negotiation has happened yet. (fixes
24939 2004-06-06 Benjamin Otte <otte@gnome.org>
24941 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
24942 forward correctly transformed offset in discont events. Based on
24943 patch by Arwed v. Merkatz. (fixes #142851)
24945 2004-06-06 David Schleef <ds@schleef.org>
24947 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
24948 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
24949 problems on several systems.
24951 2004-06-06 Benjamin Otte <otte@gnome.org>
24953 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
24954 use explicit caps on the srcpad
24955 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24956 properly error out if caps couldn't be set (fixes #142764)
24958 2004-06-06 Benjamin Otte <otte@gnome.org>
24960 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
24961 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
24962 (gst_alsa_start_audio):
24963 - don't call set_periods_integer anymore, it breaks the
24964 configuration randomly
24965 - call snd_pcm_hw_params_set_access directly instead of using masks
24966 - don't fail if the sw_params can't be set, just use the default
24967 params and hope it works. Alsalib has weird issues when you touch
24968 sw_params and does no proper error reporting about what failed.
24969 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24970 (gst_alsa_close_audio):
24971 make our alsa debugging go via gst debugging and not conditionally
24973 * ext/alsa/gstalsa.h:
24974 add ALSA_DEBUG_FLUSH macro
24975 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
24977 wrap alsa errors to be printed via the gst debugging system and not
24980 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24982 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
24983 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
24984 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
24985 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
24986 (qtdemux_parse_trak):
24987 * gst/qtdemux/qtdemux.h:
24988 Bitch. Also known as seeking, querying & co.
24989 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24990 (gst_osssink_change_state):
24991 * sys/oss/gstosssink.h:
24992 Resyncing is for weenies, this hack is no longer needed and was
24993 broken anyway (since it - unintendedly - always leaves resync to
24996 2004-06-05 Andrew Turner <zxombie@hotpop.com>
24998 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
24999 * gst/tcp/gsttcpclientsrc.h: idem
25000 - define MSG_NOSIGNAL if not done
25001 - include unistd.h for off_t
25004 2004-06-05 Benjamin Otte <otte@gnome.org>
25007 * ext/kio/Makefile.am:
25008 check for qt's moc preprocessor explicitly and use it
25010 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25012 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
25013 don't get a signal for EPIPE on socket writes
25014 (somebody check if this works on other platforms)
25016 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
25018 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
25019 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25020 check error condition on available samples correctly
25022 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
25024 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
25026 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
25027 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
25028 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
25029 (gst_tcpserversrc_gdp_read_header):
25030 use ssize_t over size_t since the former is signed and thus the
25031 check for error codes can work
25033 2004-06-02 Wim Taymans <wim@fluendo.com>
25037 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
25038 (gst_multipart_mux_loop):
25041 2004-06-02 Wim Taymans <wim@fluendo.com>
25043 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
25044 (gst_multipart_mux_init), (gst_multipart_mux_loop),
25045 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25046 (gst_multipart_mux_change_state):
25047 Added configurable boundary specifier, added the value as a
25048 caps field as well.
25050 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25052 * gst/tcp/gsttcp.c:
25053 * gst/tcp/gsttcpclientsrc.c:
25054 * gst/tcp/gsttcpclientsrc.h:
25055 * gst/tcp/gsttcpserversrc.c:
25056 - portability fix, to compile on OSX
25059 * sys/osxaudio/gstosxaudioelement.c:
25060 * sys/osxaudio/gstosxaudiosink.c:
25061 * sys/osxaudio/gstosxaudiosrc.c:
25062 - compilation warnings on OSX
25065 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25067 * ext/vorbis/vorbisdec.c : sign warning fixes
25069 * gst-libs/gst/mixer/mixertrack.c :
25070 do no use defines which are glib 2.4 specific
25072 2004-06-01 Christophe Fergeau <teuf@gnome.org>
25074 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
25075 buffer since libflac doesn't expect it (reports a sync error when
25076 it encounters that)
25079 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
25081 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
25082 * gst-libs/gst/mixer/mixertrack.c:
25083 (gst_mixer_track_get_property), (get_mixer_track_init),
25084 (get_mixer_track_get_property): Added property accessors
25085 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
25086 * gst-libs/gst/mixer/mixeroptions.c:
25087 (gst_mixer_options_get_values): Added
25088 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
25089 * gst-libs/gst/mixer/mixer.c: Fixed comment
25092 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25094 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
25095 improve error messages on open
25098 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
25100 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
25101 check if v4l-conf is in path
25103 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
25105 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
25106 change assert to a more readable error message
25108 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25110 * gst-libs/gst/tuner/tunerchannel.h:
25111 - add a freq_multiplicator field to make the conversion
25112 between internal frequency unit and Hz
25113 * sys/v4l/gstv4lelement.c:
25114 * sys/v4l2/gstv4l2element.c:
25115 - change default video device to /dev/video0
25116 * sys/v4l/v4l_calls.c:
25117 * sys/v4l2/v4l2_calls.c:
25118 - we only expose frequency to the user in Hz instead of
25119 bastard v4lX unit (either 62.5kHz or 62.5Hz)
25121 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
25122 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
25123 Initialise b_o_s and e_o_s variables
25124 * gst-libs/gst/riff/riff-media.c:
25125 (gst_riff_create_video_caps_with_data):
25126 Add some unusual fourcc's from mplayer avi's
25127 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
25128 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
25131 2004-05-28 Wim Taymans <wim@fluendo.com>
25134 * gst/alpha/Makefile.am:
25135 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
25136 (gst_alpha_get_type), (gst_alpha_base_init),
25137 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
25138 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
25139 (gst_alpha_chroma_key), (gst_alpha_chain),
25140 (gst_alpha_change_state), (plugin_init):
25141 A plugin to add an alpha channel to I420 video. Can optionally do
25143 * gst/multipart/Makefile.am:
25144 * gst/multipart/multipart.c: (plugin_init):
25145 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
25146 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
25147 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
25148 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
25149 (gst_multipart_demux_change_state),
25150 (gst_multipart_demux_plugin_init):
25151 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
25152 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
25153 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
25154 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
25155 (gst_multipart_mux_pad_unlink),
25156 (gst_multipart_mux_request_new_pad),
25157 (gst_multipart_mux_handle_src_event),
25158 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
25159 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
25160 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
25161 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
25162 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
25163 send multipart jpeg images to a browser.
25164 * gst/videobox/Makefile.am:
25165 * gst/videobox/README:
25166 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
25167 (gst_video_box_get_type), (gst_video_box_base_init),
25168 (gst_video_box_class_init), (gst_video_box_init),
25169 (gst_video_box_set_property), (gst_video_box_get_property),
25170 (gst_video_box_sink_link), (gst_video_box_i420),
25171 (gst_video_box_ayuv), (gst_video_box_chain),
25172 (gst_video_box_change_state), (plugin_init):
25173 Crops or adds borders around an image. can do alpha channel
25175 * gst/videomixer/Makefile.am:
25176 * gst/videomixer/README:
25177 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
25178 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
25179 (gst_videomixer_pad_get_sink_event_masks),
25180 (gst_videomixer_pad_get_property),
25181 (gst_videomixer_pad_set_property),
25182 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
25183 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
25184 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
25185 (gst_videomixer_base_init), (gst_videomixer_class_init),
25186 (gst_videomixer_init), (gst_videomixer_request_new_pad),
25187 (gst_videomixer_handle_src_event),
25188 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
25189 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
25190 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
25191 (gst_videomixer_loop), (gst_videomixer_get_property),
25192 (gst_videomixer_set_property), (gst_videomixer_change_state),
25194 Generic video mixer plugin, can handle multiple inputs all with
25195 different framerates and video sizes. Is fully alpha channel
25198 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
25200 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
25201 Select first track as master track. Not sure how else to handle
25203 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
25204 Discard discont events. Should fix #142962.
25206 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
25208 * ext/alsa/Makefile.am:
25209 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
25210 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
25211 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
25212 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
25213 (gst_alsa_mixer_get_option):
25214 * ext/alsa/gstalsamixer.h:
25215 * ext/alsa/gstalsamixeroptions.c:
25216 (gst_alsa_mixer_options_get_type),
25217 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
25218 (gst_alsa_mixer_options_new):
25219 * ext/alsa/gstalsamixeroptions.h:
25220 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
25221 * ext/alsa/gstalsamixertrack.h:
25222 Add enumerations (as GstMixerOptions). Make correct distinction
25223 between input/output tracks. Add capture/playback private flag.
25224 Use flag to decide on whether to set capture or playback volumes
25225 or switches. Use playback and record switches.
25226 * gst-libs/gst/mixer/Makefile.am:
25227 * gst-libs/gst/mixer/mixer-marshal.list:
25228 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
25229 (gst_mixer_set_option), (gst_mixer_get_option),
25230 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
25231 (gst_mixer_volume_changed), (gst_mixer_option_changed):
25232 * gst-libs/gst/mixer/mixer.h:
25233 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
25234 (gst_mixer_options_class_init), (gst_mixer_options_init),
25235 (gst_mixer_options_dispose):
25236 * gst-libs/gst/mixer/mixeroptions.h:
25237 Add GstMixerOptions.
25238 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
25239 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
25240 broken device detection on computers with multiple OSS sound
25243 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
25245 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25246 fixate nicely even when the peer is not negotiating
25248 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
25250 * gst/audioconvert/gstaudioconvert.c:
25251 (gst_audio_convert_parse_caps):
25252 make sure we don't allow depth > width
25253 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
25254 fixate endianness to G_BYTE_ORDER as default
25255 * gst/audioscale/gstaudioscale.c:
25256 we don't handle another endianness as host-endianness
25258 2004-05-25 David Schleef <ds@schleef.org>
25260 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
25262 2004-05-24 Benjamin Otte <otte@gnome.org>
25264 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
25265 (gst_oggvorbisenc_setup):
25266 properly fail when we can't setup the vorbis encoder due to
25267 unsupported settings
25268 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
25269 (gst_vorbisenc_setup):
25271 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25272 fix case where warnings occured when one pad was unlinked while the
25273 other's link function was called
25275 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
25277 * gst/tcp/Makefile.am:
25280 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25282 * gst-libs/gst/resample/private.h:
25283 don't use optimizations that are #if 0'ed
25285 2004-05-24 Wim Taymans <wim@fluendo.com>
25287 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
25288 Fix potential division by zero error and hopefully get
25289 the position query right to get correct timestamps on avi
25292 2004-05-24 Wim Taymans <wim@fluendo.com>
25294 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
25295 (gst_videoscale_scale_nearest_str2),
25296 (gst_videoscale_scale_nearest_str4),
25297 (gst_videoscale_scale_nearest_32bit),
25298 (gst_videoscale_scale_nearest_24bit),
25299 (gst_videoscale_scale_nearest_16bit):
25300 Fix the scaling algorithm and avoid a buffer overflow.
25301 removed the while loop in the scaling function as it
25302 was used for point sampling only.
25304 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
25306 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
25307 (gst_id3_tag_class_init), (gst_id3_tag_init),
25308 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
25309 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
25310 (gst_id3_tag_send_tag_event):
25311 lots of fixes to make id3mux work and id3demux work correctly
25313 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25316 add rules to build shout2send (was removed by accident
25317 when this module was no more marked experimental/broken)
25319 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
25321 * ext/shout2/gstshout2.c:
25322 * ext/shout2/gstshout2.h:
25323 adding a "connection problem" signal to shout2send
25326 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
25328 * ext/kio/kioreceiver.cpp:
25329 * ext/kio/kioreceiver.h:
25330 fix sign comparison issues
25332 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25334 * gst/cdxaparse/gstcdxaparse.c:
25335 * gst/cdxaparse/gstcdxaparse.h:
25337 add some checks/sanity
25338 prepare for seek addition
25340 * sys/sunaudio/gstsunaudio.c:
25341 remove exported dupe init function
25343 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
25345 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
25346 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
25347 Fix format conversion and position querying.
25348 * gst/debug/progressreport.c: (gst_progressreport_report):
25349 Don't output a bogus total value that we didn't query.
25350 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25351 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
25352 only a blank window after xine has been used.
25354 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
25357 sync with upstream version to fix test on FC2
25358 readd with -ko to preserve Id header
25360 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25363 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
25364 * gst/tcp/gsttcpclientsrc.c: idem
25365 * gst/tcp/gsttcpserversink.c: idem
25366 * gst/tcp/gsttcpserversrc.c: idem
25367 * m4/gst-fionread.m4: idem
25369 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
25371 * configure.ac: enable speex plugin for speex 1.1.5+
25372 * ext/speex/gstspeexenc.c: fix cast warning
25374 * ext/esd/README: fix typo
25376 2004-05-20 David Schleef <ds@schleef.org>
25378 * configure.ac: Minor cosmetic change to convince the buildbot to
25380 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
25381 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
25382 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
25383 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
25384 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
25385 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
25386 More hacking. Plays audio now.
25388 2004-05-20 David Schleef <ds@schleef.org>
25393 2004-05-20 David Schleef <ds@schleef.org>
25395 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
25396 * sys/osxaudio/gstosxaudio.c:
25397 * sys/osxaudio/gstosxaudioelement.c:
25398 * sys/osxaudio/gstosxaudioelement.h:
25399 * sys/osxaudio/gstosxaudiosink.c:
25400 * sys/osxaudio/gstosxaudiosink.h:
25401 * sys/osxaudio/gstosxaudiosrc.c:
25402 * sys/osxaudio/gstosxaudiosrc.h:
25404 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25406 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
25407 (gst_vorbisenc_chain):
25408 put the codec headers on the caps as streamheader as well as
25411 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25413 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25414 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
25415 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
25416 split up push_packet into two functions
25418 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
25420 * gst/tcp/.cvsignore:
25422 * gst/tcp/Makefile.am:
25424 * gst/tcp/gsttcp.c:
25425 * gst/tcp/gsttcp.h:
25426 * gst/tcp/gsttcpclientsink.c:
25427 * gst/tcp/gsttcpclientsink.h:
25428 * gst/tcp/gsttcpclientsrc.c:
25429 * gst/tcp/gsttcpclientsrc.h:
25430 * gst/tcp/gsttcpplugin.c:
25431 * gst/tcp/gsttcpserversink.c:
25432 * gst/tcp/gsttcpserversink.h:
25433 * gst/tcp/gsttcpserversrc.c:
25434 * gst/tcp/gsttcpserversrc.h:
25435 add new tcp elements
25437 2004-05-19 Wim Taymans <wim@fluendo.com>
25439 * gst/law/mulaw-conversion.c: (mulaw_encode):
25440 Fix overflow bug in ulaw encoding.
25442 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25444 * ext/mad/gstmad.c: (gst_mad_handle_event):
25445 don't unref the event twice
25447 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25450 remove -Wno-sign-compare
25452 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25455 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
25456 if you want to work against glib 2.2 and 2.4
25458 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
25460 * gst/tcp/Makefile.am:
25461 * gst/tcp/gsttcp.c:
25462 * gst/tcp/gsttcp.h:
25463 * gst/tcp/gsttcpsink.h:
25464 * gst/tcp/gsttcpsrc.h:
25465 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
25467 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25469 * gst/debug/tests.c: (md5_get_value):
25470 fix segfault on gst-inspect
25472 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
25474 * gst/debug/testplugin.c:
25475 * gst/debug/tests.c:
25476 * gst/debug/tests.h:
25477 add new extensible and configurable testing element. Current tests
25478 include buffer count, stream length, timestamp/duration matching and
25480 * gst/debug/Makefile.am:
25481 * gst/debug/gstdebug.c: (plugin_init):
25482 add infrastructure for new element
25484 2004-05-19 Johan Dahlin <johan@gnome.org>
25486 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
25487 ending of the array. Fixes gst-inspect segfault on ppc.
25489 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25491 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
25493 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
25495 2004-05-18 David Schleef <ds@schleef.org>
25497 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
25498 warnings (bugs, actually) noticed by gcc but not forte.
25500 2004-05-18 David Schleef <ds@schleef.org>
25502 * sys/sunaudio/Makefile.am:
25503 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
25505 2004-05-18 David Schleef <ds@schleef.org>
25507 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
25508 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
25509 to allow qtdemux to use non-seekable streams. (bug #142272)
25511 2004-05-18 David Schleef <ds@schleef.org>
25513 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
25514 (gst_resample_sinc_ft_float): Remove use of static temporary
25515 buffer. This code was obviously not supposed to last long, but
25516 it's stuck in our ABI, so it required a little hack to make it
25517 ABI-compatible. Fixes #142585.
25518 * gst-libs/gst/resample/resample.h: same.
25520 2004-05-18 David Schleef <ds@schleef.org>
25522 * configure.ac: Add sunaudio
25523 * examples/Makefile.am: make gstplay depend on gconf
25524 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
25525 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
25526 (convert_table_lookup), (img_convert): remove c99-isms
25527 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
25528 unsigned, to fix a warning on Solaris
25529 * gst/mpeg1sys/systems.c: bcopy->memcpy
25530 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
25531 * sys/Makefile.am: Add sunaudio
25533 2004-05-18 Wim Taymans <wim@fluendo.com>
25535 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
25536 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
25537 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
25538 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
25539 (gst_ogg_mux_loop):
25540 Fix an ugly memleak where the muxer didn't flush enough ogg
25541 pages. This also resulted in badly muxed ogg files.
25543 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25545 * gst/asfdemux/asfheaders.c :
25546 * gst/asfdemux/asfheaders.h :
25547 * gst/asfdemux/gstasfdemux.c :
25548 - fix ASF_OBJ_PADDING guid
25549 - add 3 new object guids (language list, metadata,
25550 extended stream properties)
25551 - add a function to parse extended header objects
25553 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
25555 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25556 remove leftover debugging g_print
25558 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
25560 * ext/mad/gstmad.c: (gst_mad_handle_event):
25561 Fix for when the first format in a discont event is not a
25562 byte-based one. Should fix #137710.
25564 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25566 * m4/a52.m4 : fix compilation with -Wall -Werror
25567 * m4/libfame.m4 : idem
25568 * m4/libmikmod.m4 : idem
25570 2004-05-17 Benjamin Otte <otte@gnome.org>
25572 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25573 signal the new tags before giving up the reference
25575 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
25577 * ext/shout2/gstshout2.c:
25578 use application/ogg instead of application/x-ogg (patch by Patrick
25579 Guimond, fixes #142432)
25580 * sys/oss/gstosselement.c: (gst_osselement_reset),
25581 (gst_osselement_sync_parms):
25582 don't set fragment size unless specified (fixes #142493)
25584 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25586 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
25589 2004-05-17 Benjamin Otte <otte@gnome.org>
25591 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25592 compute offsets correctly for internal buffers so timestamps are set
25593 correctly when we can't seek. Also handle cases where there are no
25594 offsets. (based on a patch by David Moore, fixes #142507)
25596 2004-05-17 Benjamin Otte <otte@gnome.org>
25598 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25599 use correct variable when determining amount of data to skip so we
25600 don't skip into the void and segfault
25602 2004-05-16 Benjamin Otte <otte@gnome.org>
25604 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25607 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25609 * gst/asfdemux/gstasfdemux.c:
25610 - fix a mem leak and always propagate tags
25611 - add WMV3 to known video codecs (but no decoder yet)
25612 - replace "surplus data" at end of audio header for what
25613 it is : codec specific data
25616 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
25618 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
25620 * gst-libs/gst/audio/audioclock.c:
25621 Fix wrong return type (#142205).
25623 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25625 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
25626 Ignore CRCs by default (fixes #142566).
25628 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25630 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
25631 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
25632 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
25633 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
25634 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
25635 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
25636 Fix for cases where we fail to attach to a mixer.
25638 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
25640 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
25641 Don't touch events after not owning them anymore.
25642 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
25643 (gst_wavparse_fmt), (gst_wavparse_other),
25644 (gst_wavparse_handle_seek), (gst_wavparse_loop),
25645 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
25646 (gst_wavparse_srcpad_event):
25647 * gst/wavparse/gstwavparse.h:
25648 Add seeking, fix querying.
25650 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25652 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25653 - process comments even if they don't end with \0\0
25654 g_convert would ignore them if present and works well without them
25656 2004-05-16 Benjamin Otte <otte@gnome.org>
25658 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
25661 2004-05-16 Benjamin Otte <otte@gnome.org>
25663 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25664 don't write to memory we might not write to - g_convert does that
25665 for us anyway (fixes #142613)
25666 (gst_asf_demux_audio_caps):
25667 comment out gst_util_dump_mem
25669 2004-05-16 Benjamin Otte <otte@gnome.org>
25671 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25672 compute correct expected timestamps after seek (broken since
25674 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
25675 rename element and debugging category to gdkpixbufscale
25677 2004-05-16 Benjamin Otte <otte@gnome.org>
25679 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25680 add error checking to snd_pcm_delay and remove duplicate call to
25681 snd_pcm_delay that caused issues (see inline code comments)
25682 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
25683 make more readable and fix return value when snd_pcm_delay fails
25686 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
25687 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
25688 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
25689 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
25690 (gst_pixbufscale_link), (gst_pixbufscale_init),
25691 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
25692 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
25693 (gst_pixbufscale_get_property), (pixbufscale_init):
25694 * ext/gdk_pixbuf/pixbufscale.h:
25695 Add these files I forgot earlier
25697 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
25698 * ext/gdk_pixbuf/Makefile.am:
25699 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25700 * ext/gdk_pixbuf/gstgdkpixbuf.h:
25701 Add new pixbufscale element to scale RGB video
25702 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
25703 and HYPER interpolation correctly.
25704 * ext/theora/theoraenc.c: (theora_enc_chain),
25705 Discard buffer and return if explicit caps could not be set
25706 (theora_enc_get_property):
25707 Make _get return kbps for the bitrate consistent with
25711 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
25713 * ext/libvisual/visual.c: (gst_visual_chain):
25714 add missing visual_audio_analyze
25716 2004-05-14 David Schleef <ds@schleef.org>
25718 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
25719 is killed while we're playing.
25720 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
25721 gst_element_no_more_pads().
25723 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25725 * gst-libs/gst/riff/riff-read.c :
25726 - fix INFO tag extraction in RIFF/AVI files
25727 because gst_event_unref (event) also freed taglist
25730 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25732 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
25733 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
25735 * gst/auparse/gstauparse.c :
25736 - add code (commented for now) to support audio/x-adpcm on src pad
25737 (we have no decoder for those layout yet)
25739 * gst/cdxaparse/gstcdxaparse.c :
25740 * gst/cdxaparse/gstcdxaparse.h :
25741 - partial rewrite using RiffRead (ripped iain's wavparse code)
25743 * gst/rtp/gstrtpL16enc.c : typo
25744 * gst/rtp/gstrtpgsmenc.c : typo
25746 2004-05-13 Benjamin Otte <otte@gnome.org>
25749 check for exact version of libvisual, it's not supposed to be
25752 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
25754 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
25755 signal no-more-pads
25757 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25759 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
25760 Report which format was used for GST_FORMAT_DEFAULT
25761 * gst/debug/Makefile.am:
25762 * gst/debug/gstdebug.c: (plugin_init):
25763 * gst/debug/progressreport.c: (gst_progressreport_base_init),
25764 (gst_progressreport_class_init), (gst_progressreport_init),
25765 (gst_progressreport_report), (gst_progressreport_set_property),
25766 (gst_progressreport_get_property), (gst_progressreport_chain),
25767 (gst_progressreport_plugin_init):
25768 Add progressreport element for testing.
25770 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
25772 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
25773 * sys/v4l/gstv4lsrc.h:
25774 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
25775 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
25776 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
25777 (gst_v4lsrc_grab_frame):
25779 send a discont at start
25781 2004-05-12 Colin Walters <walters@redhat.com>
25783 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
25784 inflooping if we can't find a chunk. Or in other words, don't blow
25785 chunks if we don't have a chunk to blow.
25787 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
25788 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
25789 Remove old debug output
25790 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
25791 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
25792 (gst_dvdec_set_property), (gst_dvdec_get_property):
25793 Change the quality setting to an enum, so it works from gst-launch
25794 Don't renegotiate a non-linked pad. Allows audio only decoding.
25795 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
25796 (gst_deinterlace_link), (gst_deinterlace_init):
25797 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25798 (gst_videodrop_link):
25799 Some caps negotiation fixes
25801 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25803 * ext/tarkin/gsttarkin.c :
25804 - Change RANK from NONE to PRIMARY
25805 * ext/gdk_pixbuf/gstgdkpixbuf.c :
25806 - Change RANK from NONE to MARGINAL
25807 * ext/divx/gstdivxenc.c :
25808 - Change RANK from PRIMARY to NONE (encoder/spider issue)
25810 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
25812 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
25813 (gst_vorbisenc_push_packet):
25814 copy a function that was added between 1.0 and 1.0.1 until we
25815 depend on worthwhile features of post-1.0
25817 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
25820 enable shout2 by default
25821 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
25822 (gst_shout2send_base_init), (gst_shout2send_init),
25823 (gst_shout2send_connect), (gst_shout2send_change_state):
25824 * ext/shout2/gstshout2.h:
25825 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
25827 * ext/theora/theora.c: (plugin_init):
25828 don't set rank on encoders
25830 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
25832 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
25833 Use codec_data property instead of flag1 and flag2 for wma
25835 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25837 * gst/cdxaparse/gstcdxaparse.c :
25838 - Add mpegversion to CAPS to make it link
25839 - Rank is as GST_RANK_SECONDARY instead of NONE
25840 * gst/auparse/gstauparse.c :
25841 - Document all audio encoding we can encounter from Solaris 9
25842 headers and libsndfile information.
25843 - Increase max. rate from 48000 to 192000 (to match other elements)
25844 - Don't try to play junk data between header and samples
25846 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25848 * ext/libvisual/visual.c: (gst_visual_getcaps):
25849 use the right caps depending on endianness (I hope)
25850 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
25851 use GST_RANK_NONE for all non-decoding elements or spider gets
25854 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
25856 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
25857 Fix some odd cases and fix BE metadata parsing of unicode16 text.
25859 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25861 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25862 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
25863 (gst_switch_loop), (gst_switch_get_type):
25864 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
25865 HEADERS. Had to be said.
25867 2004-05-10 David Schleef <ds@schleef.org>
25869 * configure.ac: Add prototype Dirac support.
25871 * ext/dirac/Makefile.am:
25872 * ext/dirac/gstdirac.cc:
25873 * ext/dirac/gstdiracdec.cc:
25875 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25877 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
25878 (gst_auparse_init), (gst_auparse_chain),
25879 (gst_auparse_change_state):
25880 Hack around spider. Remove me some day please.
25882 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
25884 * gst/auparse/gstauparse.c: (gst_auparse_chain):
25885 Fix for some uninitialized variables in previous patch, also
25886 makes it work. Fixes #142286 while we're at it.
25888 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25890 * gst/auparse/gstauparse.c:
25891 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
25892 only unsupported formats are ADPCM/CCITT G.72x
25894 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
25896 2004-05-10 Wim Taymans <wim@fluendo.com>
25898 * ext/vorbis/Makefile.am:
25899 * ext/vorbis/README:
25900 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
25901 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
25902 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
25903 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
25904 (gst_oggvorbisenc_convert_sink),
25905 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
25906 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
25907 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
25908 (get_constraints_string), (update_start_message),
25909 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
25910 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
25911 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
25912 * ext/vorbis/oggvorbisenc.h:
25913 * ext/vorbis/vorbis.c: (plugin_init):
25914 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
25915 (raw_caps_factory), (gst_vorbisenc_class_init),
25916 (gst_vorbisenc_init), (gst_vorbisenc_setup),
25917 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
25918 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
25919 * ext/vorbis/vorbisenc.h:
25920 Added a raw vorbis encoder to be used with the oggmuxer.
25921 We still need the old encoder for some gnome applications,
25922 read the README to find out how that works.
25923 The raw encoder is called "rawvorbisenc" until 0.9.
25925 2004-05-10 Wim Taymans <wim@fluendo.com>
25927 * ext/ogg/gstogg.c: (plugin_init):
25928 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
25930 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
25931 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
25932 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
25933 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
25934 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
25935 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
25936 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
25937 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
25938 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
25939 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
25940 Added an ogg muxer.
25941 Small typo fixes in the demuxer.
25943 2004-05-10 Wim Taymans <wim@fluendo.com>
25945 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
25946 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
25947 (theora_enc_change_state), (theora_enc_set_property),
25948 (theora_enc_get_property):
25949 Mark the last packet with an EOS flag which is not really needed
25951 Do some better video framerate initialisation.
25952 Update the buffer timestamp.
25954 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
25956 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
25957 Return the result of the parent state change call
25959 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
25961 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
25962 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
25963 * gst/law/alaw-encode.c : (idem)
25964 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
25965 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
25966 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
25968 2004-05-09 Benjamin Otte <otte@gnome.org>
25970 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25971 don't use a fixed buffer size when writing variable length data to
25972 it. Fixes memory corruption and makes alsasrc work
25974 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25976 * ext/gnomevfs/gstgnomevfssink.c:
25977 (_gst_boolean_allow_overwrite_accumulator),
25978 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
25979 Run glib's default signal handler (??) in RUN_CLEANUP rather than
25980 RUN_LAST, and don't use that to set the accumulator value because
25981 then it's always FALSE.
25983 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
25985 * gst-libs/gst/riff/riff-media.c:
25986 (gst_riff_create_video_caps_with_data),
25987 (gst_riff_create_audio_caps),
25988 (gst_riff_create_audio_template_caps):
25989 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
25990 Fix for unaligned RIFF files (i.e. where all the chunks together
25991 in a LIST chunk are not of the same size as the size given in
25992 the LIST chunk header). Fixes several odd WAVE files. Also fix
25993 ADPCM (block_align property) in audio, so that wavparse based
25994 on this works now as it used to stand-alone.
25996 2004-05-09 Edward Hervey <bilboed@bilboed.com>
25998 reviewed by Benjamin Otte <otte@gnome.org>
26000 * ext/a52dec/gsta52dec.c:
26001 * ext/divx/gstdivxdec.c:
26002 * ext/divx/gstdivxenc.c:
26003 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
26004 * ext/faac/gstfaac.c: (gst_faac_base_init):
26005 * ext/faad/gstfaad.c: (gst_faad_base_init):
26006 * ext/ivorbis/vorbisfile.c:
26007 * ext/lame/gstlame.c:
26008 * ext/libfame/gstlibfame.c:
26009 * ext/mpeg2enc/gstmpeg2enc.cc:
26010 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
26011 * ext/sidplay/gstsiddec.cc:
26012 * ext/speex/gstspeexdec.c:
26013 * ext/speex/gstspeexenc.c:
26014 * ext/xvid/gstxviddec.c:
26015 * ext/xvid/gstxvidenc.c:
26016 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
26019 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
26021 * ext/alsa/gstalsa.c: (device_list),
26022 (gst_alsa_class_probe_devices):
26023 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
26024 Fix alsa oddness in mixer after the combination of using mixer
26025 in source/sink elements and using hw:x,y instead of just hw:x.
26027 2004-05-09 Benjamin Otte <otte@gnome.org>
26029 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
26030 (gst_wavparse_create_sourcepad):
26031 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
26034 2004-05-09 Benjamin Otte <otte@gnome.org>
26036 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26037 allow discont events before caps nego
26039 2004-05-08 Benjamin Otte <otte@gnome.org>
26041 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26044 2004-05-08 Benjamin Otte <otte@gnome.org>
26046 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
26047 (gst_level_change_state), (gst_level_init):
26048 * gst/level/gstlevel.h:
26049 figure out if we're initialized directly instead of keeping a
26050 variable that's wrong in 90% of cases
26051 don't initialize pads and then leak them and use a new unitialized
26052 pad. (fixes #142084)
26053 these were bugs so n00bish I didn't find them for an hour :/
26055 2004-05-08 Iain <iain@prettypeople.org>
26057 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
26058 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
26059 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
26060 return the length that was read.
26061 (gst_riff_read_strf_auds): Allow fmt tags as well.
26063 2004-05-07 David Schleef <ds@schleef.org>
26065 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
26066 signed char assumption in faad.h.
26068 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
26070 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
26071 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
26073 2004-05-07 Colin Walters <walters@redhat.com>
26075 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
26076 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
26078 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
26079 Add dispose function.
26081 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
26082 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
26083 Fix caps nego and pad templates. RGB mode caps should
26085 * ext/dvdnav/gst-dvd:
26086 Move mpeg2dec inside the thread because otherwise the
26087 queue rejects cap changes mid-stream
26088 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
26089 (gst_mpeg2dec_flush_decoder):
26090 For mpeg2dec > 0.4.0, call the flush function instead of
26091 manually extracting all in-flight frames.
26092 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
26093 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
26094 Change mime type video/dv go video/x-dv to match the
26095 rest of gst-plugins
26097 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
26099 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
26100 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
26101 (gst_alsa_sink_class_init):
26102 * ext/alsa/gstalsasink.h:
26103 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
26104 (gst_alsa_src_class_init):
26105 * ext/alsa/gstalsasrc.h:
26106 Make alsasink/src a subclass of alsamixer so that mixer stuff
26107 shows up in gst-rec. Needs some finetuning.
26109 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
26111 * ext/lame/gstlame.c: (gst_lame_chain):
26113 * ext/mad/gstmad.c: (gst_mad_handle_event):
26115 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
26116 be able to detect mp3 files < 4096 bytes
26118 2004-05-06 Wim Taymans <wim@fluendo.com>
26120 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
26121 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
26122 (theora_enc_set_property), (theora_enc_get_property):
26123 Also encode the first frame, cleanup some code.
26125 2004-05-06 Wim Taymans <wim@fluendo.com>
26127 * ext/mpeg2enc/gstmpeg2enc.cc:
26128 Forward events first before deciding that negotiation was
26131 2004-05-06 Wim Taymans <wim@fluendo.com>
26133 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26134 First process the events before deciding that negotiation
26137 2004-05-06 Wim Taymans <wim@fluendo.com>
26139 * ext/theora/Makefile.am:
26140 * ext/theora/theora.c: (plugin_init):
26141 * ext/theora/theoradec.c: (theora_dec_change_state):
26142 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
26143 (gst_theora_enc_class_init), (gst_theora_enc_init),
26144 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
26145 (theora_enc_chain), (theora_enc_change_state),
26146 (theora_enc_set_property), (theora_enc_get_property):
26147 Added a theora encoder, grouped the encoder and decoder into the
26150 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
26152 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26153 (gst_jpegenc_chain):
26154 fix DURATION on outgoing buffers
26155 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
26156 debug using time formats
26157 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26158 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26159 (gst_xvimagesink_sink_link):
26160 windows with width/height 0 generate X errors, so don't allow them
26162 2004-05-05 Wim Taymans <wim@fluendo.com>
26164 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
26165 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
26166 (gst_mpeg2dec_negotiate_format):
26167 * ext/mpeg2dec/gstmpeg2dec.h:
26168 removed the static pad template so that we can add the
26169 more accurate framerate value to the caps.
26172 2004-05-04 Benjamin Otte <otte@gnome.org>
26175 check for kdemacros.h, too (should fix #141821)
26176 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
26177 don't crash if no header was sent, but nicely error out (fixes part
26180 2004-05-04 Wim Taymans <wim@fluendo.com>
26182 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
26183 parent dispose function to avoid segfault on destroy.
26185 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
26187 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
26189 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26190 (gst_xvimagesink_sink_link):
26191 clean up debugging caps
26192 also recreate xvimage when format has changed
26194 2004-05-04 Benjamin Otte <otte@gnome.org>
26196 * ext/libvisual/Makefile.am:
26197 * ext/libvisual/visual.c: (gst_visual_class_init),
26198 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
26199 (gst_visual_srclink), (gst_visual_chain),
26200 (gst_visual_change_state), (plugin_init):
26201 use a GstAdapter to correctly adapt buffer sizes - allows using a
26204 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26206 * sys/v4l/gstv4lelement.h:
26207 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
26208 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
26209 (gst_v4lsrc_buffer_free):
26210 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
26211 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26212 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
26213 (gst_v4lsrc_requeue_frame):
26214 move some debugging categories around
26215 query for fps index and set accordingly if found
26217 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26219 * ext/lame/gstlame.c:
26220 correct defaults that lame_init puts out of range
26222 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26224 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
26225 (gst_divxenc_class_init):
26226 fix range since -1 is the default
26227 * gst/mpeg1sys/gstmpeg1systemencode.c:
26228 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
26229 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
26230 (gst_rtjpegdec_chain):
26231 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
26232 (gst_rtjpegenc_chain):
26233 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
26234 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
26235 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
26236 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
26237 * sys/v4l/gstv4lsrc.c:
26238 * sys/v4l/v4l_calls.c: (gst_v4l_open):
26239 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
26240 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
26241 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
26242 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
26243 remove gst_info calls
26245 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26254 Updated translations
26256 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
26258 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26259 refactor/comment code
26261 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
26263 * gst/asfdemux/Makefile.am:
26264 * gst/asfdemux/asfheaders.c:
26265 * gst/asfdemux/asfheaders.h:
26266 * gst/asfdemux/gstasf.c: (plugin_init):
26267 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
26268 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
26269 (gst_asf_demux_setup_pad):
26270 * gst/asfdemux/gstasfdemux.h:
26271 * gst/asfdemux/gstasfmux.c:
26272 * gst/asfdemux/gstasfmux.h:
26273 Add tagging support to demuxer, split out registration in its own
26274 file instead of in demux (hacky), and prevent having some tables
26275 in our memory multiple times (in asfheaders.h).
26277 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
26279 * gst/matroska/matroska-demux.c:
26280 (gst_matroska_demux_parse_metadata):
26281 * gst/matroska/matroska-ids.h:
26282 Basic tag reading support.
26284 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
26286 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
26287 Really detect ac-3 audio.
26288 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
26289 really detect matroska files (off-by-1).
26291 2004-04-30 David Schleef <ds@schleef.org>
26293 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26294 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
26295 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
26296 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
26297 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
26298 hackage -- parse a lot more atoms, extract a few tags. One might even
26299 mistake this for tag support. Maybe it is.
26300 * gst/qtdemux/qtdemux.h:
26302 2004-04-30 Colin Walters <walters@verbum.org>
26304 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
26306 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
26308 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26309 (gst_ffmpegcolorspace_getcaps):
26310 remove broken nego fix
26312 2004-04-30 Benjamin Otte <otte@gnome.org>
26316 * ext/libvisual/Makefile.am:
26317 * ext/libvisual/visual.c:
26318 add initial support for libvisual (http://libvisual.sourceforge.net)
26319 libvisual is still quite alpha, so expect crashes in there :)
26321 2004-04-29 David Schleef <ds@schleef.org>
26323 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
26324 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
26325 up qtdemux to make it spit out codec_data. Do _not_ look at this
26326 code; you will no longer respect me.
26328 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
26330 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
26331 * ext/alsa/gstalsa.h :
26332 change alsa pcm device discovery to find more than 1 device
26333 per card. code review by Ronald.
26335 2004-04-29 David Schleef <ds@schleef.org>
26337 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
26338 Add a check for a driver bug on FreeBSD. (bug #140565)
26340 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
26342 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
26343 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26344 (gst_jpegenc_getcaps):
26345 move format setting to inner loop
26346 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26347 (gst_ffmpegcolorspace_getcaps):
26348 use GST_PAD_CAPS if available so that we use already negotiated
26350 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
26351 (qtdemux_parse_moov), (qtdemux_parse):
26353 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
26354 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
26355 move hardcoded path to DEFINE
26357 2004-04-28 David Schleef <ds@schleef.org>
26359 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
26362 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26364 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
26365 Don't probe for playback device if we're a source element. Fixes
26368 2004-04-29 Benjamin Otte <otte@gnome.org>
26370 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26371 (gst_id3_tag_chain):
26372 rewrite buffer offset
26374 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
26378 * ext/dts/Makefile.am:
26379 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
26380 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
26381 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
26382 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
26383 (gst_dtsdec_loop), (gst_dtsdec_change_state),
26384 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
26386 * ext/dts/gstdtsdec.h:
26388 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
26389 (gst_faad_srcconnect):
26390 Add ESDS atom handling (.m4a).
26392 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
26394 * ext/divx/gstdivxdec.c: (plugin_init):
26395 Remove comment that makes no sense.
26396 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
26397 Fix for obvious typo that resulted in warnings during gst-register.
26398 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
26399 (gst_xviddec_sink_link):
26400 Fix caps negotiation a bit better.
26401 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
26402 We call this 'codec_data', not 'esds'.
26404 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
26406 * gst/monoscope/gstmonoscope.c:
26407 make sure we only provide 256x128
26408 * gst/monoscope/monoscope.c: (monoscope_init):
26409 assert size of 256x128
26411 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26414 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
26415 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
26416 fixate to max width and height of device
26418 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26421 * sys/v4l/gstv4l.c:
26422 * sys/v4l/gstv4lsrc.c:
26423 * sys/v4l/v4l_calls.c:
26424 * sys/v4l/v4lsrc_calls.c:
26425 fix for qc-usb driver which fakes having more than one buffer
26426 by handing the same buffer twice, which confused GStreamer's/v4lsrc
26427 buffer_free override
26430 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
26433 * gst/videotestsrc/gstvideotestsrc.c:
26434 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
26435 (gst_videotestsrc_init), (gst_videotestsrc_get),
26436 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
26437 * gst/videotestsrc/gstvideotestsrc.h:
26438 add num-buffers property
26440 2004-04-26 Benjamin Otte <otte@gnome.org>
26442 * ext/mad/gstid3tag.c: (plugin_init):
26443 set id3mux rank to NONE so it doesn't confuse spider
26444 require audio/mpeg,mpegversion=1 in id3mux
26446 2004-04-26 Benjamin Otte <otte@gnome.org>
26449 detect faad correctly as non-working if it's indeed non-working
26451 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
26454 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
26455 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
26456 fix _getcaps so it only negotiates to its supported format
26458 2004-04-25 Benjamin Otte <otte@gnome.org>
26460 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26463 2004-04-23 Benjamin Otte <otte@gnome.org>
26465 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26466 audio/x-raw-int with height rules! not. Now it's depth.
26468 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
26470 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
26471 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26472 (gst_wavparse_loop):
26473 Missing variable initialization. Add handling of DVI ADPCM. Fix
26474 mis-parsing of LIST chunks. This works around a bug where we mis-
26475 parse non-aligning LIST chunks (so LIST chunks where the contents
26476 don't align with the actual LIST size). The correct fix is to use
26477 rifflib, I'm not going to fix wavparse - too much work. All this
26480 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
26482 reviewed by Benjamin Otte <otte@gnome.org>
26484 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
26485 fix shoutcast not working (fixes #140844)
26487 2004-04-22 Benjamin Otte <otte@gnome.org>
26489 * ext/hermes/gsthermescolorspace.c:
26490 (gst_hermes_colorspace_caps_remove_format_info):
26491 * gst/colorspace/gstcolorspace.c:
26492 (gst_colorspace_caps_remove_format_info):
26493 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26494 (gst_ffmpegcolorspace_caps_remove_format_info):
26495 s/gst_caps_simplify/gst_caps_do_simplify/
26497 2004-04-22 Benjamin Otte <otte@gnome.org>
26499 * gst-libs/gst/riff/riff-media.c:
26500 (gst_riff_create_video_caps_with_data):
26501 mpegversion is an int
26502 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
26503 don't try to create pad templates with NULL caps, use any caps
26506 2004-04-20 David Schleef <ds@schleef.org>
26508 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
26509 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
26512 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26514 reviewed by David Schleef
26516 * ext/mad/gstid3tag.c: Add stdlib.h
26517 * gst/rtp/gstrtpgsmenc.c: same
26518 * gst/tags/gstid3tag.c: same
26519 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
26520 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
26521 GST_DISABLE_LOADSAVE use.
26522 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
26523 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
26524 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
26526 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
26527 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
26529 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
26530 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
26532 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
26535 2004-04-20 David Schleef <ds@schleef.org>
26537 * gst/realmedia/rmdemux.c: This was supposed to part of the
26538 last checkin. Same idea.
26540 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
26542 reviewed by David Schleef
26544 * configure.ac: bump required gstreamer version to 0.8.1.1
26545 because of following changes [--ds]
26547 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
26548 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
26549 (gst_riff_read_header): Use GST_READ_UINT*
26550 macros to access possibly unaligned memory.
26552 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
26553 (mp3_type_find): Use GST_READ_UINT*
26554 macros to access possibly unaligned memory.
26555 (mp3_type_find, mpeg1_parse_header, qt_type_find)
26556 (speex_type_find): Likewise
26558 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
26560 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
26561 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
26562 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
26563 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
26564 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
26565 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
26566 macros to access possibly unaligned memory.
26568 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
26571 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
26572 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
26574 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
26577 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
26578 (gst_mpeg2subt_chain_subtitle): Likewise.
26580 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
26581 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
26584 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
26587 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
26590 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
26593 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26596 update required version of GStreamer because of GST_TIME_FORMAT
26598 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
26600 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
26601 remove leftover g_print
26602 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26603 don't try setting only a subset of the caps. We don't want to kill
26604 autoplugging on purpose
26606 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26608 * sys/ximage/ximagesink.c: (plugin_init):
26609 * sys/xvimage/xvimagesink.c: (plugin_init):
26610 add debugging categories
26612 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
26616 Adding en_GB translation (Gareth Owen)
26618 2004-04-20 David Schleef <ds@schleef.org>
26620 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
26621 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
26622 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
26623 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
26624 A number of new features and hacks to extract the esds atom and
26625 put it into the caps. (bug #137724)
26627 2004-04-19 David Schleef <ds@schleef.org>
26629 * gconf/Makefile.am: Fix for non-GNU make
26630 * gst-libs/gst/Makefile.am: Change directory order to handle
26631 GstPlay linking with gstinterfaces
26632 * gst-libs/gst/audio/make_filter: make use of tr portable
26633 * gst-libs/gst/play/Makefile.am: Add intended \
26634 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
26635 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
26636 function prototype instead of void *.
26637 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
26639 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26640 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
26641 * gst/videofilter/make_filter: make use of tr portable
26642 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
26644 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
26648 Added Ukrainian translation (Maxim V. Dziumanenko)
26650 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26652 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
26653 (gst_gsmdec_link), (gst_gsmdec_chain):
26654 Fix capsnego, simplify chain function slightly.
26655 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26658 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
26660 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26661 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
26662 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
26663 Hack to make wavparse work with spider (always -> sometimes pad).
26664 Fixes #135862 && #140411.
26666 2004-04-18 Benjamin Otte <otte@gnome.org>
26668 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
26669 (gst_osselement_rate_probe_check),
26670 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
26671 get rid of \n in debug output
26673 2004-04-17 Iain <iain@prettypeople.org>
26675 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
26678 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26680 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
26681 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
26682 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
26683 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
26684 (gst_id3_tag_src_link), (gst_id3_tag_chain),
26685 (gst_id3_tag_change_state), (plugin_init):
26686 deprecate id3tag element and replace with id3demux/id3mux.
26687 great side effect: this ugly file is now even uglier, yay!
26688 * ext/mad/gstmad.h:
26689 remove non-available function
26690 update for new get_type
26692 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
26695 require mpeg2dec >= 0.4.0
26697 2004-04-17 Benjamin Otte <otte@gnome.org>
26699 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26700 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26701 (gst_xvimagesink_set_xwindow_id):
26702 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
26703 assorted cleanup fixes.
26705 2004-04-16 David Schleef <ds@schleef.org>
26707 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
26708 * sys/xvimage/xvimagesink.h: same
26710 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
26712 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26713 Fix GST_ELEMENT_ERROR with (NULL)
26715 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26717 * gst-libs/gst/riff/riff-media.c:
26718 (gst_riff_create_video_caps_with_data):
26719 Add div[3456] as fourccs for DivX 3 (fixes #140137).
26721 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26723 * gst-libs/gst/riff/riff-media.c:
26724 (gst_riff_create_video_caps_with_data),
26725 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
26726 (gst_riff_create_video_template_caps),
26727 (gst_riff_create_audio_template_caps):
26728 * gst-libs/gst/riff/riff-media.h:
26729 * gst-libs/gst/riff/riff-read.c:
26730 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
26731 * gst-libs/gst/riff/riff-read.h:
26732 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
26733 Add MS RLE support. I added some functions to read out strf chunks
26734 into strf chunks and the data behind it. This is usually color
26735 palettes (as in RLE, but also in 8-bit RGB). Also use those during
26736 caps creation. Lastly, add ADPCM (similar to wavparse - which
26737 should eventually be rifflib based).
26738 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
26739 (gst_matroska_demux_init), (gst_matroska_demux_reset):
26740 * gst/matroska/matroska-demux.h:
26741 Remove placeholders for some prehistoric tagging system. Didn't add
26742 support for any tag system really anyway.
26743 * gst/qtdemux/qtdemux.c:
26744 Add support for audio/x-m4a (MPEG-4) through spider.
26745 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26746 (gst_wavparse_loop):
26747 ADPCM support (#135862). Increase max. buffer size because we
26748 cannot split buffers for ADPCM (screws references) and I've seen
26749 files with 2048 byte chunks. 4096 seems safe for now.
26751 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26753 * configure.ac: bump nano to 1
26755 === release 0.8.1 ===
26757 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
26759 * configure.ac: releasing 0.8.1, "Comforting Sounds"
26761 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26763 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26764 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
26767 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26769 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
26770 lower rank of dvddemux so that it's not used for mpeg playback.
26772 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26775 save libs correctly when checking mad
26777 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
26779 * ext/mad/gstid3tag.c: (plugin_init):
26780 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
26782 2004-04-13 David Schleef <ds@schleef.org>
26784 * common/m4/gst-feature.m4: Call -config scripts with
26785 --plugin-libs if it is supported.
26786 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
26787 JPEG images are image/jpeg.
26788 * gst/debug/Makefile.am:
26789 * gst/debug/negotiation.c: (gst_negotiation_class_init),
26790 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
26791 (gst_negotiation_update_caps), (gst_negotiation_get_property),
26792 (gst_negotiation_plugin_init): Add a property that acts like
26794 * testsuite/gst-lint: Move license checking to be a standard
26797 2004-04-13 David Schleef <ds@schleef.org>
26799 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
26800 patch from Sebastien Cote (bug #139958)
26802 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26804 * examples/gstplay/Makefile.am:
26805 * examples/gstplay/player.c: (main):
26806 make the commandline player example use gconf settings
26808 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
26810 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
26811 (gst_cacasink_sinkconnect), (gst_cacasink_init),
26812 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
26813 init/end library during state transition, not object
26814 creation/disposal. get rid of custom dispose handler.
26817 2004-04-12 Christian Schaller <Uraeus@gnome.org>
26819 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
26822 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26824 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
26825 Handle JUNK chunks inside data section. Prevents warnings.
26827 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26829 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
26830 (gst_riff_create_video_template_caps):
26832 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
26833 (gst_avi_demux_stream_data):
26834 Add support for "rec-list" chunks.
26836 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26838 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
26839 Fix another codecname mismatch.
26841 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
26843 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
26844 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
26845 so that MJPEG plays back.
26847 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26849 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
26850 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
26851 * gst/mpeg1videoparse/gstmp1videoparse.h:
26852 Fix for some slight mis-cuts in buffer parsing, and for some
26853 potential overflows or faults-causers. Adds disconts. Also fixes
26854 #139105 while we're at it.
26856 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26859 * sys/v4l2/gstv4l2element.h:
26860 Workaround for missing struct v4l2_buffer declaration in Suse 9
26861 and Mandrake 10 linux/videodev2.h header file (#135919).
26863 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26865 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
26866 Bail out if no filename was given.
26868 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
26870 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
26871 (gst_v4l2_fourcc_from_structure):
26872 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
26875 2004-04-09 Benjamin Otte <otte@gnome.org>
26877 * ext/gnomevfs/gstgnomevfssink.c:
26878 (_gst_boolean_allow_overwrite_accumulator),
26879 (gst_gnomevfssink_class_init):
26880 fix erase signal - if any handler returns false the file will not be
26881 overwritten. If no handler is connected, the file will not be
26882 overwritten either.
26883 renamed signal to "allow-overwrite"
26884 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
26885 free string when adding it to ID3 failed
26886 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
26887 unref event when done
26888 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
26890 * gst/typefind/gsttypefindfunctions.c:
26891 (mpeg_video_stream_type_find):
26894 2004-04-08 David Schleef <ds@schleef.org>
26896 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
26897 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
26899 2004-04-08 David Schleef <ds@schleef.org>
26901 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
26902 we don't support (bug #139532)
26904 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
26906 * ext/mad/gstmad.c: (gst_mad_handle_event),
26907 (gst_mad_check_caps_reset), (gst_mad_chain),
26908 (gst_mad_change_state):
26909 only set explicit caps if they haven't been set before for
26910 this stream. MPEG-audio sample rate/channels aren't allowed
26911 to change in-stream.
26914 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
26916 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
26917 (_gst_boolean_did_something_accumulator),
26918 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
26919 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
26920 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
26921 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
26922 (gst_gnomevfssink_change_state):
26923 Fix erase signal. Don't erase by default. Remove handoff signal.
26924 Remove erase property. Don't segfault. General cleanup.
26926 2004-04-07 Benjamin Otte <otte@gnome.org>
26928 * gst-libs/gst/gconf/test-gconf.c: (main):
26929 add missing gst_init
26931 2004-04-07 Benjamin Otte <otte@gnome.org>
26933 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26934 free the mutexes, too
26936 2004-04-07 Benjamin Otte <otte@gnome.org>
26938 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
26939 actually free the URI string
26940 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
26941 compute offset correctly when passing discont events
26942 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
26943 don't leak discont events
26944 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26945 add some missing breaks so caps aren't copied randomly
26946 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
26947 if we realloc memory, we better use it
26949 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
26951 * ext/mad/gstmad.c: (normal_seek):
26952 fix GST_FORMAT_TIME usage
26954 2004-04-05 David Schleef <ds@schleef.org>
26956 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
26957 a deprecated function (hack!)
26959 2004-04-05 Benjamin Otte <otte@gnome.org>
26961 * ext/esd/esdmon.c: (gst_esdmon_get):
26962 fix nonterminated vararg and memleak
26964 2004-04-05 Benjamin Otte <otte@gnome.org>
26966 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
26967 (gst_ladspa_init), (gst_ladspa_force_src_caps),
26968 (gst_ladspa_set_property), (gst_ladspa_get_property),
26969 (gst_ladspa_instantiate), (gst_ladspa_activate),
26970 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
26973 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
26975 reviewed by Benjamin Otte <otte@gnome.org>
26977 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
26978 check for broken LADSPA parameters (fixes #138635)
26980 2004-04-05 Benjamin Otte <otte@gnome.org>
26982 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
26983 advertise buffer-frames correctly on sinkpads
26985 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26987 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
26988 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
26989 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
26990 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
26991 (gst_mad_check_caps_reset), (gst_mad_chain):
26992 add more debugging, only reset caps when we're not in error state
26994 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
26996 * ext/mad/gstmad.c: add debugging category, comment + cleanups
26998 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
27000 reviewed by Benjamin Otte <otte@gnome.org>
27003 fix == in test(1) operator
27005 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
27007 reviewed by Benjamin Otte <otte@gnome.org>
27010 fix --export-symblos-regex to a working regex.
27012 2004-04-04 Benjamin Otte <otte@gnome.org>
27014 * sys/oss/.cvsignore:
27017 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
27019 reviewed by Benjamin Otte <otte@gnome.org>
27021 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27022 add missing 'new_media' argument (fixes #138168)
27023 * gst/matroska/matroska-demux.c:
27024 (gst_matroska_demux_handle_seek_event):
27025 add vararg terminator (fixes #138169)
27027 2004-04-02 David Schleef <ds@schleef.org>
27029 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
27030 disted (bug #138914)
27032 2004-04-01 Benjamin Otte <otte@gnome.org>
27034 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
27035 (gst_alsa_close_audio):
27036 handle case better where a soundcard can't pause
27037 * ext/ogg/gstoggdemux.c:
27038 don't crash when we get events but don't have pads yet
27040 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27042 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
27043 throw an error if we couldn't probe any caps.
27045 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
27047 * ext/dvdnav/gst-dvd:
27048 Add a really simple sample DVD player
27050 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
27052 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
27053 (gst_a52dec_push), (gst_a52dec_handle_event),
27054 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
27055 (gst_a52dec_change_state):
27056 * ext/a52dec/gsta52dec.h:
27057 Use a debug category, Output timestamps correctly
27058 Emit tag info, Handle events, tell liba52dec about cpu
27059 capabilities so it can use MMX etc.
27060 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
27061 Fix a crasher accessing invalid memory
27062 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
27063 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
27064 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
27065 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
27067 Some support for byte-format seeking.
27068 Small fixes for still frames and menu button overlays
27069 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
27070 (gst_mpeg2dec_alloc_buffer):
27071 Use a debug category. Adjust the report level of several items to
27072 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
27073 so it doesn't lose the GstBuffer pointer
27074 * gst/debug/Makefile.am:
27075 * gst/debug/gstdebug.c: (plugin_init):
27076 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
27077 (gst_navseek_base_init), (gst_navseek_class_init),
27078 (gst_navseek_init), (gst_navseek_seek),
27079 (gst_navseek_handle_src_event), (gst_navseek_set_property),
27080 (gst_navseek_get_property), (gst_navseek_chain),
27081 (gst_navseek_plugin_init):
27082 * gst/debug/gstnavseek.h:
27083 Add the navseek debug element for seeking back and forth in a
27084 video stream using arrow keys.
27085 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
27086 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
27087 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
27088 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
27089 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
27090 (gst_mpeg2subt_parse_header), (gst_get_nibble),
27091 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
27092 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
27093 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
27094 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
27095 * gst/mpeg2sub/gstmpeg2subt.h:
27096 Pretty much a complete rewrite. Now a loopbased element. May still
27097 require work to properly synchronise subtitle buffers.
27098 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
27099 (gst_dvd_demux_send_subbuffer):
27100 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
27101 Don't attempt to create subbuffers of size 0
27102 Reduce a couple of error outputs to warnings.
27103 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
27104 (gst_y4mencode_chain):
27105 Output the y4m frame header correctly.
27107 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27109 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27110 throw errors instead of allowing SIGFPE
27112 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
27114 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
27115 (gst_gconf_render_bin_from_key):
27116 leak plugging and style fixing
27118 2004-03-31 David Schleef <ds@schleef.org>
27120 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
27121 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
27123 * gst/debug/Makefile.am:
27124 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
27125 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
27127 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
27128 (gst_negotiation_base_init), (gst_negotiation_class_init),
27129 (gst_negotiation_init), (gst_negotiation_getcaps),
27130 (gst_negotiation_pad_link), (gst_negotiation_chain),
27131 (gst_negotiation_set_property), (gst_negotiation_get_property),
27132 (gst_negotiation_plugin_init): New element to talk about random
27133 negotiation things happening in a pipeline.
27135 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27137 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
27138 fix integer addition with help of Stefan Kost
27140 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
27142 * po/nl.po: updated Dutch translation (Elros Cyriatan)
27144 2004-03-30 David Schleef <ds@schleef.org>
27146 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
27147 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
27148 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
27150 * ext/mpeg2dec/gstmpeg2dec.h:
27152 2004-03-30 David Schleef <ds@schleef.org>
27154 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
27156 2004-03-30 David Schleef <ds@schleef.org>
27158 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
27159 Michael Petullo) to handle .mov
27161 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27163 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
27164 (gst_osselement_rate_check_rate):
27165 probe caps correctly for sound cards that only support one format
27167 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27169 * ext/kio/kiosrc.cpp: (process_events):
27170 update handling event processing if inside KDE - untested
27172 2004-03-29 David Schleef <ds@schleef.org>
27174 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
27175 by 2 to not interfere with other colorspaces.
27176 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
27177 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
27178 one to not interfere with ffmpeg_colorspace.
27180 2004-03-29 David Schleef <ds@schleef.org>
27182 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
27183 aren't in the caps.
27184 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
27185 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
27187 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27189 * gst-libs/gst/riff/riff-media.c:
27190 fail on error, don't try to set stuff on NULL caps
27192 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
27196 * ext/kio/Makefile.am:
27197 * ext/kio/kioreceiver.cpp:
27198 * ext/kio/kioreceiver.h:
27199 * ext/kio/kiosrc.cpp:
27200 * ext/kio/kiosrc.h:
27201 add experimental kiosrc plugin
27202 * ext/alsa/gstalsaplugin.c: (plugin_init):
27203 initialize debugging category only when we're sure registering the
27206 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27208 * examples/gstplay/player.c: (main):
27209 * gst-libs/gst/play/play.c: (gst_play_class_init),
27210 (gst_play_set_location), (gst_play_set_data_src),
27211 (gst_play_set_video_sink), (gst_play_set_audio_sink),
27212 (gst_play_set_visualization), (gst_play_connect_visualization):
27213 check return values of element_set_state and return FALSE where
27216 2004-03-29 Benjamin Otte <otte@gnome.org>
27218 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
27219 try harder to check if an event is really a discont
27221 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
27223 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
27226 2004-03-28 Benjamin Otte <otte@gnome.org>
27228 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
27229 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27230 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27231 get rid of non-standard "..." ranges in case statements.
27233 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
27235 * gst/mpegstream/gstmpegdemux.c:
27236 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
27237 specific functionality split to the new dvddemux element.
27238 * gst/mpegstream/gstdvddemux.c:
27239 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
27240 streams, derived from mpegdemux.
27241 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
27242 up. SCR based timestamp rewriting can be turned off (will probably
27243 completely disappear soon).
27244 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
27245 hacking. General cleanup. All printf statements replaced by
27246 debugging messages. Almost complete libdvdnav support.
27247 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
27248 by events. New properties for audio and subpicture languages.
27249 (dvdnavsrc_update_highlight): Now uses events.
27250 (dvdnavsrc_user_op): Cleaned up.
27251 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
27252 based). Lots of cleanup, and propper support for most libdvdnav
27254 (dvdnavsrc_make_dvd_event): New function.
27255 (dvdnavsrc_make_dvd_nav_packet_event): New function.
27256 (dvdnavsrc_make_clut_change_event): New function.
27258 2004-03-26 Benjamin Otte <otte@gnome.org>
27260 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
27261 fix bug where typefinding would claim it's theora whenever less then
27262 7 bytes of data were available
27264 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
27266 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
27267 (gst_alawdec_base_init), (gst_alawdec_class_init),
27268 (gst_alawdec_init), (gst_alawdec_chain):
27269 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
27270 (gst_alawenc_base_init), (gst_alawenc_class_init),
27271 (gst_alawenc_init), (gst_alawenc_chain):
27272 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
27273 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
27274 (gst_mulawdec_init), (gst_mulawdec_chain):
27275 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
27276 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
27277 (gst_mulawenc_init), (gst_mulawenc_chain):
27278 Fix capsnego in all four, remove the unused property functions and
27279 simplify the chain functions slightly. I guess we could use macros
27280 or something similar for those, since the code is so similar, but
27281 I'm currently too lazy...
27283 2004-03-24 David Schleef <ds@schleef.org>
27285 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
27286 (gst_osselement_close_audio), (gst_osselement_probe_caps),
27287 (gst_osselement_get_format_structure),
27288 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
27289 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
27290 (gst_osselement_rate_int_compare): Add code to handle rate probing
27292 * sys/oss/gstosselement.h: same
27293 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
27294 Use rate probing provided by osselement.
27295 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
27297 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
27299 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
27300 (gst_xvidenc_get_property):
27303 2004-03-24 David Schleef <ds@schleef.org>
27305 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
27306 (gst_speexdec_init):
27307 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
27308 (gst_speexenc_init): Create the pad template correctly (from
27309 the static pad template, not a NULL pointer.)
27311 2004-03-25 Benjamin Otte <otte@gnome.org>
27313 * gst/debug/Makefile.am:
27314 * gst/debug/breakmydata.c:
27315 add element that quasi-randomly changes bytes in the stream.
27316 Intended use is robustness checking of demuxers and decoders in
27319 2004-03-24 Benjamin Otte <otte@gnome.org>
27321 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
27322 (gst_alsa_probe_hw_params):
27323 * ext/alsa/gstalsa.h:
27324 debugging output fixes
27326 2004-03-24 Benjamin Otte <otte@gnome.org>
27328 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
27329 don't g_return_if_fail if element is PLAYING, fail silently as every
27331 * gst/effectv/gstquark.c: (gst_quarktv_chain):
27332 only fix needed for cast lvalue issues in gst-plugins
27333 * gst/volenv/gstvolenv.c: (gst_volenv_init):
27336 2004-03-24 Benjamin Otte <otte@gnome.org>
27338 * gst/level/gstlevel.c: (gst_level_init):
27339 add proxying getcaps function, so level doesn't advertise impossible
27342 2004-03-24 David Schleef <ds@schleef.org>
27344 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
27345 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
27346 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
27347 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
27348 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
27349 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
27350 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
27351 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
27352 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
27353 messages. Divide the chunk size by the compression ratio
27354 (needed for MACE audio)
27356 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27358 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
27359 Fix buffer overflow read error.
27361 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27363 * ext/alsa/gstalsa.h:
27364 Remove unused entry.
27365 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
27367 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27368 (gst_videodrop_link), (gst_videodrop_chain):
27369 Fix, sort of. Was horribly broken with new capsnego. Bah...
27371 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
27373 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
27375 Add a monkeysaudio typefind function
27377 2004-03-23 Johan Dahlin <johan@gnome.org>
27379 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
27380 (gst_play_video_fixate): Check so the structure has the field
27381 before trying to fixate them, this makes it possible to have
27382 fakesinks for video and audio output without printing errors on
27383 the output console.
27385 2004-03-22 David Schleef <ds@schleef.org>
27387 * sys/oss/Makefile.am:
27388 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
27389 (check_rate), (add_rate): Rate probing test app.
27391 2004-03-21 Benjamin Otte <otte@gnome.org>
27393 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
27394 (_fixate_caps_to_int), (gst_audio_convert_fixate):
27395 add a fixation function that pretty much does the right thing (fixes
27398 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
27400 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
27402 2004-03-20 Tim-Phillip Müller <t.i.m@zen.co.uk>
27404 reviewed by: Benjamin Otte <otte@gnome.org>
27406 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27407 terminate gst_event_new_discontinuous correctly (fixes parts of
27410 2004-03-19 David Schleef <ds@schleef.org>
27412 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
27413 since it doesn't depend on X, and it's part of our ABI.
27415 2004-03-19 Iain <iain@prettypeople.org>
27417 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
27418 is_int in the structure, not the local variable.
27420 2004-03-19 David Schleef <ds@schleef.org>
27422 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
27423 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
27424 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
27425 Improvements in caps negotiation.
27427 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27431 adding Afrikaans (Petri Jooste)
27433 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27435 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27436 (gst_ffmpegcolorspace_chain):
27437 throw error instead of g_critical (#137588)
27439 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
27443 dist common and m4 correctly
27446 2004-03-17 David Schleef <ds@schleef.org>
27448 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
27451 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27455 adding Swedish translation (Christian Rose)
27457 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
27459 * Makefile.am: use release.mak
27461 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27463 * common/ChangeLog:
27464 * common/gst-autogen.sh:
27465 add some explanation about the version detection
27469 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27471 * configure.ac: bump nano to 1
27473 === release 0.8.0 ===
27475 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27477 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
27479 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
27482 update libtool version
27483 * gst-libs/gst/media-info/Makefile.am:
27484 actually use libtool version
27486 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27488 * configure.ac: fix speex detection to work with 1.0 but not 1.1
27490 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27493 * gst-plugins.spec.in:
27494 * pkgconfig/Makefile.am:
27495 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
27496 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
27497 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
27498 * pkgconfig/gstreamer-libs.pc.in:
27499 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27500 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27501 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
27502 * pkgconfig/gstreamer-plugins.pc.in:
27503 remove @VERSION@ from some of the pc files since core and plugins
27505 created gstreamer-plugins.pc as it's a better name, but keeping
27506 -libs around for now to get fixes upstream done first.
27508 2004-03-15 Julien MOUTTE <julien@moutte.net>
27510 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
27511 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
27512 * gst-libs/gst/play/play.h:
27514 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27516 * *.c, *.cc: don't mix tabs and spaces
27518 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27520 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
27521 use the new ffmpegcolorspace
27522 * gst-plugins.spec.in:
27523 package new colorspace and media-info
27525 * pkgconfig/Makefile.am:
27526 fix some more disting issues
27527 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
27528 * pkgconfig/gstreamer-media-info.pc.in:
27529 generate media-info pc files
27531 2004-03-15 Johan Dahlin <johan@gnome.org>
27533 * *.h: Revert indenting
27535 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27538 adding ffmpegcolorspace element
27539 * gst/ffmpegcolorspace/Makefile.am:
27540 * gst/ffmpegcolorspace/avcodec.h:
27541 * gst/ffmpegcolorspace/common.h:
27542 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
27543 * gst/ffmpegcolorspace/dsputil.h:
27544 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
27545 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
27546 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
27547 (gst_ffmpeg_caps_to_pix_fmt):
27548 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
27549 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
27550 (gst_ffmpegcolorspace_caps_remove_format_info),
27551 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
27552 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
27553 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
27554 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
27555 (gst_ffmpegcolorspace_set_property),
27556 (gst_ffmpegcolorspace_get_property),
27557 (gst_ffmpegcolorspace_register):
27558 * gst/ffmpegcolorspace/imgconvert.c:
27559 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
27560 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
27561 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
27562 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
27563 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
27564 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
27565 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
27566 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
27567 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
27568 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
27569 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
27570 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
27571 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
27572 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
27573 (img_get_alpha_info), (deinterlace_line),
27574 (deinterlace_line_inplace), (deinterlace_bottom_field),
27575 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
27576 * gst/ffmpegcolorspace/imgconvert_template.h:
27577 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
27578 * gst/ffmpegcolorspace/mmx.h:
27579 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
27580 adding ffmpegcolorspace element supplied by Ronald after cleaning
27581 up and pulling in the right bits of upstream source.
27582 I'm sure a better C/compiler wizard could do some cleaning up (for
27583 example use GLIB's malloc stuff), but as a first pass this
27586 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
27588 * ext/alsa/gstalsa.h:
27589 I assume Ronald forgot to commit the change to have cardname
27590 as a struct member. Expect some public spanking at the next
27593 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
27595 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
27596 (gst_alsa_open_audio), (gst_alsa_close_audio):
27597 * ext/alsa/gstalsa.c:
27598 Don't open the device if we're a mixer (= padless).
27599 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
27600 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
27601 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
27602 Open mixer during state change rather than during object
27603 initialization. Also, get a device name. Currently in a somewhat
27604 hackish fashion, but I didn't really find something better.
27606 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
27608 * *.c, *.h: run gst-indent
27610 2004-03-14 Benjamin Otte <otte@gnome.org>
27612 * gst/modplug/gstmodplug.cc:
27613 * gst/modplug/gstmodplug.h:
27614 set correct timestamps on outgoing buffers
27616 2004-03-14 Benjamin Otte <otte@gnome.org>
27618 * gst/modplug/gstmodplug.cc:
27619 handle events - don't do crap when a discont arrives that's not
27621 This allows correct loading and playback of mods in Rhythmbox
27623 2004-03-14 Benjamin Otte <otte@gnome.org>
27626 * gst-libs/gst/gconf/Makefile.am:
27627 * pkgconfig/Makefile.am:
27628 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
27629 they get rebuilt properly
27631 when checking for vorbis, try pkgconfig first.
27632 * gst/modplug/gstmodplug.cc:
27633 add fixate function
27635 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
27637 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
27638 Fix for obvious mistake, where we first shift the offset and then
27639 read a samplesize element assuming the old offset. Note that this
27640 part still has something weird, i.e. my movies containing those
27641 don't actually play well, but at least there's something that looks
27644 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
27645 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
27647 Add a typefind function for speex format
27649 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27651 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
27652 (gst_asf_demux_setup_pad):
27653 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
27654 instead of 0. Reason is simple: some elements have a fps range
27655 of 1-max instead of 0-max. So now ASF video actually works.
27657 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
27661 adding serbian as a language
27663 2004-03-13 Benjamin Otte <otte@gnome.org>
27665 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
27666 return taglist correctly from _get function, don't gst_pad_push it.
27669 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27670 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27672 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27674 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
27675 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
27676 (gst_alsa_mixer_track_new):
27677 * ext/alsa/gstalsamixertrack.h:
27678 Fix ancient leftovers... MixerTrack is a GObject.
27680 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
27682 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
27683 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
27684 Don't block during probing...
27686 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
27688 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
27689 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
27690 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
27691 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
27692 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
27693 (gst_alsa_open_audio), (gst_alsa_close_audio):
27694 * ext/alsa/gstalsa.h:
27695 Add propertyprobe interface implementation, add some device-name
27696 property, all this so that it looks good in gnome-volume-control.
27698 2004-03-12 David Schleef <ds@schleef.org>
27700 * configure.ac: the Hermes library controls hermescolorspace, not
27702 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27703 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
27705 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
27706 * ext/sdl/sdlvideosink.h: ditto.
27707 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
27709 2004-03-12 Benjamin Otte <otte@gnome.org>
27711 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
27712 (gst_x_overlay_got_xwindow_id):
27713 * gst-libs/gst/xoverlay/xoverlay.h:
27714 replace XID with unsigned long to get rid of the xlibs dependency in
27715 XOverlay (fixes #137004)
27717 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
27718 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
27719 (gst_agingtv_setup):
27720 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
27721 (gst_dicetv_base_init), (gst_dicetv_class_init),
27722 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
27723 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
27724 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
27725 (gst_edgetv_setup), (gst_edgetv_rgb32):
27726 * gst/effectv/gsteffectv.c:
27727 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
27728 (gst_quarktv_set_property):
27729 * gst/effectv/gstrev.c: (gst_revtv_get_type),
27730 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
27731 (gst_revtv_setup), (gst_revtv_rgb32):
27732 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
27733 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
27734 (gst_shagadelictv_init), (gst_shagadelictv_setup),
27735 (gst_shagadelictv_rgb32):
27736 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
27737 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
27738 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
27739 * gst/effectv/gstwarp.c:
27740 Port everything that can be ported to videofilter and fix up the caps.
27741 Can someone with a big-endian machine please check these?
27743 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27745 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
27746 (gst_osssink_chain), (gst_osssink_change_state):
27747 Latest fixes for A/V sync, audio playback and such. This is about
27748 all... MPEG playback issues are mostly related to the async build-
27749 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
27751 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27753 patch from: Stephane Loeuillet
27756 use pkg-config for some libraries, falling back to the old .m4 way
27761 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
27764 * tools/Makefile.am:
27765 * tools/Makefile.in:
27766 * tools/gst-launch-ext-m.m:
27767 * tools/gst-launch-ext.1.in:
27768 * tools/gst-visualise-m.m:
27769 * tools/gst-visualise.1:
27770 * tools/gst-visualise.1.in:
27771 reorganizing generation of script tools
27773 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
27775 * ext/divx/gstdivxdec.c:
27776 Downgrade priority. We prefer ffdec_mpeg4.
27777 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
27778 (gst_faad_chain), (gst_faad_change_state):
27779 Fix capsnego. Doesn't work for some sounds because we don't have
27780 a 5:1 to stereo element.
27781 * ext/xvid/gstxvid.c: (plugin_init):
27783 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
27784 (gst_osssink_change_state):
27785 Add discont handling.
27787 2004-03-09 Colin Walters <walters@verbum.org>
27789 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
27792 2004-03-09 Benjamin Otte <otte@gnome.org>
27794 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
27795 the signals take 2 arguments
27797 2004-03-09 David Schleef <ds@schleef.org>
27799 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
27800 (gst_alsa_fixate): Add fixate function. (bug #136686)
27801 * ext/alsa/gstalsa.h:
27802 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
27804 2004-03-09 Benjamin Otte <otte@gnome.org>
27806 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
27807 (gst_mikmod_change_state):
27808 * ext/mikmod/gstmikmod.h:
27809 make mikmod's loop function not loop infinitely and call
27810 gst_element_yield anymore
27811 * gst/modplug/gstmodplug.cc:
27812 fix pad negotiation (fixes #136590)
27814 2004-03-09 David Schleef <ds@schleef.org>
27816 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
27817 doesn't conflict with the internal colorspace plugin.
27818 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
27819 satisfy the crappy-ass shell shipped by a certain vendor.
27820 * gst/videofilter/make_filter: same (bug #135299)
27822 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27824 * configure.ac: bump nano to 1
27826 === release 0.7.6 ===
27828 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27830 * configure.in: releasing 0.7.6, "There"
27832 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27834 * pkgconfig/gstreamer-play-uninstalled.pc.in:
27835 * pkgconfig/gstreamer-play.pc.in:
27836 synchronize the two
27838 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27840 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
27841 (cdparanoia_open), (cdparanoia_event):
27842 fix/add error handling
27844 add cdparanoia source
27845 * tools/Makefile.am:
27846 make scripts executable
27848 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
27851 * ext/vorbis/Makefile.am:
27853 remove id3types, vorbisfile and xvideosink from the build (#133783)
27855 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27857 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
27858 Fix metadata read crash (#136537).
27860 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27862 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
27863 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
27864 adding mime types, fixing the one-stop function
27866 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27868 * ext/nas/nassink.c and /ext/nas/nassink.h:
27869 More NAS love from Arwed von Merkatz
27870 So lets all sing 'Can you feel the NAS tonight'
27872 2004-03-08 Christian Schaller <Uraeus@gnome.org>
27874 * tools/gst-launch-ext.in:
27875 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
27877 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27879 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
27880 (gst_mpeg2dec_init):
27881 remove the user_data pad for now, because it is being used in
27882 fixating causing MPEG playback to fixate on 1000 Hz for playback.
27883 If someone knows how to fix this properly, please do.
27885 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
27887 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27888 (gst_osssink_get_time):
27889 add a warning, IMO this won't get triggered anymore, remove later
27891 2004-03-07 David Schleef <ds@schleef.org>
27893 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
27894 format (bug #136470)
27896 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
27898 * gst-libs/Makefile.am:
27899 * gst-libs/gst/media-info/Makefile.am:
27900 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
27901 (error_callback), (gst_media_info_error_create),
27902 (gst_media_info_error_element), (gmip_init), (gmip_reset),
27903 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
27904 * gst-libs/gst/media-info/media-info-priv.h:
27905 * gst-libs/gst/media-info/media-info-test.c: (main):
27906 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
27907 (gst_media_info_class_init), (gst_media_info_instance_init),
27908 (gst_media_info_set_source), (gst_media_info_read_with_idler),
27909 (gst_media_info_read_idler), (gst_media_info_read):
27910 * gst-libs/gst/media-info/media-info.h:
27911 fixed, should work now
27913 2004-03-07 Christian Schaller <Uraeus@gnome.org>
27915 * ext/nas/nassink.c:
27916 A bunch of NAS fixes from Arwed von Merkatz
27918 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27920 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
27921 (qtdemux_parse_trak):
27922 Fix crash (j might be greater than n_samples, in which case we're
27923 writing outside the allocated space for the array) and memleak.
27925 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27927 * sys/oss/gstosssink.c: (gst_osssink_chain):
27928 And another caller that couldn't handle delay < 0 (unsigned
27929 integer overflow). Video now continues playing on an audio
27930 buffer underrun, and the clock continues working. Audio still
27933 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27935 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
27936 (gst_osssink_get_time):
27937 get_delay() may return values lower than 0. In those cases, we
27938 should not actually cast to *unsigned* int64, that will break
27939 stuff horribly. In my case, it screwed up A/V sync in movies
27940 in totem rather badly.
27942 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27944 * ext/faac/gstfaac.c: (gst_faac_chain):
27945 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
27946 * ext/libpng/gstpngenc.c: (user_write_data):
27947 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
27948 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
27949 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
27950 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
27951 Fix several misuse of gst_buffer_merge (it doesn't take ownership
27952 of any buffer), should fix some leaks. I hope I didn't unref buffers
27953 that shouldn't be...
27955 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27957 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
27958 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
27959 (error_callback), (gmi_reset), (gmi_seek_to_track),
27960 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
27961 (gmip_find_type_post), (gmip_find_stream_post),
27962 (gmip_find_track_streaminfo_post):
27963 * gst-libs/gst/media-info/media-info-priv.h:
27964 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
27965 (info_print), (main):
27966 * gst-libs/gst/media-info/media-info.c:
27967 (gst_media_info_error_create), (gst_media_info_error_element),
27968 (gst_media_info_instance_init), (gst_media_info_get_property),
27969 (gst_media_info_new), (gst_media_info_set_source),
27970 (gst_media_info_read_idler), (gst_media_info_read):
27971 * gst-libs/gst/media-info/media-info.h:
27972 first pass at making this work again. This seems to work on
27973 tagged ogg/vorbis and mp3 files.
27975 2004-03-06 Benjamin Otte <otte@gnome.org>
27977 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
27978 fix huge leak: gst_buffer_merge doesn't unref the first argument
27981 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27983 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
27984 report layer/mode/emphasis
27986 2004-03-06 Christophe Fergeau <teuf@gnome.org>
27988 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
27990 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27992 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
27995 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
27997 * ext/vorbis/vorbis.c: (plugin_init):
27998 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
27999 (gst_vorbis_dec_init), (vorbis_dec_event):
28001 make vorbisdec handle _BYTE and _TIME queries
28003 2004-03-06 Christophe Fergeau <teuf@gnome.org>
28005 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
28006 from the xing header
28008 2004-03-06 Benjamin Otte <otte@gnome.org>
28010 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
28011 (gst_audio_convert_link), (gst_audio_convert_change_state),
28012 (gst_audio_convert_buffer_from_default_format):
28013 do conversions from/to float correctly, fix some caps nego errors,
28014 export correct supported caps in template and getcaps, use correct
28015 caps in try_set_caps functions
28017 2004-03-06 Christophe Fergeau <teuf@gnome.org>
28019 For some reason, I only committed a ChangeLog entry yesterday and
28020 not the corresponding code...
28021 * ext/mad/gstmad.c: Fix detection of Xing headers
28022 * gst/tags/gstid3tag.c: Changes to support TLEN tags
28024 2004-03-06 Benjamin Otte <otte@gnome.org>
28026 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
28027 (gst_ogg_demux_src_query):
28028 make sure to handle the case where there's no current chain
28031 2004-03-05 David Schleef <ds@schleef.org>
28033 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
28034 Add fixate function. (bug #131128)
28035 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
28036 (gst_sdlvideosink_fixate): Add fixate function.
28037 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
28038 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
28039 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
28040 Fix missing break that was causing ulaw to be interpreted as
28043 2004-03-05 David Schleef <ds@schleef.org>
28045 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
28046 Fix code that ignores return value of gst_buffer_merge().
28048 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
28049 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
28050 * testsuite/gst-lint: Check for above.
28052 2004-03-05 David Schleef <ds@schleef.org>
28054 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
28055 caps and throw an element error. (bug #136334)
28057 2004-03-05 David Schleef <ds@schleef.org>
28059 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
28060 (gst_faad_chain): Fix negotiation.
28061 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
28062 key and button events.
28063 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
28065 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
28067 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
28068 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
28069 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
28070 function to encourage better negotiation, particularly between
28071 audioconvert and osssink.
28072 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28073 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
28075 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
28077 * gst/vbidec/vbiscreen.c: Add glib header
28078 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
28080 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
28082 * ext/mad/gstmad.c: Fix detection of Xing headers
28083 * gst/tags/gstid3tag.c: Changes to support TLEN tags
28085 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
28087 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
28088 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
28091 2004-03-06 Christophe Fergeau <teuf@gnome.org>
28093 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28094 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
28095 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
28096 files, and report the parsed length as a GST_TAG_DURATION tag.
28097 * gst/tags/gstid3tag.c: support TLEN (duration) tag
28099 2004-03-05 Benjamin Otte <otte@gnome.org>
28101 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
28102 convert channels correctly. convert correctly to unsigned.
28104 2004-03-05 Julien MOUTTE <julien@moutte.net>
28106 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
28107 we have a window before clearing it.
28109 2004-03-05 Julien MOUTTE <julien@moutte.net>
28111 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
28112 have a window before clearing it.
28114 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
28116 * gconf/gstreamer.schemas.in:
28117 * gst-libs/gst/gconf/Makefile.am:
28118 version installation path the same way as for 0.6
28119 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
28120 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28121 * pkgconfig/gstreamer-play-uninstalled.pc.in:
28122 remove comment that was fixed
28124 2004-03-05 David Schleef <ds@schleef.org>
28126 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
28127 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
28128 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
28129 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
28130 Add prototype code for handling seeking and querying.
28132 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
28134 * examples/gstplay/player.c: (main):
28135 Initialize variables to NULL. Prevents a segfault because the
28136 (uninitialized) variable is not NULL, resulting in a crash on
28137 trying to reach error->message.
28139 2004-03-05 Benjamin Otte <otte@gnome.org>
28141 * gst/audioconvert/gstaudioconvert.c:
28142 (gst_audio_convert_buffer_to_default_format):
28143 make float=>int conversion work correctly even in cornercases.
28145 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
28147 * debian/README.Debian:
28148 * debian/build-deps:
28149 * debian/changelog:
28151 * debian/control.in:
28152 * debian/copyright:
28153 * debian/gstreamer-a52dec.files:
28154 * debian/gstreamer-aa.files:
28155 * debian/gstreamer-alsa.files:
28156 * debian/gstreamer-alsa.manpages:
28157 * debian/gstreamer-arts.files:
28158 * debian/gstreamer-artsd.files:
28159 * debian/gstreamer-audiofile.files:
28160 * debian/gstreamer-avifile.files:
28161 * debian/gstreamer-cdparanoia.files:
28162 * debian/gstreamer-colorspace.files:
28163 * debian/gstreamer-doc.files:
28164 * debian/gstreamer-dv.files:
28165 * debian/gstreamer-dvd.files:
28166 * debian/gstreamer-esd.files:
28167 * debian/gstreamer-festival.files:
28168 * debian/gstreamer-flac.files:
28169 * debian/gstreamer-gconf.conffiles:
28170 * debian/gstreamer-gconf.files:
28171 * debian/gstreamer-gconf.postinst:
28172 * debian/gstreamer-gnomevfs.files:
28173 * debian/gstreamer-gsm.files:
28174 * debian/gstreamer-http.files:
28175 * debian/gstreamer-jack.files:
28176 * debian/gstreamer-jpeg.files:
28177 * debian/gstreamer-mad.files:
28178 * debian/gstreamer-mikmod.files:
28179 * debian/gstreamer-misc.files:
28180 * debian/gstreamer-mpeg2dec.files:
28181 * debian/gstreamer-oss.files:
28182 * debian/gstreamer-plugin-apps.files:
28183 * debian/gstreamer-plugin-apps.manpages:
28184 * debian/gstreamer-plugin-libs-dev.files:
28185 * debian/gstreamer-plugin-libs.files:
28186 * debian/gstreamer-plugin-template.postinst:
28187 * debian/gstreamer-plugin-template.postrm:
28188 * debian/gstreamer-sdl.files:
28189 * debian/gstreamer-sid.files:
28190 * debian/gstreamer-vorbis.files:
28191 * debian/gstreamer-x.files:
28192 * debian/mk.control:
28194 Debian package info not maintained here.
28196 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
28198 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
28199 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
28200 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
28201 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
28202 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
28203 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
28204 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
28205 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
28206 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
28207 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
28208 * gst-libs/gst/colorbalance/colorbalance.c:
28209 (gst_color_balance_class_init):
28210 * gst-libs/gst/colorbalance/colorbalancechannel.c:
28211 (gst_color_balance_channel_class_init):
28212 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
28213 * gst-libs/gst/play/play.c: (gst_play_class_init):
28214 * gst-libs/gst/propertyprobe/propertyprobe.c:
28215 (gst_property_probe_iface_init):
28216 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
28217 * gst-libs/gst/tuner/tunerchannel.c:
28218 (gst_tuner_channel_class_init):
28219 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
28220 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
28221 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
28222 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
28223 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
28224 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
28225 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
28226 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
28227 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
28228 fix signals to use - instead of _
28229 * ext/libcaca/gstcacasink.h:
28230 * ext/sdl/sdlvideosink.h:
28233 2004-03-04 David Schleef <ds@schleef.org>
28235 * testsuite/gst-lint: Add a check for bad signal names.
28237 2004-03-04 Stefan Kost <kost@imn.htwk-leipzig.de>
28239 reviewed by David Schleef
28241 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
28242 modified the alpha channel and caused a warning. (bug #136192)
28244 2004-04-03 Christian Schaller <Uraeus@gnome.org>
28246 * gst-plugins.spec.in:
28247 Change names of plugins to actually be correct. Try to keep things
28248 alphabetical to avoid getting beat up by Thomas
28250 2004-03-03 Julien MOUTTE <julien@moutte.net>
28252 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
28253 Using ximagesink as a default if no gconf key found. We should
28254 probably consider using alsasink instead of osssink for the audio
28257 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28260 fix --with-plugins, don't think it ever worked before
28261 * gst-plugins.spec.in:
28264 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
28266 * ext/sdl/sdlvideosink.h:
28267 * sys/ximage/ximagesink.h:
28268 * sys/xvideo/xvideosink.h:
28269 * sys/xvimage/xvimagesink.h:
28270 Fix for move of gstvideosink.h -> videosink.h.
28272 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
28274 * gst-libs/gst/xwindowlistener/Makefile.am:
28275 this is a plugin library, not a library
28277 2004-03-01 David Schleef <ds@schleef.org>
28279 * AUTHORS: Added some names. Add yourself if you're still
28282 2004-03-01 David Schleef <ds@schleef.org>
28286 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28288 * gst-plugins.spec.in: clean up spec file
28290 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28292 * gst-libs/gst/video/Makefile.am:
28293 * gst-libs/gst/video/gstvideosink.c:
28294 * gst-libs/gst/video/gstvideosink.h:
28295 rename gstvideosink.h to videosink.h to match other headers
28296 * gst/mixmatrix/Makefile.am:
28297 fix plugin filename
28298 * gst/tags/Makefile.am: fix plugin filename
28300 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28302 * gst/tags/Makefile.am: fix plugin filename
28304 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
28306 * examples/gstplay/player.c: (got_time_tick), (main):
28308 display time_tick more readably
28309 * gst/mixmatrix/Makefile.am:
28310 fix plugin file name
28312 2004-02-29 Christophe Fergeau <teuf@gnome.org>
28314 * sys/oss/gstosselement.c: (gst_osselement_probe),
28315 (device_combination_append), (gst_osselement_class_probe_devices):
28316 * sys/oss/gstosselement.h:
28317 Reworked enumeration of oss dsps and mixers so that gst-mixer works
28318 on my system using alsa oss emulation, fixes bug #135597
28320 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
28322 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
28323 (gst_videodrop_chain), (gst_videodrop_change_state):
28324 * gst/videodrop/gstvideodrop.h:
28325 Work based on timestamp of input data, not based on the expected
28326 framerate from the input. The consequence is that this element now
28327 not only scales framerates, but also functions as a framerate
28328 corrector or framerate stabilizer/constantizer.
28330 2004-02-27 David Schleef <ds@schleef.org>
28332 patches from jmmv@menta.net (Julio M. Merino Vidal)
28334 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
28335 GST_ELEMENT_ERROR call (bug #135634)
28336 * gst/interleave/interleave.c: (interleave_buffered_loop),
28337 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
28338 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
28339 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
28340 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
28341 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
28342 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
28343 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
28344 Fix GST_ELEMENT_ERROR call.
28345 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
28346 GST_ELEMENT_ERROR call.
28348 2004-02-27 Benjamin Otte <otte@gnome.org>
28350 * gst-libs/gst/audio/audio.h:
28351 add macro to make sure header isn't included twice
28352 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
28353 don't use gst_buffer_free
28354 * gst/playondemand/filter.func:
28355 don't use gst_data_free. Free data only once.
28357 2004-02-26 David Schleef <ds@schleef.org>
28359 * gst-libs/gst/colorbalance/Makefile.am:
28360 * gst-libs/gst/mixer/Makefile.am:
28361 * gst-libs/gst/tuner/Makefile.am:
28362 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
28363 should not be disted, -marshal.h files should not be installed,
28364 and -enum.h files _should_ be installed. Fix to make this the
28367 === release 0.7.5 ===
28369 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
28371 * configure.ac: release 0.7.5, "Under The Sea"
28373 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28375 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
28376 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
28377 * gst/videoscale/gstvideoscale.c:
28378 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
28379 assorted debug/warning fixes
28381 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28383 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
28384 (gst_videoscale_init), (gst_videoscale_chain),
28385 (gst_videoscale_set_property), (plugin_init):
28386 * gst/videoscale/gstvideoscale.h:
28387 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
28388 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
28389 (gst_videoscale_planar400), (gst_videoscale_packed422),
28390 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
28391 (gst_videoscale_24bit), (gst_videoscale_16bit),
28392 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
28393 (gst_videoscale_scale_plane_slow),
28394 (gst_videoscale_scale_point_sample),
28395 (gst_videoscale_scale_nearest),
28396 (gst_videoscale_scale_nearest_str2),
28397 (gst_videoscale_scale_nearest_str4),
28398 (gst_videoscale_scale_nearest_32bit),
28399 (gst_videoscale_scale_nearest_24bit),
28400 (gst_videoscale_scale_nearest_16bit):
28401 add debugging category and use it properly
28402 fix use of GST_PTR_FORMAT
28404 2004-02-25 Andy Wingo <wingo@pobox.com>
28406 * gst/interleave/interleave.c (interleave_buffered_loop): Always
28407 push only when channel->buffer is NULL. Prevents segfaults doing
28408 the state change after a nonlocal exit, like a scheme exception.
28410 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
28411 Handle the case where the intersected caps is empty.
28413 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
28415 * gst/law/mulaw-decode.c: (mulawdec_link):
28416 * gst/law/mulaw.c: (plugin_init):
28417 fix mulawdec so it actually works again
28419 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
28421 reviewed by: David Schleef <ds@schleef.org>
28423 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
28424 (gst_gamma_init), (gst_gamma_set_property),
28425 (gst_gamma_get_property), (gst_gamma_calculate_tables),
28426 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
28427 for RGB, with separate r g and b correction factors. (#131167)
28429 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
28431 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
28432 only signal tags for bitrate if they're > 0 (#134894)
28434 2004-02-24 David Schleef <ds@schleef.org>
28436 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
28437 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
28438 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
28439 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
28440 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
28441 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
28442 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
28443 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
28444 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
28445 category. Attempt to fix timestamp calculation.
28447 2004-02-24 Johan Dahlin <johan@gnome.org>
28449 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
28451 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
28454 * gconf/Makefile.am:
28455 * gconf/gstreamer.schemas:
28456 * gst-libs/gst/gconf/Makefile.am:
28457 * gst-libs/gst/gconf/gconf.c:
28458 version gconf schemas and install locations
28460 2004-02-23 Benjamin Otte <otte@gnome.org>
28462 * ext/xine/xineinput.c: (gst_xine_input_dispose):
28463 (gst_xine_input_subclass_init):
28464 call parent dispose.
28465 change pad template for CD reader correctly
28466 * ext/xine/Makefile.am:
28467 * ext/xine/gstxine.h:
28468 * ext/xine/xine.c: (plugin_init):
28469 * ext/xine/xineaudiosink.c:
28470 wrap audio sinks, too
28471 * gst-libs/gst/resample/private.h:
28472 * gst-libs/gst/resample/resample.c: (gst_resample_init),
28473 (gst_resample_reinit), (gst_resample_scale),
28474 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
28475 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
28476 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
28477 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
28478 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
28479 * gst-libs/gst/resample/resample.h:
28480 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
28481 (gst_audioscale_class_init), (gst_audioscale_link),
28482 (gst_audioscale_get_buffer), (gst_audioscale_init),
28483 (gst_audioscale_chain), (gst_audioscale_set_property),
28484 (gst_audioscale_get_property):
28485 * gst/audioscale/gstaudioscale.h:
28486 s/resample_*/gst_resample_*/i to not clobber namespaces
28488 2004-02-23 Julien MOUTTE <julien@moutte.net>
28490 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
28491 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
28492 (gst_riff_create_video_template_caps),
28493 (gst_riff_create_audio_template_caps),
28494 (gst_riff_create_iavs_template_caps):
28495 * gst-libs/gst/riff/riff-media.h:
28496 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
28497 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
28498 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
28499 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
28500 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
28501 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
28502 (gst_matroska_demux_plugin_init): First batch implementing audio and
28503 video codec tags in demuxers.
28505 2004-02-22 Benjamin Otte <otte@gnome.org>
28507 * ext/xine/Makefile.am:
28508 * ext/xine/gstxine.h:
28509 * ext/xine/xine.c: (plugin_init):
28510 * ext/xine/xineinput.c:
28511 add input plugin wrapper. Playback from files, http, mms and cdda
28513 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
28514 remove leftover G_GNUC_UNUSED
28515 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
28516 (gst_asf_demux_identify_guid):
28517 improve debugging output
28519 2004-02-22 Benjamin Otte <otte@gnome.org>
28521 reported by: Padraig O'Briain <padraig.obriain@sun.com>
28524 replace test -e with test -x for mkinstalldirs to be more portable.
28527 2004-02-22 Benjamin Otte <otte@gnome.org>
28529 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
28531 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
28532 set rank to PRIMARY
28533 * gst/volume/gstvolume.c: (plugin_init):
28537 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
28539 reviewed by Benjamin Otte <otte@gnome.org>
28541 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
28542 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
28544 2004-02-22 Benjamin Otte <otte@gnome.org>
28547 export [_]*{gst,Gst,GST}.* symbols from plugins
28549 2004-02-22 Christophe Fergeau <teuf@gnome.org>
28551 reviewed by: Benjamin Otte <otte@gnome.org>
28553 * ext/lame/gstlame.c: (add_one_tag):
28554 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
28555 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
28556 (gst_vorbisenc_metadata_set1):
28557 * gst/tags/gstid3tag.c:
28558 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
28559 apply fixes from bugs #135042 (lame can't write tags) and #133817
28560 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
28562 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
28564 * configure.ac: Export only gst_plugin_desc from plugins.
28565 Note that this change only makes any effect with Linux using libtool
28566 1.5.2 or higher. Otherwise it is silently ignored, but it would build
28567 fine. And don't try to have several versions of libtool in different
28570 2004-02-20 Andy Wingo <wingo@pobox.com>
28572 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
28573 interleave respectively.
28575 * gst/interleave/deinterleave.c: New plugin: deinterleave
28576 (replaces on oneton).
28577 * gst/interleave/interleave.c: New plugin: interleave.
28578 * gst/interleave/plugin.h: Support file.
28579 * gst/interleave/plugin.c: Support file.
28581 * configure.ac: Remove intfloat and oneton, add interleave.
28583 * ext/sndfile/gstsf.c: Handle events better.
28585 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
28586 and float2int operation. int2float has scheduling problems as
28587 noted in in2float_chain.
28589 2004-02-20 Benjamin Otte <otte@gnome.org>
28591 * ext/xine/Makefile.am:
28592 * ext/xine/gstxine.h:
28594 * ext/xine/xineaudiodec.c:
28595 * ext/xine/xinecaps.c:
28596 add first version of xine plugin wrapper. Currently only wraps the
28597 QDM2 win32 DLL, and even that only in proof-of-concept quality.
28600 add xine plugin wrapper, disabled by default. Use --enable-xine to
28601 build. Note that it'll segfault on gst-register if you don't remove
28602 the goom and tvtime post plugins from xine.
28603 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
28604 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
28605 add extradata parsing for QDM2.
28606 change around debugging prints.
28608 2004-02-19 Benjamin Otte <otte@gnome.org>
28610 * ext/lame/gstlame.c: (gst_lame_chain):
28611 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
28612 use gst_tag_list_insert when you want to insert tags
28614 2004-02-18 David Schleef <ds@schleef.org>
28616 * configure.ac: Move massink to gst-rotten
28618 * ext/mas/Makefile.am:
28619 * ext/mas/massink.c:
28620 * ext/mas/massink.h:
28622 2004-02-18 David Schleef <ds@schleef.org>
28624 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
28625 typefinding, since it seems to be worse than nothing.
28626 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
28627 atom to recognize .mp4 and .m4a files as video/quicktime.
28629 2004-02-18 David Schleef <ds@schleef.org>
28631 * gst/sine/demo-dparams.c: (quit_live),
28632 (dynparm_log_value_changed), (dynparm_value_changed), (main):
28633 Use double dparams, not float.
28634 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28635 (gst_sinesrc_init): Change sync default to FALSE, since multiple
28636 sync'd elements don't really work correctly.
28637 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
28638 (volume_update_volume), (volume_get_property): Change dparam
28641 2004-02-18 Julien MOUTTE <julien@moutte.net>
28643 * sys/ximage/ximagesink.c:
28644 (gst_ximagesink_xwindow_update_geometry),
28645 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28646 (gst_ximagesink_change_state), (gst_ximagesink_expose),
28647 (gst_ximagesink_init): Rework the way software video scaling works. So
28648 now we check on each chain call if the video frames are feeling the
28649 window. If not we try to renegotiate caps. On failure we memorize that
28650 and we won't try again for that PLAYING sessions.
28651 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
28653 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
28656 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28658 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
28659 break up _link so we can give a better debug message for errors
28661 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
28663 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
28664 set up debug category
28666 2004-02-18 Julien MOUTTE <julien@moutte.net>
28668 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28669 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
28670 the way renegotiation work. The event handling function is not taking
28671 care of external windows and renegotiate method check for pad flags
28672 NEGOTIATING. Should fix : #133209
28674 2004-02-17 Julien MOUTTE <julien@moutte.net>
28676 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
28677 pad is negotiating before trying renegotiation.
28679 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
28681 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
28682 pass on all possible mime types as typefind hints
28684 2004-02-17 Julien MOUTTE <julien@moutte.net>
28686 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
28687 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
28688 possible SHM leak if we crash. All other apps using XShm are doing
28691 2004-02-17 Julien MOUTTE <julien@moutte.net>
28693 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
28694 (gst_ximagesink_expose): Renegotiate size on expose.
28695 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
28698 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
28700 * testsuite/alsa/sinesrc.c:
28701 cosmetic fix to fix compile issue with gcc 2.95.4
28703 2004-02-16 Julien MOUTTE <julien@moutte.net>
28705 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
28706 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
28707 failed opening the audio device.
28708 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
28709 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
28710 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
28711 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
28712 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
28713 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
28714 (gst_ximagesink_change_state), (gst_ximagesink_chain),
28715 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
28716 Removing some useless g_return_if_fail like wingo suggested.
28717 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
28718 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
28719 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
28720 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
28721 (gst_xvimagesink_update_colorbalance),
28722 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
28723 (gst_xvimagesink_xcontext_clear),
28724 (gst_xvimagesink_get_fourcc_from_caps),
28725 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
28726 (gst_xvimagesink_set_xwindow_id),
28727 (gst_xvimagesink_colorbalance_list_channels),
28728 (gst_xvimagesink_colorbalance_set_value),
28729 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
28730 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
28732 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
28734 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
28735 throw error when not negotiated instead of asserting
28737 2004-02-15 Julien MOUTTE <julien@moutte.net>
28739 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
28740 correct data refcounting.
28742 2004-02-15 Julien MOUTTE <julien@moutte.net>
28744 * gst/switch/gstswitch.c: (gst_switch_change_state),
28745 (gst_switch_class_init): Cleaning the sinkpads correctly on state
28746 change, mostly the EOS flag.
28748 2004-02-15 Julien MOUTTE <julien@moutte.net>
28750 * examples/gstplay/player.c: (got_eos), (main): Adding some
28751 output for debugging.
28752 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
28753 timeouts if we go to any state different from PLAYING.
28754 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
28755 more EOS bugs in riff lib.
28757 2004-02-14 Julien MOUTTE <julien@moutte.net>
28759 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
28760 visualization until i find a way to fix switch correctly.
28761 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
28763 * gst/switch/gstswitch.c: (gst_switch_release_pad),
28764 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
28765 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
28766 Reworked switch to get a more correct behaviour with events and refing
28767 of data stored in sinkpads.
28768 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
28769 we don't pull from a pad in EOS.
28771 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28773 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28774 remove v1 tag even if we can't read it (makes sure we don't detect
28777 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
28779 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
28780 (gst_alsa_xrun_recovery):
28781 * ext/alsa/gstalsa.h:
28782 try xrun recovery when wait failed. Make xrun recovery function
28783 return TRUE/FALSE to indicate success. (might fix #134354)
28785 2004-02-13 David Schleef <ds@schleef.org>
28787 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
28788 (dynparm_value_changed), (main): Convert from float to double.
28789 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
28791 2004-02-13 David Schleef <ds@schleef.org>
28793 * gst/silence/gstsilence.c: (gst_silence_class_init),
28794 (gst_silence_set_clock), (gst_silence_get),
28795 (gst_silence_set_property), (gst_silence_get_property):
28796 * gst/silence/gstsilence.h: Add sync property.
28797 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
28798 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
28799 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
28800 * gst/sine/gstsinesrc.h: Add sync property.
28802 2004-02-13 David Schleef <ds@schleef.org>
28804 * gst/intfloat/gstint2float.c: (conv_f32_s16),
28805 (gst_int2float_chain_gint16): Change stdint usage to glib types.
28807 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28811 * gst-libs/ext/Makefile.am:
28812 move ffmpeg plugin to gst-ffmpeg module
28814 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
28816 * configure.ac: use GST_ARCH to detect architecture
28818 2004-02-12 Julien MOUTTE <julien@moutte.net>
28820 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
28822 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
28824 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
28825 classify LADSPA plugins based on number of src/sink pads
28826 (#133663, Stefan Kost)
28827 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
28828 fix dparams registration
28829 (#133528, Stefan Kost)
28830 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
28831 fix use of isprint and use g_ascii_isprint instead
28832 (#133316, Stefan Kost)
28834 2004-02-11 David Schleef <ds@schleef.org>
28836 Convert a few inner loops to use liboil. This is currently
28837 optional, and is only enabled if liboil is present (duh!).
28838 * configure.ac: Check for liboil-0.1
28839 * gst/intfloat/Makefile.am:
28840 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
28841 (gst_int2float_chain_gint16):
28842 * gst/videofilter/Makefile.am:
28843 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
28844 (tablelookup_u8), (gst_videobalance_planar411):
28845 * gst/videotestsrc/Makefile.am:
28846 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
28847 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
28848 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
28849 (paint_hline_RGB565), (paint_hline_xRGB1555):
28851 2004-02-11 David Schleef <ds@schleef.org>
28853 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
28854 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
28855 (gst_colorspace_getcaps), (gst_colorspace_link),
28856 (gst_colorspace_base_init), (gst_colorspace_init),
28857 (gst_colorspace_chain), (gst_colorspace_change_state),
28858 (plugin_init): Merge Ronald's patch (bug #117897) and update
28859 for new caps and negotiation. Seems to work, although it
28860 shows off bugs in lcs.
28862 2004-02-11 David Schleef <ds@schleef.org>
28864 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
28865 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
28867 2004-02-11 David Schleef <ds@schleef.org>
28869 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
28870 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
28871 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
28872 Add server and port properties
28874 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28879 * m4/as-liblame.m4:
28880 * m4/as-slurp-ffmpeg.m4:
28881 * m4/check-libheader.m4:
28888 * m4/gst-ivorbis.m4:
28889 * m4/gst-matroska.m4:
28891 * m4/gst-shout2.m4:
28899 fix underquotedness of macros (#133800)
28900 * m4/as-avifile.m4:
28902 removed because no longer used
28904 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
28907 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
28908 by autopoint (fixes #132996)
28910 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
28912 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
28913 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
28914 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
28915 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
28918 2004-02-11 David Schleef <ds@schleef.org>
28920 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
28921 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
28922 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
28923 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
28924 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
28925 (gst_jpegenc_class_init), (gst_jpegenc_init),
28926 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
28927 (gst_jpegenc_chain), (gst_jpegenc_set_property),
28928 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
28929 * ext/jpeg/gstjpegenc.h: Fix negotiation.
28931 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
28933 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
28934 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
28935 * ext/mikmod/gstmikmod.h:
28936 fix caps negotiation in mikmod
28937 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
28938 output debug information
28940 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
28942 * gst-libs/gst/colorbalance/Makefile.am:
28943 * gst-libs/gst/navigation/Makefile.am:
28944 * gst-libs/gst/xoverlay/Makefile.am:
28945 remove unused GST_OPT_CFLAGS from Makefiles
28946 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
28948 2004-02-07 David Schleef <ds@schleef.org>
28950 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
28951 push events to pads that haven't been created (#133508)
28953 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
28955 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
28956 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
28957 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
28958 (gst_dvdec_loop), (gst_dvdec_change_state):
28959 Second attempt at committing a working dvdec element.
28961 2004-02-06 David Schleef <ds@schleef.org>
28963 Build fixes for OS X: (see #129600)
28964 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
28965 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
28966 (gst_riff_read_strf_iavs):
28967 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
28968 (gst_avi_demux_stream_odml):
28969 * gst/playondemand/Makefile.am:
28970 * gst/rtp/rtp-packet.c:
28972 2004-02-05 David Schleef <ds@schleef.org>
28974 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
28975 last change, because it Just Doesn't Compile.
28977 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
28979 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
28980 skip undecodable id3v2 tag instead of keeping it
28982 2004-02-05 David Schleef <ds@schleef.org>
28984 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
28985 Unref leaked buffer. (Noticed by Ronald)
28987 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
28989 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
28990 Sync requires with other checks. >= vs =.
28992 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
28994 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
28995 (gst_dvdec_video_link), (gst_dvdec_loop):
28996 * ext/dv/gstdvdec.h:
28997 rework the caps negotiation so that dvdec works again instead
28998 of just segfaulting.
29000 === release 0.7.4 ===
29002 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
29004 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
29005 * configure.ac: changed for release
29007 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
29009 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
29010 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
29011 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
29012 * pkgconfig/gstreamer-play-uninstalled.pc.in:
29013 reworked patch by David Lehn to fix libdir and includedir for
29014 uninstalled libraries
29015 removed play and gconf from gstreamer-libs since they have their
29016 own pkgconfig files
29018 2004-02-04 David Schleef <ds@schleef.org>
29020 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
29023 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
29025 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29026 use correct GST_TAG_ENCODER tag
29028 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
29030 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
29031 be sure to stop the clock when going to paused
29032 * sys/oss/gstosssink.c: (gst_osssink_change_state):
29033 reset number of transmitted when going to ready.
29036 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
29038 reviewed by Benjamin Otte
29040 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
29041 extract track count (fixes #133410)
29043 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
29045 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
29046 that should be !=, not == (fixes #132519)
29048 2004-02-04 David Schleef <ds@schleef.org>
29050 Make sure set_explicit_caps() is called before adding pad.
29051 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29052 * gst/id3/gstid3types.c: (gst_id3types_loop):
29053 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29054 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29056 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
29059 bump nano to 2, first prerelease
29060 put back AM_PROG_LIBTOOL
29062 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
29064 * testsuite/alsa/Makefile.am:
29065 these are user test apps, not automatic testsuite tests
29067 2004-02-04 David Schleef <ds@schleef.org>
29069 Convert GST_DEBUG_CAPS() to GST_DEBUG():
29070 * gst/mpeg1videoparse/gstmp1videoparse.c:
29071 (mp1videoparse_parse_seq):
29072 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
29073 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
29074 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
29075 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
29076 (gst_xvideosink_getcaps):
29077 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
29078 * testsuite/gst-lint: more tests
29080 2004-02-04 David Schleef <ds@schleef.org>
29082 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
29083 with the code that they would expand to.
29084 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
29085 (gst_flacdec_get_src_query_types),
29086 (gst_flacdec_get_src_event_masks):
29087 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
29088 (gst_gnomevfssrc_get_query_types),
29089 (gst_gnomevfssrc_get_event_mask):
29091 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
29093 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
29094 (gst_sinesrc_dispose):
29095 fix memleak by properly disposing sinesrc
29097 2004-02-04 Julien MOUTTE <julien@moutte.net>
29099 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
29100 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
29101 an overlay to redraw the image because it has been exposed.
29102 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
29103 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
29104 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
29105 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
29107 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
29108 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
29109 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
29110 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
29113 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29115 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
29116 more memleak fixage
29118 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29120 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
29121 * gst/typefind/gsttypefindfunctions.c:
29122 fix memleaks shown by gst-typefind
29124 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29126 * common/glib-gen.mak:
29127 add hack rule to touch .Plo files
29128 * gst-libs/gst/colorbalance/Makefile.am:
29129 * gst-libs/gst/mixer/Makefile.am:
29130 * gst-libs/gst/play/Makefile.am:
29131 * gst-libs/gst/tuner/Makefile.am:
29132 remove glib_root variable
29134 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29136 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
29137 set explicit caps before adding the element, so the autopluggers can
29139 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
29140 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
29141 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29143 fix memleaks in typefind functions. gst_type_find_suggest takes a const
29146 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
29148 * gst-libs/gst/colorbalance/Makefile.am:
29149 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
29150 * gst-libs/gst/colorbalance/colorbalance.c:
29151 * gst-libs/gst/colorbalance/colorbalance.h:
29152 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
29153 * gst-libs/gst/mixer/Makefile.am:
29154 * gst-libs/gst/mixer/mixer-marshal.list:
29155 * gst-libs/gst/mixer/mixer.c:
29156 * gst-libs/gst/mixer/mixer.h:
29157 * gst-libs/gst/mixer/mixermarshal.list:
29158 * gst-libs/gst/play/Makefile.am:
29159 * gst-libs/gst/play/play.h:
29160 * gst-libs/gst/tuner/Makefile.am:
29161 * gst-libs/gst/tuner/tuner-marshal.list:
29162 * gst-libs/gst/tuner/tuner.c:
29163 * gst-libs/gst/tuner/tuner.h:
29164 * gst-libs/gst/tuner/tunermarshal.list:
29165 use new glib-gen.mak snippet to clean up Makefile.am
29166 fix various bugs in Makefile.am's
29168 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29170 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29171 handle chain parsing correctly in the multichain case
29172 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
29173 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
29174 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
29175 (theora_dec_chain):
29176 handle events and queries correctly
29178 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29181 Ignore generated file _stdint.h.
29183 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29185 * gst-libs/gst/colorbalance/Makefile.am:
29186 * gst-libs/gst/colorbalance/colorbalance.h:
29187 * gst-libs/gst/mixer/Makefile.am:
29188 * gst-libs/gst/mixer/mixer.h:
29189 * gst-libs/gst/play/Makefile.am:
29190 * gst-libs/gst/play/play.h:
29191 * gst-libs/gst/tuner/Makefile.am:
29192 * gst-libs/gst/tuner/tuner.h:
29193 Generate enum type code with glib-mkenums.
29194 * gst-libs/gst/colorbalance/.cvsignore:
29195 * gst-libs/gst/mixer/.cvsignore:
29196 * gst-libs/gst/play/.cvsignore:
29197 * gst-libs/gst/tuner/.cvsignore:
29198 Ignore generated files.
29200 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29202 * gst-libs/gst/audio/.cvsignore:
29203 Ignore generated file.
29204 * gst-libs/gst/audio/Makefile.am:
29205 Do not install example filter.
29207 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
29209 * examples/switch/.cvsignore:
29210 Ignore generated file.
29212 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
29214 * common/m4/ax_create_stdint_h.m4:
29216 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
29219 remove generated _stdint.h in DISTCLEANFILES
29220 * ext/a52dec/gsta52dec.c:
29221 include _stdint.h for a52dec. (should fix #133064)
29223 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29225 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
29226 (gst_tag_to_vorbis_comments):
29227 Add replaygain support to vorbistag
29229 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
29230 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29231 (gst_ffmpeg_caps_to_extradata):
29232 Fix SVQ3 caps flag properties
29233 Use glib macro for bytes swap
29235 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29237 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
29238 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
29239 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
29240 * ext/sndfile/gstsf.c: (plugin_init):
29241 * gst/avi/gstavi.c: (plugin_init):
29242 * sys/dxr3/dxr3init.c: (plugin_init):
29243 * sys/oss/gstossaudio.c: (plugin_init):
29244 * sys/v4l/gstv4l.c: (plugin_init):
29245 * sys/v4l2/gstv4l2.c: (plugin_init):
29246 remove textdomain calls
29248 update Dutch translation
29250 2004-02-02 Julien MOUTTE <julien@moutte.net>
29252 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
29253 (gst_play_set_audio_sink): Moving volume in the audio thread for
29254 instantaneous volume change. Maybe i will add another volume in front
29255 of visualization later, not sure yet though.
29257 2004-02-02 Julien MOUTTE <julien@moutte.net>
29259 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
29260 (gst_ximagesink_handle_xevents): Better X events handling, only take
29261 the latest events for configure and motion.
29262 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
29264 2004-02-02 Jon Trowbridge <trow@gnu.org>
29266 reviewed by: David Schleef <ds@schleef.org>
29269 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
29270 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
29272 2004-02-02 David Schleef <ds@schleef.org>
29274 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
29276 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
29277 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29278 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
29279 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
29280 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
29281 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
29282 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
29283 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
29284 (gst_float2_2_int_link):
29285 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
29286 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
29287 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
29288 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
29289 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
29290 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
29291 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
29292 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
29293 * testsuite/gst-lint: Add tests for bzero and ;;
29295 2004-02-02 David Schleef <ds@schleef.org>
29297 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
29299 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29301 * ext/aalib/gstaasink.c: (gst_aasink_open):
29302 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
29303 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29304 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
29305 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
29306 (gst_afsink_close_file):
29307 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
29308 (gst_afsrc_close_file):
29309 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
29310 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
29311 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
29312 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
29313 * ext/esd/esdmon.c: (gst_esdmon_get):
29314 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
29315 * ext/faac/gstfaac.c: (gst_faac_chain):
29316 * ext/faad/gstfaad.c: (gst_faad_chain):
29317 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
29318 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
29319 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
29320 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
29321 (gst_flacdec_loop):
29322 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
29323 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
29324 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
29325 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
29326 (gst_gnomevfssink_close_file):
29327 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
29328 (gst_gnomevfssrc_open_file):
29329 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
29330 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
29331 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
29332 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
29333 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
29334 * ext/mad/gstmad.c: (gst_mad_chain):
29335 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
29336 * ext/mpeg2dec/gstmpeg2dec.c:
29337 * ext/mpeg2enc/gstmpeg2enc.cc:
29338 * ext/mplex/gstmplex.cc:
29339 * ext/mplex/gstmplexibitstream.cc:
29340 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
29341 (gst_ogg_demux_push):
29342 * ext/raw1394/gstdv1394src.c:
29343 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
29344 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
29345 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
29347 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
29348 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
29349 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
29350 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
29351 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
29352 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
29353 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
29354 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
29355 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29356 (gst_riff_read_element_data), (gst_riff_read_seek),
29357 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
29358 * gst/adder/gstadder.c: (gst_adder_loop):
29359 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
29360 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
29361 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
29362 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
29363 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
29364 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
29365 * gst/goom/gstgoom.c: (gst_goom_chain):
29366 * gst/id3/gstid3types.c: (gst_id3types_loop):
29367 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29368 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
29369 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
29370 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29371 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
29372 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
29373 (gst_ebml_read_float), (gst_ebml_read_header):
29374 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
29375 (gst_matroska_demux_parse_blockgroup):
29376 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
29377 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
29378 * gst/oneton/gstoneton.c: (gst_oneton_chain):
29379 * gst/silence/gstsilence.c: (gst_silence_get):
29380 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
29381 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
29382 * gst/speed/gstspeed.c: (speed_loop):
29383 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
29384 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
29385 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
29386 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
29387 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
29388 (gst_wavparse_loop):
29389 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
29390 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
29391 (dxr3audiosink_close):
29392 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
29393 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
29394 (dxr3videosink_close), (dxr3videosink_write_data):
29395 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
29396 * sys/oss/gstosssink.c: (gst_osssink_chain):
29397 * sys/oss/gstosssrc.c: (gst_osssrc_get):
29398 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
29399 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
29400 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
29401 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
29402 (gst_v4l_set_window), (gst_v4l_enable_overlay):
29403 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
29404 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
29405 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
29406 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
29407 (gst_v4l_set_audio):
29408 * sys/v4l/v4l_calls.h:
29409 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
29410 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
29411 (gst_v4lmjpegsink_playback_init),
29412 (gst_v4lmjpegsink_playback_start):
29413 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
29414 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
29415 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
29416 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
29417 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
29418 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
29419 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
29420 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
29421 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
29422 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
29423 (gst_v4l2_get_output), (gst_v4l2_set_output),
29424 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
29425 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
29426 (gst_v4l2_set_attribute):
29427 * sys/v4l2/v4l2_calls.h:
29428 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
29429 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
29430 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
29431 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
29432 (gst_v4l2src_capture_stop):
29433 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
29434 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
29435 (gst_ximagesink_chain):
29436 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
29437 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
29438 (gst_xvideosink_xwindow_new):
29439 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29440 (gst_xvimagesink_chain):
29442 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29444 * gst/volume/gstvolume.c: (gst_volume_set_volume),
29445 (gst_volume_get_volume), (volume_class_init), (volume_init),
29446 (volume_chain_int16), (volume_update_volume):
29447 * gst/volume/gstvolume.h:
29448 make code more readable by removing magic numbers
29449 make mixer interface export 0-100 range
29450 make it internally map to 0.0-1.0 range so users don't distort
29451 output by putting the sliders at full volume
29453 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29455 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
29456 (gst_play_state_change), (gst_play_seek_to_time):
29457 block the tick callback for 0.5 secs after doing a seek
29459 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
29461 * gst-libs/gst/play/play.c: (gst_play_new):
29464 2004-02-01 Julien MOUTTE <julien@moutte.net>
29466 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
29467 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
29468 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
29469 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
29470 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
29471 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
29473 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
29476 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29477 check for a function added in vorbis 1.1
29479 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29481 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
29482 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
29483 really start/stop clock only on PLAYING <=> PAUSED
29484 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
29485 remove \n from debugging lines
29486 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
29487 make it work when seeking does not
29488 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29491 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29493 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
29494 start clock on PAUSED=>PLAYING, not later
29495 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
29496 extract correct time for different discont formats
29497 (gst_alsa_sink_get_time):
29498 don't segfault when no format is negotiated yet, just return 0
29499 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29500 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
29501 (gst_ogg_pad_push):
29502 handle flush and discont events correctly
29503 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
29504 handle discont events correctly
29506 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
29508 * gst-libs/gst/play/play.c: (gst_play_error_quark),
29509 (gst_play_error_create), (gst_play_error_plugin),
29510 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
29511 * gst-libs/gst/play/play.h:
29512 add error handling during creation
29513 * examples/gstplay/player.c: (main):
29514 use new gst_play_new
29517 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
29519 * ext/theora/theoradec.c: (theora_dec_chain):
29521 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
29522 (vorbis_dec_src_event), (vorbis_dec_chain):
29523 add encoder tag, fix tag reading to be more error tolerant, change
29524 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
29525 gst_pad_event_default.
29526 * gst/tags/gstvorbistag.c:
29527 (gst_tag_list_from_vorbiscomment_buffer):
29528 undefine function specific define at end of function
29530 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
29532 * ext/flac/gstflac.c: (plugin_init):
29533 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
29534 * ext/flac/gstflacdec.h:
29535 * ext/flac/gstflacenc.h:
29538 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
29540 * examples/gstplay/player.c: s/gstplay.h/play.h/
29542 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29544 * gst-libs/gst/play/Makefile.am:
29545 * gst-libs/gst/play/gstplay.c:
29546 * gst-libs/gst/play/gstplay.h:
29547 * gst-libs/gst/play/play.c:
29548 more surgery, operation complete
29550 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29552 * gst-libs/gst/play/play.old.c:
29553 * gst-libs/gst/play/play.old.h:
29554 after CVS surgery by moving, remove
29555 * gst-libs/gst/play/playpipelines.c:
29558 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
29559 add negotiation error
29561 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29563 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
29564 (gst_ogg_demux_push):
29565 add some seeking debug info
29566 send a flush when seeking
29568 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29574 * ext/theora/Makefile.am:
29575 * ext/theora/theoradec.c:
29576 add theora video decoder. Does just do simple decoding for now and
29577 has been tested against Theora cvs only. It only works when theora
29578 is compiled with --enable-static.
29579 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
29580 always reset packetno on DISCONT
29582 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29584 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
29587 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29589 * gst/mpegaudioparse/gstmpegaudioparse.c:
29590 (mp3_type_frame_length_from_header):
29591 Fix header parsing - stolen from ffmpeg (thank you! :) ).
29593 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29595 * ext/esd/esdsink.c: (gst_esdsink_init):
29596 Since we have static pad template caps, we don't need to negotiate;
29597 either the core errors out or we know the format.
29599 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
29601 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
29602 (gst_riff_read_seek):
29603 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
29604 (gst_ebml_read_seek):
29605 Fix event handling.
29607 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
29609 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
29610 removee video/x-theora from vp3 decoder, it doesn't handle raw
29612 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
29613 fix bug with finalizing element that never went to PAUSED
29614 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
29615 length and position queries were swapped
29616 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
29617 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
29618 (vorbis_dec_src_event):
29619 implement querying time and bytes
29621 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
29623 * just about every source file:
29624 gst_element_error -> GST_ELEMENT_ERROR
29626 2004-01-29 Julien MOUTTE <julien@moutte.net>
29628 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
29629 emiting FLUSH and even before DISCONT.
29630 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
29631 get the best instant seeking as possible yay!
29633 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
29635 * gst/mpeg1videoparse/gstmp1videoparse.c:
29636 (gst_mp1videoparse_real_chain):
29637 Committed wrong version last week... Grr... Didn't notice until now.
29639 2004-01-29 Julien MOUTTE <julien@moutte.net>
29641 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
29642 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
29643 have_xwindow_id signal in xwindow_create.
29645 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
29647 * ext/ogg/gstoggdemux.c:
29648 lots of changes - mainly support for chained bitstreams, seeking,
29649 querying and bugfixes of course
29650 * ext/vorbis/Makefile.am:
29651 * ext/vorbis/vorbisdec.c:
29652 * ext/vorbis/vorbisdec.h:
29653 add vorbisdec raw vorbis decoder
29654 * ext/vorbis/vorbis.c: (plugin_init):
29655 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
29656 * gst/intfloat/Makefile.am:
29657 * gst/intfloat/float22int.c:
29658 * gst/intfloat/float22int.h:
29659 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
29660 add float2intnew plugin. It converts multichannel interleaved float to
29661 multichannel interleaved int. The name should probably be changed.
29662 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
29664 add typefinding for raw theora video so oggdemux can detect it.
29666 2004-01-28 Julien MOUTTE <julien@moutte.net>
29668 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
29669 sink element first.
29670 * gst/videoscale/gstvideoscale.c:
29671 (gst_videoscale_handle_src_event): Fixing src event handler.
29673 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
29675 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
29676 (gst_v4lsrc_open), (gst_v4lsrc_close),
29677 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
29678 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
29679 * sys/v4l/gstv4lsrc.h:
29680 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
29681 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
29682 Implement resizing... Hack. But that's why v4l is b0rked...
29684 2004-01-28 Julien MOUTTE <julien@moutte.net>
29686 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
29687 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
29688 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
29689 (gst_ximagesink_xwindow_destroy):
29690 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
29691 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
29692 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
29693 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
29694 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
29695 correctly cleaning the image created to check xshm calls on succes,
29696 added a lot of XSync calls in X11 functions, and fixed a segfault when
29697 no image format was defined before negotiation happened.
29699 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
29701 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
29702 use gst_element_get_time to get correct time
29704 2004-01-28 Julien MOUTTE <julien@moutte.net>
29706 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
29707 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
29708 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
29709 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
29710 (gst_xvimagesink_check_xshm_calls),
29711 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
29712 X plugins are now able to detect that XShm calls will fail even if the
29713 server claims that it has XShm support (remote displays most of the
29714 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
29715 so that we use non XShm functions. This feature is almost useless for
29716 xvimagesink as Xv is not supported on remote displays anyway, but
29717 it might happen than even on the local display XShm calls fail.
29719 2004-01-27 David Schleef <ds@schleef.org>
29721 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
29722 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
29723 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
29724 changed esdsink to only use 44100,16,2, since esd sucks at rate
29725 conversion and esdsink has had difficulty negotiating.
29727 2004-01-27 Julien MOUTTE <julien@moutte.net>
29729 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
29730 (gst_play_seek_to_time): Fixing the way to get current position.
29732 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29734 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
29735 use gst_element_get_time to get correct time
29737 2004-01-27 Julien MOUTTE <julien@moutte.net>
29739 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
29740 fix ever... Inverting 2 lines of code make spider autoplug correctly
29743 2004-01-27 David Schleef <ds@schleef.org>
29745 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
29746 Use gst_pad_try_set_caps_nonfixed().
29748 2004-01-27 David Schleef <ds@schleef.org>
29750 * gst/ac3parse/gstac3parse.c: update to checklist 5
29751 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
29752 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
29753 * gst/audioscale/gstaudioscale.c: same
29754 * gst/auparse/gstauparse.c: same
29755 * gst/avi/gstavidemux.c: same
29757 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29759 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
29760 stop processing after EOS
29762 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
29764 * gst/asfdemux/asfheaders.h:
29765 * gst/asfdemux/gstasfdemux.c:
29766 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
29767 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
29768 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
29769 lot's of fixes to make data extraction simpler and get the code
29770 architecture and compiler independant. Add debugging category
29771 * gst/goom/gstgoom.c: (gst_goom_change_state):
29772 reset channel count on PAUSED=>READY, not READY=>PAUSED
29774 2004-01-26 Colin Walters <walters@verbum.org>
29776 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
29777 code to pull a bigger buffer in iradio mode. This as a side effect
29778 makes typefinding work.
29780 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29782 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
29783 Fix SVQ3 decoding on PPC
29785 2004-01-26 Julien MOUTTE <julien@moutte.net>
29787 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
29788 that one managed to stay there... Fixed.
29790 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
29792 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
29793 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
29794 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
29795 (qtdemux_video_caps):
29796 * gst/qtdemux/qtdemux.h:
29797 Add SVQ3 specific flags to qtdemux and ffmpeg
29799 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
29801 * gst-libs/gst/audio/audio.h:
29802 remove buffer-frames from audio caps
29803 * gst/audioconvert/gstaudioconvert.c:
29804 fix plugin to really work.
29806 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29808 * gst-libs/gst/mixer/mixer.c:
29809 * gst-libs/gst/propertyprobe/propertyprobe.c:
29810 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
29811 (gst_tuner_find_channel_by_name):
29812 * gst-libs/gst/tuner/tuner.h:
29813 Add gtk-doc style comments. Also fix a function name.
29815 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29817 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
29818 (gst_divxdec_negotiate):
29819 Fix for new capsnego - also fixes gst-player with divxdec.
29821 2004-01-25 Julien MOUTTE <julien@moutte.net>
29823 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29824 (gst_play_identity_handoff), (gst_play_set_location),
29825 (gst_play_set_visualization), (gst_play_connect_visualization): Another
29826 try in visualization implementation. Still have an issue with switch
29827 blocking when pulling from video_queue and only audio comes out of
29829 * gst/switch/gstswitch.c: (gst_switch_release_pad),
29830 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
29831 release method. And check if the pad is usable before pulling.
29833 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29835 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
29836 (gst_videobalance_init),
29837 (gst_videobalance_colorbalance_list_channels),
29838 (gst_videobalance_colorbalance_set_value),
29839 (gst_videobalance_colorbalance_get_value),
29840 (gst_videobalance_update_properties),
29841 (gst_videobalance_update_tables_planar411),
29842 (gst_videobalance_planar411):
29843 * gst/videofilter/gstvideobalance.h:
29844 Implement lookup-tables. +/- 10x faster.
29846 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29848 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29849 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29850 The index reading was broken. The rest worked fine, but the whole
29851 goal of my rewrite was to make avidemux readable, and this was
29852 not at all readable. Please use typed variables.
29854 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
29856 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29857 Additional pad usability check.
29858 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
29859 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
29860 (gst_mp1videoparse_real_chain):
29861 Fix MPEG video stream parsing. The original plugin had several
29862 issues, including not timestamping streams where the source was
29863 not timestamped (this happens with PTS values in mpeg system
29864 streams, but MPEG video is also a valid stream on its own so
29865 that needs timestamps too). We use the display time code for that
29866 for now. Also, if one incoming buffer contains multiple valid
29867 frames, we push them all on correctly now, including proper EOS
29868 handling. Lastly, several potential segfaults were fixed, and we
29869 properly sync on new sequence/gop headers to include them in next,
29870 not previous frames (since they're header for the next frame, not
29871 the previous). Also see #119206.
29872 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
29874 Move caps setting so we only do it after finding several valid
29875 MPEG-1 fraes sequentially, not right after the first one (which
29876 might be coincidental).
29877 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
29878 (mpeg_video_type_find), (mpeg_video_stream_type_find),
29880 Add unsynced MPEG video stream typefinding, and change some
29881 probability values so we detect streams rightly. The idea is as
29882 follows: I can have an unsynced system stream which contains
29883 video. In the current code, I would randomly get a type for either
29884 system or video stream type found, because the probabilities are
29885 being calculated rather randomly. I now use fixed values, so we
29886 always prefer system stream if that was found (and that is how it
29887 should be). If no system stream was found, we can still identity the stream as video-only.
29889 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29891 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
29892 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
29893 don't write to buffer. Extract data without the need of
29894 __attribute__ ((packed))
29896 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29898 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
29899 (mpeg1_sys_type_find):
29900 Fix MPEG-1 stream typefinding.
29902 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29904 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
29905 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
29907 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29909 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
29910 * ext/esd/gstesd.c: (plugin_init):
29911 private debugging, better error reporting
29913 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29915 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
29916 (gst_riff_read_init), (gst_riff_read_change_state):
29917 * gst-libs/gst/riff/riff-read.h:
29918 Remove stuff fromold metadata system.
29920 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29922 * ext/ogg/gstoggdemux.c:
29923 Fix wrong file comment.
29924 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
29925 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
29926 Add metadata reading properly.
29928 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
29931 Fix nas DIST_SUBDIRS
29933 Fix bug where make distcheck doesn't get run on adding stuff to
29936 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
29938 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
29939 * ext/divx/gstdivxdec.h:
29940 Fix divx3 ("msmpeg4") playback using divxdec.
29942 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
29944 * gst/typefind/gsttypefindfunctions.c:
29945 (mp3_type_frame_length_from_header): fix bug in length computation
29946 (mp3_type_find): improve debugging output
29948 2004-01-23 Julien MOUTTE <julien@moutte.net>
29950 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
29951 (gst_play_set_location), (gst_play_seek_to_time),
29952 (gst_play_set_audio_sink), (gst_play_set_visualization),
29953 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
29954 the pipeline from scratch. Visualization is back and switch went out as
29955 i realized it was not possible to use the way i wanted.
29956 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
29957 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
29958 clearing in state change from READY to NULL. So that one can clean the
29959 X ressources keeping the element.
29960 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
29961 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
29962 (gst_xvimagesink_colorbalance_set_value),
29963 (gst_xvimagesink_colorbalance_get_value),
29964 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
29965 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
29966 change from READY to NULL and fixed some stupid bugs in colorbalance
29967 get/set values. Also added the following feature : when nobody tries to
29968 set some values to the colorbalance levels before the xcontext is
29969 grabbed, then when creating channels list from Xv attributes we set the
29970 internal values to the Xv defaults. This way we handle buggy Xv drivers
29971 that set default hue values far from the middle of the range (Thanks
29972 to Jon Trowbridge for pointing that issue).
29973 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
29974 colorbalance levels have been set before xcontext is grabbed.
29976 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
29978 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
29979 Fix the ossmixer case where we shouldn't open /dev/dsp* because
29980 it might block operations (which is bad for a mixer).
29982 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29984 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
29985 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
29986 (gmip_find_type_pre):
29987 * gst-libs/gst/media-info/media-info-priv.h:
29988 * gst-libs/gst/media-info/media-info.c:
29989 (gst_media_info_instance_init), (gst_media_info_read_idler):
29990 add fakesink to get caps on decoder src pad again
29991 fix callback prototype to match new have_type signal signature
29993 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
29995 * gst/adder/gstadder.c: (gst_adder_link):
29996 fix non-compile and cut-n-paste code
29998 2004-01-21 David Schleef <ds@schleef.org>
30000 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
30001 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
30002 (gst_swfdec_init), (gst_swfdec_change_state):
30003 * ext/swfdec/gstswfdec.h:
30005 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
30006 (gst_adder_request_new_pad): Fix negotiation.
30007 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
30008 Add a fixate function.
30009 * gst/intfloat/gstfloat2int.c:
30010 * gst/intfloat/gstfloat2int.h:
30011 * gst/intfloat/gstint2float.c:
30012 * gst/intfloat/gstint2float.h:
30013 Completely rewrite the negotiation. Doesn't quite work yet,
30014 due to some buffer-frames problem.
30016 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
30018 * ext/gnomevfs/gstgnomevfssrc.c:
30019 * sys/v4l2/v4l2_calls.h:
30020 fix includes for distcheck
30022 2004-01-21 Christian Schaller <uraeus@gnome.org>
30025 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
30026 based on earlier patch from Laurent Vivier
30028 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
30030 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
30031 Fix wma caps property
30032 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
30033 Fix typo (flags1 and flags2)
30035 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30037 * gst-libs/gst/media-info/media-info-priv.c:
30038 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
30039 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
30040 (gmip_find_stream), (gmip_find_track_metadata),
30041 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
30042 (gmip_find_track_format):
30043 * gst-libs/gst/media-info/media-info-priv.h:
30044 * gst-libs/gst/media-info/media-info-test.c: (main):
30045 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
30046 (gst_media_info_read_idler), (gst_media_info_read):
30047 * gst-libs/gst/media-info/media-info.h:
30048 register debugging category and use it for debugging
30050 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30052 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
30053 (gst_vorbisfile_new_link):
30054 signal streaminfo through tags
30056 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30058 * ext/mplex/gstmplex.cc:
30059 * ext/mplex/gstmplexibitstream.cc:
30060 g++ doesn't like NULL in our i18n/error macros, should be
30061 either (NULL) or ("").
30063 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30065 * sys/dxr3/dxr3audiosink.c:
30066 * sys/dxr3/dxr3init.c:
30067 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
30068 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
30069 Fix more error error error errors (missing includes here).
30071 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30073 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30074 fix thomas' error errors.
30076 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30078 * ext/mpeg2enc/gstmpeg2enc.cc:
30081 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
30083 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30084 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30085 Fix for new error system.
30087 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
30089 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
30090 fix for new error reporting
30092 2004-01-20 David Schleef <ds@schleef.org>
30094 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
30095 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
30096 (gst_ximagesink_set_xwindow_id): Change to using a framerate
30097 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
30098 and neither is 100+, most likely.
30099 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
30100 (gst_xvimagesink_getcaps): same
30102 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
30105 Up version requirement to 2.0.3 (not yet released) to avoid symbol
30106 clashes with ffmpeg.
30108 2004-01-20 Julien MOUTTE <julien@moutte.net>
30110 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
30111 (gst_switch_init): Fixed switch element : proxying link and setting
30112 caps from src to sink on request.
30114 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30116 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
30117 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
30118 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
30121 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30123 * sys/v4l/v4l_calls.h:
30124 * sys/v4l2/v4l2_calls.h:
30125 element_error fixes
30127 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30129 * gst-libs/gst/gst-i18n-plugin.h:
30131 remove config.h inclusion
30133 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30136 adding autopoint invocation
30139 * gst-libs/gst/gettext.h:
30140 adding gettext bits
30141 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
30142 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
30143 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
30144 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30145 (gst_gnomevfssink_close_file):
30146 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
30147 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
30148 * gst-libs/gst/gst-i18n-plugin.h:
30149 * gst/avi/gstavi.c: (plugin_init):
30150 * sys/dxr3/dxr3init.c: (plugin_init):
30151 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
30152 * sys/oss/gstossaudio.c: (plugin_init):
30153 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30154 * sys/v4l/gstv4l.c: (plugin_init):
30155 * sys/v4l/v4l_calls.c: (gst_v4l_open):
30156 * sys/v4l2/gstv4l2.c: (plugin_init):
30157 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30158 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
30159 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
30160 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
30161 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
30162 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
30163 make sure locale and translation domain are set
30164 fix translated strings
30170 put translation files into place
30171 * sys/xvideo/imagetest.c: (main):
30172 * ext/dv/demo-play.c: (main):
30173 fix unnecessary translations
30175 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
30177 * ext/sndfile/gstsf.c:
30178 * gst/avi/gstavimux.c:
30179 * ext/audiofile/gstafsink.c:
30180 * ext/audiofile/gstafsrc.c:
30181 * ext/gnomevfs/gstgnomevfssink.c:
30182 * ext/gnomevfs/gstgnomevfssrc.c:
30183 * sys/oss/gstosselement.c:
30184 * sys/v4l/v4l_calls.h:
30187 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30189 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
30190 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
30191 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
30192 (gst_v4l2_get_output), (gst_v4l2_set_output),
30193 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
30194 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
30195 (gst_v4l2_set_attribute):
30196 update to new error handling
30198 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30200 * ext/sidplay/gstsiddec.cc:
30201 * gst/modplug/gstmodplug.cc:
30202 parenthese NULL because C++ seems angry about it
30204 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
30206 * gst-libs/gst/gst-i18n-plugin.h:
30207 add skeleton i18n stuff, but needs to be further implemented
30209 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
30211 * examples/gstplay/player.c: (main):
30212 * ext/aalib/gstaasink.c: (gst_aasink_open):
30213 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
30214 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
30215 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
30216 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
30217 (gst_afsink_close_file):
30218 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
30219 (gst_afsrc_close_file):
30220 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
30221 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
30222 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
30223 * ext/esd/esdmon.c: (gst_esdmon_get):
30224 * ext/esd/esdsink.c: (gst_esdsink_chain):
30225 * ext/faac/gstfaac.c: (gst_faac_chain):
30226 * ext/faad/gstfaad.c: (gst_faad_chain):
30227 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
30228 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
30229 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
30230 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
30231 (gst_flacdec_loop):
30232 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
30233 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
30234 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
30235 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
30236 (gst_gnomevfssink_close_file):
30237 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
30238 (gst_gnomevfssrc_open_file):
30239 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
30240 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
30241 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
30242 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
30243 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
30244 * ext/mad/gstmad.c: (gst_mad_chain):
30245 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
30246 * ext/mpeg2dec/gstmpeg2dec.c:
30247 * ext/mpeg2enc/gstmpeg2enc.cc:
30248 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30249 * ext/mplex/gstmplex.cc:
30250 * ext/mplex/gstmplexibitstream.cc:
30251 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
30252 (gst_ogg_demux_push), (gst_ogg_pad_push):
30253 * ext/raw1394/gstdv1394src.c:
30254 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
30255 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
30256 * ext/sidplay/gstsiddec.cc:
30257 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
30259 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
30260 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
30261 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
30262 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
30263 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
30264 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
30265 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
30266 * gst-libs/gst/Makefile.am:
30267 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
30268 (gst_riff_read_element_data), (gst_riff_read_seek),
30269 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
30270 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
30271 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
30272 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
30273 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
30274 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
30275 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
30276 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30277 * gst/goom/gstgoom.c: (gst_goom_chain):
30278 * gst/id3/gstid3types.c: (gst_id3types_loop):
30279 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
30280 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
30281 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
30282 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
30283 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
30284 (gst_ebml_read_float), (gst_ebml_read_header):
30285 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
30286 (gst_matroska_demux_parse_blockgroup):
30287 * gst/modplug/gstmodplug.cc:
30288 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
30289 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
30290 * gst/oneton/gstoneton.c: (gst_oneton_chain):
30291 * gst/silence/gstsilence.c: (gst_silence_get):
30292 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30293 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
30294 * gst/speed/gstspeed.c: (speed_loop):
30295 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
30296 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30297 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
30298 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
30299 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
30300 (gst_wavparse_loop):
30301 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
30302 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
30303 (dxr3audiosink_close):
30304 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
30305 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
30306 (dxr3videosink_close), (dxr3videosink_write_data):
30307 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
30308 * sys/oss/gstosselement.h:
30309 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
30310 (gst_osssink_chain):
30311 * sys/oss/gstosssrc.c: (gst_osssrc_get):
30312 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30313 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
30314 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
30315 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
30316 (gst_v4l_enable_overlay):
30317 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
30318 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
30319 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
30320 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
30321 (gst_v4l_set_audio):
30322 * sys/v4l/v4l_calls.h:
30323 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
30324 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
30325 (gst_v4lmjpegsink_playback_init),
30326 (gst_v4lmjpegsink_playback_start):
30327 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
30328 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
30329 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
30330 (gst_v4lmjpegsrc_requeue_frame):
30331 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
30332 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
30333 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
30334 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
30335 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
30336 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
30337 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
30338 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
30339 (gst_v4l2src_capture_stop):
30340 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
30341 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30342 (gst_ximagesink_chain):
30343 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
30344 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
30345 (gst_xvideosink_xwindow_new):
30346 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30347 (gst_xvimagesink_chain):
30348 use new error signal, function and categories
30350 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
30354 * ext/musicbrainz/gsttrm.c:
30355 * ext/musicbrainz/gsttrm.h:
30356 * ext/musicbrainz/Makefile.am:
30359 2004-01-18 Julien MOUTTE <julien@moutte.net>
30361 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
30362 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
30363 synchronous property for debugging.
30364 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
30365 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30366 (gst_xvimagesink_set_property): Moving a pointer declaration to a
30367 smaller block, fixing indent.
30369 2004-01-16 David Schleef <ds@schleef.org>
30371 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
30372 property affects the video stream.
30373 * sys/xvimage/xvimagesink.c:
30374 * sys/xvimage/xvimagesink.h:
30375 Add synchronous property for debugging. Should probably be
30376 disabled in non-CVS builds. Make sure that the Xv attribute
30377 exists before we set it (crash!). Fix a silly float bug that
30378 caused colorbalance to just not work.
30380 2004-01-17 Christian Schaller <Uraeus@gnome.org>
30382 * tools/gst-launch-ext.in - update for new plugins
30384 2004-01-16 David Schleef <ds@schleef.org>
30386 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
30387 already-freed caps.
30389 2994-01-16 Christian Schaller <Uraeus@gnome.org>
30391 * Update spec for new colorspace plugin and libcaca plugin
30392 * Fix compilation of libcaca plugin (clock -> id)
30394 2004-01-16 Julien MOUTTE <julien@moutte.net>
30396 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
30397 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
30398 (gst_xvimagesink_set_xwindow_id),
30399 (gst_xvimagesink_colorbalance_set_value),
30400 (gst_xvimagesink_colorbalance_get_value),
30401 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30402 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
30403 correct colorbalance properties. They can now be set when the element
30404 is still in NULL state. The values will be committed to the Xv Port
30405 when xcontext is initialized.
30406 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
30407 brightness int values in the GstXvImagesink structure.
30409 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30411 * gst-libs/gst/Makefile.am:
30412 restructure so having local patches works easier.
30414 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30416 * ext/mpeg2enc/Makefile.am:
30417 * ext/mpeg2enc/gstmpeg2enc.cc:
30418 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
30419 Bugfix with respect to EOS handling.
30421 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
30423 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
30424 Link with right caps (else, it segfaults).
30425 * ext/mplex/gstmplexjob.cc:
30426 Fix for slight API change in 1.6.1.93 release of mjpegtools.
30428 2004-01-15 David Schleef <ds@schleef.org>
30430 * gst-libs/gst/audio/Makefile.am:
30431 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
30433 * gst-libs/gst/audio/gstaudiofilter.c:
30434 * gst-libs/gst/audio/gstaudiofilter.h:
30435 Add bytes_per_sample and size and n_samples calculation.
30436 * gst-libs/gst/audio/gstaudiofilterexample.c:
30437 Remove, now autogenerated.
30438 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
30439 Moved from gstaudiofilterexample, object name changed, code added
30440 so that it actually works.
30441 * gst-libs/gst/audio/make_filter:
30442 Script to build an audiofilter subclass from the template.
30443 * gst/colorspace/Makefile.am:
30444 * gst/colorspace/yuv2yuv.c:
30445 Remove file, since it's GPL, and we don't use it.
30447 2004-01-15 Julien MOUTTE <julien@moutte.net>
30449 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30450 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
30451 them use the buffer free function to test how the buffer was allocated.
30453 2004-01-15 David Schleef <ds@schleef.org>
30455 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
30456 that handles osssink fallback.
30457 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
30458 (gst_audio_convert_getcaps):
30459 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
30460 Add audio/x-qdm2 for QDM2 audio.
30461 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
30462 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
30463 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
30464 Decrease minimum size to 16x16.
30465 * gst/wavparse/gstwavparse.c:
30466 Convert disabled pad template caps to new caps.
30467 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
30468 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30469 (gst_xvimagesink_chain): Throw element error when display cannot
30470 be opened. Increase minimum framerate to 1.0. Check the data
30471 free function on a buffer to make sure it is the type we expect
30472 before manipulating it.
30474 2004-01-15 Julien MOUTTE <julien@moutte.net>
30476 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30477 (gst_videobalance_colorbalance_set_value): Implement passthru if
30478 settings are in the middle.
30479 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
30481 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30483 * gst/videofilter/Makefile.am:
30484 * gst/volume/Makefile.am:
30485 Since we use videofilter symbols, link to it.
30487 2004-01-15 Julien MOUTTE <julien@moutte.net>
30489 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
30490 mixer interface type to HARDWARE.
30491 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
30493 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
30494 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
30495 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
30496 (gst_volume_interface_init), (gst_volume_list_tracks),
30497 (gst_volume_set_volume), (gst_volume_get_volume),
30498 (gst_volume_set_mute), (gst_volume_mixer_init),
30499 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
30500 (volume_init): Implementing mixer interface.
30501 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
30502 * sys/oss/gstosselement.c: (gst_osselement_get_type),
30503 (gst_osselement_change_state): Removing some trailing commas in
30505 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
30506 interface type to HARDWARE.
30507 * sys/v4l/gstv4lcolorbalance.c:
30508 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
30510 * sys/v4l2/gstv4l2colorbalance.c:
30511 (gst_v4l2_color_balance_interface_init): Setting colorbalance
30512 interface type to HARDWARE.
30513 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
30514 same code than ximagesink for event handling.
30516 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30518 * ext/snapshot/Makefile.am:
30519 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
30520 (gst_snapshot_chain):
30521 * ext/snapshot/gstsnapshot.h:
30522 This has to be a joke... Snapshot should be connected to a tee,
30523 colorspace element before it and EOS after that, where the other
30524 src of the tee receives normal data.
30525 The current way is *wrong*.
30527 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30529 * ext/hermes/gsthermescolorspace.c:
30530 Fix another compile error. Same as below.
30532 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
30534 * gst/colorspace/gstcolorspace.c:
30535 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
30536 (gst_colorspace_i420_to_yv12):
30537 Fix compiling... Didn't test if it actually works.
30539 2004-01-15 David Schleef <ds@schleef.org>
30542 * gst/colorspace/Makefile.am:
30543 * gst/colorspace/gstcolorspace.c:
30544 * gst/colorspace/gstcolorspace.h:
30545 * gst/colorspace/yuv2rgb.c:
30546 * gst/colorspace/yuv2rgb.h:
30547 Duplicate the ext/hermes colorspace plugin, and remove Hermes
30548 code and GPL code. Fix for new caps negotiation. Rewrite
30549 much of the format handling code, and some of the conversion
30550 code. Basically, rewrote almost everything. This element
30551 handles I420, YV12 to RGB conversions.
30552 * ext/hermes/Makefile.am:
30553 * ext/hermes/gsthermescolorspace.c:
30554 Rename colorspace to hermescolorspace. Fix negotiation issues.
30555 Remove non-Hermes related code. This element handles lots of
30556 RGB to RGB conversions, but no YUV.
30557 * ext/hermes/gstcolorspace.c:
30558 * ext/hermes/gstcolorspace.h:
30559 * ext/hermes/rgb2yuv.c:
30560 * ext/hermes/yuv2rgb.c:
30561 * ext/hermes/yuv2rgb.h:
30562 * ext/hermes/yuv2rgb_mmx16.s:
30563 * ext/hermes/yuv2yuv.c:
30564 * ext/hermes/yuv2yuv.h:
30567 2004-01-14 Colin Walters <walters@verbum.org>
30569 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
30570 they've already been.
30572 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30574 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
30575 assume tag mode when pad is not connected
30577 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
30579 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30580 Don't update the time of the clock
30581 (gst_alsa_sink_loop):
30582 sync to the clock given to alsasink, not the own clock
30583 * sys/oss/gstosssink.c: (gst_osssink_chain):
30585 (gst_osssink_change_state):
30587 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30588 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30589 remove bogus code that made DISCONT events unhandled
30590 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
30591 explicitly case to double in _set_simple. (fixes 2nd warning in bug
30593 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
30594 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
30595 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
30596 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
30597 2nd warning in bug #131502)
30599 2004-01-14 Julien MOUTTE <julien@moutte.net>
30601 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
30602 (gst_videobalance_colorbalance_set_value),
30603 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
30604 for colorbalance interface implementation.
30605 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
30606 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
30607 (gst_ximagesink_dispose), (gst_ximagesink_init),
30608 (gst_ximagesink_class_init): Adding DISPLAY property.
30609 * sys/ximage/ximagesink.h: Adding display_name to store display.
30610 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30611 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
30612 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
30613 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
30614 properties (they still need polishing though for gst-launch use : no
30615 xcontext yet, i ll do that tomorrow).
30616 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
30618 2004-01-14 Julien MOUTTE <julien@moutte.net>
30620 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
30621 (gst_play_set_location), (gst_play_set_visualization): Preparing
30622 switch integration, adding videobalance in the pipeline.
30624 2004-01-14 Julien MOUTTE <julien@moutte.net>
30626 * gst-libs/gst/colorbalance/colorbalance.c:
30627 (gst_color_balance_class_init): Adding a default type.
30628 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
30630 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
30631 (gst_videobalance_dispose), (gst_videobalance_class_init),
30632 (gst_videobalance_init), (gst_videobalance_interface_supported),
30633 (gst_videobalance_interface_init),
30634 (gst_videobalance_colorbalance_list_channels),
30635 (gst_videobalance_colorbalance_set_value),
30636 (gst_videobalance_colorbalance_get_value),
30637 (gst_videobalance_colorbalance_init): Implementing colorbalance
30639 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
30641 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
30642 bug which was triggering a BadAccess X error when setting an overlay
30643 before pad was really negotiated.
30644 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
30645 Using the colorbalance type macro.
30647 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30649 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
30650 (gst_flacenc_chain):
30651 handle tags correctly
30652 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
30653 extract ID3v1 tags correctly
30655 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30657 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
30659 Improve matroska typefinding for odd-typed headers...
30661 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30663 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
30664 Fix for using incremental number on padnames.
30666 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
30668 * ext/divx/gstdivxdec.c:
30669 * ext/divx/gstdivxenc.c:
30670 Set category to divx4linux instead of divx (too generic).
30671 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
30672 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
30673 (gst_wavparse_loop), (gst_wavparse_change_state):
30674 * gst/wavparse/gstwavparse.h:
30675 fix parsing of WAV files with non-standard fmt-tag size and fix
30676 skipping of unrecognized chunks... Someone please fix this thing
30677 to use rifflib so all this is automated.
30678 * sys/v4l/Makefile.am:
30679 * sys/v4l2/Makefile.am:
30680 Add X_CFLAGS because we depend on X (for overlay).
30682 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
30684 * ext/mpeg2dec/gstmpeg2dec.c:
30685 Don't issue a timestamp unless we tagged the frame
30688 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30690 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
30691 Query the audio element to get the time, not the clock. We're
30692 interested in the element's time here.
30694 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30696 * ext/aalib/gstaasink.c: (gst_aasink_chain):
30697 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
30698 * ext/esd/esdsink.c: (gst_esdsink_chain):
30699 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
30700 * ext/mas/massink.c: (gst_massink_chain):
30701 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
30702 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
30703 (gst_matroska_demux_parse_metadata):
30704 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
30705 (gst_mpeg_parse_release_locks):
30706 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
30707 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
30708 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
30709 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
30710 (gst_osssink_change_state):
30711 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
30712 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30713 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
30714 (gst_xvideosink_release_locks):
30715 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
30717 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
30718 (gst_alsa_clock_stop):
30719 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
30720 (gst_audio_clock_get_internal_time):
30721 simplify for use with new clocking code.
30722 * testsuite/alsa/Makefile.am:
30723 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
30724 fix testsuite for new caps system
30726 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
30728 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
30729 * ext/flac/gstflacenc.c: (add_one_tag):
30730 length is already host endian, no need to convert. Fixes playback of
30731 tagged files on PPC. (bug #128384)
30733 2004-01-13 Julien MOUTTE <julien@moutte.net>
30735 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
30736 colorbalance interface stating if it is hardware based or software
30738 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
30739 Removing a trailing comma.
30740 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30741 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
30742 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
30743 the documentation seems to be wrong on the -1000 to 1000 interval.
30745 2004-01-12 David Schleef <ds@schleef.org>
30747 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
30748 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
30749 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
30750 Fix negotiation. Add a bufferalloc function for the sink pad,
30751 and generally clean up some of the code.
30753 2004-01-12 Julien MOUTTE <julien@moutte.net>
30755 * gst-libs/gst/colorbalance/colorbalancechannel.c:
30756 (gst_color_balance_channel_dispose): Adding safety check in dispose
30758 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
30759 (gst_xvimagesink_xcontext_clear),
30760 (gst_xvimagesink_interface_supported),
30761 (gst_xvimagesink_colorbalance_list_channels),
30762 (gst_xvimagesink_colorbalance_set_value),
30763 (gst_xvimagesink_colorbalance_get_value),
30764 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
30765 Adding colorbalance interface support to set XV parameters such as
30766 HUE, BRIGHTNESS, CONTRAST, SATURATION.
30767 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
30770 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30772 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
30773 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
30774 (gst_audio_convert_init), (gst_audio_convert_set_property),
30775 (gst_audio_convert_get_property), (gst_audio_convert_chain),
30776 (gst_audio_convert_link),
30777 (gst_audio_convert_buffer_to_default_format),
30778 (gst_audio_convert_buffer_from_default_format), (plugin_init):
30779 - implement _getcaps and use it
30781 - remove float caps since no float conversion is actually done
30782 - remove properties and arguments that were to be used for rate
30785 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30787 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
30788 (gst_audio_structure_set_int):
30789 * gst-libs/gst/audio/audio.h:
30790 add helper functions for _getcaps matching the standard audio
30793 2004-01-12 David Schleef <ds@schleef.org>
30795 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
30796 Test that pad is negotiated before getting its caps.
30798 2004-01-12 Julien MOUTTE <julien@moutte.net>
30800 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
30801 analyzing the pads of an element the bin is mostly in READY state so
30802 no caps were negotiated. This helper function needs to work with
30803 _get_caps directly then. I was not freeing them though, added that to
30806 2004-01-12 Julien MOUTTE <julien@moutte.net>
30808 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
30809 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
30810 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
30811 than the free_func.
30813 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
30815 * sys/oss/gstossaudio.c: (plugin_init):
30816 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
30817 * sys/oss/gstosselement.h:
30818 make an oss debugging category
30819 make failure more descriptive
30821 2004-01-11 David Schleef <ds@schleef.org>
30823 * ext/ffmpeg/gstffmpeg.c:
30824 * ext/ffmpeg/gstffmpegcodecmap.c:
30825 * ext/ffmpeg/gstffmpegdec.c:
30826 * ext/ffmpeg/gstffmpegenc.c:
30827 * ext/ffmpeg/gstffmpegprotocol.c:
30828 * ext/gdk_pixbuf/gstgdkanimation.c:
30829 * ext/jpeg/gstjpeg.c:
30830 * ext/libpng/gstpng.c:
30831 * ext/mpeg2dec/perftest.c:
30832 * ext/speex/gstspeex.c:
30833 * gst-libs/gst/resample/dtos.c:
30834 * gst/intfloat/gstintfloatconvert.c:
30835 * gst/oneton/gstoneton.c:
30836 * gst/rtjpeg/RTjpeg.c:
30837 * gst/rtp/gstrtp.c:
30838 * sys/dxr3/dxr3init.c:
30839 * sys/glsink/gstgl_nvimage.c:
30840 * sys/glsink/gstgl_pdrimage.c:
30841 * sys/glsink/gstglsink.c:
30842 * testsuite/gst-lint:
30843 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
30845 2004-01-11 David Schleef <ds@schleef.org>
30847 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
30848 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
30849 * ext/gdk_pixbuf/gstgdkanimation.c:
30850 (gst_gdk_animation_iter_create_pixbuf):
30851 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30852 (gst_gdk_pixbuf_chain):
30853 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30854 * ext/jack/gstjack.c: (gst_jack_change_state):
30855 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
30856 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
30857 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
30858 * gst/videofilter/gstvideofilter.c:
30859 (gst_videofilter_set_output_size):
30860 Remove all usage of gst_pad_get_caps(), and replace it with
30861 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
30863 2004-01-11 David Schleef <ds@schleef.org>
30866 * ext/Makefile.am: Fixes to make ext/libcaca compile.
30867 * ext/divx/gstdivxdec.c:
30868 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
30869 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
30870 handle images that span multiple buffers. Now work with both
30871 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
30872 * ext/gdk_pixbuf/gstgdkpixbuf.h:
30873 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
30874 video/video.h changes
30875 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
30876 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30877 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
30878 of GstData free function.
30879 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30882 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30884 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
30885 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
30886 (gst_v4l2element_get_property):
30887 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
30888 add norm, channel and frequency properties.
30889 * sys/v4l2/gstv4l2tuner.c:
30890 fixes for tuner interface changes
30891 * sys/v4l2/gstv4l2element.h:
30892 * sys/v4l2/gstv4l2src.c:
30893 * sys/v4l2/gstv4l2src.h:
30894 * sys/v4l2/v4l2src_calls.c:
30895 * sys/v4l2/v4l2src_calls.h:
30896 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
30898 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30900 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
30901 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
30902 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
30903 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
30904 * gst-libs/gst/tuner/tuner.h:
30905 GObjects aren't const.
30906 Add find_by_name functions.
30907 Add checks to _changed functions.
30908 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
30909 (gst_v4l_tuner_get_norm):
30912 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
30914 * gst-libs/gst/video/video.h:
30915 Fix caps template names to be understandable.
30916 Prefix everything with GST_VIDEO.
30917 * ext/aalib/gstaasink.c:
30918 * ext/divx/gstdivxdec.c:
30919 * ext/divx/gstdivxenc.c:
30920 * ext/gdk_pixbuf/gstgdkpixbuf.c:
30921 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
30922 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
30923 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
30924 * ext/libcaca/gstcacasink.c:
30925 * ext/libpng/gstpngenc.c: (raw_caps_factory):
30926 * ext/snapshot/gstsnapshot.c:
30927 * ext/swfdec/gstswfdec.c:
30928 * ext/xvid/gstxviddec.c:
30929 * ext/xvid/gstxvidenc.c:
30930 * gst/chart/gstchart.c:
30931 * gst/deinterlace/gstdeinterlace.c:
30932 * gst/effectv/gsteffectv.c:
30933 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
30934 * gst/goom/gstgoom.c:
30935 * gst/median/gstmedian.c:
30936 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
30937 (gst_monoscope_srcconnect), (gst_monoscope_chain):
30938 * gst/overlay/gstoverlay.c:
30939 * gst/smooth/gstsmooth.c:
30940 * gst/smpte/gstsmpte.c:
30941 * gst/synaesthesia/gstsynaesthesia.c:
30942 * gst/videocrop/gstvideocrop.c:
30943 * gst/videodrop/gstvideodrop.c:
30944 * gst/y4m/gsty4mencode.c:
30945 * sys/qcam/gstqcamsrc.c:
30946 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
30947 Make them work with new video.h file.
30948 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30949 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30950 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30951 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30952 Make it work with new buffer allocation system.
30954 2004-01-11 Julien MOUTTE <julien@moutte.net>
30956 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
30957 pad_alloc_buffer implementation to use ->srcpad
30958 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
30959 pad_alloc_buffer implementation to use ->srcpad
30960 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
30961 pad_alloc_buffer implementation to use ->srcpad
30962 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
30963 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
30964 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30965 a reference to everything we need.
30966 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
30967 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
30968 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
30969 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
30970 a reference to everything we need.
30971 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
30973 2004-01-11 David Schleef <ds@schleef.org>
30975 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
30976 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
30977 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
30979 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
30980 value during a resize/renegotiation.
30981 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
30982 gst_pad_alloc_buffer();
30983 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
30984 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
30986 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
30987 Fix for rename of buffer private structure members.
30988 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
30989 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
30990 Fix for rename of buffer private structure members.
30991 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
30992 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
30993 Fix for rename of buffer private structure members.
30995 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
30997 reviewed by: David Schleef <ds@schleef.org>
30999 * gst/videofilter/Makefile.am:
31000 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
31001 from the patch by ds to fit in with recent make_filter changes.
31003 2004-01-11 Julien MOUTTE <julien@moutte.net>
31005 * configure.ac: Adding examples/switch/Makefile
31006 * examples/Makefile.am: Adding examples/switch
31007 * examples/switch/Makefile.am: Adding switcher example.
31008 * examples/switch/switcher.c: (got_eos), (idle_iterate),
31009 (switch_timer), (main): Adding an example demonstrating switch usage
31010 with 2 videotestsrc showing different patterns.
31011 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
31012 (gst_switch_init): Fixing switch with the new caps system.
31014 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
31016 * gst-libs/gst/video/video.h:
31017 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
31018 They should probably be like
31019 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
31021 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
31023 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31024 (qtdemux_parse_trak):
31025 fix audio chunk size/timestamp calculation
31027 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
31029 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
31032 2004-01-11 Steve Baker <steve@stevebaker.org>
31034 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
31035 (gst_agingtv_base_init), (gst_agingtv_class_init),
31036 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
31037 (gst_agingtv_set_property), (gst_agingtv_get_property):
31038 Port agingTV to videofilter
31040 2004-01-09 Julien MOUTTE <julien@moutte.net>
31042 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
31043 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31045 2004-01-09 Julien MOUTTE <julien@moutte.net>
31047 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
31048 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31049 * gst-libs/gst/xoverlay/xoverlay.c:
31050 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
31051 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
31052 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31053 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31054 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
31055 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
31056 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
31057 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
31058 the bufferalloc_function to replace bufferpools, fixing the XOverlay
31059 interface implementation to handle xid being 0 and fix some bugs
31060 triggered by Benjamin's testcase.
31061 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
31062 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
31063 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
31064 the bufferalloc_function to replace bufferpools, fixing the XOverlay
31065 interface implementation to handle xid being 0 and fix some bugs
31066 triggered by Benjamin's testcase.
31068 2004-01-09 David Schleef <ds@schleef.org>
31070 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
31071 mouse pointer events. It works.
31073 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
31075 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
31076 Use explicit caps - fix capsnego.
31077 * ext/xvid/gstxviddec.c:
31078 * ext/xvid/gstxvidenc.c:
31079 Remove macro-inside-macro which caused compile errors.
31080 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
31081 Error out if it's not a RIFF file. Else we error out without
31082 gst_element_error() which is not good...
31084 2004-01-08 David Schleef <ds@schleef.org>
31086 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
31087 Fix pad_link function to handle formats that ffmpeg returns
31088 as multiple caps structures.
31089 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
31090 Only complain if source buffer is _smaller_ than expected.
31091 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
31092 (gst_videoscale_handle_src_event): Resize navigation events
31093 when passing them upstream.
31094 * gst/videotestsrc/gstvideotestsrc.c:
31095 * gst/videotestsrc/gstvideotestsrc.h:
31096 * gst/videotestsrc/videotestsrc.c:
31097 * gst/videotestsrc/videotestsrc.h:
31098 Rewrite many of the buffer painting functions to handle odd
31099 sizes (for many formats, size%4!=0 or size%8!=0). Most have
31100 been verified to work with my video card.
31101 * testsuite/gst-lint: Add check for elements calling
31102 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
31104 2004-01-08 David Schleef <ds@schleef.org>
31106 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
31107 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
31109 2004-01-08 Julien MOUTTE <julien@moutte.net>
31111 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
31112 configure event is not emiting the desired size signal. That fixes
31113 aspect ratio issues with gst-player.
31115 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
31117 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
31120 2004-01-08 Julien MOUTTE <julien@moutte.net>
31122 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
31123 public method to fire size signal.
31125 2004-01-07 Julien MOUTTE <julien@moutte.net>
31127 * examples/gstplay/Makefile.am: Adding the interface library.
31128 * gst-libs/gst/play/Makefile.am: Adding the interface library.
31129 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
31130 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
31131 GST_IS_X_OVERLAY before signal connect.
31132 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
31133 Removing the have_video_size signal.
31134 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
31135 and associated public method.
31136 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31137 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
31139 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
31140 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
31142 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
31143 Using XOverlay public method to fire size signal.
31145 2004-01-07 David Schleef <ds@schleef.org>
31147 * gst/videofilter/Makefile.am:
31148 * gst/videofilter/gstvideotemplate.c:
31149 * gst/videofilter/make_filter:
31150 Create gstvideoexample.c in a srcdir!=builddir friendly way.
31151 Convert make_filter to /bin/sh script.
31153 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
31155 * gst/modplug/gstmodplug.cc: fix element description
31157 2004-01-07 Julien MOUTTE <julien@moutte.net>
31159 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31160 (got_video_size): Adding some new lines in g_print calls.
31161 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31162 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
31163 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
31164 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
31165 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
31166 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
31167 Complete code review, reverting some stuff i disagree with, adding
31168 some fixes : time synchronization on invalid timestamps, renegotiation
31170 * sys/ximage/ximagesink.h:
31171 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
31172 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
31173 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
31174 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
31175 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
31176 (gst_xvimagesink_buffer_new),
31177 (gst_xvimagesink_navigation_send_event),
31178 (gst_xvimagesink_set_xwindow_id),
31179 (gst_xvimagesink_get_desired_size),
31180 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
31181 stuff i disagree with, adding some fixes : Renegotiation of private
31182 window, implementing get_desired_size.
31184 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
31186 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
31187 (gst_afsink_handle_event):
31188 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
31189 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
31190 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
31191 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
31192 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
31193 Fix for instantiate-test (see core). Also remove dead code from
31194 jpegenc (which still needs fixing, but that's lower on my TODO
31196 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
31197 Never return NULL as caps.
31199 2004-01-07 David Schleef <ds@schleef.org>
31203 * ext/librfb/Makefile.am:
31204 * ext/librfb/gstrfbsrc.c:
31205 New source plugin based on librfb-0.1. RFB (remote framebuffer)
31206 is the protocol used by VNC.
31208 2004-01-07 David Schleef <ds@schleef.org>
31210 * gst/videofilter/gstvideotemplate.c:
31211 * gst/videofilter/gstvideotemplate.h:
31212 * gst/videofilter/make_filter:
31213 Merge videotemplate header into source file.
31214 * gst/effectv/Makefile.am:
31215 * gst/effectv/gsteffectv.c: (plugin_init):
31216 * gst/effectv/gstwarp.c:
31217 Make warpTV a subclass of videofilter.
31219 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31221 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
31222 Add guard against invalid utf-8 conversions in mad. Just in case.
31224 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
31226 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31227 Fix for bug shown by poisoning
31229 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31231 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
31232 (gst_v4lmjpegsrc_buffer_free):
31233 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
31234 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
31235 (gst_v4lsrc_buffer_free):
31236 Fix for removed bufferpools.
31238 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31240 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
31241 Fix caps negotiation.
31243 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
31244 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
31245 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
31247 * ext/mpeg2dec/gstmpeg2dec.c:
31248 * gst-libs/gst/navigation/navigation.c:
31249 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
31250 * gst-libs/gst/navigation/navigation.h:
31251 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
31252 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
31253 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
31254 Super-simple first version of mouse and keyboard events. Clicking
31255 on a DVD menu now works, although it may not take you where you
31258 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31259 * gst/videotestsrc/gstvideotestsrc.c:
31260 (gst_videotestsrc_src_fixate):
31261 These fixate functions were broken - they never actually
31264 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31266 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
31267 (gst_icecastsend_init):
31268 fix for new caps system.
31269 * gst-libs/gst/mixer/mixertrack.h:
31270 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
31271 Add 'master track' flag (for tools like ACME that only want to
31272 change the main volume).
31274 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
31276 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
31277 (gst_xvid_csp_to_caps):
31278 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
31279 * ext/xvid/gstxvidenc.c:
31280 ifdef out ARGB type when it isn't available
31281 in xvidcore 1.0.0beta2
31283 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
31285 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
31286 When we have received a new SCR right in the first buffer after
31287 a seek (so in the same cycle that handles the discont), we should
31288 handle the buffer instead of unreffing it, else we lose data.
31290 2004-01-06 Iain <iain@prettypeople.org>
31292 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
31293 buffer-frames caps too.
31295 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
31296 caps that we need, don't destroy them all and rebuild them. And when
31297 creating src pads, use the src pad template rather than the sink...
31299 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
31301 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
31302 Add pad to element *after* setting functions such as event handler.
31303 Without this, the scheduler (opt) will link pads, set the event
31304 handler from the default event function (dispatcher in gstpad.c)
31305 and *after* that, we will set our own event function, which will
31306 thus never be used (and thus mpegdemux doesn't handle events).
31308 2004-01-04 David Schleef <ds@schleef.org>
31310 Fix the fixate functions to handle new prototype:
31311 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
31312 * gst/videotestsrc/gstvideotestsrc.c:
31313 (gst_videotestsrc_src_fixate):
31314 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
31315 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
31316 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
31318 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31320 * sys/ximage/ximagesink.h:
31321 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
31322 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
31323 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
31324 (gst_ximagesink_xoverlay_init):
31325 assorted fixes to make (re)embedding work
31326 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
31327 (gst_ximagesink_get_desired_size):
31328 implement desired size additions to XOverlay
31330 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
31332 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
31333 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
31334 (gst_x_overlay_got_desired_size):
31335 * gst-libs/gst/xoverlay/xoverlay.h:
31336 Add optional "desired size" signal and querying.
31338 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31340 * gst/matroska/matroska-demux.c:
31341 (gst_matroska_demux_parse_blockgroup):
31342 Fix EBML-laced block parsing. Diffs are relative to previous
31343 lace, not the first lace. Thanks to Mosu from the Matroska
31344 team for detecting this.
31345 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31346 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
31347 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
31348 (gst_wavparse_change_state):
31349 * gst/wavparse/gstwavparse.h:
31350 Quickfix for capsnego.
31352 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31354 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
31355 Fix indenting, fix pad creation.
31357 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31359 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
31360 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
31361 (gst_xviddec_sink_link):
31362 Implement src_getcaps() so proper size caps is negotiated.
31364 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31366 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
31367 Finish flac decoder on EOS. See #116178.
31369 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31371 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
31372 (gst_matroska_demux_add_stream):
31373 * gst/matroska/matroska-ids.h:
31374 Add getcaps() function to fix capsnego...
31376 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
31378 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31379 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
31380 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
31381 Fix more integer overflows. Again, see #126967.
31383 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31385 * ext/mpeg2dec/gstmpeg2dec.c:
31386 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
31389 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31392 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
31393 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
31394 * ext/xvid/gstxvid.h:
31395 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
31396 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
31397 (gst_xviddec_src_link), (gst_xviddec_sink_link),
31398 (gst_xviddec_change_state):
31399 * ext/xvid/gstxviddec.h:
31400 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
31401 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
31402 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
31403 (gst_xvidenc_link), (gst_xvidenc_set_property),
31404 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
31405 * ext/xvid/gstxvidenc.h:
31406 Update xvid plugin to latest xvid (1.0.0-beta3) API.
31408 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31410 * gst/rtp/rtp-packet.c:
31411 Add sys/types.h include, since OS X doesn't define in_addr_t
31412 in netinet/in.h, like it does on Linux (see #129600).
31414 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
31416 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
31418 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
31419 Correct logic of dispose function (see #129306).
31421 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31423 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
31424 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
31425 (gst_mpeg_parse_init):
31426 * gst/mpegstream/gstmpegparse.h:
31427 Remove clock (which was never provided, i.e. dead code), and
31428 also fix integer overflows at high PTS values (see #126967).
31430 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31432 * ext/flac/gstflacdec.c:
31433 * ext/libpng/gstpngenc.h:
31434 * ext/mikmod/gstmikmod.h:
31435 OS X fixes (see #126628).
31437 2004-01-02 David Schleef <ds@schleef.org>
31439 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
31440 (gst_alsa_src_base_init): Remove bogus "src" request pad.
31441 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
31442 (gst_mpeg_parse_class_init): Move pad template registration
31443 to class_init, since the derived class (mpegdemux) doesn't
31446 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
31448 * sys/ximage/Makefile.am:
31449 * sys/xvideo/Makefile.am:
31450 * sys/xvimage/Makefile.am:
31451 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
31452 after installation (see #127664).
31454 2004-01-02 David Schleef <ds@schleef.org>
31456 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
31457 (gst_ffmpegenc_connect): Negotiation fixes.
31458 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
31459 Remove inappropriate gst_caps_free().
31460 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31461 Reenable Ronald's internal resize code, since the core handles
31464 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31466 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
31467 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
31468 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
31469 Fix pad template stuff.
31471 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31473 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
31474 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
31475 fix signed integer reading/writing.
31477 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
31480 Remove outdated document
31482 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
31484 * gst/cutter/gstcutter.c: (gst_cutter_init):
31485 src pad was being created twice - oops.
31487 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31489 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31490 Comment out internal resize. It doesn't handle the resulting
31491 XEvent internally, does another try_set_caps() which leads to
31492 a really nice loop.
31493 Real fix will come when Julien and Dave are awake. ;).
31495 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
31497 * ext/mpeg2enc/gstmpeg2enc.cc:
31498 fix const/nonconst compile issue.
31500 2004-01-02 David Schleef <ds@schleef.org>
31502 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
31503 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
31504 Add fixate function and a check for bad formats.
31506 2004-01-01 David Schleef <ds@schleef.org>
31509 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
31510 (gst_audiofilter_init):
31511 * gst/debug/efence.c: (gst_efence_init):
31512 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
31513 (gst_deinterlace_init):
31514 * gst/volume/gstvolume.c: (volume_connect):
31516 2004-01-01 David Schleef <ds@schleef.org>
31518 Convert elements to use gst_pad_use_explicit_caps() where
31520 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
31521 * ext/audiofile/gstafparse.c: (gst_afparse_init),
31522 (gst_afparse_open_file):
31523 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
31524 (gst_afsrc_open_file):
31525 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
31526 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
31527 (gst_ffmpegdec_chain):
31528 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
31529 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
31530 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
31531 (gst_gdk_pixbuf_chain):
31532 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
31533 (gst_jpegdec_chain):
31534 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
31535 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
31536 (gst_mikmod_negotiate):
31537 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
31538 (gst_mpeg2dec_negotiate_format):
31539 * ext/mpeg2enc/gstmpeg2enc.cc:
31540 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
31541 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
31542 (gst_speexdec_sinkconnect):
31543 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
31544 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
31545 (gst_vorbisfile_new_link):
31546 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
31547 (gst_ac3parse_chain):
31548 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
31549 (gst_asf_demux_setup_pad):
31550 * gst/auparse/gstauparse.c: (gst_auparse_init),
31551 (gst_auparse_chain):
31552 * gst/id3/gstid3types.c: (gst_id3types_loop):
31553 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
31554 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
31555 (mp1videoparse_parse_seq):
31556 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
31558 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
31559 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
31560 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
31561 (gst_mpeg_parse_send_data):
31562 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
31563 (gst_qtdemux_add_stream):
31564 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
31565 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
31566 (gst_wavparse_parse_fmt):
31568 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
31571 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
31572 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
31573 it therefore uses the wrong include paths. Too bad... Note
31574 that 1.6.1.93 is not release yet. ;).
31575 Also add a check for mplex, which is now using the lib'ified
31576 mplex from mjpegtools, too.
31577 * ext/ffmpeg/gstffmpegcodecmap.c:
31578 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
31579 issues. I don't think ffmpeg handles 3ivx correctly, so this
31580 probably won't work. But it won't hurt either.
31581 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
31582 (gst_ffmpegdec_chain):
31583 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
31584 (gst_ffmpegenc_chain_audio):
31585 Fix memleak in audio encoding. Close codec if open fails, this
31586 calls the cleanup routines so we can re-use the context.
31587 * ext/mpeg2enc/gstmpeg2enc.cc:
31588 Fix pad template names/types, fix memory issue with getcaps().
31589 * ext/mpeg2enc/gstmpeg2encoder.cc:
31590 * ext/mpeg2enc/gstmpeg2encoder.hh:
31591 Fix compile issue with new caps system (const thingy).
31592 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31593 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
31594 We read a first frame right on initing, so that we have a caps
31595 when we init the output. This caps is cached in padprivate and
31596 read as first frame.
31597 * ext/mplex/Makefile.am:
31598 * ext/mplex/gstmplex.cc:
31599 * ext/mplex/gstmplex.h:
31600 * ext/mplex/gstmplex.hh:
31601 * ext/mplex/gstmplexibitstream.cc:
31602 * ext/mplex/gstmplexibitstream.hh:
31603 * ext/mplex/gstmplexjob.cc:
31604 * ext/mplex/gstmplexjob.hh:
31605 * ext/mplex/gstmplexoutputstream.cc:
31606 * ext/mplex/gstmplexoutputstream.hh:
31607 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
31608 had issues, didn't do capsnego, supported only a subset of the
31609 mplex features and required a mplex fork in our local CVS. Plus
31610 that it worked agaist a very old mplex version. Rewriting was
31611 faster than updating it.
31612 * gst-libs/ext/Makefile.am:
31613 * gst-libs/ext/mplex/INSTRUCT:
31614 * gst-libs/ext/mplex/Makefile.am:
31615 * gst-libs/ext/mplex/README:
31616 * gst-libs/ext/mplex/TODO:
31617 * gst-libs/ext/mplex/ac3strm_in.cc:
31618 * gst-libs/ext/mplex/audiostrm.hh:
31619 * gst-libs/ext/mplex/audiostrm_out.cc:
31620 * gst-libs/ext/mplex/aunit.hh:
31621 * gst-libs/ext/mplex/bits.cc:
31622 * gst-libs/ext/mplex/bits.hh:
31623 * gst-libs/ext/mplex/buffer.cc:
31624 * gst-libs/ext/mplex/buffer.hh:
31625 * gst-libs/ext/mplex/fastintfns.h:
31626 * gst-libs/ext/mplex/format_codes.h:
31627 * gst-libs/ext/mplex/inputstrm.cc:
31628 * gst-libs/ext/mplex/inputstrm.hh:
31629 * gst-libs/ext/mplex/lpcmstrm_in.cc:
31630 * gst-libs/ext/mplex/mjpeg_logging.cc:
31631 * gst-libs/ext/mplex/mjpeg_logging.h:
31632 * gst-libs/ext/mplex/mjpeg_types.h:
31633 * gst-libs/ext/mplex/mpastrm_in.cc:
31634 * gst-libs/ext/mplex/mpegconsts.cc:
31635 * gst-libs/ext/mplex/mpegconsts.h:
31636 * gst-libs/ext/mplex/mplexconsts.hh:
31637 * gst-libs/ext/mplex/multplex.cc:
31638 * gst-libs/ext/mplex/outputstream.hh:
31639 * gst-libs/ext/mplex/padstrm.cc:
31640 * gst-libs/ext/mplex/padstrm.hh:
31641 * gst-libs/ext/mplex/stillsstream.cc:
31642 * gst-libs/ext/mplex/stillsstream.hh:
31643 * gst-libs/ext/mplex/systems.cc:
31644 * gst-libs/ext/mplex/systems.hh:
31645 * gst-libs/ext/mplex/vector.cc:
31646 * gst-libs/ext/mplex/vector.hh:
31647 * gst-libs/ext/mplex/videostrm.hh:
31648 * gst-libs/ext/mplex/videostrm_in.cc:
31649 * gst-libs/ext/mplex/videostrm_out.cc:
31650 * gst-libs/ext/mplex/yuv4mpeg.cc:
31651 * gst-libs/ext/mplex/yuv4mpeg.h:
31652 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
31653 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
31654 We don't fork mjpegtools' mplex in our CVS anymore.
31655 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
31656 (gst_avi_demux_add_stream):
31657 * gst/avi/gstavidemux.h:
31658 Add getcaps() function for proper caps nego. This makes some
31659 parts of AVI playback/reading work.
31660 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
31661 Resize window on new capsnego. This is probably wrong, but
31662 I'm still committing it because with current capsnego, the
31663 first successfull capsnego is auto-fixated, therefore rounded
31664 down to the lowest values in the caps. this results in a 16x16
31665 XWindow that is not reized when real capsnego finishes.
31666 Dave, I see more cases of this, do you know a proper solution?
31667 * tools/gst-launch-ext.in:
31668 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
31670 2003-12-31 David Schleef <ds@schleef.org>
31672 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
31673 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
31674 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
31676 2003-12-30 David Schleef <ds@schleef.org>
31678 * ext/ffmpeg/gstffmpegcolorspace.c:
31679 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
31680 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
31681 (gst_ffmpegcsp_chain): Negotiation fixes
31682 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
31683 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
31684 (gst_audio_convert_link), (gst_audio_convert_channels):
31685 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
31686 (gst_audioscale_link), (gst_audioscale_get_buffer),
31687 (gst_audioscale_chain): Negotiation fixes
31688 * gst/audioscale/gstaudioscale.h:
31689 * gst/videofilter/gstvideofilter.c:
31690 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
31691 (gst_videofilter_link), (gst_videofilter_init),
31692 (gst_videofilter_set_output_size), (gst_videofilter_setup),
31693 (gst_videofilter_find_format_by_structure):
31694 * gst/videofilter/gstvideofilter.h: Negotiation fixes
31695 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
31696 (gst_videoscale_link):
31697 * gst/videoscale/videoscale.c: (videoscale_get_structure),
31698 (videoscale_find_by_structure), (gst_videoscale_setup):
31699 * gst/videoscale/videoscale.h: Negotiation fixes
31700 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
31701 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
31702 function, restrict resizing to a multiple of 4 (hack until
31703 everyone supports odd sizes correctly).
31705 2003-12-29 Colin Walters <walters@verbum.org>
31707 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
31710 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
31712 * ext/sndfile/gstsf.c: (gst_sf_loop):
31713 Fix warning about discarding const qualifier
31715 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
31717 * gst/cutter/gstcutter.c:
31718 * gst/videoscale/gstvideoscale.c:
31719 * gst/volenv/gstvolenv.c:
31720 * gst-libs/gst/audio/audio.c:
31721 * gst-libs/gst/video/video.c:
31724 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31726 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
31727 Don't send ALSA debugging to stderr.
31728 * ext/alsa/gstalsa.h:
31729 Use GST_WARNING instead of g_warning when ALSA functions fail.
31731 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31733 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
31734 Free XVAdapterInfo correctly.
31736 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31738 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
31739 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
31740 Make id3tag use correct caps nego.
31742 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
31744 * ext/ivorbis/vorbis.c:
31745 * ext/ivorbis/vorbisenc.h:
31746 * ext/ivorbis/vorbisfile.c:
31747 Modify so that it uses the new caps things
31749 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
31751 * testsuite/spider/spider1.c: (main):
31752 * testsuite/spider/spider2.c: (main):
31753 * testsuite/spider/spider3.c: (main):
31754 Make tests compile again. They probably don't work.
31756 2003-12-24 Colin Walters <walters@verbum.org>
31758 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
31759 we can't fixate the caps anymore.
31761 2003-12-23 David Schleef <ds@schleef.org>
31763 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
31764 * sys/oss/gstosssink.c: (gst_osssink_init),
31765 (gst_osssink_sink_fixate): Add fixate function.
31767 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
31769 * ext/ffmpeg/gstffmpegcodecmap.c:
31770 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
31771 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
31772 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
31773 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
31774 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
31775 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
31776 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
31777 fix typo in RGB masks, and move back to "old" colorspace
31778 capsnego code until whoever wrote this new crap has actually
31779 tested it so that it works.
31780 And yes, this works, keep it that way please.
31782 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31784 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
31785 (gst_divxdec_init), (gst_divxdec_negotiate):
31786 * ext/divx/gstdivxdec.h:
31787 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
31788 (gst_divxenc_init):
31789 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
31790 (gst_faac_sinkconnect), (gst_faac_srcconnect):
31791 * ext/mpeg2enc/gstmpeg2enc.cc:
31792 * ext/mpeg2enc/gstmpeg2encoder.cc:
31793 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
31794 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
31795 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
31796 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
31797 (dxr3spusink_init):
31798 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
31799 (dxr3videosink_init):
31800 Fix caps breakage after Dave's caps branch merge.
31802 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
31804 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
31805 Fix for 24bpp display.
31807 2003-12-23 Colin Walters <walters@verbum.org>
31809 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
31810 a GnomeVFSHandle directly.
31812 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31814 * gst/volume/Makefile.am:
31815 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
31816 (volume_base_init), (volume_init):
31817 Reenable volume element and fix to work with new caps stuff.
31818 Rhythmbox needs this.
31820 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31822 * gst/qtdemux/qtdemux.c: (plugin_init):
31823 qtdemux requires bytestream
31825 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31827 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
31828 Fix remaining caps handling errors due to CAPS merge.
31830 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
31832 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
31833 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
31834 (gst_faad_srcconnect):
31835 Port to new caps system.
31837 2003-12-21 Julien MOUTTE <julien@moutte.net>
31839 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
31840 (got_video_size), (main): using g_print instead of g_message.
31841 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
31842 signal which was not emitted because of "switch" element added to the
31843 bin but not connected. (Removing from the bin temporarily)
31845 2003-12-21 Julien MOUTTE <julien@moutte.net>
31847 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
31848 find X development files. I don't understand the previous tests and
31849 they fail on my debian/ppc unstable. This one works.
31850 * examples/gstplay/player.c: (main): Set the pipeline to READY before
31852 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
31853 (gst_play_set_video_sink), (gst_play_set_audio_sink),
31854 (gst_play_set_visualization): Add some safety checks in set_ methods
31855 and state_change. This was throwing some ugly CRITICAL messages when
31856 pipeline was getting disposed and casts were failing.
31858 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
31861 Improve mpeg2enc detection. This is for distributions that do
31862 ship mjpegtools, but without mpeg2enc. Also does object check
31863 for might there ever be ABI incompatibility.
31864 * ext/mpeg2enc/gstmpeg2enc.cc:
31865 Add Andrew as second maintainer (he's helping me), and also add
31866 an error if no caps was set. This happens if I pull before capsnego
31867 and that's something I should solve sometime else.
31868 * gst/matroska/matroska-demux.c:
31869 (gst_matroska_demux_parse_blockgroup):
31871 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
31872 (gst_matroska_mux_track_header):
31873 Add caps to templates.
31874 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
31875 Add mpegversion=1 to prevent confusion with MPEG/AAC.
31876 * gst/mpegstream/gstmpegdemux.c:
31877 Remove layer since it causes warnings about unfixed caps.
31878 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
31879 Fix obvious typo (we error out if caps were set, we should of
31880 course error out if *no* caps were set).
31881 * sys/oss/gstosselement.c: (gst_osselement_convert):
31882 Fix format conversion, we confused bits/bytes.
31883 * sys/oss/gstosselement.h:
31884 Improve documentation for 'bps'.
31886 Remove stuff about plugins that need removing - this was done
31888 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
31889 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
31890 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
31891 (gst_v4lsrc_src_query):
31892 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
31893 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
31894 Add get_query_types(), get_formats() and query() functions.
31896 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
31898 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
31899 * moved CVS to freedesktop.org