1 2006-08-29 Thomas Vander Stichele <thomas at apestaart dot org>
3 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_chain):
4 fix buffer unreffing on a header push failure
6 2006-08-28 Wim Taymans <wim@fluendo.com>
8 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_sink_event),
9 (gst_audio_rate_chain):
10 Make the metadata of the buffer writable before changing its
13 2006-08-28 Wim Taymans <wim@fluendo.com>
15 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_reset),
16 (gst_audio_rate_setcaps), (gst_audio_rate_init),
17 (gst_audio_rate_sink_event), (gst_audio_rate_src_event),
18 (gst_audio_rate_chain), (gst_audio_rate_change_state):
19 Fix audiorate some more.
20 Reset and resync counters on flush and READY.
21 Handle the DISCONT flag correctly.
22 Use GstSegment to track position.
23 Fail when not negotiated.
26 2006-08-25 Michael Smith <msmith@fluendo.com>
28 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
30 Remove accidently included debug line.
32 2006-08-25 Wim Taymans <wim@fluendo.com>
34 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render):
36 If a buffer is received with no caps, make the buffer metadata
37 writable and set the caps, making sure that we don't screw up the
40 2006-08-25 Michael Smith <msmith@fluendo.com>
42 * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset),
43 (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain):
44 Fix memory leaks and misleading debug messages, add a couple of
47 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats),
48 (gst_multi_fd_sink_render):
49 Do not use gst_buffer_make_writable() in a basesink render method,
50 as it may incorrectly unref the buffer. Instead, use convoluted
51 dance to avoid copying the buffer except when we need to.
53 2006-08-25 Michael Smith <msmith@fluendo.com>
55 * ext/vorbis/vorbisenc.c:
56 (gst_vorbis_enc_buffer_check_discontinuous):
57 Allow very small discontinuities in the timestamps. These we can't
58 do anything useful with anyway (because vorbis's timestamps have
59 only sample granularity), and are commonly produced by elements with
60 minor bugs. Allow up to 1/2 a sample out.
63 2006-08-24 Wim Taymans <wim@fluendo.com>
65 * tests/examples/seek/seek.c: (seek_cb), (start_seek), (stop_seek),
66 (play_scrub_toggle_cb), (main):
67 Add a checkbox to enable play scrubbing. Makes it possible to disable
70 2006-08-23 Stefan Kost <ensonic@users.sf.net>
72 * tests/check/elements/.cvsignore:
75 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
77 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
78 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init),
79 (gst_ogm_parse_class_init), (gst_ogm_parse_dispose),
80 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
81 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
82 (gst_ogm_parse_stream_header), (gst_ogm_parse_comment_packet),
83 (gst_ogm_text_parse_strip_trailing_zeroes),
84 (gst_ogm_parse_data_packet), (gst_ogm_parse_chain),
85 (gst_ogm_parse_sink_event), (gst_ogm_parse_change_state):
86 Refactor ogm parse, do better input checking, misc. clean-ups.
87 Cache incoming events and push them once the source pad has
88 been created. Don't pass unterminated strings to sscanf().
89 Strip trailing zeroes from subtitle text output, since they
90 are not valid UTF-8. Don't push vorbiscomment packets on
91 the subtitle text pad. Output perfect streams if possible.
93 2006-08-23 Wim Taymans <wim@fluendo.com>
95 * tests/check/libs/cddabasesrc.c: (GST_START_TEST):
96 Waits for tasks to settle down so that we clean up correctly for
99 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
101 * tests/check/libs/tag.c: (GST_START_TEST), (taglists_are_equal):
102 Unit test fixes: \377 is more likely to fit into 8 bits than \777;
103 actually return return value in taglists_are_equal.
105 2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
107 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
108 Fix crash due to broken bitstream parsing on x86-64: can't make
109 any assumptions about sizeof(struct) due to alignment/packing
110 differences on different architectures. Fixes #351790.
112 2006-08-22 Wim Taymans <wim@fluendo.com>
114 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
115 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
116 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
117 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
118 (gst_riff_parse_info):
119 Protect public functions against bad input.
123 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
125 * gst-libs/gst/riff/riff-ids.h:
126 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
127 Add voxware audio IDs (even if we can't play it) (#351795).
129 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
131 * gst-libs/gst/riff/riff-media.c:
132 (gst_riff_create_video_template_caps),
133 (gst_riff_create_audio_template_caps),
134 (gst_riff_create_iavs_template_caps):
135 Const-ify some arrays and use G_N_ELEMENTS instead
136 of wasting oodles of RAM on terminator bits.
138 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
140 * gst-libs/gst/tag/gstvorbistag.c:
141 (gst_tag_list_to_vorbiscomment_buffer):
142 * tests/check/libs/tag.c: (GST_START_TEST):
143 And the same for _to_vorbiscomment_buffer(): allow
144 id_data_len == 0 for speex.
146 2006-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
149 * docs/plugins/Makefile.am:
150 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
151 * docs/plugins/gst-plugins-base-plugins-sections.txt:
152 * docs/plugins/inspect/plugin-gdp.xml:
153 * gst/gdp/Makefile.am:
154 * tests/check/Makefile.am:
155 Move GDP plugin to -base from -bad. Closes #347783.
157 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
159 * gst-libs/gst/tag/gstvorbistag.c:
160 (gst_tag_list_from_vorbiscomment_buffer):
161 Allow id_data_len == 0 (needed for vorbis comments in Speex files).
162 Also add some checks to make sure we don't memcmp() beyond the end of
163 vorbiscomment buffer if the ID to check for is larger than the buffer.
165 * tests/check/libs/tag.c: (GST_START_TEST):
166 Some more tests for gst_tag_list_from_vorbiscomment_buffer().
168 2006-08-21 Tim-Philipp Müller <tim at centricular dot net>
170 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_metadata_set1),
171 (gst_vorbis_enc_set_metadata):
172 Use vorbis comment utility functions from libgsttag
173 instead of re-inventing the wheel (partially fixes #347091).
175 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
177 * tests/check/elements/audioconvert.c: (GST_START_TEST):
178 Fix leaks. Wait for state transitions that might happen ASYNC, as well
181 2006-08-21 Wim Taymans <wim@fluendo.com>
183 * docs/libs/Makefile.am:
184 * docs/libs/gst-plugins-base-libs-sections.txt:
185 * docs/libs/gst-plugins-base-libs.types:
186 Don't try to GObject scan the netbuffer as it's not a GObject.
189 * gst-libs/gst/netbuffer/gstnetbuffer.c:
190 * gst-libs/gst/netbuffer/gstnetbuffer.h:
191 Document GstNetBuffer.
193 2006-08-21 Stefan Kost <ensonic@users.sf.net>
195 * tests/check/elements/audioconvert.c: (GST_START_TEST),
196 (audioconvert_suite):
197 Add testcase for caps-size-explosion
199 2006-08-20 Stefan Kost <ensonic@users.sf.net>
201 * gst/audioconvert/gstaudioconvert.c:
202 (gst_audio_convert_get_unit_size), (set_structure_widths):
203 Lower debug, use g_assert in _get_unit_size
205 * gst/audioresample/gstaudioresample.c:
206 (audioresample_get_unit_size):
207 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
208 (gst_ffmpegcsp_get_unit_size):
209 * gst/videoscale/gstvideoscale.c: (gst_video_scale_get_unit_size):
210 use g_assert in _get_unit_size
212 2006-08-18 Wim Taymans <wim@fluendo.com>
214 * docs/libs/gst-plugins-base-libs-sections.txt:
215 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_set_packet_len),
216 (gst_rtp_buffer_pad_to), (gst_rtp_buffer_get_payload_subbuffer),
217 (gst_rtp_buffer_get_payload_buffer):
218 * gst-libs/gst/rtp/gstrtpbuffer.h:
219 Document GstRTPBuffer.
220 Added function to efficiently strip payload headers.
221 API: gst_rtp_buffer_get_payload_subbuffer()
223 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
225 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
226 (gst_tag_to_vorbis_comments):
227 Serialise unknown vorbis comments into GST_TAG_EXTENDED_COMMENT
228 tags and deserialise them properly as well (#347091).
229 Add some more gtk-doc blurbs and also some g_return_if_fail().
231 * tests/check/libs/tag.c: (GST_START_TEST),
232 (back_to_vorbis_comments), (taglists_are_equal), (tag_suite):
235 2006-08-17 Wim Taymans <wim@fluendo.com>
237 * ext/ogg/Makefile.am:
238 * ext/ogg/gstogg.c: (plugin_init):
239 * ext/ogg/gstoggaviparse.c: (gst_ogg_avi_parse_get_type),
240 (gst_ogg_avi_parse_base_init), (gst_ogg_avi_parse_class_init),
241 (gst_ogg_avi_parse_init), (gst_ogg_avi_parse_finalize),
242 (gst_ogg_avi_parse_setcaps), (gst_ogg_avi_parse_event),
243 (gst_ogg_avi_parse_push_packet), (gst_ogg_avi_parse_chain),
244 (gst_ogg_avi_parse_change_state), (gst_ogg_avi_parse_plugin_init):
245 Added ogg-in-avi parser element. Fixes #140139.
247 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
248 Fixed a bug in oggdemux debug code.
250 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
251 (gst_riff_create_audio_template_caps):
252 Recognise Ogg in the AVI extensible wave format.
254 2006-08-17 Tim-Philipp Müller <tim at centricular dot net>
256 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
257 Make buffer durations add up (duration should be next_ts-ts for
258 perfect streams). Fixes CD ripping to Ogg/Vorbis with vorbisenc
261 * tests/check/libs/cddabasesrc.c: (gst_cd_foo_src_close),
262 (test_buffer_timestamps), (cddabasesrc_suite):
263 Add unit test for the above.
265 * tests/check/Makefile.am:
266 Don't know why cddabasesrc test was in VALGRIND_TO_FIX, remove
269 2006-08-16 Wim Taymans <wim@fluendo.com>
271 * ext/alsa/gstalsasink.c: (gst_alsasink_set_property),
273 * ext/alsa/gstalsasrc.c: (gst_alsasrc_set_property),
275 Avoid setting and using a NULL device name.
276 Print more info when we fail to open a device.
278 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
280 * docs/libs/gst-plugins-base-libs-sections.txt:
281 * gst-libs/gst/tag/tag.h:
282 * gst-libs/gst/tag/tags.c: (gst_tag_parse_extended_comment):
283 API: add gst_tag_parse_extended_comment() (#351426).
285 * tests/check/Makefile.am:
286 * tests/check/libs/.cvsignore:
287 * tests/check/libs/tag.c: (GST_START_TEST), (tag_suite), (main):
288 Add unit test for gst_tag_parse_extended_comment().
290 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
292 * sys/ximage/ximagesink.c: (gst_ximagesink_get_property):
293 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_property):
296 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
298 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
299 * docs/plugins/gst-plugins-base-plugins-sections.txt:
300 * docs/plugins/gst-plugins-base-plugins.args:
301 * gst/playback/gstplaybin.c:
304 * docs/plugins/inspect/plugin-adder.xml:
305 * docs/plugins/inspect/plugin-alsa.xml:
306 * docs/plugins/inspect/plugin-audioconvert.xml:
307 * docs/plugins/inspect/plugin-audiorate.xml:
308 * docs/plugins/inspect/plugin-audioresample.xml:
309 * docs/plugins/inspect/plugin-audiotestsrc.xml:
310 * docs/plugins/inspect/plugin-cdparanoia.xml:
311 * docs/plugins/inspect/plugin-decodebin.xml:
312 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
313 * docs/plugins/inspect/plugin-gnomevfs.xml:
314 * docs/plugins/inspect/plugin-ogg.xml:
315 * docs/plugins/inspect/plugin-pango.xml:
316 * docs/plugins/inspect/plugin-playbin.xml:
317 * docs/plugins/inspect/plugin-subparse.xml:
318 * docs/plugins/inspect/plugin-tcp.xml:
319 * docs/plugins/inspect/plugin-theora.xml:
320 * docs/plugins/inspect/plugin-typefindfunctions.xml:
321 * docs/plugins/inspect/plugin-video4linux.xml:
322 * docs/plugins/inspect/plugin-videorate.xml:
323 * docs/plugins/inspect/plugin-videoscale.xml:
324 * docs/plugins/inspect/plugin-videotestsrc.xml:
325 * docs/plugins/inspect/plugin-volume.xml:
326 * docs/plugins/inspect/plugin-vorbis.xml:
327 * docs/plugins/inspect/plugin-ximagesink.xml:
328 * docs/plugins/inspect/plugin-xvimagesink.xml:
329 Update to CVS version.
331 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
333 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
334 (gst_play_bin_set_property), (gst_play_bin_get_property),
335 (value_list_append_structure_list),
336 (gst_play_bin_handle_redirect_message),
337 (gst_play_bin_handle_message):
338 Add "connection-speed" property; re-order redirect messages with
339 multiple redirect locations depending on the minimum bitrate if
340 that information is available and a connection speed is set
343 2006-08-14 Tim-Philipp Müller <tim at centricular dot net>
345 * gst/playback/gstplaybin.c:
346 Update max volume to the same value that the volume element uses.
348 2006-08-14 Wim Taymans <wim@fluendo.com>
350 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
353 2006-08-14 Wim Taymans <wim@fluendo.com>
355 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_submit_buffer),
356 (gst_ogg_demux_get_next_page), (gst_ogg_demux_perform_seek),
357 (gst_ogg_demux_read_chain), (gst_ogg_demux_loop):
358 Add some more debug info.
359 Don't crash when a seek failed.
360 Actually return the result of the seek instead of TRUE.
361 Ignore multiple BOS pages with the same serial so that we don't create
362 the same stream multiple times.
363 Post an error when we fail to do the initial seek.
365 2006-08-13 Wim Taymans <wim@fluendo.com>
367 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
368 (gst_alsa_detect_channels), (gst_alsa_probe_supported_formats):
371 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
372 (gst_alsa_mixer_new):
373 Remove hack that always set the device to hw:0*.
374 Properly find the card name for whatever device was configured.
375 Do some better debugging.
378 * ext/alsa/gstalsamixerelement.c:
379 (gst_alsa_mixer_element_set_property),
380 (gst_alsa_mixer_element_change_state):
382 Handle setting of a NULL device name better.
384 2006-08-11 Wim Taymans <wim@fluendo.com>
386 * gst/adder/gstadder.c:
387 Don't clip float values. Fixes #350900.
389 2006-08-11 Andy Wingo <wingo@pobox.com>
391 * gst/tcp/gsttcp.c: Really fix the build?
393 * gst/tcp/gsttcp.h: For now, always disable deprecation here --
396 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
398 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes):
399 Float caps shouldn't have a "signed" field.
401 2006-08-10 Tim-Philipp Müller <tim at centricular dot net>
403 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query):
404 Implement SEEKING query in its most basic form, so that we can
405 at least check if we're seekable or not (#350655).
407 2006-08-09 Tim-Philipp Müller <tim at centricular dot net>
409 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
410 The checks here are not even close to anything that would
411 justify MAXIMUM probability, lowering to POSSIBLE until someone
412 fixes the checks (case at hand: quicktime redirection files
413 might start with 00 00 01 XX and pass the checks here just
416 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
418 Patch by: Sjoerd Simons <sjoerd at luon net>
420 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find):
421 Better detection for multipart/x-mixed-replace: accept leading
422 whitespaces before the boundary marker as well (as our very own
423 multipartmux used to produce) (#349068).
425 2006-08-07 Tim-Philipp Müller <tim at centricular dot net>
427 Patch by: Young-Ho Cha <ganadist at chollian net>
429 * gst-libs/gst/riff/riff-ids.h:
430 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
431 (gst_riff_create_audio_template_caps):
432 Detect DTS audio streams (#350157).
434 2006-08-05 Andy Wingo <wingo@pobox.com>
436 * ext/theora/gsttheoraparse.h:
437 * ext/theora/theoraparse.c (gst_theora_parse_class_init)
438 (theora_parse_dispose, theora_parse_set_property)
439 (theora_parse_get_property, theora_parse_munge_granulepos)
440 (theora_parse_push_buffer, theora_parse_change_state): Add a
441 property 'synchronization-points' to fix badly synchronized oggs.
443 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
445 * tests/check/Makefile.am:
446 * tests/check/libs/.cvsignore:
447 * tests/check/libs/audio.c: (structure_contains_channel_positions),
448 (fixed_caps_have_channel_positions), (GST_START_TEST),
449 (audio_suite), (main):
450 Add a few tests for the channel position stuff in libgstaudio.
452 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
454 * ext/alsa/gstalsa.c: (caps_add_channel_configuration),
455 (gst_alsa_detect_channels):
456 * ext/alsa/gstalsasink.c:
457 Add support for cards that (only) do more than 8 channels,
458 like the Delta 44 (#345188).
460 * gst-libs/gst/audio/multichannel.c:
461 (gst_audio_check_channel_positions):
462 * gst-libs/gst/audio/multichannel.h:
463 API: add GST_AUDIO_CHANNEL_POSITION_NONE, which stands for an
464 unspecified channel position and cannot be combined with any
465 of the other audio channel positions; adjust position layout
466 checks accordingly (#345188).
468 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
470 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
471 Recognise ancient RealAudio files (see #349779).
473 2006-08-03 Tim-Philipp Müller <tim at centricular dot net>
475 Patch by: Jens Granseuer <jensgr at gmx net>
477 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
478 Add typefinder for Interplay's MVE format (#348973).
480 2006-08-02 Wim Taymans <wim@fluendo.com>
482 Patch by: Marcel Moreaux <marcelm at luon dot net>
484 * gst-libs/gst/rtp/gstbasertpdepayload.c:
485 (gst_base_rtp_depayload_add_to_queue):
486 * gst-libs/gst/rtp/gstbasertpdepayload.h:
487 Handle RTP sequence number rollover.
488 Disable jitterbuffer by default.
490 2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
492 * gst/audioresample/gstaudioresample.c: (audioresample_stop),
493 (audioresample_set_caps):
494 Don't leak references to the incoming caps. Clean them up when
497 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
498 (gst_video_scale_finalize):
499 Don't leak our temporary pixel buffer.
501 * tests/check/Makefile.am:
502 * tests/check/pipelines/simple-launch-lines.c: (run_pipeline),
503 (GST_START_TEST), (simple_launch_lines_suite):
505 Fix leaks and re-enable the test for valgrind checking.
507 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
509 Patch by: Sjoerd Simons <sjoerd at luon net>
511 * gst/typefind/gsttypefindfunctions.c: (multipart_type_find),
513 Add typefind function for multipart/x-mixed-replace (#348916).
515 2006-07-28 Wim Taymans <wim@fluendo.com>
517 * gst/adder/gstadder.c: (gst_adder_setcaps),
518 (gst_adder_query_duration):
519 Fix leak in duration query.
520 Reflow some docs and notes.
522 2006-07-28 Michael Smith <msmith@fluendo.com>
524 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST),
526 Enable Andy's extra vorbisenc test, now that it passes. Also fix one
529 2006-07-28 Michael Smith <msmith@fluendo.com>
531 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_generate_sink_caps),
532 (gst_vorbis_enc_sink_getcaps), (gst_vorbis_enc_buffer_from_packet),
533 (gst_vorbis_enc_push_buffer),
534 (gst_vorbis_enc_buffer_check_discontinuous),
535 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
536 * ext/vorbis/vorbisenc.h:
537 Handle discontinuities in the input vorbis stream correctly,
538 so that the output is properly timestamped (and has good granulepos
539 values). Needs some oggmux fixes too.
541 2006-07-27 Wim Taymans <wim@fluendo.com>
543 patch by: Kai Vehmanen <kv2004 eca cx>
545 * gst-libs/gst/rtp/gstbasertpdepayload.c:
546 (gst_base_rtp_depayload_chain),
547 (gst_base_rtp_depayload_handle_sink_event),
548 (gst_base_rtp_depayload_change_state):
549 Don't send multiple newsegments with different formats.
552 2006-07-26 Wim Taymans <wim@fluendo.com>
554 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
555 (gst_ogg_demux_do_seek), (gst_ogg_demux_read_chain):
556 Make seeking in ogg more accurate again by doing the more correct
557 granuletime to stream time conversion.
559 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
561 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_new_client):
564 2006-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
566 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_add_full),
567 (gst_multi_fd_sink_new_client):
568 debug a little more understandably
569 do not use goto as a substitute for break, especially if
570 break is also being used
572 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
574 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
575 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
576 Remove GLib-2.6 compatibility cruft.
578 2006-07-24 Wim Taymans <wim@fluendo.com>
580 * gst-libs/gst/audio/gstbaseaudiosink.c:
581 (gst_base_audio_sink_render):
582 Don't try to align a sample to an unknown value.
584 2006-07-24 Wim Taymans <wim@fluendo.com>
586 * gst-libs/gst/audio/gstbaseaudiosink.c:
587 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
588 When the audio clock is slaved to another clock, never try to align
589 samples but trust the rate interpolation algorithm.
591 2006-07-24 Wim Taymans <wim@fluendo.com>
593 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
594 Don't try to calculate silence samples, base class does this much
597 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
598 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps),
599 (gst_ring_buffer_acquire):
600 Calculate silence samples correctly.
602 * gst-libs/gst/audio/gstringbuffer.h:
605 2006-07-22 Tim-Philipp Müller <tim at centricular dot net>
607 * gst/typefind/gsttypefindfunctions.c: (xml_check_first_element):
608 Limit search for the first markup tag to the first few kB of
609 the file. If we don't find one there, it's highly unlikely that
610 this is an XML(-ish) file.
612 2006-07-21 Andy Wingo <wingo@pobox.com>
614 * tests/check/pipelines/theoraenc.c (test_discontinuity): Similar
615 test to the one in vorbisenc. Also commented out.
617 * tests/check/pipelines/vorbisenc.c:
618 (test_discontinuity): New test, commented out until Mike lands
619 some elite vorbisenc patches.
621 * tests/check/pipelines/theoraenc.c: Port to bufferstraw.
622 Bufferstraw was actually factored out of these tests. Now we share
625 * configure.ac (GST_MAJORMINOR): Rev core requirements to 0.10.9.1
626 for bufferstraw addition to gstcheck.
628 2006-07-21 Wim Taymans <wim@fluendo.com>
630 * ext/theora/theoradec.c: (clip_buffer):
633 2006-07-21 Wim Taymans <wim@fluendo.com>
635 * gst-libs/gst/audio/gstaudiosink.c: (audioringbuffer_thread_func),
636 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
637 (gst_audioringbuffer_release), (gst_audioringbuffer_stop):
639 Avoid type casting when we can.
641 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_dispose):
644 2006-07-20 Tim-Philipp Müller <tim at centricular dot net>
646 * ext/alsa/gstalsamixerelement.c:
647 (gst_alsa_mixer_element_change_state):
648 Make state change fail if the specified device can't be opened
651 2006-07-20 Wim Taymans <wim@fluendo.com>
653 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
655 Example of a small audio/video player using decodebin.
657 2006-07-20 Stefan Kost <ensonic@users.sf.net>
659 * gst-libs/gst/riff/riff-ids.h:
662 2006-07-19 Wim Taymans <wim@fluendo.com>
664 * gst-libs/gst/rtp/gstbasertpdepayload.c:
665 (gst_base_rtp_depayload_chain),
666 (gst_base_rtp_depayload_change_state):
667 Don't assert when not negotiated but post a meaningfull
668 error message. Fixes #347918.
670 * gst-libs/gst/rtp/gstbasertppayload.c:
671 Add comment about better default MTU size.
673 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtp_buffer_validate_data):
674 Small cleanups, start docs.
676 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
678 Patch by: Martin Szulecki
680 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_property):
681 If "device-name" is requested and the device is not
682 open, try to temporarily open it to obtain this
683 information (#342494).
685 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
687 * gst-libs/gst/tag/gstid3tag.c:
688 Add TSSE <=> GST_TAG_ENCODER mapping (see #347898).
690 * gst-libs/gst/tag/gsttageditingprivate.h:
691 * gst-libs/gst/tag/gstvorbistag.c:
692 Some more random const-ifications.
694 2006-07-18 Stefan Kost <ensonic@users.sf.net>
696 * gst-libs/gst/riff/riff-ids.h:
697 * gst-libs/gst/riff/riff-media.c:
698 (gst_riff_create_video_template_caps):
699 Add more FOURCCs (sort list to make stuff easier to find),
700 add comment what those 16 bytes in struct _gst_riff_strh according to
703 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
705 * gst-libs/gst/audio/multichannel.c:
706 (gst_audio_check_channel_positions),
707 (gst_audio_fixate_channel_positions):
708 Const-ify two arrays.
710 2006-07-17 Tim-Philipp Müller <tim at centricular dot net>
712 * ext/alsa/gstalsa.c: (caps_add_channel_configuration):
713 Fix typo, so that alsasink also advertises 8 channels
714 if that's supported (tags: can, worms, open, alsa, ph34r).
716 2006-07-17 Wim Taymans <wim@fluendo.com>
718 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
719 (gst_ogg_pad_submit_packet), (gst_ogg_demux_read_chain):
720 *sigh*, when is the compiler going to warn when the comments
721 are out-of-sync with the code.. Refix case of busted theora
722 headers with 0 granule pos.
724 2006-07-14 Wim Taymans <wim@fluendo.com>
726 * gst-libs/gst/rtp/gstbasertpdepayload.c:
727 (gst_base_rtp_depayload_wait),
728 (gst_base_rtp_depayload_change_state),
729 (gst_base_rtp_depayload_set_property),
730 (gst_base_rtp_depayload_get_property):
731 Fix 99% cpu load by waiting for absolute times on the
732 clock. Fixes #347300.
734 2006-07-14 Andy Wingo <wingo@pobox.com>
736 * ext/theora/gsttheoraparse.h:
737 * ext/theora/theoraparse.c (theora_parse_drain_event_queue)
738 (theora_parse_push_headers, theora_parse_clear_queue)
739 (theora_parse_drain_queue_prematurely, )
740 (theora_parse_sink_event, theora_parse_change_state): Queue events
741 until we initialized our state, like in vorbisparse.
743 * ext/vorbis/vorbisparse.h:
744 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_event_queue)
745 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
746 (vorbis_parse_drain_queue_prematurely, )
747 (vorbis_parse_sink_event, vorbis_parse_change_state): Queue events
748 until we have initialized our state. Fixes seeking after an
751 2006-07-14 Andy Wingo <wingo@pobox.com>
753 Patch by: Iain * <iaingnome@gmail.com>
755 * ext/ogg/gstoggdemux.c (gst_ogg_demux_finalize): Fix memleak.
757 2006-07-14 Jan Schmidt <thaytan@mad.scientist.com>
760 Bump nano back to CVS
762 === release 0.10.9 ===
764 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
767 releasing 0.10.9, "I walk the line"
769 2006-07-14 Michael Smith <msmith@fluendo.com>
771 * tests/check/pipelines/vorbisenc.c: (stop_pipeline):
772 Move a g_cond_signal to earlier to avoid sometimes deadlocking
773 (commonly happens when running this test under valgrind) when trying
774 to remove the buffer probe.
776 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
778 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
779 Fix missing g_unlock from the previous commit
781 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
783 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
784 (gst_ximagesink_change_state):
785 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
786 (gst_xvimagesink_change_state):
787 Implement a locking order to ensure we always take the object lock
788 before the x_lock and never vice-versa.
790 2006-07-13 Jan Schmidt <thaytan@mad.scientist.com>
792 * gst/playback/gstdecodebin.c: (find_compatibles):
793 Fix a caps leak when linking (#347304)
795 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
796 (gst_ximagesink_ximage_destroy), (gst_ximagesink_xcontext_clear),
797 (gst_ximagesink_change_state):
798 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
799 (gst_xvimage_buffer_finalize), (gst_xvimagesink_check_xshm_calls),
800 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
801 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_change_state):
802 Don't leak shared memory resources. Use the object lock to protect
803 against the xcontext disappearing while returning a buffer from the
806 2006-07-12 Edward Hervey <edward@fluendo.com>
808 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize),
809 (vorbis_handle_comment_packet):
810 gst_tag_list_merge() returns a new object. Take that into account when
811 using it. This avoids memleak.
812 Revert previous commit which is not needed.
814 2006-07-12 Edward Hervey <edward@fluendo.com>
816 * ext/vorbis/vorbisdec.c: (vorbis_dec_finalize):
817 Reset the decoder in finalize so that all fields get cleared.
819 2006-07-12 Wim Taymans <wim@fluendo.com>
821 * gst-libs/gst/audio/gstbaseaudiosrc.c:
822 (gst_base_audio_src_set_clock),
823 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create):
824 Don't try to post an error message when setting the clock fails
825 as this can happen when adding an element to a bin which will then
826 deadlock. Fixes #347296.
828 2006-07-12 Edward Hervey <edward@fluendo.com>
830 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
831 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
832 (vorbis_handle_type_packet):
833 Post tag messages on the bus even if we're not initialized.
834 If we're not initialized, we still postpone the event pushing of tags.
836 2006-07-12 Wim Taymans <wim@fluendo.com>
838 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
839 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
840 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
841 Revert last two changes that broke the freeze.
843 2006-07-12 Wim Taymans <wim@fluendo.com>
845 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_prepare):
846 basesink calculates silence sample correctly for us.
848 2006-07-12 Wim Taymans <wim@fluendo.com>
850 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
851 (gst_ring_buffer_debug_spec_caps), (gst_ring_buffer_parse_caps):
852 Calculate correct silence samples so we don't fill our ringbuffer
855 2006-07-12 Edward Hervey <edward@fluendo.com>
857 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
858 (gst_vorbis_dec_reset), (vorbis_dec_sink_event),
859 (vorbis_handle_comment_packet), (vorbis_handle_type_packet):
860 * ext/vorbis/vorbisdec.h:
861 Delay sending events (newsegment, tags) until the decoder is properly
865 2006-07-11 Jan Schmidt <thaytan@mad.scientist.com>
867 * tests/check/elements/audioconvert.c: (get_float_mc_caps),
868 (get_int_mc_caps), (GST_START_TEST), (audioconvert_suite):
869 Patch from #347221 adding a test for audioconvert
872 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
874 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
875 (gst_ssa_parse_parse_line):
876 Don't include the terminating NUL in the buffer size,
877 it's only there for extra paranoia (would add random
878 '*' characters at the end of each subtitle since the
879 terminator itself is not valid UTF-8 technically).
880 Also fix indenting after boilerplate macro.
882 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
884 * gst/playback/gstdecodebin.c: (close_pad_link):
885 Also emit 'unknown-type' signal (which should really be
886 called unhandled-type) if we found potential decoders/demuxers
887 in the registry but none of them worked in the end (as in the
888 case where the plugins don't exist any longer but are still
889 listed in the registry). Fixes #329798.
891 2006-07-08 Andy Wingo <wingo@pobox.com>
893 * theoraparse.c (theora_parse_push_buffer)
894 (theora_parse_drain_queue_prematurely, theora_parse_drain_queue):
895 Add some more debugging. Fix granulepos reconstruction in the face
898 2006-07-06 Wim Taymans <wim@fluendo.com>
900 * gst-libs/gst/audio/gstbaseaudiosink.c:
901 (gst_base_audio_sink_class_init),
902 (gst_base_audio_sink_provide_clock):
903 Use gobject_class instead of G_OBJECT_CLASS (klass)
905 * gst-libs/gst/audio/gstbaseaudiosrc.c:
906 (gst_base_audio_src_class_init), (gst_base_audio_src_init),
907 (gst_base_audio_src_set_clock), (gst_base_audio_src_provide_clock),
908 (gst_base_audio_src_get_time),
909 (gst_base_audio_src_check_get_range), (gst_base_audio_src_create),
910 (gst_base_audio_src_create_ringbuffer):
911 Fix latency and buffer-time constants and properties ala basesink.
912 Implement pull based scheduling. Fixes #346527.
913 Set default blocksize in GstBaseSrc to 0, we default to pushing out
915 Refuse slaving to another clock instead of silently not working.
916 Only provide a clock when we are actually able to do so.
917 Various small cleanups and compiler hints.
919 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
921 Patch by: Lutz Mueller <lutz at topfrose de>
923 * gst/typefind/gsttypefindfunctions.c: (html_type_find),
925 Add typefinding for text/html (#346581).
927 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
929 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
930 (xml_check_first_element), (xml_type_find), (smil_type_find):
931 Fix SMIL typefinding, make xml_check_first_element() more
934 2006-07-06 Tim-Philipp Müller <tim at centricular dot net>
936 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
937 (gst_play_base_bin_finalize), (decodebin_element_added_cb),
938 (decodebin_element_removed_cb), (gst_play_base_bin_set_property):
939 * gst/playback/gstplaybasebin.h:
940 Protect list of elements with a subtitle-encoding property and
941 the subtitle encoding member itself with a lock of their own
942 instead of using the object lock. This prevents a dead-lock in
943 the element-remove callback in some circumstances when shutting
946 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
948 * win32/common/libgsttag.def:
949 Export some new functions.
950 * win32/vs6/libgstogg.dsp:
951 Add a link to libgsttag-0.10.lib.
953 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
955 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
956 Some const-ification.
958 2006-07-04 Wim Taymans <wim@fluendo.com>
960 * gst/playback/gstplaybasebin.c: (is_stream), (gen_source_element):
961 Improve checking if we are dealing with a stream. Added some
962 more uris that need buffering.
964 2006-07-03 Edward Hervey <edward@fluendo.com>
966 * ext/vorbis/vorbisdec.c: (vorbis_do_clip):
967 Remove unused variable.
969 2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
974 add GCOV_LIBS to GST_LIBS
976 2006-07-02 Tim-Philipp Müller <tim at centricular dot net>
978 Patch by: Michael Sheldon <webmaster at mikeasoft com>
980 * ext/alsa/gstalsasrc.c:
981 Add 32 bps to template caps and increase channels range
982 from [1,2] to [1,MAX]. See #346326.
984 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
986 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
987 Recognise 'WMVA' video codec fourcc (#345879).
989 2006-06-29 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
991 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
992 Fixed nasty memory leak
994 2006-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
996 * gst/tcp/gsttcp.c: (gst_tcp_read_buffer),
997 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps):
1000 2006-06-23 Jan Schmidt <thaytan@mad.scientist.com>
1002 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
1003 (gst_decode_bin_init), (gst_decode_bin_finalize), (add_fakesink),
1004 (remove_fakesink), (pad_probe), (gst_decode_bin_change_state):
1005 Protect remove_fakesink using a mutex, so that we don't try and
1006 remove the fakesink simultaneously from multiple threads.
1008 When going from READY to PAUSED, restore the fakesink, so that
1009 it is there when decodebin gets reused.
1011 2006-06-23 Tim-Philipp Müller <tim at centricular dot net>
1013 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1014 * gst-libs/gst/rtp/gstbasertpdepayload.c:
1015 * gst-libs/gst/rtp/gstbasertppayload.c:
1016 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1017 * gst/tcp/gstmultifdsink.c:
1018 * gst/tcp/gsttcpclientsink.c:
1019 * gst/tcp/gsttcpclientsrc.c:
1020 * gst/tcp/gsttcpserversink.c:
1021 * gst/tcp/gsttcpserversrc.c:
1022 * gst/videorate/gstvideorate.c:
1023 * gst/videotestsrc/gstvideotestsrc.c:
1024 * sys/v4l/gstv4ljpegsrc.c:
1025 * sys/v4l/gstv4lmjpegsink.c:
1026 * sys/v4l/gstv4lsrc.c:
1027 * tests/examples/seek/scrubby.c:
1028 * tests/examples/seek/seek.c:
1029 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503).
1031 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
1033 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum):
1034 Second field in GEnumValue shouldn't be a description,
1035 but a stringified version of the enum value.
1037 2006-06-22 Wim Taymans <wim@fluendo.com>
1039 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
1040 (gst_ximage_buffer_free), (gst_ximagesink_ximage_put),
1041 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
1042 Avoid type checking in buffer casts.
1043 Avoid caps copy in buffer_alloc when we can.
1044 Use pad_peer_accept.
1046 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
1048 * gst-libs/gst/tag/tag.h:
1049 Oops, make that 'Since: 0.10.9'.
1051 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
1053 * docs/libs/gst-plugins-base-libs-sections.txt:
1054 * gst-libs/gst/tag/tag.h:
1055 * gst-libs/gst/tag/tags.c: (register_tag_image_type_enum),
1056 (gst_tag_image_type_get_type):
1057 API: add GstTagImageType enum to describe images contained
1058 in image tags (#345641).
1060 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
1062 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
1063 Fix warnings with gst-inspect: "buffers-min" property
1064 should be of G_TYPE_INT and not G_TYPE_INT64. Also fix
1065 typo in property description.
1067 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
1069 Patch by: Cody Russell <bratsche at gnome org>
1071 * gst/audioresample/gstaudioresample.c:
1072 (gst_audioresample_class_init):
1073 * gst/playback/gststreamselector.c:
1074 (gst_stream_selector_class_init):
1075 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
1076 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
1077 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
1078 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_class_init):
1079 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_class_init):
1080 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_class_init):
1081 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init):
1082 * gst/videotestsrc/gstvideotestsrc.c:
1083 (gst_video_test_src_class_init):
1084 * gst/volume/gstvolume.c: (gst_volume_class_init):
1085 Avoid unnecessary class cast check in class_init
1086 functions (#337747).
1088 2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
1090 * ext/pango/gsttextoverlay.c: (gst_text_overlay_make_utf8),
1091 (gst_text_overlay_video_chain):
1092 g_markup_escape_text() REALLY doesn't like non-UTF8 input
1093 and doesn't validate its input either (and neither did
1094 textoverlay it seems). Let's do that then and fix #345206.
1096 2006-06-19 Wim Taymans <wim@fluendo.com>
1098 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
1099 (gst_unit_type_get_type), (gst_multi_fd_sink_class_init),
1100 (gst_multi_fd_sink_init), (gst_multi_fd_sink_add_full),
1101 (gst_multi_fd_sink_add), (gst_multi_fd_sink_handle_client_read),
1102 (find_syncframe), (find_limits), (assign_value),
1103 (count_burst_unit), (gst_multi_fd_sink_new_client),
1104 (gst_multi_fd_sink_handle_client_write),
1105 (gst_multi_fd_sink_queue_buffer), (gst_multi_fd_sink_render),
1106 (gst_multi_fd_sink_set_property), (gst_multi_fd_sink_get_property),
1107 (gst_multi_fd_sink_change_state):
1108 * gst/tcp/gstmultifdsink.h:
1109 Added shiny new burst-on-connect methods.
1110 Add properties to control the minimal amount of data queued.
1112 API: bytes-min property
1113 API: time-min property
1114 API: buffers-min property
1115 API: burst-unit property
1116 API: burst-value property
1117 API: add-full signal
1119 * gst/tcp/gsttcp-marshal.list:
1120 Added new marshaller code for the new signal.
1122 * tests/check/elements/multifdsink.c: (GST_START_TEST),
1123 (multifdsink_suite):
1124 Added testcases for new burst methods.
1126 2006-06-19 Edward Hervey <edward@fluendo.com>
1128 * ext/theora/theoradec.c: (clip_buffer), (theora_dec_push):
1129 Implement clipping for accurate seeking.
1132 2006-06-19 Wim Taymans <wim@fluendo.com>
1134 Patch by: Philip Jaegenstedt <philip at lysator dot liu dot se>
1136 * gst/videoscale/gstvideoscale.c: (gst_video_scale_prepare_size),
1137 (gst_video_scale_transform):
1138 Make videoscale support RGBA, ARGB, BGRA and ABGR. Fixes #345131
1140 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
1143 Fix --disable-external (can't set conditionals conditionally,
1146 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
1148 * tests/check/elements/audioresample.c: (test_reuse),
1149 (audioresample_suite):
1150 Add test case for bug #342789 fixed below.
1152 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
1154 * gst/audioresample/gstaudioresample.c:
1155 (gst_audioresample_class_init), (gst_audioresample_init),
1156 (audioresample_start), (audioresample_stop),
1157 (gst_audioresample_set_property), (gst_audioresample_get_property):
1158 Implement GstBaseTransform::start and ::stop so that audioresample
1159 can clear its internal state properly and be reused instead of
1160 causing non-negotiated errors with playbin under some circumstances
1163 * tests/check/elements/audioresample.c: (setup_audioresample),
1164 (cleanup_audioresample):
1165 Need to set element state here so that ::start and ::stop are
1168 2006-06-16 Wim Taymans <wim@fluendo.com>
1170 Patch by: Young-Ho Cha <ganadist at chollian dot net>
1172 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_vids):
1173 Parse extra data better, apparently it's right behind
1174 the normal strf header size. Fixes #343500.
1176 2006-06-16 Wim Taymans <wim@fluendo.com>
1178 * ext/alsa/gstalsasink.c: (set_hwparams):
1179 If we fail to set the buffer_time and period_time alsa
1180 parameters, post a warning and leave alsa select a
1181 default instead of failing. Fixes #342085
1183 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
1185 * docs/libs/gst-plugins-base-libs-sections.txt:
1186 * gst-libs/gst/cdda/gstcddabasesrc.h:
1187 Remove GST_CDDA_TAG_TRACK_TAGS again, it is #ifdef 0'ed
1188 out in the header file and shouldn't be listed in the docs.
1190 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
1191 Must dereference pointer to fourcc in the debug statement.
1193 2006-06-16 Stefan Kost <ensonic@users.sf.net>
1195 * docs/libs/Makefile.am:
1196 * docs/libs/gst-plugins-base-libs-docs.sgml:
1197 * docs/libs/gst-plugins-base-libs-sections.txt:
1198 * docs/libs/gst-plugins-base-libs.types:
1199 add remaining symbols into correct setions
1201 * gst-libs/gst/audio/gstringbuffer.c:
1204 * gst-libs/gst/audio/gstringbuffer.h:
1205 comment out not yet implemented function
1208 * gst-libs/gst/floatcast/floatcast.h:
1209 * gst-libs/gst/netbuffer/gstnetbuffer.c:
1210 add short descriptions
1213 * gst-libs/gst/interfaces/propertyprobe.c:
1214 fix return value docs
1216 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
1217 simplify debug logging
1219 * gst-libs/gst/riff/riff-read.h:
1220 sync function prototype and docs
1222 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
1223 remove left over symbol
1225 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
1230 Use GST_PLUGIN_DOCS macro in configure.ac, add
1231 --enable-plugin-docs default to autogen.sh and use
1232 ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
1234 2006-06-15 Wim Taymans <wim@fluendo.com>
1236 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
1237 (gst_ogg_demux_activate_chain), (gst_ogg_demux_combine_flows),
1238 (gst_ogg_demux_loop):
1239 Combine GstFlowReturn from the source pads to give a
1240 meaningfull result to the upstream peer or to stop the
1241 processing task in case of errors.
1243 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
1245 * gst/playback/gststreaminfo.c: (cb_probe):
1246 Try GST_TAG_CODEC as fallback when extracting the
1247 codec name; more debug info.
1249 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
1251 * ext/ogg/Makefile.am:
1252 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
1253 Extract language tags from ogm subtitle streams, so that
1254 the subtitle menu choices are labelled correctly in
1255 Totem (fixes #344708).
1257 2006-06-14 Wim Taymans <wim@fluendo.com>
1259 Patch by: Alessandro Decina <alessandro at nnva dot org>
1261 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_clear),
1262 (gst_ogg_mux_release_pad), (gst_ogg_mux_get_headers),
1263 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_init_collectpads),
1264 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
1265 Fix various leaks. Fixes #343699.
1266 Add x-smoke mime type.
1268 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
1270 * gst-libs/gst/riff/riff-ids.h:
1271 Add IDs for 'bext' chunks (see #343837).
1273 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
1275 Patch by: Young-Ho Cha <ganadist at chollian net>
1277 * gst/subparse/samiparse.c: (sami_context_pop_state),
1278 (handle_start_font), (end_sami_element):
1279 Honour font face tags in SAMI subtitles (#344503).
1281 2006-06-11 Stefan Kost <ensonic@users.sf.net>
1284 add missing files containing translatable strings
1286 2006-06-11 Stefan Kost <ensonic@users.sf.net>
1288 * docs/libs/tmpl/.cvsignore:
1289 we don't want those *.sgml files in CVS either
1291 2006-06-11 Stefan Kost <ensonic@users.sf.net>
1293 * docs/libs/.cvsignore:
1294 * tests/check/elements/.cvsignore:
1295 * tests/check/libs/.cvsignore:
1298 2006-06-11 Stefan Kost <ensonic@users.sf.net>
1300 * docs/libs/Makefile.am:
1301 also commiting the changed Makefile.am (added more libs to the
1304 2006-06-11 Stefan Kost <ensonic@users.sf.net>
1306 * docs/libs/gst-plugins-base-libs-docs.sgml:
1307 * docs/libs/gst-plugins-base-libs-sections.txt:
1308 * docs/libs/gst-plugins-base-libs.types:
1309 first batch of reordering things, add index & hierarchy
1311 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
1314 use GST_PKG_CHECK_MODULES, cleans up output
1316 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
1318 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
1319 Add support for burn:// URIs (#343385); const-ify things a bit,
1320 use G_N_ELEMENTS instead of hard-coded array size.
1322 2006-06-10 Tim-Philipp Müller <tim at centricular dot net>
1324 Patch by: Young-Ho Cha <ganadist at chollian net>
1326 * gst/subparse/samiparse.c: (fix_invalid_entities), (parse_sami):
1327 Fix up broken entities before passing them to libxml *sigh*.
1330 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
1335 === release 0.10.8 ===
1337 2006-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
1340 releasing 0.10.8, "Moar gij ziet mij nie"
1342 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
1359 * win32/common/config.h:
1362 2006-06-07 Thomas Vander Stichele <thomas at apestaart dot org>
1364 * docs/libs/tmpl/gstaudio.sgml:
1365 * docs/libs/tmpl/gstcolorbalance.sgml:
1366 * docs/libs/tmpl/gstmixer.sgml:
1367 * docs/libs/tmpl/gstringbuffer.sgml:
1368 * docs/libs/tmpl/gsttuner.sgml:
1369 * docs/libs/tmpl/gstxoverlay.sgml:
1370 * gst-libs/gst/audio/audio.c:
1371 * gst-libs/gst/audio/gstringbuffer.c:
1372 * gst-libs/gst/interfaces/colorbalance.c:
1373 * gst-libs/gst/interfaces/mixer.c:
1374 * gst-libs/gst/interfaces/tuner.c:
1375 * gst-libs/gst/interfaces/xoverlay.c:
1376 move last template doc snippets to source code and delete them
1378 2006-06-06 Michael Smith <msmith@fluendo.com>
1380 * ext/theora/theoraparse.c: (theora_parse_drain_queue_prematurely),
1381 (theora_parse_drain_queue):
1382 Mark DELTA_UNIT on non-keyframes.
1384 2006-06-03 Jan Schmidt <thaytan@mad.scientist.com>
1386 * gst-libs/gst/audio/gstbaseaudiosink.c:
1387 (gst_base_audio_sink_class_init), (gst_base_audio_sink_setcaps):
1388 * gst-libs/gst/audio/gstbaseaudiosink.h:
1389 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps),
1390 (gst_ring_buffer_samples_done):
1391 * gst-libs/gst/audio/gstringbuffer.h:
1392 Document better the fact that latency_time and buffer_time are values
1393 stored in microseconds, and not the usual GStreamer nanoseconds.
1394 Change the variables (compatibly) that store them from GstClockTime
1395 to guint64 to make it more clear that they're not storing clock times.
1396 Also, remove the bogus property description that says the user can
1397 specify -1 to get the default value, since that's never been the case.
1399 When computing the default segment size for the ring buffer, make it
1400 an integer number of samples.
1402 When the sub-class indicates a delay greater than the number of
1403 samples we've written return 0 from the audio sink get_time method.
1405 2006-06-02 Michael Smith <msmith@fluendo.com>
1407 * tests/check/elements/audioconvert.c: (set_channel_positions),
1408 (get_float_mc_caps), (get_int_mc_caps):
1409 * tests/check/elements/audioresample.c:
1410 * tests/check/elements/audiotestsrc.c: (GST_START_TEST):
1411 * tests/check/elements/videorate.c:
1412 * tests/check/elements/videotestsrc.c: (GST_START_TEST):
1413 * tests/check/elements/volume.c:
1414 * tests/check/elements/vorbisdec.c:
1415 * tests/check/pipelines/vorbisenc.c: (GST_START_TEST):
1416 Don't busy-wait in tests; this was causing test timeouts very
1417 frequently when running under valgrind.
1419 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
1422 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_init),
1423 (gst_multi_fd_sink_remove_client_link),
1424 (gst_multi_fd_sink_client_queue_caps),
1425 (gst_multi_fd_sink_client_queue_buffer),
1426 (gst_multi_fd_sink_handle_client_write),
1427 (gst_multi_fd_sink_render):
1428 * gst/tcp/gstmultifdsink.h:
1429 make multifdsink properly deal with streamheader:
1430 - streamheader is taken from caps
1431 - buffers marked with IN_CAPS are not sent
1432 - streamheaders are sent, on connection, from the caps of the
1433 buffer where the client gets positioned to
1434 - further streamheader changes are done every time the client
1435 will receive a buffer with different caps
1436 * tests/check/elements/multifdsink.c: (GST_START_TEST),
1437 (gst_multifdsink_create_streamheader):
1440 2006-06-02 Michael Smith <msmith@fluendo.com>
1442 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
1443 Reinstate limit on channel count. Vorbis does not define the meaning
1444 of > 6 channels, so they're just independent channels. Gstreamer
1445 currently has no mechanism to represent N independent channels.
1447 2006-06-02 Michael Smith <msmith@fluendo.com>
1449 * ext/vorbis/vorbisdec.c: (vorbis_handle_identification_packet):
1450 Don't arbitrarily restrict channel counts and rate in vorbis.
1451 In terms of effects likely on real-world files, this fixes 96kHz
1454 2006-06-02 Michael Smith <msmith@fluendo.com>
1456 * gst/audioconvert/audioconvert.c: (float):
1457 More correct float->int conversion.
1459 2006-06-02 Michael Smith <msmith@fluendo.com>
1461 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_perform_seek):
1462 Don't accidently send GST_CLOCK_TIME_NONE as a new segment start
1463 value. Fixes g-critical on trying to play back ogg containing
1466 2006-06-02 Wim Taymans <wim@fluendo.com>
1468 * gst/playback/gstplaybasebin.c: (group_create), (group_commit),
1470 * gst/playback/gstplaybasebin.h:
1471 Make the subtitle detection work from any thread so we don't
1472 deadlock. Fixes #343397.
1474 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
1476 * gst/volume/Makefile.am:
1477 Seriously, it's not *that* hard to get compilation right. Even
1478 a drunk can do it ! Add LIBOIL CFLAGS and LIBS
1480 2006-06-01 Stefan Kost <ensonic@users.sf.net>
1482 * gst/volume/gstvolume.c: (volume_choose_func),
1483 (volume_update_real_volume), (gst_volume_class_init),
1484 (gst_volume_init), (volume_process_float), (volume_process_int16),
1485 (volume_process_int16_clamp), (volume_set_caps),
1486 (volume_transform_ip), (plugin_init):
1487 * gst/volume/gstvolume.h:
1488 rewrite the passthrough check, split _int16 and _int16_clamp, fix
1489 another property desc., remove unused param from process function
1491 * tests/check/elements/volume.c: (volume_suite):
1492 reactivate the passthrough test
1494 2006-06-01 Stefan Kost <ensonic@users.sf.net>
1496 * ext/alsa/gstalsamixerelement.h:
1497 * ext/alsa/gstalsamixeroptions.h:
1498 * ext/alsa/gstalsamixertrack.h:
1499 * ext/gnomevfs/gstgnomevfssink.h:
1500 * ext/gnomevfs/gstgnomevfssrc.h:
1501 * ext/theora/gsttheoradec.h:
1502 * ext/theora/gsttheoraenc.h:
1503 * ext/theora/gsttheoraparse.h:
1504 * ext/vorbis/vorbisparse.h:
1505 * gst-libs/gst/audio/gstaudioclock.h:
1506 * gst-libs/gst/audio/gstaudiofilter.h:
1507 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
1508 * gst/audioconvert/gstaudioconvert.h:
1509 * gst/audioresample/gstaudioresample.h:
1510 * gst/audiotestsrc/gstaudiotestsrc.h:
1511 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
1512 * gst/playback/gststreamselector.h:
1513 * gst/tcp/gstmultifdsink.h:
1514 * gst/tcp/gsttcpclientsink.h:
1515 * gst/tcp/gsttcpclientsrc.h:
1516 * gst/tcp/gsttcpserversink.h:
1517 * gst/tcp/gsttcpserversrc.h:
1518 * gst/videorate/gstvideorate.h:
1519 * gst/videoscale/gstvideoscale.h:
1520 * gst/videotestsrc/gstvideotestsrc.h:
1521 * gst/volume/gstvolume.h:
1522 * sys/v4l/gstv4ljpegsrc.h:
1523 * sys/v4l/gstv4lmjpegsink.h:
1524 * sys/v4l/gstv4lmjpegsrc.h:
1525 * sys/v4l/gstv4lsrc.h:
1526 * sys/ximage/ximagesink.h:
1527 * sys/xvimage/xvimagesink.h:
1528 * tests/old/testsuite/alsa/sinesrc.h:
1529 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
1531 2006-05-31 Wim Taymans <wim@fluendo.com>
1533 * ext/libvisual/visual.c: (gst_visual_reset),
1534 (gst_visual_sink_setcaps), (gst_visual_sink_event),
1535 (gst_visual_src_event), (get_buffer), (gst_visual_chain):
1537 Use running time before doing QoS.
1540 2006-05-31 Thomas Vander Stichele <thomas at apestaart dot org>
1542 * docs/libs/Makefile.am:
1543 set a magic variable to indicate we know the docs are incomplete
1545 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
1547 * win32/common/libgstvideo.def:
1548 export gst_video_calculate_display_ratio
1549 * win32/vs6/libgstvideoscale.dsp:
1550 add link to libgstvideo-0.10.lib
1552 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
1554 * gst/playback/gstplaybasebin.c: (gen_source_element):
1555 Throw a more comprehensible error for rtsp:// URIs (rather
1556 than erroring out with a negotiation error later on) until
1557 we fix playbin to handle rtspsrc etc.
1559 2006-05-30 Wim Taymans <wim@fluendo.com>
1561 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event),
1562 (gst_text_overlay_text_event):
1565 2006-05-30 Wim Taymans <wim@fluendo.com>
1567 * gst/adder/gstadder.c: (gst_adder_class_init), (gst_adder_init),
1568 (gst_adder_request_new_pad), (gst_adder_release_pad):
1569 * gst/adder/gstadder.h:
1570 Implement release_request_pad.
1571 Make padcounter atomic.
1573 * tests/check/elements/adder.c: (GST_START_TEST), (adder_suite):
1574 Added check for release_pad in adder.
1576 2006-05-30 Wim Taymans <wim@fluendo.com>
1578 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream):
1581 2006-05-30 Thomas Vander Stichele <thomas at apestaart dot org>
1583 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
1584 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
1585 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
1586 (gst_ogg_pad_submit_page), (gst_ogg_chain_new_stream),
1587 (gst_ogg_demux_seek), (gst_ogg_demux_get_data),
1588 (gst_ogg_demux_get_next_page), (gst_ogg_demux_do_seek),
1589 (gst_ogg_demux_bisect_forward_serialno),
1590 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_chains),
1591 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
1593 clean up printf formats for granulepos and serialno
1595 2006-05-30 Michael Smith <msmith@fluendo.com>
1597 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
1598 (gst_vorbis_enc_class_init), (gst_vorbis_enc_dispose),
1599 (gst_vorbis_enc_generate_sink_caps), (gst_vorbis_enc_sink_getcaps),
1600 (gst_vorbis_enc_init), (gst_vorbis_enc_buffer_from_header_packet),
1601 (gst_vorbis_enc_chain), (gst_vorbis_enc_change_state):
1602 * ext/vorbis/vorbisenc.h:
1603 Multi-channel caps negotiation, so we can do proper multichannel
1604 vorbis encoding, negotiated through audioconvert.
1606 2006-05-30 Wim Taymans <wim@fluendo.com>
1608 * tests/check/elements/adder.c: (test_event_message_received),
1609 (test_play_twice_message_received), (GST_START_TEST),
1611 Added check to show that #339935 is fixed with ongoing
1612 adder and collectpads fixes.
1614 2006-05-29 Wim Taymans <wim@fluendo.com>
1616 * gst/adder/gstadder.c: (gst_adder_request_new_pad):
1617 Don't leak pad name.
1619 2006-05-29 Wim Taymans <wim@fluendo.com>
1621 * gst/adder/gstadder.c: (gst_adder_query_duration),
1622 (forward_event_func), (forward_event), (gst_adder_src_event):
1624 Make query/seeking code threadsafe.
1626 * tests/check/Makefile.am:
1627 * tests/check/elements/adder.c: (test_event_message_received),
1628 (GST_START_TEST), (test_play_twice_message_received):
1629 Fix adder test case.
1631 2006-05-29 Tim-Philipp Müller <tim at centricular dot net>
1633 Patch by: Young-Ho Cha <ganadist at chollian net>
1635 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
1636 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
1637 (set_encoding_element), (decodebin_element_added_cb),
1638 (decodebin_element_removed_cb), (setup_subtitle), (setup_source),
1639 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
1640 * gst/playback/gstplaybasebin.h:
1641 Add 'subtitle-encoding' property to playbin, so applications can
1642 force a subtitle encoding for non-UTF8 subtitles (#342268).
1644 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init),
1645 (gst_sub_parse_set_property):
1646 Rename recently-added 'encoding' property to 'subtitle-encoding'
1647 (so it can be proxied by playbin/decodebin in a generic way
1648 with less danger of false positives).
1650 2006-05-29 Michael Smith <msmith@fluendo.com>
1652 * gst/audioconvert/gstaudioconvert.c: (make_lossless_changes),
1653 (append_with_other_format), (set_structure_widths),
1654 (gst_audio_convert_transform_caps):
1655 Patch from #341562: give more specific audio caps in get_caps, so
1656 that basetransform can make better decisions on what caps to
1659 2006-05-28 Stefan Kost <ensonic@users.sf.net>
1661 * tests/check/elements/volume.c:
1662 make it compile again
1664 2006-05-28 Stefan Kost <ensonic@users.sf.net>
1666 * tests/check/elements/volume.c: (volume_suite):
1667 disable test until #343196 gets resolved
1669 2006-05-28 Stefan Kost <ensonic@users.sf.net>
1671 * gst/adder/gstadder.c: (gst_adder_get_type):
1672 Make it easier to copy&paste
1674 * gst/volume/Makefile.am:
1675 * gst/volume/gstvolume.c: (volume_update_real_volume),
1676 (gst_volume_set_volume), (gst_volume_set_mute),
1677 (gst_volume_class_init), (volume_process_int16), (volume_set_caps),
1678 (volume_transform_ip), (volume_update_mute),
1679 (volume_update_volume):
1680 * gst/volume/gstvolume.h:
1681 Add own debug category, move duplicate code to helper function, fix
1682 property texts, add more comments and prepare ffor liboil-goodness
1684 * tests/check/Makefile.am:
1685 * tests/check/elements/volume.c: (GST_START_TEST), (volume_suite):
1686 add test for mute and passtrough case, be a bit more verbose to track
1689 * tests/check/generic/states.c: (GST_START_TEST):
1690 catch elements that fail to instantiate
1692 2006-05-28 Edward Hervey <edward@fluendo.com>
1694 * tests/check/pipelines/simple-launch-lines.c:
1695 * tests/check/pipelines/theoraenc.c:
1696 * tests/check/pipelines/vorbisenc.c:
1697 Comment out tests using parse_launch() if core was built without
1698 parsing capabilities.
1700 2006-05-27 Edward Hervey <edward@fluendo.com>
1702 * tests/check/Makefile.am:
1703 Extra bonus points for whoever explains to ensonic that you are meant
1704 to test unit tests thoroughly before commiting them, especially if
1705 you know it's going to break.
1706 De-activated element/adder tests.
1708 2006-05-27 Edward Hervey <edward@fluendo.com>
1710 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1711 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps):
1712 Marking caps conversion issues as GST_WARNING is way too verbose,
1713 Moving them to GST_LOG.
1715 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
1718 Replace current README (containing the release notes from
1719 some 0.9.x version) with a proper README taken from the core.
1721 2006-05-26 Wim Taymans <wim@fluendo.com>
1723 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
1724 (vorbis_dec_src_event), (vorbis_dec_sink_event), (vorbis_do_clip),
1725 (vorbis_dec_push), (vorbis_handle_data_packet), (vorbis_dec_chain),
1726 (vorbis_dec_change_state):
1729 Clip output samples to segment boundaries.
1731 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
1733 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
1734 (gst_ximagesink_xcontext_get), (gst_ximagesink_show_frame):
1735 Improve the errors produced on bad output, including some human
1736 readable description strings.
1737 Handle the (theoretical for ximagesink) case where the XServer
1738 has a different idea about the size required for a particular
1739 frame and gives us too small a memory allocation.
1741 2006-05-26 Jan Schmidt <thaytan@mad.scientist.com>
1743 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
1744 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
1745 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
1746 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
1747 Improve the errors produced on bad output, including some human
1748 readable description strings.
1749 Handle RGB Xv formats properly by transforming them into our
1750 big-endian caps description.
1751 Use gst_caps_truncate to ensure that we never try and choose a
1752 non-fixed caps in buffer_alloc.
1753 Handle the case where the XServer has a different idea about the size
1754 required for a particular frame and gives us too small a memory
1756 Use -1 to indicate 'no image format', because 0 is a valid XServer
1757 image format number.
1758 Put RGB Xv formats at the end of the caps, so that we always prefer
1760 Iterate the available Xv Encodings to determine the maximum width and
1761 height, and then return that in our caps.
1762 (Closes #315312, #337544)
1764 2006-05-25 Jan Schmidt <thaytan@mad.scientist.com>
1766 * gst/playback/gstdecodebin.c: (remove_fakesink), (pad_probe):
1767 When there is only one unfinished pad and it receives an event that
1768 doesn't match our requirements, we need to set alldone=FALSE so that
1769 the fakesink is not removed yet.
1771 2006-05-25 Tim-Philipp Müller <tim at centricular dot net>
1773 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
1774 Use gst_type_find_helper_for_buffer() to find the type
1775 of stream from the first packet.
1778 Bump requirements to core CVS (needed for vorbis
1779 typefinding to work).
1781 2006-05-24 Edward Hervey <edward@fluendo.com>
1783 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
1784 Added the 'prfl' atom type which MQV (no, it's not a typo) files
1785 contain. Else they play perfectly fine with qtdemux.
1787 2006-05-23 Stefan Kost <ensonic@users.sf.net>
1789 * ext/theora/theoradec.c:
1790 * ext/theora/theoraenc.c:
1791 * ext/theora/theoraparse.c: (gst_theora_parse_class_init):
1792 * gst/audiorate/gstaudiorate.c:
1793 make more debug catagories static
1795 * tests/check/Makefile.am:
1796 * tests/check/elements/adder.c: (message_received),
1797 (test_event_message_received), (GST_START_TEST),
1798 (test_play_twice_message_received), (adder_suite):
1799 added test case for using element twice, extra bonus points for anyone
1800 who can make these test run reliably
1802 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
1804 * ext/theora/theoradec.c: (theora_dec_chain):
1805 Make work with time-stamped input buffers that do not
1806 have a granulepos in BUFFER_OFFSET_END (like theora
1807 buffers coming from matroskademux). Fixes #342448.
1809 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
1811 Patch by: Peter Kjellerstedt <pkj at axis com>
1813 * gst/tcp/Makefile.am:
1814 fdstresstest doesn't need Gtk+, fix compilation if
1815 gtk is not available (#342566).
1817 2006-05-19 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
1819 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1821 Removed redundant floor()
1823 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
1825 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
1826 On second thought, just skip JUNK chunks automatically, so
1827 the caller doesn't have to handle this. Fixes #342345.
1828 Also, return GST_FLOW_UNEXPECTED if we get a short read,
1831 2006-05-19 Tim-Philipp Müller <tim at centricular dot net>
1833 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk):
1834 Don't bail out on JUNK chunks with a size of 0 (would try to
1835 pull_range 0 bytes before, which sources don't like too much).
1838 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
1840 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
1841 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
1842 Use the gstutil scaling function to preserve 64 bits while calculating
1843 output width and height from the display-aspect-ratio. (A continuation
1846 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
1848 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
1849 (gst_xvimagesink_buffer_alloc):
1850 * sys/xvimage/xvimagesink.h:
1851 When performing buffer allocations, remember the caps and image format
1852 we return so that if the same caps are asked for next time we can
1853 return them immediately without doing any caps intersections.
1855 2006-05-18 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
1857 * gst-libs/gst/rtp/README:
1858 Some new documentation
1859 * gst-libs/gst/rtp/gstrtpbuffer.h:
1860 Added GST_RTP_PAYLOAD_DYNAMIC_STRING for use by children
1861 * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
1862 * gst-libs/gst/rtp/gstbasertpaudiopayload.h:
1863 New RTP audio base payloader class. Supports frame or sample based
1864 codecs. Not enabled in Makefile.am until approved.
1866 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
1868 * tests/check/elements/alsa.c: (test_device_property_probe):
1869 Fix test case: don't try to free NULL GValueArray when there
1872 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
1874 * tests/check/Makefile.am:
1875 * tests/check/elements/alsa.c: (test_device_property_probe),
1876 (alsa_suite), (main):
1877 Add simple test that runs a device property probe on alsasrc,
1878 alsasink and alsamixer. Disable valgrind check for now (too
1879 many leaks in libasound, and valgrind ignored my suppressions
1882 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
1884 * ext/alsa/gstalsadeviceprobe.c: (gst_alsa_get_device_list),
1885 (gst_alsa_device_property_probe_probe_property),
1886 (gst_alsa_device_property_probe_needs_probe),
1887 (gst_alsa_device_property_probe_get_values),
1888 (gst_alsa_type_add_device_property_probe_interface):
1889 * ext/alsa/gstalsadeviceprobe.h:
1890 * ext/alsa/gstalsamixerelement.c:
1891 (gst_alsa_mixer_element_init_interfaces):
1892 * ext/alsa/gstalsamixerelement.h:
1893 Clean up and simplify alsa device probing. Make it actually work
1894 for multiple classes. Don't cache results any longer.
1896 * ext/alsa/gstalsasink.c: (gst_alsasink_init_interfaces),
1897 (gst_alsasink_init):
1898 * ext/alsa/gstalsasrc.c: (gst_alsasrc_dispose),
1899 (gst_alsasrc_interface_supported), (gst_implements_interface_init),
1900 (gst_alsasrc_init_interfaces), (gst_alsasrc_set_property):
1901 Make alsasink and alsasrc implement the GstPropertyProbe interface
1902 for device probing (#342181).
1903 Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>
1905 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
1907 * gst/subparse/samiparse.c: (handle_start_font):
1908 Don't ignore return value of strtol (++compiler_happiness).
1910 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
1912 Patch by: Young-Ho Cha <ganadist chollian net>
1914 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
1915 (gst_sub_parse_class_init), (gst_sub_parse_init),
1916 (gst_sub_parse_set_property), (gst_sub_parse_get_property),
1918 * gst/subparse/gstsubparse.h:
1919 Add 'encoding' property (#341681).
1921 * gst/subparse/samiparse.c: (characters_sami):
1922 Output is pango markup, so we need to escape text
1923 between tags (#342143).
1925 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
1927 * gst-libs/gst/audio/multichannel.c:
1928 (gst_audio_check_channel_positions):
1929 It's okay to have caps with channels=1 and a channel position
1930 different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
1931 (deinterleavers might want to keep the position in the caps,
1932 so that they can be re-interleaved again properly later).
1933 Leave check for unexpected 2-channel layouts intact for now.
1935 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
1937 * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
1938 Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
1939 basesrc can do its job correctly.
1941 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
1943 * ext/alsa/Makefile.am:
1944 * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
1945 (gst_alsa_detect_formats), (get_channel_free_structure),
1946 (caps_add_channel_configuration), (gst_alsa_detect_channels),
1947 (gst_alsa_probe_supported_formats):
1948 * ext/alsa/gstalsa.h:
1949 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
1950 Refactor and improve caps probing code: probe signedness
1951 when we probe the supported formats/widths; set endianness
1952 to the one we actually probed for (ie. cpu endianness).
1954 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
1955 (gst_alsasrc_close):
1956 * ext/alsa/gstalsasrc.h:
1957 Implement caps probing for alsasrc.
1959 2006-05-15 Wim Taymans <wim@fluendo.com>
1961 * ext/theora/theoradec.c: (gst_theora_dec_reset),
1962 (theora_dec_src_query), (theora_dec_src_event),
1963 (theora_dec_sink_event), (theora_handle_comment_packet),
1964 (theora_handle_data_packet), (theora_dec_change_state):
1965 Cleanups, add some G_LIKELY.
1966 Use segment helpers instead of our own wrong code.
1967 Clear queued buffers on seek and READY.
1969 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
1970 (vorbis_dec_convert), (vorbis_dec_src_query),
1971 (vorbis_dec_src_event), (vorbis_dec_sink_event),
1972 (vorbis_handle_comment_packet), (vorbis_dec_push),
1973 (vorbis_handle_data_packet), (vorbis_dec_chain),
1974 (vorbis_dec_change_state):
1975 * ext/vorbis/vorbisdec.h:
1976 Remove old useless packetno variable.
1977 Do position query properly.
1979 Do cleanup of queued buffers in new helper function
1982 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
1984 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
1985 Query supported sample rates. Fixes #341732.
1987 2006-05-15 Julien MOUTTE <julien@moutte.net>
1989 * gst/playback/gstdecodebin.c: (cleanup_decodebin),
1990 (gst_decode_bin_change_state): Make decodebin reusable
1991 when going from PAUSE_TO_READY and then back to PAUSED.
1994 2006-05-15 Wim Taymans <wim@fluendo.com>
1996 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
1997 (vorbis_dec_convert), (vorbis_dec_src_query),
1998 (vorbis_dec_sink_query), (vorbis_dec_src_event),
1999 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
2000 (vorbis_dec_clean_queued), (vorbis_dec_push),
2001 (vorbis_handle_data_packet), (vorbis_dec_change_state):
2002 Cleanups. Use refcounting and DEBUG_OBJECT.
2003 Reset segment on flush, use code methods instead of our
2005 Fix potential memleak.
2007 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2009 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
2010 (gst_alsasink_init):
2011 * ext/alsa/gstalsasink.h:
2012 Don't leak allocated snd_output_t structure if there's
2013 more than one alsasink instance at a time (#341873).
2014 Also fix GObject macros in header file.
2016 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2018 * gst/subparse/gstsubparse.c:
2019 (gst_sub_parse_data_format_autodetect):
2020 Don't use libxml functions in the typefinding code.
2022 2006-05-15 Wim Taymans <wim@fluendo.com>
2024 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
2025 Fix seeking performance in the case where a non-header
2026 packet has a 0 granulepos (busted theora case).
2028 (nvdr: thanks Wim for not mentioning who spotted and fixed it in
2029 the first place, you limelight stealer you)
2031 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2033 * gst/subparse/gstsubparse.c:
2034 (gst_sub_parse_data_format_autodetect):
2035 Improve SAMI typefinding: handle case where there are
2036 whitespaces or newlines in front of the first <SAMI>
2039 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2042 Build video4linux plugin even if there's no XVIDEO, just
2043 without implementing the GstXOverlay interface (#334002).
2045 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2048 * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
2050 Add tentative support for libvisual-0.4 (#336881).
2052 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2054 Patch by: Young-Ho Cha <ganadist at chollian net>
2056 * gst/subparse/samiparse.c: (handle_start_font):
2057 Need to map "silver" colour explicitly (#169936).
2059 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
2061 Patch by: Young-Ho Cha <ganadist at chollian net>
2063 * gst/subparse/Makefile.am:
2064 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2065 (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
2066 (gst_sub_parse_format_autodetect), (feed_textbuf),
2067 (gst_subparse_type_find), (plugin_init):
2068 * gst/subparse/gstsubparse.h:
2069 * gst/subparse/samiparse.c:
2070 * gst/subparse/samiparse.h:
2071 Add support for SAMI subtitles (#169936).
2073 2006-05-14 Michael Smith <msmith@fluendo.com>
2075 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
2076 Fix #341696: crash when mixing L+R+C to mono or stereo.
2077 * tests/check/Makefile.am:
2078 * tests/check/elements/audioconvert.c: (set_channel_positions),
2079 (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
2080 (audioconvert_suite):
2081 Add test for the above, including some generic framework bits for
2082 testing multichannel things.
2084 === release 0.10.7 ===
2086 2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
2089 releasing 0.10.7, "Leave the gun"
2091 2006-05-13 Jan Schmidt <thaytan@mad.scientist.com>
2093 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
2094 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
2097 2006-05-12 Jan Schmidt <thaytan@mad.scientist.com>
2099 * docs/libs/gst-plugins-base-libs-docs.sgml:
2100 * docs/libs/gst-plugins-base-libs-sections.txt:
2101 * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
2102 * gst-libs/gst/video/video.h:
2103 * gst/videoscale/Makefile.am:
2104 * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
2105 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
2106 * tests/check/Makefile.am:
2107 * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
2109 Fix integer overflow problem with pixel-aspect-ratio calculations
2110 in videoscale and xvimagesink (#341542)
2112 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
2114 * gst-libs/gst/tag/gstid3tag.c:
2115 Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
2117 2006-05-12 Sebastien Moutte <sebastien@moutte.net>
2120 update win32 files listing
2122 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
2124 patch by: Sjoerd Simons (sjoerd@luon.net)
2126 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
2127 (group_create), (group_destroy), (add_stream),
2128 (gst_play_base_bin_get_property),
2129 (gst_play_base_bin_get_streaminfo_value_array):
2130 * gst/playback/gstplaybasebin.h:
2131 API: GstPlayBaseBin::stream-info-value-array property
2132 use a more bindings-friendly way of exposing streaminfo
2133 using a GValueArray. Tested in ipython.
2136 2006-05-11 Wim Taymans <wim@fluendo.com>
2138 * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
2139 (queue_underrun_cb), (queue_filled_cb):
2140 Also catch queue underruns but don't do anything yet.
2141 Refactor and comment queue enlarging code a bit.
2143 * gst/playback/gstplaybasebin.c: (queue_overrun),
2144 (queue_threshold_reached), (queue_out_of_data),
2145 (gen_preroll_element):
2146 If a queue over/underruns check that we don't create nasty
2147 deadlocks when the min-threshold is not reached but the
2148 max-bytes is. In those cases disable max-bytes when we
2149 know that the queue is fed timed data.
2152 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
2154 * gst/playback/gstplaybin.c: (gen_audio_element):
2155 Make playbin automatically plug an 'audioresample'
2156 element before the audio sink as well. This solves
2157 problems with sinks that only accept a very specific
2158 sample rate, like esdsink (e.g. #340379).
2160 2006-05-11 Tim-Philipp Müller <tim at centricular dot net>
2162 * gst/playback/gstplaybasebin.c: (gen_source_element):
2163 Make http sources send special headers so that we receive
2164 icecast metadata if the http stream is an icecast stream
2165 (otherwise the server will just ignore them). This also
2166 means that from now on users will need the 'icydemux'
2167 element from gst-plugins-good installed if they want to
2168 listen to icecast radio streams. (#341432, #333657).
2170 2006-05-11 Thomas Vander Stichele <thomas at apestaart dot org>
2172 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
2173 (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
2174 remove stupid example from docs - it should come with a simple
2177 * tests/check/elements/multifdsink.c: (wait_bytes_served),
2178 (fail_if_can_read), (GST_START_TEST),
2179 (gst_multifdsink_create_streamheader), (multifdsink_suite):
2180 add a test for changing streamheader which exposes a bug in
2183 2006-05-11 Michael Smith <msmith@fluendo.com>
2185 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
2186 (gst_gnome_vfs_src_received_headers_callback):
2187 * ext/gnomevfs/gstgnomevfssrc.h:
2188 Don't set icy-caps unless we have a sane interval value. Move
2189 interval to a local variable; we never use it outside this function.
2191 2006-05-11 Wim Taymans <wim@fluendo.com>
2193 * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
2194 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
2195 Register special buffer types along with the objects so
2196 that they are not registered at runtime from N different
2197 streaming threads since they are not threadsafe.
2199 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
2201 * tests/check/elements/multifdsink.c: (wait_bytes_served),
2202 (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
2203 add two more tests, one doing streamheader
2205 2006-05-10 Thomas Vander Stichele <thomas at apestaart dot org>
2207 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
2208 clean up the bufqueue when shutting down
2209 * tests/check/Makefile.am:
2210 * tests/check/elements/multifdsink.c: (setup_multifdsink),
2211 (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
2213 add a test for the leak that was just fixed
2215 2006-05-10 Wim Taymans <wim@fluendo.com>
2217 * gst/adder/gstadder.c: (gst_adder_setcaps),
2218 (gst_adder_query_duration), (gst_adder_query), (forward_event),
2219 (gst_adder_src_event), (gst_adder_sink_event),
2220 (gst_adder_class_init), (gst_adder_finalize),
2221 (gst_adder_request_new_pad), (gst_adder_collected):
2222 * gst/adder/gstadder.h:
2223 Updated some docs. Added comments and FIXMEs all over the place.
2224 Improve debugging info.
2225 Fix leak on finalize by not calling the parent.
2226 Implement duration query.
2227 Make event forwarding threadsafe.
2228 Correctly send NEWSEGMENT at start and after flush.
2229 Handle EOS correctly.
2230 Post error when not negotiated.
2232 * tests/check/elements/adder.c: (GST_START_TEST):
2233 Added FIXME in the test.
2235 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
2237 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
2238 (gst_text_overlay_halign_get_type),
2239 (gst_text_overlay_wrap_mode_get_type):
2240 * ext/theora/theoradec.c: (theora_handle_type_packet),
2241 (theora_handle_data_packet):
2242 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
2243 (theora_enc_sink_setcaps), (theora_enc_chain):
2244 * gst-libs/gst/cdda/gstcddabasesrc.c:
2245 (gst_cdda_base_src_mode_get_type):
2246 * gst/audiotestsrc/gstaudiotestsrc.c:
2247 (gst_audiostestsrc_wave_get_type):
2248 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
2249 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
2250 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
2251 (gst_sync_method_get_type), (gst_unit_type_get_type),
2252 (gst_client_status_get_type):
2253 * gst/videoscale/gstvideoscale.c:
2254 (gst_video_scale_method_get_type):
2255 * gst/videotestsrc/gstvideotestsrc.c:
2256 (gst_video_test_src_pattern_get_type):
2257 * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
2258 (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
2259 (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
2260 (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
2261 (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
2262 (paint_setup_RGB565), (paint_setup_xRGB1555):
2263 Const-ify GEnumValue and GFlagsValue arrays. Use
2264 GST_ROUND_UP_* macros instead of home-made ones.
2266 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
2269 Require core CVS for the new newsegment stuff.
2271 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
2273 Patch by: Sjoerd Simons <sjoerd at luon net>
2275 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
2276 Register nick for enum value (#341160).
2278 2006-05-09 Stefan Kost <ensonic@users.sf.net>
2280 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
2282 backout typefind patch #340375
2284 * tests/check/elements/adder.c: (message_received),
2285 (GST_START_TEST), (adder_suite):
2286 redo, signal-handling of test
2288 2006-05-09 Wim Taymans <wim@fluendo.com>
2290 * gst/adder/gstadder.c: (gst_adder_request_new_pad),
2291 (gst_adder_collected):
2292 * gst/adder/gstadder.h:
2293 Remove bogus segment merging and forwarding, we don't
2294 care about timestamps anyway and we just produce a
2296 Also create a nice NEWSEGMENT event when we start.
2297 Use _scale_int some more.
2299 2006-05-09 Edward Hervey <edward@fluendo.com>
2301 * tests/icles/stress-xoverlay.c:
2302 Fix if core was built without parsing support.
2304 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
2306 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2307 Add SEDG (Samsung MPEG-4) fourcc.
2309 2006-05-09 Edward Hervey <edward@fluendo.com>
2311 * tests/icles/stress-xoverlay.c:
2312 * tests/examples/volume/volume.c:
2313 Fix if core was built without parsing support.
2315 * tests/examples/seek/seek.c:
2316 Disable the parse_launch example if core was built without parsing
2319 2006-05-08 Edward Hervey <edward@fluendo.com>
2321 * autogen.sh: (CONFIGURE_DEF_OPT):
2322 libtoolize on Darwin/MacOSX is called glibtoolize
2324 2006-05-07 Stefan Kost <ensonic@users.sf.net>
2326 * tests/check/Makefile.am:
2327 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
2328 Disable the adder test, until the build-slaves posses the kindness to
2329 either like it or to give valid reason for not doing so
2331 2006-05-07 Stefan Kost <ensonic@users.sf.net>
2333 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
2335 Shuffle NULL state change around and raise timeout more
2337 2006-05-07 Stefan Kost <ensonic@users.sf.net>
2339 * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
2340 (mp4_type_find), (plugin_init):
2341 Add typefind to distinguish between "audio/x-m4a" and new type
2342 "video/mp4". Fixes #340375
2344 * tests/check/elements/adder.c: (adder_suite):
2345 Raise timeout to make buildbot happy
2347 2006-05-07 Stefan Kost <ensonic@users.sf.net>
2349 * gst/adder/gstadder.c: (gst_adder_sink_event),
2350 (gst_adder_request_new_pad), (gst_adder_change_state):
2351 * gst/adder/gstadder.h:
2352 * tests/check/Makefile.am:
2353 * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
2354 (adder_suite), (main):
2355 Add sink-event handling to adder. It tries to merge incomming
2356 newsegment-events. Added test to check if segment_done is comming
2357 through. Fixes #340060
2359 2006-05-05 Andy Wingo <wingo@pobox.com>
2361 * ext/theora/theoraparse.c (gst_theora_parse_init)
2362 (theora_parse_src_convert, theora_parse_src_query):
2363 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
2364 (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
2365 query functions on the source pads of the theora and vorbis parse
2366 elements. Fixes position querying when doing a remux.
2368 2006-05-05 Michael Smith <msmith@fluendo.com>
2370 * ext/theora/theoraparse.c: (parse_granulepos),
2371 (theora_parse_drain_queue_prematurely),
2372 (theora_parse_queue_buffer), (theora_parse_sink_event):
2374 Fix invalid granulepos outputs when starting with a non-keyframe.
2376 2006-05-05 Jan Schmidt <thaytan@mad.scientist.com>
2378 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
2379 (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
2380 Rearrange MPEG system stream detection, fixing some memleaks in the
2382 Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
2383 they clean up their data correctly.
2384 Remove unused ogganx caps and move the 'is_annodex' check to inside
2385 the 'is_ogg' if statement.
2387 2006-05-05 Wim Taymans <wim@fluendo.com>
2389 * gst/playback/gstdecodebin.c: (cleanup_decodebin):
2390 Properly remove ghostpads. Fixes #340392
2392 2006-05-04 David Schleef <ds@schleef.org>
2394 * gst/typefind/gsttypefindfunctions.c:
2396 2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
2398 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
2399 (mpeg_ts_probe_headers), (mpeg_ts_type_find):
2401 When typefinding an MP3 in push-based mode, don't penalise the
2402 probability down to 74% when we found 5 valid frames just because we
2403 can't peek the end of the file.
2405 Make the probability for detecting MPEG Transport Streams based on the
2406 number of sequential headers we successfully detected.
2408 2006-05-03 Wim Taymans <wim@fluendo.com>
2410 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
2411 (vorbis_dec_push), (vorbis_dec_chain):
2412 Still produce an error when we receive an empty packet.
2414 2006-05-03 Wim Taymans <wim@fluendo.com>
2416 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
2417 (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
2418 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
2419 Mark buffers with DISCONT after seek and after activating new
2422 * ext/theora/gsttheoradec.h:
2423 * ext/theora/theoradec.c: (gst_theora_dec_reset),
2424 (theora_get_query_types), (theora_dec_sink_event),
2425 (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
2426 (theora_dec_change_state):
2428 Detect and mark DISCONT buffers.
2430 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
2431 (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
2432 (vorbis_dec_change_state):
2433 * ext/vorbis/vorbisdec.h:
2435 Detect and mark DISCONT buffers.
2436 Don't crash on 0 sized buffers.
2438 2006-05-03 Wim Taymans <wim@fluendo.com>
2440 * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
2441 (volume_transform_ip):
2442 Increase "volume" property to 10.0. Fixes #340369.
2443 Set the process function to NULL when capsnego fails so that
2444 we properly error out.
2446 2006-05-02 Stefan Kost <ensonic@users.sf.net>
2448 * gst/playback/gstplaybin.c: (add_sink):
2449 * gst/playback/test.c: (main):
2450 * gst/playback/test5.c: (dump_element_stats):
2451 * gst/playback/test6.c: (main):
2452 free cpas using gst_caps_unref, don't leak caps-strings
2454 2006-05-01 Tim-Philipp Müller <tim at centricular dot net>
2456 * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
2458 Refine musepack typefinding a bit. Return MAXIMUM
2459 probability when we detect stream version 7 to make
2460 sure the mpeg audio typefinder doesn't trump us.
2462 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
2464 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
2465 Protect against unexpected NULL strf_data buffer.
2467 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
2469 * tests/check/elements/audioconvert.c: (verify_convert),
2471 interpret the out[] buffer in the order the bytes are actually
2472 put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
2473 Other tests should use BYTE_ORDER since the array is filled in
2476 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
2478 * tests/check/elements/audioconvert.c: (verify_convert),
2480 when a test fails, give an indication of which it is
2482 2006-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
2484 * gst-libs/gst/cdda/gstcddabasesrc.c:
2485 compile fix; strtol() needs <stdlib.h>
2487 2006-04-28 Stefan Kost <ensonic@users.sf.net>
2489 * ext/alsa/gstalsamixerelement.c:
2490 * ext/alsa/gstalsasrc.c:
2491 * ext/cdparanoia/gstcdparanoiasrc.c:
2492 * ext/gnomevfs/gstgnomevfssink.c:
2493 * ext/gnomevfs/gstgnomevfssrc.c:
2494 * ext/ogg/gstoggdemux.c:
2495 * ext/ogg/gstoggmux.c:
2496 * ext/ogg/gstoggparse.c:
2497 * ext/ogg/gstogmparse.c:
2498 * ext/pango/gstclockoverlay.c:
2499 * ext/pango/gsttextoverlay.c:
2500 * ext/pango/gsttextrender.c:
2501 * ext/pango/gsttimeoverlay.c:
2502 * ext/theora/theoradec.c:
2503 * ext/theora/theoraenc.c:
2504 * ext/vorbis/vorbisdec.c:
2505 * ext/vorbis/vorbisenc.c:
2506 * gst-libs/gst/audio/gstaudiofilter.c:
2507 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
2508 * gst/audioconvert/gstaudioconvert.c:
2509 * gst/audiorate/gstaudiorate.c:
2510 * gst/audioresample/gstaudioresample.c:
2511 * gst/audiotestsrc/gstaudiotestsrc.c:
2512 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2513 * gst/playback/gstdecodebin.c:
2514 * gst/playback/gstplaybin.c:
2515 * gst/playback/gststreamselector.c:
2516 * gst/subparse/gstsubparse.c:
2517 * gst/tcp/gstmultifdsink.c:
2518 * gst/tcp/gsttcpclientsink.c:
2519 * gst/tcp/gsttcpclientsrc.c:
2520 * gst/tcp/gsttcpserversink.c:
2521 * gst/tcp/gsttcpserversrc.c:
2522 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
2523 * gst/videorate/gstvideorate.c:
2524 * gst/videoscale/gstvideoscale.c:
2525 * gst/videotestsrc/gstvideotestsrc.c:
2526 * gst/volume/gstvolume.c:
2527 * sys/v4l/gstv4ljpegsrc.c:
2528 * sys/v4l/gstv4lmjpegsink.c:
2529 * sys/v4l/gstv4lmjpegsrc.c:
2530 * sys/v4l/gstv4lsrc.c:
2531 * sys/ximage/ximagesink.c:
2532 * sys/xvimage/xvimagesink.c:
2533 * tests/check/libs/cddabasesrc.c:
2534 make GstElementDetails const
2536 2006-04-28 Stefan Kost <ensonic@users.sf.net>
2538 * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
2540 send events from src-pad to all sink-pads fixes #338657
2542 2006-04-28 Stefan Kost <ensonic@users.sf.net>
2544 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
2545 (alsasink_parse_spec):
2546 query width capabilities from alsa, fixes #338919
2548 2006-04-28 Wim Taymans <wim@fluendo.com>
2550 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
2551 (gst_multi_fd_sink_remove_client_link):
2552 * gst/tcp/gstmultifdsink.h:
2553 Fix race condition in multifdsink that can lead to spurious
2554 duplicate clients. this patch adds a new signal that is fired when
2555 multifdsink has removed all references to the fd.
2557 Updated documentation.
2558 API: client-fd-removed signal added
2560 2006-04-28 Michael Smith <msmith@fluendo.com>
2562 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
2563 When asking g_value_array_new to prealloc elements, we may as well
2564 ask for the right number of elements.
2566 2006-04-28 Wim Taymans <wim@fluendo.com>
2568 * gst-libs/gst/audio/gstbaseaudiosink.c:
2569 (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
2570 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2571 patch to make timestamp checking more tollerant to rounding
2572 errors given that real discontinuities are to be marked on
2573 buffers. Fixes some asf files and #338778.
2574 Also avoid some crashers when we receive an event in the
2577 2006-04-28 Michael Smith <msmith@fluendo.com>
2579 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
2580 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
2581 (gst_gnome_vfs_src_get_property),
2582 (gst_gnome_vfs_src_send_additional_headers_callback),
2583 (gst_gnome_vfs_src_received_headers_callback),
2584 (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
2585 (gst_gnome_vfs_src_stop):
2586 * ext/gnomevfs/gstgnomevfssrc.h:
2587 Remove ICY handling (mostly) from gnomevfssrc, in favour of
2588 proper shared support within icydemux.
2590 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
2592 * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
2593 (gst_video_rate_swap_prev), (gst_video_rate_chain):
2595 fix a leak when no caps negotiated
2596 fix counting of input frames
2597 * tests/check/elements/.cvsignore:
2598 * tests/check/elements/videorate.c: (assert_videorate_stats),
2599 (GST_START_TEST), (videorate_suite):
2602 2006-04-28 Wim Taymans <wim@fluendo.com>
2604 * gst-libs/gst/audio/gstringbuffer.c:
2605 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
2606 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
2607 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
2608 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
2609 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
2610 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
2611 (gst_ring_buffer_commit), (gst_ring_buffer_read),
2612 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
2613 (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
2614 Check arguments passed to public functions instead of
2617 2006-04-28 Wim Taymans <wim@fluendo.com>
2619 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
2620 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
2621 GstBaseAudioSrc must be live or it does not work.
2623 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
2624 Don't set live to TRUE as this is the default in the parentclass.
2626 2006-04-28 Wim Taymans <wim@fluendo.com>
2628 * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
2629 (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
2630 Videoscale doesn't pass on pixel-aspect ratio. Handle all
2631 fixation cases better. Fixes #338991
2633 2006-04-28 Wim Taymans <wim@fluendo.com>
2635 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
2636 Handle 0/1 framerate correctly Fixes #331901.
2638 2006-04-28 Wim Taymans <wim@fluendo.com>
2640 * tests/check/elements/audioconvert.c: (get_float_caps),
2641 (GST_START_TEST), (audioconvert_suite):
2642 Added check for correct clipping when doing float samples
2645 2006-04-28 Wim Taymans <wim@fluendo.com>
2647 * gst/videorate/gstvideorate.c: (gst_video_rate_event),
2648 (gst_video_rate_chain):
2649 Print more debugging info.
2651 2006-04-28 Wim Taymans <wim@fluendo.com>
2653 * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
2654 (resample_set_state_from_caps):
2655 Add support for other formats audioresample can handle such as
2656 32 bits in and float and 64 bits float. Fixes #301759
2658 2006-04-28 Wim Taymans <wim@fluendo.com>
2660 * gst/audioconvert/audioconvert.c: (float):
2661 correctly clip float samples > 1.0. Fixes #338718
2663 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
2665 Patch by: Young-Ho Cha <ganadist at chollian net>
2667 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2668 (gst_text_overlay_render_text):
2669 Don't strip newlines from the text. Also, center lines
2670 within multi-line paragraphs (#339405).
2672 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
2674 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
2675 Fix wavpack typefinding to work in more cases (don't peek
2676 for chunks of multiple hundred kBs at once, but process
2677 things step-by-step in smaller units). Fixes #339786.
2679 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
2684 === release 0.10.6 ===
2686 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
2689 releasing 0.10.6, "Chao"
2691 2006-04-26 David Schleef <ds@schleef.org>
2693 * gst/videoscale/gstvideoscale.c: Add call to oil_init().
2696 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
2699 * win32/common/config.h:
2702 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
2704 patch by: Wim Taymans
2706 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
2707 (gst_ogg_demux_perform_seek):
2708 make sure correct newsegments are sent, so that the decoder
2709 and the demuxer agree on timestamps. Fixes playback of a lot
2710 of Ogg files that do not start from 0. Fixes #339833.
2712 2006-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
2714 Patch by: Edward Hervey <edward@fluendo.com>
2716 * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
2717 * tests/check/Makefile.am:
2718 * tests/check/elements/videorate.c: (assert_videorate_stats),
2719 (setup_videorate), (cleanup_videorate), (GST_START_TEST),
2720 (videorate_suite), (main):
2721 Fix an infinite loop if frames are passed in with wrongly ordered
2722 timestamps. Fixes #339013.
2724 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
2726 Patch by: Tim-Philipp Müller <tim at centricular dot net>
2728 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
2729 fix typefinding on some ISO files. Fixes #339212.
2731 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
2733 Patch by: Tim-Philipp Müller <tim at centricular dot net>
2735 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2736 add another H264 fourcc. Fixes #339047.
2738 2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
2740 Patch by: Jan Schmidt
2742 * gst/playback/gststreamselector.c:
2743 (gst_stream_selector_bufferalloc):
2744 Restore old StreamSelector behaviour.
2747 2006-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
2750 * win32/common/config.h:
2753 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
2755 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2757 * gst-libs/gst/rtp/gstbasertpdepayload.c:
2758 (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
2759 Fix some memory leaks: on finalize, free buffers left in the queue
2760 before destroying the queue; in _push(), unref rtp_buf even if
2761 the process vfunc returned a NULL buffer as output buffer (#337548);
2762 demote some recuring debug messages to LOG level.
2764 2006-04-11 Wim Taymans <wim@fluendo.com>
2766 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
2767 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
2768 (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
2769 (gst_ogg_demux_loop):
2771 Respect segment stop when emiting EOS or SEGMENT_DONE.
2774 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
2776 * gst/playback/gststreamselector.c:
2777 (gst_stream_selector_get_property):
2778 Don't leak pad name.
2780 2006-04-10 Michael Smith <msmith@fluendo.com>
2782 * tests/check/Makefile.am:
2783 * tests/check/gst-plugins-base.supp:
2784 Suppress an old libtheora bug (fixed in more recent versions), so
2785 that FC4 buildslaves can pass.
2787 2006-04-10 Wim Taymans <wim@fluendo.com>
2789 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
2790 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
2791 (gst_ogg_demux_init), (gst_ogg_demux_finalize),
2792 (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
2793 (gst_ogg_demux_loop):
2795 Remember what error we got when finding chains, if we
2796 were shutdown, that would not be an error.
2798 2006-04-10 Wim Taymans <wim@fluendo.com>
2800 * gst-libs/gst/audio/gstbaseaudiosink.c:
2801 (gst_base_audio_sink_event):
2802 Starting the ringbuffer when we did not acquire it can cause
2803 a deadlock, is pointless and causes nasty things for
2805 Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
2807 2006-04-10 Wim Taymans <wim@fluendo.com>
2809 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
2810 (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
2811 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
2812 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
2813 (gst_ogg_demux_deactivate_current_chain),
2814 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
2815 (gst_ogg_demux_bisect_forward_serialno),
2816 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
2817 Add some more debugging.
2819 2006-04-10 Wim Taymans <wim@fluendo.com>
2821 * ext/theora/theoradec.c: (theora_dec_src_event),
2822 (theora_handle_data_packet):
2823 Some more debug info.
2825 * tests/examples/seek/seek.c: (start_seek), (main):
2826 Print element messages too.
2828 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
2830 * gst/audioresample/debug.h:
2831 replace debug macros with variable number of parameters
2832 by a simple alias to gstreamer standard debug macros
2833 (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
2834 supported by MSVC 6.0 and 7.1)
2835 * gst/audioresample/resample.h:
2836 define M_PI and rint for WIN32
2837 * win32/common/libgstaudio.def:
2838 * win32/common/libgstriff.def:
2839 * win32/common/libgsttag.def:
2840 * win32/common/libgstvideo.def:
2841 add new exported functions
2843 update project files
2845 2006-04-08 Stefan Kost <ensonic@users.sf.net>
2847 * ext/alsa/gstalsamixeroptions.c:
2848 (gst_alsa_mixer_options_class_init):
2849 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
2850 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
2851 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
2852 * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
2853 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
2854 * gst-libs/gst/audio/gstaudiofilter.c:
2855 (gst_audio_filter_class_init):
2856 * gst-libs/gst/audio/gstaudiosink.c:
2857 (gst_audioringbuffer_class_init):
2858 * gst-libs/gst/audio/gstaudiosrc.c:
2859 (gst_audioringbuffer_class_init):
2860 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
2861 * gst-libs/gst/interfaces/colorbalancechannel.c:
2862 (gst_color_balance_channel_class_init):
2863 * gst-libs/gst/interfaces/mixeroptions.c:
2864 (gst_mixer_options_class_init):
2865 * gst-libs/gst/interfaces/mixertrack.c:
2866 (gst_mixer_track_class_init):
2867 * gst-libs/gst/interfaces/tunerchannel.c:
2868 (gst_tuner_channel_class_init):
2869 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
2870 * gst-libs/gst/netbuffer/gstnetbuffer.c:
2871 (gst_netbuffer_class_init):
2872 * gst-libs/gst/rtp/gstbasertppayload.c:
2873 (gst_basertppayload_class_init):
2874 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
2875 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
2876 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
2877 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
2878 * gst/playback/gststreamselector.c:
2879 (gst_stream_selector_class_init):
2880 * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
2881 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
2882 * sys/v4l/gstv4lcolorbalance.c:
2883 (gst_v4l_color_balance_channel_class_init):
2884 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
2885 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
2886 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
2887 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
2888 (gst_v4l_tuner_norm_class_init):
2889 * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
2890 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
2891 * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
2892 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
2894 2006-04-08 Stefan Kost <ensonic@users.sf.net>
2896 * ext/pango/gsttextrender.h:
2897 * gst-libs/gst/audio/gstaudiosink.h:
2898 * gst-libs/gst/audio/gstaudiosrc.h:
2899 * gst-libs/gst/audio/gstbaseaudiosink.h:
2900 * gst-libs/gst/audio/gstbaseaudiosrc.h:
2901 * gst-libs/gst/audio/gstringbuffer.h:
2902 * gst-libs/gst/rtp/gstbasertpdepayload.h:
2903 * gst-libs/gst/rtp/gstbasertppayload.h:
2904 * gst-libs/gst/video/gstvideofilter.h:
2905 * gst-libs/gst/video/gstvideosink.h:
2906 * gst/playback/gstplaybasebin.h:
2907 * gst/tcp/gstmultifdsink.h:
2908 * sys/v4l/gstv4lelement.h:
2909 Fix broken GObject macros
2911 2006-04-08 Stefan Kost <ensonic@users.sf.net>
2913 * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
2914 More debug to trace why my USB headset is not working with gst
2916 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
2918 * gst/playback/gstplaybasebin.c: (group_destroy):
2919 Clean up our group elements properly in the case where it never
2920 got committed - it still got added unconditionally to the bin.
2922 2006-04-07 Wim Taymans <wim@fluendo.com>
2924 * ext/theora/theoradec.c: (theora_dec_sink_event),
2925 (theora_handle_data_packet), (theora_dec_chain):
2926 Unref unhandled events.
2927 Protect against empty buffers.
2928 Perform QoS on running time.
2930 2006-04-07 Michael Smith <msmith@fluendo.com>
2932 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
2933 (gst_vorbis_enc_chain):
2934 Remove leaks from vorbisenc.
2935 Mostly minor changes, the only significant one is that now the
2936 buffers we set as 'streamheader' on the caps are copies of the
2937 original buffers, to avoid circular refcounting problems.
2939 2006-04-07 Jan Schmidt <thaytan@mad.scientist.com>
2941 * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
2942 Don't remove our mute-probe if someone else already did so.
2943 Don't set a 2nd one if there is already one pending on the pad.
2945 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
2947 When a seek fails, ensure that playbin is still set back to playing.
2949 * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
2950 (mpeg_ts_type_find), (plugin_init):
2951 Add a typefind function for mpeg-ts streams. (Closes: #336617)
2953 2006-04-06 Andy Wingo <wingo@pobox.com>
2955 * gst/videorate/gstvideorate.c (gst_video_rate_reset)
2956 (gst_video_rate_init): Caps-related parameters should not be reset
2957 by a flush -- move their inits to the instance init function.
2958 (gst_video_rate_flush_prev): Don't complain if gst_pad_push
2959 is not OK, just return the result.
2961 * gst/audiotestsrc/gstaudiotestsrc.c
2962 (gst_audio_test_src_class_init)
2963 (gst_audio_test_src_get_times): Re-enable is-live=true, as was
2964 broken by Stefan's commit on 24 March.
2966 * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
2967 buffers being pushed out. Fixes oggmux ! multifdsink.
2969 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
2971 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
2972 (gst_vorbis_dec_init), (vorbis_dec_finalize):
2973 * ext/vorbis/vorbisdec.h:
2974 * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
2975 (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
2976 (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
2977 (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
2978 (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
2979 (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
2980 (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
2981 (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
2982 (gst_vorbis_enc_buffer_from_packet),
2983 (gst_vorbis_enc_buffer_from_header_packet),
2984 (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
2985 (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
2986 (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
2987 (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
2988 (gst_vorbis_enc_change_state):
2989 * ext/vorbis/vorbisenc.h:
2990 Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
2991 vorbisenc adhere to the official nomenclature; use boilerplate
2994 2006-04-04 Andy Wingo <wingo@pobox.com>
2996 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
2997 Whoops, fix bug introduced. Bad hacker!
2999 * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
3000 Properly handle the case where you get EOS before any buffers are
3001 received. Use gst_buffer_make_metadata_writable where appropriate.
3003 * ext/theora/theoradec.c (theora_handle_data_packet): This value
3004 is often negative -- make it signed so as not to wrap around.
3005 Fixes segfaults introduced on 9 March.
3007 2006-04-03 Wim Taymans <wim@fluendo.com>
3009 * ext/theora/gsttheoradec.h:
3010 * ext/theora/theoradec.c: (theora_dec_src_event):
3011 Don't try to store a gdouble in a gboolean.
3014 2006-04-03 Michael Smith <msmith@fluendo.com>
3016 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
3018 Make it suck slightly less by writing out the final page.
3019 Still can't encode a vorbis-in-ogg file correctly, though.
3021 2006-04-03 Andy Wingo <wingo@pobox.com>
3023 * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
3026 * ext/theora/theora.c (plugin_init): Register theoraparse.
3028 * ext/theora/gsttheoraparse.h:
3029 * ext/theora/theoraparse.c: New files implementing a theora
3030 parser. Now we can properly remux ogg/theora+vorbis, yay.
3032 * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
3034 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
3036 * gst/audiotestsrc/gstaudiotestsrc.c:
3037 Fixed the sample pipeline (see #323798)
3039 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
3042 * win32/common/config.h:
3043 * win32/common/config.h.in:
3044 use AS_VERSION and AS_NANO
3047 2006-03-31 Andy Wingo <wingo@pobox.com>
3049 * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
3050 uninitialized variable return that would happen.
3052 * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
3053 uninitialized variable return that would never happen.
3055 * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
3056 (vorbis_parse_sink_event): Add an event function to flush our
3057 state on a seek, and to drain buffers on a premature EOS.
3058 (vorbis_parse_push_headers, vorbis_parse_clear_queue)
3059 (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely)
3060 (vorbis_parse_chain, vorbis_parse_queue_buffer)
3061 (vorbis_parse_drain_queue): Queue up buffers until we can set
3062 their timestamps and granulepos values.
3064 * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
3065 and keep track of data needed for deriving granulepos and
3066 timestamps for buffers.
3068 2006-03-29 Wim Taymans <wim@fluendo.com>
3070 Patch by: j^ <j at bootlab dot org>
3072 * ext/alsa/gstalsamixerelement.c:
3073 (gst_alsa_mixer_element_class_init):
3074 * ext/alsa/gstalsasink.c:
3075 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
3076 * ext/ogg/gstoggdemux.c:
3077 * ext/ogg/gstoggmux.c:
3078 * ext/ogg/gstoggparse.c:
3079 * ext/pango/gstclockoverlay.c:
3080 * ext/pango/gsttextoverlay.c:
3081 * ext/pango/gsttextrender.c:
3082 * ext/pango/gsttimeoverlay.c:
3083 * ext/theora/theoradec.c:
3084 * ext/theora/theoraenc.c:
3085 * ext/vorbis/vorbisdec.c:
3086 * ext/vorbis/vorbisenc.c:
3087 * gst/audioconvert/gstaudioconvert.c:
3088 * gst/subparse/gstsubparse.c:
3089 * gst/tcp/gstmultifdsink.c:
3090 * gst/tcp/gsttcpclientsink.c:
3091 * gst/tcp/gsttcpclientsrc.c:
3092 * gst/tcp/gsttcpserversink.c:
3093 * gst/tcp/gsttcpserversrc.c:
3094 better/unified long descriptions
3097 2006-03-29 Wim Taymans <wim@fluendo.com>
3099 * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
3101 Don't let double and triple clicks mess up our state.
3103 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
3105 * gst/playback/gstplaybin.c: (gen_video_element),
3106 (gen_text_element), (gen_audio_element), (gen_vis_element):
3107 Error out gracefully when we can't create any of the usual
3108 conversion elements for some reason. Also, don't try to
3109 create an audioscale (sic) element that's not used anyway.
3111 2006-03-28 Tim-Philipp Müller <tim at centricular dot net>
3113 * gst/playback/gstplaybasebin.c: (setup_source):
3114 Don't post RESOURCE_NOT_FOUND error when we can't find a source
3115 element for a particular protocol, that's confusing for users.
3116 Instead, post a RESOURCE_FAILED error, so that our own error
3117 message is actually shown in totem etc. (#336303).
3119 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
3121 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
3123 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
3124 (gst_gnome_vfs_src_get_icy_metadata):
3125 Fix some minor memory leaks (#336194).
3127 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
3129 * ext/gnomevfs/gstgnomevfs.c:
3130 (gst_gnome_vfs_location_to_uri_string):
3131 * ext/gnomevfs/gstgnomevfs.h:
3132 * ext/gnomevfs/gstgnomevfssink.c:
3133 (gst_gnome_vfs_sink_set_property):
3134 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
3135 Make gnomevfssink accept filenames as well as URIs for the
3136 "location" property, just like gnomevfssrc does (and
3137 filesrc/filesink do) (#336190).
3139 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
3141 * tests/check/generic/clock-selection.c: (GST_START_TEST):
3142 set to NULL before unreffing, fixes a valgrind leak.
3143 Why was this not triggering the error that an object needs to
3144 be NULL before unreffing ?
3145 * win32/common/config.h:
3148 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
3150 * gst/subparse/gstsubparse.c: (convert_encoding),
3151 (gst_sub_parse_change_state):
3152 * gst/subparse/gstsubparse.h:
3153 Text subtitle files may or may not be UTF-8. If it's not, we
3154 don't really want to see '?' characters in place of non-ASCII
3155 characters like accented characters. So let's assume the input
3156 is UTF-8 until we come across text that is clearly not. If it's
3157 not UTF-8, we don't really know what it is, so try the following:
3158 (a) see whether the GST_SUBTITLE_ENCODING environment variable
3159 is set; if not, check (b) if the current locale encoding is
3160 non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
3161 the current locale encoding is UTF-8 and the environment variable
3162 was not set to any particular encoding. Not perfect, but better
3163 than nothing (and better than before, I think) (fixes #172848).
3165 2006-03-24 Thomas Vander Stichele <thomas at apestaart dot org>
3168 update core requirement to 0.10.4.1 because of async_playback
3169 vmethod on GstBaseSink
3171 2006-03-24 Stefan Kost <ensonic@users.sf.net>
3173 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
3174 * gst/adder/gstadder.c: (gst_adder_init):
3175 use DEBUG_FUNCPTR for collectpads
3177 2006-03-24 Stefan Kost <ensonic@users.sf.net>
3179 * docs/plugins/Makefile.am:
3180 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3181 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3182 * ext/cdparanoia/gstcdparanoiasrc.c:
3183 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
3184 (gst_gnome_vfs_sink_class_init):
3185 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
3186 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
3187 * ext/ogg/gstoggmux.c:
3188 * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
3189 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
3190 (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
3191 * ext/pango/gsttextoverlay.c:
3192 * ext/pango/gsttextrender.c:
3193 * ext/theora/theoradec.c:
3194 * ext/theora/theoraenc.c:
3195 * ext/vorbis/vorbisdec.c:
3196 * ext/vorbis/vorbisenc.c:
3197 * gst-libs/gst/audio/gstaudiofilter.c:
3198 (gst_audio_filter_base_init):
3199 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3200 (gst_audio_filter_template_base_init):
3201 * gst/adder/gstadder.c: (gst_adder_get_type):
3202 * gst/adder/gstadder.h:
3203 * gst/audioconvert/gstaudioconvert.c:
3204 * gst/audiotestsrc/gstaudiotestsrc.c:
3205 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
3206 (gst_audio_test_src_create):
3207 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3208 * gst/playback/gstdecodebin.c:
3209 * gst/playback/gstplaybin.c:
3210 * gst/playback/gststreamselector.c:
3211 (gst_stream_selector_base_init):
3212 * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
3213 * gst/volume/gstvolume.c:
3214 * sys/v4l/gstv4lmjpegsink.c:
3215 * sys/v4l/gstv4lmjpegsrc.c:
3216 * tests/check/libs/cddabasesrc.c:
3217 * tests/old/examples/gob/gst-identity2.gob:
3218 Add docs for adder, use GST_ELEMENT_DETAILS macro,
3219 define GstElementDetails at the top
3221 2006-03-23 Sebastien Moutte <sebastien@moutte.net>
3223 * win32/common/libgstinterfaces.def:
3224 Add a lot of export functions for gst-python
3225 * win32/vs6/libgstinterfaces.dsp:
3226 Add a missing include folder in the project configuration
3228 2006-03-23 Wim Taymans <wim@fluendo.com>
3230 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3231 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
3232 (gst_base_audio_src_change_state):
3233 Fix audio sources, forgot to make the ringbuffer
3236 2006-03-23 Wim Taymans <wim@fluendo.com>
3238 * gst-libs/gst/audio/gstbaseaudiosrc.c:
3239 (gst_base_audio_src_get_time), (gst_base_audio_src_create),
3240 (gst_base_audio_src_change_state):
3241 unparent instead of unref the ringbuffer.
3243 2006-03-23 Wim Taymans <wim@fluendo.com>
3245 * gst-libs/gst/audio/gstbaseaudiosink.c:
3246 (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
3247 (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
3248 Implement new async_play vmethod to start slaving and allow
3249 playback start in case of async PLAY state changes.
3251 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
3252 Enable QoS with new method in base class.
3254 2006-03-23 Wim Taymans <wim@fluendo.com>
3256 Patch by: Julien MOUTTE <julien at moutte dot net>
3258 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
3259 (gst_video_test_src_do_seek), (gst_video_test_src_create):
3260 Partially handle 0 framerate, only EOS after the first frame
3263 2006-03-23 Wim Taymans <wim@fluendo.com>
3265 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
3267 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
3268 (gst_riff_create_video_template_caps):
3269 * gst/ffmpegcolorspace/avcodec.h:
3270 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3271 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
3272 (gst_ffmpegcsp_avpicture_fill):
3273 * gst/ffmpegcolorspace/imgconvert.c:
3274 Patch for support of YVU9 AVI files (#334822)
3276 2006-03-22 Edward Hervey <edward@fluendo.com>
3278 * docs/design/design-decodebin.txt:
3279 Added design document for new decodebin
3280 (Target Caps): text/x-pango-markup is also a default target caps.
3282 2006-03-22 Wim Taymans <wim@fluendo.com>
3284 * gst-libs/gst/audio/gstbaseaudiosink.c:
3285 (gst_base_audio_sink_dispose):
3286 Since we _parent the ringbuffer, we also need to
3287 _unparent instead of a plain _unref.
3289 2006-03-22 Wim Taymans <wim@fluendo.com>
3291 * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
3292 (stop_seek), (scrub_toggle_cb), (main):
3295 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
3297 * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
3298 (gst_ogg_parse_chain):
3299 Fix very inefficient usage of linked lists (#335365).
3301 2006-03-21 Edward Hervey <edward@fluendo.com>
3303 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
3304 * gst/playback/gstplaybin.c: (handoff):
3305 * gst/playback/gststreamselector.c:
3306 (gst_stream_selector_set_property):
3307 gcc 4.1 unreferenced pointer fixes.
3308 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
3309 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
3310 gst_buffer_ref() now takes a GstBuffer*.
3312 2006-03-20 Julien MOUTTE <julien@moutte.net>
3314 * sys/xvimage/xvimagesink.c:
3315 (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
3318 2006-03-19 Tim-Philipp Müller <tim at centricular dot net>
3320 * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
3321 (id3v1_type_find), (apetag_type_find), (plugin_init):
3322 Can't do tag preferences via probability, as tags would then
3323 lose against types that are recognised with MAXIMUM probability
3324 (like .wav); so let all tag typefinders return MAXIMUM themselves
3325 and order them via the rank. Split ID3v1 and ID3v2 typefinders so
3326 that we can prefer APE to ID3v1 (fixes #335028).
3328 2006-03-17 Wim Taymans <wim@fluendo.com>
3330 * gst-libs/gst/audio/gstbaseaudiosink.c:
3331 (gst_base_audio_sink_change_state):
3332 * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
3333 (gst_ring_buffer_may_start):
3334 * gst-libs/gst/audio/gstringbuffer.h:
3335 Only start playback if we are playing.
3338 2006-03-17 Jan Schmidt <thaytan@mad.scientist.com>
3340 * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
3341 * win32/common/config.h:
3342 Revert accidental commits to these files.
3344 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
3346 Patch by: Michal Benes <michal dot benes at xeris dot cz>
3348 * tests/Makefile.am:
3349 Don't try to build tests in tests/icles if we
3350 don't have X (#323852)
3352 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
3354 * gst-libs/gst/tag/gstid3tag.c:
3355 Add TXXX frame identifiers for replaygain stuff as used
3356 by some taggers (see #323721).
3358 2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
3360 * gst/playback/gststreamselector.c:
3361 (gst_stream_selector_set_property),
3362 (gst_stream_selector_bufferalloc):
3363 Preserve the existing buggy streamselector behaviour by performing
3364 a fallback buffer allocation when downstream isn't linked yet.
3365 This should really be fixed in playbin by blocking pads until it's
3367 Also, use gst_pad_alloc_buffer instead of
3368 gst_pad_alloc_buffer_and_set.
3370 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
3372 * gst-libs/gst/tag/gstid3tag.c:
3373 Don't crash on unknown ID3v2 TXXX frames.
3375 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
3377 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
3378 Chain up to the parent finalize method.
3379 Add 32-bit sample size to the template caps.
3381 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
3382 (gst_riff_create_video_template_caps):
3383 Add the fourcc that the VMWare codec uses.
3385 * gst/playback/gststreamselector.c:
3386 (gst_stream_selector_set_property),
3387 (gst_stream_selector_bufferalloc),
3388 (gst_stream_selector_request_new_pad):
3389 For the active pad, forward buffer-alloc requests, otherwise
3390 return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
3391 having to memcpy every frame when used by playbin.
3393 * gst/tcp/gstmultifdsink.c:
3394 (gst_multi_fd_sink_handle_client_write):
3395 Get negotiated caps from the sink pad, rather than the sink
3398 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
3400 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
3402 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
3403 Don't forget to set src->callbacks_pushed to FALSE again when
3404 popping them, otherwise re-activation in a different mode won't
3407 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
3409 Patch by: Sebastien Moutte <sebastien moutte net>
3411 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
3412 (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
3413 (gst_ffmpeg_smpfmt_to_caps):
3414 Replace __VA_ARGS__ caps creation macros with varargs functions.
3415 Makes things compile on MSVC (#320765), looks nicer, and we can
3416 tell the compiler to check for the NULL terminator.
3418 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
3420 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
3422 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3423 Make sure the buffer we copy into is really always big
3424 enough, this time for real (#333488).
3426 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
3428 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3429 Add support for 24bpp DIB (#305279).
3431 2006-03-14 Wim Taymans <wim@fluendo.com>
3433 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
3434 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
3435 * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
3436 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
3437 (gst_video_scale_init), (gst_video_scale_src_event):
3438 Re-enable QoS after the release.
3439 Rework videoscale to use the base class src_event handler.
3441 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
3446 === release 0.10.5 ===
3448 2006-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
3451 releasing 0.10.5, "Net"
3453 2006-03-13 Tim-Philipp Müller <tim at centricular dot net>
3455 * docs/plugins/Makefile.am:
3456 Part of previous cdparanoiasrc docs fixes, forgot to commit.
3458 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
3460 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3461 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3462 * docs/plugins/gst-plugins-base-plugins.hierarchy:
3463 Add cdparanoiasrc to docs.
3465 * gst-libs/gst/cdda/gstcddabasesrc.c:
3466 More GstCddaBaseSrc docs.
3468 2006-03-12 Tim-Philipp Müller <tim at centricular dot net>
3470 * docs/libs/gst-plugins-base-libs-sections.txt:
3471 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
3472 * gst-libs/gst/tag/tag.h:
3473 API: libgsttag: new method gst_tag_from_id3_user_tag().
3475 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
3477 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3478 NULL-terminate array of mpeg4 video file extensions.
3479 Fixes crash on PPC (#334226).
3481 2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
3483 * ext/gnomevfs/gstgnomevfssrc.c:
3484 (gst_gnome_vfs_src_check_get_range):
3485 gnome_vfs_uri_is_local() alone is not a good indicator
3486 whether we can operate in pull-mode with a specific URI,
3487 as it returns FALSE for file:// URIs that point to an
3488 NFS-mounted path. Be more conservative here: whitelist
3489 local files, blacklist http URIs and use the old
3490 mechanism for anything else (fixes #334216).
3492 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
3497 === release 0.10.4 ===
3499 2006-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
3502 releasing 0.10.4, "Power"
3504 2006-03-10 Jan Schmidt <thaytan@mad.scientist.com>
3506 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
3507 Disable max-lateness by setting it to -1 for now, so that
3508 we can bed QoS stuff in thoroughly between now and the next
3511 2006-03-10 Tim-Philipp Müller <tim at centricular dot net>
3513 Patch by: Fabrizio Gennari
3515 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3516 Make sure we don't read beyond the palette buffer in case of
3517 broken or manipulated files (#333488)
3519 2006-03-10 Edward Hervey <edward@fluendo.com>
3521 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
3522 Fix for variable not initialized.
3524 2006-03-09 Wim Taymans <wim@fluendo.com>
3526 * ext/libvisual/visual.c: (gst_visual_get_type),
3527 (gst_visual_src_setcaps), (gst_vis_src_negotiate),
3531 * ext/theora/gsttheoradec.h:
3532 * ext/theora/theoradec.c: (gst_theora_dec_init),
3533 (gst_theora_dec_reset), (_theora_granule_time),
3534 (theora_dec_src_convert), (theora_dec_sink_convert),
3535 (theora_dec_src_query), (theora_dec_src_event),
3536 (theora_dec_sink_event), (theora_handle_comment_packet),
3537 (theora_handle_header_packet), (theora_dec_push),
3538 (theora_handle_data_packet), (theora_dec_chain),
3539 (theora_dec_change_state):
3542 2006-03-09 Wim Taymans <wim@fluendo.com>
3544 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
3545 (audiocast_register_listener), (gst_gnome_vfs_src_start):
3548 2006-03-09 Wim Taymans <wim@fluendo.com>
3550 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
3551 Don't try to activate NULL chains.
3553 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
3555 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
3556 Fix invalid memory access to region before peek'd data (#332964).
3558 2006-03-09 Wim Taymans <wim@fluendo.com>
3560 Patch by: Christophe Fergeau
3562 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
3563 * ext/pango/gsttextrender.c: (gst_text_render_init):
3564 * gst/adder/gstadder.c: (gst_adder_init):
3565 Don't leak padtemplates, closes #333510.
3567 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
3569 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
3570 Fix invalid memory access: make sure string passed to
3571 regexec() is NUL-termianted.
3573 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
3575 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
3577 Refactor mpeg/audio typefinding to make it more maintainable
3578 and easier to fine-tune. Make probing into middle of the file
3579 work properly (fixes #333900, also see #152688).
3581 2006-03-09 Tim-Philipp Müller <tim at centricular dot net>
3583 * gst/typefind/gsttypefindfunctions.c:
3584 (utf8_type_find_have_valid_utf8_at_offset):
3585 Remove part from previous commit that was bogus:
3586 g_utf8_validate() does in fact not accept embedded
3587 zeroes, so we don't need to check for those (thanks
3588 to Mike for the hint).
3590 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
3592 * gst/typefind/gsttypefindfunctions.c:
3593 (utf8_type_find_count_embedded_zeroes),
3594 (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
3595 Make plain/text typefinder more conservative: firstly, check
3596 for embedded zeroes, which are perfectly valid UTF-8 characters,
3597 but also a fairly good sign that something is not a plain text
3598 file; secondly, probe into the middle of the file if possible.
3599 If we can't probe into the middle, limit the probability value
3600 to be returned to TYPE_FIND_POSSIBLE (see #333900).
3602 2006-03-08 Michael Smith <msmith@fluendo.com>
3604 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3605 Make typefind function name for mpeg4 video unique.
3607 2006-03-08 Wim Taymans <wim@fluendo.com>
3609 * ext/libvisual/visual.c: (gst_visual_init),
3610 (gst_visual_clear_actors), (gst_visual_dispose),
3611 (gst_visual_reset), (gst_visual_src_setcaps),
3612 (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
3613 (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
3614 (gst_visual_chain), (gst_visual_change_state):
3615 Cleanups, post nice errors.
3616 Handle sink and src events.
3617 Implement simple QoS.
3619 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
3620 Use new basesink methods to configure max-lateness.
3623 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3624 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
3625 Debug statement cleanups.
3627 * gst/volume/gstvolume.c: (gst_volume_class_init):
3630 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
3632 * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
3633 (gst_text_overlay_init), (gst_text_overlay_set_property),
3634 (gst_text_overlay_get_property):
3635 Revert API/ABI break from March 1. Keep 'halign' and 'valign'
3636 as string type properties, but mark them deprecated. Add
3637 'halignment' and 'valignment' properties that use enums
3640 2006-03-08 Tim-Philipp Müller <tim at centricular dot net>
3642 Patch by: Fabrizio Gennari
3644 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3645 Allow palettes with less than 256 colours in AVI files
3648 2006-03-07 Julien MOUTTE <julien@moutte.net>
3650 * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
3651 (gst_text_overlay_video_event): Fix wrong EOS handling on text
3652 pad. We were releasing the queued text buffer when we should keep
3653 it until video pad gets EOS or discard the text buffer because it's
3654 too old. That was eating the last subtitle buffer. Add some more
3657 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
3659 * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
3660 (gst_text_overlay_video_chain):
3661 Fix invalid memory access (we can't access a buffer after it's been
3662 pushed downstream without taking a reference); fix memory leak (if
3663 there's no text to render, bail out before allocating stuff).
3665 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
3667 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
3668 (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
3669 * ext/pango/gsttextoverlay.h:
3670 If input is plain text, escape it before passing it to
3671 pango_layout_set_markup().
3673 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
3675 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
3676 Don't ignore flow return from gst_pad_push().
3678 2006-03-07 Tim-Philipp Müller <tim at centricular dot net>
3680 Patch by: Fabrizio Gennari
3682 * ext/libvisual/visual.c: (gst_visual_getcaps),
3683 (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
3684 * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
3685 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
3686 (gst_vorbisenc_convert_sink):
3687 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
3688 (gst_audio_duration_from_pad_buffer):
3689 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
3690 (gst_audio_filter_chain):
3691 * gst-libs/gst/rtp/gstbasertpdepayload.c:
3692 (gst_base_rtp_depayload_setcaps):
3693 * gst-libs/gst/video/video.c: (gst_video_frame_rate),
3694 (gst_video_get_size):
3695 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
3696 Don't leak references returned by gst_pad_get_parent()
3699 2006-03-06 Stefan Kost <ensonic@users.sf.net>
3701 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
3702 change location param details
3703 * gst/volume/gstvolume.c: (plugin_init):
3704 correct plugin description
3706 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
3708 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
3709 (gst_gnome_vfs_src_check_get_range):
3710 Override GstBaseSrc::check_get_range() in order to avoid opening
3711 the resource just to check whether we can operate in pull-mode or
3712 not - we can predict that pretty well from the URI alone. Should
3713 fix problems with last.fm (#331690). (Requires latest core CVS).
3715 2006-03-06 Wim Taymans <wim@fluendo.com>
3717 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
3718 (gst_video_sink_class_init):
3719 Throw away frames that are later than 20 ms.
3721 2006-03-06 Tim-Philipp Müller <tim at centricular dot net>
3723 Patch by: Fabrizio Gennari
3725 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
3726 Set depth on WMA caps (#333545)
3728 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
3730 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
3731 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
3732 put Theora BOS pages before others. This hardcodes
3733 the Ogg/Theora I profile, but hey.
3735 2006-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
3738 updated with some examples
3739 * ext/theora/theoraenc.c: (granulepos_to_timestamp),
3740 (granulepos_add), (theora_buffer_from_packet):
3741 * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
3742 (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
3743 (gst_vorbisenc_chain):
3744 implement strategy from ext/ogg/README
3745 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
3746 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
3747 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
3748 (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
3749 Fix muxer so that oggz-validate is happy with all streams;
3750 except for no eos mark, and the BOS page ordering
3751 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
3752 (check_buffer_granulepos):
3753 * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
3754 update tests to check for OFFSET being set as requested
3755 fixed type of granulepos, it's not a ClockTime
3757 2006-03-05 Julien MOUTTE <julien@moutte.net>
3759 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
3760 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
3761 Check that the xvimage we are creating has a correct size
3762 before returning it. (#314897)
3764 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
3766 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
3767 Give id3 and ape tag typefinders a rank slightly higher
3768 than PRIMARY to ensure they're always run before any of
3769 the other typefinders (in particular wav and mp3) (#324186).
3771 2006-03-05 Tim-Philipp Müller <tim at centricular dot net>
3773 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
3774 Add support for '3IVD' fourcc (#333403).
3776 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
3779 Bump requirements to GStreamer CVS for the new error enum.
3781 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
3782 Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
3783 space left on the device (fixes #333352).
3785 2006-03-04 Sebastien Moutte <sebastien@moutte.net>
3788 add a project file for libgstvolume
3789 update the workspace
3791 2006-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
3793 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
3794 * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
3796 Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
3797 Set IN_CAPS on header buffers
3799 2006-03-02 Wim Taymans <wim@fluendo.com>
3801 * docs/plugins/Makefile.am:
3802 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3803 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3804 Add audioresample to docs.
3806 * gst/audioconvert/gstaudioconvert.c:
3809 * gst/audioresample/gstaudioresample.c:
3810 (gst_audioresample_base_init), (gst_audioresample_class_init),
3811 (gst_audioresample_init), (gst_audioresample_dispose),
3812 (audioresample_get_unit_size), (audioresample_transform_caps),
3813 (resample_set_state_from_caps), (audioresample_transform_size),
3814 (audioresample_set_caps), (audioresample_event),
3815 (audioresample_do_output), (audioresample_transform),
3816 (audioresample_pushthrough), (gst_audioresample_set_property),
3817 (gst_audioresample_get_property), (plugin_init):
3818 * gst/audioresample/gstaudioresample.h:
3820 Small code cleanups.
3822 2006-03-02 Wim Taymans <wim@fluendo.com>
3824 * docs/plugins/Makefile.am:
3825 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3826 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3827 Added videoscale to docs.
3829 * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
3830 (gst_video_rate_swap_prev), (gst_video_rate_event),
3831 (gst_video_rate_chain):
3834 * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
3835 (gst_video_scale_init), (gst_video_scale_prepare_size),
3836 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
3837 (gst_video_scale_fixate_caps), (gst_video_scale_transform):
3838 * gst/videoscale/gstvideoscale.h:
3839 Added docs, examples.
3841 Post errors instead of g_warning.
3843 2006-03-02 Wim Taymans <wim@fluendo.com>
3845 * docs/libs/gst-plugins-base-libs-docs.sgml:
3846 * docs/libs/gst-plugins-base-libs-sections.txt:
3847 * docs/libs/gst-plugins-base-libs.types:
3848 * docs/plugins/Makefile.am:
3849 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3850 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3851 Added some more docs to libs and plugins.
3853 * gst-libs/gst/audio/gstringbuffer.c:
3854 (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
3855 * gst-libs/gst/audio/gstringbuffer.h:
3856 Document ringbuffer some more.
3858 * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
3859 (gst_video_rate_setcaps), (gst_video_rate_reset),
3860 (gst_video_rate_init), (gst_video_rate_flush_prev),
3861 (gst_video_rate_swap_prev), (gst_video_rate_event),
3862 (gst_video_rate_chain), (gst_video_rate_change_state):
3863 * gst/videorate/gstvideorate.h:
3864 Fix videorate to use segments.
3865 Make it work with 0/1 framerates (closes #331903)
3866 Handle EOS correctly.
3869 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
3871 * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
3872 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
3873 (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
3874 In state change function, first chain up to parent class,
3875 then handle downwards state change stuff. Remove some
3876 commented out cruft from 0.8 code.
3878 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
3880 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
3881 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3882 (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
3883 (gst_ogm_parse_chain):
3884 Don't remove/re-add source pad if the new caps are the same as
3885 the old caps anyway (#333042). When removing source pad, don't
3886 unref it afterwards - we didn't ref it when adding. Sprinkle some
3887 GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
3888 after using gst_pad_get_parent(). Return downstream flow return
3889 value in chain function.
3891 2006-03-02 Wim Taymans <wim@fluendo.com>
3893 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3894 * docs/plugins/gst-plugins-base-plugins.args:
3895 * docs/plugins/gst-plugins-base-plugins.hierarchy:
3896 * docs/plugins/gst-plugins-base-plugins.interfaces:
3897 * docs/plugins/gst-plugins-base-plugins.signals:
3898 Fix hierarchy, added some more elements to the docs.
3900 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3901 (gst_ffmpegcsp_get_type):
3902 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
3903 Fix docs for ffmpegcolorspace.
3905 2006-03-01 Tim-Philipp Müller <tim at centricular dot net>
3907 * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
3908 (apetag_type_find), (ape_type_find), (plugin_init):
3909 Some typefinding fine-tuning:
3910 - rank ID3/APE tags in order of preference via probabilities, so that
3911 ID3v2 > APEv2 > APEv1 > ID3v1.
3912 - three or four bytes don't really justify MAXIMUM probability,
3913 change those to 'very likely' (musepack and monkeysaudio).
3915 2006-03-01 Wim Taymans <wim@fluendo.com>
3917 * docs/plugins/Makefile.am:
3918 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3919 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3920 * ext/alsa/gstalsamixer.c:
3921 * ext/alsa/gstalsamixer.h:
3922 * ext/alsa/gstalsamixerelement.c:
3923 (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
3924 * ext/alsa/gstalsamixerelement.h:
3925 * ext/alsa/gstalsasink.c:
3926 * ext/alsa/gstalsasink.h:
3927 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
3929 * ext/alsa/gstalsasrc.h:
3931 Small code cleanups.
3933 2006-03-01 Wim Taymans <wim@fluendo.com>
3935 * ext/theora/Makefile.am:
3936 Dist new header too,
3938 2006-03-01 Wim Taymans <wim@fluendo.com>
3940 * docs/plugins/Makefile.am:
3941 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3942 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3943 * ext/gnomevfs/gstgnomevfssink.h:
3944 * ext/gnomevfs/gstgnomevfssrc.h:
3945 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
3946 * ext/vorbis/vorbisdec.h:
3947 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
3948 * ext/vorbis/vorbisenc.h:
3949 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
3950 (vorbis_parse_chain), (vorbis_parse_change_state):
3951 * ext/vorbis/vorbisparse.h:
3952 * gst/audioconvert/gstaudioconvert.h:
3953 * gst/tcp/gsttcpserversink.h:
3954 * gst/videotestsrc/gstvideotestsrc.c:
3955 * gst/videotestsrc/gstvideotestsrc.h:
3956 * gst/volume/gstvolume.c:
3957 * gst/volume/gstvolume.h:
3959 Added docs for vorbisdec and vorbisparse.
3962 2006-03-01 Wim Taymans <wim@fluendo.com>
3964 * docs/plugins/Makefile.am:
3965 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3966 * docs/plugins/gst-plugins-base-plugins-sections.txt:
3967 * ext/pango/gstclockoverlay.h:
3968 * ext/pango/gsttextoverlay.h:
3969 * ext/pango/gsttextrender.h:
3970 * ext/pango/gsttimeoverlay.h:
3971 * ext/theora/gsttheoradec.h:
3972 * ext/theora/gsttheoraenc.h:
3973 * ext/theora/theoradec.c:
3974 * ext/theora/theoraenc.c:
3975 * gst/audioconvert/gstaudioconvert.h:
3976 * gst/audiotestsrc/gstaudiotestsrc.h:
3977 * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
3978 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
3979 * gst/tcp/gstmultifdsink.h:
3980 Updated/added documentation.
3982 * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
3983 (gst_text_overlay_halign_get_type),
3984 (gst_text_overlay_wrap_mode_get_type),
3985 (gst_text_overlay_base_init), (gst_text_overlay_class_init),
3986 (gst_text_overlay_init), (gst_text_overlay_set_property),
3987 (gst_text_overlay_get_property):
3988 Fix up properties to be enums instead of string to make bindings,
3989 introspection and automatic GUI creation possible.
3990 Add getters for the properties.
3992 2006-02-28 Sebastien Moutte <sebastien@moutte.net>
3994 * gst/audiotestsrc/gstaudiotestsrc.c:
3995 added defines of M_PI and M_PI_2
3996 * gst/ffmpegcolorspace/avcodec.h:
3997 removed #include "stdint.h" for win32 as _stdint.h is
3998 autogenerated to win32/common
3999 * win32/common/libgstaudio.def:
4000 * win32/common/libgsttag.def:
4003 some project files bugs corrected
4005 project files are reset to the default vs7 configuration
4006 (they link to msvcr71.dll using default optimizations)
4008 2006-02-28 Wim Taymans <wim@fluendo.com>
4010 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
4013 2006-02-28 Edward Hervey <edward@fluendo.com>
4015 * ext/alsa/gstalsasrc.c:
4016 Set proper class on the ElementDetails:
4017 Source/Audio instead of Src/Audio/
4019 2006-02-28 Edward Hervey <edward@fluendo.com>
4021 * gst/videoscale/vs_scanline.c:
4022 (vs_scanline_resample_nearest_RGBA):
4023 Revert optimization in videoscale. It should go in liboil and have
4024 an appropriate liboil function.
4026 2006-02-28 Wim Taymans <wim@fluendo.com>
4028 * gst-libs/gst/audio/gstbaseaudiosink.c:
4029 (gst_base_audio_sink_provide_clock):
4030 Don't try to provide a clock in the NULL state.
4032 2006-02-28 Wim Taymans <wim@fluendo.com>
4034 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
4035 (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
4036 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
4037 (gst_ogg_demux_deactivate_current_chain),
4038 (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
4039 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
4040 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
4041 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
4042 Use GstSegment infrastructure to remove duplicated code
4043 and handle more seek cases correctly.
4045 2006-02-28 Wim Taymans <wim@fluendo.com>
4047 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4048 (gst_ffmpegcsp_transform):
4049 Don't ignore return code from ffmpeg convert function.
4051 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
4052 Split out some long statements to ease debugging.
4054 2006-02-27 Jan Schmidt <thaytan@mad.scientist.com>
4056 * ext/libvisual/visual.c: (gst_visual_init),
4057 (gst_vis_src_negotiate), (get_buffer), (plugin_init):
4058 Don't use gst_pad_use_fixed_caps, because it prevents downstream from
4059 being able to renegotiate the size. Instead, use the negotiation
4060 algorithm from the goom plugin to pick an initial output caps.
4062 Also, allow theoretical libvisual plugins that might support non-GL
4063 output even if they also do GL.
4065 2006-02-26 Julien MOUTTE <julien@moutte.net>
4067 * ext/libvisual/visual.c: (gst_visual_init),
4068 (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
4069 (plugin_init): Load only non GL plugins. Fix some memleaks and
4070 possible negotiation issues.
4072 2006-02-25 Julien MOUTTE <julien@moutte.net>
4074 * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
4076 2006-02-24 Michael Smith <msmith@fluendo.com>
4078 * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
4079 (cmml_type_find), (plugin_init):
4080 Fix CMML type find function to not require a specific minor version
4083 Add an MPEG4 video elementary stream typefind function.
4085 2006-02-04 Michael Smith <msmith@fluendo.com>
4087 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
4088 (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
4089 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
4090 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
4091 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
4092 (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
4093 Annodex support in ogg demuxer. Doesn't do very much without the
4094 other annodex patches (to come).
4096 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
4098 Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
4100 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
4101 Pick up palette for MS video v1 (#327028)
4103 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
4105 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4106 (gst_ffmpegcsp_caps_remove_format_info),
4107 (gst_ffmpegcsp_get_unit_size):
4108 The 'palette_data' field from incoming RGB caps shouldn't be
4109 proxied on outgoing YUV caps; also, restrict unit size
4110 adjustment in case of paletted data only to the unit that
4111 actually has a palette. Fixes #330711.
4113 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
4115 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4116 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
4117 (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
4118 (gst_ffmpegcsp_get_unit_size):
4119 Plug some memory leaks.
4121 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
4123 * sys/ximage/Makefile.am:
4124 * sys/xvimage/Makefile.am:
4125 Add some _CFLAGS and _LIBS that seem to be missing
4126 and/or required for Cygwin (see #317048).
4128 2006-02-22 Wim Taymans <wim@fluendo.com>
4130 * ext/alsa/gstalsasrc.c:
4131 Fix description as pointed out by caugier.
4133 2006-02-22 Tommi Myöhänen <ext-tommi do myohanen at nokia dot com>
4135 Reviewed by : Edward Hervey <edward@fluendo.com>
4137 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
4139 Better 3gp typefinding (#331526).
4141 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
4143 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
4144 Don't send EOS event here, the base class will send one for us.
4146 * gst/playback/gstplaybasebin.c: (prepare_output):
4147 Subpictures without video stream aren't allowed either.
4149 * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
4150 Fix debug statement copy'n'paste-o.
4152 2006-02-21 Tim-Philipp Müller <tim at centricular dot net>
4154 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
4155 Fix issues with mixer keeping state when muting/unmuting
4156 and when changing the volume whilst muted (see #331763
4159 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
4161 * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
4162 (parse_subrip), (gst_sub_parse_format_autodetect):
4163 Set right caps given that we send escaped text. Also,
4164 honour <i></i>, <b></b> and <u></u> markers that can be found
4165 in .srt files (fixes #310202).
4167 2006-02-20 Tim-Philipp Müller <tim at centricular dot net>
4169 * gst-libs/gst/audio/mixerutils.c:
4170 (element_factory_rank_compare_func):
4171 Make order in which elements are tried more determinable.
4173 2006-02-20 Julien MOUTTE <julien@moutte.net>
4175 * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
4176 (remove_element_chain), (cleanup_decodebin),
4177 (gst_decode_bin_change_state): Make decodebin reusable by
4178 fixing remove_element_chain first and then introduce a
4179 cleaner in state change to ->NULL. (Closes #331678)
4181 2006-02-19 Wim Taymans <wim@fluendo.com>
4183 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
4184 use 0666 mask when creating files so umask gets applied
4185 correctly. Fixes #331295.
4187 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
4189 * gst/subparse/Makefile.am:
4190 * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
4191 (gst_ssa_parse_dispose), (gst_ssa_parse_init),
4192 (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
4193 (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
4194 (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
4195 (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
4196 * gst/subparse/gstssaparse.h:
4197 * gst/subparse/gstsubparse.c: (plugin_init):
4198 Add very basic parser for SSA subtitle streams (as often
4199 found in matroska files).
4201 2006-02-19 Tim-Philipp Müller <tim at centricular dot net>
4203 * gst/playback/gstdecodebin.c: (mimetype_is_raw):
4204 That should be text/x-pango-markup, not text/x-pango-layout.
4206 2006-02-19 Julien MOUTTE <julien@moutte.net>
4208 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
4211 2006-02-19 Julien MOUTTE <julien@moutte.net>
4213 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
4214 (gst_text_overlay_finalize), (gst_text_overlay_init),
4215 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
4216 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
4217 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
4218 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
4219 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
4220 Fix state change deadlock.
4222 2006-02-19 Julien MOUTTE <julien@moutte.net>
4224 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
4225 (gst_text_overlay_finalize), (gst_text_overlay_init),
4226 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
4227 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
4228 (gst_text_overlay_text_event), (gst_text_overlay_video_event),
4229 (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
4230 (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
4231 * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
4232 and subtitles files.
4234 2006-02-19 Julien MOUTTE <julien@moutte.net>
4236 * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
4237 should be considered as raw.
4239 2006-02-19 Julien MOUTTE <julien@moutte.net>
4241 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
4243 * gst/playback/gststreaminfo.h: Introduce language informations.
4245 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
4247 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
4248 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
4249 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
4250 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
4251 Set shared memory segments to be deleted as soon as we have attached,
4252 that way they get cleaned up automatically if we crash.
4254 2006-02-18 Julien MOUTTE <julien@moutte.net>
4256 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text):
4257 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
4258 functions are called with lock held.
4260 2006-02-18 Julien MOUTTE <julien@moutte.net>
4262 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
4263 (gst_text_overlay_finalize), (gst_text_overlay_init),
4264 (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
4265 (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
4266 (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
4267 (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
4268 (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
4269 (gst_text_overlay_change_state): Refactoring of textoverlay
4270 without collectpads. This now supports sparse subtitles coming
4271 from a demuxer instead of a sub file. Seeking is still broken
4272 though. Need to discuss with wtay some more on how to handle
4274 * ext/pango/gsttextoverlay.h:
4275 * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
4276 subtitles coming from the demuxer.
4278 2006-02-17 Wim Taymans <wim@fluendo.com>
4280 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
4281 (gst_vorbisenc_convert_sink):
4282 Use some more scaling functions.
4284 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
4286 * ext/cdparanoia/gstcdparanoiasrc.c:
4287 (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
4288 (gst_cd_paranoia_paranoia_callback),
4289 (gst_cd_paranoia_src_signal_is_being_watched),
4290 (gst_cd_paranoia_src_read_sector):
4291 * ext/cdparanoia/gstcdparanoiasrc.h:
4292 Add back 'transport-error' and 'uncorrected-error' signals and
4293 make them actually be fired when bad stuff happens (#319340).
4295 2006-02-17 Wim Taymans <wim@fluendo.com>
4297 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
4298 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4299 (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
4300 (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
4301 (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
4302 (gst_ring_buffer_pause), (gst_ring_buffer_stop),
4303 (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
4304 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
4305 (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
4306 (gst_ring_buffer_clear):
4308 Added some G_LIKELY.
4310 2006-02-17 Wim Taymans <wim@fluendo.com>
4312 * gst-libs/gst/audio/TODO:
4315 * gst-libs/gst/audio/gstbaseaudiosink.c:
4316 (gst_base_audio_sink_get_offset):
4317 When trying to play samples ASAP and we don't have a
4318 previous sample, try to play at position 0 instead of
4319 an invalid position.
4321 2006-02-17 Wim Taymans <wim@fluendo.com>
4323 * ext/alsa/gstalsasink.c: (gst_alsasink_open),
4324 (gst_alsasink_reset):
4325 Also release lock when we get an error in _reset();
4326 fix an error message.
4328 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
4330 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
4331 (gst_alsasink_init), (get_channel_free_structure),
4332 (caps_add_channel_configuration), (gst_alsasink_getcaps),
4333 (gst_alsasink_close):
4334 * ext/alsa/gstalsasink.h:
4335 Add support for more than 2 channels (#326720).
4337 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
4339 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
4340 Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
4341 with 4 or 6 channels, assume a default channel layout to make things
4342 work (not sure there's anything else we can do in those cases).
4344 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
4346 * gst-libs/gst/audio/multichannel.c:
4349 * gst-libs/gst/riff/Makefile.am:
4350 * gst-libs/gst/riff/riff-ids.h:
4351 * gst-libs/gst/riff/riff-media.c:
4352 (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
4353 Add support for WAVEFORMATEX, eg. PCM audio with more than two
4354 channels and a channel layout map.
4356 2006-02-16 Mathieu Garcia <b0nk at free dot fr>
4358 Reviewed by Edward Hervey <edward@fluendo.com>
4360 * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA):
4361 C-level optimization of the RGBA nearest neighbour function.
4362 Eventually this might end up in liboil with vectorized versions.
4364 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
4366 * gst-libs/gst/audio/multichannel.c:
4367 (gst_audio_get_channel_positions):
4368 When we have more than 2 channels, but no channel layout is
4369 specified in the caps, return some default channel layout
4370 to the caller and warn about about a possibly buggy element
4371 (could be buggy filtercaps as well of course) (#317038).
4373 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
4375 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
4376 Add gst-libs/gst/cdda to list of lib search paths.
4378 2006-02-15 Andy Wingo <wingo@pobox.com>
4380 * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
4381 timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
4382 to the Lord Jesus that I do not have to touch the ogg muxer ever
4385 2006-02-15 Edward Hervey <edward@fluendo.com>
4387 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
4388 quicktime movie files can also contain 'uuid' atoms.
4390 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
4392 * gst/audioconvert/plugin.c: (plugin_init):
4393 Register the GstAudioChannelPosition enum type with the type
4394 system in the plugin_init function, so that it is known before
4395 any element actually makes use of multi-channel stuff. This is
4396 required for example if one wants to be able to deserialise/use
4397 a caps string with channel positions before any pipeline has
4398 been setup and started, like with gst-launch.
4400 2006-02-14 Wim Taymans <wim@fluendo.com>
4402 * gst-libs/gst/audio/gstringbuffer.c:
4403 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
4404 (gst_ring_buffer_samples_done), (wait_segment),
4405 (gst_ring_buffer_commit), (gst_ring_buffer_clear):
4406 Add some compiler G_(UN_)LIKELY help.
4407 SIGNAL the ringbuffer waiters when going to PAUSED as well to
4408 make sure they can exit their functions. Should fix #330748
4410 2006-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
4415 * win32/common/_stdint.h:
4416 Windows does not have long long; copy the generated _stdint.h
4417 * win32/common/interfaces-enumtypes.c:
4418 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
4419 (gst_mixer_track_flags_get_type),
4420 (gst_tuner_channel_flags_get_type):
4421 * win32/common/multichannel-enumtypes.c:
4422 (gst_audio_channel_position_get_type):
4425 2006-02-13 Wim Taymans <wim@fluendo.com>
4427 * gst-libs/gst/audio/gstbaseaudiosink.c:
4428 (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
4429 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
4430 Always sync on first sample we receive when starting.
4432 2006-02-13 Wim Taymans <wim@fluendo.com>
4434 * gst/playback/gstplaybin.c: (gen_vis_element):
4435 Update vis bin docs.
4436 Move queue after tee so we don't queue video buffers but
4437 audio samples instead. Fixes problems where the video queue
4438 is filled and the audio queue empty.
4440 2006-02-13 Tim-Philipp Müller <tim at centricular dot net>
4442 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
4443 No need to push an EOS event here, GstBaseSrc will do that for us
4444 when we return FLOW_UNEXPECTED.
4446 2006-02-12 Wim Taymans <wim@fluendo.com>
4448 * gst-libs/gst/audio/gstbaseaudiosink.c:
4449 (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
4450 (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
4451 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
4452 Use scale functions when possible.
4454 Free clockid when after waiting for EOS.
4455 Use G_(UN_)LIKLY when it makes sense.
4456 Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
4458 2006-02-12 Edward Hervey <edward@fluendo.com>
4460 * gst/playback/gstplaybasebin.c: (prepare_output):
4461 Remove stray semi-colon (fixes #330888).
4463 2006-02-12 Jan Schmidt <thaytan@mad.scientist.com>
4465 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
4466 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
4467 Fix up the XShm call testing so that we catch errors, and don't
4468 cause new ones by attempting to detach from a segment we failed
4469 to attach to. Fixes #312439.
4471 2006-02-10 Edward Hervey <edward@fluendo.com>
4473 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4474 Added flv file typefind (video/x-flv).
4476 2006-02-10 Edward Hervey <edward@fluendo.com>
4478 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
4479 (gst_riff_create_video_template_caps):
4480 Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
4481 Also added the caps to the default set of riff video caps.
4483 2006-02-09 Andy Wingo <wingo@pobox.com>
4485 * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
4486 time and the end time of the last packet in the page.
4487 (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
4488 on the pages in our queue, set the duration as well. Reflow a
4490 (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
4491 Fixes bad muxing order.
4493 2006-02-09 Thomas Vander Stichele <thomas at apestaart dot org>
4495 * gst-libs/gst/rtp/gstbasertppayload.c:
4496 (gst_basertppayload_setcaps), (gst_basertppayload_push):
4497 update seqnum before setting it on the packet; this makes sure
4498 that the timestamp and seqnum properties match after pushing
4501 2006-02-09 Andy Wingo <wingo@pobox.com>
4503 * gst-libs/gst/audio/gstringbuffer.c
4504 (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
4505 overflow after 13.5 hours of recording. Kapow!
4507 * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
4508 the buffer size -- we don't care about underrun/overrun reporting
4509 right now, just need to return a useful value.
4511 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
4516 === release 0.10.3 ===
4518 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
4521 releasing 0.10.3, "Under Pressure"
4523 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
4526 Drat. Bump libtool version number for new API.
4527 Prelease 0.10.2.3 (of 0.10.3)
4529 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
4532 * win32/common/config.h:
4533 0.10.2.2 prerelease (of 0.10.3).
4535 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
4537 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
4538 Revert Andy's newsegment change pending a more correct
4541 2006-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
4543 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
4544 (qt_type_find), (plugin_init):
4545 detect more files as 3gp
4546 group and reorder the iso file formats
4548 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
4550 * ext/vorbis/vorbis.c: (plugin_init):
4551 Register musicbrainz tags, so apps don't have to.
4553 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
4555 * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
4556 (gst_tag_to_vorbis_tag):
4557 Make sure we called gst_tag_register_musicbrainz_tags()
4558 before possibly mapping a vorbiscomment string from/to a
4561 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
4563 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
4564 In case we can't find the required number of consecutive
4565 mpeg audio frames to positively identify an MPEG audio
4566 stream, check if there's at least a valid mpeg audio
4567 frame right at offset 0 and if so suggest mpeg/audio
4568 caps with a very low probability (#153004).
4570 2006-02-07 Andy Wingo <wingo@pobox.com>
4572 * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
4573 a TIME segment if we get timestamped buffers. Requires recent
4574 fixes in core to work properly.
4576 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
4578 * gst/playback/gstplaybasebin.c: (prepare_output):
4579 Don't print the URI as part of the error message, it
4580 makes error dialogs look rather ugly, especially if
4581 the URI is very long or has characters in it that
4584 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
4586 * gst/playback/gstplaybasebin.c: (prepare_output):
4587 Error out if we have only text or subtitles, but nothing
4588 else. Also error out if we have subtitles but no video
4591 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
4593 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
4594 Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
4595 Post an error message on the bus when we encounter an
4596 error, which will hopefully be more meaningful than the
4597 'Internal Flow Error' message users get to see if we
4598 just return GST_FLOW_ERROR.
4600 2006-02-07 Andy Wingo <wingo@pobox.com>
4602 * configure.ac (GST_MAJORMINOR): Update core version req to
4603 0.10.2.2, for the collectpads API addition (#330244).
4605 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
4607 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
4608 Return FALSE from plugin_init() when GnomeVFS can't
4609 be initialised for some reason (#328423).
4611 2006-02-06 Julien MOUTTE <julien@moutte.net>
4613 * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event):
4614 Stick to seeking theory until i find the bug.
4615 * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
4617 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
4619 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
4620 (theora_enc_finalize), (theora_enc_sink_setcaps),
4621 (theora_set_header_on_caps), (theora_enc_chain),
4622 (theora_enc_change_state):
4623 * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
4624 Make theoraenc and the tests leak free. Like, really.
4626 2006-02-06 Jan Schmidt <thaytan@mad.scientist.com>
4628 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
4629 (theora_enc_finalize), (theora_enc_sink_setcaps):
4630 Add a finalize method to ensure we clean up state even if
4631 someone omitted the state change back to NULL.
4633 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
4634 (gst_vorbisenc_chain):
4635 Free some more leaked bits.
4637 * tests/check/pipelines/theoraenc.c: (start_pipeline),
4639 Wait for state changes to happen if they're ASYNC.
4641 This ought to teach those fancy pants buildbots a lesson.
4643 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
4645 * gst-libs/gst/tag/gstid3tag.c:
4646 Add mapping for ID3 International Standard Recording Code
4649 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
4651 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
4652 Don't leak tag names.
4654 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
4656 * docs/libs/gst-plugins-base-libs-docs.sgml:
4657 * docs/libs/gst-plugins-base-libs-sections.txt:
4658 * gst-libs/gst/tag/gstid3tag.c:
4659 * gst-libs/gst/tag/gstvorbistag.c:
4660 * gst-libs/gst/tag/tags.c:
4661 Split libgsttag docs into multiple sections.
4663 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
4665 * docs/libs/Makefile.am:
4666 * docs/libs/gst-plugins-base-libs-docs.sgml:
4667 * docs/libs/gst-plugins-base-libs-sections.txt:
4668 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
4669 * gst-libs/gst/tag/gstvorbistag.c:
4670 * gst-libs/gst/tag/tag.h:
4671 * gst-libs/gst/tag/tags.c:
4672 Add libgsttag to the docs.
4674 2006-02-05 Julien MOUTTE <julien@moutte.net>
4676 * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
4677 (gst_text_overlay_init), (gst_text_overlay_src_event),
4678 (gst_text_overlay_collected): Fix clockoverlay.
4680 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
4682 * docs/libs/compiling.sgml:
4683 Fix typo: it's pkg-config, not pkg-gconfig
4685 * docs/libs/gst-plugins-base-libs-docs.sgml:
4686 * docs/libs/gst-plugins-base-libs-sections.txt:
4687 * docs/libs/tmpl/gstgconf.sgml:
4688 There is no libgstgconf in 0.10, remove it
4691 2006-02-05 Julien MOUTTE <julien@moutte.net>
4693 * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
4694 * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
4695 (gst_text_overlay_src_event), (gst_text_overlay_collected):
4696 * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
4697 (gst_sub_parse_class_init), (gst_sub_parse_init),
4698 (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
4699 (parse_mpsub), (parser_state_init), (handle_buffer),
4700 (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
4701 * gst/subparse/gstsubparse.h: Introduce seeking code.
4703 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
4705 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
4706 Add comment about LANGUAGE tag inconsistency (we want
4707 ISO-639-1, but extract three-letter identifiers?)
4710 Add two translatable files.
4712 2006-02-05 Tim-Philipp Müller <tim at centricular dot net>
4714 * gst-libs/gst/tag/Makefile.am:
4715 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
4716 * gst-libs/gst/tag/tag.h:
4717 * gst-libs/gst/tag/tags.c:
4718 (gst_tag_register_musicbrainz_tags_internal),
4719 (gst_tag_register_musicbrainz_tags):
4720 Forward-port some tags stuff from the 0.8 branch. This is
4721 mostly the addition of musicbrainz tags and their mapping
4722 to vorbistags, and a vorbistag mapping of the language tag.
4724 2006-02-05 Julien MOUTTE <julien@moutte.net>
4726 * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
4729 2006-02-04 David Schleef <ds@schleef.org>
4731 * ext/ogg/gstoggmux.c:
4732 * gst/typefind/gsttypefindfunctions.c:
4733 Add Dirac typefinding and add dirac format to oggmux.
4735 2006-02-03 Tim-Philipp Müller <tim at centricular dot net>
4737 * gst/playback/gstdecodebin.c: (try_to_link_1):
4738 Don't put essential function call into
4739 g_return_*() macro, otherwise it'll all be
4740 replaced by NOOPs when compiling with
4741 G_DISABLE_CHECKS defined.
4743 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
4745 * ext/ogg/gstoggdemux.c:
4746 * ext/ogg/gstoggparse.c:
4747 * gst/tcp/gsttcpserversink.c:
4748 * sys/v4l/v4lsrc_calls.c:
4749 * sys/v4l/v4lsrc_calls.h:
4750 Just make it compile with --disable-gst-debug.
4752 2006-02-03 Wim Taymans <wim@fluendo.com>
4754 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
4755 (gst_alsasink_class_init), (gst_alsasink_init),
4756 (gst_alsasink_write), (gst_alsasink_reset):
4757 * ext/alsa/gstalsasink.h:
4758 Add lock to protect alsa calls.
4759 Implement reset to flush samples ASAP, does not work
4762 2006-02-02 Wim Taymans <wim@fluendo.com>
4764 * gst-libs/gst/audio/gstbaseaudiosink.c:
4765 (gst_base_audio_sink_provide_clock):
4766 Ugh.. getting late I guess...
4768 2006-02-02 Wim Taymans <wim@fluendo.com>
4770 * gst-libs/gst/audio/gstbaseaudiosink.c:
4771 (gst_base_audio_sink_provide_clock),
4772 (gst_base_audio_sink_set_property),
4773 (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
4774 Don't try to provide a clock when we are not negotiated since
4775 we might not be able to make it run.
4777 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
4779 * gst/playback/gstdecodebin.c: (try_to_link_1):
4780 Unlinking two source pads is ... hard.
4782 2006-02-02 Wim Taymans <wim@fluendo.com>
4784 * gst-libs/gst/audio/TODO:
4787 * gst-libs/gst/audio/gstbaseaudiosink.c:
4788 (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
4789 On EOS, wait till the last sample is played before posting EOS.
4791 2006-02-01 Philippe Kalaf <burger at speedy dot org>
4793 * gst-libs/gst/rtp/gstbasertpdepayload.c:
4794 Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
4795 setting queue_delay to zero. Also avoid thread being started if
4796 queue_delay is zero.
4798 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
4800 * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
4801 Make test work again by connecting fakesinks to each decoded pad,
4802 which makes the pipeline wait until each fakesink has a buffer
4803 queued before going to PAUSED state. At that point we know the
4804 decodebin pads are negotiated.
4806 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
4808 * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
4809 (gst_cdda_base_src_handle_event):
4810 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
4811 Pass unhandled queries to the parent class's query function.
4813 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
4815 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
4816 (gst_ogg_pad_src_query):
4817 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
4818 * ext/theora/theoradec.c: (theora_dec_src_query),
4819 (theora_dec_sink_query):
4820 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4821 (vorbis_dec_sink_query):
4822 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
4823 (gst_vorbisenc_sink_query):
4824 * gst/adder/gstadder.c: (gst_adder_query):
4825 Pass unhandled queries upstream instead of just
4826 dropping them (#326447). Also, fix supported
4827 query types list for some elements.
4829 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
4831 * gst/typefind/gsttypefindfunctions.c: (au_type_find),
4832 (paris_type_find), (ilbc_type_find), (plugin_init):
4833 Fix typefinding for audio/x-au, audio/x-paris and
4834 audio/iLBC-sh. We cannot use the START_WITH macros
4835 here, because there can only be one typefind factory
4836 with the same name (caps), so the second one would
4837 replace the first one and the first one would never
4838 be called when doing typefinding (see #161712).
4841 2006-01-31 Wim Taymans <wim@fluendo.com>
4843 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
4844 (vorbis_handle_header_packet), (vorbis_dec_push),
4845 (vorbis_handle_data_packet):
4846 Use scale_int when we can, add some more scaling.
4847 Check packettype before parsing it.
4849 2006-01-31 Wim Taymans <wim@fluendo.com>
4851 * ext/theora/theoradec.c: (_theora_granule_time),
4852 (theora_dec_src_convert), (theora_dec_sink_convert):
4853 Call right _scale functions.
4854 Use parameter instead of some other random value.
4856 2006-01-31 Wim Taymans <wim@fluendo.com>
4858 * ext/theora/theoradec.c: (_theora_granule_frame),
4859 (_theora_granule_time), (_inc_granulepos),
4860 (theora_dec_src_convert), (theora_dec_sink_convert),
4861 (theora_handle_type_packet), (theora_handle_data_packet),
4863 Use higher precision timestamps calculation.
4864 Convert some other conversions to _scale.
4866 2006-01-31 Stefan Kost <ensonic@users.sf.net>
4868 * gst/audiotestsrc/gstaudiotestsrc.c:
4869 (gst_audio_test_src_create_sine_table), (plugin_init):
4870 * gst/volume/gstvolume.c: (plugin_init):
4871 initialize gst_controller before using
4873 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
4875 * tests/check/pipelines/theoraenc.c:
4876 * tests/check/pipelines/vorbisenc.c:
4877 Define constant using G_GINT64_CONSTANT to avoid errors when
4878 passing it around - otherwise it gets truncated to 32 bits.
4880 Fixes failing tests.
4882 2006-01-31 Andy Wingo <wingo@pobox.com>
4884 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
4885 caps being set doesn't have a framerate value. Basically a stopgap
4888 * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
4889 technically correct enough to put into core though.
4890 (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
4891 DURATION. Fixes theoraenc ! oggmux.
4893 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
4894 fraction, not double.
4896 2006-01-31 Sebastien Moutte <sebastien@moutte.net>
4899 add vs7 project files created by Sergey Scobich
4901 2006-01-30 Sebastien Moutte <sebastien@moutte.net>
4904 add vs8 project files created by Sergey Scobich
4906 2006-01-30 Andy Wingo <wingo@pobox.com>
4908 * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
4909 timestamp + duration, not just timestamp -- ogg pages should be
4910 ordered by stop time. Necessary fix given the change in vorbis
4913 * ext/theora/theoraenc.c (theora_enc_sink_setcaps)
4914 (gst_theora_enc_init): Pull the granule shift out of the encoder.
4915 (granulepos_add): New function, handles the messiness of adjusting
4917 (theora_buffer_from_packet):
4919 (theora_enc_sink_event): Use granulepos_add, not +.
4921 * tests/check/pipelines/theoraenc.c
4922 (check_buffer_granulepos_from_starttime): Just check the frame
4923 count, not the actual granulepos -- we can't dictate to the
4924 encoder when it should be placing keyframes.
4926 2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
4928 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
4929 SERVICE_NOT_AVAILABLE happens for example when you're trying to
4930 play an http:// stream from a server that's not serving
4932 2006-01-30 Andy Wingo <wingo@pobox.com>
4934 * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
4935 * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
4936 remove the UINT64_CONSTANT macro, doesn't appear to be needed or
4939 * ext/theora/gsttheoraenc.h:
4940 * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
4941 although theoraenc was timestamping correctly. Added handling of
4942 streams that start with nonzero timestamps.
4944 * tests/check/Makefile.am:
4945 * tests/check/pipelines/theoraenc.c: New file, basically does same
4948 * tests/check/pipelines/vorbisenc.c: I claim these bugs.
4950 2006-01-30 Wim Taymans <wim@fluendo.com>
4952 * gst-libs/gst/audio/gstaudiosink.c:
4953 (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
4954 (gst_audioringbuffer_pause):
4955 Implement pause that does not wait for completion.
4957 * gst-libs/gst/audio/gstbaseaudiosink.c:
4958 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
4959 Don't drop buffers when going to PAUSED but perform preroll on
4960 remaining samples now that core base class supports this.
4962 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
4963 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
4964 (gst_ring_buffer_commit):
4965 Pause should not signal waiters.
4966 Implement return value of _commit correctly.
4968 2006-01-30 Andy Wingo <wingo@pobox.com>
4970 * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
4972 * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
4973 updated to timestamp from the first sample, not the last.
4974 (gst_vorbisenc_buffer_from_header_packet): New function, takes
4975 special care of granulepos and timestamp for header packets.
4976 (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
4977 when the first buffer has a nonzero timestamp.
4979 * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
4980 (GstVorbisEnc.subgranule_offset): New members. Take care of the
4981 case when the first audio buffer we get has a nonzero timestamp.
4982 (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
4983 properly timestamp vorbis buffers with the time of the first
4984 sample, not the last.
4986 * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
4987 vorbis_granule_time_copy -- now it takes the granule/subgranule
4988 offset into account.
4990 * tests/check/pipelines/vorbisenc.c: New test for correctness of
4991 timestamps, durations, and granulepos on buffers produced by
4994 2006-01-30 Jan Schmidt <thaytan@mad.scientist.com>
4996 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4997 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
4998 Patch from Eric Jonas to support conversions to/from UYVY
5001 2006-01-30 Julien MOUTTE <julien@moutte.net>
5003 * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
5004 (setup_subtitle), (setup_source), (set_active_source):
5005 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
5006 (gen_text_element), (gen_audio_element), (gen_vis_element),
5007 (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
5009 2006-01-29 Sebastien Moutte <sebastien@moutte.net>
5011 * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
5012 * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
5013 use gst_guint64_to_gdouble to be compliant with vs6
5014 * gst/playback/gstdecodebin.c: (try_to_link_1)
5015 * gst/videorate/videorate.c: (gst_video_rate_blank_data)
5016 use G_GINT64_CONSTANT for int64 constants
5017 * win32/common/libgstinterfaces.def:
5018 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
5020 update and add new project files
5022 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
5026 * win32/common/interfaces-enumtypes.c:
5027 (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
5028 (gst_mixer_track_flags_get_type),
5029 (gst_tuner_channel_flags_get_type):
5030 * win32/common/interfaces-enumtypes.h:
5031 * win32/common/multichannel-enumtypes.c:
5032 (gst_audio_channel_position_get_type):
5033 * win32/common/multichannel-enumtypes.h:
5034 add a win32-update rule like in core, and copy over enumtypes files
5036 2006-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
5039 * win32/common/config.h:
5040 * win32/common/config.h.in:
5041 add config files just like in core
5043 2006-01-28 Tim-Philipp Müller <tim at centricular dot net>
5045 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
5046 Make gcc-4.1 happy (part of #327357).
5048 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5050 * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
5051 (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
5052 (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
5053 * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
5054 (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
5055 (gst_alsasrc_unprepare), (gst_alsasrc_read):
5056 Update all error messages. All of them should either use
5057 the default translated message, or actually provide a
5058 translatable string.
5059 Make the string for channel count problems meaningful.
5061 2006-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5063 * sys/v4l/v4l_calls.c: (gst_v4l_open):
5064 check for and throw RESOURCE_BUSY
5066 2006-01-27 David Schleef <ds@schleef.org>
5068 * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
5069 checked in this change -- it requires liboil features not
5070 in 0.3.6. Revert parts.
5072 2006-01-27 David Schleef <ds@schleef.org>
5075 * configure.ac: update liboil requirement to 0.3.6
5076 * gst/videoscale/Makefile.am:
5077 * gst/videoscale/vs_scanline.c: liboilify
5079 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
5081 * ext/libvisual/visual.c: (get_buffer):
5082 When pad_alloc returns a GstFlowReturn other
5083 than GST_FLOW_OK, make sure it is passed upstream.
5085 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
5087 * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
5088 (gst_alsasink_class_init):
5089 Free the device name string.
5091 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
5092 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
5093 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
5094 Don't remove a pad from the collectpads structure until it
5095 is released - it's a request pad, and may receive data again
5096 if the element gets moved back to PLAYING state.
5098 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
5099 Ensure we turn on double buffering on the Xv port, and
5100 set the colour key to something dark and mysterious that
5103 2006-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
5105 * ext/alsa/gstalsaplugin.c: (plugin_init):
5106 * ext/cdparanoia/gstcdparanoiasrc.c:
5107 (gst_cd_paranoia_src_base_init), (plugin_init):
5108 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
5109 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
5110 - a library should not call setlocale. see "Libraries" node in
5112 - make sure all plugins that use translation do bindtextdomain
5113 to point to the localedir
5114 * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
5115 (setup_sinks), (plugin_init):
5116 all this, and check for NULL when creating sinks
5118 2006-01-27 Julien MOUTTE <julien@moutte.net>
5120 * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
5121 (plugin_init): Make typefinding of subtitles work again.
5123 2006-01-26 Tim-Philipp Müller <tim at centricular dot net>
5125 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
5126 (mp3_type_frame_length_from_header), (mp3_type_find),
5127 (wavpack_type_find), (m4a_type_find), (ircam_type_find),
5129 Backport a bunch of typefinding fixes from the 0.8 branch.
5130 Also, improve wavpack typefinding: if we can't peek the
5131 entire wavpack block, try to parse the bits we can get and
5132 see if we find what we're looking for in those.
5134 2006-01-26 Julien MOUTTE <julien@moutte.net>
5136 * sys/ximage/ximagesink.c:
5137 (gst_ximagesink_calculate_pixel_aspect_ratio):
5138 * sys/xvimage/xvimagesink.c:
5139 (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
5140 more cases of pixel aspect ratio.
5142 2006-01-26 Edward Hervey <edward@fluendo.com>
5144 * gst/playback/gstdecodebin.c: (pad_probe):
5145 Also consider the flush-start and tag events as unblockers
5148 2006-01-26 Julien MOUTTE <julien@moutte.net>
5150 * gst/playback/gstplaybin.c: (gst_play_bin_init),
5151 (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
5152 (gst_play_bin_vis_blocked), (gst_play_bin_set_property):
5153 On the fly visualisation switch, works disabling, enabling as
5154 well but it won't be able to enable vis in a playbin that was
5155 created with no visualisation.
5157 2006-01-25 Wim Taymans <wim@fluendo.com>
5159 * gst-libs/gst/audio/gstbaseaudiosink.c:
5160 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
5161 Undo previous commit that returned WRONG_STATE sooner, it breaks
5164 2006-01-25 Wim Taymans <wim@fluendo.com>
5166 * gst-libs/gst/audio/gstbaseaudiosink.c:
5167 (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
5168 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
5170 Post error when caps cannot be parsed.
5171 Resync on discontinuity in the stream.
5172 Clip samples to segment boundaries.
5173 return WRONG_STATE sooner when we are flushing.
5175 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
5176 (gst_base_audio_src_get_time), (gst_base_audio_src_create):
5177 Make audiosrc operate in TIME.
5178 Set TIMESTAMP and DURATION on buffers.
5180 2006-01-24 Tim-Philipp Müller <tim at centricular dot net>
5182 * tests/examples/seek/seek.c: (main):
5183 Output tag messages as well.
5185 2006-01-23 Edward Hervey <edward@fluendo.com>
5187 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
5188 (free_pad_probes), (remove_fakesink), (pad_probe),
5189 (close_pad_link), (gst_decode_bin_change_state):
5190 Replace GstPadBlockCallback with pad probes that detect
5191 first buffer AND eos before removing fakesink.
5192 Fixes hang with demuxers doing EOS while pre-rolling.
5195 2006-01-23 Andy Wingo <wingo@pobox.com>
5197 * ext/alsa/gstalsasink.c:
5198 * gst-libs/gst/rtp/gstbasertpdepayload.c:
5199 (gst_base_rtp_depayload_setcaps),
5200 (gst_base_rtp_depayload_add_to_queue),
5201 (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
5203 Patch by: Jens Granseuer <jensgr at gmx dot net>
5205 2006-01-22 Julien MOUTTE <julien@moutte.net>
5207 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
5208 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
5209 (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some
5210 frames. We might get a frame destroyed after changing state to
5211 NULL, adding a safety check on xcontext.
5213 2006-01-22 Tim-Philipp Müller <tim at centricular dot net>
5215 * gst-libs/gst/interfaces/xoverlay.c:
5216 Fix prepare-xwindow-id code example in the docs - we need to
5217 ignore all messages that aren't element messages as well.
5219 2006-01-21 Julien MOUTTE <julien@moutte.net>
5221 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
5222 I think one day i'll completely undestand how caps negotiation
5223 is supposed to work. This refactoring handles buffer_alloc
5224 called with caps we can't handle. We definitely don't want a
5225 set_caps with those caps, so we define and allocate a buffer
5226 we would like to receive.
5228 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
5230 * gst/playback/gstplaybasebin.c: (setup_source):
5231 Free iterator when done.
5233 2006-01-17 Jan Schmidt <thaytan@mad.scientist.com>
5235 * gst-libs/gst/audio/gstbaseaudiosink.c:
5236 (gst_base_audio_sink_render):
5237 Fix playback of non-synchronised streams by assuming a rate
5238 of 1.0 instead of a random one.
5240 Makes this work again:
5242 gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
5243 endianness=(int)4321, signed=(boolean)true, width=(int)16,
5244 depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
5245 audioresample ! alsasink
5247 === release 0.10.2 ===
5249 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
5252 releasing 0.10.2, "Then the devil is six"
5254 2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
5256 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
5257 * gst/playback/gststreamselector.c:
5258 (gst_stream_selector_set_property):
5259 Comment out broken code that connects to the state-changed signal.
5260 At this point, changing current stream selection is broken, but
5261 stuff like gst-launch playbin current-audio=1 works and filters
5262 to the chosen stream.
5264 2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
5266 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
5267 Fix #327216 (null dereference in vorbisdec)
5269 2006-01-16 Tim-Philipp Müller <tim at centricular dot net>
5271 * ext/theora/theoradec.c: (theora_handle_comment_packet):
5272 Post taglist actually on bus instead of just freeing it
5273 (fixes #327114 and totem bug #327080).
5275 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
5276 Use gst_element_found_tags_for_pad(), so that the tags
5277 are sent downstream as an event as well.
5279 2006-01-15 Thomas Vander Stichele <thomas at apestaart dot org>
5281 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
5282 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
5283 (gst_ximagesink_buffer_alloc):
5284 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
5285 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
5286 (gst_xvimagesink_buffer_alloc):
5287 move all regularly occurring messages to GST_LOG level
5288 add some more object logs
5290 2006-01-14 Thomas Vander Stichele <thomas at apestaart dot org>
5292 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
5293 fix a silly segfault
5295 2006-01-14 Tim-Philipp Müller <tim at centricular dot net>
5297 * docs/libs/gst-plugins-base-libs-docs.sgml:
5298 * docs/libs/gst-plugins-base-libs-sections.txt:
5299 * gst-libs/gst/audio/mixerutils.c:
5300 * gst-libs/gst/audio/mixerutils.h:
5301 Add docs for mixerutils stuff.
5303 2006-01-13 Tim-Philipp Müller <tim at centricular dot net>
5305 * gst/playback/gstplaybasebin.c: (setup_source):
5306 Fix playback for sources that emit raw audio or
5307 raw video streams (e.g.: cd audio sources) (#325984).
5309 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5311 * gst-libs/gst/audio/mixerutils.c:
5312 (gst_audio_mixer_filter_do_filter):
5313 actually save the element we create
5315 2006-01-12 Tim-Philipp Müller <tim at centricular dot net>
5317 * gst-libs/gst/cdda/gstcddabasesrc.c:
5318 (gst_cdda_base_src_handle_track_seek):
5319 No need to post a tag message on the bus when seeking
5320 within the same track, only post it when the current
5323 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
5325 * gst/playback/gstplaybasebin.c: (group_destroy),
5326 (probe_triggered), (new_decoded_pad), (mute_group_type),
5327 (set_active_source):
5328 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
5329 * gst/playback/gststreamselector.c:
5330 (gst_stream_selector_base_init),
5331 (gst_stream_selector_set_property),
5332 (gst_stream_selector_request_new_pad):
5333 Reenable stream selection. These mechanisms need a complete overhaul
5334 in the face of 0.8->0.10 changes though.
5336 2006-01-11 Jan Schmidt <thaytan@mad.scientist.com>
5338 * ext/ogg/gstoggdemux.c:
5339 Change the pad template to src_%d to match the pads that
5340 are created from it. decodebin needs this information in order
5341 to decide that oggdemux is capable of producing multiple pads
5342 (and hence needs queues inserted).
5344 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
5345 (gst_ogg_mux_collected):
5346 Make debug output more useful by using GST_PTR_FORMAT.
5348 2006-01-11 Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
5350 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
5352 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
5353 Set depth and width for alaw/mulaw (fixes #326601).
5355 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
5357 * tests/icles/Makefile.am:
5358 don't build the tests if we don't have the libs
5360 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
5362 * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
5363 (gst_cd_paranoia_paranoia_callback):
5364 Don't try to free NULL pointers.
5366 2006-01-10 Edward Hervey <edward@fluendo.com>
5368 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
5369 (gst_audio_rate_change_state), (plugin_init):
5370 Add debugging category.
5372 Add case for incoming buffers without valid offset/offset_end.
5374 2006-01-10 Michael Smith <msmith@fluendo.com>
5376 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
5377 Don't leak GCond in audio sources.
5379 2006-01-10 Jan Schmidt <thaytan@mad.scientist.com>
5381 * gst/playback/gstplaybin.c: (gen_audio_element):
5382 Don't leak an autoaudiosink/alsasink when we generate
5383 a new audio element. (old code, I guess)
5385 2006-01-10 Michael Smith <msmith@fluendo.com>
5387 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
5388 Support float audio in audiorate.
5389 Use width rather than depth for selecting sample width.
5391 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
5393 * gst/videotestsrc/videotestsrc.h:
5394 Use GLib types here (that way we don't have to include the
5395 generated _stdint.h header, which makes life easier for win32
5396 folks that don't use autotools for the build) (#325990, patch
5397 by: Sergey Scobich).
5399 2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
5401 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
5402 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
5403 (gst_ring_buffer_pause), (wait_segment):
5404 * gst-libs/gst/audio/gstringbuffer.h:
5405 Name (private) union, makes Forte compiler happy (this time
5406 for real) (#324900).
5408 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
5410 * gst-libs/gst/audio/Makefile.am:
5411 Link against libgstinterfaces, needed for mixer
5412 and property probe stuff.
5414 2006-01-09 Edward Hervey <edward@fluendo.com>
5416 * gst-libs/gst/Makefile.am:
5418 2006-01-09 Tim-Philipp Müller <tim at centricular dot net>
5420 * gst-libs/gst/audio/Makefile.am:
5421 * gst-libs/gst/audio/mixerutils.c:
5422 (gst_audio_mixer_filter_do_filter),
5423 (gst_audio_mixer_filter_check_element),
5424 (gst_audio_mixer_filter_probe_feature),
5425 (element_factory_rank_compare_func),
5426 (gst_audio_default_registry_mixer_filter):
5427 * gst-libs/gst/audio/mixerutils.h:
5428 Add gst_audio_default_registry_mixer_filter() utility
5431 2006-01-03 Michael Smith <msmith@fluendo.com>
5433 * gst/audioresample/resample.h:
5434 As before, but for o_buf
5436 2006-01-03 Michael Smith <msmith@fluendo.com>
5438 * gst/audioresample/resample.h:
5439 Declare struct _ResampleState.buffer as unsigned char *, not void *,
5440 since we do arithmetic on it.
5442 2006-01-02 Tim-Philipp Müller <tim at centricular dot net>
5444 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
5445 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
5446 (gst_ring_buffer_pause), (wait_segment):
5447 * gst-libs/gst/audio/gstringbuffer.h:
5448 Sun's Forte compiler doesn't seem to like anonymous structs,
5449 so use same setup as in GstBaseSrc (fixes #324900).
5451 2005-12-30 Stefan Kost <ensonic@users.sf.net>
5454 * gst/volume/Makefile.am:
5455 * gst/volume/demo.c:
5456 move old example to tests/examples/volume/volune.c
5457 * tests/examples/Makefile.am:
5458 * tests/examples/seek/seek.c: (main):
5459 change window-close event from "delete-event" to "destroy"
5460 * tests/examples/volume/Makefile.am:
5461 * tests/examples/volume/volume.c: (value_changed_callback),
5462 (setup_gui), (message_received), (eos_message_received), (main):
5463 fix event handling and bus usage
5465 2005-12-29 Stefan Kost <ensonic@users.sf.net>
5467 * gst/audiotestsrc/gstaudiotestsrc.c:
5468 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
5469 (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
5470 (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
5471 (gst_audio_test_src_create_square),
5472 (gst_audio_test_src_create_saw),
5473 (gst_audio_test_src_create_triangle),
5474 (gst_audio_test_src_create_silence),
5475 (gst_audio_test_src_create_white_noise),
5476 (gst_audio_test_src_create_pink_noise),
5477 (gst_audio_test_src_init_sine_table),
5478 (gst_audio_test_src_create_sine_table),
5479 (gst_audio_test_src_change_wave),
5480 (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
5481 (gst_audio_test_src_create), (gst_audio_test_src_set_property):
5482 * gst/audiotestsrc/gstaudiotestsrc.h:
5483 update to basesrc changes, implement segmented seeking and eos
5484 handling, add a 'sine-tab' waveform for performance critical playback
5486 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
5489 ... and this time the other modified file that I missed last time.
5491 2005-12-29 Michael Smith <msmith@fluendo.com>
5493 * gst/playback/gstdecodebin.c: (new_pad):
5494 Fix non-C89 variable declaration not at the start of a block. Should
5495 help some compilers.
5497 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
5499 * tests/check/Makefile.am:
5500 And now fix 'make distcheck' (builddir != srcdir)
5502 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
5505 * ext/cdparanoia/Makefile.am:
5506 * ext/cdparanoia/gstcdparanoia.c:
5507 * ext/cdparanoia/gstcdparanoia.h:
5508 * ext/cdparanoia/gstcdparanoiasrc.c:
5509 (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
5510 (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
5511 (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
5512 (gst_cd_paranoia_paranoia_callback),
5513 (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
5514 (gst_cd_paranoia_src_set_property),
5515 (gst_cd_paranoia_src_get_property), (plugin_init):
5516 * ext/cdparanoia/gstcdparanoiasrc.h:
5517 New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
5518 plugin again (there are still fixes required to playbin to make
5519 cdda:// uris work there).
5521 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
5523 * tests/check/Makefile.am:
5524 Fix test case compilation.
5526 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
5528 * gst-libs/gst/cdda/gstcddabasesrc.c:
5529 (gst_cdda_base_src_update_duration),
5530 (gst_cdda_base_src_calculate_cddb_id):
5531 An integer is not a string. Fix access to uninitialised variable.
5533 * tests/check/Makefile.am:
5534 Add cddabasesrc unit test; also actually enable the vorbis test.
5536 * tests/check/generic/states.c:
5537 Blacklist new cd audio elements as well.
5539 * tests/check/libs/cddabasesrc.c:
5540 Unit test for GstCddaBaseSrc (discid calculation mostly).
5542 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
5544 * docs/libs/Makefile.am:
5545 * docs/libs/gst-plugins-base-libs-docs.sgml:
5546 * docs/libs/gst-plugins-base-libs-sections.txt:
5547 * docs/libs/gst-plugins-base-libs.types:
5548 Add docs for libgstcdda/GstCddaBaseSrc.
5550 * gst-libs/gst/interfaces/mixertrack.h:
5551 Do one struct member per line with a semicolon at the end, that way
5552 even gtk-doc might parse it without complaining.
5554 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
5557 * gst-libs/gst/Makefile.am:
5558 * gst-libs/gst/cdda/Makefile.am:
5559 * gst-libs/gst/cdda/base64.c:
5560 * gst-libs/gst/cdda/base64.h:
5561 * gst-libs/gst/cdda/gstcddabasesrc.c:
5562 (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
5563 (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
5564 (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
5565 (gst_cdda_base_src_get_property),
5566 (gst_cdda_base_src_get_track_from_sector),
5567 (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
5568 (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
5569 (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
5570 (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
5571 (gst_cdda_base_src_uri_get_protocols),
5572 (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
5573 (gst_cdda_base_src_uri_handler_init),
5574 (gst_cdda_base_src_setup_interfaces),
5575 (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
5576 (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
5577 (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
5578 (gst_cdda_base_src_add_tags),
5579 (gst_cdda_base_src_add_index_associations),
5580 (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
5581 (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
5582 (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
5583 (gst_cdda_base_src_create):
5584 * gst-libs/gst/cdda/gstcddabasesrc.h:
5585 * gst-libs/gst/cdda/sha1.c:
5586 * gst-libs/gst/cdda/sha1.h:
5587 Add new libgstcdda with GstCddaBaseSrc class.
5589 2005-12-28 Tim-Philipp Müller <tim at centricular dot net>
5591 * ext/gnomevfs/gstgnomevfssink.h:
5592 Use GstBaseSinkClass as parent_class member for class struct, not
5595 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
5597 Patch by: Michael Benes
5599 * gst/videotestsrc/gstvideotestsrc.c:
5600 (gst_video_test_src_class_init), (gst_video_test_src_start):
5601 Add start method to reset running time and number of frames sent
5602 when starting up (fixes #324696)
5604 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
5606 * docs/plugins/Makefile.am:
5607 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5608 * docs/plugins/gst-plugins-base-plugins-sections.txt:
5609 * docs/plugins/gst-plugins-base-plugins.args:
5610 * docs/plugins/gst-plugins-base-plugins.hierarchy:
5611 * docs/plugins/gst-plugins-base-plugins.signals:
5612 Add docs stuff for gnomevfssrc and gnomevfssink.
5614 * ext/gnomevfs/gstgnomevfssrc.c:
5615 Fix example pipeline in gtk-doc blurb.
5617 2005-12-27 Tim-Philipp Müller <tim at centricular dot net>
5619 * ext/gnomevfs/Makefile.am:
5620 * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
5621 (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
5622 (gst_gnome_vfs_handle_get_type), (plugin_init):
5623 * ext/gnomevfs/gstgnomevfs.h:
5624 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
5625 (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
5626 (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
5627 (gst_gnome_vfs_sink_set_property),
5628 (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
5629 (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
5630 (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
5631 (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
5632 (gst_gnome_vfs_sink_uri_get_type),
5633 (gst_gnome_vfs_sink_uri_get_protocols),
5634 (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
5635 (gst_gnome_vfs_sink_uri_handler_init):
5636 * ext/gnomevfs/gstgnomevfssink.h:
5637 Port gnomevfssink; add gtk-doc blurb.
5639 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
5640 (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
5641 (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
5642 (gst_gnome_vfs_src_uri_get_type),
5643 (gst_gnome_vfs_src_uri_get_protocols),
5644 (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
5645 (gst_gnome_vfs_src_uri_handler_init),
5646 (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
5647 (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
5648 (gst_gnome_vfs_src_send_additional_headers_callback),
5649 (gst_gnome_vfs_src_received_headers_callback),
5650 (gst_gnome_vfs_src_push_callbacks),
5651 (gst_gnome_vfs_src_pop_callbacks),
5652 (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
5653 (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
5654 (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
5655 * ext/gnomevfs/gstgnomevfssrc.h:
5656 s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
5657 file; add gtk-doc blurb with example pipelines.
5659 === release 0.10.1 ===
5661 2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
5664 releasing 0.10.1, "Dobro Dedek"
5666 2005-12-21 Edgard Lima <edgard.lima@indt.org.br>
5668 * gst/typefind/gsttypefindfunctions.c:
5669 iLBC30 and iLBC20 added to typefind.
5671 2005-12-20 Thomas Vander Stichele <thomas at apestaart dot org>
5673 * gst-libs/gst/audio/gstbaseaudiosink.c:
5674 (gst_base_audio_sink_class_init):
5675 * gst-libs/gst/audio/gstbaseaudiosrc.c:
5676 (gst_base_audio_src_class_init):
5677 update strings, values are in microseconds
5678 change the default sink buffer time to something that is smaller
5679 (to help software volume mixing have a slightly lower delay) but
5680 still be acceptable on Wim's laptop
5682 2005-12-20 Edward Hervey <edward@fluendo.com>
5684 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
5685 Made a quack, forgot to add DUCK to the riff video template.
5687 2005-12-19 Edward Hervey <edward@fluendo.com>
5689 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
5690 (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
5691 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
5692 (gst_ogm_parse_chain):
5693 Make sure pads are initialized correctly.
5694 * gst-libs/gst/riff/riff-ids.h:
5695 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
5696 (gst_riff_create_video_template_caps):
5697 Add a whole bunch of FOURCC <=> MimeType.
5698 Extend the riff video pad template to support the newly added fourcc.
5700 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
5702 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
5703 (gst_ogg_demux_activate_chain):
5704 Extra debug output when activating/deactivating chains.
5706 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
5707 (is_demuxer_element), (try_to_link_1), (remove_element_chain),
5709 Remove a queue from our list when it becomes unlinked.
5710 Don't add queues to elements in class 'Demux' if they
5711 can only produce one pad
5713 2005-12-18 Julien MOUTTE <julien@moutte.net>
5715 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
5716 (gst_video_sink_get_type): Add a debug category.
5718 2005-12-17 Philippe Khalaf <burger@speedy.org>
5720 * gst-libs/gst/rtp/gstbasertpdepayload.c:
5721 (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
5722 Handle downstream newsegment by sending our own newsegment before the
5723 next buffer to be released. (#323900)
5725 2005-12-17 Philippe Khalaf <burger@speedy.org>
5727 * gst-libs/gst/rtp/gstbasertpdepayload.c:
5728 (gst_base_rtp_depayload_set_gst_timestamp):
5729 add queue delay to new segment as well (as opposed to just the first
5730 buffer). (bug #322347)
5732 2005-12-16 Stefan Kost <ensonic@users.sf.net>
5734 * ext/libvisual/visual.c: (make_valid_name):
5735 change some char* into char[]
5736 * gst/audiotestsrc/gstaudiotestsrc.c:
5737 (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
5738 (gst_audio_test_src_create):
5739 * gst/audiotestsrc/gstaudiotestsrc.h:
5740 prepare to handle EOS and SEGMENT_DONE
5742 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
5744 * tests/check/generic/states.c: (GST_START_TEST):
5745 Blacklist cdparanoia element in state test.
5747 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
5749 Patch by: Benjamin Pineau
5752 * gst/tcp/gsttcpclientsink.c:
5753 * gst/tcp/gsttcpserversink.c:
5754 * gst/tcp/gsttcpserversrc.c:
5755 Add <string.h> includes for memset and FD_ZERO (fixes #323878)
5757 2005-12-15 Michael Smith <msmith@fluendo.com>
5759 * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
5760 (gst_video_rate_chain):
5761 Fix timestamping for videorate when the first buffer it sees has a
5762 non-zero timestamp. Fix some misleading debug output.
5764 2005-12-15 Michael Smith <msmith@fluendo.com>
5766 * gst/audioresample/gstaudioresample.c:
5767 Don't leak all input buffers to audioresample.
5769 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
5771 * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
5772 Don't operate on empty text buffers. Strip newlines and
5773 tabs only from the end of the text, but leave them intact
5774 in the middle. Fix typo in gtk-doc description.
5776 2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
5778 * gst/playback/gstplaybasebin.c:
5779 * gst/playback/gstplaybin.c: (handoff):
5780 Make sure the video frame buffer we return to apps via the
5781 "frame" property always has caps set on it. Modify
5782 _gst_gvalue_set_object() macro to handle NULL objects
5785 2005-12-14 Stefan Kost <ensonic@users.sf.net>
5787 * gst/audiotestsrc/gstaudiotestsrc.c:
5788 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
5789 (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
5790 (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
5791 (gst_audio_test_src_create):
5792 * gst/audiotestsrc/gstaudiotestsrc.h:
5793 Adjust to some recent api changes and add wtays new cool seeking
5796 2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
5798 * ext/alsa/Makefile.am:
5799 * ext/alsa/gstalsadeviceprobe.c:
5800 * ext/alsa/gstalsadeviceprobe.h:
5801 Helper functions to add device probing via the GstPropertyProbe
5802 interface to a class.
5804 * ext/alsa/gstalsamixer.h:
5805 Comment out GST_ALSA_MIXER, it returns a struct that's not
5808 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
5809 Add some debug info.
5811 * ext/alsa/gstalsamixerelement.c:
5812 (gst_alsa_mixer_element_interface_supported),
5813 (gst_implements_interface_init),
5814 (gst_alsa_mixer_element_init_interfaces),
5815 (gst_alsa_mixer_element_class_init),
5816 (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
5817 (gst_alsa_mixer_element_set_property),
5818 (gst_alsa_mixer_element_get_property),
5819 (gst_alsa_mixer_element_change_state):
5820 * ext/alsa/gstalsamixerelement.h:
5821 Add 'device' and 'device-name' properties. Add GstPropertyProbe
5822 for device handling (gnome-volume-control will need that).
5824 2005-12-12 Christian Schaller <uraeus@gnome.org>
5826 * ext/Makefile.am: fix cdparanoia entry
5827 * gst-plugins-base.spec.in: add cdparanoia
5829 2005-12-12 Michael Smith <msmith@fluendo.com>
5831 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
5832 Use the correct function to free list of typefind factories.
5834 2005-12-12 Wim Taymans <wim@fluendo.com>
5836 * gst/videotestsrc/gstvideotestsrc.c:
5837 (gst_video_test_src_class_init), (gst_video_test_src_init),
5838 (gst_video_test_src_parse_caps), (gst_video_test_src_query),
5839 (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
5840 (gst_video_test_src_create):
5841 * gst/videotestsrc/gstvideotestsrc.h:
5842 Implement seeking in videotestsrc.
5845 2005-12-12 Wim Taymans <wim@fluendo.com>
5847 * ext/cdparanoia/Makefile.am:
5848 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
5849 (gst_paranoia_endian_get_type), (_do_init),
5850 (cdparanoia_class_init), (cdparanoia_init),
5851 (cdparanoia_set_property), (cdparanoia_get_property),
5852 (cdparanoia_do_seek), (cdparanoia_is_seekable),
5853 (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
5854 (cdparanoia_convert), (cdparanoia_get_query_types),
5855 (cdparanoia_query), (cdparanoia_set_index),
5856 (cdparanoia_uri_set_uri):
5857 * ext/cdparanoia/gstcdparanoia.h:
5858 Partially ported cdparanoia now that basesrc can support a
5861 2005-12-12 Wim Taymans <wim@fluendo.com>
5863 * tests/examples/seek/scrubby.c: (main):
5864 Set higher priority for bus events so they don't get reordered with
5867 * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
5868 (flush_toggle_cb), (main):
5869 Added checkbox to disable flushing seeks.
5870 Disable scrubbing when doing non flushing seeks.
5872 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
5874 * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
5875 (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
5876 (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
5877 (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
5878 Implement some sort of event handling that doesn't rely on
5879 g_return_if_fail; make sure we always push the last chunk of an
5880 .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
5881 state change function; remove some old cruft. Seeking is still
5882 rather unlikely to work though.
5887 2005-12-11 Julien MOUTTE <julien@moutte.net>
5889 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
5890 Fixed a leak of the current image reference when cleaning up.
5891 Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
5893 2005-12-09 Michael Smith <msmith@fluendo.com>
5895 * tools/Makefile.am:
5896 * tools/gst-launch-ext-m.m:
5897 Remove gst-launch-ext. It doesn't work, and is no longer
5898 particularly useful.
5900 2005-12-08 Luca Ognibene <luogni@tin.it>
5902 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
5903 don't pass random values to ogmparse convert function.
5904 Make seeking possible in the exile1.ogm file.
5906 2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
5908 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
5909 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
5910 Work around refcount problem with g_value_set_object() that occur
5911 if the core has been compiled against GLib-2.6 (g_value_set_object()
5912 will only g_object_ref() the element, but the caller will
5913 gst_object_unref() it and bad things will happen due to the way
5914 GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
5915 totem for people on FC4 using Thomas's 0.10 RPMs.
5917 2005-12-07 Edward Hervey <edward@fluendo.com>
5919 Time to welcome ogm to 0.10 :)
5921 * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
5922 (gst_ogg_pad_typefind):
5923 Oggdemux can now properly typefind elements with dynamic pads.
5924 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5925 Properly set caps on src pad, and set caps on outgoing buffers.
5927 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
5929 * ext/alsa/gstalsamixer.h:
5930 * ext/alsa/gstalsamixerelement.h:
5931 * ext/alsa/gstalsamixeroptions.h:
5932 * ext/alsa/gstalsamixertrack.h:
5933 * ext/alsa/gstalsasink.c:
5934 * ext/alsa/gstalsasink.h:
5935 * ext/alsa/gstalsasrc.c:
5936 * ext/alsa/gstalsasrc.h:
5937 * ext/cdparanoia/gstcdparanoia.h:
5938 * ext/gnomevfs/gstgnomevfsuri.h:
5939 * ext/ogg/gstoggdemux.c:
5940 * ext/ogg/gstoggmux.c:
5941 * ext/pango/gsttextoverlay.h:
5942 * ext/theora/theoradec.c:
5943 * ext/theora/theoraenc.c:
5944 * ext/vorbis/vorbisdec.h:
5945 * ext/vorbis/vorbisenc.c:
5946 * ext/vorbis/vorbisenc.h:
5947 * ext/vorbis/vorbisparse.h:
5948 * gst-libs/gst/audio/gstaudioclock.h:
5949 * gst-libs/gst/audio/gstaudiosink.c:
5950 * gst-libs/gst/audio/gstaudiosink.h:
5951 * gst-libs/gst/audio/gstaudiosrc.c:
5952 * gst-libs/gst/audio/gstaudiosrc.h:
5953 * gst-libs/gst/audio/gstbaseaudiosink.c:
5954 * gst-libs/gst/audio/gstbaseaudiosink.h:
5955 * gst-libs/gst/audio/gstbaseaudiosrc.c:
5956 * gst-libs/gst/audio/gstbaseaudiosrc.h:
5957 * gst-libs/gst/audio/gstringbuffer.h:
5958 * gst-libs/gst/audio/multichannel.h:
5959 * gst-libs/gst/floatcast/floatcast.h:
5960 * gst-libs/gst/interfaces/colorbalance.c:
5961 * gst-libs/gst/interfaces/colorbalance.h:
5962 * gst-libs/gst/interfaces/colorbalancechannel.h:
5963 * gst-libs/gst/interfaces/mixer.h:
5964 * gst-libs/gst/interfaces/mixeroptions.h:
5965 * gst-libs/gst/interfaces/mixertrack.h:
5966 * gst-libs/gst/interfaces/navigation.h:
5967 * gst-libs/gst/interfaces/propertyprobe.h:
5968 * gst-libs/gst/interfaces/tuner.h:
5969 * gst-libs/gst/interfaces/tunerchannel.h:
5970 * gst-libs/gst/interfaces/tunernorm.h:
5971 * gst-libs/gst/interfaces/xoverlay.h:
5972 * gst-libs/gst/netbuffer/gstnetbuffer.h:
5973 * gst-libs/gst/riff/riff-ids.h:
5974 * gst-libs/gst/riff/riff-media.h:
5975 * gst-libs/gst/riff/riff-read.h:
5976 * gst-libs/gst/rtp/gstbasertpdepayload.h:
5977 * gst-libs/gst/rtp/gstbasertppayload.c:
5978 * gst-libs/gst/rtp/gstbasertppayload.h:
5979 * gst-libs/gst/rtp/gstrtpbuffer.c:
5980 * gst-libs/gst/rtp/gstrtpbuffer.h:
5981 * gst-libs/gst/tag/gsttageditingprivate.h:
5982 * gst-libs/gst/tag/gstvorbistag.c:
5983 (gst_tag_list_from_vorbiscomment_buffer):
5984 * gst-libs/gst/tag/tag.h:
5985 * gst-libs/gst/video/video.h:
5986 * gst/adder/gstadder.c:
5987 * gst/adder/gstadder.h:
5988 * gst/audioconvert/audioconvert.c:
5989 * gst/audioconvert/audioconvert.h:
5990 * gst/audioconvert/gstaudioconvert.c:
5991 * gst/audioconvert/gstchannelmix.c:
5992 * gst/audioconvert/gstchannelmix.h:
5993 * gst/audiorate/gstaudiorate.c:
5994 * gst/audioresample/buffer.h:
5995 * gst/audioresample/functable.h:
5996 * gst/audioresample/gstaudioresample.c:
5997 * gst/audioresample/resample.h:
5998 * gst/ffmpegcolorspace/avcodec.h:
5999 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6000 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
6001 * gst/ffmpegcolorspace/imgconvert.c:
6002 * gst/ffmpegcolorspace/imgconvert_template.h:
6003 * gst/playback/gstdecodebin.c:
6004 * gst/playback/gstplaybasebin.h:
6005 * gst/playback/gstplaybin.c:
6006 * gst/playback/gststreaminfo.h:
6007 * gst/tcp/gstfdset.c:
6008 * gst/tcp/gstfdset.h:
6009 * gst/tcp/gstmultifdsink.c:
6010 * gst/tcp/gstmultifdsink.h:
6012 * gst/tcp/gsttcpclientsrc.c:
6013 * gst/tcp/gsttcpclientsrc.h:
6014 * gst/tcp/gsttcpplugin.h:
6015 * gst/tcp/gsttcpserversink.c:
6016 * gst/tcp/gsttcpserversrc.c:
6017 * gst/typefind/gsttypefindfunctions.c:
6018 * gst/videorate/gstvideorate.c:
6019 * gst/videotestsrc/gstvideotestsrc.h:
6020 * gst/videotestsrc/videotestsrc.h:
6021 * sys/v4l/gstv4lcolorbalance.h:
6022 * sys/v4l/gstv4ltuner.h:
6023 * sys/v4l/gstv4lxoverlay.h:
6024 * sys/v4l/v4l_calls.h:
6025 * sys/v4l/videodev_mjpeg.h:
6026 * tests/check/elements/audioconvert.c:
6027 * tests/check/elements/audioresample.c:
6028 * tests/check/elements/audiotestsrc.c:
6029 * tests/check/elements/videotestsrc.c:
6030 * tests/check/elements/volume.c:
6031 * tests/examples/seek/scrubby.c:
6032 * tests/examples/seek/seek.c:
6035 === release 0.10.0 ===
6037 2005-12-05 <thomas (at) apestaart (dot) org>
6040 releasing 0.10.0, "Mont-d'or"
6042 2005-12-05 Jan Schmidt <thaytan@mad.scientist.com>
6044 * tests/examples/seek/Makefile.am:
6045 Build fix for when gtk is not available.
6047 2005-12-05 Andy Wingo <wingo@pobox.com>
6049 * ext/libvisual/visual.c: (get_buffer):
6050 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
6051 * ext/pango/gsttextrender.c: (gst_text_render_chain):
6052 * ext/theora/theoradec.c: (theora_handle_data_packet):
6053 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
6055 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6056 * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
6057 Update for alloc_buffer changes.
6059 2005-12-05 Andy Wingo <wingo@pobox.com>
6061 patch by: Kai Vehmanen <kv2004 eca cx>
6063 * gst-libs/gst/rtp/gstbasertpdepayload.c
6064 (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
6066 2005-12-04 Andy Wingo <wingo@pobox.com>
6068 patch by: Sebastien Cote <sebas642 yahoo ca>
6070 * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
6073 2005-12-02 Tim-Philipp Müller <tim at centricular dot net>
6075 * docs/plugins/Makefile.am:
6076 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6077 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6078 * docs/plugins/gst-plugins-base-plugins.hierarchy:
6079 * ext/pango/gstclockoverlay.c:
6080 * ext/pango/gsttextoverlay.c:
6081 * ext/pango/gsttextrender.c:
6082 * ext/pango/gsttimeoverlay.c:
6083 Add gtk-doc blurbs to pango elements.
6085 2005-12-02 Wim Taymans <wim@fluendo.com>
6087 * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
6088 * gst/audioresample/buffer.h:
6089 * gst/audioresample/gstaudioresample.c:
6090 * gst/audioresample/gstaudioresample.h:
6091 * gst/audioresample/resample.c: (resample_input_flush),
6092 (resample_input_pushthrough), (resample_input_eos),
6093 (resample_get_output_size_for_input),
6094 (resample_get_input_size_for_output), (resample_get_output_size),
6095 (resample_get_output_data):
6096 * gst/audioresample/resample.h:
6097 * gst/audioresample/resample_ref.c: (resample_scale_ref):
6098 Fix audioresample, seek torture, new segments, reverse negotiation
6101 2005-12-02 Wim Taymans <wim@fluendo.com>
6103 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6106 2005-12-02 Wim Taymans <wim@fluendo.com>
6108 * gst/audioconvert/gstaudioconvert.c:
6109 (gst_audio_convert_transform):
6112 === release 0.9.7 ===
6114 2005-12-01 <thomas (at) apestaart (dot) org>
6117 releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
6119 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
6125 add win32 MANIFEST file
6126 do something to the hungarian translation
6128 2005-12-01 Tim-Philipp Müller <tim at centricular dot net>
6131 Add $(PANGO_DIR) to SUBDIRS
6133 * ext/pango/gstclockoverlay.c:
6134 * ext/pango/gsttimeoverlay.c:
6135 Fix and improve element descriptions.
6137 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
6139 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6140 * docs/plugins/inspect/plugin-libvisual.xml:
6141 * docs/plugins/inspect/plugin-pango.xml:
6142 add pango plugin to docs
6144 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
6150 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
6153 * tests/Makefile.am:
6154 * tests/icles/.cvsignore:
6155 * tests/icles/Makefile.am:
6156 * tests/icles/stress-xoverlay.c: (myclock), (open_display),
6157 (close_display), (resize_window), (move_window), (create_window),
6158 (terminate_playback), (pause_playback), (start_playback), (main):
6159 add stress test for xoverlay from Julien
6161 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
6163 * docs/libs/tmpl/gstcolorbalance.sgml:
6164 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6165 * gst-libs/gst/rtp/gstbasertppayload.c:
6166 * gst-libs/gst/rtp/gstrtpbuffer.c:
6167 * gst-libs/gst/rtp/gstrtpbuffer.h:
6168 Do burger's rename for rtp payloaders and depayloaders
6170 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
6173 add Visual Studio 6 build files
6175 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
6177 * docs/libs/gst-plugins-base-libs-docs.sgml:
6178 * docs/libs/gst-plugins-base-libs-sections.txt:
6179 * docs/libs/tmpl/gstaudio.sgml:
6180 * docs/libs/tmpl/gstringbuffer.sgml:
6181 * gst-libs/gst/interfaces/xoverlay.c:
6182 * gst-libs/gst/video/gstvideofilter.c:
6183 * gst-libs/gst/video/gstvideosink.c:
6184 update documentation
6186 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
6188 * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
6189 (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
6190 (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
6191 (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
6192 (gst_multi_fd_sink_get_stats),
6193 (gst_multi_fd_sink_remove_client_link),
6194 (gst_multi_fd_sink_handle_client_read),
6195 (gst_multi_fd_sink_client_queue_data),
6196 (gst_multi_fd_sink_client_queue_caps),
6197 (gst_multi_fd_sink_client_queue_buffer),
6198 (gst_multi_fd_sink_new_client),
6199 (gst_multi_fd_sink_handle_client_write),
6200 (gst_multi_fd_sink_recover_client),
6201 (gst_multi_fd_sink_queue_buffer),
6202 (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
6203 (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
6204 (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
6205 (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
6206 * gst/tcp/gstmultifdsink.h:
6207 * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
6208 (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
6209 (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
6210 (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
6211 (gst_tcp_client_sink_set_property),
6212 (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
6213 (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
6214 * gst/tcp/gsttcpclientsink.h:
6215 * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
6216 (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
6217 (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
6218 (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
6219 (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
6220 (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
6221 * gst/tcp/gsttcpclientsrc.h:
6222 * gst/tcp/gsttcpplugin.c: (plugin_init):
6223 * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
6224 (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
6225 (gst_tcp_server_sink_finalize),
6226 (gst_tcp_server_sink_handle_server_read),
6227 (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
6228 (gst_tcp_server_sink_set_property),
6229 (gst_tcp_server_sink_get_property),
6230 (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
6231 * gst/tcp/gsttcpserversink.h:
6232 * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
6233 (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
6234 (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
6235 (gst_tcp_server_src_set_property),
6236 (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
6237 (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
6238 * gst/tcp/gsttcpserversrc.h:
6241 2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
6243 * docs/plugins/Makefile.am:
6244 * docs/plugins/gst-plugins-base-plugins.args:
6245 * docs/plugins/inspect/plugin-libvisual.xml:
6246 * gst/audioconvert/plugin.h:
6247 * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
6248 (gst_audio_rate_base_init), (gst_audio_rate_class_init),
6249 (gst_audio_rate_setcaps), (gst_audio_rate_init),
6250 (gst_audio_rate_chain), (gst_audio_rate_set_property),
6251 (gst_audio_rate_get_property), (gst_audio_rate_change_state),
6253 * gst/audiotestsrc/gstaudiotestsrc.c:
6254 (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
6255 (gst_audio_test_src_class_init), (gst_audio_test_src_init),
6256 (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
6257 (gst_audio_test_src_get_query_types),
6258 (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
6259 (gst_audio_test_src_create_square),
6260 (gst_audio_test_src_create_saw),
6261 (gst_audio_test_src_create_triangle),
6262 (gst_audio_test_src_create_silence),
6263 (gst_audio_test_src_create_white_noise),
6264 (gst_audio_test_src_init_pink_noise),
6265 (gst_audio_test_src_generate_pink_noise_value),
6266 (gst_audio_test_src_create_pink_noise),
6267 (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
6268 (gst_audio_test_src_create), (gst_audio_test_src_set_property),
6269 (gst_audio_test_src_get_property), (gst_audio_test_src_start),
6271 * gst/audiotestsrc/gstaudiotestsrc.h:
6272 * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
6273 (gst_sub_parse_base_init), (gst_sub_parse_class_init),
6274 (gst_sub_parse_init), (gst_sub_parse_formats),
6275 (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
6276 (convert_encoding), (get_next_line),
6277 (gst_sub_parse_data_format_autodetect),
6278 (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
6279 (gst_sub_parse_loop), (gst_sub_parse_chain),
6280 (gst_sub_parse_change_state), (gst_sub_parse_type_find),
6282 * gst/subparse/gstsubparse.h:
6283 * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
6284 (gst_video_rate_base_init), (gst_video_rate_class_init),
6285 (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
6286 (gst_video_rate_setcaps), (gst_video_rate_blank_data),
6287 (gst_video_rate_init), (gst_video_rate_event),
6288 (gst_video_rate_chain), (gst_video_rate_set_property),
6289 (gst_video_rate_get_property), (gst_video_rate_change_state),
6291 * gst/videoscale/gstvideoscale.c:
6292 (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
6293 (gst_video_scale_src_template_factory),
6294 (gst_video_scale_sink_template_factory),
6295 (gst_video_scale_get_type), (gst_video_scale_base_init),
6296 (gst_video_scale_class_init), (gst_video_scale_init),
6297 (gst_video_scale_set_property), (gst_video_scale_get_property),
6298 (gst_video_scale_transform_caps), (gst_video_scale_get_format),
6299 (gst_video_scale_prepare_size), (parse_caps),
6300 (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
6301 (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
6302 (gst_video_scale_transform), (gst_video_scale_handle_src_event),
6304 * gst/videoscale/gstvideoscale.h:
6305 * gst/videotestsrc/gstvideotestsrc.c:
6306 (gst_video_test_src_pattern_get_type),
6307 (gst_video_test_src_base_init), (gst_video_test_src_class_init),
6308 (gst_video_test_src_init), (gst_video_test_src_src_fixate),
6309 (gst_video_test_src_set_pattern),
6310 (gst_video_test_src_set_property),
6311 (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
6312 (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
6313 (gst_video_test_src_event), (gst_video_test_src_get_times),
6314 (gst_video_test_src_create), (plugin_init):
6315 * gst/videotestsrc/gstvideotestsrc.h:
6316 * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
6317 (gst_video_test_src_smpte), (gst_video_test_src_snow),
6318 (gst_video_test_src_black):
6319 * gst/videotestsrc/videotestsrc.h:
6321 clean up docs a little
6323 2005-11-30 Wim Taymans <wim@fluendo.com>
6325 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6326 * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
6327 (gst_basertppayload_event), (gst_basertppayload_push),
6328 (gst_basertppayload_change_state):
6329 * gst-libs/gst/rtp/gstbasertppayload.h:
6332 2005-11-30 Julien MOUTTE <julien@moutte.net>
6334 * docs/libs/gst-plugins-base-libs-docs.sgml:
6335 * docs/libs/gst-plugins-base-libs-sections.txt:
6336 * gst-libs/gst/video/gstvideofilter.c:
6337 * gst-libs/gst/video/gstvideosink.c:
6338 * gst-libs/gst/video/gstvideosink.h: Adding docs.
6340 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
6360 * scripts/autoplugins.sh:
6363 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
6367 * examples/Makefile.am:
6368 * examples/capsfilter/Makefile.am:
6369 * examples/capsfilter/capsfilter1.c:
6370 * examples/gob/Makefile.am:
6371 * examples/gob/gst-identity2.gob:
6372 * examples/indexing/.cvsignore:
6373 * examples/indexing/Makefile.am:
6374 * examples/indexing/indexmpeg.c:
6375 * examples/seeking/.cvsignore:
6376 * examples/seeking/Makefile.am:
6377 * examples/seeking/cdparanoia.c:
6378 * examples/seeking/cdplayer.c:
6379 * examples/seeking/chained.c:
6380 * examples/seeking/scrubby.c:
6381 * examples/seeking/seek.c:
6382 * examples/stats/Makefile.am:
6383 * examples/stats/mp2ogg.c:
6384 * examples/switch/.cvsignore:
6385 * examples/switch/Makefile.am:
6386 * examples/switch/switcher.c:
6387 * tests/Makefile.am:
6388 * tests/check/generic/.cvsignore:
6389 * tests/check/pipelines/.cvsignore:
6390 * tests/examples/Makefile.am:
6391 * tests/examples/seek/Makefile.am:
6392 reorganize stuff under tests/
6394 2005-11-30 Edward Hervey <edward@fluendo.com>
6396 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
6397 Go away you stupid GstStaticPadTemplate memleak.
6399 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
6401 * gst-libs/gst/net/Makefile.am:
6402 * gst-libs/gst/net/README:
6403 * gst-libs/gst/net/gstnetbuffer.c:
6404 * gst-libs/gst/net/gstnetbuffer.h:
6405 this was moved to "netbuffer"
6407 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
6409 * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
6410 (gst_video_filter_class_init), (gst_video_filter_init):
6411 * gst-libs/gst/video/gstvideofilter.h:
6412 borgify name to bring in line with other classes
6414 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
6416 * gst/audioscale/.cvsignore:
6417 * gst/audioscale/Makefile.am:
6418 * gst/audioscale/README:
6419 * gst/audioscale/audioscale.vcproj:
6420 * gst/audioscale/dtof.c:
6421 * gst/audioscale/dtos.c:
6422 * gst/audioscale/functable.c:
6423 * gst/audioscale/gstaudioscale.c:
6424 * gst/audioscale/gstaudioscale.h:
6425 * gst/audioscale/private.h:
6426 * gst/audioscale/resample.c:
6427 * gst/audioscale/resample.h:
6428 * gst/audioscale/test.c:
6431 2005-11-30 Edward Hervey <edward@fluendo.com>
6433 * gst-libs/gst/netbuffer/Makefile.am:
6434 really, really tired
6436 2005-11-30 Edward Hervey <edward@fluendo.com>
6438 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
6439 Update for new GstTypeFindFactory _register()
6441 2005-11-30 Edward Hervey <edward@fluendo.com>
6443 * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir):
6444 Let's not override libgstnet from core for no reason...
6445 (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
6446 Ok, maybe not so quick next time.
6448 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
6451 * gst-libs/gst/Makefile.am:
6452 moved gst-libs/gst/net to netbuffer through CVS surgery
6453 remove old directory
6454 updating build to accomodate
6457 2005-11-29 Andy Wingo <wingo@pobox.com>
6459 * pkgconfig/gstreamer-plugins-base.pc.in:
6460 * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
6461 * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
6464 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
6466 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
6467 3rd time's the charm. Correct ref-counting for discarded buffers.
6469 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
6471 * gst/playback/gststreamselector.c:
6472 (gst_stream_selector_class_init),
6473 (gst_stream_selector_set_property),
6474 (gst_stream_selector_get_property),
6475 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
6478 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
6480 * gst/subparse/gstsubparse.c: (feed_textbuf):
6481 Don't access already unref'ed buffer.
6483 2005-11-29 Jan Schmidt <thaytan@mad.scientist.com>
6485 * gst/playback/gststreamselector.c:
6486 (gst_stream_selector_class_init), (gst_stream_selector_init),
6487 (gst_stream_selector_dispose), (gst_stream_selector_set_property),
6488 (gst_stream_selector_get_property),
6489 (gst_stream_selector_get_linked_pad),
6490 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
6491 * gst/playback/gststreamselector.h:
6492 Add the active-pad property for playbin to use shortly. Ignore buffers
6493 from any other pad, returning GST_FLOW_NOT_LINKED
6495 2005-11-29 Julien MOUTTE <julien@moutte.net>
6497 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
6498 patch from bug #322704 (Alessandro Decina).
6500 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
6502 * gst-libs/gst/audio/Makefile.am:
6503 folded audiofilter into the audio library
6505 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
6507 * gst/videoscale/gstvideoscale.h:
6508 * gst/videoscale/gstvideoscale.c:
6509 remove unimplemented scale methods
6511 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
6513 * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
6516 2005-11-28 Julien MOUTTE <julien@moutte.net>
6518 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
6519 (gst_ximagesink_setcaps):
6520 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
6521 (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
6522 happens (only visible on ximagesink but bug is in xv too) set_caps was
6523 destroying the internal x[v]image used to memcpy non locally alloced
6524 buffers so that it got renewed on next _chain. The issue is that
6525 _expose will try to put that image as it reffed it in _put.
6526 Using gst_buffer_unref instead of destroy fixes it !
6528 2005-11-28 Edward Hervey <edward@fluendo.com>
6530 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
6531 (try_to_link_1), (queue_filled_cb):
6532 Better use of the queues. Start with a small size queue and only increase
6533 the size of the queues when the other queues are empty.
6535 2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
6537 * gst-libs/gst/video/Makefile.am:
6538 compile in copied-over videofilter into the video library
6539 * gst-libs/gst/video/videosink.h:
6540 rename the header to gstvideosink.h since it's a base GstObject class
6541 * sys/ximage/ximagesink.h:
6542 * sys/xvimage/xvimagesink.h:
6545 2005-11-28 Wim Taymans <wim@fluendo.com>
6547 * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
6548 * gst/playback/gstplaybasebin.h:
6549 Prepare to handle errors betters.
6551 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
6552 Set sinks to PAUSED first before adding and linking them so that
6553 we don't interrupt dataflow.
6555 2005-11-28 Wim Taymans <wim@fluendo.com>
6557 * gst-libs/gst/audio/TODO:
6560 * gst-libs/gst/audio/gstaudiosink.c:
6561 (gst_audioringbuffer_open_device),
6562 (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
6563 (gst_audioringbuffer_release):
6566 * gst-libs/gst/audio/gstbaseaudiosink.c:
6567 (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
6568 (gst_base_audio_sink_change_state):
6569 Slave to the master clock when going to PLAYING and unslave when
6572 * gst-libs/gst/audio/gstringbuffer.c:
6573 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
6574 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
6575 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
6576 (gst_ring_buffer_clear_all), (wait_segment),
6577 (gst_ring_buffer_commit), (gst_ring_buffer_read),
6578 (gst_ring_buffer_advance):
6579 * gst-libs/gst/audio/gstringbuffer.h:
6580 Add some docs and cleanups.
6582 2005-11-28 Julien MOUTTE <julien@moutte.net>
6584 * sys/xvimage/xvimagesink.c:
6585 (gst_xvimagesink_navigation_send_event): Fix navigation events
6586 coordinates translation with pixel aspect ratios.
6588 2005-11-28 Julien MOUTTE <julien@moutte.net>
6590 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
6591 Use calculated video geometry from _setcaps instead of buffer
6592 caps to respect pixel aspect ratio. (fixes #322388)
6594 2005-11-28 Julien MOUTTE <julien@moutte.net>
6596 * docs/libs/tmpl/gstcolorbalance.sgml:
6597 * docs/libs/tmpl/gstmixer.sgml:
6598 * docs/libs/tmpl/gstxoverlay.sgml:
6599 * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
6602 2005-11-28 Julien MOUTTE <julien@moutte.net>
6604 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
6605 Refuse to create an XvImage if we can't find the format.
6607 2005-11-28 Edward Hervey <edward@fluendo.com>
6609 * gst-libs/gst/riff/riff-media.c:
6610 (gst_riff_create_audio_template_caps):
6611 Add ATRAC3 to the list of riff-possible audio caps.
6612 I know we still don't have a plugin for atrac3, but it's saner to output
6613 that than a cryptic mimetype.
6615 2005-11-27 Edward Hervey <edward@fluendo.com>
6617 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
6618 Don't try to create a zero-sized subbuffer.
6620 2005-11-27 Julien MOUTTE <julien@moutte.net>
6622 * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
6623 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
6624 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
6625 (gst_ximagesink_expose): Fixed a tricky race.
6626 * sys/ximage/ximagesink.h:
6627 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
6628 (gst_xvimagesink_expose): Fixed a tricky race.
6629 * sys/xvimage/xvimagesink.h:
6631 2005-11-27 Edward Hervey <edward@fluendo.com>
6633 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
6634 (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
6635 Remove unused properties, and add queues between demuxers and decoders
6636 so that a lot more files can preroll properly.
6638 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
6640 * gst-libs/gst/net/Makefile.am:
6641 * gst-libs/gst/rtp/Makefile.am:
6642 * gst-libs/gst/tag/Makefile.am:
6643 remove silly include
6644 * gst/tags/Makefile.am:
6645 * gst/tags/gsttagediting.c:
6646 * gst/tags/gsttageditingprivate.h:
6647 * gst/tags/tagedit.vcproj:
6648 remove directory, is as good as empty
6650 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
6653 added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
6654 * gst-libs/Makefile.am:
6655 * gst-libs/gst/audio/Makefile.am:
6656 * gst-libs/gst/interfaces/Makefile.am:
6657 * gst-libs/gst/net/Makefile.am:
6658 * gst-libs/gst/riff/Makefile.am:
6659 * gst-libs/gst/rtp/Makefile.am:
6660 * gst-libs/gst/tag/Makefile.am:
6661 * gst-libs/gst/video/Makefile.am:
6664 2005-11-27 Julien MOUTTE <julien@moutte.net>
6666 * docs/libs/tmpl/gstcolorbalance.sgml:
6667 * docs/libs/tmpl/gstmixer.sgml:
6668 * docs/libs/tmpl/gstxoverlay.sgml:
6669 * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
6670 * sys/ximage/ximagesink.h:
6671 * sys/xvimage/xvimagesink.h: More and more documentation.
6673 2005-11-26 Julien MOUTTE <julien@moutte.net>
6675 * docs/libs/gst-plugins-base-libs-docs.sgml:
6676 * docs/libs/gst-plugins-base-libs-sections.txt:
6677 * docs/libs/tmpl/gstcolorbalance.sgml:
6678 * docs/libs/tmpl/gstmixer.sgml:
6679 * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
6682 2005-11-26 Julien MOUTTE <julien@moutte.net>
6684 * docs/plugins/Makefile.am:
6685 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6686 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6687 * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
6689 2005-11-26 Julien MOUTTE <julien@moutte.net>
6691 * docs/plugins/Makefile.am:
6692 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6693 * docs/plugins/gst-plugins-base-plugins-sections.txt:
6694 * docs/plugins/inspect/plugin-adder.xml:
6695 * docs/plugins/inspect/plugin-alsa.xml:
6696 * docs/plugins/inspect/plugin-audioconvert.xml:
6697 * docs/plugins/inspect/plugin-audiorate.xml:
6698 * docs/plugins/inspect/plugin-audioresample.xml:
6699 * docs/plugins/inspect/plugin-audiotestsrc.xml:
6700 * docs/plugins/inspect/plugin-decodebin.xml:
6701 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
6702 * docs/plugins/inspect/plugin-gnomevfs.xml:
6703 * docs/plugins/inspect/plugin-ogg.xml:
6704 * docs/plugins/inspect/plugin-playbin.xml:
6705 * docs/plugins/inspect/plugin-subparse.xml:
6706 * docs/plugins/inspect/plugin-tcp.xml:
6707 * docs/plugins/inspect/plugin-theora.xml:
6708 * docs/plugins/inspect/plugin-typefindfunctions.xml:
6709 * docs/plugins/inspect/plugin-video4linux.xml:
6710 * docs/plugins/inspect/plugin-videorate.xml:
6711 * docs/plugins/inspect/plugin-videoscale.xml:
6712 * docs/plugins/inspect/plugin-videotestsrc.xml:
6713 * docs/plugins/inspect/plugin-volume.xml:
6714 * docs/plugins/inspect/plugin-vorbis.xml:
6715 * docs/plugins/inspect/plugin-ximagesink.xml:
6716 * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
6717 * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
6719 2005-11-26 Edward Hervey <edward@fluendo.com>
6721 * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
6722 Properly return GstFlowReturn from gst_pad_push in chain functions.
6724 2005-11-25 Michael Smith <msmith@fluendo.com>
6726 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
6727 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
6728 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
6729 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
6730 Handle various conditions better when we don't understand a stream.
6731 Removes a heap of CRITICALs on ogg streams containing unknown data.
6733 2005-11-24 Andy Wingo <wingo@pobox.com>
6735 * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
6738 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6740 * configure.ac: back to HEAD
6742 === release 0.9.6 ===
6744 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6747 releasing 0.9.6, "White Eight"
6749 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6751 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
6752 * docs/plugins/inspect/plugin-sine.xml:
6753 remove sinesrc some more
6755 2005-11-23 Wim Taymans <wim@fluendo.com>
6757 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
6758 If we are reading too slowly, jump forward in the ringbuffer
6759 instead of blocking.
6761 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
6763 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
6765 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
6766 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
6767 (gst_videorate_chain):
6768 * gst/videotestsrc/gstvideotestsrc.c:
6769 (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
6770 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
6771 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
6772 (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
6773 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
6774 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
6775 Updates for API changes
6777 2005-11-23 Wim Taymans <wim@fluendo.com>
6779 * gst-libs/gst/audio/gstbaseaudiosink.c:
6780 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
6781 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6782 Fix for calibration API change.
6784 2005-11-23 Michael Smith <msmith@fluendo.com>
6786 * gst-libs/gst/audio/multichannel.c:
6787 (gst_audio_get_channel_positions),
6788 (gst_audio_set_channel_positions),
6789 (gst_audio_set_structure_channel_positions_list),
6790 (gst_audio_fixate_channel_positions):
6791 Use gst_value_array_*() functions on value arrays, not
6794 2005-11-23 Edward Hervey <edward@fluendo.com>
6797 eheh, sinesrc is gone. Replacing sample srcfile by existing one.
6800 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6802 * check/Makefile.am:
6803 * check/elements/videotestsrc.c: (setup_videotestsrc),
6804 (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
6806 add a test for videotestsrc
6808 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6810 * gst/sine/.cvsignore:
6811 * gst/sine/Makefile.am:
6812 * gst/sine/gstsinesrc.c:
6813 * gst/sine/gstsinesrc.h:
6814 * gst/sine/sinesrc.vcproj:
6815 and remove sinesrc from the repository. Closes #321446
6817 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6820 * gst-plugins-base.spec.in:
6821 remove sinesrc from the build
6823 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
6825 * check/Makefile.am:
6826 * check/elements/audiotestsrc.c: (setup_audiotestsrc),
6827 (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
6829 add a test for audiotestsrc, testing all waves. Even seems
6830 leak-free at first glance, nice job Stefan
6832 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
6848 Translation string updates
6850 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
6851 (gst_v4lsrc_set_caps):
6852 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
6853 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
6854 * sys/v4l/v4lsrc_calls.h:
6855 Improve v4lsrc, by making it work again.
6857 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
6859 * ext/libvisual/visual.c: (gst_visual_chain):
6860 Fix the fps calculations.
6862 * gst/ffmpegcolorspace/avcodec.h:
6863 Move structure element for clarity
6865 * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
6866 * gst-libs/gst/interfaces/tunernorm.h:
6867 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
6868 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
6869 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
6870 (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
6871 (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
6872 (gst_v4lmjpegsrc_getcaps):
6873 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
6874 (gst_v4lsrc_set_caps):
6875 * sys/v4l/gstv4lsrc.h:
6876 * sys/v4l/v4l_calls.c: (gst_v4l_open):
6877 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
6878 (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
6879 * sys/v4l/v4lsrc_calls.h:
6880 Fractional framerates...
6882 2005-11-22 Wim Taymans <wim@fluendo.com>
6884 * gst-libs/gst/audio/gstbaseaudiosink.c:
6885 (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
6886 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6887 And we provide a clock by default, of course...
6889 2005-11-22 Wim Taymans <wim@fluendo.com>
6891 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
6892 This clock can be slaved to a master clock now.
6894 * gst-libs/gst/audio/gstbaseaudiosink.c:
6895 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
6896 (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
6897 (gst_base_audio_sink_set_clock),
6898 (gst_base_audio_sink_set_property),
6899 (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
6900 (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
6901 * gst-libs/gst/audio/gstbaseaudiosink.h:
6902 Handle slaving the internal clock to the clock selected in the
6904 Add property to make the basesink not provide a clock.
6906 * gst-libs/gst/rtp/gstbasertpdepayload.c:
6907 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
6908 (gst_base_rtp_depayload_wait):
6909 * gst-libs/gst/rtp/gstbasertpdepayload.h:
6910 We can use the clock in GstElement, no need to store it ourselves.
6912 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
6914 * docs/libs/tmpl/gstaudio.sgml:
6916 * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
6917 (gst_paranoia_endian_get_type):
6918 * ext/theora/theoraenc.c: (gst_border_mode_get_type):
6919 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
6920 * gst/audiotestsrc/gstaudiotestsrc.c:
6921 (gst_audiostestsrc_wave_get_type):
6922 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
6923 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
6924 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
6925 (gst_sync_method_get_type), (gst_unit_type_get_type),
6926 (gst_client_status_get_type), (gst_multifdsink_class_init),
6927 (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
6928 (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
6929 (gst_multifdsink_get_property):
6930 * gst/tcp/gstmultifdsink.h:
6931 * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
6932 * gst/videotestsrc/gstvideotestsrc.c:
6933 (gst_videotestsrc_pattern_get_type):
6934 remove deprecated properties
6935 fix up enums to correctly have short lowercase dashed nicks
6937 2005-11-22 Michael Smith <msmith@fluendo.com>
6939 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
6940 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
6943 2005-11-22 Michael Smith <msmith@fluendo.com>
6945 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
6946 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
6947 Use utility method for scaling clocktime for fractional framerates.
6949 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
6951 * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
6953 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
6954 * ext/theora/theoradec.c: (theora_handle_type_packet):
6955 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
6957 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
6958 * gst-libs/gst/video/video.c: (gst_video_frame_rate):
6959 * gst-libs/gst/video/video.h:
6960 * gst/ffmpegcolorspace/avcodec.h:
6961 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6962 (gst_ffmpeg_caps_to_pixfmt):
6963 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6964 (gst_ffmpegcsp_set_caps):
6965 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
6966 (gst_videorate_setcaps), (gst_videorate_blank_data),
6967 (gst_videorate_chain):
6968 * gst/videotestsrc/gstvideotestsrc.c:
6969 (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
6970 (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
6971 (gst_videotestsrc_event), (gst_videotestsrc_create):
6972 * gst/videotestsrc/gstvideotestsrc.h:
6973 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
6974 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
6975 (gst_ximagesink_get_times), (gst_ximagesink_init):
6976 * sys/ximage/ximagesink.h:
6977 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
6978 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
6979 (gst_xvimagesink_get_times), (gst_xvimagesink_init):
6980 * sys/xvimage/xvimagesink.h:
6981 Convert elements to use fractions for their framerate.
6982 V4L elements to come later tonight.
6984 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
6986 * gst-libs/gst/audio/audio.c:
6987 * gst-libs/gst/audio/audio.h:
6988 remove some deprecated functions
6990 2005-11-22 Andy Wingo <wingo@pobox.com>
6992 * Update for gst_tag_setter API changes.
6994 2005-11-22 Andy Wingo <wingo@pobox.com>
6996 * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
6997 (gst_ogg_demux_perform_seek):
6998 * ext/theora/theoradec.c (theora_dec_sink_event):
6999 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
7002 2005-11-22 Wim Taymans <wim@fluendo.com>
7004 * examples/seeking/seek.c: (main):
7005 Give higher priority to bus signals than the gtk events
7006 to fix a race condition in the segment looping.
7008 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
7010 * ext/theora/Makefile.am:
7011 * ext/vorbis/Makefile.am:
7012 * gst-libs/gst/tag/Makefile.am:
7013 * gst-plugins-base.spec.in:
7014 Rename libgsttagedit to libgsttag (#322117).
7016 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
7018 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
7019 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
7020 Call gst_x_overlay_prepare_xwindow_id() to give applications
7021 a final chance to set their own xwindow id before the video
7022 sink creates its own window.
7024 2005-11-22 Julien MOUTTE <julien@moutte.net>
7026 * sys/xvimage/xvimagesink.c:
7027 (gst_xvimagesink_navigation_send_event): Handle navigation
7028 events correcly with borders if applicable.
7030 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
7032 Patch by: Luca Ognibene
7034 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7035 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
7036 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7037 (gst_ffmpegcsp_caps_remove_format_info):
7038 * gst/ffmpegcolorspace/imgconvert.c:
7039 * gst/ffmpegcolorspace/imgconvert_template.h:
7040 Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
7041 #318353); use gst_structure_has_name().
7043 2005-11-22 Julien MOUTTE <julien@moutte.net>
7045 * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
7046 (gst_ximagesink_class_init): Add debug macros on functions.
7047 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
7048 (gst_xvimagesink_xwindow_draw_borders),
7049 (gst_xvimagesink_xvimage_put),
7050 (gst_xvimagesink_xwindow_update_geometry),
7051 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
7052 (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
7053 (gst_xvimagesink_xcontext_clear),
7054 (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
7055 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
7056 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
7057 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
7058 (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
7059 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
7060 * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
7061 expose while being PAUSED, out of data flow navigation events, etc..
7063 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
7065 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
7066 * gst-libs/gst/audio/audio.h:
7067 fix prototype - wondering why the test worked regardless
7069 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
7071 * check/Makefile.am:
7072 * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
7073 * gst-libs/gst/audio/audio.h:
7074 add a method that returns a proper GstClockTime
7076 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
7078 * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
7079 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
7080 * gst-libs/gst/interfaces/xoverlay.h:
7081 Remove everything having to do with the desired size; add
7082 gst_x_overlay_prepare_xwindow_id() function; remove the
7083 'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
7084 post a message on the bus instead (#321816).
7086 * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
7087 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
7088 (gst_xvimagesink_xoverlay_init):
7089 Remove desired size stuff (#321816).
7091 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
7093 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
7094 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
7095 (mpeg_video_type_find), (mpeg_video_stream_type_find):
7096 Terminate vararg functions with NULL instead of 0 to
7099 2005-11-21 Andy Wingo <wingo@pobox.com>
7101 patch by: Sebastien Cote <sebas642@yahoo.ca>
7103 * gst-libs/gst/rtp/gstrtpbuffer.h:
7104 * gst-libs/gst/rtp/gstrtpbuffer.c
7105 (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
7107 2005-11-21 Andy Wingo <wingo@pobox.com>
7109 * gst/playback/gstplaybin.c (gen_audio_element)
7110 (gen_video_element): Use the new MISSING_PLUGIN core error
7111 category. Closes #320060.
7113 * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event):
7114 * gst/videorate/gstvideorate.c (gst_videorate_event):
7115 * ext/theora/theoradec.c (theora_dec_sink_event):
7116 * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
7119 * gst/subparse/gstsubparse.c (gst_subparse_src_event):
7120 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
7121 stream lock changes.
7123 2005-11-21 Wim Taymans <wim@fluendo.com>
7125 * gst-libs/gst/audio/gstbaseaudiosink.c:
7126 (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
7127 (gst_base_audio_sink_provide_clock),
7128 (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
7129 (gst_base_audio_sink_change_state):
7130 * gst/audioresample/gstaudioresample.c:
7133 2005-11-21 Andy Wingo <wingo@pobox.com>
7136 * *.c: Ran scripts/update-macros. Oh yes.
7138 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
7140 * sys/ximage/Makefile.am:
7141 * sys/ximage/ximage.c:
7142 Rename ximage plugin to ximagesink (#321426) (Don't forget to
7143 remove your old libgstximage.* manually if necessary).
7145 2005-11-21 Michael Smith <msmith@fluendo.com>
7147 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
7148 Minimal fix for bug #320200: set the min/max bitrate in the correct
7149 units. A better fix would be to upgrade to the RATEMANAGE2
7150 interface, rather than using the deprecated interface used here, but
7151 that would require an update in our libvorbis dependency (to 1.1),
7152 which is probably undesirable.
7154 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
7156 * ext/libvisual/visual.c: (get_buffer):
7157 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7158 (gst_base_audio_src_fixate):
7159 * gst/audioconvert/gstaudioconvert.c:
7160 (gst_audio_convert_fixate_caps):
7161 * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
7162 * gst/audiotestsrc/gstaudiotestsrc.c:
7163 (gst_audiotestsrc_src_fixate):
7164 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
7165 * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
7166 * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
7167 * gst/videotestsrc/gstvideotestsrc.c:
7168 (gst_videotestsrc_src_fixate):
7169 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
7170 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
7171 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
7175 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
7177 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
7178 (gst_riff_create_iavs_caps):
7179 * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
7180 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
7181 (gst_riff_parse_info):
7182 * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
7183 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
7184 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
7185 Fixes for GST_FOURCC_FORMAT API change.
7187 2005-11-21 Andy Wingo <wingo@pobox.com>
7189 patch by: Alessandro Dessina <alessandro nnva org>
7191 * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
7192 * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
7193 (gst_ogg_parse_chain):
7194 * ext/theora/theoraenc.c (theora_set_header_on_caps):
7195 * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
7196 * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
7197 gst_value_list calls on arrays. Fixes #321962.
7199 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
7201 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
7202 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
7203 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
7204 * gst/adder/gstadder.c: (gst_adder_init),
7205 (gst_adder_request_new_pad), (gst_adder_collected),
7206 (gst_adder_change_state):
7207 Update for gst_collectpads_foo() to gst_collect_pads_foo()
7210 2005-11-21 Michael Smith <msmith@fluendo.com>
7212 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
7213 (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
7214 Properly handle pad_push return values.
7216 2005-11-20 Jan Schmidt <thaytan@mad.scientist.com>
7218 * gst-libs/gst/tag/Makefile.am:
7219 * gst-libs/gst/tag/gstvorbistag.c:
7220 (gst_tag_list_to_vorbiscomment_buffer):
7221 Remove obsolete vorbistag element and debug category.
7223 * gst/playback/gstplaybasebin.c: (check_queue):
7224 Don't divide by 0 when queue-threshold is 0.
7226 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
7227 Don't modify an existing pixel-aspect-ratio if we fail to read
7230 2005-11-20 Wim Taymans <wim@fluendo.com>
7232 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
7233 (gst_vorbisenc_push_packet):
7234 GST_PAD_IS_USABLE is gone, use the return value of
7235 the push or pad_alloc_buffer instead.
7237 2005-11-18 Julien MOUTTE <julien@moutte.net>
7239 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
7240 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
7241 (gst_ximagesink_ximage_destroy),
7242 (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
7243 (gst_ximagesink_xwindow_new),
7244 (gst_ximagesink_xwindow_update_geometry),
7245 (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
7246 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
7247 (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
7248 (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
7249 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
7250 (gst_ximagesink_navigation_send_event),
7251 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
7252 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
7253 (gst_ximagesink_finalize), (gst_ximagesink_init),
7254 (gst_ximagesink_class_init):
7255 * sys/ximage/ximagesink.h: Refactoring of ximagesink.
7256 This new version brings correct software scaling, non flickering
7257 window while resizing, pixel aspect ratio handling, usage of
7258 hardware buffer pools, out of data flow event thread for
7259 navigation and handling of expose events even when being PAUSED,
7260 a new property to keep video aspect ratio when resizing, etc...
7262 2005-11-18 Julien MOUTTE <julien@moutte.net>
7264 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
7265 (gst_videoscale_fixate_caps): Introduce back caps fixate with
7268 2005-11-18 <bilboed@dvdsrc.fluendo.com>
7270 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
7271 Unsetting IS_SINK flag from the fakesink, so decodebin
7272 never behaves as a sink.
7274 2005-11-17 Wim Taymans <wim@fluendo.com>
7276 * gst-libs/gst/audio/gstbaseaudiosrc.c:
7277 (gst_base_audio_src_change_state):
7278 Fix the audiosrc base class again, we did not unflush.
7280 2005-11-17 Julien MOUTTE <julien@moutte.net>
7282 * examples/seeking/seek.c: (make_dv_pipeline),
7283 (make_vorbis_theora_pipeline), (make_avi_pipeline),
7284 (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
7285 to ogg/vorbis/theora pipeline.
7287 2005-11-17 Wim Taymans <wim@fluendo.com>
7289 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
7290 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
7291 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
7292 Fix EOS on multiple streams.
7295 2005-11-16 Wim Taymans <wim@fluendo.com>
7297 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
7298 (gst_ogg_demux_perform_seek):
7299 Segment done must include stream time.
7301 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
7302 (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
7303 (gst_ogg_mux_change_state):
7304 Fix ogg muxer again.
7306 2005-11-16 Wim Taymans <wim@fluendo.com>
7308 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
7311 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
7313 * ext/libvisual/visual.c: (gst_visual_init):
7314 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
7315 * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
7316 (gst_ogg_parse_chain):
7317 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
7318 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
7319 * ext/theora/theoradec.c: (gst_theora_dec_init):
7320 * ext/theora/theoraenc.c: (gst_theora_enc_init):
7321 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
7322 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
7323 * gst/adder/gstadder.c: (gst_adder_class_init),
7324 (gst_adder_dispose):
7325 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
7326 * gst/subparse/gstsubparse.c: (gst_subparse_init):
7327 * gst/videorate/gstvideorate.c: (gst_videorate_init):
7328 Fix a whole set of pad template leaks
7330 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
7332 * check/generic/states.c: (GST_START_TEST):
7333 fix the test so that it only checks for elements that are part of
7336 2005-11-16 Michael Smith <msmith@fluendo.com>
7338 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
7339 (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
7340 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7341 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
7342 (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
7343 (gst_ogg_mux_change_state):
7344 Fix leaking collectpads.
7346 2005-11-16 Edward Hervey <edward@fluendo.com>
7348 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
7349 (gst_videorate_event), (gst_videorate_chain):
7350 Handle segment seeks
7352 2005-11-16 Wim Taymans <wim@fluendo.com>
7354 * gst-libs/gst/audio/gstbaseaudiosink.c:
7355 (gst_base_audio_sink_provide_clock),
7356 (gst_base_audio_sink_change_state):
7357 Set ringbuffer to non-flushing when going to PAUSED, set to
7358 flushing again when going to READY.
7360 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
7361 (gst_ring_buffer_stop):
7362 Start in flushing mode by default.
7363 Don't set flushing in the _stop method, let the app call
7366 2005-11-16 Julien MOUTTE <julien@moutte.net>
7368 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
7369 * gst-libs/gst/video/videosink.h: Add helper function needed
7372 2005-11-16 Tim-Philipp Müller <tim at centricular dot net>
7374 * gst/videoscale/gstvideoscale.c:
7375 (gst_videoscale_handle_src_event):
7376 Don't leak reference to pad parent.
7378 2005-11-16 Wim Taymans <wim@fluendo.com>
7380 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
7381 Set ringbuffer to flushing when stopping so that we don't
7382 block on wait_segment anymore and livelock.
7384 2005-11-16 Wim Taymans <wim@fluendo.com>
7386 * examples/seeking/seek.c: (send_event), (do_seek),
7387 (loop_toggle_cb), (segment_done), (main):
7388 Added looping checkbox.
7390 2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
7392 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
7393 (gst_ogg_demux_init):
7394 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
7395 (gst_vorbis_dec_init):
7396 revert unrefs, they don't pass make check
7398 2005-11-15 Johan Dahlin <johan@gnome.org>
7400 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
7401 (gst_ogg_demux_init), (gst_ogg_demux_finalize):
7402 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
7403 (gst_vorbis_dec_init):
7404 Fix pad template leaks.
7406 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
7408 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
7409 Make state change function thread safe.
7411 2005-11-15 Edward Hervey <edward@fluendo.com>
7413 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
7414 (gst_ogg_demux_class_init):
7415 Implement GstElement::send_event, so we can send seek events
7418 2005-11-14 Julien MOUTTE <julien@moutte.net>
7420 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
7421 Discovered how to take away flickering while resizing the
7422 window. Please don't put that in ximagesink, refactoring in
7425 2005-11-14 Michael Smith <msmith@fluendo.com>
7427 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
7428 (gst_multifdsink_render):
7429 Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
7431 2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
7433 * gst/playback/gstplaybin.c: (gen_audio_element):
7434 Use autoaudiosink, it tends to be more widely available than
7437 2005-11-14 Andy Wingo <wingo@pobox.com>
7439 * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
7440 as well if it is available. Fixes #316442.
7442 2005-11-14 Michael Smith <msmith@fluendo.com>
7444 * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
7445 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
7446 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7447 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
7448 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
7449 (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
7450 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
7451 (gst_vorbisenc_change_state):
7452 Fix a small memory leak in vorbisenc.
7453 Fix large memory leaks in oggmux, also fix lots of state change
7456 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
7458 * gst/videotestsrc/gstvideotestsrc.c:
7459 (gst_videotestsrc_class_init), (gst_videotestsrc_init),
7460 (gst_videotestsrc_src_fixate):
7461 move fixation to a fixate function
7462 remove negotiate function, basesrc's is good enough
7463 fixes a bug for check when using the element alone
7465 2005-11-13 Edward Hervey <edward@fluendo.com>
7467 * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
7468 (key_toggle_cb), (main):
7469 Added checkboxes for adding/removing the accurate and key_unit seek
7472 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
7474 * configure.ac: back to HEAD
7476 === release 0.9.5 ===
7478 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
7481 releasing 0.9.5, "No No Kia"
7483 2005-11-11 Edward Hervey <edward@fluendo.com>
7485 * examples/seeking/seek.c: (make_parselaunch_pipeline):
7486 Added parse-launch syntax seeking mode for the seeking example.
7487 This should help stress-test even more cases.
7488 Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
7490 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
7492 * sys/xvimage/xvimagesink.c:
7493 (gst_xvimagesink_navigation_send_event):
7494 Check whether peer pad exists before sending navigation events
7497 2005-11-11 Michael Smith <msmith@fluendo.com>
7499 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
7500 (gst_vorbisenc_buffer_from_packet):
7501 * ext/vorbis/vorbisenc.h:
7502 Set duration on encoded buffers. This allows oggmux's
7503 max_page_delay parameter to actually work.
7505 2005-11-11 Tim-Philipp Müller <tim at centricular dot net>
7507 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7508 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
7509 (gst_ffmpegcsp_avpicture_fill):
7510 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7511 (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
7512 Make palettes work again (see #132341). Use our own macros
7515 2005-11-10 Andy Wingo <wingo@pobox.com>
7517 * gst/playback/gstplaybasebin.c (prepare_output): Fix format
7520 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
7522 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7523 (gst_ffmpegcsp_transform_caps):
7524 Prefer passthrough in transform_caps
7526 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
7528 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
7529 check for ALSA errors properly, instead of relying on ALSA's
7530 error strings to serve to the user.
7532 2005-11-10 Wim Taymans <wim@fluendo.com>
7534 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
7535 (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
7536 (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
7537 Modernise the seek code.
7539 2005-11-10 Michael Smith <msmith@fluendo.com>
7541 * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
7542 (setup_substreams), (set_active_source):
7543 Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
7544 trying to go to NULL if we failed to read a file.
7546 2005-11-10 Wim Taymans <wim@fluendo.com>
7548 * gst/audiotestsrc/gstaudiotestsrc.c:
7549 (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
7550 (gst_audiotestsrc_create):
7551 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7552 (gst_sinesrc_get_times), (gst_sinesrc_create):
7553 * gst/videotestsrc/gstvideotestsrc.c:
7554 (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
7555 (gst_videotestsrc_create):
7556 The base class can now sync for us.
7558 2005-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
7560 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
7561 a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
7562 name=source autoprobe=false autoprobe-fps=false copy-mode=1
7563 device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
7564 format=(fourcc)I420" ! xvimagesink
7566 2005-11-10 Tim-Philipp Müller <tim at centricular dot net>
7568 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7569 (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
7570 (gst_sinesrc_newsegment):
7571 Send newsegment event in TIME format, set duration if
7572 num-buffers is set, fix duration querying.
7574 2005-11-10 Michael Smith <msmith@fluendo.com>
7576 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
7577 (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
7578 (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
7579 (gst_ogg_mux_collected):
7580 Fix EOS handling, partially. Now forwarding an EOS event once we have
7581 EOS on all pads works correctly. However, we still don't properly set
7582 EOS on the actual ogg stream pages.
7584 2005-11-09 Tim-Philipp Müller <tim at centricular dot net>
7586 * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
7587 Set elements to NULL state before disposing of them.
7589 2005-11-08 Sebastien Cote <sebas642 at yahoo dot ca>
7591 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
7593 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7594 (gst_base_rtp_depayload_init),
7595 (gst_base_rtp_depayload_set_gst_timestamp):
7596 * gst-libs/gst/rtp/gstbasertpdepayload.h:
7597 We need to send a newsegment event for each instance, not
7598 just for the first instance of this class (get rid of
7599 static variable in function). (#321011).
7601 2005-11-08 Michael Smith <msmith@fluendo.com>
7603 * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
7604 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
7605 (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
7606 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
7607 Forward port rewrite of muxing strategy to 0.9 version of oggmux.
7608 This makes us mux things correctly according to the ogg muxing
7609 rules. Still not handling EOS correctly right now, though.
7611 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
7613 * gst/audioconvert/gstaudioconvert.c:
7616 2005-11-08 Tim-Philipp Müller <tim at centricular dot net>
7618 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
7619 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
7620 Initialise segment_stop to GST_CLOCK_TIME_NONE when
7621 creating a new chain; should fix live streaming. Also
7622 add more debug output and fix a typo.
7624 2005-11-08 Brian Cameron <brian dot cameron at sun dot com>
7626 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
7628 * gst/volume/gstvolume.c: (volume_set_caps):
7629 Fix compilation on Solaris with Forte. (#320923)
7631 2005-11-08 Wim Taymans <wim@fluendo.com>
7633 * gst-libs/gst/audio/gstbaseaudiosink.c:
7634 (gst_base_audio_sink_render):
7635 No need to do a typecheck.
7637 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
7639 * ext/alsa/gstalsa.h:
7640 We register a debug category, so let's use it.
7642 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
7644 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7645 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
7646 Fixed a small problem.
7648 2005-11-04 Wim Taymans <wim@fluendo.com>
7650 * examples/seeking/Makefile.am:
7651 * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
7652 (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
7653 (make_playerbin_pipeline), (format_value), (update_scale),
7654 (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
7655 (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
7656 (print_usage), (main):
7657 Added app for playback speed testing.
7659 * examples/seeking/seek.c: (dynamic_link),
7660 (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
7661 (make_mpeg_pipeline), (do_seek), (set_update_scale),
7662 (message_received), (main):
7663 Updated seek example.
7665 2005-11-04 Zeeshan Ali <zeenix@gmail.com>
7667 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7668 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
7669 (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
7670 (gst_base_rtp_depayload_set_clock):
7671 * gst-libs/gst/rtp/gstbasertpdepayload.h:
7672 Don't sleep on the bench (system clock) when you have a nice
7673 comfortable bed (Gstreamer clock) to sleep on.
7675 2005-11-03 Wim Taymans <wim@fluendo.com>
7677 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
7678 (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
7679 (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
7680 Handle the case where a pad_block failed.
7682 2005-11-02 Sebastien Cote <sebas642@yahoo.ca>
7684 reviewed by: Zeeshan Ali <zeenix@gmail.com>
7686 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7687 (gst_base_rtp_depayload_add_to_queue),
7688 (gst_base_rtp_depayload_push),
7689 (gst_base_rtp_depayload_set_gst_timestamp),
7690 (gst_base_rtp_depayload_queue_release):
7691 Fixes some bugs in the depayloader's queuing/de-queueing code.
7693 2005-10-31 Michael Smith <msmith@fluendo.com>
7695 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
7696 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
7697 (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
7698 Patch from Alessandro Decina <alessandro@nnva.org>.
7699 Make oggdemux only find the final time in a chain, not per-pad,
7700 since the per-pad information can be very expensive to locate, and
7701 it isn't used anywhere. This makes reading a file containing
7702 OggSkeleton reasonably fast.
7703 Also, make chain finding work when there are logical bitstreams that
7704 can't be decoded. Fixes #319110.
7706 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
7708 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7709 (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
7710 (gst_base_rtp_depayload_chain),
7711 (gst_base_rtp_depayload_add_to_queue),
7712 (gst_base_rtp_depayload_push),
7713 (gst_base_rtp_depayload_set_gst_timestamp),
7714 (gst_base_rtp_depayload_queue_release),
7715 (gst_base_rtp_depayload_start_thread),
7716 (gst_base_rtp_depayload_set_property),
7717 (gst_base_rtp_depayload_get_property):
7718 * gst-libs/gst/rtp/gstbasertpdepayload.h:
7719 Some random fixes, to fullfill the desires of thomas.
7721 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
7723 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7724 (gst_base_rtp_depayload_add_to_queue),
7725 (gst_base_rtp_depayload_push):
7726 Fixed the queueing algorithm.
7728 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
7730 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7731 (gst_base_rtp_depayload_push):
7734 2005-10-31 Wim Taymans <wim@fluendo.com>
7736 * gst-libs/gst/audio/gstringbuffer.h:
7739 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7740 (gst_ffmpeg_caps_to_pixfmt):
7741 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7742 (gst_ffmpegcsp_set_caps):
7744 Handle missing required caps fields better.
7746 2005-10-31 Wim Taymans <wim@fluendo.com>
7748 * gst-libs/gst/audio/gstbaseaudiosink.c:
7749 (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
7750 (gst_base_audio_sink_render):
7751 * gst-libs/gst/audio/gstringbuffer.c:
7752 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
7753 (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
7754 (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
7755 (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
7756 (gst_ring_buffer_read):
7757 * gst-libs/gst/audio/gstringbuffer.h:
7758 Add flushing mode to the ringbuffer so that it in all cases does
7759 not try to handle more audio. This makes sure it does not try to
7760 block anymore when flushing and fixes a livelock.
7762 2005-10-29 Tim-Philipp Müller <tim at centricular dot net>
7764 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
7765 (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
7766 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
7767 Explicitly check for -1 values before doing a conversion
7768 and always map them to -1. (#315545)
7770 2005-10-28 Thomas Vander Stichele <thomas at apestaart dot org>
7772 * gst/playback/gstplaybin.c: (gen_video_element):
7773 first try autovideosink, then xvimagesink, then error out
7775 add translatable file
7792 2005-10-27 Philippe Khalaf <burger at speedy dot org>
7794 * gst-libs/gst/rtp/gstbasedepayload.c:
7795 * gst-libs/gst/rtp/gstbasedepayload.h:
7798 2005-10-27 Tim-Philipp Müller <tim at centricular dot net>
7800 * gst/playback/.cvsignore:
7801 * gst/playback/decodetest.c:
7802 * gst/playback/test3.c:
7803 Port these two tests as well.
7805 2005-10-27 Wim Taymans <wim@fluendo.com>
7807 * ext/theora/theoradec.c: (theora_dec_src_query),
7808 (theora_dec_sink_event):
7809 * ext/theora/theoraenc.c: (theora_enc_sink_event),
7810 (theora_enc_change_state):
7811 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
7812 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
7813 Take proper locks when handling events.
7815 2005-10-27 Wim Taymans <wim@fluendo.com>
7817 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
7818 (gst_adder_change_state):
7819 Fix timestamps and fix deadlock when stopping the collectpads.
7821 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
7823 * gst-libs/gst/rtp/gstrtpbuffer.h:
7824 Declaring the payload types as strings too so that they can be used
7825 in the padtemplate inialization.
7827 2005-10-26 Andre Magalhaes <andrunko@gmail.com>
7829 reviewed by: Zeeshan Ali <zeenix@gmail.com>
7831 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7832 (gst_base_rtp_depayload_class_init):
7833 Fixes a small but nasty bug. The derived elements no longer segfaults
7836 2005-10-26 Michael Smith <msmith@fluendo.com>
7838 * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
7839 When clearing an audioconvert context, set tmpbufsize to zero, so
7840 we'll allocate it again later if required.
7841 This fixes audioconvert re-negotiating formats, which previously
7842 segfaulted with a NULL destination buffer.
7844 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
7846 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7847 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
7848 (gst_base_rtp_depayload_set_gst_timestamp),
7849 (gst_base_rtp_depayload_queue_release):
7850 Fixed a smalll memleak.
7852 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
7853 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7854 (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
7855 (gst_base_rtp_depayload_finalize),
7856 (gst_base_rtp_depayload_setcaps),
7857 (gst_base_rtp_depayload_add_to_queue),
7858 (gst_base_rtp_depayload_push),
7859 (gst_base_rtp_depayload_set_gst_timestamp),
7860 (gst_base_rtp_depayload_queue_release),
7861 (gst_base_rtp_depayload_thread),
7862 (gst_base_rtp_depayload_change_state):
7863 * gst-libs/gst/rtp/gstbasertpdepayload.h:
7864 Changed the C++ comments to C comments
7866 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
7868 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
7869 * gst/tcp/gsttcpclientsrc.h:
7870 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
7871 * gst/tcp/gsttcpserversrc.h:
7872 Remove unused 'curoffset' structure member.
7874 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
7876 * gst-libs/gst/rtp/gstbasertpdepayload.c:
7877 (gst_base_rtp_depayload_base_init),
7878 (gst_base_rtp_depayload_finalize):
7879 * gst-libs/gst/rtp/gstbasertpdepayload.h:
7880 * gst-libs/gst/rtp/gstbasertppayload.h:
7881 The pad-template on the sinkpad should be set by the derived classes.
7882 Also added some useful macros.
7884 2005-10-24 Wim Taymans <wim@fluendo.com>
7886 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
7887 Correctly flush decoder samples even if we could not
7888 copy them to an output buffer. Fixes #319618.
7890 2005-10-24 Julien MOUTTE <julien@moutte.net>
7892 * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
7893 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
7894 the caps against our xcontext caps.
7896 2005-10-24 Wim Taymans <wim@fluendo.com>
7898 * gst-libs/gst/audio/gstbaseaudiosink.c:
7899 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
7901 Use sync property from baseclass to disable sync.
7903 2005-10-24 Wim Taymans <wim@fluendo.com>
7905 * gst-libs/gst/audio/gstbaseaudiosink.c:
7906 (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
7907 Buffers with no timestamps get aligned with previous buffers or
7908 on underrun, played ASAP.
7910 2005-10-24 Julien MOUTTE <julien@moutte.net>
7912 * gst-libs/gst/video/video.h:
7913 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7914 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
7915 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
7916 here comes my change on caps for framerate and geometry range.
7917 We are now accepting 1 to MAXINT for width and height, and from
7918 0.0 to MAXDOUBLE for framerate. That allows duration less png frames
7919 to be blended correctly in videomixer.
7921 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
7926 === release 0.9.4 ===
7928 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
7933 releasing 0.9.4, "Velociraptor"
7935 2005-10-23 Thomas Vander Stichele <thomas at apestaart dot org>
7937 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
7941 2005-10-21 Wim Taymans <wim@fluendo.com>
7943 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
7944 (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
7945 (pad_blocked), (close_pad_link), (new_pad):
7946 Don't try to remove elements twice.
7948 2005-10-21 Wim Taymans <wim@fluendo.com>
7950 * ext/theora/theoradec.c: (theora_dec_src_query),
7951 (theora_dec_sink_event):
7952 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7953 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
7954 (vorbis_handle_data_packet):
7955 * ext/vorbis/vorbisdec.h:
7958 * gst-libs/gst/audio/gstbaseaudiosink.c:
7959 (gst_base_audio_sink_render):
7960 Don't try to sync on buffers without a timestamp.
7962 2005-10-21 Wim Taymans <wim@fluendo.com>
7964 * ext/theora/theoradec.c: (theora_dec_src_query),
7965 (theora_dec_sink_event):
7966 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7967 (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
7968 (vorbis_handle_data_packet):
7969 * ext/vorbis/vorbisdec.h:
7972 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
7974 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
7975 (gst_vorbisenc_src_query):
7976 Implement position and duration queries.
7978 * gst/playback/test3.c: (update_scale), (main):
7979 Fix for async state changes and print nicer output.
7981 2005-10-20 Wim Taymans <wim@fluendo.com>
7983 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
7984 (dump_element_stats), (main):
7985 * gst/playback/test6.c: (main):
7988 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
7990 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
7991 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
7992 Don't use functions for position queries when handling
7995 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
7997 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
7998 (vorbis_handle_data_packet), (vorbis_dec_chain),
7999 (vorbis_dec_change_state):
8000 * ext/vorbis/vorbisdec.h:
8001 Vorbis streams can be embedded in other container formats
8002 than ogg, container formats where the demuxer might set
8003 timestamps on encoded vorbis buffers instead of those silly
8004 granulepos thingies. In short: make vorbisdec handle
8005 timestamps on incoming buffers as well.
8007 2005-10-20 Wim Taymans <wim@fluendo.com>
8009 * gst/playback/gstplaybasebin.c: (group_destroy),
8010 (gst_play_base_bin_change_state):
8012 Handle case where playbasebin is now ASYNC because
8015 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
8017 * gst/audioconvert/Makefile.am:
8018 * gst/audioconvert/bufferframesconvert.c:
8019 * gst/audioconvert/plugin.c: (plugin_init):
8020 * gst/audioconvert/plugin.h:
8021 And bye bye buffer-frames-convert
8023 2005-10-19 Wim Taymans <wim@fluendo.com>
8025 * check/elements/audioconvert.c:
8026 * docs/libs/tmpl/gstaudio.sgml:
8027 * docs/libs/tmpl/gstcolorbalance.sgml:
8028 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8029 (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
8030 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
8031 * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
8032 * gst-libs/gst/audio/audio.h:
8033 * gst/audioconvert/audioconvert.h:
8034 * gst/audioconvert/gstaudioconvert.c:
8035 (gst_audio_convert_parse_caps):
8036 * gst/volume/gstvolume.c:
8037 Bye bye buffer-frames.
8039 2005-10-19 Wim Taymans <wim@fluendo.com>
8041 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
8042 (query_positions_elems), (query_positions_pads), (update_scale),
8043 (do_seek), (set_update_scale), (message_received), (main):
8044 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
8045 (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
8046 (gst_ogg_demux_loop):
8047 * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
8048 * ext/theora/theoradec.c: (theora_dec_src_query),
8049 (theora_dec_sink_event):
8050 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
8051 (vorbis_dec_sink_event), (vorbis_handle_data_packet):
8052 * gst/adder/gstadder.c: (gst_adder_query):
8053 * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
8054 * gst/playback/test3.c: (update_scale):
8055 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
8056 (dump_element_stats), (main):
8057 * gst/playback/test6.c: (main):
8058 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
8061 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
8063 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
8064 (xml_check_first_element), (xml_type_find), (smil_type_find),
8066 Add typefinding for SMIL and for generic XML. Based on patch by
8067 Akos Maroy (#308663).
8069 2005-10-18 Wim Taymans <wim@fluendo.com>
8071 * gst/playback/Makefile.am:
8072 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
8073 (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
8074 (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
8075 (try_to_link_1), (new_pad), (no_more_pads), (type_found),
8076 (gst_decode_bin_change_state):
8077 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8078 (gst_play_bin_send_event_to_sink):
8079 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
8080 (dump_element_stats), (main):
8081 * gst/playback/test6.c: (main):
8082 Make playbin async, it'll commit state to paused when all streams
8085 Added test6.c to show async behaviour.
8087 2005-10-18 Wim Taymans <wim@fluendo.com>
8089 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
8090 (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
8091 Fix for segment-start/stop API change.
8093 2005-10-18 Wim Taymans <wim@fluendo.com>
8095 * check/Makefile.am:
8096 * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
8098 Add future test for clock selection.
8100 2005-10-18 Wim Taymans <wim@fluendo.com>
8102 * ext/alsa/gstalsasink.c: (gst_alsasink_init),
8103 (gst_alsasink_close):
8106 * gst-libs/gst/audio/gstringbuffer.c:
8107 (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
8108 (gst_ring_buffer_acquire), (gst_ring_buffer_release),
8109 (gst_ring_buffer_start), (gst_ring_buffer_pause),
8110 (gst_ring_buffer_stop), (gst_ring_buffer_commit),
8111 (gst_ring_buffer_read):
8114 2005-10-17 Stefan Kost <ensonic@users.sf.net>
8116 * gst/audiotestsrc/Makefile.am:
8117 * gst/sine/Makefile.am:
8118 * gst/volume/Makefile.am:
8119 fix broken build of controllerized plugins
8121 2005-10-17 Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
8123 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
8125 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8126 (gst_riff_create_video_template_caps):
8127 Add support for Indeo-3 (IV32).
8129 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
8134 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
8136 * gst-libs/gst/video/video.c: (gst_video_get_size):
8137 * gst/audiotestsrc/gstaudiotestsrc.c:
8140 2005-10-17 Andy Wingo <wingo@pobox.com>
8142 * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
8143 with the collectpads change.
8144 (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
8146 * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
8148 * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
8150 * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
8151 alloc_buffer flow return to callers.
8152 (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
8153 change. Fix some memleaks in theoraenc.
8155 * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
8156 in strange circumstance.
8158 2005-10-17 Julien MOUTTE <julien@moutte.net>
8160 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8161 (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
8162 from caps, let's use the caps...
8164 2005-10-17 Thomas Vander Stichele <thomas at apestaart dot org>
8167 put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
8169 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
8171 * gst-libs/gst/interfaces/Makefile.am:
8174 2005-10-16 Andy Wingo <wingo@pobox.com>
8176 * gst/playback/gstdecodebin.c
8177 (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
8179 (try_to_link_1): Increase kraziness level.
8181 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
8184 restructure like the core one
8185 * gst-libs/gst/audio/Makefile.am:
8186 * gst-libs/gst/interfaces/Makefile.am:
8187 * gst-libs/gst/net/Makefile.am:
8188 * gst-libs/gst/riff/Makefile.am:
8189 * gst-libs/gst/rtp/Makefile.am:
8190 * gst-libs/gst/tag/Makefile.am:
8191 * gst-libs/gst/video/Makefile.am:
8192 use correct linker flags, now the libs are properly versioned
8193 * check/elements/audioconvert.c: (verify_convert):
8194 * ext/alsa/gstalsaplugin.c:
8195 * ext/cdparanoia/gstcdparanoia.c:
8196 * ext/gnomevfs/gstgnomevfs.c:
8197 * ext/libvisual/visual.c:
8199 * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
8200 * ext/theora/theora.c:
8201 * ext/vorbis/vorbis.c:
8202 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
8203 * gst-libs/gst/tag/gsttagediting.c:
8204 * gst-libs/gst/video/video.c:
8205 * gst/adder/gstadder.c:
8206 * gst/audioconvert/plugin.c:
8207 * gst/audiorate/gstaudiorate.c:
8208 * gst/audioresample/gstaudioresample.c:
8209 * gst/audioresample/resample_ref.c: (resample_scale_ref):
8210 * gst/audioscale/gstaudioscale.c:
8211 * gst/audioscale/resample.c:
8212 * gst/audiotestsrc/gstaudiotestsrc.c:
8213 * gst/ffmpegcolorspace/gstffmpeg.c:
8214 * gst/playback/gstdecodebin.c: (close_pad_link):
8215 * gst/playback/gstplaybin.c: (gen_video_element),
8216 (gen_audio_element):
8217 * gst/sine/gstsinesrc.c:
8218 * gst/subparse/gstsubparse.c:
8219 * gst/tags/gsttagediting.c:
8220 * gst/tcp/gsttcpplugin.c:
8221 * gst/typefind/gsttypefindfunctions.c:
8222 * gst/videorate/gstvideorate.c:
8223 * gst/videoscale/gstvideoscale.c:
8224 * gst/videotestsrc/gstvideotestsrc.c:
8225 * gst/volume/gstvolume.c:
8227 * sys/ximage/ximage.c:
8228 * sys/xvimage/xvimagesink.c:
8231 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
8233 * ext/vorbis/vorbisenc.c:
8234 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
8235 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
8236 (gst_tag_to_vorbis_comments):
8237 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
8239 2005-10-13 Stefan Kost <ensonic@users.sf.net>
8241 * examples/stats/mp2ogg.c:
8242 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8245 2005-10-13 Michael Smith <msmith@fluendo.com>
8247 * ext/ogg/gstoggmux.c:
8248 Use magic glib macros to define constants as 64 bit, to ensure
8249 appropriate vararg passing.
8251 2005-10-13 Michael Smith <msmith@fluendo.com>
8253 * ext/ogg/gstoggmux.c:
8254 * gst/audioconvert/audioconvert.c: (float):
8255 Don't use LL suffix, as it's not portable, and neither of these
8256 uses required it anyway.
8258 2005-10-12 Stefan Kost <ensonic@users.sf.net>
8260 * examples/indexing/indexmpeg.c: (main):
8261 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
8262 (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
8263 (cdparanoia_convert), (cdparanoia_query):
8264 * ext/cdparanoia/gstcdparanoia.h:
8265 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
8266 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
8267 (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
8268 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
8269 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
8270 * gst/playback/gststreamselector.c: (gst_stream_selector_init):
8271 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
8272 (gst_multifdsink_render), (gst_multifdsink_start),
8273 (gst_multifdsink_stop):
8274 * gst/tcp/gstmultifdsink.h:
8275 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
8276 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
8277 (gst_tcpclientsink_stop):
8278 * gst/tcp/gsttcpclientsink.h:
8279 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
8280 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
8281 (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
8282 * gst/tcp/gsttcpclientsrc.h:
8283 * gst/tcp/gsttcpserversink.h:
8284 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
8285 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
8286 (gst_tcpserversrc_stop):
8287 * gst/tcp/gsttcpserversrc.h:
8288 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
8289 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
8290 * sys/ximage/ximagesink.c: (gst_ximagesink_init):
8291 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
8292 moved bitshift from macro to enum definition
8294 2005-10-12 Wim Taymans <wim@fluendo.com>
8296 * examples/seeking/Makefile.am:
8299 2005-10-12 Wim Taymans <wim@fluendo.com>
8301 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
8302 (gst_ring_buffer_read), (gst_ring_buffer_clear):
8303 Don't assert on normal stuff.
8305 * gst/playback/gstplaybin.c: (do_playbin_seek):
8308 2005-10-12 Wim Taymans <wim@fluendo.com>
8310 * check/pipelines/simple_launch_lines.c: (run_pipeline):
8311 * examples/seeking/Makefile.am:
8312 * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
8313 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
8314 (do_seek), (set_update_scale), (message_received), (main):
8315 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
8316 (gst_ring_buffer_read), (gst_ring_buffer_clear):
8317 Update for _get_state() API change.
8319 2005-10-11 Wim Taymans <wim@fluendo.com>
8321 * gst-libs/gst/audio/gstbaseaudiosink.c:
8322 (gst_base_audio_sink_render):
8323 * gst-libs/gst/audio/gstbaseaudiosrc.c:
8324 (gst_base_audio_src_create):
8325 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
8326 (gst_ring_buffer_read):
8328 Commit and read from ringbuffer in samples rather than bytes.
8330 2005-10-11 Wim Taymans <wim@fluendo.com>
8332 * gst-libs/gst/audio/gstbaseaudiosink.c:
8333 (gst_base_audio_sink_render):
8334 Respect segment rate and accum when scheduling samples.
8336 2005-10-11 Julien MOUTTE <julien@moutte.net>
8338 * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
8339 (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
8340 EOS correctly, that needs more work.
8342 2005-10-11 Wim Taymans <wim@fluendo.com>
8344 * check/generic/states.c: (GST_START_TEST):
8345 remove old property.
8347 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8348 (gst_ogg_demux_perform_seek):
8349 * ext/theora/theoradec.c: (theora_dec_sink_event):
8350 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8351 (vorbis_handle_data_packet):
8352 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8353 (gst_base_rtp_depayload_set_gst_timestamp):
8354 * gst/videorate/gstvideorate.c: (gst_videorate_event):
8355 Update for newsegment API change.
8357 2005-10-11 Michael Smith <msmith@fluendo.com>
8359 * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
8360 (do_playbin_seek), (gst_play_bin_send_event):
8361 Override send_event differently, so that we can takes bits of
8362 functionality from GstPipeline (special handling for seeks,
8363 including pausing/resuming, and resetting stream time) and still get
8364 the appropriate behaviour of only forwarding event to a single sink,
8365 rather than all of them.
8366 Unfortunately requires a lot of code duplication, but the
8367 alternatives are equally ugly in the end.
8369 2005-10-11 Thomas Vander Stichele <thomas at apestaart dot org>
8371 * check/elements/audioconvert.c: (setup_audioconvert),
8372 (cleanup_audioconvert), (get_int_caps), (verify_convert),
8373 (GST_START_TEST), (audioconvert_suite):
8374 clean up tests a little, fix some leaks.
8376 2005-10-10 Wim Taymans <wim@fluendo.com>
8378 * ext/alsa/gstalsasink.c:
8379 Also allow unsigned int.
8381 * gst-libs/gst/audio/gstbaseaudiosrc.c:
8382 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
8385 2005-10-10 Wim Taymans <wim@fluendo.com>
8387 * check/pipelines/simple_launch_lines.c: (run_pipeline):
8388 Small update, use API as stated in design docs.
8390 * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
8391 (update_scale), (do_seek), (seek_cb), (set_update_scale),
8392 (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
8393 (message_received), (main):
8394 Updated seek example for GOption. Some usability improvements.
8396 2005-10-10 Wim Taymans <wim@fluendo.com>
8398 * gst/audioconvert/audioconvert.h:
8399 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
8400 (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
8401 Alloc temp storage somewhere else where we can do it more
8404 2005-10-10 Wim Taymans <wim@fluendo.com>
8406 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
8407 (gst_tcpserversrc_start):
8408 Don't block in accept while doing the state change, move
8409 to poll and make cancellable.
8411 2005-10-09 Philippe Khalaf <burger@speedy.org>
8413 * gst-libs/gst/rtp/rtpbasedepayload.c:
8414 Set timestamp and add queue delay to timestamp
8415 * gst-libs/gst/rtp/rtpbuffer.h:
8416 Set correct payload type for h263
8418 2005-10-09 Stefan Kost <ensonic@users.sf.net>
8420 * gst/audiotestsrc/gstaudiotestsrc.c:
8421 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
8422 (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
8423 (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
8424 (gst_audiotestsrc_create_triangle),
8425 (gst_audiotestsrc_create_silence),
8426 (gst_audiotestsrc_create_white_noise),
8427 (gst_audiotestsrc_init_pink_noise),
8428 (gst_audiotestsrc_generate_pink_noise_value),
8429 (gst_audiotestsrc_create_pink_noise),
8430 (gst_audiotestsrc_change_wave):
8431 * gst/audiotestsrc/gstaudiotestsrc.h:
8432 fixed typo, added pink noise
8434 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
8436 * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
8438 Add wavpack and spc typefind functions from 0.8 branch.
8440 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
8442 * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
8443 (ar_type_find), (msdos_type_find), (plugin_init):
8444 Add typefind functions for tar archives, ar archives,
8445 RAR archives, and msdos-executables (dlls, exe, etc.).
8446 Some of those would be wrongly identified as mpeg
8447 streams of some sort before (#315550).
8449 2005-10-09 Stefan Kost <ensonic@users.sf.net>
8452 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8453 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8454 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
8455 * gst/audiotestsrc/Makefile.am:
8456 * gst/audiotestsrc/gstaudiotestsrc.c:
8457 (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
8458 (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
8459 (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
8460 (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
8461 (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
8462 (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
8463 (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
8464 (gst_audiotestsrc_create_silence),
8465 (gst_audiotestsrc_create_white_noise),
8466 (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
8467 (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
8468 (gst_audiotestsrc_start), (plugin_init):
8469 * gst/audiotestsrc/gstaudiotestsrc.h:
8470 add new plugin and element
8471 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
8474 2005-10-09 Tim-Philipp Müller <tim at centricular dot net>
8476 * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
8477 (gst_adder_init), (gst_adder_request_new_pad),
8478 (gst_adder_change_state):
8479 Add query function to source pad, so adder reports the correct
8480 time/sample position when queried (#315457); fix state change
8481 function; use GST_DEBUG_FUNCPTR() for pad functions.
8483 2005-10-08 Thomas Vander Stichele <thomas at apestaart dot org>
8485 * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
8486 Fix leaks in typefind registration
8487 Clean up the gratuitous commenting and whitespacing a little
8489 2005-10-08 Wim Taymans <wim@fluendo.com>
8491 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
8492 Only actually wait for the thread to be stopped if it's
8495 2005-10-08 Wim Taymans <wim@fluendo.com>
8497 * gst-libs/gst/audio/gstbaseaudiosink.c:
8498 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
8499 If we receive EOS we can start playback of what we had.
8501 2005-10-08 Wim Taymans <wim@fluendo.com>
8503 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
8504 (gst_multifdsink_finalize), (multifdsink_hash_remove),
8505 (gst_multifdsink_stop):
8506 Fix crasher when going to NULL multiple times.
8508 2005-10-06 Wim Taymans <wim@fluendo.com>
8510 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
8511 (gst_base_audio_src_create), (gst_base_audio_src_change_state):
8512 * gst-libs/gst/audio/gstbaseaudiosrc.h:
8513 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
8514 patch from Edgard Lima <edgard.lima@indt.org.br>
8515 Fixed gstbaseaudiosrc adding ring buffer sync to it.
8517 2005-10-06 Wim Taymans <wim@fluendo.com>
8519 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
8520 Report the FLOW_RETURN as string in the error message.
8522 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
8523 Don't assert when clearing an unnegotiated buffer.
8525 2005-10-04 Michael Smith <msmith@fluendo.com>
8527 * gst/playback/gstplaybasebin.c: (group_destroy),
8528 (gen_preroll_element), (remove_groups), (setup_source):
8529 * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
8530 (setup_sinks), (gst_play_bin_send_event),
8531 (gst_play_bin_change_state):
8532 Set state to NULL before removing from bin. Fix refcounting.
8534 2005-10-04 Michael Smith <msmith@fluendo.com>
8536 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
8537 Correct refcounting in send_event() function. Previously was wrong
8538 if the first sink was unable to handle the event.
8540 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
8545 === release 0.9.3 ===
8547 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
8550 Releasing 0.9.3, "De Facto"
8552 2005-10-03 Andy Wingo <wingo@pobox.com>
8554 * gst/playback/gstdecodebin.c (try_to_link_1)
8555 (remove_element_chain): set element to NULL before removing it.
8557 2005-10-02 Johan Dahlin <johan@gnome.org>
8559 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols):
8560 protect gst_gnomevfs_get_supported_uris by a mutex, to make it
8563 2005-10-02 Andy Wingo <wingo@pobox.com>
8565 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear)
8566 (gst_ring_buffer_prepare_read):
8567 * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
8570 2005-09-29 Wim Taymans <wim@fluendo.com>
8572 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
8573 * ext/theora/theoradec.c: (theora_handle_data_packet):
8574 * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
8575 Propagate error codes from alloc_buffer too.
8577 2005-09-29 Wim Taymans <wim@fluendo.com>
8579 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
8582 * gst/playback/Makefile.am:
8583 * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
8584 (dump_element_stats), (main):
8585 Added example stream introspection code.
8587 2005-09-28 Stefan Kost <ensonic@users.sf.net>
8589 * gst/adder/gstadder.c: (gst_adder_collected):
8590 fix adder for float elements
8592 2005-09-28 Wim Taymans <wim@fluendo.com>
8594 * gst-libs/gst/audio/gstbaseaudiosink.c:
8595 (gst_base_audio_sink_class_init),
8596 (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
8597 * gst-libs/gst/audio/gstbaseaudiosrc.c:
8598 (gst_base_audio_src_class_init),
8599 (gst_base_audio_src_provide_clock):
8600 get_clock -> provide_clock
8602 2005-09-28 Andy Wingo <wingo@pobox.com>
8604 * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
8607 * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
8610 * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
8611 Actually add the pad template.
8612 (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
8614 * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
8617 * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
8618 from fdsrc. Get caps in create() instead of start() so it can be
8619 interrupted. Interruption somewhat untested.
8621 * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
8622 Proper EOS handling.
8624 2005-09-27 Andy Wingo <wingo@pobox.com>
8626 * gst/tcp/gsttcpclientsrc.c: Cleaned up.
8628 * gst/tcp/gsttcpserversrc.c: Cleaned up.
8630 * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
8633 * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
8634 out of tcpclientsrc.c. Cancellable.
8635 (gst_tcp_socket_read): Made private, cancellable, with better
8636 diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
8637 (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
8638 whole buffer, and better diagnostics.
8639 (gst_tcp_gdp_read_caps): Same.
8641 * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
8643 2005-09-26 Andy Wingo <wingo@pobox.com>
8645 * gst/sine/gstsinesrc.h:
8646 * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
8647 change the 'sync' property to 'is-live' and implement it halfway,
8648 update for controller api change.
8650 * gst/volume/gstvolume.c (volume_transform_ip): Update for
8651 controller api change.
8653 2005-09-24 Wim Taymans <wim@fluendo.com>
8655 * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
8656 * gst-libs/gst/audio/gstaudiosink.c:
8657 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
8658 (gst_audioringbuffer_stop):
8659 * gst-libs/gst/audio/gstbaseaudiosink.c:
8660 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
8661 (gst_base_audio_sink_change_state):
8662 * gst-libs/gst/audio/gstbaseaudiosink.h:
8663 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
8664 (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
8665 (gst_ring_buffer_commit), (gst_ring_buffer_read):
8666 * gst-libs/gst/audio/gstringbuffer.h:
8667 Fix sync again. Moved sample alignment to basesink.
8669 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
8671 * docs/plugins/Makefile.am:
8672 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8673 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8674 * gst/volume/gstvolume.c:
8676 * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
8677 * gst-libs/gst/audio/audio.h:
8678 add conversion macros for frames <-> clocktime
8680 2005-09-23 David Schleef <ds@schleef.org>
8682 * gst/audioresample/Makefile.am:
8683 * gst/audioresample/debug.h:
8684 * gst/audioresample/gstaudioresample.c:
8685 * gst/audioresample/resample.c: Convert to using gst debugging
8687 2005-09-22 Wim Taymans <wim@fluendo.com>
8689 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8690 (gst_play_bin_send_event):
8691 Only seek on one sink, the first one that succeeds.
8693 2005-09-22 Michael Smith <msmith@fluendo.com>
8695 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
8696 (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
8697 Don't flush encoder state unless we have an initialised encoder.
8698 Clear out encoder state on PAUSED_TO_READY.
8700 2005-09-22 Wim Taymans <wim@fluendo.com>
8702 * gst-libs/gst/rtp/gstbasertppayload.c:
8703 (gst_basertppayload_class_init), (gst_basertppayload_init),
8704 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
8705 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
8706 (gst_basertppayload_is_filled), (gst_basertppayload_push),
8707 (gst_basertppayload_set_property),
8708 (gst_basertppayload_get_property),
8709 (gst_basertppayload_change_state):
8710 * gst-libs/gst/rtp/gstbasertppayload.h:
8711 Added max-ptime to control amount of data in the rtp packets.
8713 2005-09-21 Andy Wingo <wingo@pobox.com>
8715 * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
8718 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
8719 can be called multiple times, dogs.
8721 2005-09-21 Wim Taymans <wim@fluendo.com>
8723 * gst-libs/gst/rtp/gstbasertppayload.c:
8724 (gst_basertppayload_class_init), (gst_basertppayload_init),
8725 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
8726 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
8727 (gst_basertppayload_push), (gst_basertppayload_get_property),
8728 (gst_basertppayload_change_state):
8731 2005-09-21 Stefan Kost <ensonic@users.sf.net>
8733 * docs/libs/compiling.sgml:
8736 2005-09-20 Wim Taymans <wim@fluendo.com>
8738 * gst-libs/gst/rtp/gstbasertppayload.c:
8739 (gst_basertppayload_class_init), (gst_basertppayload_init),
8740 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
8741 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
8742 (gst_basertppayload_push), (gst_basertppayload_set_property),
8743 (gst_basertppayload_get_property),
8744 (gst_basertppayload_change_state):
8745 * gst-libs/gst/rtp/gstbasertppayload.h:
8746 Added property to configure sequence number offsets.
8748 2005-09-20 Wim Taymans <wim@fluendo.com>
8750 * gst-libs/gst/rtp/gstbasertppayload.c:
8751 (gst_basertppayload_class_init), (gst_basertppayload_init),
8752 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
8753 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
8754 (gst_basertppayload_push), (gst_basertppayload_set_property),
8755 (gst_basertppayload_get_property),
8756 (gst_basertppayload_change_state):
8757 * gst-libs/gst/rtp/gstbasertppayload.h:
8758 Make timestamp offset configurable.
8760 2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
8762 * check/pipelines/simple_launch_lines.c: (run_pipeline):
8765 2005-09-19 Torsten Schoenfeld <kaffeetisch at gmx dot net>
8767 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
8769 * gst-libs/gst/interfaces/propertyprobe.c:
8770 (gst_property_probe_probe_property_name),
8771 (gst_property_probe_needs_probe_name),
8772 (gst_property_probe_get_values_name),
8773 (gst_property_probe_probe_and_get_values_name):
8774 Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
8775 G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
8777 2005-09-19 Thomas Vander Stichele <thomas at apestaart dot org>
8779 * check/Makefile.am:
8780 have some tests be disabled for valgrinding
8781 * check/elements/vorbisdec.c: (cleanup_vorbisdec),
8783 * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
8784 Fix A Leak. Chain To Parent Finalize.
8786 2005-09-19 Wim Taymans <wim@fluendo.com>
8788 * examples/seeking/seek.c: (make_wav_pipeline), (main):
8791 2005-09-19 Wim Taymans <wim@fluendo.com>
8793 * gst-libs/gst/rtp/gstbasertppayload.c:
8794 (gst_basertppayload_class_init), (gst_basertppayload_init),
8795 (gst_basertppayload_setcaps), (gst_basertppayload_chain),
8796 (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
8797 (gst_basertppayload_push), (gst_basertppayload_get_property),
8798 (gst_basertppayload_change_state):
8799 Posting ERROR and WARNING messages is good.
8801 2005-09-19 Wim Taymans <wim@fluendo.com>
8803 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8804 (gst_base_rtp_depayload_add_to_queue),
8805 (gst_base_rtp_depayload_push),
8806 (gst_base_rtp_depayload_set_gst_timestamp),
8807 (gst_base_rtp_depayload_queue_release):
8808 This one was not supposed to go in.
8810 2005-09-19 Wim Taymans <wim@fluendo.com>
8812 * check/pipelines/simple_launch_lines.c: (run_pipeline):
8815 * gst-libs/gst/rtp/gstbasertpdepayload.c:
8816 (gst_base_rtp_depayload_chain),
8817 (gst_base_rtp_depayload_add_to_queue),
8818 (gst_base_rtp_depayload_push),
8819 (gst_base_rtp_depayload_set_gst_timestamp),
8820 (gst_base_rtp_depayload_queue_release):
8823 * gst-libs/gst/rtp/gstbasertppayload.c:
8824 (gst_basertppayload_class_init), (gst_basertppayload_init),
8825 (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
8826 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
8827 (gst_basertppayload_get_property),
8828 (gst_basertppayload_change_state):
8829 Added debugging category.
8831 2005-09-18 David Schleef <ds@schleef.org>
8833 * gst/playback/gstdecodebin.c: free plugin list correctly
8834 * gst/playback/gstplaybin.c: emit warning if autovideosink
8835 and autoaudiosink can't be found (instead of segfaulting)
8837 2005-09-17 Thomas Vander Stichele <thomas at apestaart dot org>
8839 * check/elements/audioconvert.c: (GST_START_TEST):
8840 try out 24 bit conversion
8842 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
8844 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
8845 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
8846 (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
8847 * ext/vorbis/vorbisenc.h:
8848 Fix EOS handling. Still needs a fix in the ogg muxer to
8849 mark the last page as eos.
8851 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
8853 * common/gtk-doc-plugins.mak:
8854 * docs/plugins/Makefile.am:
8855 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8856 * gst/ffmpegcolorspace/Makefile.am:
8857 * gst/ffmpegcolorspace/avcodec.h:
8858 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8859 * gst/tcp/gstmultifdsink.c:
8860 fix up ffmpegcolorspace docs; extract header
8862 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
8864 * common/gtk-doc-plugins.mak:
8865 * docs/plugins/Makefile.am:
8866 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8867 * ext/theora/Makefile.am:
8868 * ext/theora/gsttheoraenc.h:
8869 * ext/theora/theoraenc.c:
8870 * ext/vorbis/vorbisenc.c:
8871 pick up signals and args for vorbis; add some docs for vorbis
8873 2005-09-15 Thomas Vander Stichele <thomas at apestaart dot org>
8875 * common/gstdoc-scangobj:
8876 * common/gtk-doc-plugins.mak:
8877 * docs/libs/Makefile.am:
8878 * docs/plugins/gst-plugins-base-plugins.args:
8879 * docs/plugins/gst-plugins-base-plugins.hierarchy:
8880 * docs/plugins/gst-plugins-base-plugins.interfaces:
8881 * docs/plugins/gst-plugins-base-plugins.prerequisites:
8882 * docs/plugins/gst-plugins-base-plugins.signals:
8883 only scanobj stuff from our source module. Not sure yet
8884 if that's correct, given the hierarchy stuff :)
8886 2005-09-15 Wim Taymans <wim@fluendo.com>
8888 * gst/audioconvert/gstaudioconvert.c:
8889 And enable 24 bits mode as well..
8891 2005-09-15 Wim Taymans <wim@fluendo.com>
8893 * gst-libs/gst/rtp/Makefile.am:
8894 * gst-libs/gst/rtp/gstbasertppayload.c:
8895 (gst_basertppayload_get_type), (gst_basertppayload_base_init),
8896 (gst_basertppayload_class_init), (gst_basertppayload_init),
8897 (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
8898 (gst_basertppayload_chain), (gst_basertppayload_set_options),
8899 (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
8900 (gst_basertppayload_set_property),
8901 (gst_basertppayload_get_property),
8902 (gst_basertppayload_change_state):
8903 * gst-libs/gst/rtp/gstbasertppayload.h:
8904 Added rtp payloader base class.
8906 2005-09-15 Andy Wingo <wingo@pobox.com>
8908 * configure.ac (plugindir): Remove the EOL matcher from the
8909 regexp, as it causes me problems. Libtool? Make? Who knows?
8911 2005-09-14 David Schleef <ds@schleef.org>
8913 * check/generic/states.c:
8914 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
8915 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
8916 Fixes for changes in registry API.
8918 * configure.ac: Only export gst_plugins_desc. Add -no-undefined
8919 to GST_PLUGIN_LDFLAGS.
8920 * ext/libvisual/visual.c: Make the library shut up.
8921 * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
8922 * gst-libs/gst/audio/gstaudiofilter.c: same
8924 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
8926 * docs/plugins/Makefile.am:
8927 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8928 * docs/plugins/inspect/plugin-libvisual.xml:
8929 * docs/plugins/tmpl/element-tcpserversink.sgml:
8930 * ext/theora/theoraenc.c:
8931 add libvisual plugin and theoraenc element to docs
8933 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
8935 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8936 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8937 * ext/theora/theoraenc.c:
8940 2005-09-13 Tim-Philipp Müller <tim at centricular dot net>
8942 * gst/audioconvert/Makefile.am:
8943 Audioconvert derives from GstBaseTransform and should
8944 link to the library with our base elements to avoid
8945 unresolved symbols. Makes things work with MinGW (#316160)
8947 * gst/playback/test4.c: (main):
8948 Fix MinGW build problem and use g_usleep() instead of
8951 2005-09-12 Wim Taymans <wim@fluendo.com>
8953 * gst/audioconvert/audioconvert.c: (float),
8954 (audio_convert_prepare_context), (audio_convert_convert):
8955 * gst/audioconvert/audioconvert.h:
8956 Cleanups, speedups, simplifications, added back support
8959 2005-09-11 Thomas Vander Stichele <thomas at apestaart dot org>
8961 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
8962 * docs/plugins/gst-plugins-base-plugins-sections.txt:
8963 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
8964 * docs/plugins/tmpl/element-tcpserversink.sgml:
8965 * gst/ffmpegcolorspace/gstffmpeg.c:
8966 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8967 * gst/videotestsrc/gstvideotestsrc.c:
8968 * gst/volume/gstvolume.c:
8969 add more elements to the docs
8971 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
8973 * check/Makefile.am:
8974 * check/pipelines/simple_launch_lines.c: (setup_pipeline),
8975 (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
8976 Add extra tests for basetransform based components.
8977 Comment out the test_element_negotiation test until we decide
8978 if it's testing correct behaviour.
8979 * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
8980 (gst_visual_chain), (gst_visual_change_state):
8981 Slightly more correct but still bogus timestamping.
8982 Fix state change function.
8983 * gst/audioconvert/gstaudioconvert.c:
8984 (gst_audio_convert_class_init):
8985 * gst/audioresample/gstaudioresample.c:
8986 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8987 (gst_ffmpegcsp_class_init):
8988 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
8989 (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
8990 (gst_videoscale_prepare_image):
8991 * gst/volume/gstvolume.c: (gst_volume_class_init),
8992 (volume_transform_ip):
8993 Basetransform updates. Enable passthrough modes.
8994 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
8995 (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
8996 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
8997 Negotiation fix that allows the window to return to the original
8998 size and renegotiate passthrough upstream. Extra debug output.
9000 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
9002 * gst/sine/gstsinesrc.c:
9003 * gst/volume/gstvolume.c:
9004 fix up header include
9006 2005-09-09 Stefan Kost <ensonic@users.sf.net>
9008 * gst-libs/gst/audio/gstbaseaudiosink.c:
9009 (gst_base_audio_sink_render):
9010 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
9011 * gst/volume/gstvolume.c: (gst_volume_class_init),
9013 fixing lost sync, some more debugging
9015 2005-09-08 Jan Schmidt <thaytan@mad.scientist.com>
9017 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
9018 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
9019 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
9020 (gst_xvimagesink_check_xshm_calls):
9021 Fix compilation when XShm is not available.
9023 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
9025 * ext/libvisual/visual.c: (gst_visual_dispose),
9026 (gst_visual_getcaps), (gst_visual_src_setcaps),
9027 (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
9028 (gst_visual_change_state):
9029 Finish fixing up libvisual plugin so that it runs.
9031 2005-09-07 Stefan Kost <ensonic@users.sf.net>
9033 * ext/vorbis/vorbisenc.c:
9034 * gst-libs/gst/tag/gstvorbistag.c:
9035 gsttaginterface.h -> gsttagsetter.h
9037 2005-09-07 Stefan Kost <ensonic@users.sf.net>
9039 * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
9040 added another test that failes for me (test is not active by default)
9042 2005-09-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
9045 v4l2 is no longer in gst-plugins-base
9047 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
9050 In the output at the end, don't show the first plugin on the same
9051 line as "Core plug-ins, always built:".
9052 Indent the output as for other plugin categories
9053 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
9054 #define that can be used to not use peer buffer_alloc functions for
9056 * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
9057 (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
9058 (gst_ximagesink_show_frame):
9059 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
9060 (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
9061 (gst_xvimagesink_show_frame):
9062 Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
9063 fails gracefully instead of XError aborting or deadlocking.
9065 2005-09-07 Stefan Kost <ensonic@users.sf.net>
9067 * ext/libvisual/Makefile.am:
9068 link against gst-base-libs
9070 2005-09-06 David Schleef <ds@schleef.org>
9072 * configure.ac: Enable libvisual plugin.
9073 * ext/libvisual/Makefile.am:
9074 * ext/libvisual/visual.c: Fixes to make it compile.
9076 === release 0.9.2 ===
9078 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
9083 * docs/random/ChangeLog-0.8:
9084 releasing 0.9.2, "Spoon"
9086 2005-09-05 Michael Smith <msmith@fluendo.com>
9088 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
9089 libvorbis accepts quality as low as -0.1, not just 0.0. So accept
9090 that in the vorbisenc element.
9092 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
9094 * common/gtk-doc-plugins.mak:
9095 * docs/plugins/Makefile.am:
9097 * gst/audioresample/resample.c:
9100 2005-09-04 Thomas Vander Stichele <thomas at apestaart dot org>
9102 * common/gst-xmlinspect.py:
9103 * common/gtk-doc-plugins.mak:
9104 only inspect plugins for this given package
9105 require gst-python 0.9
9107 2005-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
9111 * common/gst-xmlinspect.py:
9114 * docs/plugins/inspect/plugin-alsa.xml:
9115 * docs/plugins/inspect/plugin-audioresample.xml:
9116 * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
9117 * docs/plugins/inspect/plugin-ogg.xml:
9118 * docs/plugins/tmpl/element-gnomevfssink.sgml:
9119 * docs/plugins/tmpl/element-multifdsink.sgml:
9120 * docs/plugins/tmpl/element-tcpserversink.sgml:
9121 * docs/plugins/tmpl/element-vorbisenc.sgml:
9122 * gst-plugins-base.spec.in:
9123 various doc-related updates
9125 2005-08-31 Wim Taymans <wim@fluendo.com>
9127 * gst-libs/gst/audio/gstbaseaudiosink.c:
9128 (gst_base_audio_sink_render):
9129 Resync if the buffer timestamps drift more than a 10th
9132 2005-08-31 Tim-Philipp M??ller <tim at centricular dot net>
9134 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
9135 (gst_v4lsrc_get_property):
9136 The 'timestamp-offset' property is registered as an int64, so
9137 let's use g_value_{set|get}_int64() in our setter and getter
9138 functions (makes it work and fixes warnings with gst-inspect).
9140 2005-08-30 Wim Taymans <wim@fluendo.com>
9142 * check/elements/audioconvert.c: (setup_audioconvert):
9143 * check/elements/audioresample.c: (setup_audioresample):
9144 * check/elements/volume.c: (setup_volume):
9147 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
9149 * common/gtk-doc-plugins.mak:
9150 * common/plugins.xsl:
9151 * docs/plugins/Makefile.am:
9154 2005-08-30 Stefan Kost <ensonic@users.sf.net>
9156 * examples/seeking/seek.c: (make_mp3_pipeline),
9157 (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
9158 (play_cb), (pause_cb), (stop_cb):
9161 2005-08-30 Stefan Kost <ensonic@users.sf.net>
9163 * gst/volume/gstvolume.c: (gst_volume_class_init),
9165 do not update controlled params, if buffer has no timestamp
9167 2005-08-29 Stefan Kost <ensonic@users.sf.net>
9170 * gst/sine/Makefile.am:
9171 * gst/volume/Makefile.am:
9172 controllerized elements also need to link against controller-libs ;)
9174 2005-08-29 Stefan Kost <ensonic@users.sf.net>
9176 * docs/libs/tmpl/gstcolorbalance.sgml:
9177 * docs/libs/tmpl/gstgconf.sgml:
9178 * docs/libs/tmpl/gstmixer.sgml:
9179 * docs/libs/tmpl/gstringbuffer.sgml:
9180 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
9181 (gst_sinesrc_create):
9182 * gst/volume/gstvolume.c: (gst_volume_class_init),
9184 controllerized two audio plugins
9186 2005-08-29 Andy Wingo <wingo@pobox.com>
9188 * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push)
9189 (vorbis_handle_data_packet): Fix some int overflow errors.
9191 * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
9193 (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
9195 (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
9196 if it's valid. Fixed streaming-mode playback.
9198 * check/elements/volume.c (cleanup_volume): Fix for running
9201 * check/elements/audioconvert.c: Convert from native endian, not
9204 2005-08-29 Michael Smith <msmith@fluendo.com>
9206 * ext/ogg/Makefile.am:
9207 * ext/ogg/gstogg.c: (plugin_init):
9208 * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
9209 (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
9210 (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
9211 (gst_ogg_parse_class_init), (gst_ogg_parse_init),
9212 (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
9213 (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
9214 (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
9215 (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
9216 Add an ogg parser element.
9218 2005-08-28 Andy Wingo <wingo@pobox.com>
9220 * Updates for two-arg init from GST_BOILERPLATE_FULL.
9222 2005-08-26 Wim Taymans <wim@fluendo.com>
9224 * gst/audioconvert/audioconvert.c: (if), (float),
9225 (audio_convert_get_func_index), (check_default),
9226 (audio_convert_clean_fmt), (audio_convert_prepare_context),
9227 (audio_convert_clean_context), (audio_convert_get_sizes),
9228 (audio_convert_convert):
9231 2005-08-26 Wim Taymans <wim@fluendo.com>
9233 * gst/audioconvert/audioconvert.c: (if), (float),
9234 (audio_convert_get_func_index), (check_default),
9235 (audio_convert_clean_fmt), (audio_convert_prepare_context),
9236 (audio_convert_clean_context), (audio_convert_get_sizes),
9237 (audio_convert_convert):
9238 More elegant and working temp buffer selection algo.
9240 2005-08-26 Wim Taymans <wim@fluendo.com>
9242 * gst/audioconvert/audioconvert.c: (if), (float),
9243 (audio_convert_get_func_index), (check_default),
9244 (audio_convert_clean_fmt), (audio_convert_prepare_context),
9245 (audio_convert_clean_context), (audio_convert_get_sizes),
9246 (get_temp_buffer), (audio_convert_convert):
9247 Use realloc else we lose our original data.
9249 2005-08-26 Thomas Vander Stichele <thomas at apestaart dot org>
9251 * gst/audioresample/gstaudioresample.c:
9252 use base class' newsegment to properly timestamp
9254 2005-08-26 Wim Taymans <wim@fluendo.com>
9256 * gst/audioconvert/audioconvert.c: (if), (float),
9257 (audio_convert_get_func_index), (check_default),
9258 (audio_convert_clean_fmt), (audio_convert_prepare_context),
9259 (audio_convert_clean_context), (audio_convert_get_sizes),
9260 (get_temp_buffer), (audio_convert_convert):
9261 * gst/audioconvert/gstaudioconvert.c:
9262 (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
9263 (gst_audio_convert_transform_caps),
9264 (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
9265 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
9266 Oops, allocate enough space to perform the channel mix.
9268 2005-08-26 Wim Taymans <wim@fluendo.com>
9270 * gst/audioconvert/Makefile.am:
9271 * gst/audioconvert/audioconvert.c: (if), (float),
9272 (audio_convert_get_func_index), (check_default),
9273 (audio_convert_clean_fmt), (audio_convert_prepare_context),
9274 (audio_convert_clean_context), (audio_convert_get_sizes),
9275 (get_temp_buffer), (audio_convert_convert):
9276 * gst/audioconvert/audioconvert.h:
9277 * gst/audioconvert/gstaudioconvert.c:
9278 (gst_audio_convert_class_init), (gst_audio_convert_init),
9279 (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
9280 (gst_audio_convert_get_unit_size),
9281 (gst_audio_convert_transform_caps),
9282 (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
9283 (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
9284 * gst/audioconvert/gstaudioconvert.h:
9285 * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
9286 (gst_channel_mix_fill_identical),
9287 (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
9288 (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
9289 (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
9290 (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
9291 (gst_channel_mix_mix):
9292 * gst/audioconvert/gstchannelmix.h:
9293 Cleanups, librarify a bit, optimize, better negotiation and more.
9295 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
9297 * ext/ogg/gstoggdemux.c: (ogg_find_peek):
9299 During typefinding, don't support negative offsets
9300 (offsets from the end of the stream) in our typefind->peek() function
9301 - nothing embedded in ogg ever needs them. However, we need to recognise
9302 those requests and reject them, otherwise we return invalid pointers.
9304 2005-08-26 Jan Schmidt <thaytan@mad.scientist.com>
9306 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
9307 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
9308 (vorbisdec_finalize), (vorbis_handle_type_packet):
9309 Big shout-out to MikeS for fixing this giant memory leak.
9312 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
9314 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
9315 (audio_convert_get_unit_size):
9318 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
9320 * check/Makefile.am:
9321 * check/elements/audioconvert.c: (setup_audioconvert),
9322 (cleanup_audioconvert), (get_int_caps), (verify_convert),
9323 (GST_START_TEST), (audioconvert_suite), (main):
9324 add a test for audioconvert
9325 * gst/audioresample/gstaudioresample.c:
9326 * gst/audioresample/gstaudioresample.h:
9327 set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
9328 note that for buffers of 1/3 sec this means DURATION(c) is
9329 one nanosecond more than for a and b
9331 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
9333 * check/Makefile.am:
9334 * check/elements/audioresample.c: (setup_audioresample),
9335 (cleanup_audioresample), (fail_unless_perfect_stream),
9336 (test_perfect_stream_instance), (GST_START_TEST),
9337 add a check for audioresample
9338 (audioresample_suite), (main):
9339 * check/elements/volume.c: (GST_START_TEST):
9340 remove unused method
9341 * gst/audioresample/gstaudioresample.c:
9342 set correct buffer parameters since we're changing them
9343 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9346 2005-08-25 Thomas Vander Stichele <thomas at apestaart dot org>
9348 * gst/audioresample/debug.c:
9349 * gst/audioresample/gstaudioresample.c:
9350 add room for extra overlap samples when asked to transform size
9351 protect against possible mem corruption and check for discrepancies
9352 between written size and outbuffer's size so we can warn for
9354 * gst/audioresample/resample.c: (resample_init),
9355 (resample_get_output_size_for_input), (resample_get_output_size),
9356 (resample_set_n_channels), (resample_set_format):
9357 set debug level based on RESAMPLE_DEBUG env var
9358 make sure that get_output_size* returns a whole number of
9360 set sample_size each time either channel or format is set
9361 * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
9362 * gst/audioresample/resample_functable.c:
9363 (resample_scale_functable):
9364 * gst/audioresample/resample_ref.c: (resample_scale_ref):
9365 remove r->sample_size, it's done in resample.c now
9366 add some debugging to the ref implementation
9367 make sure we only give back bytes that are wholes of the sample
9370 2005-08-25 Jan Schmidt <thaytan@mad.scientist.com>
9371 * gst/playback/gstplaybasebin.c: (fill_buffer):
9372 Revert unpopular change for GST_MESSAGE_SRC to GObject.
9374 2005-08-25 Stefan Kost <ensonic@users.sf.net>
9376 * gst/volume/gstvolume.c:
9377 made set_caps function static
9379 2005-08-24 Wim Taymans <wim@fluendo.com>
9381 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
9382 (gst_vorbisenc_change_state):
9383 Stop leaking taglists.
9385 2005-08-24 Wim Taymans <wim@fluendo.com>
9387 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
9388 (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
9389 (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
9390 (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
9391 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
9392 (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
9393 Parse seeking events better.
9395 Generate correct newsegment events, fixes seeking in live oggs.
9397 * ext/theora/theoradec.c: (theora_dec_src_query),
9398 (theora_dec_src_event), (theora_dec_src_getcaps),
9399 (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
9400 Use newsegment values to report correct play time.
9402 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
9403 (vorbis_dec_src_event), (vorbis_dec_sink_event):
9404 * ext/vorbis/vorbisdec.h:
9405 Parse and use newsegment values to report correct play time.
9407 * gst-libs/gst/audio/gstbaseaudiosink.c:
9408 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
9409 Clear ringbuffer on flush.
9410 Use newsegment values to calculate playback time.
9412 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
9413 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
9414 Basesink does newsegment calculations for us now.
9416 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
9418 * check/Makefile.am:
9420 add core's plugins to the mix so that playbin works
9421 * check/generic/states.c: (GST_START_TEST):
9422 set a 0 timeout on pipelines, so they don't force the next
9424 * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
9425 (gst_play_base_bin_change_state):
9426 remove the crappy error handling and do GST error handling
9428 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
9430 * check/Makefile.am:
9431 * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
9432 add same test as to core, it bitches out on playbin atm.
9434 2005-08-24 Wim Taymans <wim@fluendo.com>
9439 2005-08-24 Wim Taymans <wim@fluendo.com>
9441 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
9442 (gst_videoscale_prepare_size), (parse_caps),
9443 (gst_videoscale_set_caps), (gst_videoscale_get_size),
9444 (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
9445 (gst_videoscale_transform):
9446 * gst/videoscale/gstvideoscale.h:
9447 Refactor, make use of BaseTranform really well.
9449 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
9452 compile audioresample
9453 * gst/audioresample/Makefile.am:
9454 * gst/audioresample/buffer.c:
9455 * gst/audioresample/functable.c:
9456 * gst/audioresample/gstaudioresample.c:
9457 * gst/audioresample/gstaudioresample.h:
9458 * gst/audioresample/resample.c:
9459 (resample_get_output_size_for_input):
9460 * gst/audioresample/resample.h:
9461 * gst/audioresample/resample_chunk.c:
9462 * gst/audioresample/resample_functable.c:
9463 * gst/audioresample/resample_ref.c:
9464 port to use basetransform; doesn't work in all cases yet
9466 2005-08-24 Thomas Vander Stichele <thomas at apestaart dot org>
9468 * gst/audioconvert/gstaudioconvert.c:
9469 (gst_audio_convert_class_init), (gst_audio_convert_init),
9470 (audio_convert_get_unit_size), (audio_convert_transform_caps),
9471 (audio_convert_fixate_caps), (audio_convert_set_caps),
9472 (audio_convert_transform),
9473 (gst_audio_convert_buffer_to_default_format),
9474 (gst_audio_convert_buffer_from_default_format),
9475 (gst_audio_convert_channels):
9476 * gst/audioconvert/gstchannelmix.c:
9477 * gst/audioconvert/gstchannelmix.h:
9478 port to basetransform
9479 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9480 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
9481 (gst_ffmpegcsp_get_unit_size):
9482 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
9483 (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
9484 fix for basetransform changes
9486 2005-08-24 Jan Schmidt <thaytan@mad.scientist.com>
9488 * check/Makefile.am:
9489 Add CHECK_CFLAGS and LDFLAGS
9491 * gst/playback/gstplaybasebin.c: (fill_buffer):
9492 GST_MESSAGE_SRC became a GObject
9494 2005-08-24 Wim Taymans <wim@fluendo.com>
9496 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
9497 (gst_ring_buffer_clear_all):
9498 * gst-libs/gst/audio/gstringbuffer.h:
9499 Added function to clear the ringbuffer.
9501 2005-08-24 Andy Wingo <wingo@pobox.com>
9503 * sys/v4l/gstv4lelement.c (gst_v4lelement_start)
9504 (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
9505 of _open and _close.
9507 * sys/v4l/gstv4lxoverlay.h:
9508 * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
9509 an Xv connection here, instead of all the time. Make Xv only be
9510 loaded if you axe for it. Kindof a workaround for buggy behaviour
9511 of Xv when using remote xservers (XvQueryExtension would block).
9512 (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
9513 replace the _open and _close public API. Only start the xv
9514 connection if necessary.
9515 (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
9517 2005-08-23 David Schleef <ds@schleef.org>
9519 * gst/audioresample/Makefile.am: Leet audioresampling code
9520 * gst/audioresample/buffer.c:
9521 * gst/audioresample/buffer.h:
9522 * gst/audioresample/debug.c:
9523 * gst/audioresample/debug.h:
9524 * gst/audioresample/functable.c:
9525 * gst/audioresample/functable.h:
9526 * gst/audioresample/gstaudioresample.c:
9527 * gst/audioresample/gstaudioresample.h:
9528 * gst/audioresample/resample.c:
9529 * gst/audioresample/resample.h:
9530 * gst/audioresample/resample_chunk.c:
9531 * gst/audioresample/resample_functable.c:
9532 * gst/audioresample/resample_ref.c:
9534 2005-08-23 Wim Taymans <wim@fluendo.com>
9536 * examples/seeking/seek.c: (make_vorbis_pipeline),
9537 (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
9540 2005-08-23 Andy Wingo <wingo@pobox.com>
9542 * gst-libs/gst/audio/gstbaseaudiosrc.c
9543 (gst_base_audio_src_fixate): Only fixate endianness if it is
9544 present in the caps.
9546 2005-08-22 Andy Wingo <wingo@pobox.com>
9548 * ext/alsa/gstalsasink.c (gst_alsasink_get_property):
9549 * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
9550 device-name property.
9552 * gst-libs/gst/audio/gstaudiosrc.h:
9553 * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
9554 close_device in the ring buffer, like gstaudiosink.
9556 * ext/alsa/gstalsamixer.h:
9557 * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
9558 macro to implement the interface without much code. Cleanups.
9560 * ext/alsa/gstalsasrc.h:
9561 * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
9564 * ext/alsa/Makefile.am: Add new files.
9565 * ext/alsa/gstalsamixerelement.c:
9566 * ext/alsa/gstalsamixerelement.c: Split element code out from
9567 mixer code so that alsasrc can be a mixer too.
9569 2005-08-21 Thomas Vander Stichele <thomas at apestaart dot org>
9571 * check/elements/volume.c: (setup_volume), (cleanup_volume),
9573 * check/elements/vorbisdec.c: (setup_vorbisdec),
9574 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
9575 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
9576 (vorbis_handle_identification_packet),
9577 (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
9578 (vorbis_handle_header_packet), (vorbis_dec_push),
9580 use the setup/teardown methods to save code. save code is good.
9582 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
9584 * check/Makefile.am:
9585 add ext dir for plugins
9586 add vorbisdec test conditionally
9587 * check/elements/volume.c: (setup_volume), (cleanup_volume),
9588 (GST_START_TEST), (volume_suite):
9589 add a test with wrong caps
9590 * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
9591 (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
9592 add a vorbisdec test
9593 * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
9594 (gst_ogg_demux_chain), (gst_ogg_demux_loop):
9595 clean up debug output
9596 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
9597 yay, fix a segfault/security issue in vorbisdec
9598 gst-launch fakesrc ! vorbisdec wasn't happy
9599 * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
9600 (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
9601 (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
9602 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
9603 (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
9604 (gst_vorbisenc_set_metadata), (get_constraints_string),
9605 (update_start_message), (gst_vorbisenc_setup),
9606 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
9607 (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
9608 (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
9609 (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
9610 * ext/vorbis/vorbisenc.h:
9612 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9613 (gst_ffmpegcsp_transform):
9614 have the kow come home
9615 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
9617 * gst/volume/gstvolume.c: (volume_set_caps):
9620 2005-08-20 Thomas Vander Stichele <thomas at apestaart dot org>
9624 * check/Makefile.am:
9625 * check/elements/.cvsignore:
9626 * check/elements/volume.c: (chain_func), (event_func),
9627 (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
9630 add unit test structure for gst-plugins-base
9631 add a test for volume
9632 * gst/volume/gstvolume.c: (gst_volume_list_tracks),
9633 (gst_volume_set_volume), (gst_volume_get_volume),
9634 (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
9635 (volume_funcfind), (volume_process_float), (volume_process_int16),
9636 (volume_set_caps), (volume_transform), (volume_update_mute),
9637 (volume_update_volume), (volume_set_property),
9638 (volume_get_property):
9639 document a little; use basetransform vmethod _set_caps
9641 2005-08-19 Andy Wingo <wingo@pobox.com>
9643 * ext/alsa/gstalsamixertrack.h:
9644 * ext/alsa/gstalsamixertrack.c:
9645 * ext/alsa/gstalsamixeroptions.h:
9646 * ext/alsa/gstalsamixeroptions.c:
9647 * ext/alsa/gstalsamixer.h:
9648 * ext/alsa/gstalsamixer.c: Port to 0.9.
9650 * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
9651 Remove gstalsa.c and alsaclock. No more cruft here.
9653 2005-08-18 Wim Taymans <wim@fluendo.com>
9655 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9656 (gst_base_rtp_depayload_chain),
9657 (gst_base_rtp_depayload_add_to_queue),
9658 (gst_base_rtp_depayload_push),
9659 (gst_base_rtp_depayload_queue_release):
9660 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9661 Fix for RTPBuffer changes.
9663 * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
9664 (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
9665 (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
9666 (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
9667 (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
9668 (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
9669 (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
9670 (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
9671 (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
9672 (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
9673 (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
9674 (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
9675 (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
9676 (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
9677 (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
9678 (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
9679 (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
9680 (gst_rtpbuffer_get_payload):
9681 * gst-libs/gst/rtp/gstrtpbuffer.h:
9682 Don't subclass GstBuffer but add methods and helper functions
9683 to construct and manipulate RTP packets in regular GstBuffers.
9685 2005-08-18 Stefan Kost <ensonic@users.sf.net>
9687 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
9688 moved statement below switch
9689 * gst/volume/gstvolume.c: (gst_volume_class_init):
9692 2005-08-16 Wim Taymans <wim@fluendo.com>
9694 * gst-libs/gst/audio/gstbaseaudiosrc.c:
9695 (gst_base_audio_src_change_state):
9696 Open and close device in READY<->NULL state change.
9698 2005-08-16 Andy Wingo <wingo@pobox.com>
9700 * examples/seeking/Makefile.am: Don't compile non-compiling
9701 compiled objects with the compiler.
9703 * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
9706 2005-08-12 Philippe Khalaf <burger@speedy.org>
9707 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9708 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9709 Made a thread to release the queue.
9710 Removed timestamp conversion for now.
9712 2005-08-10 Philippe Khalaf <burger@speedy.org>
9713 * gst-libs/gst/rtp/gstbasertpdepayload.c:
9714 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9715 Added rtp timestamp -> gst timestamp conversion.
9716 Fixed several problems with queue.
9718 2005-08-09 Tim-Philipp M??ller <tim at centricular dot net>
9720 * gst-libs/gst/audio/gstaudioclock.h:
9721 * gst-libs/gst/audio/gstaudiofilter.h:
9722 * gst-libs/gst/audio/gstaudiosink.h:
9723 * gst-libs/gst/audio/gstaudiosrc.h:
9724 * gst-libs/gst/audio/gstbaseaudiosink.h:
9725 * gst-libs/gst/audio/gstbaseaudiosrc.h:
9726 * gst-libs/gst/audio/gstringbuffer.h:
9727 * gst-libs/gst/net/gstnetbuffer.h:
9728 * gst-libs/gst/rtp/gstbasertpdepayload.h:
9729 * gst-libs/gst/rtp/gstrtpbuffer.h:
9730 Add padding (you will need to rebuild gst-plugins-base,
9731 gst-plugins and all applications afterwards!)
9733 2005-08-09 Tim-Philipp M??ller <tim at centricular dot net>
9735 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
9736 (gst_riff_parse_chunk):
9737 Fix bug in debug message and add some more debug messages.
9739 2005-08-08 Edward Hervey <edward@fluendo.com>
9741 * gst-libs/gst/riff/riff-media.c:
9742 backported updates since branch
9744 2005-08-08 Andy Wingo <wingo@pobox.com>
9746 * gst-libs/gst/audio/gstbaseaudiosink.c
9747 (gst_base_audio_sink_change_state): Open the device in NULL->READY
9748 like good elements should. Close on READY->NULL too.
9750 * gst-libs/gst/audio/gstaudiosink.c
9751 (gst_audioringbuffer_open_device,
9752 (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
9753 (gst_audioringbuffer_release): Updates for new ring buffer API,
9754 hook into the new audio sink api.
9756 * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
9757 (GstAudioSinkClass.close): Just open and close the device -- no
9758 resource allocation or configuration.
9759 (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
9760 vmethods, handle device setup and resource allocation.
9762 * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
9763 (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
9766 * gst-libs/gst/audio/gstringbuffer.h
9767 (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
9770 * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
9771 (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
9772 New API functions. The device should be opened before acquiring
9773 and closed after releasing.
9775 2005-08-08 Tim-Philipp M??ller <tim at centricular dot net>
9777 * gst-libs/gst/interfaces/mixer.h:
9778 Reset padding to GST_PADDING.
9780 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9782 * gst/playback/gstplaybin.c: (remove_sinks):
9783 Remove visualization from parent explicitely; works around some
9784 apparent refcount issue that I haven't tracked down yet.
9786 2005-08-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9788 * ext/alsa/gstalsasink.c: (set_hwparams):
9789 Assign debug category, add negotiation debug msgs.
9791 2005-08-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9793 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
9794 Fix error code for file-not-found to NOT_FOUND.
9796 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
9798 * common/gtk-doc-plugins.mak:
9799 * docs/plugins/Makefile.am:
9800 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9801 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9802 renamed to actual element names, so much nicer to look at
9803 * docs/plugins/tmpl/gstmultifdsink.sgml:
9805 * docs/plugins/tmpl/multifdsink.sgml:
9806 * docs/plugins/tmpl/tcpserversink.sgml:
9808 * ext/alsa/gstalsa.c:
9809 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
9810 * ext/ogg/gstoggmux.c:
9811 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
9812 * gst/playback/gstdecodebin.c:
9813 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
9814 * gst/tcp/gsttcpserversink.c:
9815 various fixes and documentation additions
9817 2005-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
9819 * common/Makefile.am:
9820 * common/gstdoc-scangobj:
9821 * common/gtk-doc-plugins.mak:
9822 * common/gtk-doc.mak:
9823 add a custom scangobj that uses the registry
9824 add a custom gtk-doc-plugins.mak that uses it
9825 some doc build fixes
9828 * docs/plugins/Makefile.am:
9829 * docs/plugins/gst-plugins-base-plugins-docs.sgml:
9830 * docs/plugins/gst-plugins-base-plugins-sections.txt:
9831 * docs/plugins/gst-plugins-base-plugins.types:
9832 * docs/plugins/tmpl/gstmultifdsink.sgml:
9833 add docs for one element, multifdsink
9834 * gst/adder/gstadder.h:
9835 * gst/volume/gstvolume.h:
9836 don't privatize enum
9837 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
9838 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
9839 (gst_sync_method_get_type), (gst_client_status_get_type),
9840 (gst_multifdsink_class_init),
9841 (gst_multifdsink_client_queue_buffer),
9842 (gst_multifdsink_handle_client_write):
9843 * gst/tcp/gstmultifdsink.h:
9845 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
9846 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
9847 (gst_tcpclientsink_render):
9848 * gst/tcp/gsttcpclientsink.h:
9849 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
9850 (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
9851 (gst_tcpclientsrc_start):
9852 * gst/tcp/gsttcpclientsrc.h:
9853 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
9854 (gst_tcpserversrc_init), (gst_tcpserversrc_create):
9855 * gst/tcp/gsttcpserversrc.h:
9856 * gst/typefind/gsttypefindfunctions.c:
9857 remove superfluous Type stuff
9859 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9861 * gst/playback/gstplaybin.c: (gen_video_element):
9864 2005-08-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9866 * gst-libs/gst/gconf/gconf.c:
9867 * gst-libs/gst/gconf/gconf.h:
9868 Fix some Andy Problem [tm].
9870 2005-08-04 Andy Wingo <wingo@pobox.com>
9872 * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
9873 * gst/ffmpegcolorspace/gstffmpegcolorspace.c
9874 (gst_ffmpegcsp_get_size): Adapt to API changes.
9876 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
9877 Implement an in-place do-nothing transform.
9879 2005-08-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9881 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
9882 (gst_ximagesink_renegotiate_size):
9883 Do not set new window sizes yet if we prepare a new buffer size
9884 for upstream renegotiation (software scaling) at some point in the
9885 future, because this new size waqs not actually accepted yet. Once
9886 accepted, renegotiation later on will set the new sizes just fine.
9887 Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
9890 2005-08-03 Andy Wingo <wingo@pobox.com>
9892 * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
9893 (gst_ximagesink_buffer_alloc):
9894 Protect the height, width, and desired_caps with the pool_lock.
9895 Fixes videotestsrc ! queue ! ximagesink.
9897 2005-08-02 Edward Hervey <edward@fluendo.com>
9899 * gst/volume/gstvolume.c:
9900 include left from controller cleanup
9902 2005-08-02 Jan Schmidt <thaytan@mad.scientist.com>
9903 * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
9904 Stop collectpads before calling the parent state
9905 change function on PAUSED->READY.
9907 2005-08-01 Jan Schmidt <thaytan@mad.scientist.com>
9909 When testing for X libs, use the X CFlags
9910 * gst/adder/gstadder.c: (gst_adder_change_state):
9911 Stop the collectpads before calling parent state change function
9912 on PAUSED->READY, otherwise we deadlock deactivating pads.
9914 2005-08-01 Stefan Kost <ensonic@users.sf.net>
9917 * docs/libs/tmpl/gstcolorbalance.sgml:
9918 * docs/libs/tmpl/gstmixer.sgml:
9919 * examples/Makefile.am:
9920 * gst/sine/Makefile.am:
9921 * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
9922 (gst_sinesrc_set_property), (plugin_init):
9923 * gst/sine/gstsinesrc.h:
9924 * gst/volume/Makefile.am:
9925 * gst/volume/gstvolume.c: (gst_volume_set_volume),
9926 (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
9927 (volume_process_float), (volume_process_int16),
9928 (volume_set_property), (plugin_init):
9929 * gst/volume/gstvolume.h:
9930 deactivate and remove dparams (libgstcontrol)
9932 2005-07-29 Wim Taymans <wim@fluendo.com>
9934 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
9935 Convert me to BaseTransform!! help..
9937 2005-07-29 Andy Wingo <wingo@pobox.com>
9939 * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
9942 * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
9943 support of both endiannesses.
9945 2005-07-28 Tim-Philipp M??ller <tim at centricular dot net>
9947 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9948 Fix confusing debug message (s/event/query/)
9950 2005-07-28 Tim-Philipp M??ller <tim at centricular dot net>
9952 * gst/videotestsrc/videotestsrc.h:
9953 Use "_stdint.h" instead of <stdint.h>
9955 2005-07-27 Wim Taymans <wim@fluendo.com>
9957 * ext/vorbis/Makefile.am:
9958 Revert wrong commit.
9960 2005-07-27 Wim Taymans <wim@fluendo.com>
9962 * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
9963 More compilation fixen.
9965 2005-07-27 Wim Taymans <wim@fluendo.com>
9967 * gst-libs/gst/audio/gstbaseaudiosink.c:
9968 (gst_base_audio_sink_event), (gst_base_audio_sink_render),
9969 (gst_base_audio_sink_create_ringbuffer),
9970 (gst_base_audio_sink_change_state):
9973 2005-07-27 Wim Taymans <wim@fluendo.com>
9975 * examples/seeking/seek.c: (setup_dynamic_link),
9976 (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
9977 (query_positions_elems), (query_positions_pads), (do_seek):
9978 Update seek example.
9980 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
9981 (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
9982 (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
9983 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
9984 (gst_ogg_demux_handle_event),
9985 (gst_ogg_demux_deactivate_current_chain),
9986 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
9987 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
9988 (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
9989 (gst_ogg_demux_loop):
9990 * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
9991 * ext/theora/theoradec.c: (theora_dec_src_event),
9992 (theora_dec_src_getcaps), (theora_dec_sink_event),
9993 (theora_dec_push), (theora_dec_chain):
9994 * ext/vorbis/Makefile.am:
9995 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
9996 (vorbis_dec_sink_event), (vorbis_dec_push),
9997 (vorbis_handle_data_packet):
9998 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
9999 (gst_vorbisenc_chain):
10000 * gst/playback/gststreaminfo.c: (cb_probe):
10001 * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
10002 * gst/videorate/gstvideorate.c: (gst_videorate_event):
10003 * gst/videoscale/gstvideoscale.c:
10004 (gst_videoscale_handle_src_event):
10005 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
10006 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
10007 (gst_ximagesink_navigation_send_event):
10008 * sys/xvimage/xvimagesink.c:
10009 (gst_xvimagesink_navigation_send_event):
10010 Various event updates and cleanups
10012 2005-07-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10014 * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
10015 Fix segfault for I420/YV12.
10017 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10019 * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
10022 2005-07-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10024 * gst/playback/gstplaybin.c: (gen_video_element),
10025 (gen_audio_element):
10026 Switch to auto*sink elements as default sinks; add volume element
10027 so that volume control in totem works.
10029 2005-07-21 Wim Taymans <wim@fluendo.com>
10031 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
10032 * gst/playback/gstplaybin.c: (setup_sinks),
10033 (gst_play_bin_change_state):
10034 Refcount fix and more comments.
10036 2005-07-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
10038 * sys/ximage/Makefile.am:
10039 * sys/ximage/ximage.c: (plugin_init):
10040 * sys/ximage/ximagesink.c:
10041 Prepare for adding ximagesrc, rename of plugin to ximage etc.
10044 2005-07-21 Wim Taymans <wim@fluendo.com>
10046 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
10047 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
10048 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
10049 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
10050 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
10051 (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
10052 (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
10053 (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
10054 (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
10055 Generate correct disconts for live chained oggs.
10057 * gst-libs/gst/audio/gstbaseaudiosink.c:
10058 (gst_base_audio_sink_render),
10059 (gst_base_audio_sink_create_ringbuffer),
10060 (gst_base_audio_sink_change_state):
10061 Handle discont math correctly.
10063 * gst/playback/gstplaybin.c: (add_sink):
10064 Some small debug cleanup.
10066 2005-07-21 Wim Taymans <wim@fluendo.com>
10068 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
10069 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
10070 (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
10071 (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
10072 (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
10073 (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
10074 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
10075 (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
10076 (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
10077 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
10078 (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
10079 (gst_ogg_demux_change_state), (gst_ogg_print):
10080 Reorganize code to send the right disconts when in streaming
10083 2005-07-20 Andy Wingo <wingo@pobox.com>
10085 * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
10086 fix (?), fixes a seggie mcfalterson (#310894).
10088 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10090 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
10091 (gst_ogg_mux_set_header_on_caps):
10092 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
10093 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
10094 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
10095 * gst-libs/gst/audio/multichannel.c:
10096 (gst_audio_set_channel_positions),
10097 (gst_audio_set_structure_channel_positions_list):
10098 * gst/playback/gstdecodebin.c: (dynamic_create):
10099 * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
10100 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
10101 Fixes for API changes in core.
10103 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10105 * gst/playback/gstplaybasebin.c: (fill_buffer):
10106 Use _new_custom() so we can set custom message types for buffering
10109 2005-07-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10112 * gst-libs/gst/Makefile.am:
10113 * gst-libs/gst/gconf/.cvsignore:
10114 * gst-libs/gst/gconf/Makefile.am:
10115 * gst-libs/gst/gconf/test-gconf.c:
10116 * pkgconfig/Makefile.am:
10117 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
10118 * pkgconfig/gstreamer-gconf.pc.in:
10119 Remove gconf stuff, use gconf elements instead from now on.
10121 2005-07-20 Wim Taymans <wim@fluendo.com>
10123 * gst-libs/gst/audio/TODO:
10124 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
10125 (gst_audio_clock_get_internal_time):
10126 * gst-libs/gst/audio/gstaudioclock.h:
10127 * gst-libs/gst/audio/gstbaseaudiosink.c:
10128 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
10129 (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
10130 (gst_base_audio_sink_render),
10131 (gst_base_audio_sink_create_ringbuffer),
10132 (gst_base_audio_sink_change_state):
10133 Make sure the audio clock always returns an increasing value.
10135 2005-07-19 Andy Wingo <wingo@pobox.com>
10137 * gst/videotestsrc/: Cleanups.
10139 2005-07-19 Wim Taymans <wim@fluendo.com>
10141 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
10144 2005-07-19 Wim Taymans <wim@fluendo.com>
10146 * examples/seeking/seek.c: (make_dv_pipeline),
10147 (make_vorbis_theora_pipeline), (query_rates),
10148 (query_positions_elems), (query_positions_pads), (do_seek):
10149 Make correct DV pipeline.
10151 2005-07-18 Andy Wingo <wingo@pobox.com>
10153 * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
10154 default. Also because it's the only thing that really works. (This
10155 is used in the GConf elements).
10156 Use AS_LIBTOOL_TAGS.
10158 2005-07-18 Wim Taymans <wim@fluendo.com>
10160 * gst/playback/gstdecodebin.c: (remove_element_chain):
10161 * gst/playback/gstplaybin.c: (add_sink):
10162 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
10163 (gst_stream_info_set_mute):
10164 * gst/playback/gststreamselector.c:
10165 (gst_stream_selector_get_linked_pad),
10166 (gst_stream_selector_getcaps), (gst_stream_selector_chain):
10167 More leak and compile fixes.
10169 2005-07-18 Wim Taymans <wim@fluendo.com>
10171 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
10172 (query_rates), (query_positions_elems), (query_positions_pads),
10173 (do_seek), (seek_cb), (stop_seek):
10174 Updated seek example.
10176 * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
10177 * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
10178 (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
10179 * gst/playback/gstplaybin.c: (add_sink):
10180 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
10181 (gst_stream_info_set_mute):
10182 Some refcount leak fixes.
10184 2005-07-16 Wim Taymans <wim@fluendo.com>
10186 * gst-libs/gst/audio/gstbaseaudiosink.c:
10187 (gst_base_audio_sink_render):
10188 Align samples even if we have roundoff errors in the
10189 timestamp conversion.
10191 2005-07-16 Wim Taymans <wim@fluendo.com>
10193 * docs/libs/tmpl/gstringbuffer.sgml:
10194 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
10195 (query_rates), (query_positions_elems), (query_positions_pads),
10196 (update_scale), (do_seek):
10197 Updated seek example.
10199 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
10200 (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
10201 (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
10202 (gst_ogg_demux_loop):
10203 Push out correct discont values.
10205 * ext/theora/theoradec.c: (theora_dec_src_convert),
10206 (theora_dec_sink_convert), (theora_dec_src_getcaps),
10207 (theora_dec_sink_event), (theora_handle_type_packet),
10208 (theora_handle_header_packet), (theora_dec_push),
10209 (theora_handle_data_packet), (theora_dec_chain),
10210 (theora_dec_change_state):
10211 Better timestamping.
10213 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
10214 (vorbis_dec_sink_event), (vorbis_dec_push),
10215 (vorbis_handle_data_packet), (vorbis_dec_chain):
10216 * ext/vorbis/vorbisdec.h:
10217 Better timestamping.
10219 * gst-libs/gst/audio/gstbaseaudiosink.c:
10220 (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
10221 (gst_base_audio_sink_event), (gst_base_audio_sink_render):
10222 Handle syncing on timestamps instead of sample offsets. Make
10223 use of DISCONT values as described in design docs.
10225 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10226 (gst_base_audio_src_get_time):
10227 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
10228 (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
10229 (gst_ring_buffer_read):
10230 * gst-libs/gst/audio/gstringbuffer.h:
10231 * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
10232 (gst_ximagesink_show_frame):
10233 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
10234 Correcly convert buffer timestamp to stream time.
10236 2005-07-16 Wim Taymans <wim@fluendo.com>
10238 * gst/audioconvert/gstaudioconvert.c:
10239 (gst_audio_convert_get_buffer):
10240 Timestamp buffers correctly.
10242 * gst/playback/gstplaybin.c: (gen_video_element):
10243 Make internal fakesink silent.
10245 2005-07-15 Wim Taymans <wim@fluendo.com>
10247 * gst/ffmpegcolorspace/Makefile.am:
10248 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10249 (gst_ffmpegcsp_caps_remove_format_info),
10250 (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
10251 (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
10252 (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
10253 (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
10254 Ported ffmpegcolorspace to basetransform.
10256 * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
10257 * gst/volume/gstvolume.c: (volume_transform):
10260 2005-07-14 Wim Taymans <wim@fluendo.com>
10262 * gst/videotestsrc/Makefile.am:
10263 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
10264 (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
10265 (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
10266 (gst_videotestsrc_init), (gst_videotestsrc_event),
10267 (gst_videotestsrc_create), (gst_videotestsrc_start),
10268 (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
10269 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
10270 (gst_videotestsrc_get_property):
10271 * gst/videotestsrc/gstvideotestsrc.h:
10272 Make videotestsrc a pushsrc.
10274 2005-07-14 Wim Taymans <wim@fluendo.com>
10276 * gst/tcp/gstfdset.c: (gst_fdset_free):
10277 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
10278 (gst_multifdsink_add), (gst_multifdsink_remove),
10279 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
10280 (gst_multifdsink_remove_client_link),
10281 (gst_multifdsink_client_queue_data),
10282 (gst_multifdsink_client_queue_caps),
10283 (gst_multifdsink_client_queue_buffer),
10284 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
10285 (gst_multifdsink_stop):
10286 * gst/tcp/gstmultifdsink.h:
10289 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
10290 Also draw image when not from a pool.
10292 2005-07-14 Wim Taymans <wim@fluendo.com>
10294 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
10295 (mute_stream), (silence_stream):
10296 Small debug additions.
10298 2005-07-14 Wim Taymans <wim@fluendo.com>
10300 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
10301 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
10302 (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
10303 Better error recovery, ignore unconnected pads and
10306 2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
10308 * docs/libs/tmpl/gstaudio.sgml:
10309 * docs/libs/tmpl/gstcolorbalance.sgml:
10310 * docs/libs/tmpl/gstgconf.sgml:
10311 * docs/libs/tmpl/gstmixer.sgml:
10312 * docs/libs/tmpl/gstringbuffer.sgml:
10313 * docs/libs/tmpl/gsttuner.sgml:
10314 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10315 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
10316 (gst_tcpclientsrc_class_init):
10317 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
10318 (gst_tcpserversrc_class_init):
10319 * sys/v4l/gstv4lelement.c:
10320 more autistic cleanliness in functions/names/defines
10322 2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
10325 make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
10326 added manually to each Makefile.am so we are sure it goes
10327 *last* and doesn't add -L flags before linking in libs of our
10328 own, like, say, internal .la libs, that then accidentally pick
10329 up the installed copy.
10330 * docs/libs/Makefile.am:
10331 * ext/alsa/Makefile.am:
10332 * ext/cdparanoia/Makefile.am:
10333 * ext/gnomevfs/Makefile.am:
10334 * ext/libvisual/Makefile.am:
10335 * ext/ogg/Makefile.am:
10336 * ext/theora/Makefile.am:
10337 * ext/vorbis/Makefile.am:
10338 * gst-libs/gst/video/Makefile.am:
10339 * gst/adder/Makefile.am:
10340 * gst/audioconvert/Makefile.am:
10341 * gst/audiorate/Makefile.am:
10342 * gst/audioscale/Makefile.am:
10343 * gst/ffmpegcolorspace/Makefile.am:
10344 * gst/playback/Makefile.am:
10345 * gst/sine/Makefile.am:
10346 * gst/subparse/Makefile.am:
10347 * gst/tags/Makefile.am:
10348 * gst/tcp/Makefile.am:
10349 * gst/typefind/Makefile.am:
10350 * gst/videorate/Makefile.am:
10351 * gst/videoscale/Makefile.am:
10352 * gst/videotestsrc/Makefile.am:
10353 * gst/volume/Makefile.am:
10354 * sys/v4l/Makefile.am:
10355 * sys/ximage/Makefile.am:
10356 * sys/xvimage/Makefile.am:
10357 adapt properly to this change. This should make sure that
10358 plugins and libs properly link to the as-yet-uninstalled
10359 copies of stuff like libgstinterfaces and libgstvideo
10361 2005-07-13 Andy Wingo <wingo@pobox.com>
10363 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
10364 (gst_v4lsrc_fixate): Fixate on format as well.
10366 * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy)
10367 (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
10368 buffer points to it.
10369 (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
10370 rather just doing X calls ourselves. Also fixes a memleak.
10372 2005-07-12 Andy Wingo <wingo@pobox.com>
10374 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property)
10375 (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init)
10376 (gst_v4lsrc_create): Re-add the copy-mode property, default to
10377 TRUE to avoid deadlocks if an element holds on to our buffers.
10379 2005-07-11 Thomas Vander Stichele <thomas at apestaart dot org>
10381 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10382 (gst_sinesrc_init), (gst_sinesrc_create),
10383 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
10384 (gst_sinesrc_start):
10385 * gst/sine/gstsinesrc.h:
10386 removing num-buffers property before moving it
10388 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
10391 use overridable ERROR_CFLAGS
10392 * docs/libs/gst-plugins-base-libs.types:
10393 * docs/libs/tmpl/gstringbuffer.sgml:
10394 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
10395 (gst_alsasink_class_init):
10396 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
10397 (gst_alsasrc_class_init):
10398 * gst-libs/gst/audio/audio.h:
10399 * gst-libs/gst/audio/gstaudioclock.h:
10400 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
10401 (gst_audio_filter_base_init), (gst_audio_filter_class_init),
10402 (gst_audio_filter_link), (gst_audio_filter_init),
10403 (gst_audio_filter_chain), (gst_audio_filter_set_property),
10404 (gst_audio_filter_get_property),
10405 (gst_audio_filter_class_add_pad_templates):
10406 * gst-libs/gst/audio/gstaudiofilter.h:
10407 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
10408 (gst_audio_filter_template_get_type),
10409 (gst_audio_filter_template_base_init),
10410 (gst_audio_filter_template_class_init),
10411 (gst_audio_filter_template_init),
10412 (gst_audio_filter_template_set_property),
10413 (gst_audio_filter_template_get_property), (plugin_init),
10414 (gst_audio_filter_template_setup),
10415 (gst_audio_filter_template_filter),
10416 (gst_audio_filter_template_filter_inplace):
10417 * gst-libs/gst/audio/gstaudiosink.c:
10418 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
10419 (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
10420 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
10421 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
10422 (gst_audio_sink_base_init), (gst_audio_sink_class_init),
10423 (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
10424 * gst-libs/gst/audio/gstaudiosink.h:
10425 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
10426 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
10427 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
10428 (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
10429 (gst_audioringbuffer_delay), (gst_audio_src_base_init),
10430 (gst_audio_src_class_init), (gst_audio_src_init),
10431 (gst_audio_src_create_ringbuffer):
10432 * gst-libs/gst/audio/gstaudiosrc.h:
10433 * gst-libs/gst/audio/gstbaseaudiosink.c:
10434 (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
10435 (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
10436 (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
10437 (gst_base_audio_sink_set_property),
10438 (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
10439 (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
10440 (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
10441 (gst_base_audio_sink_create_ringbuffer),
10442 (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
10443 * gst-libs/gst/audio/gstbaseaudiosink.h:
10444 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10445 (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
10446 (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
10447 (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
10448 (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
10449 (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
10450 (gst_base_audio_src_event), (gst_base_audio_src_create),
10451 (gst_base_audio_src_create_ringbuffer),
10452 (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
10453 * gst-libs/gst/audio/gstbaseaudiosrc.h:
10454 * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
10455 (gst_ring_buffer_class_init), (gst_ring_buffer_init),
10456 (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
10457 (gst_ring_buffer_debug_spec_caps),
10458 (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
10459 (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
10460 (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
10461 (gst_ring_buffer_start), (gst_ring_buffer_pause),
10462 (gst_ring_buffer_stop), (gst_ring_buffer_delay),
10463 (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
10464 (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
10465 (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
10466 (gst_ring_buffer_clear):
10467 * gst-libs/gst/audio/gstringbuffer.h:
10468 * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
10469 (gst_video_sink_class_init), (gst_video_sink_get_type):
10470 * gst-libs/gst/video/videosink.h:
10471 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
10472 (gst_multifdsink_class_init),
10473 (gst_multifdsink_handle_client_write),
10474 (gst_multifdsink_change_state):
10475 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
10476 (gst_tcpclientsink_setcaps):
10477 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
10478 (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
10479 (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
10480 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
10481 (gst_ximagesink_send_pending_navigation),
10482 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
10483 (gst_ximagesink_class_init), (gst_ximagesink_get_type):
10484 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
10485 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
10486 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
10487 (gst_xvimagesink_send_pending_navigation),
10488 (gst_xvimagesink_navigation_send_event),
10489 (gst_xvimagesink_set_xwindow_id),
10490 (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
10491 (gst_xvimagesink_get_type):
10492 more macro splitting
10494 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
10496 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
10497 plug a memleak, allows me to import 1479 albums in one go
10499 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
10500 (vorbis_handle_type_packet), (vorbis_dec_chain),
10501 (vorbis_dec_change_state):
10502 fix some format strings
10504 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
10506 * docs/libs/tmpl/gstcolorbalance.sgml:
10507 * docs/libs/tmpl/gstmixer.sgml:
10508 * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
10509 (gst_alsasink_set_property), (gst_alsasink_get_property):
10510 * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
10511 (gst_alsasrc_set_property), (gst_alsasrc_get_property):
10512 add device property
10514 2005-07-08 Thomas Vander Stichele <thomas at apestaart dot org>
10516 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
10517 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
10518 (audiocast_register_listener), (audiocast_thread_run),
10519 (gst_gnomevfssrc_send_additional_headers_callback),
10520 (gst_gnomevfssrc_received_headers_callback),
10521 (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
10522 (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
10523 (gst_gnomevfssrc_get_size):
10524 add/clean up debugging
10525 * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
10528 2005-07-07 Andy Wingo <wingo@pobox.com>
10530 * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
10531 framerate. Need to get a handle on when exactly this function is
10534 * sys/v4l/v4lsrc_calls.h:
10535 * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
10536 (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
10537 (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
10539 * sys/v4l/v4l_calls.h: Cast to V4lElement.
10540 * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
10541 v4lelements are sources.
10543 * sys/v4l/gstv4lxoverlay.h:
10544 * sys/v4l/gstv4lxoverlay.c:
10545 * sys/v4l/gstv4ltuner.h:
10546 * sys/v4l/gstv4ltuner.c: Header loc fixen.
10548 * sys/v4l/gstv4lsrc.h:
10549 * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
10550 PushSrc/BaseSrc. Removed most sync-related properties, videorate
10551 or something should handle that. Made a live source.
10553 * sys/v4l/gstv4lelement.h:
10554 * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
10555 signals. Some cleanups.
10557 * sys/v4l/gstv4lcolorbalance.h: Interface header update.
10559 * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
10562 * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
10565 * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
10567 2005-07-07 Wim Taymans <wim@fluendo.com>
10569 * ext/theora/theoradec.c: (theora_get_query_types),
10570 (theora_dec_src_getcaps), (theora_dec_push):
10571 * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
10572 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
10573 Remove deprecated/unused query types.
10575 2005-07-06 Wim Taymans <wim@fluendo.com>
10577 * ext/alsa/Makefile.am:
10578 * ext/alsa/gstalsaplugin.c: (plugin_init):
10579 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
10580 * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
10581 (gst_alsasrc_dispose), (gst_alsasrc_base_init),
10582 (gst_alsasrc_class_init), (gst_alsasrc_init),
10583 (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
10584 (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
10585 (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
10586 (gst_alsasrc_reset):
10587 * ext/alsa/gstalsasrc.h:
10588 * gst-libs/gst/audio/Makefile.am:
10589 * gst-libs/gst/audio/gstaudiosink.c:
10590 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
10591 (gst_audioringbuffer_start):
10592 * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
10593 (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
10594 (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
10595 (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
10596 (gst_audioringbuffer_release), (gst_audioringbuffer_start),
10597 (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
10598 (gst_audiosrc_base_init), (gst_audiosrc_class_init),
10599 (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
10600 * gst-libs/gst/audio/gstaudiosrc.h:
10601 * gst-libs/gst/audio/gstbaseaudiosink.c:
10602 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
10603 (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
10604 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
10605 * gst-libs/gst/audio/gstbaseaudiosrc.c:
10606 (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
10607 (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
10608 (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
10609 (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
10610 (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
10611 (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
10612 (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
10613 (gst_baseaudiosrc_change_state):
10614 * gst-libs/gst/audio/gstbaseaudiosrc.h:
10615 * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
10616 (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
10617 (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
10618 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
10619 (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
10620 (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
10621 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
10622 * gst-libs/gst/audio/gstringbuffer.h:
10623 Added audiosource base classes.
10624 Ported alsasrc, still very basic.
10626 2005-07-06 Wim Taymans <wim@fluendo.com>
10628 * ext/theora/theoradec.c: (theora_dec_src_getcaps),
10629 (theora_dec_push), (theora_handle_data_packet):
10630 Prepare for better timestamp fix later.
10632 * gst/audioconvert/gstaudioconvert.c:
10633 List most accurate caps first
10635 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
10636 Use proper pad task function.
10638 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
10639 (gst_xvimagesink_show_frame):
10640 Fix deadlock when alloc failed.
10642 2005-07-05 Andy Wingo <wingo@pobox.com>
10644 * ext/gnomevfs/gstgnomevfssrc.c:
10645 * gst/sine/gstsinesrc.c:
10646 * gst/tcp/gsttcpserversrc.c:
10647 * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
10649 * sys/v4l/: Port from 0.8.
10651 * Many files: Null if we got it....
10653 2005-07-05 Andy Wingo <wingo@pobox.com>
10655 * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read):
10656 * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
10659 2005-07-05 Wim Taymans <wim@fluendo.com>
10662 * gst/tcp/Makefile.am:
10664 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
10665 (gst_multifdsink_base_init), (gst_multifdsink_class_init),
10666 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
10667 (is_sync_frame), (gst_multifdsink_handle_client_write),
10668 (gst_multifdsink_render), (gst_multifdsink_start),
10669 (gst_multifdsink_stop), (gst_multifdsink_change_state):
10670 * gst/tcp/gstmultifdsink.h:
10671 * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
10672 (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
10673 (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
10674 * gst/tcp/gsttcp.h:
10675 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
10676 (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
10677 (gst_tcpclientsink_render), (gst_tcpclientsink_start),
10678 (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
10679 * gst/tcp/gsttcpclientsink.h:
10680 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
10681 (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
10682 (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
10683 (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
10684 (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
10685 * gst/tcp/gsttcpclientsrc.h:
10686 * gst/tcp/gsttcpplugin.c: (plugin_init):
10687 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
10688 * gst/tcp/gsttcpserversink.h:
10689 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
10690 (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
10691 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
10692 (gst_tcpserversrc_create), (gst_tcpserversrc_start),
10693 (gst_tcpserversrc_stop):
10694 * gst/tcp/gsttcpserversrc.h:
10695 * gst/tcp/gsttcpsink.c:
10696 * gst/tcp/gsttcpsink.h:
10697 * gst/tcp/gsttcpsrc.c:
10698 * gst/tcp/gsttcpsrc.h:
10699 Ported tcp plugins to 0.9.
10702 2005-07-05 Andy Wingo <wingo@pobox.com>
10704 * gst/playback/gstplaybasebin.c (fill_buffer):
10705 message_new_application fixen.
10707 * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
10710 2005-07-04 Wim Taymans <wim@fluendo.com>
10712 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
10713 Set caps on output buffer.
10715 2005-07-04 Andy Wingo <wingo@pobox.com>
10717 * ext/gnomevfs/gstgnomevfssrc.c
10718 (gst_gnomevfssrc_received_headers_callback)
10719 (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
10722 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
10723 No refcount leakage.
10725 * configure.ac: Enable -Werror.
10727 * ext/theora/theoradec.c (theora_dec_src_getcaps):
10728 * gst/audioconvert/bufferframesconvert.c
10729 (buffer_frames_convert_fixate):
10730 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
10731 (gst_audio_convert_fixate):
10732 * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
10733 (gst_sinesrc_create): Fixate func changes.
10735 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
10736 (gst_ximagesink_buffer_alloc): Unused var.
10738 2005-07-01 Andy Wingo <wingo@pobox.com>
10740 * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
10741 getcaps to do explicit caps. Needs to be done in all decoders,
10742 possibly via a base class.
10744 * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
10746 * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
10747 caps on the sink pad, just rely on the pad template. Also, setting
10748 ANY caps on a pad is not valid because the caps are not fixed.
10750 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
10751 caps on the buffer, and get the width from the desired_caps if
10753 (gst_ximagesink_renegotiate_size): Implement via setting the
10754 desired_caps on the ximagesink.
10755 (gst_ximagesink_setcaps): Only reset the width of the player if it
10756 wasn't already set. Not sure if this is right.
10757 (gst_ximagesink_show_frame): Memcpy only for normal buffers.
10759 * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
10760 that the user wants. NULL unless the window has been resized.
10762 * gst/volume/gstvolume.c (volume_transform): Adapt to
10763 basetransform refcount changes.
10765 2005-07-01 Andy Wingo <wingo@pobox.com>
10767 * gst/videoscale/gstvideoscale.c:
10768 * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
10769 from BaseTransform, implements a transform_caps. Removed dead code
10770 including some PAR stuff that was never reached -- should probably
10771 be added back somehow.
10773 2005-07-01 Andy Wingo <wingo@pobox.com>
10775 * gst/videoscale: Merge David's work from 0.8 branch. Changes to
10778 2005-06-30 Thomas Vander Stichele <thomas at apestaart dot org>
10781 * docs/libs/Makefile.am:
10782 * docs/libs/gst-plugins-libs.types:
10783 * ext/alsa/Makefile.am:
10784 * ext/alsa/gstalsamixer.h:
10785 * ext/alsa/gstalsamixeroptions.h:
10786 * ext/alsa/gstalsamixertrack.h:
10787 * gst-libs/gst/Makefile.am:
10788 * gst-libs/gst/colorbalance/.cvsignore:
10789 * gst-libs/gst/colorbalance/Makefile.am:
10790 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
10791 * gst-libs/gst/colorbalance/colorbalance.c:
10792 * gst-libs/gst/colorbalance/colorbalance.h:
10793 * gst-libs/gst/colorbalance/colorbalance.vcproj:
10794 * gst-libs/gst/colorbalance/colorbalancechannel.c:
10795 * gst-libs/gst/colorbalance/colorbalancechannel.h:
10796 * gst-libs/gst/interfaces/Makefile.am:
10797 * gst-libs/gst/interfaces/colorbalance.c:
10798 (gst_color_balance_class_init):
10799 * gst-libs/gst/interfaces/colorbalance.h:
10800 * gst-libs/gst/interfaces/interfaces-marshal.list:
10801 * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
10802 * gst-libs/gst/interfaces/mixer.h:
10803 * gst-libs/gst/interfaces/mixeroptions.h:
10804 * gst-libs/gst/interfaces/navigation.c:
10805 * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
10806 * gst-libs/gst/interfaces/tuner.h:
10807 * gst/volume/Makefile.am:
10808 * gst/volume/gstvolume.c:
10809 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
10810 * sys/ximage/Makefile.am:
10811 * sys/ximage/ximagesink.c:
10812 * sys/xvimage/Makefile.am:
10813 * sys/xvimage/xvimagesink.c:
10814 fold in all interfaces into an interfaces dir, preserving CVS
10817 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10819 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10820 Fix build after riff changes.
10822 2005-06-30 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10824 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
10825 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
10826 (gst_riff_create_video_template_caps),
10827 (gst_riff_create_audio_template_caps),
10828 (gst_riff_create_iavs_template_caps):
10829 * gst-libs/gst/riff/riff-media.h:
10830 * gst-libs/gst/riff/riff-read.h:
10831 * gst-libs/gst/riff/riff.c: (gst_riff_init):
10832 Add gst_riff_init() to initialize the debug category, instead
10833 of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
10835 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10837 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
10838 Oops, I shouldn't apply hacks.
10840 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10842 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
10843 Remove pad_loop function which doesn't work.
10845 2005-06-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
10847 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
10848 Send EOS when deactivating.
10849 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
10850 (check_queue), (queue_threshold_reached), (queue_out_of_data),
10851 (gen_preroll_element), (probe_triggered), (mute_stream),
10852 (silence_stream), (new_decoded_pad), (setup_substreams),
10853 (set_active_source):
10854 * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
10855 (remove_sinks), (add_sink):
10856 * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
10857 Change for new probe API.
10859 2005-06-29 Wim Taymans <wim@fluendo.com>
10861 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
10862 * gst-libs/gst/audio/gstbaseaudiosink.c:
10863 (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
10864 (gst_baseaudiosink_change_state):
10865 * gst-libs/gst/audio/gstbaseaudiosink.h:
10866 * gst-libs/gst/audio/gstringbuffer.c:
10867 (gst_ringbuffer_set_callback):
10868 Fix compilation error.
10869 Ringbuffer starts out as not running.
10870 Free our clock in dispose.
10871 When releasing the ringbuffer we need to renegotiate so
10872 clear the pad caps.
10874 2005-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
10878 * docs/Makefile.am:
10879 * docs/libs/Makefile.am:
10880 * docs/libs/gst-plugins-libs-docs.sgml:
10881 * docs/libs/gst-plugins-libs-sections.txt:
10882 * docs/libs/gst-plugins-libs.types:
10883 * docs/libs/tmpl/gstaudio.sgml:
10884 * docs/libs/tmpl/gstcolorbalance.sgml:
10885 * docs/libs/tmpl/gstringbuffer.sgml:
10886 * gst-libs/gst/audio/gstringbuffer.c:
10887 (gst_ringbuffer_set_callback):
10888 reinstate gtk-doc docs for plugin libs
10890 2005-06-28 Wim Taymans <wim@fluendo.com>
10892 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
10893 (gst_ogg_demux_init):
10894 Removed pad loop function.
10896 2005-06-28 Wim Taymans <wim@fluendo.com>
10898 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
10899 If we're building a chain we are not in an error case
10900 when we queue a buffer.
10902 2005-06-28 Andy Wingo <wingo@pobox.com>
10904 * *.c: Don't cast to GstObject before reffing/unreffing.
10906 2005-06-27 Andy Wingo <wingo@pobox.com>
10908 * gst/videotestsrc/gstvideotestsrc.c
10909 (gst_videotestsrc_activate_push): Activation API changes.
10911 * gst/playback/gstdecodebin.c (gst_decode_bin_change_state)
10912 (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
10913 they have refs on the decodebin.
10915 * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
10917 (gst_ogg_pad_typefind): Don't leak a pad ref.
10918 (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
10919 (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push)
10920 (gst_ogg_demux_sink_activate_pull): Changes for activation API.
10922 2005-06-27 Edward Hervey <edward@fluendo.com>
10924 * ext/theora/theoradec.c: (theora_dec_change_state):
10925 re-arranged call to parent's state change in order to avoid locks (or
10928 2005-06-26 Edward Hervey <edward@fluendo.com>
10930 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
10931 2nd argument of 'unknow-type' signal is a GstCaps and not a
10934 2005-06-25 Jan Schmidt <thaytan@mad.scientist.com>
10935 * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
10936 Set the worker thread's running flag to TRUE before starting the
10938 * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
10939 Catch a failure to add typefind to the bin.
10941 2005-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
10943 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10944 (gst_sinesrc_init), (gst_sinesrc_create),
10945 (gst_sinesrc_set_property), (gst_sinesrc_get_property),
10946 (gst_sinesrc_start):
10947 * gst/sine/gstsinesrc.h:
10948 add num-buffers and timestamp-offset properties
10949 * gst/videotestsrc/gstvideotestsrc.c:
10950 (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
10951 (gst_videotestsrc_get_property):
10952 add timestamp-offset property
10954 2005-06-23 Christian Schaller <uraeus@gnome.org>
10956 * configure.ac: add videorate
10957 * gst-plugins-base.spec.in: add videorate
10959 2005-06-23 Wim Taymans <wim@fluendo.com>
10961 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
10962 (gst_videorate_getcaps), (gst_videorate_setcaps),
10963 (gst_videorate_event), (gst_videorate_chain):
10964 Fixed videorate, fixating an already fixated caps is not
10967 2005-06-23 Wim Taymans <wim@fluendo.com>
10970 * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
10971 Buffer on caps is not boxed anymore.
10973 2005-06-22 Wim Taymans <wim@fluendo.com>
10975 * ext/theora/theoraenc.c: (theora_set_header_on_caps):
10976 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
10977 Set buffers on caps as miniobjects and not as boxed.
10979 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
10984 === release 0.9.1 ===
10986 2005-06-19 Thomas Vander Stichele <thomas at apestaart dot org>
11007 updates for release
11009 2005-06-09 Andy Wingo <wingo@pobox.com>
11011 * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
11013 2005-06-09 Andy Wingo <wingo@pobox.com>
11016 * gst-libs/gst/Makefile.am:
11017 * gst-libs/gst/net/Makefile.am:
11018 Add gstnet to build.
11020 2005-06-09 Andy Wingo <wingo@pobox.com>
11022 * gst-libs/gst/gconf/gconf.c:
11023 * gst/playback/test.c:
11024 * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
11027 * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
11029 * ext/theora/theoraenc.c (theora_enc_chain):
11030 * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
11032 * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
11035 2005-06-02 Wim Taymans <wim@fluendo.com>
11037 * gst-libs/gst/net/Makefile.am:
11038 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
11039 * pkgconfig/gstreamer-libs.pc.in:
11040 Added net stuff, version net lib.
11042 2005-06-02 Wim Taymans <wim@fluendo.com>
11044 * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
11045 (query_rates), (query_positions_elems), (query_positions_pads),
11047 Updated seek example.
11049 2005-06-02 Andy Wingo <wingo@pobox.com>
11051 * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
11052 * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
11055 * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
11056 remove the typefind, the bin dispose will do it for us. When it's
11057 removed and unreffed, the signal handler will be disconnected,
11059 (unlinked): It's too difficult to disconnect from unlinked
11060 handlers, as they are on pads not elements. Just punt if the pads
11061 aren't grandkids of the bin.
11063 2005-06-02 Wim Taymans <wim@fluendo.com>
11066 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
11067 (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
11068 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
11069 * ext/theora/theoradec.c: (theora_dec_src_query),
11070 (theora_handle_data_packet):
11071 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
11072 (theora_enc_chain):
11073 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11074 (vorbis_handle_data_packet):
11075 * gst/audioconvert/bufferframesconvert.c:
11076 (buffer_frames_convert_chain):
11077 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11078 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11079 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
11080 (gst_ffmpegcsp_chain):
11081 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
11082 (gst_videorate_getcaps), (gst_videorate_setcaps),
11083 (gst_videorate_event), (gst_videorate_chain):
11084 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
11085 (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
11086 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
11087 (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
11088 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11089 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
11090 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
11091 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
11092 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
11093 Cleanups and buffer alloc.
11095 2005-05-31 Wim Taymans <wim@fluendo.com>
11097 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
11098 Don't try to call the delay method when the device is not
11101 2005-05-31 Wim Taymans <wim@fluendo.com>
11103 * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
11104 Get actual segment size and buffer size after opening
11107 2005-05-30 Wim Taymans <wim@fluendo.com>
11109 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
11110 (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
11111 Also FLUSH upstream, makes the loop function exit faster.
11113 * ext/theora/theoradec.c: (theora_dec_src_query):
11114 Some more debug info in the query.
11116 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
11117 (gst_ximagesink_setcaps):
11118 Release lock on par error, better error reporting.
11120 2005-05-26 Wim Taymans <wim@fluendo.com>
11122 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
11123 (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
11124 (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
11125 Clear chains in READY
11126 Queue packets until the chain is activated.
11128 2005-05-25 Wim Taymans <wim@fluendo.com>
11130 * gst-libs/gst/audio/gstaudiosink.c:
11131 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
11132 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
11133 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
11134 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
11135 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
11136 (gst_audiosink_create_ringbuffer):
11137 * gst-libs/gst/audio/gstbaseaudiosink.c:
11138 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
11139 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
11140 (gst_baseaudiosink_set_property), (build_linear_format),
11141 (debug_spec_caps), (debug_spec_buffer),
11142 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
11143 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
11144 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
11145 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
11146 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
11147 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
11148 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
11149 (gst_ringbuffer_play), (gst_ringbuffer_pause),
11150 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
11151 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
11152 (wait_segment), (gst_ringbuffer_commit),
11153 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
11154 (gst_ringbuffer_clear):
11155 Various small cleanups.
11157 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
11158 (gst_audio_convert_change_state):
11159 * gst/subparse/gstsubparse.c: (gst_subparse_chain):
11160 No need to take the locks anymore.
11162 2005-05-25 Wim Taymans <wim@fluendo.com>
11164 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
11165 (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
11166 (remove_element_chain), (no_more_pads), (unlinked), (close_link),
11168 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
11169 (group_destroy), (group_commit), (queue_overrun),
11170 (gen_preroll_element), (no_more_pads), (preroll_unlinked),
11171 (mute_stream), (new_decoded_pad), (setup_substreams),
11172 (setup_source), (mute_group_type), (set_active_source),
11173 (gst_play_base_bin_change_state):
11174 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
11175 (gen_video_element), (gen_text_element), (gen_audio_element),
11176 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
11177 * gst/playback/gststreaminfo.c: (gst_stream_info_new),
11178 (gst_stream_info_dispose), (gst_stream_info_set_mute):
11179 * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
11180 Some playbin cleanups mostly refcounting sloppyness.
11182 2005-05-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11184 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
11185 Work with streaming input.
11187 2005-05-25 Wim Taymans <wim@fluendo.com>
11189 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11190 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11191 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
11192 (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
11193 No need to take the STREAM lock anymore.
11195 2005-05-25 Wim Taymans <wim@fluendo.com>
11197 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
11198 (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
11199 (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
11200 (gst_ogg_demux_chain), (gst_ogg_demux_loop),
11201 (gst_ogg_demux_sink_activate):
11202 * ext/theora/theoradec.c: (theora_dec_src_event),
11203 (theora_handle_comment_packet), (theora_dec_chain),
11204 (theora_dec_change_state):
11205 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11206 (vorbis_handle_data_packet), (vorbis_dec_chain),
11207 (vorbis_dec_change_state):
11208 Remove STREAM locks as they are taken in core now.
11209 Never set bogus granulepos on vorbis/theora.
11210 Fix leaks in theoradec tag parsing.
11212 2005-05-25 Wim Taymans <wim@fluendo.com>
11214 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
11215 Fix memleaks, GST_BUFFER_DATA() is not freed.
11217 2005-05-25 Wim Taymans <wim@fluendo.com>
11219 * ext/alsa/gstalsasink.c: (gst_alsasink_open):
11220 Open non-blocking, set to blocking mode afterwards to avoid
11221 lockups when audio device is busy.
11223 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11225 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
11226 This can't be good.
11228 2005-05-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11230 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
11231 (gst_audio_convert_chain), (gst_audio_convert_link_src),
11232 (gst_audio_convert_setcaps):
11233 Implement instant setup switching.
11235 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11237 * gst/playback/gstplaybasebin.c: (probe_triggered):
11238 Fix missing unlock.
11239 * gst/playback/gstplaybin.c: (add_sink):
11240 First add, then link (otherwise pad link fails).
11242 2005-05-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11244 * examples/Makefile.am:
11245 fix buildbot (make distcheck)
11247 2005-05-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11249 * gst/playback/gstplaybin.c: (gen_vis_element):
11250 Remove some wrong code. Doesn't work yet.
11252 2005-05-19 Wim Taymans <wim@fluendo.com>
11254 * gst-libs/gst/net/Makefile.am:
11255 * gst-libs/gst/net/README:
11256 * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
11257 (gst_netbuffer_class_init), (gst_netbuffer_init),
11258 (gst_netbuffer_finalize), (gst_netbuffer_copy),
11259 (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
11260 (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
11261 (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
11262 * gst-libs/gst/net/gstnetbuffer.h:
11263 Added buffer subclass to store extra to/from addresses for
11264 network sources/sinks.
11266 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11268 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
11269 Don't lock an unassigned variable.
11271 2005-05-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11273 * gst/playback/gstplaybasebin.c: (gen_preroll_element):
11274 Increase buffer for video, decrease buffer for other media types.
11275 * gst/playback/gstplaybin.c: (gen_video_element),
11276 (gen_audio_element):
11277 Change names for debugging purposes.
11279 2005-05-18 Wim Taymans <wim@fluendo.com>
11281 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11282 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11283 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
11284 (gst_ffmpegcsp_chain):
11285 Enable buffer alloc passthrough if the source and dest
11286 formats are the same.
11288 2005-05-17 Wim Taymans <wim@fluendo.com>
11290 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
11291 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
11292 (gst_ogg_demux_chain_unlocked):
11293 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
11294 (gst_audio_convert_caps_remove_format_info),
11295 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
11296 (gst_audio_convert_fixate), (gst_audio_convert_change_state):
11297 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11298 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11299 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
11300 (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
11301 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
11302 (gst_ffmpegcsp_get_property):
11303 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
11304 (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
11305 (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
11306 (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
11307 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
11308 (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
11309 (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
11310 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
11311 Leak fixes in oggdemux.
11312 Some cleanups in audioconvert.
11313 Make passthrough work along with buffer_alloc etc.
11314 Make buffer_alloc and buffer recycling actually work in
11317 2005-05-17 Thomas Vander Stichele <thomas at apestaart dot org>
11319 * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
11320 make the compiler happy
11322 2005-05-17 Wim Taymans <wim@fluendo.com>
11324 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
11325 * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
11326 (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
11327 (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
11328 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
11329 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
11330 (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
11331 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
11332 (gst_xvimagesink_set_xwindow_id):
11333 * sys/xvimage/xvimagesink.h:
11334 Port xvimagesink to new MiniObject.
11336 2005-05-17 Wim Taymans <wim@fluendo.com>
11338 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
11339 (gst_audiofilter_chain):
11340 * gst-libs/gst/audio/gstaudiosink.c:
11341 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
11342 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
11343 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
11344 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
11345 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
11346 (gst_audiosink_create_ringbuffer):
11347 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
11348 (gst_audio_convert_caps_remove_format_info),
11349 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
11350 (gst_audio_convert_fixate), (gst_audio_convert_channels):
11351 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11352 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11353 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
11354 Fix passthrough in ffmpegcolorspace.
11355 Fix memset in audiosink on wrong memory.
11357 2005-05-16 David Schleef <ds@schleef.org>
11359 * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
11362 2005-05-16 David Schleef <ds@schleef.org>
11364 Port from GstData to GstMiniObject.
11365 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
11366 * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
11367 (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
11368 (gst_ogg_mux_collected):
11369 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
11370 * ext/theora/theoradec.c: (theora_handle_comment_packet),
11371 (theora_handle_data_packet):
11372 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
11373 (theora_set_header_on_caps), (theora_enc_chain):
11374 * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
11375 (vorbis_handle_comment_packet):
11376 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
11377 * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
11378 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
11379 * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
11380 * gst/audioconvert/gstaudioconvert.c:
11381 (gst_audio_convert_get_buffer):
11382 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
11383 * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
11384 (mute_stream), (silence_stream):
11385 * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
11386 * gst/volume/gstvolume.c: (volume_transform):
11387 * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
11388 (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
11389 (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
11390 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
11391 (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
11392 (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
11393 (gst_ximagesink_buffer_alloc):
11394 * sys/ximage/ximagesink.h:
11396 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11398 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11399 (fill_buffer), (check_queue), (queue_threshold_reached),
11400 (queue_out_of_data):
11401 * gst/playback/gstplaybasebin.h:
11402 Post buffer-fullness on the bus.
11404 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11406 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
11408 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11409 (group_commit), (probe_triggered), (setup_source),
11410 (gst_play_base_bin_change_state):
11411 * gst/playback/gstplaybasebin.h:
11412 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11413 (gst_play_bin_init), (remove_sinks), (setup_sinks),
11414 (gst_play_bin_change_state):
11415 Move setup_output_pads into a virtual function, remove
11416 group-switch (no longer needed) and redirect (handled by bus
11419 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11421 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
11422 (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
11423 (get_active_group), (get_building_group), (group_destroy),
11424 (group_commit), (check_queue), (queue_overrun),
11425 (queue_threshold_reached), (queue_out_of_data),
11426 (gen_preroll_element), (remove_groups), (unknown_type),
11427 (add_element_stream), (no_more_pads), (probe_triggered),
11428 (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
11429 (setup_substreams), (setup_source), (finish_source),
11430 (prepare_output), (muted_group_change_state),
11431 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
11432 (gst_play_base_bin_change_state):
11433 * gst/playback/gstplaybasebin.h:
11434 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11435 (gst_play_bin_init), (gst_play_bin_set_property),
11436 (gen_video_element), (gen_text_element), (gen_audio_element),
11437 (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
11438 (gst_play_bin_change_state):
11439 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
11440 (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
11441 (stream_info_change_state), (gst_stream_info_set_mute),
11442 (gst_stream_info_get_property):
11443 * gst/playback/gststreaminfo.h:
11444 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
11445 (gst_stream_selector_get_linked_pad),
11446 (gst_stream_selector_getcaps),
11447 (gst_stream_selector_get_linked_pads),
11448 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
11449 * gst/playback/gststreamselector.h:
11450 Rough port of playbin. Needs some more work, but is mostly done,
11451 and uses a few locks in important places, which should make stuff
11452 like chain-switches clean. Still uses GST_STATE() in a few places,
11453 which isn't all that good an idea, subtitles/elements disabled
11454 because no elements to test with and thus probably broken, query
11455 and event handling moved to GstBin, internal thread removed
11456 alltogether because the pipeline does that for us now. Can play
11457 Ogg/Vorbis files. Haven't tested anything else yet.
11459 2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11461 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
11462 Do no-more-pads (needed for autoplugging).
11464 2005-05-10 Andy Wingo <wingo@pobox.com>
11466 * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
11467 message to the bus with the tags. Still not sent downstream tho.
11469 * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
11471 (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
11472 avoid refcounting hassles.
11474 2005-05-09 Andy Wingo <wingo@pobox.com>
11476 * gst/volume/Makefile.am:
11477 * gst/volume/demo.c
11478 * gst/volume/gstvolume.h
11479 * gst/volume/gstvolume.c: Port to 0.9 API, derive from
11480 basetransform. Probably need an audio filter base class.
11482 2005-05-09 Wim Taymans <wim@fluendo.com>
11484 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
11485 (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
11486 (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
11487 (gst_vorbisenc_chain):
11488 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
11489 (gst_audio_convert_caps_remove_format_info),
11490 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
11491 (gst_audio_convert_fixate), (gst_audio_convert_channels):
11492 Make caps writable before writing to it.
11493 Fix negotiation in audioconvert some more.
11495 2005-05-09 Wim Taymans <wim@fluendo.com>
11497 * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
11498 (gst_videorate_getcaps), (gst_videorate_setcaps),
11499 (gst_videorate_event), (gst_videorate_chain):
11500 Better negotiation.
11502 2005-05-09 Wim Taymans <wim@fluendo.com>
11504 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
11505 (gst_videorate_getcaps), (gst_videorate_setcaps),
11506 (gst_videorate_blank_data), (gst_videorate_init),
11507 (gst_videorate_event), (gst_videorate_chain),
11508 (gst_videorate_change_state):
11509 Port videorate, do a better job at negotiation while we're at
11512 2005-05-09 Jan Schmidt <thaytan@mad.scientist.com>
11517 * examples/Makefile.am:
11518 * gst-libs/gst/audio/Makefile.am:
11519 * gst-libs/gst/riff/Makefile.am:
11520 * gst-libs/gst/tag/Makefile.am:
11521 * gst-libs/gst/video/Makefile.am:
11522 Fixups for missing variables.
11524 2005-05-09 Wim Taymans <wim@fluendo.com>
11526 * examples/seeking/seek.c: (make_theora_pipeline),
11527 (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
11528 (query_rates), (query_positions_elems), (query_positions_pads),
11529 (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
11530 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
11531 (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
11532 (gst_ogg_pad_typefind), (gst_ogg_demux_init),
11533 (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
11534 (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
11535 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
11536 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
11537 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
11538 (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
11539 (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
11540 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
11541 (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
11542 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
11543 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
11544 (theora_dec_src_convert), (theora_dec_sink_convert),
11545 (theora_dec_src_query), (theora_dec_sink_query),
11546 (theora_dec_src_event), (theora_dec_sink_event),
11547 (theora_handle_comment_packet), (theora_handle_type_packet),
11548 (theora_handle_header_packet), (theora_handle_data_packet),
11549 (theora_dec_chain):
11550 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
11551 (vorbis_dec_convert), (vorbis_dec_src_query),
11552 (vorbis_dec_sink_query), (vorbis_dec_src_event),
11553 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
11554 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
11555 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
11556 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
11557 (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
11558 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
11559 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11560 (gst_play_bin_query):
11561 * gst/playback/test3.c: (update_scale):
11562 * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
11563 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
11564 * gst/subparse/gstsubparse.c: (gst_subparse_init):
11565 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
11566 (gst_videotestsrc_src_query):
11567 * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
11568 (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
11569 (paint_hline_YUV9):
11570 * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
11571 Port to new query API.
11573 Cleanups in x[v]imagesink
11575 2005-05-09 Andy Wingo <wingo@pobox.com>
11577 * ext/alsa/gstalsasink.h:
11578 * ext/gnomevfs/gstgnomevfssrc.c:
11579 (gst_gnomevfssrc_get_icy_metadata):
11580 * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
11581 (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
11582 * ext/theora/theoradec.c (theora_dec_src_query)
11583 (theora_dec_src_event, theora_dec_sink_event)
11584 (theora_handle_comment_packet, theora_handle_data_packet):
11585 * ext/theora/theoraenc.c (theora_enc_chain):
11586 * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
11587 (vorbis_dec_sink_event, vorbis_handle_comment_packet):
11588 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
11589 * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
11591 * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
11592 (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
11593 (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
11594 (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
11595 (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
11596 (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
11597 (paint_setup_xBGR8888, paint_setup_RGBx8888)
11598 (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
11599 (paint_setup_RGB565, paint_setup_xRGB1555):
11600 * gst/videotestsrc/videotestsrc.h:
11601 * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
11602 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
11603 (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
11606 * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
11607 gst_pad_query_position. Fixes oggdemux.
11609 2005-05-08 David Schleef <ds@schleef.org>
11611 * configure.ac: Require liboil.
11612 * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
11614 * gst/videotestsrc/videotestsrc.c:
11615 * gst/videotestsrc/videotestsrc.h:
11617 2005-05-06 Wim Taymans <wim@fluendo.com>
11619 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11620 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11621 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
11622 Well, unreffing a buffer right before pushing it is asking
11625 2005-05-06 Christian Schaller <uraeus@gnome.org>
11627 * pkgconfig/gstreamer-libs.pc.in: add missing library calls
11629 2005-05-06 Wim Taymans <wim@fluendo.com>
11631 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
11632 (gst_audio_convert_caps_remove_format_info),
11633 (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
11634 (gst_audio_convert_fixate), (gst_audio_convert_channels):
11635 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11636 (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
11637 (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
11638 * gst/sine/Makefile.am:
11639 * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
11640 (gst_sinesrc_class_init), (gst_sinesrc_init),
11641 (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
11642 (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
11643 (gst_sinesrc_update_freq):
11644 * gst/sine/gstsinesrc.h:
11645 * gst/tcp/gstmultifdsink.c:
11646 * sys/xvimage/xvimagesink.c:
11647 Fixed negotiation wrt _peer_get_caps()
11651 2005-05-06 Wim Taymans <wim@fluendo.com>
11653 * gst-libs/gst/audio/gstaudiosink.c:
11654 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
11655 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
11656 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
11657 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
11658 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
11659 (gst_audiosink_create_ringbuffer):
11660 * gst-libs/gst/audio/gstbaseaudiosink.c:
11661 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
11662 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
11663 (gst_baseaudiosink_set_property), (build_linear_format),
11664 (debug_spec_caps), (debug_spec_buffer),
11665 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
11666 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
11667 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
11668 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
11669 * gst-libs/gst/audio/gstbaseaudiosink.h:
11670 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
11671 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
11672 (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
11673 (gst_ringbuffer_play), (gst_ringbuffer_pause),
11674 (gst_ringbuffer_stop), (gst_ringbuffer_delay),
11675 (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
11676 (wait_segment), (gst_ringbuffer_commit),
11677 (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
11678 (gst_ringbuffer_clear):
11679 * gst-libs/gst/audio/gstringbuffer.h:
11680 Make the base audiosink return an error when there is no
11681 audiobuffer negotiated.
11683 2005-05-06 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11686 Disable cdparanoia until someone ports it!
11688 2005-05-06 Wim Taymans <wim@fluendo.com>
11690 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11691 (gst_ogg_demux_sink_activate):
11692 And revert after wingo's revert.. sigh..
11694 2005-05-05 Andy Wingo <wingo@pobox.com>
11696 * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
11698 * configure.ac: Return audiorate and subparse from the ghetto.
11699 Re-enable -Wall -Werror.
11700 * gst/subparse/gstsubparse.c:
11701 * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
11702 or chain-based. Cleaned up a bit. Not tested.
11704 2005-05-05 Christian Schaller <christian@fluendo.com>
11706 * Makefile.am: remove stuff that is not building
11707 * configure.ac: remove stuff that is not building
11708 * examples/Makefile.am: remove stuff that is not building
11709 * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
11710 * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
11711 * sys/Makefile.am: remove stuff that is not building
11712 * testsuite/Makefile.am: remove stuff that is not building
11714 2005-05-05 Andy Wingo <wingo@pobox.com>
11716 * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
11717 * gst-libs/gst/tag/gstvorbistag.c:
11718 (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
11719 * gst/adder/gstadder.h:
11720 * gst/audioconvert/gstchannelmix.c:
11721 (gst_audio_convert_fill_one_other):
11722 * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
11723 (gst_audiorate_init), (gst_audiorate_chain):
11724 * gst/playback/gstplaybasebin.c: (setup_source):
11725 * gst/playback/test3.c: (update_scale):
11743 2005-05-05 Wim Taymans <wim@fluendo.com>
11745 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
11746 (gst_audio_convert_caps_remove_format_info),
11747 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
11748 (gst_audio_convert_change_state), (gst_audio_convert_channels):
11749 * gst/videotestsrc/gstvideotestsrc.c:
11750 (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
11751 (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
11752 (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
11753 (gst_videotestsrc_init), (gst_videotestsrc_loop):
11754 Don't ignore _push() return values.
11755 Make sure no processing is done when shutting down.
11756 Videotestsrc pad activation fix.
11758 2005-05-05 Wim Taymans <wim@fluendo.com>
11760 * gst/adder/Makefile.am:
11761 * gst/adder/gstadder.c: (gst_adder_setcaps),
11762 (gst_adder_class_init), (gst_adder_init),
11763 (gst_adder_request_new_pad), (gst_adder_collected),
11764 (gst_adder_change_state):
11765 * gst/adder/gstadder.h:
11766 Ported adder as an example of a mixer element using
11767 collect pads. Needs more negotiation work.
11769 2005-05-05 Wim Taymans <wim@fluendo.com>
11771 * ext/theora/theoradec.c: (_inc_granulepos),
11772 (theora_dec_src_event), (theora_dec_sink_event),
11773 (theora_handle_comment_packet), (theora_handle_type_packet),
11774 (theora_handle_header_packet), (theora_handle_data_packet),
11775 (theora_dec_chain):
11776 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
11777 (gst_theora_enc_init), (theora_enc_sink_setcaps),
11778 (theora_push_buffer), (theora_push_packet),
11779 (theora_enc_sink_event), (theora_enc_chain),
11780 (theora_enc_change_state), (theora_enc_set_property),
11781 (theora_enc_get_property):
11782 Added stream lock to decoder so that we can serialize
11784 More theoraenc porting, recover from errors, do clean
11787 2005-05-05 Wim Taymans <wim@fluendo.com>
11789 * ext/ogg/Makefile.am:
11791 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11792 (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
11794 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
11795 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
11796 (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
11797 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
11798 (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
11799 (gst_ogg_mux_change_state):
11802 2005-05-05 Wim Taymans <wim@fluendo.com>
11804 * docs/design-audiosinks.txt:
11805 * gst-libs/gst/audio/TODO:
11806 * gst-libs/gst/audio/gstaudiosink.c:
11807 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
11808 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
11809 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
11810 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
11811 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
11812 (gst_audiosink_create_ringbuffer):
11813 * gst-libs/gst/audio/gstbaseaudiosink.c:
11814 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
11815 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
11816 (gst_baseaudiosink_set_property), (build_linear_format),
11817 (debug_spec_caps), (debug_spec_buffer),
11818 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
11819 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
11820 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
11821 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
11822 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
11823 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
11824 (gst_ringbuffer_release), (gst_ringbuffer_play),
11825 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
11826 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
11827 (gst_ringbuffer_set_sample), (wait_segment),
11828 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
11829 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
11830 More work on the audiosink, mostly debugging and a race in
11833 2005-04-28 Wim Taymans <wim@fluendo.com>
11835 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
11836 (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
11837 * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
11838 (vorbis_dec_src_query), (vorbis_dec_src_event),
11839 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
11840 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
11841 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
11842 Don't crap out when seeking back to position 0.
11844 2005-04-28 Wim Taymans <wim@fluendo.com>
11846 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
11847 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
11848 (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
11849 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
11850 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
11851 Make audio sink configurable, use alsasink as default.
11853 2005-04-28 Wim Taymans <wim@fluendo.com>
11855 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
11856 (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
11857 (vorbis_handle_type_packet), (vorbis_handle_header_packet),
11858 (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
11859 (vorbis_dec_change_state):
11860 * ext/vorbis/vorbisdec.h:
11861 Refactor, use STREAM_LOCK.
11863 2005-04-28 Wim Taymans <wim@fluendo.com>
11865 * ext/theora/theoradec.c: (_inc_granulepos),
11866 (theora_dec_sink_event), (theora_handle_comment_packet),
11867 (theora_handle_type_packet), (theora_handle_header_packet),
11868 (theora_handle_data_packet), (theora_dec_chain),
11869 (theora_dec_change_state):
11870 Refactor a bit, use STREAM_LOCK.
11872 2005-04-28 Wim Taymans <wim@fluendo.com>
11874 * ext/alsa/Makefile.am:
11875 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
11876 (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
11877 (gst_alsa_link), (gst_alsa_close_audio):
11878 * ext/alsa/gstalsaplugin.c: (plugin_init):
11879 * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
11880 (gst_alsasink_dispose), (gst_alsasink_base_init),
11881 (gst_alsasink_class_init), (gst_alsasink_init),
11882 (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
11883 (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
11884 (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
11885 (gst_alsasink_reset):
11886 * ext/alsa/gstalsasink.h:
11887 Implement alsasink with simple open/write/close API.
11888 Make alsa dir build by disabling compilation of code.
11890 2005-04-28 Wim Taymans <wim@fluendo.com>
11892 * gst-libs/gst/audio/Makefile.am:
11893 * gst-libs/gst/audio/audio.h:
11894 * gst-libs/gst/audio/audioclock.c:
11895 * gst-libs/gst/audio/audioclock.h:
11896 * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
11897 (gst_audio_clock_class_init), (gst_audio_clock_init),
11898 (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
11899 * gst-libs/gst/audio/gstaudioclock.h:
11900 * gst-libs/gst/audio/gstaudiosink.c:
11901 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
11902 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
11903 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
11904 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
11905 (gst_audioringbuffer_delay), (gst_audiosink_class_init),
11906 (gst_audiosink_create_ringbuffer):
11907 * gst-libs/gst/audio/gstbaseaudiosink.c:
11908 (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
11909 (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
11910 (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
11911 (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
11912 (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
11913 (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
11914 (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
11915 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
11916 * gst-libs/gst/audio/gstbaseaudiosink.h:
11917 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
11918 (gst_ringbuffer_init), (gst_ringbuffer_finalize),
11919 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
11920 (gst_ringbuffer_release), (gst_ringbuffer_play),
11921 (gst_ringbuffer_pause), (gst_ringbuffer_stop),
11922 (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
11923 (gst_ringbuffer_set_sample), (wait_segment),
11924 (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
11925 (gst_ringbuffer_advance), (gst_ringbuffer_clear):
11926 * gst-libs/gst/audio/gstringbuffer.h:
11927 Make ringbuffer faster and more simple by removing the locks
11928 in the playback thread.
11929 Add sample accurate playback based on buffer sample offsets.
11930 Make the baseaudiosink provide a clock.
11931 Parse caps in the base class.
11932 Correctly handle seeking, flushing and state changes.
11934 2005-04-25 Thomas Vander Stichele <thomas at apestaart dot org>
11937 * gst/audioconvert/Makefile.am:
11938 * gst/audioscale/Makefile.am:
11939 Fix part of the build. Come on guys, autogen didn't even work :)
11941 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11944 * gst-libs/gst/Makefile.am:
11945 * gst-libs/gst/media-info/.cvsignore:
11946 * gst-libs/gst/media-info/Makefile.am:
11947 * gst-libs/gst/media-info/README:
11948 * gst-libs/gst/media-info/media-info-priv.c:
11949 * gst-libs/gst/media-info/media-info-priv.h:
11950 * gst-libs/gst/media-info/media-info-test.c:
11951 * gst-libs/gst/media-info/media-info.c:
11952 * gst-libs/gst/media-info/media-info.h:
11953 * gst-libs/gst/media-info/media-info.vcproj:
11954 * pkgconfig/Makefile.am:
11955 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
11956 * pkgconfig/gstreamer-media-info.pc.in:
11957 Remove media-info, which is also successed by playbin (see Totem
11960 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11963 * examples/Makefile.am:
11964 * examples/gstplay/.cvsignore:
11965 * examples/gstplay/Makefile.am:
11966 * examples/gstplay/player.c:
11967 * gst-libs/gst/Makefile.am:
11968 * gst-libs/gst/play/.cvsignore:
11969 * gst-libs/gst/play/Makefile.am:
11970 * gst-libs/gst/play/play.c:
11971 * gst-libs/gst/play/play.h:
11972 * gst-libs/gst/play/play.vcproj:
11973 * pkgconfig/Makefile.am:
11974 * pkgconfig/gstreamer-play-uninstalled.pc.in:
11975 * pkgconfig/gstreamer-play.pc.in:
11976 Remove libgstplay, playbin is now the official successor.
11978 2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
11981 * gst-libs/gst/Makefile.am:
11982 * gst-libs/gst/xwindowlistener/Makefile.am:
11983 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
11984 * gst-libs/gst/xwindowlistener/xwindowlistener.h:
11985 Remove deprecated xwindowlistener (I've moved xwindowlistening
11986 in the v4l/v4l2 plugins over to serverside).
11988 2005-04-25 David Schleef <ds@schleef.org>
11990 * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
11991 to examples/dynparams. Examples do not belong interspersed with
11993 * examples/dynparams/demo-dparams.c:
11994 * gst/sine/Makefile.am:
11995 * gst/sine/demo-dparams.c:
11997 2005-04-25 David Schleef <ds@schleef.org>
11999 Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
12000 * gst-libs/gst/audio/Makefile.am:
12001 * gst-libs/gst/riff/Makefile.am:
12002 * gst-libs/gst/tag/Makefile.am:
12003 * gst-libs/gst/video/Makefile.am:
12004 * gst-libs/gst/xwindowlistener/Makefile.am:
12006 Convert to 0.9 API, seems to work:
12007 * sys/ximage/Makefile.am:
12008 * sys/ximage/ximagesink.c:
12010 2005-04-24 David Schleef <ds@schleef.org>
12012 Link plugins against libraries:
12013 * ext/alsa/Makefile.am:
12014 * gst/tcp/Makefile.am:
12016 Remove asm code that should be in liboil
12017 * gst/videoscale/Makefile.am:
12018 * gst/videoscale/videoscale_x86_asm.s:
12020 gettext wants these checked in:
12036 2005-04-24 David Schleef <ds@schleef.org>
12038 Convert gst_main() to g_main_loop_run()
12039 * gst/playback/decodetest.c: (main):
12040 * gst/playback/test2.c: (main):
12041 * gst/playback/test3.c: (main):
12042 * gst/playback/test4.c: (main):
12044 Link plugins against libraries:
12045 * ext/libvisual/Makefile.am:
12046 * sys/xvimage/Makefile.am:
12048 2005-04-24 David Schleef <ds@schleef.org>
12050 * configure.ac: Remove idct and resample libs
12051 * gst-libs/gst/Makefile.am: same
12053 Remove usage of gst_library_load():
12054 * ext/alsa/gstalsaplugin.c: (plugin_init):
12055 * ext/libvisual/visual.c: (plugin_init):
12056 * ext/ogg/gstogg.c: (plugin_init):
12057 * ext/theora/theora.c: (plugin_init):
12058 * ext/vorbis/vorbis.c: (plugin_init):
12059 * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
12060 * gst/audioscale/gstaudioscale.c:
12061 * gst/adder/gstadder.c: (plugin_init):
12062 * gst/audioconvert/plugin.c: (plugin_init):
12063 * sys/ximage/ximagesink.c: (plugin_init):
12064 * sys/xvimage/xvimagesink.c: (plugin_init):
12065 * gst/tcp/gsttcpplugin.c: (plugin_init):
12067 Link plugins against libraries:
12068 * ext/ogg/Makefile.am:
12069 * ext/theora/Makefile.am:
12070 * ext/vorbis/Makefile.am:
12071 * gst/audioconvert/Makefile.am:
12073 Create proper libraries:
12074 * gst-libs/gst/riff/Makefile.am:
12075 * gst-libs/gst/audio/Makefile.am:
12076 * gst-libs/gst/video/Makefile.am:
12078 Move resample library to audioscale plugin directory:
12079 * gst-libs/gst/resample/Makefile.am:
12080 * gst-libs/gst/resample/README:
12081 * gst-libs/gst/resample/dtof.c:
12082 * gst-libs/gst/resample/dtos.c:
12083 * gst-libs/gst/resample/functable.c:
12084 * gst-libs/gst/resample/private.h:
12085 * gst-libs/gst/resample/resample.c:
12086 * gst-libs/gst/resample/resample.h:
12087 * gst-libs/gst/resample/resample.vcproj:
12088 * gst-libs/gst/resample/test.c:
12089 * gst/audioscale/Makefile.am:
12090 * gst/audioscale/README:
12091 * gst/audioscale/dtof.c:
12092 * gst/audioscale/dtos.c:
12093 * gst/audioscale/functable.c:
12094 * gst/audioscale/private.h:
12095 * gst/audioscale/resample.c:
12096 * gst/audioscale/resample.h:
12097 * gst/audioscale/test.c:
12099 Move tagedit library to gst-libs:
12100 * gst-libs/gst/tag/Makefile.am:
12101 * gst-libs/gst/tag/gstid3tag.c:
12102 * gst-libs/gst/tag/gsttagediting.c:
12103 * gst-libs/gst/tag/gsttageditingprivate.h:
12104 * gst-libs/gst/tag/gstvorbistag.c:
12105 * gst/tags/Makefile.am:
12106 * gst/tags/gstid3tag.c:
12107 * gst/tags/gstvorbistag.c:
12109 Fix for core changes:
12110 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
12111 (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
12112 (gst_sinesrc_getrange):
12114 2005-04-23 David Schleef <ds@schleef.org>
12116 * gst-libs/gst/Makefile.am: Remove idct. It hasn't been used
12117 in gst-plugins in a long time, and properly belongs in liboil.
12118 * gst-libs/gst/idct/Makefile.am:
12119 * gst-libs/gst/idct/README:
12120 * gst-libs/gst/idct/dct.h:
12121 * gst-libs/gst/idct/doieee:
12122 * gst-libs/gst/idct/fastintidct.c:
12123 * gst-libs/gst/idct/floatidct.c:
12124 * gst-libs/gst/idct/idct.c:
12125 * gst-libs/gst/idct/idct.h:
12126 * gst-libs/gst/idct/idtc.vcproj:
12127 * gst-libs/gst/idct/ieeetest.c:
12128 * gst-libs/gst/idct/intidct.c:
12130 2005-04-20 Wim Taymans <wim@fluendo.com>
12132 * docs/design-audiosinks.txt:
12133 * gst-libs/gst/audio/Makefile.am:
12134 * gst-libs/gst/audio/TODO:
12135 * gst-libs/gst/audio/gstaudiosink.c:
12136 (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
12137 (audioringbuffer_thread_func), (gst_audioringbuffer_init),
12138 (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
12139 (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
12140 (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
12141 (gst_audioringbuffer_delay), (gst_audiosink_base_init),
12142 (gst_audiosink_class_init), (gst_audiosink_init),
12143 (gst_audiosink_create_ringbuffer):
12144 * gst-libs/gst/audio/gstaudiosink.h:
12145 * gst-libs/gst/audio/gstbaseaudiosink.c:
12146 (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
12147 (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
12148 (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
12149 (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
12150 (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
12151 (gst_baseaudiosink_create_ringbuffer),
12152 (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
12153 * gst-libs/gst/audio/gstbaseaudiosink.h:
12154 * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
12155 (gst_ringbuffer_class_init), (gst_ringbuffer_init),
12156 (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
12157 (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
12158 (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
12159 (gst_ringbuffer_play), (gst_ringbuffer_pause),
12160 (gst_ringbuffer_resume), (gst_ringbuffer_stop),
12161 (gst_ringbuffer_callback), (gst_ringbuffer_delay),
12162 (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
12163 (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
12164 * gst-libs/gst/audio/gstringbuffer.h:
12165 An attempt at a set of audio base classes together with some
12168 2005-04-20 Wim Taymans <wim@fluendo.com>
12170 * gst/audioconvert/Makefile.am:
12171 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
12172 (gst_audio_convert_caps_remove_format_info),
12173 (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
12174 (gst_audio_convert_channels):
12175 Link against audio libs.
12176 Fix audio convert plugin.
12178 2005-04-20 Wim Taymans <wim@fluendo.com>
12180 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
12181 (gst_ogg_demux_sink_activate):
12182 * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
12183 (theora_set_header_on_caps), (theora_enc_sink_event),
12184 (theora_enc_chain):
12185 Fix theora encoder.
12187 2005-04-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12189 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
12190 * gst/playback/gstdecodebin.c: (find_compatibles):
12191 Work with staticpadtemplates in elementfactories.
12193 2005-04-12 Wim Taymans <wim@fluendo.com>
12195 * gst/playback/README:
12196 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12197 (compare_ranks), (print_feature), (gst_decode_bin_init),
12198 (dynamic_create), (dynamic_free), (find_compatibles),
12199 (mimetype_is_raw), (close_pad_link), (got_redirect),
12200 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
12201 (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
12202 (gst_decode_bin_change_state):
12203 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12204 (gst_play_base_bin_init), (group_destroy), (group_commit),
12205 (check_queue), (queue_overrun), (queue_threshold_reached),
12206 (queue_out_of_data), (gen_preroll_element), (unknown_type),
12207 (new_decoded_pad), (setup_subtitle), (gen_source_element),
12208 (got_redirect), (setup_source), (play_base_eos),
12209 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
12210 (gst_play_base_bin_remove_element):
12211 * gst/playback/gstplaybasebin.h:
12212 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12213 (gst_play_bin_init), (gst_play_bin_dispose),
12214 (gst_play_bin_set_property), (gen_video_element),
12215 (gen_text_element), (gen_audio_element), (remove_sinks),
12216 (gst_play_bin_send_event):
12217 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
12218 (stream_info_change_state), (gst_stream_info_set_mute):
12219 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
12220 (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
12221 (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
12222 (gst_stream_selector_chain):
12223 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
12225 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
12226 (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
12227 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
12228 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
12229 Raw and crude port of decodebin.
12230 Make playbin compile.
12232 2005-04-06 Wim Taymans <wim@fluendo.com>
12234 * ext/gnomevfs/Makefile.am:
12235 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
12236 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
12237 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
12238 (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
12239 (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
12240 (gst_gnomevfssrc_stop):
12241 * ext/ogg/Makefile.am:
12242 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
12243 (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
12244 * ext/theora/Makefile.am:
12245 * ext/theora/theoradec.c: (_inc_granulepos),
12246 (theora_dec_sink_event), (theora_dec_chain):
12247 * ext/vorbis/Makefile.am:
12248 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
12249 (vorbis_dec_sink_event), (vorbis_dec_chain):
12250 * gst-libs/gst/audio/Makefile.am:
12251 * sys/xvimage/Makefile.am:
12252 Make gnomevfssrc extend the source base class.
12253 Fix linking against libs in various plugins.
12255 2005-04-06 Andy Wingo <wingo@pobox.com>
12257 * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
12260 * configure.ac: Add check and AC_SUBST for libgstbase.
12262 2005-03-31 Wim Taymans <wim@fluendo.com>
12264 * examples/seeking/Makefile.am:
12265 * examples/seeking/cdparanoia.c: (main):
12266 * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
12267 (play_cb), (pause_cb), (stop_cb), (main):
12268 * examples/seeking/playbin.c:
12269 * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
12270 (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
12271 (make_sid_pipeline), (make_vorbis_pipeline),
12272 (make_theora_pipeline), (make_vorbis_theora_pipeline),
12273 (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
12274 (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
12275 (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
12276 (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
12278 * examples/seeking/spider_seek.c:
12279 * examples/seeking/vorbisfile.c:
12280 * ext/gnomevfs/Makefile.am:
12281 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
12282 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
12283 (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
12284 (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
12285 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
12286 (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
12287 (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
12288 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
12290 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
12291 (gst_ogg_pad_class_init), (gst_ogg_pad_init),
12292 (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
12293 (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
12294 (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
12295 (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
12296 (gst_ogg_pad_event), (gst_ogg_pad_reset),
12297 (gst_ogg_demux_factory_filter), (compare_ranks),
12298 (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
12299 (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
12300 (gst_ogg_chain_new), (gst_ogg_chain_free),
12301 (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
12302 (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
12303 (gst_ogg_demux_class_init), (gst_ogg_demux_init),
12304 (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
12305 (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
12306 (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
12307 (gst_ogg_demux_get_prev_page),
12308 (gst_ogg_demux_deactivate_current_chain),
12309 (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
12310 (gst_ogg_demux_bisect_forward_serialno),
12311 (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
12312 (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
12313 (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
12314 (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
12315 (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
12316 (gst_ogg_demux_change_state), (gst_ogg_print):
12317 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
12318 (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
12319 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
12320 (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
12321 (gst_ogg_mux_loop):
12322 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
12323 * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
12324 (theora_dec_src_convert), (theora_dec_sink_convert),
12325 (theora_dec_src_query), (theora_dec_src_event),
12326 (theora_dec_sink_event), (theora_dec_chain),
12327 (theora_dec_change_state):
12328 * ext/theora/theoraenc.c: (gst_theora_enc_init),
12329 (theora_enc_sink_setcaps), (theora_buffer_from_packet),
12330 (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
12331 (theora_enc_change_state):
12332 * ext/vorbis/Makefile.am:
12333 * ext/vorbis/oggvorbisenc.c:
12334 * ext/vorbis/oggvorbisenc.h:
12335 * ext/vorbis/vorbis.c: (plugin_init):
12336 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
12337 (vorbis_dec_src_query), (vorbis_dec_src_event),
12338 (vorbis_dec_sink_event), (vorbis_dec_chain),
12339 (vorbis_dec_change_state):
12340 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
12341 (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
12342 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
12343 (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
12344 (gst_vorbisenc_change_state):
12345 * ext/vorbis/vorbisenc.h:
12346 * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
12347 * gst-libs/gst/audio/audioclock.c:
12348 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
12349 (gst_audiofilter_init), (gst_audiofilter_chain):
12350 * gst-libs/gst/audio/testchannels.c: (main):
12351 * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
12352 * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
12353 (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
12354 (gmip_find_track_streaminfo), (gmip_find_track_format):
12355 * gst-libs/gst/media-info/media-info.c:
12356 (gst_media_info_read_idler):
12357 * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
12358 (gst_play_get_all_by_interface):
12359 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
12360 (gst_riff_parse_chunk), (gst_riff_parse_file_header),
12361 (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
12362 (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
12363 (gst_riff_parse_info):
12364 * gst-libs/gst/riff/riff-read.h:
12365 * gst-libs/gst/riff/riff.c: (plugin_init):
12366 * gst-libs/gst/video/Makefile.am:
12367 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
12368 (gst_videosink_class_init), (gst_videosink_get_type):
12369 * gst-libs/gst/video/videosink.h:
12370 * gst/audioconvert/bufferframesconvert.c:
12371 (buffer_frames_convert_init), (buffer_frames_convert_fixate),
12372 (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
12373 * gst/audioconvert/channelmixtest.c: (main):
12374 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
12375 (gst_audio_convert_chain),
12376 (gst_audio_convert_caps_remove_format_info),
12377 (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
12378 (gst_audio_convert_setcaps), (_fixate_caps_to_int),
12379 (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
12380 (gst_audio_convert_buffer_to_default_format),
12381 (gst_audio_convert_buffer_from_default_format),
12382 (gst_audio_convert_channels):
12383 * gst/audioconvert/gstchannelmix.h:
12384 * gst/ffmpegcolorspace/avcodec.h:
12385 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12386 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
12387 (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
12388 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
12389 * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
12390 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
12391 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
12392 (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
12393 (mpeg_video_type_find), (mpeg_video_stream_type_find),
12395 * gst/videotestsrc/gstvideotestsrc.c:
12396 (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
12397 (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
12398 (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
12399 (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
12400 (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
12401 (gst_videotestsrc_init), (gst_videotestsrc_src_query),
12402 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
12403 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
12404 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
12405 (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
12406 (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
12407 (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
12408 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
12409 (gst_xvimagesink_navigation_send_event),
12410 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
12411 (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
12412 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
12413 * sys/xvimage/xvimagesink.h:
12414 Plugin port to 0.9, ogg/theora playback should work in the seek
12416 Removed old examples.
12417 Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
12418 explained in 0.9 TODO doc.
12421 2005-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
12443 * testsuite/Makefile.am:
12444 remove a whole bunch of plugins. This module now contains a set
12445 of free reference plugins/elements as agreed.
12447 2005-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
12450 hunting season on 0.9 is now OPEN
12452 2005-02-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12454 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
12455 Kick the hell out of gcc for not warning me about a symbol conflict.
12457 2005-02-22 Luca Ognibene <luogni@tin.it>
12459 Reviewed by: Tim-Philipp M??ller <tim at centricular dot net>
12461 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
12462 Don't leak caps string (fixes #168134)
12464 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
12465 (gst_jpegenc_init), (gst_jpegenc_finalize),
12466 (gst_jpegenc_change_state):
12467 Don't leak line buffers and context struct (fixes #168133).
12469 2005-02-21 Tim-Philipp M??ller <tim at centricular dot net>
12472 * ext/dirac/gstdiracdec.cc:
12473 (gst_diracdec_chain):
12474 Since dirac 0.5.0 the framerate in dirac is expressed as a
12475 rational number. Fix build and up requirement to 0.5.0, and
12476 also pass parameters to gst_diracdec_link in the right order
12479 2005-02-21 Maciej Katafiasz <mathrick@freedesktop.org>
12481 * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
12482 * ext/faad/gstfaad.h:
12483 TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with
12484 certain invalid muxed streams, where some packets will contain
12485 junk after decoder data. Partially fixes #149158.
12487 2005-02-21 Jan Schmidt <thaytan@mad.scientist.com>
12488 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
12489 Make sure we only write to writable buffers
12491 2005-02-20 Tim-Philipp M??ller <tim at centricular dot net>
12493 * gst-libs/gst/riff/riff-media.c:
12494 (gst_riff_create_audio_caps_with_data):
12495 Do actually fix invalid RIFF fmt header values for alaw
12496 and mulaw audio instead of just saying so.
12498 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
12499 Give gst_riff_create_audio_caps_with_data() a chance to
12500 fix up broken format header fields before extracting any
12501 parameters from the header. (fixes #167633)
12503 2005-02-19 Martin Holters <martin.holters@gmx.de>
12505 Reviewed by: Tim-Philipp M??ller <tim at centricular dot net>
12507 * gst/audioconvert/bufferframesconvert.c:
12508 (buffer_frames_convert_link):
12509 Don't leak othercaps. (fixes #167878)
12511 2005-02-19 Arwed v. Merkatz <v.merkatz@gmx.net>
12514 * ext/libvisual/visual.c: (gst_visual_srclink),
12515 (gst_visual_change_state):
12516 Support libvisual 0.2.0.
12518 2005-02-18 Tim-Philipp M??ller <tim at centricular dot net>
12520 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
12521 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
12522 Use same rowstrides for I420 as used everywhere else.
12524 2005-02-17 Tim-Philipp M??ller <tim at centricular dot net>
12526 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
12527 Declare variables at beginning of block and make gcc-2.95 happy
12528 (fixes # 167482, patch by Gergely Nagy).
12530 * gst/tcp/gsttcpclientsrc.c:
12531 * gst/tcp/gsttcpclientsrc.h:
12532 Move some includes into the header, so that struct sockaddr_in is
12533 defined when it should be defined on FreeBSD as well (fixes
12536 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
12537 Don't pass uninitialised values to setsockopt() here either.
12539 2005-02-17 Luca Ognibene <luogni at tin dot it>
12541 Reviewed by: Tim-Philipp M??ller <tim at centricular dot net>
12543 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
12544 Don't pass uninitialised values to setsockopt(). (fixes #167704)
12546 2005-02-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12548 * gst/playback/gstplaybin.c: (add_sink):
12549 Invert bin_add/link order to workaround deadlock in opt.
12551 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12553 * gst/modplug/gstmodplug.cc:
12554 Add missing break causing position queries to fail.
12556 2005-02-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12558 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
12559 Granpos can apparently be -1, which screws up calculations...
12561 2005-02-16 Jan Schmidt <thaytan@mad.scientist.com>
12563 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
12564 (gst_ximagesink_send_pending_navigation),
12565 (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
12566 (gst_ximagesink_init):
12567 * sys/ximage/ximagesink.h:
12568 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
12569 (gst_xvimagesink_send_pending_navigation),
12570 (gst_xvimagesink_navigation_send_event),
12571 (gst_xvimagesink_finalize), (gst_xvimagesink_init):
12572 * sys/xvimage/xvimagesink.h:
12573 Use a mutex protected list to marshal navigation
12574 events into the stream thread from whichever thread
12577 2005-02-15 Tim-Philipp M??ller <tim at centricular dot net>
12579 * gst/speed/demo-mp3.c: (time_tick_cb), (main):
12580 Display current position and track length; misc. clean-ups.
12582 * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
12583 (speed_init), (speed_chain):
12584 Add query function, so that the stream length and current position
12585 get adjusted when queried (note that current position queries may
12586 still be wrong if the audio sink returns values based on buffer
12587 timestamps instead of passing on the query).
12589 2005-02-13 Benjamin Otte <otte@gnome.org>
12591 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
12592 (gst_audio_convert_channels):
12593 create channel conversion matrix when linking
12594 * gst/audioconvert/.cvsignore:
12595 * gst/audioconvert/Makefile.am:
12596 * gst/audioconvert/channelmixtest.c: (main):
12597 add (ugly) test that ensures stereo <=> mono conversion works
12600 2005-02-13 Benjamin Otte <otte@gnome.org>
12602 * gst/audioconvert/gstchannelmix.h:
12603 include missing header file
12604 * gst/audioconvert/gstchannelmix.c:
12605 (gst_audio_convert_fill_compatible):
12606 use same sign for both channels when converting to/from compatible
12607 channel. Previously used different signs made the signals cancel
12608 each other out and appear like silence. (fixes #167269)
12610 2005-02-12 Tim-Philipp M??ller <tim at centricular dot net>
12612 * gst/ffmpegcolorspace/avcodec.h:
12613 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12614 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
12615 (gst_ffmpegcsp_avpicture_fill):
12616 * gst/ffmpegcolorspace/imgconvert.c:
12617 Convert to and from YV12 (fixes #156379).
12619 2005-02-12 Julien MOUTTE <julien@moutte.net>
12621 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
12622 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
12623 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
12624 (gst_ximagesink_expose), (gst_ximagesink_set_property),
12625 (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
12626 methods from chain and negotiation and vice versa (Fixes #166142).
12627 * sys/ximage/ximagesink.h: Add stream_lock.
12628 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
12629 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
12630 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
12631 (gst_xvimagesink_expose): Check for xcontext before trying to link.
12633 2005-02-12 Tim-Philipp M??ller <tim at centricular dot net>
12635 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
12636 Don't send "Hey! You gave me a NULL pointer you naughty person" as
12637 error message when we can't open the DVD device (when dvdnav_open()
12638 fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
12639 the above). Send something more useful instead (fixes #167117).
12641 2005-02-11 Julien MOUTTE <julien@moutte.net>
12643 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
12644 (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
12645 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
12646 (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
12647 (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
12648 (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
12649 methods from chain and negotiation and vice versa (Fixes #166142).
12650 Fix a possible bug of images in the buffer pool being discarded because
12651 we are looking at the wrong geometry.
12652 * sys/xvimage/xvimagesink.h: Add stream_lock.
12654 2005-02-11 David Schleef <ds@schleef.org>
12656 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
12657 unsigned int. (fixes #167128)
12659 2005-02-11 David Schleef <ds@schleef.org>
12661 * gst/librfb/Makefile.am: Testing stuff before committing is
12662 for wimps... and people with fast machines. Fix stupid
12665 2005-02-11 David Schleef <ds@schleef.org>
12667 * configure.ac: Pull in librfb from my CVS tree, because it is
12668 too small and annoying to be separate. Move rfbsrc plugin
12671 * ext/librfb/Makefile.am:
12672 * ext/librfb/gstrfbsrc.c:
12673 * gst/librfb/Makefile.am:
12674 * gst/librfb/gstrfbsrc.c:
12675 * gst/librfb/rfb.c:
12676 * gst/librfb/rfb.h:
12677 * gst/librfb/rfbbuffer.c:
12678 * gst/librfb/rfbbuffer.h:
12679 * gst/librfb/rfbbytestream.c:
12680 * gst/librfb/rfbbytestream.h:
12681 * gst/librfb/rfbcontext.h:
12682 * gst/librfb/rfbdecoder.c:
12683 * gst/librfb/rfbdecoder.h:
12684 * gst/librfb/rfbutil.h:
12686 2005-02-10 Tim-Philipp M??ller <tim at centricular dot net>
12688 * gst/speed/Makefile.am:
12689 * gst/speed/demo-mp3.c: (main):
12690 * gst/speed/filter.func:
12691 * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
12692 (speed_class_init), (speed_init), (speed_chain_int16),
12693 (speed_chain_float32), (speed_chain), (speed_set_property),
12694 (speed_get_property), (speed_change_state):
12695 * gst/speed/gstspeed.h:
12696 Fix speed element and make it chain-based (fixes #156467),
12697 and make it handle more than one channel.
12699 2005-02-10 Jan Schmidt <thaytan@mad.scientist.com>
12701 * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
12702 (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
12703 (gst_dtsdec_chain), (gst_dtsdec_change_state):
12704 * ext/dts/gstdtsdec.h:
12705 Don't clobber the stack constructing the channels array.
12706 Make the element chain-based. DTS tracks can now be played.
12708 2005-02-09 Tim-Philipp M??ller <tim at centricular dot net>
12710 * gst-libs/gst/audio/multichannel.h:
12711 * gst-libs/gst/gconf/gconf.h:
12712 * gst-libs/gst/idct/idct.h:
12713 * gst-libs/gst/media-info/media-info-priv.h:
12714 * gst-libs/gst/play/play.h:
12715 * gst-libs/gst/resample/private.h:
12716 * gst-libs/gst/resample/resample.h:
12717 * gst-libs/gst/riff/riff-ids.h:
12718 * gst-libs/gst/video/video.h:
12719 * gst-libs/gst/video/videosink.h:
12720 Add G_BEGIN_DECLS and G_END_DECLS around headers where
12721 missing, so that they work when included from C++ code.
12723 2005-02-09 David Schleef <ds@schleef.org>
12725 * testsuite/gst-lint: Check for non-statically scoped
12726 parent_class variables. This won't be a problem once
12727 plugins are loaded with RTLD_LOCAL.
12729 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12731 * ext/mplex/gstmplexibitstream.cc:
12734 2005-02-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12736 * ext/ogg/gstogmparse.c:
12737 * gst/debug/gstnavigationtest.c:
12738 Die, thou faulty symbol pollutors (non-static parent_class).
12740 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12742 * ext/mplex/gstmplexibitstream.cc:
12743 Fix event handling (#165525).
12745 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12747 * ext/mikmod/gstmikmod.c:
12748 * gst/modplug/gstmodplug.cc:
12749 Add missing endianness to template (fixes #165509).
12751 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12753 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
12754 Fix wrong order of reading of optional bytes (#165290).
12756 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12758 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
12759 Implement FILLER event awareness.
12761 2005-02-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12763 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
12764 Fix track calculations (#166208).
12766 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
12768 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12770 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
12771 * ext/libpng/gstpngenc.c:
12772 Fix byte-order, use proper fixed caps. Fixes #164197.
12774 2005-02-08 Jan Schmidt <thaytan@mad.scientist.com>
12779 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
12780 (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
12781 Don't push buffers if the src pad isn't negotiated yet.
12783 * gst/audioconvert/gstaudioconvert.c:
12784 (gst_audio_convert_buffer_to_default_format),
12785 (gst_audio_convert_buffer_from_default_format):
12786 Add support for 24-bit width.
12788 * gst/dvdlpcmdec/.cvsignore:
12789 * gst/dvdlpcmdec/Makefile.am:
12790 * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
12791 (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
12792 (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
12793 (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
12795 * gst/dvdlpcmdec/gstdvdlpcmdec.h:
12796 New decoder for rearranging DVD LPCM into our audio/x-raw-int
12797 format. Needs support for the channels maps if someone can find
12798 a DVD LPCM track with > 2 channels.
12800 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
12801 (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
12802 (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
12803 * gst/mpegstream/gstdvddemux.h:
12804 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
12805 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
12806 (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
12807 * gst/mpegstream/gstmpegdemux.h:
12808 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
12809 (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
12810 (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
12811 (gst_mpeg_parse_handle_src_query),
12812 (gst_mpeg_parse_handle_src_event):
12813 Use audio/x-dvd-lpcm for LPCM output.
12816 2005-02-08 Gergely Nagy <algernon@bonehunter.rulez.org>
12818 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12820 * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
12821 (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
12822 Add BGRA handling (#165736).
12824 2005-02-08 Francis Labonte <francis_labonte@hotmail.com>
12826 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12828 * gst/law/alaw-decode.c: (alawdec_link):
12829 * gst/law/alaw-encode.c: (alawenc_link):
12830 * gst/law/mulaw-decode.c: (mulawdec_link):
12831 * gst/law/mulaw-encode.c: (mulawenc_link):
12832 Fix caps memleaks (#166600).
12834 2005-02-08 Tim-Philipp M??ller <tim at centricular dot net>
12836 * ext/tarkin/mem.h:
12837 * ext/tarkin/wavelet.h:
12838 * ext/tarkin/yuv.h:
12839 * gst/ffmpegcolorspace/avcodec.h:
12840 Include "_stdint.h" instead of <stdint.h>. Fixes build on
12841 systems that don't have stdint.h, like Solaris9 (fixes #166631).
12843 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12845 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
12846 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
12847 (gst_xvimagesink_change_state):
12848 Clear window on PAUSED->READY instead of READY->PAUSED. Stop
12849 Xv video (and thereby regenerate Xv colourkey) in clear() so
12850 that PLAY -> READY -> PLAY works (fixes #162504).
12852 2005-02-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12854 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
12855 Switch to list instead of range, since MJPEG-devices really just
12856 support decimations, not any size.
12858 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
12859 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
12860 (gst_mpeg2dec_reset), (free_all_buffers),
12861 (gst_mpeg2dec_alloc_buffer), (handle_sequence):
12862 * ext/mpeg2dec/gstmpeg2dec.h:
12863 The libmpeg2 user-allocated buffer management is awkward,
12864 to say the least. Hopefully this fixes things.
12866 2005-02-04 Andy Wingo <wingo@pobox.com>
12868 * gst/audioconvert/bufferframesconvert.c
12869 (buffer_frames_convert_fixate): New function, fixates to 256
12870 frames per buffer by default. (Much better than 1.)
12871 (buffer_frames_convert_init): Set the fixate function for both src
12873 (buffer_frames_convert_link): After success setting nonfixed caps,
12874 get the negotiated caps so we can know how many buffer-frames it
12875 will be. No idea how this worked at all before.
12877 2005-02-05 Jan Schmidt <thaytan@mad.scientist.com>
12879 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
12880 (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
12881 (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
12882 (handle_sequence), (handle_picture):
12883 * ext/mpeg2dec/gstmpeg2dec.h:
12884 Rearrange buffer tracking and refcounting and refactor
12885 a little for readability.
12887 2005-02-04 Jan Schmidt <thaytan@mad.scientist.com>
12888 * sys/v4l/gstv4l.c: (plugin_init):
12889 * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
12890 (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
12891 (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
12892 (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
12893 * sys/v4l/gstv4ljpegsrc.h:
12894 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
12895 * sys/v4l/v4l_calls.h:
12896 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
12897 (gst_v4lsrc_get_fps):
12898 * sys/v4l/v4lsrc_calls.h:
12899 Add new v4ljpegsrc for handling the ov51x hacky "I'll give
12900 you jpeg inside rgb frames" driver.
12901 Don't error in the v4lsrc link function, just return
12904 2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12906 * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
12907 (gst_qcamsrc_open):
12908 Use GST_ELEMENT_ERROR, not g_warning, if open failed.
12910 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12912 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
12913 Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
12915 2005-02-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12917 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
12918 Reset negotiated state on PAUSED->READY.
12920 2005-02-02 David Schleef <ds@schleef.org>
12922 * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
12923 whereever possible. (Fixes #165997)
12924 * examples/capsfilter/capsfilter1.c: (main):
12925 * examples/dynparams/filter.c: (create_ui):
12926 * examples/seeking/cdparanoia.c: (get_track_info), (main):
12927 * examples/seeking/chained.c: (main):
12928 * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
12929 (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
12930 (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
12931 (make_mpeg_pipeline), (make_mpegnt_pipeline):
12932 * examples/seeking/spider_seek.c: (make_spider_pipeline):
12933 * examples/switch/switcher.c: (main):
12934 * ext/dv/demo-play.c: (main):
12935 * ext/faad/gstfaad.c: (gst_faad_change_state):
12936 * ext/mad/gstmad.c: (gst_mad_chain):
12937 * ext/smoothwave/demo-osssrc.c: (main):
12938 * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
12939 (gst_gconf_render_bin_from_description),
12940 (gst_gconf_get_default_audio_sink),
12941 (gst_gconf_get_default_video_sink),
12942 (gst_gconf_get_default_audio_src),
12943 (gst_gconf_get_default_video_src),
12944 (gst_gconf_get_default_visualization_element):
12945 * gst/level/demo.c: (main):
12946 * gst/level/plot.c: (main):
12947 * gst/playback/gstplaybin.c: (gen_video_element),
12948 (gen_audio_element):
12949 * gst/playback/test.c: (gen_video_element), (gen_audio_element):
12950 * gst/playondemand/demo-mp3.c: (setup_pipeline):
12951 * gst/sine/demo-dparams.c: (main):
12952 * gst/spectrum/demo-osssrc.c: (main):
12953 * gst/speed/demo-mp3.c: (main):
12954 * gst/volume/demo.c: (main):
12955 * testsuite/embed/embed.c: (main):
12957 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
12959 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
12960 (gst_tcpclientsink_finalize):
12961 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
12962 (gst_tcpclientsrc_finalize):
12963 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
12964 (gst_tcpserversink_init), (gst_tcpserversink_finalize):
12965 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
12966 (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
12967 Don't leak the hostname when shutting down.
12968 In tcpserversrc, take a copy of the default hostname.
12970 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12972 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
12973 Set caps to systemstream=TRUE.
12975 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12977 * testsuite/Makefile.am:
12978 Fix more OSX buildbots.
12980 2005-02-02 Jan Schmidt <thaytan@mad.scientist.com>
12982 * ext/mpeg2dec/gstmpeg2dec.c:
12983 Don't send things to NULL PAD_PEERs
12985 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
12986 Copy-on-write the incoming buffer.
12988 * gst/mpegstream/gstdvddemux.h:
12989 * gst/mpegstream/gstmpegclock.h:
12990 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
12991 (normal_seek), (gst_mpeg_demux_handle_src_event):
12992 * gst/mpegstream/gstmpegdemux.h:
12993 * gst/mpegstream/gstmpegpacketize.h:
12994 * gst/mpegstream/gstmpegparse.c:
12995 (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
12996 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
12997 (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
12998 (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
12999 (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
13000 * gst/mpegstream/gstmpegparse.h:
13001 * gst/mpegstream/gstrfc2250enc.h:
13002 Various changes to the way time is computed that make seeking and
13003 total time estimation much better here.
13004 Use G_BEGIN/END_DECLS instead of __cplusplus
13006 * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
13007 Use gst_buffer_stamp instead of only copying the TIMESTAMP
13009 2005-02-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13011 * gst/subparse/gstsubparse.c:
13014 2005-01-31 Tim-Philipp M??ller <tim at centricular dot net>
13016 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
13017 (theora_enc_chain), (theora_enc_change_state):
13018 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
13019 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
13020 (gst_vorbisenc_change_state):
13021 * ext/vorbis/vorbisenc.h:
13022 Set granulepos and timestamp correctly for streams not
13023 starting at 0, taking into account the initial delay.
13025 2005-01-31 Tim-Philipp M??ller <tim at centricular dot net>
13027 * gst/mpegstream/gstdvddemux.c:
13028 Add audio/x-dts to audio pad template caps
13030 2005-01-30 David Schleef <ds@schleef.org>
13032 * ext/polyp/polypsink.c: (gst_polypsink_base_init),
13033 (create_context), (gst_polypsink_link): Fix silly endianness
13034 bug. Add some debugging. Remove float from caps; it doesn't
13035 work. Attempt to get remote audio working.
13037 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13039 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
13042 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13044 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
13045 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
13046 (gst_avi_demux_stream_data):
13047 * gst/avi/gstavidemux.h:
13048 Invert DIB images. Fixes #132341.
13050 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13052 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13053 (gst_ffmpegcsp_chain):
13054 D'oh, reference the palette data, not the palette structure.
13055 Fixes color distortion in #132341.
13057 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13059 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
13060 PAR can be non-fixed when not provided as argument (#162626).
13062 2005-01-29 David Moore <dcm@acm.org>
13064 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13066 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
13067 (gst_qtdemux_loop_header):
13068 Re-apply patch from #142272 that allows non-seekable sources,
13069 re-proposed by Daniel Drake <dsd@gentoo.org>.
13071 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13073 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
13074 Use the src template for creating the src pad (#162330).
13076 2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13079 * ext/musepack/Makefile.am:
13080 * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
13081 (gst_musepackdec_init), (gst_musepackdec_dispose),
13082 (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
13083 (gst_musepack_stream_init), (gst_musepackdec_loop),
13084 (gst_musepackdec_change_state):
13085 * ext/musepack/gstmusepackdec.cpp:
13086 * ext/musepack/gstmusepackdec.h:
13087 * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
13088 (gst_musepack_reader_read), (gst_musepack_reader_seek),
13089 (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
13090 (gst_musepack_reader_canseek), (gst_musepack_init_reader):
13091 * ext/musepack/gstmusepackreader.cpp:
13092 * ext/musepack/gstmusepackreader.h:
13093 Update to 1.1 API (#165446).
13095 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13100 2005-01-28 Andy Wingo <wingo@pobox.com>
13102 * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
13103 to reflect a different dubious internet source. Add a reference
13104 and some commentary.
13106 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13108 * gst/playback/gststreamselector.c: (gst_stream_selector_init),
13109 (gst_stream_selector_get_caps), (gst_stream_selector_chain):
13110 * gst/playback/gststreamselector.h:
13111 Be more selective when we're redoing caps negotiation from
13112 within the chain function on a stream change.
13114 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13118 * ext/amrnb/Makefile.am:
13119 * ext/amrnb/amrnb.c: (plugin_init):
13120 * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
13121 (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
13122 (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
13123 (gst_amrnbdec_state_change):
13124 * ext/amrnb/amrnbdec.h:
13125 * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
13126 (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
13127 (gst_amrnbparse_init), (gst_amrnbparse_formats),
13128 (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
13129 (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
13130 (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
13131 * ext/amrnb/amrnbparse.h:
13132 Add support for AMR-NB (mobile phone audio format; #155163, #163286).
13133 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13134 Add AMR-NB/-WB raw formats.
13135 * ext/alsa/gstalsa.c: (gst_alsa_link):
13136 Keep valid time when changing format.
13137 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
13138 (qtdemux_parse_trak):
13139 Add some more format-specific options (#140141, #143555, #155163).
13141 2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13143 * gst/matroska/matroska-demux.c:
13144 (gst_matroska_demux_parse_blockgroup):
13145 Fix logic error in timing of subtitle stream synchronization.
13146 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
13147 Add skip-chunk, which is found in kodak-camera streams.
13149 2005-01-27 Thomas Vander Stichele <thomas at apestaart dot org>
13153 Adding Vietnamese translation (submitted by Clytie Siddall)
13155 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13157 * gst/playback/gstdecodebin.c: (try_to_link_1):
13158 Use realpad for signal.
13160 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13162 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
13163 Fix category so decodebin picks it up.
13165 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13167 * ext/mad/Makefile.am:
13168 * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
13169 (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
13170 (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
13171 (found_type), (gst_id3demux_bin_change_state):
13172 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
13173 (gst_id3_tag_init), (gst_id3_tag_handle_event),
13174 (gst_id3_tag_src_link), (gst_id3_tag_chain),
13175 (gst_id3_tag_change_state), (plugin_init):
13176 * ext/mad/gstmad.h:
13177 Add id3demuxbin (which is a simple bin consisting of id3demux
13178 and typefind), take over rank from id3demux, remove typefind
13179 code from id3demux. Makes all broken mp3s that I know of work,
13180 and thereby fixes #152688.
13182 2005-01-27 Edward Hervey <bilboed@bilboed.com>
13184 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13186 * ext/mad/gstmad.c: (gst_mad_src_event):
13187 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
13188 Allow seeks on audio pad, make mad forward those (#164826).
13189 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
13190 Set duration (#165335).
13192 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13194 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
13195 (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
13196 (gst_asf_demux_process_ext_content_desc),
13197 (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
13198 (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
13199 * gst/asfdemux/gstasfdemux.h:
13200 Improve metadata display, e.g. if the metadata comes before the
13201 streams are loaded (which is perfectly valid).
13203 2005-01-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13205 * tools/gst-launch-ext-m.m:
13206 Fix AVI/ASF pipelines (#165340).
13208 2005-01-26 Amaury Jacquot <sxpert@esitcom.org>
13209 * ext/cairo/gsttextoverlay.c: include string.h and strings.h to fix
13210 build failure on amd64
13212 2005-01-26 Tim-Philipp M??ller <tim at centricular dot net>
13214 * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
13215 (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
13216 Check environment variables GST_ID3V2_TAG_ENCODING,
13217 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
13218 list of character encodings to force interpretation of non-unicode
13219 strings stored in an ID3v2 tag to a particular encoding. If none
13220 is specified, try to use current locale's encoding, then fall back
13221 to ISO-8859-1 (which will always succeed). (Resolves #149274)
13222 * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
13223 (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
13224 Check environment variables GST_ID3V1_TAG_ENCODING,
13225 GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
13226 list of character encodings to use in case a string encountered
13227 in an ID3v1 tag is not valid UTF-8 already. If no encoding is
13228 specified, try to use the current locale's encoding, then fall
13229 back to ISO-8859-1 (which will always succeed).
13231 2005-01-25 Benjamin Otte <otte@gnome.org>
13233 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
13234 - on half framerate, compute the rate in advance so the comparisons
13235 don't compare wrong values
13236 - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
13238 - don't use mad_header_decode anymore, mad_frame_decode does that
13240 - when getting rid of consumed bytes, reset the stream's skiplen
13243 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
13245 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
13246 Use 1/2 a second for default max_discont, as PES streams from DVB
13247 seem to have larger spacings in the SCR.
13250 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13252 * gst/playback/gstplaybasebin.c: (group_commit):
13253 Notify delayed stream-info availability.
13255 2005-01-26 Jan Schmidt <thaytan@mad.scientist.com>
13256 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
13257 (gst_a52dec_handle_event), (gst_a52dec_chain):
13258 Add some debug output. Check that a discont has a valid
13260 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
13261 (gst_alsa_sink_loop):
13262 Ignore TAG events. A little extra debug for broken timestamps.
13263 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
13264 (dvdnavsrc_change_state):
13265 Ensure we send a discont to engage the link before we send any
13267 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
13268 (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
13269 (_seek_chapter), (seek_sector), (dvdreadsrc_get),
13270 (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
13271 Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
13272 dvd://title works in totem because typefinding sends a seek that ends
13273 up going back to chapter 1 regardless.
13274 * ext/mpeg2dec/gstmpeg2dec.c:
13275 * ext/mpeg2dec/gstmpeg2dec.h:
13276 Output correct timestamps and handle disconts.
13277 * ext/ogg/gstoggdemux.c: (get_relative):
13278 Small guard against a null dereference.
13279 * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
13280 (gst_textoverlay_set_property):
13281 Free memory when done. Don't call gst_event_filler_get_duration on
13282 EOS events. Use GST_LOG and GST_WARNING instead of g_message and
13284 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
13285 (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
13286 (gst_sw_srclink), (gst_smoothwave_chain):
13287 Draw solid lines, prettier colours.
13288 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
13289 Add a default palette that'll work for some movies.
13290 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
13291 (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
13292 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
13293 * gst/mpegstream/gstdvddemux.h:
13294 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
13295 (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
13296 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
13297 (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
13298 * gst/mpegstream/gstmpegparse.h:
13299 Use PTM/NAV events when for timestamp adjustment when connected to
13300 dvdnavsrc. Don't use many discont events where one suffices.
13301 * gst/playback/gstplaybasebin.c: (group_destroy),
13302 (gen_preroll_element), (gst_play_base_bin_add_element):
13303 * gst/playback/gstplaybasebin.h:
13304 Make sure we remove subtitles from the same bin we put them in.
13305 * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
13306 (gst_subparse_buffer_format_autodetect),
13307 (gst_subparse_change_state):
13308 Fix some memleaks and invalid accesses.
13309 * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
13310 (oggskel_type_find), (cmml_type_find), (plugin_init):
13311 Some typefind functions for Annodex v3.0 files
13312 * gst/wavparse/gstwavparse.h:
13313 GstRiffReadClass is the correct parent class.
13315 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13317 * gst-libs/gst/riff/riff-media.c:
13318 (gst_riff_create_video_caps_with_data):
13319 Add extradata to huffyuv (fixes #165013).
13320 * gst-libs/gst/riff/riff-read.c:
13321 (gst_riff_read_strf_vids_with_data):
13322 Fix extradata extraction if it is in the chunk size.
13324 2005-01-25 Edward Hervey <bilboed@bilboed.com>
13326 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13328 * gst/effectv/gstquark.c: (gst_quarktv_class_init),
13329 (gst_quarktv_change_state), (gst_quarktv_dispose):
13330 Memory free'ing location fix (#164708).
13332 2005-01-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13334 * gst/playback/gstplaybasebin.c: (group_commit),
13335 (gen_preroll_element), (probe_triggered), (gen_source_element),
13336 (setup_source), (gst_play_base_bin_change_state),
13337 (gst_play_base_bin_add_element):
13338 Don't block for streams.
13339 * gst/playback/gststreaminfo.c: (stream_info_change_state),
13340 (gst_stream_info_set_mute):
13341 Use gst_pad_set_active_recursive.
13343 2005-01-25 Andy Wingo <wingo@pobox.com>
13345 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
13346 for #ifndef HAVE_XVIDEO.
13348 2005-01-24 Jeffrey C. Ollie
13350 reviewed by: Maciej Katafiasz <mathrick@freedesktop.org>
13352 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
13353 * ext/gsm/gstgsmdec.h:
13354 * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
13355 * ext/gsm/gstgsmenc.h:
13356 Fix rate to 8kHz as per spec, removes obscure errors when no rate
13357 was given by property. Add proper buffer timestamps and offsets.
13359 2005-01-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13361 * gst-libs/gst/riff/riff-media.c:
13362 (gst_riff_create_audio_caps_with_data):
13363 Audio can be <8000Hz.
13365 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13367 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
13368 Explicit state change to workaround refcount bugs.
13370 2005-01-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13372 * gst/avi/gstavimux.c: (gst_avimux_write_tag),
13373 (gst_avimux_riff_get_avi_header):
13376 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13378 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
13379 (gst_riff_read_element_data):
13380 * gst-libs/gst/riff/riff-read.h:
13381 Add _peek version (req'ed in CDXA).
13382 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
13383 (gst_cdxaparse_loop):
13384 Fix parsing in playbin.
13385 * gst/playback/gstdecodebin.c: (close_pad_link):
13386 Ignore current_ pads, they cause major annoyance.
13388 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13390 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
13393 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13395 * gst/avi/gstavimux.c: (gst_avimux_write_tag):
13398 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13400 * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
13401 Allow for 0-sized buffers. Fixes length query problems in
13402 starwars.mkv from the testsuite.
13404 2005-01-19 Tim-Philipp M??ller <tim at centricular dot net>
13406 * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
13407 (gst_video_box_i420), (gst_video_box_chain):
13408 Fix row strides for I420 (fixes #163159)
13410 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13412 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
13413 MPEG2 has a useful rate property, so we can actually use that.
13414 For MPEG-1, continue using the bytes/time properties.
13416 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13418 * gst-libs/gst/riff/riff-media.c:
13419 (gst_riff_create_video_caps_with_data),
13420 (gst_riff_create_video_template_caps):
13423 2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13425 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
13426 Fail if caps negotiation fails. Should fix #162184, and should
13427 definately be in there regardless of it fixing the actual bug.
13428 * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
13429 (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
13430 (gst_avimux_riff_get_avix_header),
13431 (gst_avimux_riff_get_video_header),
13432 (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
13433 (gst_avimux_start_file), (gst_avimux_handle_event),
13434 (gst_avimux_change_state):
13435 * gst/avi/gstavimux.h:
13436 Refactor structure writing to use GST_WRITE_UINT macros, add
13437 metadata writing support.
13439 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13441 * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
13442 Elements may already be destroyed when this function is called.
13444 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13446 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
13447 (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
13448 More memory leak fixes (#149162).
13450 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13452 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
13453 (gst_qtdemux_add_stream):
13456 2005-01-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13458 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
13461 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13463 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
13464 Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
13465 when fixating to six channels in Totem.
13467 2005-01-17 Tim-Philipp M??ller <tim at centricular dot net>
13469 * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
13470 Fix compile warnings on Solaris 10 buildbot
13472 2005-01-17 Tim-Philipp M??ller <tim at centricular dot net>
13474 * ext/dvdread/dvdreadsrc.c: (_read):
13475 Don't read beyond the last cell in a chapter (fixes
13476 invalid memory access)
13478 2005-01-17 Tim-Philipp M??ller <tim at centricular dot net>
13480 * ext/dvdread/stream_labels.c:
13481 (dvdreadsrc_get_audio_stream_labels):
13482 Use NULL for an empty GList instead of g_list_alloc(); fix
13483 memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead
13484 of GString (easier to bulk free later)
13486 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
13488 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13490 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13491 (gst_ffmpeg_pixfmt_to_caps):
13492 Fix BGRA32 caps (#164209).
13494 2005-01-17 Gergely Nagy <algernon@bonehunter.rulez.org>
13496 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13498 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13499 (gst_ffmpeg_caps_to_pixfmt):
13500 alpha_mask can be RGBA/ABGR. Fixes #164265.
13502 2005-01-17 Francis Labonte <francis_labonte@hotmail.com>
13504 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13506 * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
13507 (gst_mpeg2dec_alloc_buffer):
13508 * ext/mpeg2dec/gstmpeg2dec.h:
13509 Crop if decoding size is not the actual image size (#163676).
13511 2005-01-17 Steve Baker <steve@stevebaker.org>
13513 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13515 * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
13516 (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
13517 Add libsndfile typefind functions (#163309).
13519 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13521 * tools/gst-launch-ext-m.m:
13522 Add .aac, fix .m1v/.m2v (#163891).
13524 2005-01-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13526 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
13527 Sanity check, don't wait endlessly since the clock might not
13528 actually run at this point (which is a deadlock). Fixes #164069.
13530 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13532 * gst/playback/gstplaybasebin.c: (probe_triggered):
13533 Of course, only pause if group is done...
13535 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13537 * gst/playback/gstplaybasebin.c: (probe_triggered):
13540 2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
13542 * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
13543 Don't return state change success when the parent
13546 2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13548 * gst/avi/gstavimux.c: (gst_avimux_handle_event):
13549 Free events (fix memleak in #162905).
13551 2005-01-15 Gergely Nagy <algernon@bonehunter.rulez.org>
13553 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13555 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13556 (gst_ffmpeg_caps_to_pixfmt):
13557 Fix for depth = 15. Fixes #161675.
13559 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13561 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
13562 Set FPS correctly, even for webcams and the like.
13563 * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
13564 Don error on setting while capturing.
13566 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13568 * ext/dv/gstdvdec.c:
13569 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
13570 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
13571 I'm a bad boy. using /1001. to force C to do float division
13572 and not integer division (as it did in my last commit)
13573 Thanks to David I. Lehn for pointing this mistake.
13575 2005-01-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13577 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
13578 Revert Johan??s 1.35->1.36 since it breaks compat.
13580 2005-01-14 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13582 * ext/dv/gstdvdec.c:
13583 * ext/libfame/gstlibfame.c:
13584 * gst/subparse/gstsubparse.c: (parse_mdvdsub):
13585 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
13586 replace framerate aproximations by their real value
13587 (24000/1001, 30000/1001, 60000/1001)
13588 Finish fixing bug #164049
13590 2005-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
13592 * ext/ogg/gstoggmux.c:
13594 * gst/tcp/gstmultifdsink.c:
13595 * gst/tcp/gstmultifdsink.h:
13596 * gst/tcp/gsttcp.c:
13597 * gst/tcp/gsttcp.h:
13598 * gst/tcp/gsttcpclientsink.c:
13599 * gst/tcp/gsttcpclientsrc.c:
13600 * gst/tcp/gsttcpserversink.c:
13601 * gst/tcp/gsttcpserversrc.c:
13602 improve reusability of elements after state changes and errors
13603 make multifdsink throw away streamheaders when receiving new ones
13605 2005-01-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13607 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
13608 Fix for if items are already in list...
13610 2005-01-12 Benjamin Otte <otte@gnome.org>
13612 * gst/adder/gstadder.c: (gst_adder_loop):
13613 fix adder a bit so it doesn't screw up with events as much anymore
13615 2005-01-12 Jan Schmidt <thaytan@mad.scientist.com>
13617 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
13618 (pixbufscale_scale), (gst_pixbufscale_chain):
13619 * ext/gdk_pixbuf/pixbufscale.h:
13620 Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
13621 to ensure rowstrides are calculated the same way as
13623 Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
13624 that we pick up duration and offset also.
13626 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13628 * gst/avi/gstavimux.c: (gst_avimux_class_init),
13629 (gst_avimux_pad_unlink), (gst_avimux_release_pad):
13632 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13634 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
13635 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
13636 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
13637 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
13638 Update flags when requested.
13640 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13642 * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
13645 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13647 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13648 (gst_play_base_bin_init), (gst_play_base_bin_dispose),
13649 (probe_triggered), (new_decoded_pad), (gen_source_element),
13650 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
13651 * gst/playback/gstplaybasebin.h:
13652 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13653 (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
13654 (gst_play_bin_change_state):
13655 Implement group-switch signal for use in apps to clear metadata
13656 cache, clean up subtitle, add suburi property instead of # hack,
13657 some error-out fixes.
13659 2005-01-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13661 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13663 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
13664 If we got a state change in the _get handler, don't return success.
13666 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13668 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
13669 (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
13670 Make jpegdec quiet on MJPEG decoding
13671 * gst/asfdemux/README:
13672 Fix mimetypes for MJPEG and H263
13674 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13676 * ext/theora/theoradec.c: (theora_dec_chain):
13677 Fix broken code generation by gcc by swapping arguments.
13678 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13681 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13684 delete this file, it is by far outdated
13685 * ext/alsa/gstalsa.1: remove
13686 * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
13687 (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
13688 (gst_alsa_get_caps):
13689 Add HW probing for supported sample rates. Fixes #161704
13691 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13693 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
13694 Don't crash, biatch! :).
13696 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13698 * ext/musepack/gstmusepackreader.cpp:
13699 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
13700 Some work on tags - still doesn't work in playbin...
13701 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
13704 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13706 * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
13707 Also shove tags on kid pads.
13709 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13711 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
13712 Don't bail on unknown events.
13713 * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
13714 Don't crash on events before negotiation.
13715 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
13716 Send tags on pads, too.
13717 * gst/playback/gststreamselector.c:
13718 (gst_stream_selector_request_new_pad):
13719 Forward events on first pad if no input was selected yet.
13721 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13723 * gst/playback/gstplaybasebin.c: (setup_substreams):
13724 Don't disable streamtype if the stream doesn't exist, since
13725 then playing a video after audio will disable both and nothing
13726 will happen. Fixes the testsuite.
13728 2005-01-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13730 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
13731 (gst_v4l_xoverlay_set_xwindow_id):
13732 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
13733 (gst_v4l2_xoverlay_set_xwindow_id):
13734 Add debug categories, fix overlay disabling.
13736 2005-01-10 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13738 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
13739 * ext/alsa/gstalsa.h:
13740 Add HW probing for period_count/size and buffer_size MIX/MAX
13741 Adjust default/user defined value if out of bounds
13742 Should fix bug #162024
13744 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13746 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
13747 Fix warning (#161191).
13749 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13751 * ext/dvdread/stream_labels.c:
13752 (dvdreadsrc_get_audio_stream_labels):
13753 Fix warning (init the good variable in switch default)
13755 2005-01-09 Koop Mast <kwm@rainbow-runner.nl>
13757 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13759 * gst/tta/gstttaparse.c: (gst_tta_src_event):
13760 Fix gcc-2.95 compile (#163485).
13762 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13765 * ext/flac/gstflacenc.c: (gst_flacenc_init),
13766 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
13767 (gst_flacenc_tell_callback), (gst_flacenc_chain),
13768 (gst_flacenc_change_state):
13769 * ext/flac/gstflacenc.h:
13770 Update for API change in flac-1.1.1. Update requirement in
13771 configure.ac. Fixes #162974.
13773 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13775 * gst/playback/gstplaybasebin.c: (group_destroy):
13776 Remove hack to get rid of assert and get rid of unlinked
13779 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13781 * gst/playback/gstplaybasebin.c: (setup_source):
13782 Set source to NULL so that resources are free'ed. Fixes issues
13783 with playback of CDDA and similar device-accessing things.
13785 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13787 * testsuite/embed/Makefile.am:
13788 test->noinst, fix make test in buildbot.
13790 2005-01-09 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
13792 * ext/dvdread/stream_labels.c: new file
13793 * ext/dvdread/stream_labels.h: new file
13794 * ext/dvdread/Makefile.am:
13795 * ext/dvdread/dvdreadsrc.c: (_seek_title):
13796 Extract audio stream label from DVD IFO files.
13797 It only dump them on the console for now, still have to
13798 make playbin aware of them.
13800 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13802 * gst/playback/gstplaybasebin.c: (setup_source):
13805 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13807 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
13808 (gen_preroll_element), (remove_groups), (setup_subtitle),
13809 (gen_source_element), (setup_source):
13810 * gst/playback/gstplaybasebin.h:
13811 Multiple .sub files is just a stupid idea... Fix some threading
13812 mistakes. Interestingly, external .sub files cause playbin to
13813 hang, I don't know why... Parsing fixes contributed by Fran??ois
13814 Kooman <fkooman@tuxed.net>.
13816 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13818 * testsuite/embed/Makefile.am:
13821 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
13823 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13825 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
13826 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
13827 (gst_pngenc_set_property):
13828 * ext/libpng/gstpngenc.h:
13829 Add compression level property (#163323).
13831 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13834 * examples/capsfilter/capsfilter1.c: (main):
13835 * examples/seeking/spider_seek.c: (make_spider_pipeline):
13836 * ext/dvdread/Makefile.am:
13837 * ext/dvdread/demo-play:
13838 * ext/dvdread/demo-play.c:
13839 * gconf/gstreamer.schemas.in:
13840 * gst-libs/gst/gconf/gconf.c:
13842 * testsuite/Makefile.am:
13843 * testsuite/embed/Makefile.am:
13844 * testsuite/embed/embed.c: (cb_expose), (main):
13845 Remove all references to xvideosink, fix examples (#140845).
13846 * gst/playback/gstplaybasebin.c: (group_destroy):
13847 Apparently, disposal does not unlink - so do explicitely.
13848 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
13851 2005-01-09 Maciej Katafiasz <mathrick@freedesktop.org>
13853 * README: fix PKG_CONFIG_PATH instructions, what was there
13854 previously was breaking default search path, not nice.
13857 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13859 * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
13860 (gst_audioscale_chain):
13861 %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
13862 when resampling - how the ^@$^!@^! is this possible?!?
13864 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13866 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
13867 Reset variables on READY.
13868 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
13869 (gst_matroska_mux_loop):
13870 Require data before writing header.
13872 2005-01-09 Francis Labonte <francis_labonte@hotmail.com>
13874 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13876 * ext/mad/gstmad.c: (gst_mad_chain):
13877 Don't call mad_stream_sync() directly after recovering sync.
13880 2005-01-09 Martin Eikermann <meiker@upb.de>
13882 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13884 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
13885 (snapshot_handler), (gst_snapshot_sinkconnect),
13886 (gst_snapshot_chain):
13887 Allocate resources when required, fix recursive signal emission
13888 and fix caps. Fixes #161667.
13890 2005-01-09 Gergely Nagy <algernon@bonehunter.rulez.org>
13892 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13894 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
13895 (gst_pngdec_chain):
13896 Handle only 8-bppc (bits-per-pixel-component) images, better
13897 error handling and correct strides. Fixes #163177.
13898 * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
13899 (gst_pngenc_chain):
13900 Better error handling. Fixes #163348.
13902 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13904 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
13905 (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
13906 (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
13907 (dvdnavsrc_uri_handler_init):
13908 Add DVD-nav URI (dvdnav://) for Totem testing purposes.
13909 * gst/playback/gstplaybasebin.c: (gen_source_element):
13910 Add MMS to streaming URIs.
13912 2005-01-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13914 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
13915 * sys/xvimage/xvimagesink.c:
13916 (gst_xvimagesink_navigation_send_event):
13917 Check for pad availability before sending event.
13919 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13921 * gst-plugins.spec.in:
13924 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13927 Since we use functions from CVS, up requirement.
13929 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13931 * gst/playback/Makefile.am:
13932 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13933 (group_destroy), (group_commit), (group_is_muted),
13934 (gen_preroll_element), (add_stream), (unknown_type),
13935 (probe_triggered), (preroll_unlinked), (mute_stream),
13936 (silence_stream), (new_decoded_pad), (setup_substreams),
13937 (setup_source), (get_active_source), (mute_group_type),
13938 (muted_group_change_state), (set_active_source),
13939 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
13940 (play_base_eos), (gst_play_base_bin_change_state):
13941 * gst/playback/gstplaybasebin.h:
13942 * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
13943 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
13944 (gst_stream_info_dispose), (stream_info_mute_pad),
13945 (stream_info_change_state), (gst_stream_info_set_mute):
13946 * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
13947 (gst_stream_selector_base_init), (gst_stream_selector_class_init),
13948 (gst_stream_selector_init), (gst_stream_selector_dispose),
13949 (gst_stream_selector_get_linked_pad),
13950 (gst_stream_selector_get_caps), (gst_stream_selector_link),
13951 (gst_stream_selector_get_linked_pads),
13952 (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
13953 * gst/playback/gststreamselector.h:
13954 Adding stream selection support plus required properties for
13955 applications to use this. Fully fixes #100931.
13957 2005-01-08 Benjamin Otte <otte@gnome.org>
13959 * gst/games/gstpuzzle.c: (nav_event_handler):
13960 - handle nav events differently: forward every event no matter if it
13961 was handled or not.
13963 You can now cheat by using navigationtest ! puzzle and moving the
13964 mouse close to the edge of a tile. ;)
13966 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
13969 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
13970 * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
13971 (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
13972 (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
13973 (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
13974 (gst_ogm_parse_plugin_init):
13975 * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
13976 (gst_textoverlay_link), (gst_textoverlay_getcaps),
13977 (gst_textoverlay_event), (gst_textoverlay_video_chain),
13978 (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
13979 * ext/pango/gsttextoverlay.h:
13980 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13981 (gst_matroska_demux_handle_seek_event),
13982 (gst_matroska_demux_sync_streams),
13983 (gst_matroska_demux_parse_blockgroup),
13984 (gst_matroska_demux_subtitle_caps),
13985 (gst_matroska_demux_plugin_init):
13986 * gst/matroska/matroska-ids.h:
13987 * gst/playback/gstdecodebin.c: (close_pad_link):
13988 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
13989 (gen_preroll_element), (remove_groups), (add_stream),
13990 (new_decoded_pad), (setup_subtitles), (gen_source_element),
13992 * gst/playback/gstplaybasebin.h:
13993 * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
13994 * gst/subparse/Makefile.am:
13995 * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
13996 (gst_subparse_base_init), (gst_subparse_class_init),
13997 (gst_subparse_init), (gst_subparse_formats),
13998 (gst_subparse_eventmask), (gst_subparse_event),
13999 (gst_subparse_handle_event), (convert_encoding), (get_next_line),
14000 (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
14001 (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
14002 (parse_mpsub_deinit), (parse_mpsub_init),
14003 (gst_subparse_buffer_format_autodetect),
14004 (gst_subparse_format_autodetect), (gst_subparse_loop),
14005 (gst_subparse_change_state), (gst_subparse_type_find),
14007 * gst/subparse/gstsubparse.h:
14008 * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
14010 Add subtitle support, .sub parser (supports SRT and MPsub),
14011 OGM text support, Matroska UTF-8 text support, deadlock fixes
14012 all over the place, subtitle awareness in decodebin/playbin
14013 and some fixes to textoverlay to handle subtitles in a stream
14014 correctly. Fixes #100931.
14016 2005-01-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14018 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
14019 Check for pad availability before doing a query on it.
14021 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14023 * ext/dv/gstdvdec.c:
14024 really fix bpp24/32 dvdec caps (classic rgba indeed)
14025 * gst/asfdemux/gstasfdemux.c:
14026 (gst_asf_demux_process_ext_content_desc):
14027 don't send text tags if they are empty (bis repetita)
14029 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14031 * ext/dv/gstdvdec.c:
14032 remove unneeded comment from dvdec
14033 (related to DV 4CC codes in AVI files)
14034 moved them in gstreamer/docs/random/mimetypes
14035 * gst/asfdemux/gstasfdemux.c:
14036 (gst_asf_demux_process_ext_content_desc):
14037 don't send text tags if they are empty
14038 fix mem leak on error path
14039 * gst/ffmpegcolorspace/avcodec.h:
14040 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14041 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
14042 (gst_ffmpegcsp_avpicture_fill):
14043 * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
14044 * gst/ffmpegcolorspace/imgconvert_template.h:
14045 adds BGR32 and BGRA32 to ffmpegcolorspace
14046 (still bad colors, fixing it on next commit)
14047 helps with dvdec outputing BGR32
14049 2005-01-08 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14051 * ext/dv/gstdvdec.c:
14052 Fix audio caps i just broke (missing ',')
14053 * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
14054 (gst_matroska_mux_reset):
14055 Fix typo + add FIXME about old "x-gst-metadata" crap
14057 2005-01-07 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14059 * ext/dv/demo-play.c: (main):
14060 xvideosink -> xvimagesink
14061 * ext/dv/gstdvdec.c:
14062 change rgb 32/32 caps to 24/32 (no alpha)
14063 change nb of channels to be a list (2 or 4, not 2)
14064 change sample rate to be a list (32, 44.1, 48 kHz) not a range
14065 * gst/asfdemux/gstasfdemux.c:
14066 (gst_asf_demux_process_ext_content_desc):
14067 Add 'date/year' to extracted metadata list
14069 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14071 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
14072 The return value of fixate_to does not imply that the requested
14073 value was set, so don't assume.
14075 2005-01-07 Gergely Nagy <algernon@bonehunter.rulez.org>
14077 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14079 * ext/libpng/gstpngdec.c:
14080 * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
14081 (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
14082 * ext/libpng/gstpngenc.h:
14083 Alpha support (encoder; #163161), mime fixage.
14085 2005-01-07 Sebastien Cote <sc5@hermes.usherb.ca>
14087 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14089 * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
14090 (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
14091 (gst_faac_set_property), (gst_faac_get_property):
14092 * ext/faac/gstfaac.h:
14093 Allow for ADTS output (#153434).
14095 2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14097 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
14098 Fix against template (#150576).
14100 2005-01-06 Benjamin Otte <otte@gnome.org>
14102 * gst/games/gstpuzzle.c: (draw_puzzle):
14103 don't draw a puzzle if either width or height of tiles would be 0.
14105 2005-01-06 Benjamin Otte <otte@gnome.org>
14107 * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
14108 (gst_puzzle_class_init), (gst_puzzle_finalize):
14109 no memleaks, please
14110 (gst_puzzle_create), (gst_puzzle_init),
14111 (gst_puzzle_set_property), (gst_puzzle_setup):
14112 change initialization code around so we don't reshuffle on resize
14114 fix another stupid typo
14116 2005-01-06 Benjamin Otte <otte@gnome.org>
14118 * gst/games/gstvideoimage.c: (copy_hline_YUY2):
14119 fix stupid typo that borked copying on YUY2
14121 2005-01-06 Benjamin Otte <otte@gnome.org>
14123 * gst/games/gstpuzzle.c: (draw_puzzle):
14124 fix edges when image sizes aren't multiples of tile sizes
14126 2005-01-06 Benjamin Otte <otte@gnome.org>
14128 * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
14129 make RGB endianness work correctly
14130 (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
14131 refactor and fix race with initial shuffling
14132 (nav_event_handler):
14133 allow using the mouse to puzzle
14135 insist on tiles having width and height as multiples of 4 to get
14136 clean YUV image handling
14137 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14138 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
14139 s/DEBUG/LOG/ for common messages
14140 (gst_xvimagesink_navigation_send_event):
14141 fix mouse event translation to not include screen PAR
14142 * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
14143 fix mouse event translation to actually work
14145 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14147 * gst/asfdemux/gstasfdemux.c:
14148 (gst_asf_demux_process_ext_content_desc):
14149 Extract TrackNumber metadata + clean up code
14150 * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
14151 Hope this is the good fix (var used unitialised)
14153 2005-01-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14155 * ext/faad/gstfaad.c: (gst_faad_chain):
14156 Only increment timestamp if it's valid. Fixes raw AAC streams.
14158 2005-01-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
14161 * gst/games/Makefile.am:
14162 * gst/games/gstpuzzle.c:
14163 add a puzzle game with...
14164 * gst/games/gstvideoimage.c:
14165 * gst/games/gstvideoimage.h:
14166 ... full colorspace support (that includes YUV9 and RGB16)) stolen
14167 from videotestsrc and made into something that would be a nice
14168 library for a lot of other plugins.
14170 2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14173 don't compile faad plugin if a RC of 2.0 is found
14174 Fixes #155346 (and FC1 buildbot)
14175 * gst/asfdemux/gstasfdemux.c:
14176 (gst_asf_demux_process_ext_content_desc):
14177 try to make Solaris compiler happier
14179 2005-01-06 Paul Jack <pjack@sfaf.org>
14181 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14183 * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
14184 Fix segfault (#161667).
14186 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14188 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
14189 Fix framerate reporting.
14191 2005-01-05 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
14193 * gst-libs/gst/riff/riff-ids.h:
14194 * gst/wavenc/riff.h:
14195 Add AMR (VBR and CBR) ids to riff.h audio codec list
14196 * gst/asfdemux/gstasfdemux.c:
14197 (gst_asf_demux_process_ext_content_desc),
14198 (gst_asf_demux_process_object):
14199 Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
14201 2005-01-05 Martin Eikermann <meiker@upb.de>
14203 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14205 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
14206 (gst_dvd_demux_handle_discont):
14207 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
14208 (gst_mpeg_demux_handle_discont):
14209 Recreate pads on new-media (#160730).
14210 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
14211 Send discont even if manager changes timestamps (#161929).
14213 2005-01-05 Sebastien Cote <sc5@hermes.usherb.ca>
14215 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14217 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
14218 Fix invalid memory access (#159211).
14220 2005-01-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14222 * examples/gstplay/player.c: (main):
14224 * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
14225 Add visualizations.
14226 * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
14227 (gst_a52dec_handle_frame):
14229 * ext/dvdnav/gst-dvd:
14230 Add audioconvert. Fixes #161325.
14231 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
14232 Explicitely case to gint64. Possible valgrind error.
14233 * gst-libs/gst/play/play.c: (caps_set), (setup_size),
14234 (gst_play_tick_callback), (gst_play_change_state),
14235 (gst_play_dispose), (gst_play_init), (gst_play_class_init),
14236 (gst_play_set_location), (gst_play_get_location),
14237 (gst_play_seek_to_time), (gst_play_set_data_src),
14238 (gst_play_set_video_sink), (gst_play_set_audio_sink),
14239 (gst_play_set_visualization), (gst_play_connect_visualization),
14240 (gst_play_get_framerate), (gst_play_get_all_by_interface),
14242 Use playbin. Fixes #139749 and #147744.
14243 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
14245 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
14246 (audioscale_get_type), (gst_audioscale_base_init),
14247 (gst_audioscale_class_init), (gst_audioscale_expand_caps),
14248 (gst_audioscale_getcaps), (gst_audioscale_fixate),
14249 (gst_audioscale_link), (gst_audioscale_get_buffer),
14250 (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
14251 (gst_audioscale_init), (gst_audioscale_dispose),
14252 (gst_audioscale_chain), (gst_audioscale_set_property),
14253 (gst_audioscale_get_property), (plugin_init):
14255 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
14257 * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
14258 (qtdemux_tag_add_str), (qtdemux_tag_add_num),
14259 (qtdemux_tag_add_gnre), (qtdemux_video_caps):
14260 Add more metadata (fixes #162656).
14262 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
14267 === release 0.8.7 ===
14269 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
14274 releasing 0.8.7, "Hyperspace"
14276 2005-01-05 Thomas Vander Stichele <thomas at apestaart dot org>
14278 patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
14280 * gst/playback/gstplaybasebin.c:
14281 Fix for #162924 - free caps after use, not before
14283 2005-01-04 Thomas Vander Stichele <thomas at apestaart dot org>
14285 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
14287 * gst/playback/gstplaybasebin.c:
14288 * gst/wavparse/gstwavparse.c:
14289 Fix for #154773 - fixes playback of small .wav files
14291 2005-01-03 Thomas Vander Stichele <thomas at apestaart dot org>
14293 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
14295 * gst/audioscale/gstaudioscale.c:
14296 Fix for #162819 - make audioscale reusable
14297 Fixes playback of more than one file with playbin/totem
14299 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
14301 * gst/ffmpegcolorspace/avcodec.h:
14302 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14303 * gst/ffmpegcolorspace/imgconvert.c:
14304 clean up the mess that made me cry and avoid needless duplication
14306 2004-12-29 Thomas Vander Stichele <thomas at apestaart dot org>
14308 * gst/ffmpegcolorspace/imgconvert.c:
14309 give some indication of why we're segfaulting
14311 2004-12-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14314 Fix indentation, fix v4l2 plugin detection.
14316 Fix libmms location (Maciej, use diff -u!).
14317 * ext/alsa/gstalsa.c: (gst_alsa_init):
14318 Initialize caps cache to NULL.
14319 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
14320 Only change state on audiosink if it exists.
14322 2004-12-28 Maciej Katafiasz <mathrick@mathrick.org>
14324 * gst/matroska/matroska-demux.c:
14325 * gst/matroska/matroska-ids.h:
14326 * gst/matroska/matroska-demux.h:
14327 Fix Vorbis streams failing to decode in some files, where cluster_time
14328 isn't 0, because then it doesn't send codec_priv before actual data.
14329 Remove time-based test and replace it with marker set on beginning of
14332 2004-12-28 David Schleef <ds@schleef.org>
14334 Merge patch from Ronald fixing problems with streaming
14336 * ext/cairo/gstcairo.c: (plugin_init):
14337 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
14338 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
14339 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
14340 (gst_textoverlay_font_init), (gst_textoverlay_init),
14341 (gst_textoverlay_set_property):
14342 * ext/cairo/gsttextoverlay.h:
14344 2004-12-27 David Schleef <ds@schleef.org>
14346 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
14347 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
14348 (gst_textoverlay_video_chain), (gst_textoverlay_loop),
14349 (gst_textoverlay_font_init), (gst_textoverlay_init),
14350 (gst_textoverlay_set_property): Improvements to actually
14351 render text as white on black outline on video, including
14352 font selection and horizontal/vertical alignment. (Ronald's
14354 * ext/cairo/gsttextoverlay.h:
14356 2004-12-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14358 * ext/ogg/gstogg.c:
14359 * ext/ogg/gstogmparse.c:
14360 fix ogm[audio/video]parse plugin registration
14361 (riff won't load if bytestream is already loaded)
14363 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
14365 * gst/audioconvert/gstchannelmix.c:
14368 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
14372 disable docs again until it actually passes make distcheck.
14374 2004-12-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14376 * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
14377 * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
14379 Add 3GP (variables name Q3GP because they can't start with a
14380 number). Add samr audio fourcc (used in .3gp files), decoder
14381 is work in progress. Also do a GST_WARNING instead of ERROR
14382 in case of unknown nodes, to decrease output.
14384 2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
14389 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
14392 * ext/speex/gstspeexdec.h:
14393 * ext/speex/gstspeexenc.h:
14394 Fixes #158382. Make speex plugin compatible with both 1.0 and 1.1.
14395 Fix detection code in configure.ac
14397 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14399 * gst/matroska/matroska-demux.c:
14400 (gst_matroska_demux_parse_blockgroup):
14401 Save position, so that queries give proper return values. Don't
14402 know how this could ever have worked before...
14404 2004-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
14407 Put additional LAME check inside the conditional. Fixes #152339
14409 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14411 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
14412 (gst_avi_demux_stream_scan):
14413 Add some more debug. Fix logic error when setting movi offset
14414 while reading index.
14416 2004-12-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14418 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
14419 (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
14420 (gst_avi_demux_process_next_entry):
14421 Add some debugging. Better detection of broken indexes and the
14422 accompanying index recovery. No infinite loops on state changes
14423 when we're still in our loopfunction.
14425 2004-12-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14430 2004-12-22 Archana Shah <archana.shah@wipro.com>
14432 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14434 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
14435 Normalizing the value before setting
14436 (gst_sunaudiomixer_get_volume):
14437 Normalizing the value after getting. Fixes bug# 161980
14439 2004-12-22 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
14441 * Makefile.am: Make sure docs gets disted
14442 * docs/Makefile.am: Make sure all needed files get disted
14443 * gst-plugins.spec.in: latest updates
14445 2004-12-22 Wim Taymans <wim@fluendo.com>
14447 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
14448 Revert patch 1.38 as clock distribution over schedulers does
14449 not work correcly in the core yet.
14451 2004-12-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14453 * sys/oss/README: remove this file, which predates my birth
14454 (and which content is by far outdated)
14456 2004-12-20 Stefan Kost <ensonic@users.sf.net>
14460 * docs/Makefile.am:
14461 * docs/libs/Makefile.am:
14462 * docs/libs/gst-plugins-libs-docs.sgml:
14463 * docs/libs/gst-plugins-libs-sections.txt:
14464 * docs/libs/tmpl/gstgconf.sgml:
14466 * docs/version.entities.in:
14467 Added boilerplate gtk-doc files for plugin-libs documentation.
14469 2004-12-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14471 * gst/auparse/gstauparse.c: fix int and float audio caps
14473 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14475 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
14476 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
14477 g_assert() can be a macro, don't use #ifdef inside it.
14479 2004-12-19 Edward Hervey <bilboed@bilboed.com>
14481 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14483 * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
14484 (gst_videorate_init), (gst_videorate_chain),
14485 (gst_videorate_change_state):
14486 Event handling (fixes #159986).
14488 2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14490 * gst-libs/gst/riff/riff-media.c:
14491 (gst_riff_create_video_caps_with_data):
14492 Add BLZ0 (Blizzard's version of DivX) fourcc.
14494 2004-12-18 David Schleef <ds@schleef.org>
14496 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
14499 2004-12-18 David Schleef <ds@schleef.org>
14501 * gst/tta/ttadec.h: Disable some header code that isn't used
14502 and clearly isn't portable.
14504 2004-12-18 David Schleef <ds@schleef.org>
14506 * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
14507 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
14508 (avcodec_get_pix_fmt), (avpicture_layout),
14509 (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
14510 (get_convert_table_entry), (img_convert), (img_get_alpha_info):
14511 Fix code to not use GCC extensions (and c99 extensions that
14512 Forte does not like.)
14514 2004-12-19 Tim-Philipp M??ller <t.i.m@zen.co.uk>
14516 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14518 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
14519 (gst_deinterlace_chain):
14520 Rowstride fixes. Fixes #161039.
14521 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
14522 (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
14523 (gst_video_crop_getcaps), (gst_video_crop_link),
14524 (gst_video_crop_i420), (gst_video_crop_chain),
14525 (gst_video_crop_change_state):
14526 Rework of negotiation. Actually works now. Fixes #158650.
14528 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14530 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
14531 That was very stupid.
14533 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14535 * gst/matroska/matroska-demux.c:
14536 (gst_matroska_demux_parse_blockgroup):
14537 Fix possible crasher.
14539 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14541 * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
14542 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
14543 Lace sizes can be zero.
14545 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14547 * ext/musepack/gstmusepackdec.cpp:
14548 Fetch error return values. Fixes #161624.
14549 * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
14552 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14554 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
14555 Work for truncated (unfinished download etc.) files. Fixes #160514.
14557 2004-12-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14559 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
14560 Fix for integer overflow. Makes #156001 not crash. Probably masks
14563 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14565 * gst/ac3parse/gstac3parse.c: (plugin_init):
14566 Parsers never have ranks. Fixes #159651.
14568 2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
14570 * gst/playback/gstdecodebin.c: (compare_ranks):
14571 make sure the facotries are ordered the same every time even if they
14572 have the same rank by using the name
14573 * gst/playback/gstdecodebin.c: (find_compatibles):
14574 make sure we don't add factories to the list twice
14576 2004-12-16 David Schleef <ds@schleef.org>
14578 * configure.ac: look for musepack headers as musepack/*.h
14580 * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
14581 * ext/musepack/gstmusepackreader.h: same
14583 2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14585 * gst-libs/gst/riff/riff-read.c:
14586 (gst_riff_read_strf_auds_with_data):
14587 Read extradata correctly (fixes #155879).
14589 2004-12-16 David Schleef <ds@schleef.org>
14591 * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
14592 audio. does _not_ attempt or allow conversion unless channels
14595 2004-12-16 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
14597 * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
14599 2004-12-16 David Schleef <ds@schleef.org>
14601 * gst/audioscale/gstaudioscale.c: the resample library only
14602 handles 1 or 2 channels. Change caps to compensate.
14604 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14606 * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
14607 (gst_matroska_demux_audio_caps):
14608 Some MPEG-AAC hacks, because else it doesn't work...
14610 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14612 * gst-libs/gst/riff/riff-media.c:
14613 (gst_riff_create_video_caps_with_data),
14614 (gst_riff_create_video_template_caps):
14617 2004-12-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14619 * gst-libs/gst/audio/Makefile.am:
14620 Try to fix buildbot.
14622 2004-12-16 Thomas Vander Stichele <thomas at apestaart dot org>
14624 * gst/tcp/gstmultifdsink.c:
14625 Clean up and uniformize debugging.
14627 2004-12-16 Edward Hervey <bilboed@bilboed.com>
14629 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14631 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
14632 (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
14633 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
14634 (gst_mpeg_demux_change_state):
14635 Reset on ready. Fixes 160276.
14637 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
14639 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14641 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14642 (gst_ffmpegcsp_pad_link):
14643 Fix memleak (#154815).
14645 2004-12-16 James Bowes <bowes@cs.dal.ca>
14647 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14649 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
14650 (gst_musicbrainz_init), (gst_musicbrainz_chain),
14651 (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
14652 * ext/musicbrainz/gsttrm.h:
14653 Add support for using a proxy server when getting a trm id from
14654 the MusicBrainz database (#149613).
14656 2004-12-16 Christophe Fergeau <teuf@gnome.org>
14658 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14660 * gst/playback/gstdecodebin.c: (new_pad), (close_link):
14661 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
14662 Fix memleaks (#157233).
14664 2004-12-16 Sebastien Cote <sc5@hermes.usherb.ca>
14666 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14668 * gst-libs/gst/resample/resample.c: (gst_resample_close):
14669 * gst-libs/gst/resample/resample.h:
14670 * gst/audioscale/gstaudioscale.c:
14671 Fix memleak (#159215).
14673 2004-12-16 Toni Willberg <toniw@iki.fi>
14675 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14677 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
14678 * sys/oss/oss_probe.c: (main):
14679 Check for mono/stereo support (similar to samplerate probing),
14680 fixes #159433. Also add missing copyright header to oss_probe.c.
14682 2004-12-15 David Schleef <ds@schleef.org>
14684 * configure.ac: add audioresample and cairo plugins. Remove
14685 HAVE_MMX stuff, because it's not used.
14686 * ext/Makefile.am: same
14687 * ext/audioresample/Makefile.am: You are not ready for an
14688 audio resampling element based on audioresample.
14689 * ext/audioresample/gstaudioresample.c:
14690 * ext/audioresample/gstaudioresample.h:
14691 * ext/cairo/Makefile.am: You are not ready for overlay elements
14692 based on cairo. Don't look too closely, these elements kinda
14694 * ext/cairo/gstcairo.c: new
14695 * ext/cairo/gsttextoverlay.c: new
14696 * ext/cairo/gsttextoverlay.h: new
14697 * ext/cairo/gsttimeoverlay.c: new
14698 * ext/cairo/gsttimeoverlay.h: new
14699 * gst-libs/gst/media-info/media-info-priv.h: fix compile
14700 problem with compilers that don't support variadic macros.
14702 2004-12-15 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
14704 Reviewed by: David Schleef <ds@schleef.org>
14706 * sys/sunaudio/gstsunaudio.c: (plugin_init): Apply patch from
14707 Bala, registering sunaudiosrc (oops!), and cleaning up code a
14708 bit. Also ran indent-gst.
14709 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
14710 (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
14711 (gst_sunaudiosrc_setparams):
14713 2004-12-14 David Schleef <ds@schleef.org>
14715 * gst/festival/gstfestival.c: (gst_festival_chain): Set the
14716 output rate to 16000. Should fix #160235.
14718 2004-12-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14720 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
14721 Add typefinding for mpeg2 pes streams
14723 2004-12-13 David Schleef <ds@schleef.org>
14725 * configure.ac: Applied patch from bug #143659, making default
14726 sources and sinks OS-dependent (for Solaris), and added code
14728 * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
14730 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14732 * gst-libs/gst/riff/riff-media.c:
14733 forgot to add h2.64 to avidemux template caps
14735 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14737 * gst/wavenc/riff.h:
14738 * gst-libs/gst/riff/riff-media.c:
14739 * gst-libs/gst/riff/riff-ids.h:
14740 * gst/avi/gstavimux.c
14741 add 4CC code for VideoSoft h264 in AVI (VSSH)
14743 remove s323 from riff, it's quicktime specific :(
14745 2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14747 * gst/asfdemux/README
14748 * gst/wavenc/riff.h
14749 * gst-libs/gst/riff/riff-ids.h
14750 * gst-libs/gst/riff/riff-media.c
14751 * gst/qtdemux/qtdemux.c:
14752 add new 4CC codes for h263 related codecs
14753 fixes partially bug #155163
14755 2004-12-12 Christian Fredrik Kalager Schaller <christian at fluendo dot com>
14757 * configure.ac: Update polyaudio requirement to 0.7
14758 * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
14760 2004-12-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
14762 * gst/interleave/deinterleave.c:
14763 fix my name's spelling! :)
14765 2004-12-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
14767 * AUTHORS ChangeLog
14768 * gst/auparse/gstauparse.c
14769 * gst/interleave/deinterleave.c
14771 alaw-decode.c alaw-encode.c
14772 mulaw-decode.c mulaw-encode.c
14773 * gst/oneton/gstoneton.c
14775 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
14777 cocoawindow.h cocoawindow.m
14778 osxvideosink.h osxvideosink.m
14780 put the same mail address for Zaheer Abbas Merali everywhere
14782 2004-12-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14784 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
14785 Align by packetsize, and assert that we a packet available before
14786 playing. The first makes webstreams work (they often include
14787 trailing padding data in a packet), the second allows pausing a
14788 ASF stream in totem without getting demux errors afterwards.
14790 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14792 * ext/ogg/gstoggdemux.c: (get_relative):
14793 Check for non-NULL before accessing member (end-of-chain).
14795 2004-12-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14797 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
14798 (cdparanoia_set_property), (cdparanoia_get_property):
14799 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
14800 (dvdnavsrc_set_property), (dvdnavsrc_get_property):
14801 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
14802 (dvdreadsrc_init), (dvdreadsrc_set_property),
14803 (dvdreadsrc_get_property):
14804 * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
14805 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
14806 Synchronize property names where not yet the case. Devices are
14807 now device=X, other versions are deprecated (but still exist).
14808 Also use g_free() unconditionally.
14809 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14810 (setup_source), (gst_play_base_bin_get_property):
14813 2004-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
14815 * configure.ac: move GCONF macro outside conditional for the am
14816 conditional. Fixes #160439
14818 2004-12-08 David Schleef <ds@schleef.org>
14820 * tools/gst-visualise-m.m: Switch to elements that currently
14823 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14825 * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
14826 We love wrong commas.
14828 2004-12-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14830 * gst/matroska/matroska-demux.c:
14831 (gst_matroska_demux_handle_src_query):
14832 Don't set DEFAULT, unsupported - makes length display incorrectly
14835 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
14837 * gst/monoscope/README: remove blurb about files being GPL
14838 * gst/monoscope/gstmonoscope.c: Change license field to LGPL
14839 * gst/monoscope/monoscope.c: Change license to BSD with explanation
14840 monoscope is now effectively LGPL licensed
14842 2004-12-07 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
14844 * gst/monoscope/README: Update information to be more correct
14845 * gst/monoscope/convolve.c: Relicense to LGPL
14846 * gst/monoscope/convolve.h: Relicense to LGPL
14848 2004-12-06 Arwed v. Merkatz <v.merkatz@gmx.net>
14850 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
14851 set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
14852 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
14853 set default_duration for mpeg1 audio
14855 2004-12-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
14857 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
14858 * ext/alsa/gstalsa.h:
14859 refactor big chunks of the core caps negotiation code to make it
14860 a lot faster, because people claim it's really slow
14861 (actually, just cache the getcaps when the device is opened)
14863 2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14865 * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
14866 (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
14867 (gst_a52dec_handle_frame), (gst_a52dec_chain),
14868 (gst_a52dec_change_state), (plugin_init):
14869 * ext/a52dec/gsta52dec.h:
14870 Do something useful with timestamps. Make chain-based (since
14871 there's really no reason to be loopbased).
14872 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
14873 Update current_byte/frame correctly.
14875 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14877 * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
14878 (gst_ape_demux_stream_init):
14881 2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14883 * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
14884 Let's make sure we're done typefinding when detecting tags.
14886 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14888 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
14889 (gst_ebml_read_init), (gst_ebml_read_use_event),
14890 (gst_ebml_read_element_id), (gst_ebml_peek_id),
14891 (gst_ebml_read_seek), (gst_ebml_read_skip),
14892 (gst_ebml_read_reserve), (gst_ebml_read_buffer),
14893 (gst_ebml_read_master):
14894 * gst/matroska/ebml-read.h:
14895 * gst/matroska/matroska-demux.c:
14896 (gst_matroska_demux_parse_contents),
14897 (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
14898 Disgustingly evil hack for working around INTERRUPT events and
14899 their extremely annoying habit of being a pain in the ass. We
14900 simply peek a cluster before reading any of it.
14902 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14904 * ext/musepack/gstmusepackdec.cpp:
14905 There's also floating point libmusepacks.
14907 2004-12-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14909 * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
14910 (gst_faad_chanpos_to_gst), (gst_faad_chain):
14911 Set DURATION even if source buffer didn't. Also use increasing
14913 * gst-libs/gst/riff/riff-media.c:
14914 (gst_riff_create_audio_caps_with_data):
14915 Block_align can have larger values than 8192.
14917 2004-12-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14919 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
14920 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
14921 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
14922 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
14925 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14927 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
14930 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14932 * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
14935 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14937 * ext/esd/esdsink.c: (gst_esdsink_chain):
14938 Make error actually say something useful (fixes #156798).
14939 * gst-libs/gst/riff/riff-media.c:
14940 (gst_riff_create_video_caps_with_data),
14941 (gst_riff_create_video_template_caps):
14942 Add Intel Video 5.0 fourcc (IV50).
14944 2004-12-01 Christophe Fergeau <teuf@gnome.org>
14946 * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
14947 detection on mono and stereo mp3 files.
14949 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14951 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
14952 Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
14953 the contained stream).
14955 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14957 * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
14958 Oops, remove debug.
14960 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
14962 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14964 * gst/law/alaw-decode.c: (alawdec_getcaps):
14965 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
14966 Prevent warnings when negotiating caps (fixes #159338).
14968 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14970 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14971 (gst_ffmpegcsp_chain):
14972 Remove old leftover that shouldn't be there...
14974 2004-12-01 Sebastien Cote <sc5@hermes.usherb.ca>
14976 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14978 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
14979 Don't forward DISCONT events (fixes #159684).
14981 2004-12-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14983 * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
14984 Unlink manually since sometimes bin disposal (and therefore
14985 pad unlinking) is delayed, which will cause a new media file
14986 to not be able to start playing instantly.
14988 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14990 * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
14991 On mute of an unlinked stream, check for pad availability so
14992 we don't crash on unlinked pad.
14994 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
14996 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
14997 (gst_avi_demux_massage_index):
14998 Fix quite humiliating bug in omitting 0-sized index chunks but
14999 forgetting to count them for timestamps.
15001 2004-11-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15003 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
15004 Actually leave the loop if we failed to sync. Don't crash.
15006 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15008 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
15009 (gst_dvd_demux_process_private):
15010 * gst/mpegstream/gstdvddemux.h:
15011 Fix crash (#159759). Doesn't work, though. :-(.
15013 2004-11-28 Benjamin Otte <otte@gnome.org>
15015 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
15016 more overwriting protection due to modifying channels one by one
15017 instead of all at once
15019 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15021 * gst/audioconvert/gstchannelmix.c:
15022 (gst_audio_convert_fill_normalize):
15023 Normalize using absolute values.
15025 2004-11-28 Julien MOUTTE <julien@moutte.net>
15029 * ext/directfb/Makefile.am:
15030 * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
15031 (gst_directfbvideosink_get_pixel_format),
15032 (gst_directfbvideosink_get_format_from_fourcc),
15033 (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
15034 (gst_directfbvideosink_sink_link),
15035 (gst_directfbvideosink_change_state),
15036 (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
15037 (gst_directfbvideosink_buffer_alloc),
15038 (gst_directfbvideosink_interface_supported),
15039 (gst_directfbvideosink_interface_init),
15040 (gst_directfbvideosink_navigation_send_event),
15041 (gst_directfbvideosink_navigation_init),
15042 (gst_directfbvideosink_set_property),
15043 (gst_directfbvideosink_get_property),
15044 (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
15045 (gst_directfbvideosink_base_init),
15046 (gst_directfbvideosink_class_init),
15047 (gst_directfbvideosink_get_type), (plugin_init):
15048 * ext/directfb/directfbvideosink.h: Adding a first version of
15050 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
15053 2004-11-28 Benjamin Otte <otte@gnome.org>
15055 * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
15056 walk the samples backwards if out_channels > in_channels so we don't
15059 2004-11-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15061 * gst/audioconvert/Makefile.am:
15062 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
15063 (gst_audio_convert_link), (gst_audio_convert_change_state),
15064 (gst_audio_convert_channels):
15065 * gst/audioconvert/gstchannelmix.c:
15066 (gst_audio_convert_unset_matrix),
15067 (gst_audio_convert_fill_identical),
15068 (gst_audio_convert_fill_compatible),
15069 (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
15070 (gst_audio_convert_fill_others),
15071 (gst_audio_convert_fill_normalize),
15072 (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
15073 (gst_audio_convert_passthrough), (gst_audio_convert_mix):
15074 * gst/audioconvert/gstchannelmix.h:
15075 Implement a channel mixer.
15077 2004-11-28 Martin Soto <martinsoto@users.sourceforge.net>
15079 * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
15080 * ext/alsa/gstalsa.h:
15081 * ext/alsa/gstalsa.c (gst_alsa_set_clock):
15082 Make alsasink actually honor gst_element_set_clock and use that
15083 clock instead of its internal one.
15085 2004-11-27 Christophe Fergeau <teuf@gnome.org>
15087 * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
15088 (gst_play_base_bin_change_state): nullify source and decoder when
15089 going from READY to NULL so that we don't try to do weird stuff with
15090 them when going from NULL to READY
15091 * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
15092 instead of g_object_unref
15093 (gen_video_element), (gen_audio_element): more refcounting fixes, now
15094 it should be correct
15095 (gst_play_bin_change_state): don't call remove_sinks if we are
15096 currently disposing the object
15098 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15100 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
15101 Don't forget bass if it's there. Else left channel is silent...
15103 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15105 * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
15106 (gst_a52dec_change_state):
15107 Don't do sample adjusting anymore, we use float audio now.
15108 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
15109 Don't fixate to non-existing properties.
15111 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15113 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
15114 (gst_a52dec_change_state):
15115 Advertise that we can do surround sound.
15117 2004-11-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15119 * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
15120 Add buffer-frames=0.
15121 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
15122 (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
15123 (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
15124 (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
15125 (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
15126 (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
15127 (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
15128 (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
15129 (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
15130 * ext/dvdread/dvdreadsrc.h:
15131 Add seeking, querying for bytes, sectors, title, angle and
15132 chapter. Handle multiple chapters. Relicense to LGPL because
15133 Billy agreed on that (thanks Billy!).
15135 2004-11-27 Christophe Fergeau <teuf@gnome.org>
15137 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
15138 call parent dispose method
15140 2004-11-27 Martin Soto <martinsoto@users.sourceforge.net>
15142 * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
15143 (gst_audio_clock_get_internal_time):
15144 Fix active <-> inactive transitions: ensure time value always
15145 grows and avoid abrupt value changes.
15147 2004-11-27 Arwed v. Merkatz <v.merkatz@gmx.net>
15150 * gst/tta/Makefile.am:
15152 * gst/tta/filters.h:
15153 * gst/tta/gsttta.c:
15154 * gst/tta/gstttadec.c:
15155 * gst/tta/gstttadec.h:
15156 * gst/tta/gstttaparse.c:
15157 * gst/tta/gstttaparse.h:
15158 * gst/tta/ttadec.h:
15159 added TTA parser and decoder
15161 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15163 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15164 (probe_triggered), (check_queue), (buffer_underrun),
15165 (buffer_running), (buffer_overrun), (gen_source_element),
15167 * gst/playback/gstplaybasebin.h:
15168 Implement buffering. Needs some more work.
15170 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15172 * ext/theora/theoradec.c: (theora_dec_chain):
15173 Fix ilog mask range overflow.
15175 2004-11-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15177 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
15178 Don't omit the last (which in case of dmix is the only :) )
15179 channel count. Don't set channels if <= 2.
15181 2004-11-26 Christophe Fergeau <teuf@gnome.org>
15183 * gst/playback/gstplaybin.c: (gen_video_element),
15184 (gen_audio_element): Removed 2 obsolete comments
15186 2004-11-26 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
15188 * ext/vorbis/oggvorbisenc.c
15189 * ext/vorbis/vorbisenc.c :
15190 change description fields of those plugins to differentiate them
15191 (pitivi show Encoders by description, they had the same one)
15193 2004-11-25 Christophe Fergeau <teuf@gnome.org>
15195 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15197 * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
15198 (gst_play_bin_set_property), (gen_video_element),
15199 (gen_audio_element):
15200 Refcounting fixes for provided audio-/videosinks.
15202 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15204 * gst/playback/gstplaybin.c: (gen_video_element),
15205 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
15206 Don't reference all sinks, but only the video- and audiosinks.
15207 The vis. element should be disposed when we're done with it.
15208 We don't have any reason to keep it around. This fixes warnings
15209 when reusing playbin for playing multiple audio files with
15210 vis. enabled. Also release audio device on pause - idea stolen
15213 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15215 * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
15216 (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
15217 * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
15218 * ext/alsa/gstalsaplugin.c: (plugin_init):
15219 * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
15220 (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
15221 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
15222 (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
15223 (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
15224 (gst_faad_change_state), (plugin_init):
15225 * ext/faad/gstfaad.h:
15226 * ext/vorbis/vorbis.c: (plugin_init):
15227 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
15228 * gst-libs/gst/audio/Makefile.am:
15229 * gst-libs/gst/audio/audio.c: (plugin_init):
15230 * gst-libs/gst/audio/multichannel.c:
15231 (gst_audio_check_channel_positions),
15232 (gst_audio_get_channel_positions),
15233 (gst_audio_set_channel_positions),
15234 (gst_audio_set_structure_channel_positions_list),
15235 (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
15236 (gst_audio_fixate_channel_positions):
15237 * gst-libs/gst/audio/multichannel.h:
15238 * gst-libs/gst/audio/testchannels.c: (main):
15239 * gst/audioconvert/gstaudioconvert.c:
15240 (gst_audio_convert_class_init), (gst_audio_convert_init),
15241 (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
15242 (gst_audio_convert_parse_caps), (gst_audio_convert_link),
15243 (gst_audio_convert_fixate), (gst_audio_convert_channels):
15244 * gst/audioconvert/plugin.c: (plugin_init):
15245 Surround sound support.
15247 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15249 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
15250 Fix position for discont if we're close as well. Nitpicking, but
15251 saves a few milliseconds of extra waiting or skipping.
15253 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15255 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
15256 We sometimes need parsers for playback, so add those too.
15258 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15261 * gst/apetag/Makefile.am:
15262 * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
15263 (gst_ape_demux_base_init), (gst_ape_demux_class_init),
15264 (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
15265 (gst_ape_demux_get_src_query_types),
15266 (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
15267 (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
15268 (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
15269 (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
15270 (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
15271 (gst_ape_demux_stream_data), (gst_ape_demux_loop),
15272 (gst_ape_demux_change_state):
15273 * gst/apetag/apedemux.h:
15274 * gst/apetag/apetag.c: (plugin_init):
15275 * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
15277 APE v1/2 tag reader plus typefind function.
15279 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15282 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
15283 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
15284 Remove hacks for older core. Require newer core version
15287 2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15289 * gst/cdxaparse/Makefile.am:
15290 * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
15291 (gst_cdxaparse_class_init), (gst_cdxaparse_init),
15292 (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
15293 * gst/cdxaparse/gstcdxaparse.h:
15294 * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
15295 (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
15296 (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
15297 (gst_cdxastrip_get_src_query_types),
15298 (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
15299 (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
15300 (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
15301 (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
15302 * gst/cdxaparse/gstcdxastrip.h:
15303 SVCD/VCD header stripping separated from CDXA image parsing.
15304 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
15306 Add VCD/SVCD header typefinding for VCD/SVCD.
15307 * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
15308 (gst_vcdsrc_class_init), (gst_vcdsrc_init),
15309 (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
15310 (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
15311 (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
15312 (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
15313 (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
15314 (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
15315 (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
15316 (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
15317 (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
15318 * sys/vcd/vcdsrc.h:
15319 Fix up, add seeking, querying, URI interface. Works in totem now.
15321 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
15326 === release 0.8.6 ===
15328 2004-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
15346 releasing 0.8.6, "IOU Love"
15348 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15350 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
15352 * gst/playback/gstplaybasebin.c:
15353 Fix unplayable files error handling. Fixes #158365
15355 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15357 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
15359 * gst/typefind/gsttypefindfunctions.c:
15360 Fix broken mp3 typefinding. Fixes #158375
15362 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15364 patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
15366 * ext/ogg/gstoggdemux.c:
15367 Fix sync on broken files. Fixes #158976
15369 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15371 patch by: Edward Hervey <bilboed@bilboed.com>
15373 * ext/libpng/gstpngenc.c:
15374 Copy over buffer properties. Fixes #158832
15376 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15378 patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
15380 * ext/dvdread/dvdreadsrc.c:
15381 Fixes invalid reads (#158462)
15383 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15385 * sys/v4l/gstv4lsrc.c:
15386 * sys/v4l/gstv4lsrc.h:
15387 * sys/v4l/v4lsrc_calls.c:
15388 Probe less and cache it. Fixes #159187.
15390 2004-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
15392 * gst/videorate/gstvideorate.c:
15393 Handle all video formats. Fixes #159186.
15395 2004-11-16 Jan Schmidt <thaytan@mad.scientist.com>
15396 * gst/synaesthesia/gstsynaesthesia.c:
15397 (gst_synaesthesia_class_init), (gst_synaesthesia_init),
15398 (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
15399 (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
15400 (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
15401 (gst_synaesthesia_change_state), (plugin_init):
15402 Fix up synaesthesia to work under different samplerates/ buffer sizes.
15403 Force 320x200 output, as that's the only thing the underlying
15404 synaesthesia implementation supports. Still needs to be made
15407 2004-11-14 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15410 Fix mpeg2enc configure check (similar to mplex check below).
15412 2004-11-14 Koop Mast <kwm@rainbow-runner.nl>
15414 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15416 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15417 Fix for gcc-2.95 (fixes #158221).
15419 2004-11-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15421 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
15422 Re-add clock distribution hack (until new core is released).
15425 2004-11-13 Arwed v. Merkatz <v.merkatz@gmx.net>
15427 fix mplex configure check segfaulting on some systems (bug #140994)
15429 2004-11-13 Benjamin Otte <otte@gnome.org>
15431 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
15433 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
15434 do a wait when we enter the loop func with no data available to
15435 write instead of getting into an 100% CPU loop by just returning and
15436 being called again by the scheduler
15438 2004-11-13 Jan Schmidt <thaytan@mad.scientist.com>
15441 * ext/libvisual/visual.c: (gst_visual_get_type),
15442 (libvisual_log_handler), (gst_visual_getcaps),
15443 (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
15445 Update libvisual to 0.1.7. Link in the debug handling to gstreamer
15446 * ext/smoothwave/Makefile.am:
15447 * ext/smoothwave/demo-osssrc.c: (main):
15448 * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
15449 (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
15450 (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
15452 * ext/smoothwave/gstsmoothwave.h:
15453 Make gstsmoothwave a working element in the 20th century.
15455 * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
15456 Fix incorrect link function
15458 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15460 * gst/volume/gstvolume.c:
15461 Allow buffer-frames=0.
15463 2004-11-12 Iain <iaingnome@gmail.com>
15465 * configure.ac: Check for polypaudio
15467 * ext/Makefile.am: Build the polyp dir
15469 * ext/polyp: The polypsink sources.
15471 2004-10-30 Iain <iaingnome@gmail.com>
15473 * gst/interleave/interleave.c (interleave_unlink): Change the src pads
15474 caps to reflect the new number of channels.
15476 2004-11-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15478 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
15479 Fix for negotiation order problem. This would show when the
15480 ALSA loopfuction was called before any other function. ALSA
15481 wouldn't do anything because we're not negotiated yet, leading
15482 to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
15484 2004-11-11 Tim-Philipp M??ller <t.i.m@zen.co.uk>
15486 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15488 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
15489 No warnings (#157986).
15491 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15493 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15494 Prefer apev1/2 and id3v1 (at end of file) over musepack.
15496 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15498 * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
15499 Signal no-more-pads (so it works in playbin).
15501 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15503 * ext/musepack/gstmusepackreader.cpp:
15504 Workaround for older core.
15506 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15508 * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
15509 Actually test for odd width/height rather than testing whether
15510 a temporary variable that was 0 before we subtracted 1 is now
15511 not equal to zero (which it always is).
15513 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15515 * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
15516 Fix compilation if HAVE_XVIDEO is not defined
15518 2004-11-11 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15520 * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
15521 Fix compilation if HAVE_XVIDEO is not defined
15523 2004-11-11 Jan Schmidt <thaytan@mad.scientist.com>
15525 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
15526 (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
15527 (gst_goom_change_state), (plugin_init):
15528 Use the bytestream adapter so goom doesn't depend on the input
15530 Add a debug category
15532 2004-11-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15534 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
15535 Only set hardware parameters *after* negotiation. Before
15536 negotiation, it will set ANY and that seems to cause crashes
15537 (see e.g. #151288, #153227).
15539 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15541 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
15542 This seems to be antique leftover. It needs to pass error
15544 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
15545 (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
15546 (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
15547 (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
15548 Fix GstXOverlay implementation (#151059).
15550 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15552 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
15553 Don't assert (#157853).
15555 2004-11-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15557 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
15558 Fix bytes/samples confustion.
15559 (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
15560 Fix for underrun (#144389).
15562 2004-11-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15564 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
15565 Disable halfway-seek for pending release (since it needs a new
15568 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
15570 * sys/v4l/gstv4lsrc.c:
15571 * sys/v4l/gstv4lsrc.h:
15572 * sys/v4l/v4lsrc_calls.c:
15573 add autoprobe-fps property so we can separate autoprobing parts
15575 2004-11-09 Thomas Vander Stichele <thomas at apestaart dot org>
15577 * sys/v4l/gstv4lsrc.c:
15578 * sys/v4l/v4lsrc_calls.c:
15579 initialise fourcc to catch unset fourcc's, and debug
15581 2004-11-09 Wim Taymans <wim@fluendo.com>
15583 * gst/playback/README:
15584 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
15585 * gst/playback/gstplaybin.c: (gst_play_bin_init),
15586 (gst_play_bin_dispose), (gst_play_bin_set_property),
15587 (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
15588 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
15589 (gst_play_bin_get_formats), (gst_play_bin_convert),
15590 (gst_play_bin_get_query_types), (gst_play_bin_query):
15591 Cleanups and some more documentation.
15593 2004-11-09 Jan Schmidt <thaytan@mad.scientist.com>
15595 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
15596 (gst_cacasink_init), (gst_cacasink_chain):
15597 * ext/libcaca/gstcacasink.h:
15598 Cacasink inherits from VideoSink, so let that store the clock.
15600 2004-11-09 Wim Taymans <wim@fluendo.com>
15602 * gst/playback/README:
15603 * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
15604 (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
15605 (probe_triggered), (preroll_unlinked), (new_decoded_pad),
15606 (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
15607 * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
15609 * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
15610 (gst_stream_info_is_mute), (gst_stream_info_set_property):
15611 * gst/playback/gststreaminfo.h:
15613 Only switch groups if all streams have muted (EOSed).
15614 Send Tags in sync with the stream playback instead of in
15615 the playback/preroll phase.
15616 Some cleanups, free the fakesrc elements.
15618 2004-11-09 Benjamin Otte <in7y118@public.uni-hamburg.de>
15620 * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
15621 buffer-frames property was missing
15622 * ext/arts/gst_arts.c:
15623 rate missing from sinkcaps
15624 * ext/audiofile/gstafparse.c:
15625 * ext/audiofile/gstafsink.c:
15626 * ext/audiofile/gstafsrc.c:
15627 * ext/swfdec/gstswfdec.c:
15628 int audio doesn't know buffer-frames
15629 * ext/cdparanoia/gstcdparanoia.c:
15630 int audio doesn't know chunksize either
15631 * ext/nas/nassink.c:
15632 it's endianness, not endianess
15633 * gst-libs/gst/audio/audio.h:
15634 make float standard pad template caps really describe float
15635 * gst/law/mulaw.c: (linear_factory):
15636 signed only, please
15637 * gst/mpegstream/gstdvddemux.c:
15638 widths of 20 are not valid
15640 2004-11-08 Thomas Vander Stichele <thomas at apestaart dot org>
15642 Submitted by: Luca Ferretti <elle.uca@infinito.it>
15648 2004-11-08 Wim Taymans <wim@fluendo.com>
15650 * gst/playback/README:
15651 * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
15652 * gst/playback/gstplaybasebin.c: (probe_triggered),
15653 (gst_play_base_bin_change_state):
15654 Updated README, added more comments for fixmes etc..
15656 2004-11-08 Wim Taymans <wim@fluendo.com>
15658 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
15659 We can remove this hack now.
15661 2004-11-08 Wim Taymans <wim@fluendo.com>
15663 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
15664 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
15665 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
15666 Only mix AYUV for maximum quality.
15668 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15670 * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
15671 (gst_ogg_demux_push), (gst_ogg_pad_push):
15672 Let's act as if we're synchronized now! :).
15673 * ext/theora/theoradec.c: (theora_dec_chain):
15676 2004-11-08 Wim Taymans <wim@fluendo.com>
15678 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
15679 (gst_alpha_set_property), (gst_alpha_sink_link),
15680 (gst_alpha_set_ayuv), (gst_alpha_set_i420),
15681 (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
15682 (gst_alpha_init_params), (gst_alpha_chain):
15683 Implement alpha functions for AYUV too, this increases
15684 accuracy quite a bit.
15686 2004-11-08 Wim Taymans <wim@fluendo.com>
15688 * gst/ffmpegcolorspace/avcodec.h:
15689 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15690 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
15691 (gst_ffmpegcsp_avpicture_fill):
15692 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
15693 (gst_ffmpegcsp_caps_remove_format_info):
15694 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
15695 (shrink12), (img_get_alpha_info), (deinterlace_line),
15696 (deinterlace_line_inplace):
15697 * gst/ffmpegcolorspace/imgconvert_template.h:
15698 Added AYUV colorspace and handle RGBA a bit more respectful.
15700 2004-11-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15702 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
15703 Actually always send a discont (cornercase when resending the
15704 same serial-tagged chain twice).
15706 2004-11-08 Julien MOUTTE <julien@moutte.net>
15708 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
15709 (gst_ximagesink_finalize):
15710 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
15711 (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
15713 2004-11-08 Wim Taymans <wim@fluendo.com>
15715 * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
15716 Don't segfault on NULL data.
15718 2004-11-08 Wim Taymans <wim@fluendo.com>
15720 * gst/playback/gstdecodebin.c: (unlinked):
15721 * gst/playback/gstplay-marshal.list:
15722 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
15723 (gst_play_base_bin_init), (group_create), (get_active_group),
15724 (get_building_group), (group_destroy), (group_commit),
15725 (queue_overrun), (remove_groups), (add_stream), (unknown_type),
15726 (add_element_stream), (no_more_pads), (probe_triggered),
15727 (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
15728 (state_change), (setup_source), (gst_play_base_bin_get_property),
15729 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15730 (gst_play_base_bin_link_stream),
15731 (gst_play_base_bin_get_streaminfo):
15732 * gst/playback/gstplaybasebin.h:
15733 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
15734 (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
15735 Add support for chained ogg files. Prepare for playlist
15736 support. This patch introduces the concept of pad groups, which
15737 together compose one playable media file.
15739 2004-11-07 David Schleef <ds@schleef.org>
15741 * testsuite/gst-lint: Check for pad templates that aren't statically
15744 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15748 * ext/musepack/Makefile.am:
15749 * ext/musepack/gstmusepackdec.cpp:
15750 * ext/musepack/gstmusepackdec.h:
15751 * ext/musepack/gstmusepackreader.cpp:
15752 * ext/musepack/gstmusepackreader.h:
15753 Add musepack decoder.
15754 * ext/faad/gstfaad.c: (gst_faad_base_init):
15755 Make pad templates static.
15756 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
15758 Add musepack typefinder, make mp3 typefinding work halfway stream,
15759 which doesn't actually work yet because id3demux doesn't implement
15762 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15764 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
15765 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
15766 Fix interrupt event handling (#144436).
15768 2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15770 * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
15773 2004-11-06 Tim-Philipp M??ller <t.i.m@zen.co.uk>
15775 reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15777 * ext/vorbis/vorbisenc.c: (raw_caps_factory):
15778 Fix weird caps (#157548).
15780 2004-11-06 Tim-Philipp M??ller <t.i.m@zen.co.uk>
15782 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15784 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
15785 Add missing NULL terminator (#157543).
15787 2004-11-05 Thomas Vander Stichele <thomas at apestaart dot org>
15789 * gst/tcp/gsttcp.h:
15790 * gst/tcp/gsttcpclientsink.c:
15791 * gst/tcp/gsttcpclientsrc.c:
15792 * gst/tcp/gsttcpserversink.c:
15793 * gst/tcp/gsttcpserversrc.c:
15794 ports can go up to 65535. Move common defines to gsttcp.h
15796 2004-11-05 Wim Taymans <wim@fluendo.com>
15798 * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
15799 (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
15800 Added two more colorspaces.
15802 2004-11-05 Wim Taymans <wim@fluendo.com>
15804 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15805 (gst_ffmpegcsp_avpicture_fill):
15806 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
15807 (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
15808 (img_convert), (deinterlace_line), (deinterlace_line_inplace):
15811 2004-11-05 Wim Taymans <wim@fluendo.com>
15813 * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
15814 (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
15815 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
15816 (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
15817 (gst_videomixer_loop):
15820 2004-11-05 Benjamin Otte <otte@gnome.org>
15822 * ext/mad/gstmad.c: (gst_mad_chain):
15823 don't overflow data buffer. Flush not needed sync data when syncing
15826 2004-11-04 Wim Taymans <wim@fluendo.com>
15828 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
15829 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
15830 (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
15831 (gst_alpha_init_params), (gst_alpha_chain),
15832 (gst_alpha_change_state):
15833 Updated the chroma keying algorithm with something more
15836 2004-11-03 Wim Taymans <wim@fluendo.com>
15838 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
15839 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
15840 (gst_videomixer_blend_buffers), (gst_videomixer_loop):
15841 Fix stride issues. Does not completely work for odd
15844 2004-11-03 Wim Taymans <wim@fluendo.com>
15846 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
15847 (gst_alpha_chroma_key), (gst_alpha_chain):
15848 Fix stride issues. Does not completely work for odd
15851 2004-11-03 Christophe Fergeau <teuf@gnome.org>
15853 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
15854 * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
15857 2004-11-03 Wim Taymans <wim@fluendo.com>
15859 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
15860 (gst_ffmpegcsp_avpicture_fill):
15861 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
15863 * gst/ffmpegcolorspace/imgconvert_template.h:
15864 Use correct _fill function to get correct strides.
15866 2004-11-02 David Schleef <ds@schleef.org>
15868 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
15869 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
15870 (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
15871 Change all g_print()s to debugging. Add a bunch of consistency
15874 2004-11-02 Wim Taymans <wim@fluendo.com>
15876 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15877 (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
15878 (unlinked), (no_more_pads), (close_link):
15879 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
15880 (unknown_type), (add_element_stream), (new_decoded_pad),
15881 (removed_decoded_pad), (setup_source):
15882 * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
15883 (gst_stream_info_class_init), (gst_stream_info_init),
15884 (gst_stream_info_new), (gst_stream_info_dispose),
15885 (stream_info_mute_pad), (gst_stream_info_set_property),
15886 (gst_stream_info_get_property):
15887 * gst/playback/gststreaminfo.h:
15888 Fix playback of multiple files.
15889 a slightly different approach to handling dynamic pad removals.
15890 This one only looks at pads that we have linked.
15892 2004-11-01 Christophe Fergeau <teuf@gnome.org>
15894 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
15895 free" warning from libc.
15897 2004-11-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15899 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
15900 (get_unconnected_element), (remove_starting_from), (pad_removed),
15902 Implement support for dynamic pad changing. We listen to "live"
15903 pad removals (i.e. while playing) and re-setup autoplugging
15904 after that. Playbasebin/playbin need some more work for this
15905 to finally work, but decodebin supports (and replugs) chained
15908 2004-11-02 Jan Schmidt <thaytan@mad.scientist.com>
15910 * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
15911 (gst_alsa_finalize):
15912 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
15913 (gst_cdaudio_finalize):
15914 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
15915 (cdparanoia_finalize):
15916 * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
15917 * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
15918 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
15919 (dvdreadsrc_finalize):
15920 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
15921 (gst_flacdec_finalize):
15922 * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
15923 (gst_flacenc_finalize):
15924 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
15925 (gst_gnomevfssink_finalize):
15926 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
15927 (gst_gnomevfssrc_finalize):
15928 * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
15929 (gst_fameenc_finalize):
15930 * ext/nas/nassink.c: (gst_nassink_class_init),
15931 (gst_nassink_finalize):
15932 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
15933 (gst_sdlvideosink_class_init):
15934 * ext/sndfile/gstsf.c: (gst_sf_dispose):
15935 * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
15936 * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
15937 * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
15938 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
15939 (gst_x_window_listener_dispose):
15940 * gst/audioscale/gstaudioscale.c:
15941 * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
15942 (play_on_demand_finalize):
15943 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
15944 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
15945 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
15946 (cdplayer_finalize):
15947 * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
15948 (gst_glimagesink_class_init):
15949 * sys/oss/gstosselement.c: (gst_osselement_class_init),
15950 (gst_osselement_finalize):
15951 * sys/oss/gstosssink.c: (gst_osssink_dispose):
15952 * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
15953 * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
15954 Fixes a bunch of problems with finalize and dispose functions,
15955 either assumptions that dispose is only called once, or not calling
15956 the parent class dispose/finalize function
15958 2004-11-01 Stefan Kost <ensonic@users.sf.net>
15960 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
15961 added two api precondition guards
15962 use g_strdup with getenv to fix crash when using ENVVAR
15964 2004-11-01 Jan Schmidt <thaytan@mad.scientist.com>
15965 * ext/esd/esdsink.c: (gst_esdsink_class_init),
15966 (gst_esdsink_finalize):
15967 Use a finalize function, not dispose, and more importantly,
15968 call the parent class finalize function too
15970 2004-11-01 Johan Dahlin <johan@gnome.org>
15972 * ext/ogg/gstoggdemux.c:
15973 * gst/tags/gstvorbistag.c:
15976 2004-10-31 Benjamin Otte <otte@gnome.org>
15978 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
15979 lotsa memleaks today. But they're all small...
15981 2004-10-31 Benjamin Otte <otte@gnome.org>
15983 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
15984 another memleak crushed
15986 2004-10-31 Benjamin Otte <otte@gnome.org>
15988 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
15991 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15993 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
15994 Hack to prevent crash when going to READY inside signal handler
15995 while this function is active.
15997 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
15999 * gst/ffmpegcolorspace/Makefile.am:
16000 * gst/ffmpegcolorspace/avcodec.h:
16001 * gst/ffmpegcolorspace/common.h:
16002 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
16003 * gst/ffmpegcolorspace/dsputil.h:
16004 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
16005 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
16006 (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
16007 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
16008 (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
16009 (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
16010 (gst_ffmpegcsp_avpicture_fill):
16011 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
16012 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16013 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
16014 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
16015 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
16016 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
16017 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
16018 (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
16019 * gst/ffmpegcolorspace/imgconvert.c:
16020 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
16021 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
16022 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
16023 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
16024 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
16025 (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
16026 (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
16027 (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
16028 (img_convert_init), (img_apply_table), (shrink41), (shrink21),
16029 (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
16030 (grow21), (grow22), (grow41), (grow44), (conv411),
16031 (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
16032 (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
16033 (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
16034 (avpicture_free), (is_yuv_planar), (img_convert),
16035 (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
16036 (deinterlace_line_inplace), (deinterlace_bottom_field),
16037 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
16038 * gst/ffmpegcolorspace/imgconvert_template.h:
16039 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
16040 * gst/ffmpegcolorspace/mmx.h:
16041 * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
16042 (av_fast_realloc), (av_mallocz_static), (av_free_static),
16043 (av_freep), (avcodec_get_context_defaults),
16044 (avcodec_alloc_context), (avcodec_init):
16045 Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
16046 handling plus update from ffmpeg CVS. Large clean-up.
16048 2004-10-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16050 * gst/playback/Makefile.am:
16051 We need the marshallers for decodebin, too.
16053 2004-10-30 David Schleef <ds@schleef.org>
16055 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
16056 quicktime typefinding work with 64-bit offsets.
16058 2004-10-30 Jan Schmidt <thaytan@mad.scientist.com>
16060 * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
16061 Set EOS on the element when processing an EOS event.
16062 * ext/speex/gstspeexdec.h:
16063 * ext/speex/gstspeexenc.h:
16064 Only keep a const ptr to the mode
16065 * gst-libs/gst/riff/riff-media.c:
16066 (gst_riff_create_audio_caps_with_data),
16067 (gst_riff_create_audio_template_caps):
16068 Allow WMAV3, with up to 6 channels.
16069 * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
16070 Don't call gst_pad_set_event_function on a sink pad.
16071 * gst/mpegstream/gstdvddemux.c:
16072 (gst_dvd_demux_get_subpicture_stream),
16073 (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
16074 Copy the explicit caps that were set across to the cur_* pads,
16075 instead of trying to use a possibly non-existent negotiated caps.
16076 Reset the type of subpicture pads to UNKNOWN after calling
16077 init_stream, so that the caps get set.
16079 2004-10-29 Martin Pitt <martin.pitt@canonical.com>
16081 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16083 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
16084 Don't touch buffer if it is of size 0 (fixes #151064).
16086 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16088 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
16089 Synchronized discont handling.
16091 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16093 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
16094 (gst_ogg_demux_push):
16095 Make seeking sort-of exact again (fixes #156387).
16097 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16099 * gst/playback/gstplaybasebin.c: (unknown_type),
16100 (add_element_stream), (new_decoded_pad),
16101 (gst_play_base_bin_change_state):
16102 * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
16103 (gst_stream_info_init), (gst_stream_info_new),
16104 (gst_stream_info_dispose), (gst_stream_info_get_property):
16105 * gst/playback/gststreaminfo.h:
16106 Make caps explicitely available. Makes testing for unsupported
16107 types possible. Improves error reporting.
16109 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16111 * gst/audioconvert/gstaudioconvert.c:
16112 (gst_audio_convert_buffer_to_default_format):
16113 Really don't touch read-only buffers (#156563).
16115 2004-10-29 Sebastien Cote <sc5@hermes.usherb.ca>
16117 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16119 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
16120 Fix memleak (#155223).
16122 2004-10-29 Wim Taymans <wim@fluendo.com>
16124 * gst/tcp/.cvsignore:
16125 * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
16126 (gst_multifdsink_class_init), (gst_multifdsink_init),
16127 (gst_multifdsink_add), (gst_multifdsink_remove),
16128 (gst_multifdsink_remove_client_link), (is_sync_frame),
16129 (gst_multifdsink_new_client),
16130 (gst_multifdsink_handle_client_write),
16131 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16132 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
16133 (gst_multifdsink_get_property):
16134 * gst/tcp/gstmultifdsink.h:
16135 Added burst on connect sync_method, deprecated sync_clients,
16136 streamlined the sync code some more.
16138 2004-10-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16140 * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
16141 (gst_play_base_bin_change_state):
16142 Improve error reporting.
16144 2004-10-28 Wim Taymans <wim@fluendo.com>
16146 * gst/tcp/Makefile.am:
16147 * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
16148 * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
16149 (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
16150 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
16151 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
16152 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
16154 Added more locks around fdset structures. Fixed/reworked
16155 the poll array resizing code.
16156 Added stress test for fdset.
16158 2004-10-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16160 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
16163 2004-10-28 Benjamin Otte <otte@gnome.org>
16165 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
16166 fix link function to always query channels and query width for
16170 * gst/equalizer/Makefile.am:
16171 * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
16172 (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
16173 (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
16174 (arg_to_scale), (setup_filter),
16175 (gst_iir_equalizer_compute_frequencies),
16176 (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
16177 (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
16181 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
16183 Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
16187 Added Norwegian Bokmaal translation
16189 2004-10-27 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16191 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
16192 Don't break on options (fixes #156488).
16194 2004-10-27 Thomas Vander Stichele <thomas at apestaart dot org>
16197 * ext/cdaudio/Makefile.am:
16199 fix build on older automake
16201 2004-10-26 Wim Taymans <wim@fluendo.com>
16203 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
16204 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
16205 Allow a little margin when negotiating the framerate.
16207 2004-10-26 Stefan Kost <ensonic@users.sf.net>
16209 * gst/level/gstlevel.c:
16210 synchonised naming of pads and pad-templates
16212 2004-10-26 Wim Taymans <wim@fluendo.com>
16214 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
16215 (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
16216 (_find_streams_check), (gst_ogg_demux_push):
16217 Fix EOS again. Needs to be done in a better way. We should not
16218 remove the pad if there is no new chained stream.
16220 2004-10-26 Iain <iaingnome@gmail.com>
16222 * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
16223 * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
16225 * gst/interleave/interleave.c (interleave_class_init): Hook up release
16227 (interleave_release_pad): Remove the pad.
16228 * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
16229 * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
16231 * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
16233 (gst_xvimagesink_xcontext_clear): Free the xcontext.
16234 (gst_xvimagesink_finalize): Free the par.
16236 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16238 * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
16239 (gst_avimux_stop_file):
16240 First calculate the rate, and only then use it. Hdr.rate is a
16241 multiple and not a derivative of hdr.scale. Scale is not the
16242 same as blockalign but is solely related to rate.
16244 2004-10-26 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16246 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
16247 (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
16250 2004-10-25 James Henstridge <james@jamesh.id.au>
16252 Reviewed by: David Schleef <ds@schleef.org>
16254 * examples/gstplay/player.c: (got_stream_length), (main):
16255 * examples/seeking/cdplayer.c: (update_scale):
16256 * examples/seeking/seek.c: (format_value), (update_scale):
16257 * examples/seeking/spider_seek.c: (format_value), (update_scale),
16259 Build fixes on AMD64.
16261 2004-10-25 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16263 reviewed by: Ronald Bultje <rbultje at gnome dot org>
16265 * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
16266 Fix for some v4l cards which hang in v4lsrc
16268 2004-10-25 Wim Taymans <wim@fluendo.com>
16270 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
16271 (gst_ogg_demux_push), (gst_ogg_chains_clear):
16272 Make sure to remove the pad when a new chain is
16273 encountered. Set some vars to NULL so we don't try
16274 to reference freed memory.
16276 2004-10-25 Wim Taymans <wim@fluendo.com>
16278 * examples/seeking/Makefile.am:
16279 * examples/seeking/cdplayer.c: (update_scale):
16280 * examples/seeking/chained.c: (unlinked), (new_pad), (main):
16281 * examples/seeking/playbin.c: (make_playerbin_pipeline),
16282 (format_value), (update_scale), (iterate), (start_seek),
16283 (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
16284 (print_usage), (main):
16285 Added some more examples, update others.
16287 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16289 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
16290 * ext/speex/gstspeexdec.c: (speex_dec_chain):
16291 * ext/theora/theoradec.c: (theora_dec_chain):
16292 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
16293 Add codec-name metadata.
16295 2004-10-25 Takao Fujiwara <Takao.Fujiwara@Sun.COM>
16297 Reviewd by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16299 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
16300 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
16301 * ext/alsa/gstalsamixertrack.h:
16303 ALSA mixer track label internationalization (#154054).
16305 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16307 * ext/theora/theoradec.c: (theora_dec_chain):
16308 Export bitrate as metadata.
16310 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16312 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
16313 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
16314 * ext/alsa/gstalsamixertrack.h:
16315 Fix names, fix loop.
16317 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16319 * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
16320 (speex_dec_convert):
16321 sinkconvert function so oggdemux can get the file length (totem).
16323 2004-10-25 James Morrison <ja2morri@csclub.uwaterloo.ca>
16325 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16327 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
16328 Don't push incomplete packets.
16329 * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
16330 Fix MPEG-4 audio typefinding.
16332 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16334 * sys/v4l/Makefile.am:
16335 * sys/v4l/gstv4l.c: (plugin_init):
16336 * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
16337 (gst_v4lelement_init), (gst_v4lelement_dispose),
16338 (gst_v4lelement_change_state):
16339 * sys/v4l/gstv4lelement.h:
16340 * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
16341 (gst_v4l_xoverlay_close), (idle_refresh),
16342 (gst_v4l_xoverlay_set_xwindow_id):
16343 * sys/v4l/gstv4lxoverlay.h:
16344 * sys/v4l/v4l-overlay_calls.c:
16345 * sys/v4l/v4l_calls.h:
16346 * sys/v4l2/Makefile.am:
16347 * sys/v4l2/gstv4l2.c: (plugin_init):
16348 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
16349 (gst_v4l2element_init), (gst_v4l2element_dispose),
16350 (gst_v4l2element_change_state):
16351 * sys/v4l2/gstv4l2element.h:
16352 * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
16353 (gst_v4l2_xoverlay_close), (idle_refresh),
16354 (gst_v4l2_xoverlay_set_xwindow_id):
16355 * sys/v4l2/gstv4l2xoverlay.h:
16356 * sys/v4l2/v4l2-overlay_calls.c:
16357 * sys/v4l2/v4l2_calls.h:
16358 Remove client-side overlay handling, use the X-server v4l plugin
16359 for that. Nicer overlay, less code. Also make the plugin
16360 compileable without X (but then without overlay, obviously).
16361 Makes xwindowlistener obsolete, should we remove that?
16363 2004-10-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16365 * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
16366 (gst_osssrc_src_query):
16367 * sys/oss/gstosssrc.h:
16368 OK, so people want offset in DEFAULT. This time, actually fix all
16370 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
16373 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16375 * gst/asfdemux/gstasfmux.c:
16376 * gst/avi/gstavimux.c:
16379 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16381 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
16382 Fix properties (channel, norm, frequency).
16384 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16386 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
16388 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
16391 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16393 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
16396 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16398 * sys/v4l2/gstv4l2element.h:
16399 Yet Another Hack (tm) for kernel header borkedness.
16400 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
16401 (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
16402 (gst_v4l2src_link), (gst_v4l2src_getcaps),
16403 (gst_v4l2src_change_state):
16404 * sys/v4l2/gstv4l2src.h:
16405 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
16406 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
16407 Fix caps, keep track of state, work.
16409 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16411 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
16414 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16416 * sys/oss/gstosssrc.c: (gst_osssrc_get):
16417 Don't mix bytes and samples.
16419 2004-10-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16421 * ext/ogg/gstoggmux.c:
16422 Basic pad template which accepts OGM tracks, speex, flac, vorbis
16423 and theora. Any is incorrect.
16424 * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
16426 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
16427 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
16428 (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
16429 (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
16430 * sys/v4l/gstv4lmjpegsrc.h:
16431 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
16432 (gst_v4lsrc_change_state):
16433 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
16434 (gst_v4lmjpegsrc_capture_stop):
16435 Fix caps. Keep track of internal state. Work.
16437 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16440 Fix the build fixes.
16442 2004-10-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16444 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
16445 (gst_ogg_demux_src_event), (_find_chain_seek),
16446 (gst_ogg_pad_push):
16447 Check for pad availability before using it.
16448 * ext/ogg/gstoggdemux.c: (_find_chain_process):
16449 Fix parsing of chained ogg. Needs more work on the decoder side.
16451 2004-10-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
16453 * gst/spectrum/Makefile.am:
16454 * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
16456 Fix demo and reenable it. Yes, I'm currently playing with audio
16459 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16461 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
16462 We love it if files that start at zero work too...
16464 2004-10-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16466 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
16467 Handle files with missing EOS headers.
16469 2004-10-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16471 * gst/tcp/gsttcpserversink.c:
16472 (gst_tcpserversink_handle_server_read),
16473 (gst_tcpserversink_init_send):
16474 Zero some variables first (need for accept not to return EINVAL)
16476 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16478 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
16479 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
16480 * ext/theora/theoradec.c: (theora_dec_sink_convert),
16481 (theora_dec_chain):
16482 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
16483 (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
16484 Seeking and querying finetune.
16486 2004-10-20 Thomas Vander Stichele <thomas at apestaart dot org>
16490 * ext/raw1394/Makefile.am:
16493 2004-10-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16495 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
16497 * gst/playback/Makefile.am:
16498 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
16499 * gst/playback/gstplay-marshal.list:
16500 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
16503 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16505 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
16508 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16510 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
16511 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
16512 (gst_ogg_pad_push):
16513 Yay for non-lineair granulepos in theora.
16515 2004-10-18 Wim Taymans <wim@fluendo.com>
16517 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
16518 (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
16519 * ext/dv/gstdvdec.h:
16520 Make sure we renegotiate aspect ratio when the camera switches.
16522 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16524 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
16525 (gst_ogg_demux_src_event), (gst_ogg_pad_push):
16527 * ext/theora/theoradec.c: (theora_dec_chain):
16528 Skip headers. Bad idea for chained ogg, but fixes seeking.
16530 2004-10-18 Wim Taymans <wim@fluendo.com>
16533 I swear, this is the last time I touch this.
16535 2004-10-18 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16537 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
16538 (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
16539 (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
16541 * ext/theora/theoradec.c: (theora_dec_sink_convert):
16542 Time-to-default conversion.
16543 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
16544 Don't error on unknown packets, just skip. We should probably
16545 read them if we want to support chained ogg.
16547 2004-10-18 Wim Taymans <wim@fluendo.com>
16550 Added cdaudio to wrong list.
16552 2004-10-18 Wim Taymans <wim@fluendo.com>
16557 2004-10-18 Wim Taymans <wim@fluendo.com>
16559 * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
16560 (gst_dvdec_video_link), (gst_dvdec_push):
16561 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
16562 (gst_smokeenc_resync), (gst_smokeenc_chain):
16563 Fix mimetype on smoke encoder.
16564 Add aspect ratio to dvdec. Not sure if these
16565 values are correct though....
16567 2004-10-18 Wim Taymans <wim@fluendo.com>
16569 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
16570 Fix vorbis property descriptions and ranges.
16572 2004-10-18 Wim Taymans <wim@fluendo.com>
16574 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
16575 Really do nothing when no data is available.
16576 Go to the playing state when the stream is not seekable
16577 instead of failing.
16579 2004-10-18 Wim Taymans <wim@fluendo.com>
16581 * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
16582 (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
16583 (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
16584 (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
16585 (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
16586 Added uri handler for cd://
16589 2004-10-18 Wim Taymans <wim@fluendo.com>
16591 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
16592 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
16593 (try_to_link_1), (no_more_pads), (close_link), (type_found):
16594 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
16595 (remove_prerolls), (unknown_type), (add_element_stream),
16596 (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
16597 (gst_play_base_bin_remove_element),
16598 (gst_play_base_bin_link_stream):
16599 * gst/playback/gstplaybin.c: (gen_video_element),
16600 (gen_vis_element), (remove_sinks), (setup_sinks):
16601 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
16602 (gst_stream_info_get_type), (gst_stream_info_class_init),
16603 (gst_stream_info_init), (gst_stream_info_new),
16604 (gst_stream_info_dispose), (stream_info_mute_pad),
16605 (gst_stream_info_set_property), (gst_stream_info_get_property):
16606 * gst/playback/gststreaminfo.h:
16607 Add sink padtemplate to decodebin.
16608 Added some more comments.
16609 Make queue size configurable in playbasebin.
16610 Added possibility to use elements as sinks (ex cdaudio).
16612 2004-10-15 Wim Taymans <wim@fluendo.com>
16614 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
16615 (gst_speexenc_chain):
16616 Fix speex timestamps so that it gets muxed properly.
16618 2004-10-15 Wim Taymans <wim@fluendo.com>
16620 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
16621 (gst_dv1394src_base_init), (gst_dv1394src_class_init),
16622 (gst_dv1394src_init), (gst_dv1394src_dispose),
16623 (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
16624 (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
16625 (gst_dv1394src_event), (gst_dv1394src_get_formats),
16626 (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
16627 (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
16628 (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
16629 (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
16630 * ext/raw1394/gstdv1394src.h:
16631 Added conversion/query functions.
16632 Update buffer timestamps,
16634 Added uri dv:// so it might play from the firewire in playbin.
16635 Fix a possible leak.
16638 2004-10-15 Wim Taymans <wim@fluendo.com>
16640 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
16641 (gst_dv1394src_init), (gst_dv1394src_set_property),
16642 (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
16643 (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
16644 * ext/raw1394/gstdv1394src.h:
16645 Added AV/C VTR control support needed for some cameras.
16646 Added automatic port detection.
16647 Added properties for selecting the channel.
16648 The configure.ac script is not yet updated to reflect the
16649 new libavc1394 and librom1394 dependencies.
16651 2004-10-15 Wim Taymans <wim@fluendo.com>
16653 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
16654 (qtdemux_parse), (gst_qtdemux_handle_esds):
16655 An esds box is not a container.
16656 Fix parsing of mp4v boxes.
16657 Do not try to renegotiate fps for each frame. Need to
16658 find a better method. This should fix mp4 playback.
16660 2004-10-14 David Schleef <ds@schleef.org>
16662 * configure.ac: update for swfdec-0.3 and liboil-0.2
16663 * ext/swfdec/gstswfdec.c: update for swfdec-0.3
16664 * ext/swfdec/gstswfdec.h: same
16665 * gst/videofilter/gstvideobalance.c: update for liboil-0.2
16666 * gst/videotestsrc/videotestsrc.c: same
16668 2004-10-14 Wim Taymans <wim@fluendo.com>
16670 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
16671 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
16672 (is_sync_frame), (gst_multifdsink_new_client),
16673 (gst_multifdsink_handle_client_write),
16674 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16675 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
16676 Turn warnings into info.
16677 Don't allow a state change in the streaming thread.
16679 2004-10-14 Thomas Vander Stichele <thomas at apestaart dot org>
16681 * ext/vorbis/oggvorbisenc.c:
16682 * ext/vorbis/vorbisdec.c:
16683 fix template sample rate
16685 2004-10-13 Wim Taymans <wim@fluendo.com>
16687 * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
16688 Decoding the header first fixes some problems in resyncing
16691 2004-10-12 Wim Taymans <wim@fluendo.com>
16693 * gst/playback/gstplaybin.c: (gen_video_element),
16694 (gen_vis_element), (remove_sinks), (setup_sinks):
16695 Added vis plugin support, need to configure the vis
16696 element to activate it.
16698 2004-10-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16700 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
16701 (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
16703 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16704 (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
16705 (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
16706 (gst_avi_demux_stream_index), (gst_avi_demux_skip),
16707 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
16708 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
16709 * gst/avi/gstavidemux.h:
16710 Support for openDML-2.0 indx/ix## chunks. Support for broken index
16711 recovery (where, if part of the index is broken, we will still read
16712 the rest of the index and recover the broken part by stream
16713 scanning). More broken media support. EOS workarounds. General AVI
16714 braindamage headache recovery. Aspirin included.
16716 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16718 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
16719 (cdparanoia_event), (cdparanoia_query):
16720 Get rid of hideous lead-in.
16722 2004-10-11 Wim Taymans <wim@fluendo.com>
16724 * gst/playback/gstplaybasebin.c: (setup_source):
16725 Wrong var used to get g_list_next.
16727 2004-10-11 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16729 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
16730 (cdparanoia_get), (cdparanoia_open):
16731 Report discid as metadata, add duration.
16733 2004-10-11 Wim Taymans <wim@fluendo.com>
16735 * gst/playback/gstplaybasebin.c: (setup_source):
16736 Cleanup the previous pipeline a little earlier for the
16737 case that a source element provides raw data.
16739 2004-10-11 Benjamin Otte <otte@gnome.org>
16741 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
16742 reset v1 tag offset when there is no v1 tag. Fixes id3demux always
16743 consuming the last 128 bytes, even though it was valid mp3 data.
16745 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16747 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
16748 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
16749 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
16750 Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
16752 2004-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16754 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
16755 Fix for webcams that support only specific width or height
16757 2004-10-09 Tim-Philipp M??ller <t.i.m@zen.co.uk>
16759 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16761 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
16762 Fix wrong discont event setup (fixes #154967).
16764 2004-10-09 Sebastien Cote <sc5@hermes.usherb.ca>
16766 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16768 * gst/auparse/gstauparse.c: (gst_auparse_chain):
16769 Error out on invalid data (fixes #154807).
16771 2004-10-09 Tim-Philipp M??ller <t.i.m@zen.co.uk>
16773 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16775 * ext/dvdread/dvdreadsrc.c: (_read):
16776 Make titles > 0 work again (fixes #154834).
16778 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16780 * gst-libs/gst/riff/riff-media.c:
16781 (gst_riff_create_video_template_caps):
16782 WMV3 missing in template caps.
16784 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16786 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
16787 OK, so the original code was too strict. It makes random AVI files
16788 hang for seconds upon opening, which is unacceptable and is far
16789 beyond the original goal of getting multiple chunks for one-chunk
16790 sounc stream files. So now do just that.
16792 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16794 * gst/playback/gstplaybasebin.c: (setup_source),
16795 (gst_play_base_bin_change_state):
16796 Actually clean up streaminfo if output fails. This would trigger
16797 if, for example, there was no CD in the drive. No preroll, so
16798 a streaminfo structure is created, but the subsequent state change
16799 of the thread fails.
16800 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
16801 Don't change state if parent failed.
16803 2004-10-08 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16805 * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
16806 (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
16807 (gen_video_element), (remove_sinks):
16808 Add small bits of code for screenshot handling.
16810 2004-10-08 Wim Taymans <wim@fluendo.com>
16812 * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
16813 (gen_video_element), (gen_audio_element), (setup_sinks):
16814 Don't assume the user provided sinks are named "sink"...
16816 2004-10-08 Wim Taymans <wim@fluendo.com>
16818 * gst/playback/gstplaybasebin.c: (gen_preroll_element),
16819 (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
16820 (gst_play_base_bin_link_stream):
16821 Do not try to autoplug sources that generate raw streams like
16823 disconnect the preroll overrun signal when we don't need it anymore.
16825 2004-10-08 Milosz Derezynski <internalerror.rez@fhtw-berlin.de>
16827 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
16828 Added reworked patch from #154903 from milosz derezynski (deadchip).
16830 2004-10-08 Wim Taymans <wim@fluendo.com>
16832 * ext/cdparanoia/gstcdparanoia.c: (_do_init),
16833 (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
16834 (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
16835 (cdparanoia_convert), (cdparanoia_uri_get_type),
16836 (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
16837 (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
16838 * ext/cdparanoia/gstcdparanoia.h:
16839 This adds the cdda://<tracknum> uri.
16841 2004-10-08 Wim Taymans <wim@fluendo.com>
16843 * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
16844 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
16845 (try_to_link_1), (no_more_pads), (close_link), (type_found):
16846 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
16847 (unknown_type), (gst_play_base_bin_remove_element),
16848 (gst_play_base_bin_link_stream):
16849 * gst/playback/gstplaybasebin.h:
16850 * gst/playback/gstplaybin.c: (gst_play_bin_init),
16851 (gst_play_bin_set_property), (gen_video_element),
16852 (gen_audio_element), (setup_sinks):
16853 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
16854 (gst_stream_info_get_type), (gst_stream_info_class_init),
16855 (gst_stream_info_init), (gst_stream_info_new),
16856 (gst_stream_info_dispose), (stream_info_mute_pad),
16857 (gst_stream_info_set_property), (gst_stream_info_get_property):
16858 * gst/playback/gststreaminfo.h:
16859 Reuse the audio and video bins.
16860 Some internal cleanups in the stream selection code.
16862 2004-10-08 Julien MOUTTE <julien@moutte.net>
16864 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
16865 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
16866 * sys/ximage/ximagesink.h:
16867 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16868 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
16869 * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
16870 not coming from those elements. Moreover these elements should not keep
16871 the xid they have been given when in NULL state.
16873 2004-10-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16875 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
16876 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
16877 * sys/ximage/ximagesink.h:
16878 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
16879 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
16880 * sys/xvimage/xvimagesink.h:
16881 Actually only create a new toplevel window if we're not gonna
16882 embed it right after.
16884 2004-10-07 Wim Taymans <wim@fluendo.com>
16886 * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
16887 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
16888 * gst/playback/gstplaybin.c: (setup_sinks):
16889 Implement muting/unmuting of streams, mute streams that are not
16892 2004-10-07 Wim Taymans <wim@fluendo.com>
16894 * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
16896 Added lame audio/x-ac3 typefind function.
16898 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16903 === release 0.8.5 ===
16905 2004-10-06 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
16910 releasing 0.8.5, "Take You On"
16912 2004-10-06 Wim Taymans <wim@fluendo.com>
16914 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
16915 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
16916 (no_more_pads), (close_link), (type_found):
16917 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
16918 * gst/playback/gstplaybin.c: (gen_video_element):
16919 Do not signal the no_more_pads after the first pad when
16920 we are plugging a non dynamic element with multiple
16921 output pads (like swfdec, dvdec, ...).
16923 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
16926 bump for prerelease
16928 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16930 * gst/wavparse/gstwavparse.c:
16931 add ATRAC3 to STATIC CAPS to fix a warning
16933 * gst/matroska/ebml-read.c:
16934 * gst-libs/gst/riff/riff-read.c:
16937 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16939 * gst-libs/gst/riff/riff-media.c:
16940 generate caps for ATRAC3 audio streams
16942 * gst/realmedia/rmdemux.c:
16943 generate caps for ATRAC3 audio streams
16945 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16947 * gst/wavparse/Makefile.am
16948 * gst/wavparse/riff.h
16949 * gst/wavparse/wavparse.vcproj
16950 riff.h removal (unused and duplication with riff-ids.h)
16952 2004-10-06 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16954 * gst/wavparse/gstwavparse.h
16955 remove duplicated defines for audio codec codes
16957 * gst-libs/gst/riff/riff-ids.h
16958 * gst/wavenc/riff.h:
16959 add "4CC" code for ATRAC3 audio streams
16960 add "4CC" code for ITU_G721_ADPCM (unused for now)
16962 2004-10-06 Wim Taymans <wim@fluendo.com>
16964 * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
16965 Actually _do_ negotiation. Pass gdouble as arg instead
16966 of guint64 for the framerate.
16968 2004-10-06 Wim Taymans <wim@fluendo.com>
16970 * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
16971 (find_compatibles), (close_pad_link), (try_to_link_1),
16972 (no_more_pads), (close_link), (type_found):
16973 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
16974 * gst/playback/gstplaybin.c: (gen_video_element),
16975 (gen_audio_element):
16976 Set state on newly added element to READY so that negotiation
16978 Addes some more debug info.
16979 Do not try to plug pads with multiple caps structures or ANY
16980 because it is too dangerous since we do not do dynamic
16983 2004-10-06 Thomas Vander Stichele <thomas at apestaart dot org>
16985 written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
16989 add Oriya translation
16991 2004-10-05 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
16993 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
16994 Prevent overwrite of size member. Makes audio sound crappy.
16996 2004-10-05 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16998 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16999 Add rmvb to the list of known RealMedia extensions
17001 2004-10-05 Wim Taymans <wim@fluendo.com>
17003 * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
17004 (mngdec_openstream), (mngdec_closestream),
17005 (mngdec_handle_sink_event), (mngdec_readdata),
17006 (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
17007 (mngdec_getcanvasline), (mngdec_refresh),
17008 (gst_mngdec_change_state):
17009 Set the framerate correctly.
17011 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17013 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
17014 There was something wrong with the index massaging.
17016 2004-10-04 Wim Taymans <wim@fluendo.com>
17018 * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
17019 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
17020 (gst_smokedec_chain):
17021 * ext/jpeg/gstsmokedec.h:
17022 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
17023 (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
17024 * ext/jpeg/gstsmokeenc.h:
17025 * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
17026 (smokecodec_decode_new), (smokecodec_info_free),
17027 (smokecodec_set_quality), (smokecodec_get_quality),
17028 (smokecodec_set_threshold), (smokecodec_get_threshold),
17029 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
17030 (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
17031 (smokecodec_encode), (smokecodec_parse_id),
17032 (smokecodec_parse_header), (smokecodec_decode):
17033 * ext/jpeg/smokecodec.h:
17034 * ext/jpeg/smokeformat.h:
17035 Updated smoke, new bitstream, allows embedding in ogg.
17037 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17039 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
17040 Fix seeking in some files. All this code is no longer needed (and
17041 actually breaks stuff) because we now synchronize the full index
17042 right when reading the header.
17044 2004-10-04 Wim Taymans <wim@fluendo.com>
17047 configure update for libmng.
17049 2004-10-04 Wim Taymans <wim@fluendo.com>
17051 * ext/libmng/Makefile.am:
17052 * ext/libmng/gstmng.c: (plugin_init):
17053 * ext/libmng/gstmng.h:
17054 * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
17055 (gst_mngdec_base_init), (gst_mngdec_class_init),
17056 (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
17057 (gst_mngdec_loop), (gst_mngdec_get_property),
17058 (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
17059 (mngdec_closestream), (mngdec_handle_sink_event),
17060 (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
17061 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
17062 (gst_mngdec_change_state):
17063 * ext/libmng/gstmngdec.h:
17064 * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
17065 (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
17066 (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
17067 (gst_mngenc_chain), (gst_mngenc_get_property),
17068 (gst_mngenc_set_property):
17069 * ext/libmng/gstmngenc.h:
17070 Added basic MNG decoder. Needs more work. The encoder does
17073 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17075 * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
17076 (gst_rmdemux_loop), (gst_rmdemux_add_stream),
17077 (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
17078 Don't hang on length=0 chunks. Some negotiation fixes. Signal
17081 2004-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
17084 you need at least 1.0.4 of speex
17086 2004-10-04 Iain <iaingnome@gmail.com>
17088 * ext/speex/gstspeexdec.h: Revert the includes changes.
17090 * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
17092 2004-09-30 Iain <iaingnome@gmail.com>
17094 * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
17095 found during init or set as a property instead of hardcoding /dev/audio
17097 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17099 * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
17100 (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
17101 (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
17102 (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
17103 (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
17104 (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
17105 (gst_rmdemux_dump_data):
17106 Use debug category, fix EOS handling. filesrc ! rmdemux now
17109 2004-10-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17111 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
17112 (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
17113 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
17114 Improve allocation, cutting and sorting of the index. How takes a
17115 few seconds instead of minutes.
17117 2004-10-03 Christophe Fergeau <teuf@gnome.org>
17119 * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
17122 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17124 * gst-libs/gst/riff/riff-media.c:
17125 (gst_riff_create_video_caps_with_data),
17126 (gst_riff_create_video_template_caps):
17127 Add wing commander format mimetype/fourccs.
17128 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
17129 Don't crash if some value is 0.
17131 2004-10-02 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17133 * gst-libs/gst/riff/riff-media.c:
17134 (gst_riff_create_video_caps_with_data),
17135 (gst_riff_create_video_template_caps):
17136 Add DIB fourcc (raw, palettized 8-bit RGB).
17137 * gst-libs/gst/riff/riff-read.c:
17138 (gst_riff_read_strf_vids_with_data):
17139 Oops, fix strf_data reading bug.
17140 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
17141 Use a non-NULL tag.
17142 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17143 Time for hacks. Sorry Dave. At least one quicktime movie (a
17144 trailer) that I've encountered contains multiple video tracks.
17145 One of those is the actual video track, the other are one-frame
17146 tracks (images). Unfortunately, the number of frames according
17147 to the trak header is 1 for each, so that doesn't help. So
17148 instead, I look at the duration and discard tracks with a
17149 duration shorter than 20% of the length of the stream. Better
17152 2004-10-01 Christian Schaller <christian@fluendo.com>
17154 * ext/ivorbis/vorbis.c:
17155 Patch from Phil Blundell (Bug 152341)
17157 2004-10-01 Wim Taymans <wim@fluendo.com>
17159 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17160 (speex_dec_get_formats), (speex_dec_convert),
17161 (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
17162 (speex_dec_chain), (gst_speexdec_get_property),
17163 (gst_speexdec_set_property):
17166 2004-10-01 Wim Taymans <wim@fluendo.com>
17168 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
17169 (gst_wavparse_stream_init), (gst_wavparse_fmt),
17170 (gst_wavparse_other), (gst_wavparse_loop),
17171 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
17172 (gst_wavparse_srcpad_event):
17173 * gst/wavparse/gstwavparse.h:
17174 Added some more debugging info.
17175 Fix the case where the length of the file is 0.
17176 Make sure we seek to sample borders.
17178 2004-10-01 Wim Taymans <wim@fluendo.com>
17180 * gst/playback/README:
17181 * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
17182 (gst_decode_bin_init), (find_compatibles), (close_pad_link),
17183 (try_to_link_1), (no_more_pads), (close_link), (type_found):
17184 Add some debug info to decodebin, update README
17186 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17188 * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
17189 Don't use g_print(); use GST_DEBUG().
17191 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17193 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
17194 (gst_ogg_mux_queue_pads):
17195 Handle EOS properly.
17197 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
17199 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17201 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
17202 (gst_faad_chain), (gst_faad_change_state):
17203 * ext/faad/gstfaad.h:
17204 Allow playback of raw (unframed) MPEG AAC files (#148993).
17206 2004-10-01 Sebastien Cote <sc5@hermes.usherb.ca>
17208 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17210 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
17211 Throw error if we didn't recognize the stream. Fixes #152289.
17213 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17215 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
17218 2004-10-01 Francis Labonte <francis_labonte@hotmail.com>
17220 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17222 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
17225 2004-10-01 Balamurali Viswanathan <balamurali.viswanathan@wipro.com>
17227 Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17229 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
17231 * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
17234 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17236 * gst-libs/gst/riff/riff-media.c:
17237 (gst_riff_create_video_caps_with_data),
17238 (gst_riff_create_audio_caps_with_data):
17239 Add codec_data handling (like asfdemux used to do).
17240 * gst/asfdemux/gstasf.c: (plugin_init):
17241 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
17242 (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
17243 Use riff-media for caps creation instead of our own (mostly
17244 broken) copy of its functions.
17246 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17248 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
17249 Don't actually error out if we get another return value than
17250 -EINVAL. Opposite to what I first thought, drivers have random
17251 return values for this, although -EINVAL is the expected return
17252 value. Since this is not fatal, we shouldn't use
17253 GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
17255 2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17257 * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
17258 (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
17259 (dvdreadsrc_get_property), (_open), (_seek), (_read),
17260 (dvdreadsrc_get), (dvdreadsrc_open_file),
17261 (dvdreadsrc_change_state):
17262 Fix. Don't do one big huge loop around the whole DVD, that will
17263 cache all data and thus eat sizeof(dvd) (several GB) before we
17265 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
17266 Actually NULL'ify event after using it.
17267 * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
17268 (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
17269 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
17270 (gst_ebml_read_seek), (gst_ebml_read_skip):
17272 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
17273 (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
17274 (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
17275 Fix timing (this will probably break if I seek using menus, but
17276 I didn't get there yet). VOBs and normal DVDs should now work.
17277 Add a mpeg2-only pad with high rank so this get autoplugged for
17279 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
17280 (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
17281 (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
17282 (gst_mpeg_demux_get_audio_stream),
17283 (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
17284 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
17285 Use this as second rank for MPEG-1 and MPEG-2. Still use this for
17286 MPEG-1 but use dvddemux for MPEG-2.
17287 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
17288 (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
17289 (gst_mpeg_parse_parse_packhead):
17290 Timing. Only add pad template if it exists. Add sink template from
17291 class and not from ourselves. This means we will always use the
17292 correct sink template even if it is not the one defined in this
17295 2004-09-29 Wim Taymans <wim@fluendo.com>
17297 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
17298 (gst_mpeg_demux_parse_pes):
17299 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
17300 Fix playback of mpeg again, timestamps where screwed up by
17303 2004-09-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17305 * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
17306 Only return true if we actually filled something in. Prevents
17307 player applications from showing a random length for flac files.
17308 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
17309 (gst_riff_read_use_event), (gst_riff_read_handle_event),
17310 (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
17311 (gst_riff_read_strf_vids_with_data),
17312 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
17313 OK, ok, so I implemented event handling. Apparently it's normal
17314 that we receive random events at random points without asking
17316 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
17317 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
17318 (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
17319 (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
17320 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
17321 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
17322 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
17323 * gst/avi/gstavidemux.h:
17324 Implement non-lineair chunk handling and subchunk processing.
17325 The first solves playback of AVI files where the audio and video
17326 data of individual buffers that we read are not synchronized.
17327 This should not happen according to the wonderful AVI specs, but
17328 of course it does happen in reality. It is also a prerequisite for
17329 the second. Subchunk processing allows us to cut chunks in small
17330 pieces and process each of these pieces separately. This is
17331 required because I've seen several AVI files with incredibly large
17332 audio chunks, even some files with only one audio chunk for the
17333 whole file. This allows for proper playback including seeking.
17334 This patch is supposed to fix all AVI A/V sync issues.
17335 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
17336 (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
17338 * gst/modplug/gstmodplug.cc:
17339 Proper return value setting for the query() function.
17340 * gst/playback/gstplaybasebin.c: (setup_source):
17341 Being in non-playing state (after, e.g., EOS) is not necessarily
17342 a bad thing. Allow for that. This fixes playback of short files.
17343 They don't actually playback fully now, because the clock already
17344 runs. This means that small files (<500kB) with a small length
17345 (<2sec) will still not or barely play. Other files, such as mod
17346 or flx, will work correctly, however.
17348 2004-09-28 Wim Taymans <wim@fluendo.com>
17350 * ext/speex/gstspeex.c: (plugin_init):
17351 * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
17352 (gst_speex_dec_class_init), (speex_dec_get_formats),
17353 (speex_get_event_masks), (speex_get_query_types),
17354 (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
17355 (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
17356 (gst_speexdec_get_property), (gst_speexdec_set_property),
17357 (speex_dec_change_state):
17358 * ext/speex/gstspeexdec.h:
17359 * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
17360 (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
17361 (gst_speexenc_base_init), (gst_speexenc_class_init),
17362 (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
17363 (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
17364 (gst_speexenc_src_query), (gst_speexenc_init),
17365 (gst_speexenc_get_tag_value), (comment_init), (comment_add),
17366 (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
17367 (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
17368 (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
17369 (gst_speexenc_chain), (gst_speexenc_get_property),
17370 (gst_speexenc_set_property), (gst_speexenc_change_state):
17371 * ext/speex/gstspeexenc.h:
17372 Rewrote speex encoder, make sure it can be embedded in ogg.
17373 Implemented speex decoder.
17375 2004-09-28 Christian Schaller <christian@fluendo.com>
17378 Remove kioslave plugin. Markey is brewing a new working one
17379 * ext/Makefile.am: Remove kioslave plugin
17381 * gst-plugins.spec.in: remove kio plugin from spec
17383 2004-09-27 Wim Taymans <wim@fluendo.com>
17385 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
17386 (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
17387 (is_sync_frame), (gst_multifdsink_client_queue_buffer),
17388 (gst_multifdsink_new_client),
17389 (gst_multifdsink_handle_client_write),
17390 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
17391 (gst_multifdsink_handle_clients):
17392 * gst/tcp/gstmultifdsink.h:
17393 Make syncing to keyframes actually work for new clients and lagging
17396 2004-09-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
17398 * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
17399 (gst_navigationtest_handle_src_event), (draw_box_planar411),
17400 (gst_navigationtest_planar411), (gst_navigationtest_change_state):
17401 * gst/debug/gstnavigationtest.h:
17402 make navigationtest display button-press and button-release events
17404 2004-09-26 Iain <iaingnome@gmail.com>
17406 * gst/interleave/interleave.c (all_channels_new_media): Checks if all
17407 the channels have received a new media event.
17408 (interleave_buffered_loop): Compresses a new media event on all
17411 2004-09-26 Iain <iaingnome@gmail.com>
17413 * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
17414 call the sinkpad's default event handler and not the srcpads. He also
17415 says this is confusing :)
17416 (gst_wavenc_stop_file): Company says that seek events only go upstream
17417 we should send a discontinuous downstream instead.
17419 2004-09-25 Christian Schaller <christian@fluendo.com>
17421 * Update SPEC file to be usable in conjunction with Fedora Core,
17422 Fedora.us and freshrpms packages
17423 * Fix typo in multifilesrc test Makefile
17425 2004-09-24 Wim Taymans <wim@fluendo.com>
17427 * gst/playback/gstplaybasebin.c: (new_decoded_pad):
17428 Only signal the no_more_pads signal when we have
17429 added the stream to our list.
17431 2004-09-24 Wim Taymans <wim@fluendo.com>
17433 * gst/playback/gstplaybasebin.c: (remove_prerolls),
17435 * gst/playback/gstplaybasebin.h:
17436 * gst/playback/gstplaybin.c: (setup_sinks):
17437 Don't try to preroll or decode more than one audio/video
17440 2004-09-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17442 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17443 Throw error if we failed to find a suitable output. This should
17444 throw an error if we successfully set up a pipeline (e.g. because
17445 we recognized a media file) but found no decodable streams in it
17446 (e.g. because it contains only media stream types for which we
17447 have no decoders, or because it's not a media type).
17449 2004-09-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17451 * ext/dirac/Makefile.am:
17452 * ext/dirac/gstdirac.cc:
17453 * ext/dirac/gstdiracdec.cc:
17454 * ext/dirac/gstdiracdec.h:
17455 Do something. Don't actually know if this works because I don't
17456 have a demuxer yet.
17457 * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
17458 Add channels=1 to caps returned from _getcaps().
17459 * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
17460 (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
17461 (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
17462 (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
17463 (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
17464 (gst_ogm_parse_change_state):
17465 Separate between audio/video so ogmaudioparse actually uses the
17466 audio pad templates. Both audio and video work now, including
17467 autoplugging. Also use sometimes-srcpad hack.
17468 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
17469 Handle events better. Don't hang on infinite loops.
17470 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
17471 (gst_avi_demux_init), (gst_avi_demux_reset),
17472 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
17473 (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
17474 (gst_avi_demux_change_state):
17475 * gst/avi/gstavidemux.h:
17476 Improve A/V sync. Still not perfect.
17477 * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
17478 (gst_ebml_read_skip):
17479 Handle events better.
17480 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
17481 (gst_qtdemux_loop_header), (qtdemux_parse_trak),
17482 (qtdemux_audio_caps):
17483 Add IMA4. Improve event handling. Save offset after a seek when
17484 the headers are at the end of the file so that we don't end up in
17486 * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
17487 Add low-priority typefind support for files with no length.
17489 2004-09-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17491 * testsuite/multifilesink/Makefile.am:
17494 2004-09-22 Julien MOUTTE <julien@moutte.net>
17496 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
17497 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
17498 mistakes from thaytan's patches.
17500 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
17502 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
17503 For completeness, XSync in the destroy function as xvimage does.
17505 2004-09-23 Jan Schmidt <thaytan@mad.scientist.com>
17507 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
17508 Correct caps negotiation
17509 * gst/volume/gstvolume.c: (volume_chain_float),
17510 (volume_chain_int16):
17511 Modify debug output to be little more informative
17512 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
17513 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
17514 (gst_xvimagesink_xvimage_destroy):
17515 Add XSync calls after detaching from the shared memory segment to
17518 2004-09-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17520 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
17521 (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
17522 * ext/vorbis/vorbis.c: (plugin_init):
17523 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
17524 (gst_vorbisenc_chain):
17525 * ext/vorbis/vorbisenc.h:
17526 remove explicit newmedia support from oggmux and vorbisenc
17527 add debug category to vorbisenc
17528 * gst/multifilesink/gstmultifilesink.c:
17529 (gst_multifilesink_class_init), (gst_multifilesink_init),
17530 (gst_multifilesink_dispose), (gst_multifilesink_set_location),
17531 (gst_multifilesink_set_property), (gst_multifilesink_next_file),
17532 (gst_multifilesink_handle_event), (gst_multifilesink_chain),
17534 * gst/multifilesink/gstmultifilesink.h:
17535 add support for streamheader in multifilesink
17537 2004-09-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17539 * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
17540 (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
17541 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
17542 Prevent infinite loops. More correct error reporting.
17543 * gst/auparse/gstauparse.c: (gst_auparse_chain):
17544 Error out if negotiation fails.
17545 * gst/playback/gstplaybasebin.c: (setup_source),
17546 (gst_play_base_bin_change_state), (gst_play_base_bin_error),
17547 (gst_play_base_bin_found_tag):
17548 Error/tag forwarding. Pre-roll fixes for source errors on state
17549 changes (e.g. "file does not exist") to prevent hangs.
17551 2004-09-21 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17553 * testsuite/multifilesink/Makefile.am:
17554 * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
17555 (gst_newmedia_class_init), (gst_newmedia_init),
17556 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
17557 (newfile_signal), (test_signal), (main):
17558 * testsuite/multifilesink/multifilesrc_test.c: (main):
17559 * testsuite/multifilesink/oggtheora_test.c:
17560 (gst_newmedia_base_init), (gst_newmedia_class_init),
17561 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
17562 (test_format), (newfile_signal), (test_signal), (main):
17563 * testsuite/multifilesink/oggvorbis_test.c:
17564 (gst_newmedia_base_init), (gst_newmedia_class_init),
17565 (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
17566 (test_format), (newfile_signal), (test_signal), (main):
17567 * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
17568 (gst_newmedia_class_init), (gst_newmedia_init),
17569 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
17570 (newfile_signal), (test_signal), (main):
17573 2004-09-20 Christian Schaller <christian@fluendo.com>
17575 * Fix mikmod license to LGPL as they have relicensed
17576 * Move Dirac and Effectv into LGPL section of README_license
17578 2004-09-20 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17580 * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
17581 (gst_mad_change_state):
17582 Allow for mp3 rate/channels changes. However, only very
17583 conservatively. Reason that we *have* to enable this is smiply
17584 because the mad find_sync() function is not good enough, it will
17585 regularly sync on random data as valid frames and therefore make
17586 us provide random caps as *final* caps of the stream. The best fix
17587 I could think of is to simply require several of the same stream
17588 changes in a row before we change caps.
17589 The actual testcase that works now is #
17590 * ext/ogg/Makefile.am:
17591 * ext/ogg/gstogg.c: (plugin_init):
17592 * ext/ogg/gstogmparse.c:
17593 OGM support (video only for now; I need an audio sample file).
17594 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
17595 (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
17596 (gst_asf_demux_add_video_stream):
17598 * gst/playback/gstplaybasebin.c: (unknown_type):
17599 Don't error out on single unknown-types after all. It's wrong.
17600 If we found type of video and audio but not of a subtitle stream,
17601 it will still error out (which is unwanted). Will find a better fix
17603 * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
17604 (ogmaudio_type_find), (plugin_init):
17607 2004-09-20 Johan Dahlin <johan@gnome.org>
17609 * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
17610 after setting caps.
17612 2004-09-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17614 * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
17615 * gst/wavenc/gstwavenc.h:
17616 Added newmedia support to wavenc
17618 2004-09-17 Wim Taymans <wim@fluendo.com>
17620 * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
17621 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
17622 (gst_fdset_fd_can_write), (gst_fdset_wait):
17623 * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
17624 (gst_multifdsink_init), (gst_multifdsink_add),
17625 (gst_multifdsink_remove), (gst_multifdsink_get_stats),
17626 (gst_multifdsink_remove_client_link),
17627 (gst_multifdsink_client_queue_buffer),
17628 (gst_multifdsink_handle_client_write),
17629 (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
17630 (gst_multifdsink_close), (gst_multifdsink_change_state):
17631 * gst/tcp/gstmultifdsink.h:
17632 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
17633 (gst_tcpserversink_removed):
17634 Small cleanups in fdset.c
17635 Use a hastable to map fd to the client structure for faster
17636 lookup in _remove and get_stats.
17637 Added virtual function to close the fds.
17638 Handle clients even when the select/poll call was unblocked because
17640 Implement syncing to keyframe in the recovery procedure.
17642 2004-09-16 Iain <iaingnome@gmail.com>
17644 * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
17647 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17649 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
17650 Caps are only set if the type of the stream is unknown, but this
17651 is initialized in ->init_stream(), so set to UNKNOWN after calling
17652 ->init_stream() so that capsnego starts.
17654 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17656 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
17657 (gst_avi_demux_stream_data):
17658 Just hardcode for raw audio then. AVI audio sucks.
17660 2004-09-15 Arwed v. Merkatz <v.merkatz@gmx.net>
17662 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
17663 * gst/matroska/matroska-mux.c: (audiosink_templ),
17664 (gst_matroska_mux_audio_pad_link):
17665 * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
17666 Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
17668 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17670 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
17671 (gst_avi_demux_stream_data):
17672 Try to fix a/v sync issues.
17674 2004-09-15 David Schleef <ds@schleef.org>
17676 * configure.ac: remove NASM check, since we don't use it. Update
17678 * ext/dirac/gstdiracdec.cc: update to current 0.4 API
17679 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
17680 Initialized variables.
17681 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
17682 (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
17683 (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
17686 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17688 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
17689 (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
17690 * gst/avi/gstavidemux.h:
17691 Fix for compressed audio (mp3) timestamp generation. How did this
17694 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17696 * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
17697 Volume is a double not a float.
17699 2004-09-15 Wim Taymans <wim@fluendo.com>
17701 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
17702 (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
17703 Don't close the fd in multifdsink as we didn't open it in the
17704 first place. Some cleanups.
17706 2004-09-15 Wim Taymans <wim@fluendo.com>
17708 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
17709 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
17710 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
17711 Fix the case where the muxer would mark pages as delta
17712 frames when they are not (vorbis only ogg).
17714 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17716 * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
17717 (gst_play_base_bin_change_state):
17718 Handle the case where we failed to setup a clear pipeline. This
17719 will throw an error (or EOS, another nice case) and if you don't
17720 catch that, the app will wait for the signal forever (and thus
17723 2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17725 * ext/gnomevfs/gstgnomevfssink.c:
17726 (gst_gnomevfssink_uri_get_protocols):
17727 * ext/gnomevfs/gstgnomevfssrc.c:
17728 (gst_gnomevfssrc_uri_get_protocols):
17729 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
17730 * ext/gnomevfs/gstgnomevfsuri.h:
17731 Use _uri_new() instead of _open(), so it doesn't take as long and
17732 Christophe's computer won't hang.
17733 * gst/playback/gstplaybasebin.c: (unknown_type):
17734 Throw error on unknown media type, so apps actually display it.
17736 2004-09-14 Brian Cameron <brian.cameron@sun.com
17738 * tools/gst-launch-ext-m.m: Changed ~ to $ENV{HOME} to allow
17739 this script to work on Solaris since bash shell handles echo
17740 differenly than bash.
17742 2004-09-17 Wim Taymans <wim@fluendo.com>
17744 * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
17745 (setup_source), (gst_play_base_bin_set_property),
17746 (gst_play_base_bin_add_element):
17747 * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
17748 Some more work on making sure seeking pauses the pipeline and
17749 that changing the uri actually does something.
17751 2004-09-17 Wim Taymans <wim@fluendo.com>
17753 * gst/tcp/gstfdset.c: (gst_fdset_wait):
17754 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
17755 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
17756 (gst_tcpserversink_close):
17757 Be a bit more paranoid when freeing memory.
17759 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17761 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
17762 (qtdemux_parse_trak):
17763 Don't crash by dividing by zero (see sample movie in #126922).
17765 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17767 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
17768 Don't touch non-existing data (fixes crash on file in #140147).
17770 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17772 * gst/playback/gstplaybasebin.c:
17773 (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
17774 Handle double disposals, and proper change of URIs.
17776 2004-09-13 Martin Eikermann <meiker@upb.de>
17778 * gst/mpegstream/gstmpegparse.c:
17779 fix synchronistation for streams recorded from digital PCR
17782 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17784 * ext/gnomevfs/Makefile.am:
17785 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
17786 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
17787 (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
17788 (gst_gnomevfssink_uri_get_type),
17789 (gst_gnomevfssink_uri_get_protocols),
17790 (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
17791 (gst_gnomevfssink_uri_handler_init),
17792 (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
17793 (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
17794 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
17795 (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
17796 (gst_gnomevfssrc_uri_get_type),
17797 (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
17798 (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
17799 (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
17800 (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
17801 * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
17802 * ext/gnomevfs/gstgnomevfsuri.h:
17803 Add URI support to Gnome-VFS plugins. Tries to load a fixed list
17804 of fake URIs to see which this version of Gnome-VFS likes, and
17805 uses that for the Gst-URI interface. Makes playbin support http://
17806 streams. Also fix up some stupid behaviour in gnomevfssrc.
17808 2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17810 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
17811 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17812 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
17813 (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
17814 Update mixer (to sync with other sessions) if we try to obtain
17815 a new value. This makes alsamixer work accross applications.
17816 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
17817 Only call sync functions if we're running, else alsalib asserts.
17818 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
17819 Sometimes fails to compile. Possibly a gcc bug.
17820 * gst/playback/gstplaybin.c: (gen_video_element),
17821 (gen_audio_element):
17822 Add a reference to an application-provided object, because we lose
17823 this same reference if we add it to the bin. If we don't do this,
17824 we can only use this object once and thus crash if we go from
17825 ready to playing, back to ready and back to playing again.
17826 Also add an audioscale element because several cheap soundcards -
17827 like mine - don't support all samplerates.
17828 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
17829 (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
17830 Fix wrong order or PAR calls. Makes automatically obtained PAR
17831 from the X server atually being used.
17833 2004-09-12 David Schleef <ds@schleef.org>
17835 Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
17836 #151887, #152102, #152247.
17837 * examples/indexing/indexmpeg.c: 64-bit warning fixes.
17838 * examples/seeking/cdparanoia.c: same
17839 * examples/seeking/cdplayer.c: same
17840 * examples/seeking/seek.c: same
17841 * examples/seeking/spider_seek.c: same
17842 * examples/seeking/vorbisfile.c: same
17843 * examples/stats/mp2ogg.c: same
17844 * ext/esd/esdsink.c: (gst_esdsink_class_init),
17845 (gst_esdsink_dispose): Dispose of element properly.
17846 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
17848 * ext/nas/nassink.c: (gst_nassink_class_init),
17849 (gst_nassink_dispose): Dispose of element correctly.
17850 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
17851 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
17852 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
17853 Fix 64-bit warning.
17854 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
17855 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
17856 Fix 64-bit warning.
17858 2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17860 * configure.ac : change speex detection as 1.1.6 now uses
17861 .pc/pkg-config and they changed their headers location.
17863 2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
17865 * gst/matroska/matroska-mux.h:
17866 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
17867 (gst_matroska_mux_start), (gst_matroska_mux_finish),
17868 (gst_matroska_mux_write_data):
17869 Write multiple blocks/frames per cluster.
17870 Write meta-seek information (seek heads).
17872 2004-09-09 Scott Wheeler <wheeler@kde.org>
17874 * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
17875 (gst_play_bin_set_property), (gst_play_bin_get_property),
17876 (gen_audio_element), (gen_audio_element):
17877 Add a volume element / property to the pipeline.
17879 2004-09-07 Wim Taymans <wim@fluendo.com>
17881 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
17882 Copy timestamps from the master pad to the output buffers.
17884 2004-09-03 Thomas Vander Stichele <thomas at apestaart dot org>
17886 * ext/raw1394/gstdv1394src.c:
17887 throw errors when applicable
17889 2004-09-01 Arwed v. Merkatz <v.merkatz@gmx.net>
17891 * gst/matroska/ebml-ids.h:
17892 * gst/matroska/ebml-read.c: (gst_ebml_read_date):
17893 * gst/matroska/ebml-write.c: (gst_ebml_write_date):
17894 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
17895 automatically convert unix time <-> ebml time when reading/writing
17896 a date, use gst_ebml_write_uint to write CUETIME,
17897 not gst_ebml_write_date.
17898 * gst/matroska/matroska-ids.h:
17899 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
17900 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
17901 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
17902 (gst_matroska_mux_write_data):
17903 Write track and segment UIDs, write muxing date, write
17904 TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
17905 Create cues for audio only files.
17907 2004-08-31 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
17909 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
17910 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
17911 Re-commit ALSA switches.
17912 * gst/adder/gstadder.c: (gst_adder_loop):
17913 64-bit fix (#151416).
17914 * gst/debug/progressreport.c: (gst_progressreport_report):
17915 64-bit fix (#151419).
17916 * gst/matroska/matroska-demux.c:
17917 (gst_matroska_demux_parse_contents):
17918 64-bit fix (#151420).
17919 * gst/playback/test3.c: (update_scale):
17920 64-bit fix (#151421).
17922 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
17927 === release 0.8.4 ===
17929 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
17931 * configure.ac: releasing 0.8.4, "Alias"
17933 2004-08-31 Thomas Vander Stichele <thomas at apestaart dot org>
17935 * ext/theora/Makefile.am:
17936 fix makefile. Fixes #151462.
17938 2004-08-30 Wim Taymans <wim@fluendo.com>
17940 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
17941 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
17942 (gst_multifdsink_remove_client_link),
17943 (gst_multifdsink_client_queue_buffer),
17944 (gst_multifdsink_handle_client_write):
17945 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
17946 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
17947 Fix some memory leaks.
17949 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
17951 Patch by: David Schleef
17955 rename our detection macro for V4L2. Fixes #151236.
17957 2004-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
17959 Patch by: David Schleef
17962 check to define LAMEPRESET. Fixes #151232.
17964 2004-08-27 David Schleef <ds@schleef.org>
17966 * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
17967 (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
17968 (gst_glimagesink_fixate): Move local variable declarations to
17969 make gcc-2.95 happy.
17971 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
17974 bump nano for prerelease
17976 2004-08-27 David Schleef <ds@schleef.org>
17978 * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
17979 * sys/sunaudio/gstsunaudiosrc.c:
17980 * sys/sunaudio/gstsunaudiosrc.h:
17982 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
17984 * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
17985 handle EOS correctly
17986 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
17987 * gst/matroska/matroska-mux.h:
17988 added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
17989 VFW compatibility mode
17991 2004-08-27 Thomas Vander Stichele <thomas at apestaart dot org>
17993 patch by: Zaheer Abbas Merali
17995 * ext/ogg/gstoggmux.c:
17996 * ext/vorbis/vorbisenc.c:
17997 * ext/vorbis/vorbisenc.h:
18000 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
18002 * gst/matroska/ebml-write.c: (gst_ebml_write_float),
18003 fix byte order reversion on little endian machines.
18004 * gst/matroska/matroska-mux.c: (audiosink_templ),
18005 (gst_matroska_mux_audio_pad_link):
18006 add TTA codec to the list of supported codecs.
18007 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
18008 (gst_matroska_mux_start), (gst_matroska_mux_finish),
18009 (gst_matroska_mux_write_data):
18010 * gst/matroska/matroska-mux.h:
18011 write segment duration correctly, write muxing app string, fixes bugs
18012 #140897 and #140898.
18013 * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
18014 wait for all pads to be negotiated before starting to mux.
18016 2004-08-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18018 * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
18019 * ext/lame/gstlame.h:
18020 Added new media support to lame
18022 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
18024 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
18025 send vorbis headers at the beginning of a stream, fixes bug #141554.
18026 Interpret BLOCKDURATION and set buffer duration accordingly, fixes
18028 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
18029 (gst_matroska_demux_plugin_init):
18030 * gst/matroska/matroska-ids.h:
18031 enable demuxing of TTA audio streams, fixes bug #148951.
18032 * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
18033 enable typefinding for TTA audio files, fixes bug #148711.
18034 * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
18035 set XVID_LOWDELAY flag for decoding so xvid always returns an image,
18036 fixes playback of packed bitstream and xvid with bframes, bug #135407.
18038 2004-08-24 Sebastien Cote <sc5@hermes.usherb.ca>
18040 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
18041 (gst_riff_read_element_data), (gst_riff_read_seek),
18042 (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
18043 #144616, patch reviewed by Ronald and committed by Christophe Fergeau
18046 2004-08-23 Iain <iaingnome@gmail.com>
18048 * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
18049 tags. They appear to be handled differently to normal.
18050 (tag_list_to_id3_tag_foreach): Ditto.
18052 2004-08-22 Wim Taymans <wim@fluendo.com>
18054 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
18055 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
18056 Make sure we never send -1 granulepos.
18058 2004-08-20 Wim Taymans <wim@fluendo.com>
18060 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
18061 (gst_ogg_mux_loop):
18062 I will accept bitchslappings with non sharp objects.
18064 2004-08-20 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18067 Clean up the test for lame presets
18069 2004-08-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18072 * ext/lame/Makefile.am:
18073 * ext/lame/gstlame.c: (gst_lame_class_init),
18074 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
18075 Only enable lame presets if version of lame has presets in API
18077 2004-08-19 Jan Schmidt <thaytan@mad.scientist.com>
18078 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
18079 * gst/udp/gstudpsrc.h:
18080 Don't call gst_pad_push in a get function. Fixes #150449
18082 2004-08-18 Wim Taymans <wim@fluendo.com>
18084 * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
18085 (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
18086 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
18087 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
18088 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
18090 * gst/tcp/gstfdset.h:
18091 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
18092 (gst_multifdsink_client_queue_buffer),
18093 (gst_multifdsink_handle_client_write):
18094 * gst/tcp/gstmultifdsink.h:
18095 Some extra checks in gstfdset.
18096 Only use send() when the fd is a socket. Don't try to
18097 read from write only fds.
18099 2004-08-18 Wim Taymans <wim@fluendo.com>
18101 * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
18102 (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
18103 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
18104 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
18106 Add more locking and bounds checking.
18108 2004-08-18 Wim Taymans <wim@fluendo.com>
18110 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
18111 Realloc test fdset in the lock and right before starting
18112 the poll call. Bump the limit to 4096.
18114 2004-08-17 David Schleef <ds@schleef.org>
18116 * sys/sunaudio/Makefile.am:
18117 * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
18118 of rates and channels. Make debugging less obnoxious.
18120 Patch from Balamurali Viswanathan implementing a mixer for
18121 Sun audio. (bug #144091):
18122 * sys/sunaudio/gstsunelement.c:
18123 * sys/sunaudio/gstsunelement.h:
18124 * sys/sunaudio/gstsunmixer.c:
18125 * sys/sunaudio/gstsunmixer.h:
18127 2004-08-17 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18129 * gst/audioscale/gstaudioscale.c:
18130 * gst/audioscale/gstaudioscale.h:
18131 made audioscale resample from any sample rate to any sample rate
18133 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
18135 * ext/libpng/gstpngdec.c:
18136 error out on unsupported types
18138 2004-08-17 Iain <iaingnome@gmail.com>
18140 * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
18141 mid_side and loose_mid_side properties if its a stereo stream.
18143 2004-08-17 Wim Taymans <wim@fluendo.com>
18145 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
18146 (theora_get_formats), (theora_dec_src_convert),
18147 (theora_dec_sink_convert), (theora_dec_src_query),
18148 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
18151 2004-08-17 Wim Taymans <wim@fluendo.com>
18153 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
18154 (gst_ogg_pad_push):
18155 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
18156 (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
18157 (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
18158 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
18159 Mark delta units in the muxer.
18160 Try to decode the packet after an out-of-sync error from
18163 2004-08-17 Wim Taymans <wim@fluendo.com>
18165 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
18166 (gst_multifdsink_init), (gst_multifdsink_add),
18167 (gst_multifdsink_client_queue_buffer),
18168 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
18169 * gst/tcp/gstmultifdsink.h:
18170 Added option to send a keyframe to clients as the first buffer.
18171 Make timeout property writable.
18173 2004-08-17 Thomas Vander Stichele <thomas at apestaart dot org>
18175 patch by: Wim Taymans
18177 * gst/tcp/gstfdset.c:
18178 * gst/tcp/gstmultifdsink.c:
18179 fix index comparison, should include 0
18181 2004-08-16 Wim Taymans <wim@fluendo.com>
18183 * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
18184 (gst_fdset_add_fd), (gst_fdset_remove_fd),
18185 (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
18186 (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
18188 copy when reallocing for poll so the select arguments don't get
18189 changed during the call
18191 2004-08-16 Wim Taymans <wim@fluendo.com>
18193 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
18194 (gst_theora_enc_class_init), (theora_enc_sink_link),
18195 (theora_buffer_from_packet), (theora_enc_chain):
18196 Fix bug where buffers were not marked as keyframes
18199 2004-08-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18201 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
18202 (gst_lame_preset_get_type), (gst_lame_class_init):
18203 describe the enum values for vbr mode and presets more verbosely
18205 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18207 * ext/lame/gstlame.c: (gst_lame_mode_get_type),
18208 (gst_lame_quality_get_type), (gst_lame_padding_get_type),
18209 (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
18210 (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
18211 * ext/lame/gstlame.h:
18212 add preset property to lame so it can use lame presets
18214 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18216 * ext/lame/gstlame.c: (gst_lame_get_property):
18217 whoops forgot break, thanks teuf
18219 2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18221 * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
18222 (gst_lame_class_init), (gst_lame_src_getcaps),
18223 (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
18224 (gst_lame_get_property), (gst_lame_setup):
18225 * ext/lame/gstlame.h:
18226 fix lame's broken vbr stuff, allow it to resample if need be, and also
18227 make xing header optional
18229 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18231 * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
18232 added getcaps function so samplerate doesnt get fixated to silly values
18234 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18236 * ext/lame/gstlame.c: (gst_lame_src_link):
18237 revert previous fix
18239 2004-08-12 Johan Dahlin <johan@gnome.org>
18241 * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
18242 checks. Doesn't matter what state we are in. Interfaces are a
18243 compile time thing, not runtime. It also broke the python bindings.
18245 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18247 * ext/lame/gstlame.c: (gst_lame_src_link):
18248 made source pad link function check if sinkpad is ok..fixes the problem
18249 where core fixates the output rate of lame stupidly
18251 2004-08-12 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
18253 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
18254 * sys/v4l/v4l_calls.c:
18255 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
18256 fix fixate function to handle nonsimple caps.
18257 remove bogus check in _link
18260 2004-08-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18262 * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
18263 set default compression ratio parameter to 0.0 so bitrate parameter
18266 2004-08-11 David Schleef <ds@schleef.org>
18268 * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
18270 2004-08-11 David Schleef <ds@schleef.org>
18272 * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
18275 2004-08-11 David Schleef <ds@schleef.org>
18277 * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
18279 2004-08-11 David Schleef <ds@schleef.org>
18281 * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
18283 * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
18284 * gst-libs/gst/video/gstvideosink.c: Change copyright block to
18286 * gst/auparse/gstauparse.c: Fix plugin license field.
18287 * gst/monoscope/gstmonoscope.c: Fix plugin license field.
18288 * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
18289 * gst/rtp/gstrtp.c: Fix plugin license field.
18291 2004-08-11 Wim Taymans <wim@fluendo.com>
18293 * gst/tcp/Makefile.am:
18294 * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
18295 (ensure_size), (gst_fdset_new), (gst_fdset_free),
18296 (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
18297 (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
18298 (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
18299 (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
18300 (gst_fdset_fd_can_write), (gst_fdset_wait):
18301 * gst/tcp/gstfdset.h:
18302 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
18303 (gst_multifdsink_class_init), (gst_multifdsink_init),
18304 (gst_multifdsink_add), (gst_multifdsink_remove),
18305 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
18306 (gst_multifdsink_remove_client_link),
18307 (gst_multifdsink_handle_client_read),
18308 (gst_multifdsink_client_queue_data),
18309 (gst_multifdsink_client_queue_caps),
18310 (gst_multifdsink_client_queue_buffer),
18311 (gst_multifdsink_handle_client_write),
18312 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
18313 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
18314 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
18315 (gst_multifdsink_close):
18316 * gst/tcp/gstmultifdsink.h:
18317 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
18318 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
18319 (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
18320 (gst_tcpserversink_close):
18321 * gst/tcp/gsttcpserversink.h:
18322 Abstracted away the select call, implemented poll (yes we ran into
18323 the 1024 limit in production).
18325 2004-08-11 Thomas Vander Stichele <thomas at apestaart dot org>
18327 * gst/tcp/gsttcp.c:
18328 * gst/tcp/gsttcpplugin.c:
18329 improve debuggging, remove assert
18331 2004-08-10 Wim Taymans <wim@fluendo.com>
18333 * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
18334 (gst_client_status_get_type), (gst_multifdsink_class_init),
18335 (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
18336 (gst_multifdsink_handle_client_read),
18337 (gst_multifdsink_handle_client_write),
18338 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
18339 (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
18340 (gst_multifdsink_get_property):
18341 * gst/tcp/gstmultifdsink.h:
18342 * gst/tcp/gsttcp-marshal.list:
18343 Starting to prepare for specifying buffer time in other units
18344 than buffers. Expose remove reason in signal.
18346 2004-08-10 Wim Taymans <wim@fluendo.com>
18348 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
18349 (gst_multifdsink_remove), (gst_multifdsink_clear),
18350 (gst_multifdsink_remove_client_link),
18351 (gst_multifdsink_handle_client_read),
18352 (gst_multifdsink_client_queue_data),
18353 (gst_multifdsink_client_queue_buffer),
18354 (gst_multifdsink_handle_client_write),
18355 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
18356 (gst_multifdsink_chain), (gst_multifdsink_close):
18357 * gst/tcp/gstmultifdsink.h:
18358 Added more debugging info. Changed the way clients are
18359 removed from the lists. Fixed a bug where a bad file descriptor
18360 could cause many clients to be removed.
18362 2004-08-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
18364 * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
18365 allow all pixel-aspect-ratios, not just 1:1
18367 2004-08-09 David Schleef <ds@schleef.org>
18369 * sys/glsink/ARB_multitexture.h: Remove old files.
18370 * sys/glsink/EXT_paletted_texture.h:
18371 * sys/glsink/NV_register_combiners.h:
18372 * sys/glsink/gstgl_nvimage.c:
18373 * sys/glsink/gstgl_pdrimage.c:
18374 * sys/glsink/gstgl_rgbimage.c:
18375 * sys/glsink/gstglsink.c:
18376 * sys/glsink/gstglsink.h:
18377 * sys/glsink/gstglxwindow.c:
18378 * sys/glsink/regcomb_yuvrgb.c:
18380 2004-08-09 David Schleef <ds@schleef.org>
18382 Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
18383 GL sink plugin. (Bug #147302)
18385 * configure.ac: Test for OpenGL
18386 * sys/Makefile.am: Use test for OpenGL
18387 * sys/glsink/Makefile.am:
18388 * sys/glsink/glimagesink.c: rewrite
18389 * sys/glsink/glimagesink.h: rewrite
18391 2004-08-09 David Schleef <ds@schleef.org>
18393 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init): Only allow
18395 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
18396 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
18397 * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
18399 2004-08-09 Wim Taymans <wim@fluendo.com>
18401 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
18402 (gst_multifdsink_add), (gst_multifdsink_get_stats),
18403 (gst_multifdsink_client_remove),
18404 (gst_multifdsink_handle_client_read),
18405 (gst_multifdsink_handle_client_write),
18406 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
18407 Do a bit more logging, make the client_read code more robust.
18409 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
18411 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
18412 (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
18413 (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
18414 (gst_jpegdec_init), (gst_jpegdec_chain):
18415 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
18416 (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
18417 cleanups, debugging fixes and memleak plugging
18419 2004-08-09 Wim Taymans <wim@fluendo.com>
18421 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
18422 (theora_get_formats), (theora_dec_src_convert),
18423 (theora_dec_sink_convert), (theora_dec_src_query),
18424 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
18425 (theora_dec_change_state):
18426 Don't crash on missing header packets.
18428 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
18432 Added Albanian translation (Laurent Dhima)
18436 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
18438 * ext/lame/gstlame.c:
18441 2004-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
18443 * sys/ximage/ximagesink.c:
18444 * sys/xvimage/xvimagesink.c:
18445 assign all TOO_LAZY's to a real category. Thanks to Warthy Warthog.
18447 2004-08-06 Wim Taymans <wim@fluendo.com>
18449 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
18450 (gst_multifdsink_add), (gst_multifdsink_get_stats),
18451 (gst_multifdsink_client_remove),
18452 (gst_multifdsink_handle_client_read),
18453 (gst_multifdsink_handle_client_write),
18454 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
18455 Make sure we don't try to read more from a client that what
18456 ioctl says us or we deadlock.
18458 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
18460 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
18461 (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
18462 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
18463 decouple running_time and n_frames so it can handle changing
18464 framerate while running
18466 2004-08-05 Thomas Vander Stichele <thomas at apestaart dot org>
18470 updated translations
18472 2004-08-04 Benjamin Otte <otte@gnome.org>
18474 * gst/videotestsrc/gstvideotestsrc.c:
18475 (gst_videotestsrc_get_capslist), (generate_capslist),
18477 generate the list of supported caps at startup and reuse it instead
18478 of always generating it
18480 2004-07-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
18482 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
18483 whoops, last checkin broke normal build
18485 2004-08-03 Benjamin Otte <otte@gnome.org>
18487 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
18488 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
18489 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
18490 (gst_alsa_mixer_get_option):
18491 * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
18492 (dvdnavsrc_print_event):
18493 * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
18494 * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
18495 (gst_ogg_mux_pad_unlink):
18496 * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
18497 (gst_multipart_mux_pad_unlink):
18498 * gst/videofilter/gstvideobalance.c:
18499 (gst_videobalance_colorbalance_set_value):
18500 * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
18501 (gst_videomixer_pad_unlink):
18503 * sys/oss/gstossmixer.c:
18504 * sys/v4l/gstv4lcolorbalance.c:
18505 * sys/v4l/gstv4ltuner.c:
18506 * sys/v4l/v4lsrc_calls.c:
18507 * sys/v4l2/gstv4l2colorbalance.c:
18508 * sys/v4l2/gstv4l2tuner.c:
18509 compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
18511 2004-08-03 Benjamin Otte <otte@gnome.org>
18513 * examples/dynparams/filter.c: (ui_control_create):
18514 * examples/gstplay/player.c: (print_tag):
18515 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
18516 * ext/gdk_pixbuf/gstgdkanimation.c:
18517 (gst_gdk_animation_iter_may_advance):
18518 * ext/jack/gstjack.c: (gst_jack_request_new_pad):
18519 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
18520 (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
18521 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
18522 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
18523 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
18524 * gst-libs/gst/media-info/media-info-test.c: (print_tag):
18525 * gst/sine/demo-dparams.c: (main):
18526 * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
18527 * testsuite/alsa/formats.c: (create_pipeline):
18528 * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
18529 fixes for G_DISABLE_ASSERT and friends
18530 * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
18531 (mp3_type_frame_length_from_header), (mp3_type_find),
18533 require mp3 typefinding to have at least MIN_HEADERS valid headers
18534 add typefinding for AAC adts files
18536 2004-08-04 Jan Schmidt <thaytan@mad.scientist.com>
18538 * sys/ximage/ximagesink.c:
18539 (gst_ximagesink_calculate_pixel_aspect_ratio):
18540 * sys/xvimage/xvimagesink.c:
18541 (gst_xvimagesink_calculate_pixel_aspect_ratio):
18542 Make sure we calculate pixel-aspect-ratio using floating point maths
18544 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
18547 updated translation
18549 2004-08-03 Thomas Vander Stichele <thomas at apestaart dot org>
18551 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
18552 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
18553 add debugging for display PAR calculation
18555 2004-08-02 David Schleef <ds@schleef.org>
18557 * configure.ac: Fix mikmod CFLAGS.
18559 2004-07-27 Benjamin Otte <otte@gnome.org>
18561 * gst/audioscale/gstaudioscale.c:
18562 - fix templates to only support S16, it's the only format that works
18563 - make caps nego code use try_set_caps_nonfixed and fixation instead
18564 of try_set_caps twice, which is not nice for autopluggers
18565 - change rank to secondary, so autopluggers can pick it up after
18568 2004-08-02 Iain <iain@prettypeople.org>
18570 * gst/interleave/interleave.c (interleave_init),
18571 (interleave_request_new_pad),
18572 (interleave_pad_removed),
18573 (interleave_buffered_loop): Use the real pad count, not the artificial
18576 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
18578 * configure.ac: bump nano back to development
18580 === release 0.8.3 ===
18582 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
18584 * configure.ac: releasing 0.8.3, "Water"
18586 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
18588 * sys/xvimage/xvimagesink.c:
18589 (gst_xvimagesink_calculate_pixel_aspect_ratio),
18590 (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
18591 (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
18592 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
18593 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
18594 * sys/xvimage/xvimagesink.h:
18595 apply similar PAR fixes as to ximagesink
18597 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
18599 patch from: Benjamin Otte
18601 * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
18602 add link function to lame. Fixes #148986.
18604 2004-08-02 Johan Dahlin <johan@gnome.org>
18606 * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
18609 2004-07-30 David Schleef <ds@schleef.org>
18611 * gst/videomixer/Makefile.am: Fix things that should have been
18612 fixed in the last checkin.
18614 2004-07-30 David Schleef <ds@schleef.org>
18616 * gst/multipart/Makefile.am: Fix things that should have been
18617 fixed in the last checkin.
18619 2004-07-30 David Schleef <ds@schleef.org>
18621 * testsuite/multifilesink/Makefile.am: Fix unused variable.
18623 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
18626 bump nano for prerelease
18638 2004-07-30 Wim Taymans <wim@fluendo.com>
18640 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
18641 (gst_multifdsink_add), (gst_multifdsink_remove),
18642 (gst_multifdsink_clear), (gst_multifdsink_get_stats),
18643 (gst_multifdsink_client_remove),
18644 (gst_multifdsink_handle_client_write),
18645 (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
18646 * gst/tcp/gstmultifdsink.h:
18647 Recover from a select with a bad file descriptor by removing
18650 2004-07-30 Thomas Vander Stichele <thomas at apestaart dot org>
18653 fix requirement of core
18654 * gst-libs/gst/play/play.c: (gst_play_error_plugin),
18655 (gst_play_pipeline_setup):
18656 don't use colorspace element. do use hermescolorspace element.
18657 make macro to get a colorspace element.
18658 mark strings for translation.
18670 update translations
18672 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18674 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
18675 fix default for newmedia flag
18677 2004-07-30 Wim Taymans <wim@fluendo.com>
18679 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
18680 (gst_theora_dec_init), (theora_get_formats),
18681 (theora_dec_src_convert), (theora_dec_sink_convert),
18682 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
18683 (theora_dec_chain), (theora_dec_set_property),
18684 (theora_dec_get_property):
18685 * ext/theora/theoraenc.c: (gst_border_mode_get_type),
18686 (gst_theora_enc_class_init), (gst_theora_enc_init),
18687 (theora_enc_sink_link), (theora_enc_chain),
18688 (theora_enc_set_property), (theora_enc_get_property):
18689 Added cropping option to theora decoder.
18690 Added border option to theora encoder.
18692 2004-07-30 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18694 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
18695 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
18696 (gst_pngenc_set_property):
18697 * ext/libpng/gstpngenc.h:
18698 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
18700 2004-07-30 Wim Taymans <wim@fluendo.com>
18702 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18703 (theora_enc_sink_link), (theora_enc_chain),
18704 (theora_enc_set_property), (theora_enc_get_property):
18705 Fix encoding of non-multiple-of-16 video.
18707 2004-07-29 David Schleef <ds@schleef.org>
18709 * configure.ac: make test for audiofile more strict
18711 2004-07-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
18713 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
18714 give different names to typefind functions
18716 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
18718 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
18719 (gst_ximagesink_calculate_pixel_aspect_ratio),
18720 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
18721 (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
18722 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
18723 (gst_ximagesink_get_property), (gst_ximagesink_init):
18724 * sys/ximage/ximagesink.h:
18725 allocate PAR's dynamically.
18726 use autodetected PAR if no object-set PAR is given.
18727 add workaround for directfb's X not setting physical size.
18728 fix to xvimagesink will follow tomorrow.
18730 2004-07-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18732 * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
18733 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
18734 (gst_shout2send_get_type), (gst_shout2send_set_clock),
18735 (gst_shout2send_class_init), (gst_shout2send_init),
18736 (set_shout_metadata), (gst_shout2send_set_metadata),
18737 (gst_shout2send_chain), (gst_shout2send_set_property),
18738 (gst_shout2send_get_property), (gst_shout2send_connect),
18739 (gst_shout2send_change_state):
18740 * ext/shout2/gstshout2.h:
18741 - fix for sending mp3 audio to icecast2 server, if pad link function not
18742 called before PAUSED state
18743 - added option to use GStreamer clock sync (as opposed to libshout's own sync)
18744 - added tagging support for mp3 audio broadcasted
18745 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
18748 2004-07-28 Wim Taymans <wim@fluendo.com>
18750 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
18751 (gst_ogg_demux_push):
18752 Return query failure when we don't know the length of
18753 an ogg stream insteda of returning TRUE with a bogus value.
18755 2004-07-28 Wim Taymans <wim@fluendo.com>
18757 * ext/theora/theoradec.c: (theora_get_formats),
18758 (theora_dec_src_convert), (theora_dec_sink_convert),
18759 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
18760 (theora_dec_chain):
18761 Don't screw up the 1 Chroma for 1 luma sample situation when we
18762 have an odd offset/width by adding a black border in those cases.
18764 2004-07-28 Wim Taymans <wim@fluendo.com>
18766 * ext/theora/theoradec.c: (theora_get_formats),
18767 (theora_dec_src_convert), (theora_dec_sink_convert),
18768 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
18769 (theora_dec_chain):
18770 * ext/theora/theoraenc.c: (theora_enc_sink_link):
18771 Added first attempt at cropping of the image as required by the
18772 theora spec. We need more properties in the caps (offset_x,
18773 offset_y,stride) to implement this correctly.
18775 2004-07-28 Jan Schmidt <thaytan@mad.scientist.com>
18777 * ext/dvdnav/README:
18778 Update the README to use dvddemux
18779 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
18780 Ensure getcaps returns a subset of the template caps
18781 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
18782 (gst_mpeg2subt_init):
18783 Ensure getcaps returns a subset of the template caps
18784 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
18785 (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
18786 (gst_dvd_demux_get_subpicture_stream),
18787 (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
18788 * gst/mpegstream/gstdvddemux.h:
18789 Set the explicit caps on the current_video pad before pushing
18791 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
18792 (gst_mpeg_demux_get_audio_stream):
18793 Free caps used to gst_pad_set_explicit_caps, which takes a const
18796 2004-07-28 Thomas Vander Stichele <thomas at apestaart dot org>
18798 * configure.ac: update GStreamer requirement to 0.8.4 because of
18801 2004-07-28 Wim Taymans <wim@fluendo.com>
18803 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
18804 (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
18805 Add the pad to the element after setting up the caps. This
18806 makes it a lot easier to autoplug.
18808 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
18810 * gst/median/gstmedian.c:
18811 * gst/mpeg2subt/gstmpeg2subt.c:
18812 * gst/mpegaudioparse/gstmpegaudioparse.c:
18813 * gst/mpegstream/gstdvddemux.c:
18814 * gst/mpegstream/gstmpegdemux.c:
18815 * gst/mpegstream/gstmpegpacketize.c:
18816 * gst/rtjpeg/gstrtjpeg.c:
18817 * gst/rtjpeg/gstrtjpegdec.c:
18818 * gst/rtjpeg/gstrtjpegenc.c:
18819 * gst/sine/gstsinesrc.c:
18820 * gst/smooth/gstsmooth.c:
18821 * gst/smpte/gstsmpte.c:
18822 * gst/smpte/gstsmpte.h:
18823 * gst/stereo/gststereo.c:
18824 * gst/videofilter/gstgamma.c:
18825 * gst/videofilter/gstvideobalance.c:
18826 * gst/videofilter/gstvideofilter.c:
18827 * gst/videofilter/gstvideoflip.c:
18828 * gst/videoscale/gstvideoscale.c:
18829 * gst/videoscale/videoscale.c:
18830 * gst/videotestsrc/gstvideotestsrc.c:
18831 * gst/videotestsrc/videotestsrc.c:
18832 * gst/wavenc/gstwavenc.c:
18833 * gst/wavparse/gstwavparse.c:
18834 fix local includes and 64 bits constants
18836 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
18839 * gst-libs/gst/*/*.vcproj:
18841 more working plugins
18843 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18845 * testsuite/alsa/Makefile.am:
18846 * testsuite/alsa/srcstate.c:
18847 add test for alsasrc changing state
18849 2004-07-27 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18851 * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
18853 * gst/silence/gstsilence.h:
18854 fix silence generation for 16bit raw audio
18856 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
18858 * gst/matroska/matroska-demux.c:
18859 (gst_matroska_demux_parse_metadata),
18860 (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
18861 * gst/mpegaudio/common.c:
18862 * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
18863 (gst_videoscale_getcaps), (gst_videoscale_link),
18864 (gst_videoscale_src_fixate), (gst_videoscale_init),
18865 (gst_videoscale_finalize):
18866 * gst/videoscale/gstvideoscale.h:
18867 * gst/videotestsrc/gstvideotestsrc.c:
18868 (gst_videotestsrc_get_capslist):
18869 * gst/wavenc/gstwavenc.c:
18870 * sys/oss/gstossmixer.c: (fill_labels):
18871 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
18872 (gst_ximagesink_handle_xevents),
18873 (gst_ximagesink_calculate_pixel_aspect_ratio),
18874 (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
18875 (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
18876 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
18877 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
18878 (gst_ximagesink_init), (gst_ximagesink_class_init):
18879 * sys/ximage/ximagesink.h:
18880 * sys/xvimage/xvimagesink.c:
18881 (gst_xvimagesink_calculate_pixel_aspect_ratio),
18882 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
18883 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
18884 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
18885 (gst_xvimagesink_init), (gst_xvimagesink_class_init):
18886 * sys/xvimage/xvimagesink.h:
18887 first batch of pixel aspect ratio commits.
18889 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
18891 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18892 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
18893 * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
18894 handle stride, needs work if we want to move stride handling
18895 upstream, but works correctly for our purposes.
18897 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
18899 * gst/videoscale/README:
18900 add testing examples
18901 * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
18902 (gst_videoscale_chain):
18903 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
18904 (gst_videoscale_get_size):
18905 add get_size function that handles stride like videotestsrc.
18906 fixes conversion for YUV formats for as much as I can test them.
18908 2004-07-27 Thomas Vander Stichele <thomas at apestaart dot org>
18910 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
18911 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
18912 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
18913 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
18914 (gst_xvimagesink_xvimage_put):
18915 further cleanups, logging, error handling and synchronizing
18917 2004-07-27 Wim Taymans <wim@fluendo.com>
18919 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
18920 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
18921 (gst_videomixer_pad_set_property),
18922 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
18923 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
18924 (gst_videomixer_class_init), (gst_videomixer_init),
18925 (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
18926 (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
18927 (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
18928 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
18929 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
18930 (gst_videomixer_loop), (plugin_init):
18931 Be a nicer negotiation citizen and provide a getcaps function on
18932 the srcpad. This also fixes a crash when resizing.
18934 2004-07-27 Julien MOUTTE <julien@moutte.net>
18936 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
18937 (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
18939 2004-07-27 Wim Taymans <wim@fluendo.com>
18941 * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
18942 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
18943 (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
18944 (gst_pngenc_set_property):
18945 * ext/libpng/gstpngenc.h:
18946 Added snapshot property to pngenc.
18947 removed g_print from pngdec
18949 2004-07-27 Steve Lhomme <steve.lhomme@free.fr>
18951 * gst/ac3parse/ac3parse.vcproj
18952 * gst/adder/adder.vcproj
18953 * gst/alpha/alpha.vcproj
18954 * gst/alpha/alphacolor.vcproj
18955 * gst/asfdemux/asf.vcproj
18956 * gst/audioconvert/audioconvert.vcproj
18957 * gst/audiorate/audiorate.vcproj
18958 * gst/audioscale/audioscale.vcproj
18959 * gst/auparse/auparse.vcproj
18960 * gst/avi/avi.vcproj
18961 * gst/cdxaparse/cdxaparse.vcproj
18962 * gst/chart/chart.vcproj
18963 * gst/colorspace/colorspace.vcproj
18964 * gst/cutter/cutter.vcproj
18965 * gst/debug/debug.vcproj
18966 * gst/debug/efence.vcproj
18967 * gst/debug/navigationtest.vcproj
18968 * gst/deinterlace/deinterlace.vcproj
18969 * gst/effectv/effectv.vcproj
18970 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
18971 * gst/filter/filter.vcproj
18972 * gst/flx/flxdec.vcproj
18973 * gst/goom/goom.vcproj
18974 * gst/interleave/interleave.vcproj
18975 * gst/law/alaw.vcproj
18976 * gst/law/mulaw.vcproj
18977 * gst/matroska/matroska.vcproj
18978 * gst/median/median.vcproj
18979 * gst/mixmatrix/mixmatrix.vcproj
18980 * gst/mpeg1sys/mpeg1systemencode.vcproj
18981 * gst/mpeg1videoparse/mp1videoparse.vcproj
18982 * gst/mpeg2sub/mpeg2subt.vcproj
18983 * gst/mpegaudio/mpegaudio.vcproj
18984 * gst/mpegaudioparse/mpegaudioparse.vcproj
18985 * gst/mpegstream/mpegstream.vcproj
18986 * gst/multifilesink/multifilesink.vcproj
18987 * gst/multipart/multipart.vcproj
18988 * gst/oneton/oneton.vcproj
18989 * gst/overlay/overlay.vcproj
18990 * gst/passthrough/passthrough.vcproj
18991 * gst/qtdemux/qtdemux.vcproj
18992 * gst/realmedia/rmdemux.vcproj
18993 * gst/rtjpeg/rtjpeg.vcproj
18994 * gst/rtp/rtp.vcproj
18995 * gst/silence/silence.vcproj
18996 * gst/sine/sinesrc.vcproj
18997 * gst/smooth/smooth.vcproj
18998 * gst/smpte/smpte.vcproj
18999 * gst/spectrum/spectrum.vcproj
19000 * gst/speed/speed.vcproj
19001 * gst/stereo/stereo.vcproj
19002 * gst/switch/switch.vcproj
19003 * gst/tags/tagedit.vcproj
19004 * gst/tcp/tcp.vcproj
19005 * gst/typefind/typefindfunctions.vcproj
19006 * gst/udp/udp.vcproj
19007 * gst/videobox/videobox.vcproj
19008 * gst/videocrop/videocrop.vcproj
19009 * gst/videodrop/videodrop.vcproj
19010 * gst/videofilter/gamma.vcproj
19011 * gst/videofilter/videobalance.vcproj
19012 * gst/videofilter/videofilter.vcproj
19013 * gst/videofilter/videoflip.vcproj
19014 * gst/videoflip/videoflip.vcproj
19015 * gst/videomixer/videomixer.vcproj
19016 * gst/videorate/videorate.vcproj
19017 * gst/videoscale/videoscale.vcproj
19018 * gst/videotestsrc/videotestsrc.vcproj
19019 * gst/virtualdub/virtualdub.vcproj
19020 * gst/volenv/volenv.vcproj
19021 * gst/volume/volume.vcproj
19022 * gst/wavenc/wavenc.vcproj
19023 * gst/wavparse/wavparse.vcproj
19024 * gst/y4m/y4menc.vcproj
19025 * gst-libs/gst/audio/audio.vcproj
19026 * gst-libs/gst/audio/audiofilter.vcproj
19027 * gst-libs/gst/colorbalance/colorbalance.vcproj
19028 * gst-libs/gst/idct/idtc.vcproj
19029 * gst-libs/gst/media-info/media-info.vcproj
19030 * gst-libs/gst/mixer/mixer.vcproj
19031 * gst-libs/gst/navigation/navigation.vcproj
19032 * gst-libs/gst/play/play.vcproj
19033 * gst-libs/gst/propertyprobe/propertyprobe.vcproj
19034 * gst-libs/gst/resample/resample.vcproj
19035 * gst-libs/gst/riff/riff.vcproj
19036 * gst-libs/gst/tuner/tuner.vcproj
19037 * gst-libs/gst/video/video.vcproj
19038 * gst-libs/gst/xoverlay/xoverlay.vcproj
19039 avoid problems with math.h, fix release dependancy
19040 rename GStreamer-0.8.lib to libgstreamer.lib
19042 2004-07-27 Julien MOUTTE <julien@moutte.net>
19044 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
19045 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
19046 the atom is not available we have to unlock the mutex. Fixes #148023
19048 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19050 * gst-libs/gst/media-info/media-info.h:
19051 issue for a vararg macro with MSVC
19053 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19055 * gst/effectv/effectv.vcproj
19056 * gst-libs/gst/idct/idct.vcproj:
19057 * gst-libs/gst/media-info/media-info.vcproj:
19058 * gst-libs/gst/navigation/navigation.vcproj:
19059 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
19060 * gst-libs/gst/video/video.vcproj:
19061 * gst-libs/gst/xoverlay/xoverlay.vcproj:
19062 fixes for build problems
19064 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19066 * gst-libs/gst/audio/audio.def:
19067 * gst-libs/gst/audio/riff.def:
19068 add some definitions needed by plugins
19070 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19072 * gst/asfdemux/gstasfmux.c
19073 Fix some 64 bits constants to be glib friendly
19075 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19077 * gst/ac3parse/gstac3parse.c
19078 * gst/audioscale/gstaudioscale.c
19079 * gst/auparse/gstauparse.c
19080 * gst/colorspace/gstcolorspace.c
19081 * gst/colorspace/yuv2rgb.h
19082 local include fixes
19084 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19087 add more plugins to the build
19089 2004-07-26 Julien MOUTTE <julien@moutte.net>
19091 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
19092 (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
19094 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
19096 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
19097 (gst_level_set_property), (gst_level_get_property),
19098 (gst_level_base_init), (gst_level_class_init):
19099 add debugging categories. cleanups.
19101 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
19103 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
19104 (gst_videoscale_planar411), (gst_videoscale_planar400),
19105 (gst_videoscale_packed422), (gst_videoscale_packed422rev),
19106 (gst_videoscale_scale_nearest_str1),
19107 (gst_videoscale_scale_nearest_str2),
19108 (gst_videoscale_scale_nearest_str4),
19109 (gst_videoscale_scale_nearest_16bit),
19110 (gst_videoscale_scale_nearest_24bit):
19111 fixed stride issues
19112 tested with 320x240 -> 321, 322, 324 x240
19113 tested with YV12, I420, YUY2, UYVY
19114 fixed packed422rev (don't think it could have worked before)
19115 by testing with UYVY
19117 2004-07-26 Benjamin Otte <otte@gnome.org>
19119 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
19120 (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
19122 add debugging category, add error checks like checking return values
19123 of setup calls, make sure it still works after
19124 PLAYING=>NULL=>PLAYING, fix encoding of mono streams
19126 2004-07-26 Wim Taymans <wim@fluendo.com>
19128 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
19129 (gst_mpeg_demux_get_audio_stream),
19130 (gst_mpeg_demux_process_private):
19131 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
19132 Check for error codes from the negotiation functions. Make sure
19133 we really set the pad caps when a new pad is created.
19135 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
19137 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
19138 (gst_ffmpeg_caps_to_pix_fmt):
19139 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
19140 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19141 (gst_ffmpegcolorspace_pad_link):
19142 don't make function do two things at the same time without reason.
19144 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19146 * gst/ac3parse/ac3parse.vcproj
19147 * gst/adder/adder.vcproj
19148 * gst/alpha/alpha.vcproj
19149 * gst/alpha/alphacolor.vcproj
19150 * gst/asfdemux/asf.vcproj
19151 * gst/audioconvert/audioconvert.vcproj
19152 * gst/audiorate/audiorate.vcproj
19153 * gst/audioscale/audioscale.vcproj
19154 * gst/auparse/auparse.vcproj
19155 * gst/avi/avi.vcproj
19156 * gst/cdxaparse/cdxaparse.vcproj
19157 * gst/chart/chart.vcproj
19158 * gst/colorspace/colorspace.vcproj
19159 * gst/cutter/cutter.vcproj
19160 * gst/debug/debug.vcproj
19161 * gst/debug/efence.vcproj
19162 * gst/debug/navigationtest.vcproj
19163 * gst/deinterlace/deinterlace.vcproj
19164 * gst/effectv/effectv.vcproj
19165 * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
19166 * gst/filter/filter.vcproj
19167 * gst/flx/flxdec.vcproj
19168 * gst/goom/goom.vcproj
19169 * gst/interleave/interleave.vcproj
19170 * gst/law/alaw.vcproj
19171 * gst/law/mulaw.vcproj
19172 * gst/matroska/matroska.vcproj
19173 * gst/median/median.vcproj
19174 * gst/mixmatrix/mixmatrix.vcproj
19175 * gst/mpeg1sys/mpeg1systemencode.vcproj
19176 * gst/mpeg1videoparse/mp1videoparse.vcproj
19177 * gst/mpeg2sub/mpeg2subt.vcproj
19178 * gst/mpegaudio/mpegaudio.vcproj
19179 * gst/mpegaudioparse/mpegaudioparse.vcproj
19180 * gst/mpegstream/mpegstream.vcproj
19181 * gst/multifilesink/multifilesink.vcproj
19182 * gst/multipart/multipart.vcproj
19183 * gst/oneton/oneton.vcproj
19184 * gst/overlay/overlay.vcproj
19185 * gst/passthrough/passthrough.vcproj
19186 * gst/qtdemux/qtdemux.vcproj
19187 * gst/realmedia/rmdemux.vcproj
19188 * gst/rtjpeg/rtjpeg.vcproj
19189 * gst/rtp/rtp.vcproj
19190 * gst/silence/silence.vcproj
19191 * gst/sine/sinesrc.vcproj
19192 * gst/smooth/smooth.vcproj
19193 * gst/smpte/smpte.vcproj
19194 * gst/spectrum/spectrum.vcproj
19195 * gst/speed/speed.vcproj
19196 * gst/stereo/stereo.vcproj
19197 * gst/switch/switch.vcproj
19198 * gst/tags/tagedit.vcproj
19199 * gst/tcp/tcp.vcproj
19200 * gst/typefind/typefindfunctions.vcproj
19201 * gst/udp/udp.vcproj
19202 * gst/videobox/videobox.vcproj
19203 * gst/videocrop/videocrop.vcproj
19204 * gst/videodrop/videodrop.vcproj
19205 * gst/videofilter/gamma.vcproj
19206 * gst/videofilter/videobalance.vcproj
19207 * gst/videofilter/videofilter.vcproj
19208 * gst/videofilter/videoflip.vcproj
19209 * gst/videoflip/videoflip.vcproj
19210 * gst/videomixer/videomixer.vcproj
19211 * gst/videorate/videorate.vcproj
19212 * gst/videoscale/videoscale.vcproj
19213 * gst/videotestsrc/videotestsrc.vcproj
19214 * gst/virtualdub/virtualdub.vcproj
19215 * gst/volenv/volenv.vcproj
19216 * gst/volume/volume.vcproj
19217 * gst/wavenc/wavenc.vcproj
19218 * gst/wavparse/wavparse.vcproj
19219 * gst/y4m/y4menc.vcproj
19220 more plugins supported under windows
19222 2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
19224 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
19225 (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
19226 (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
19227 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
19228 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
19229 Add debugging statements. Use the sizes as returned by the
19230 *CreateImage calls.
19232 2004-07-26 Johan Dahlin <johan@gnome.org>
19234 * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
19235 the pad is negotiated.
19237 * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
19239 2004-07-26 Steve Lhomme <steve.lhomme@free.fr>
19241 * gst-libs/gst/colorbalance/colorbalance.vcproj:
19242 * gst-libs/gst/idct/idct.vcproj:
19243 * gst-libs/gst/media-info/media-info.vcproj:
19244 * gst-libs/gst/mixer/mixer.vcproj:
19245 * gst-libs/gst/navigation/navigation.vcproj:
19246 * gst-libs/gst/play/play.vcproj:
19247 * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
19248 * gst-libs/gst/resample/resample.vcproj:
19249 * gst-libs/gst/tuner/tuner.vcproj:
19250 * gst-libs/gst/video/video.vcproj:
19251 * gst-libs/gst/xoverlay/xoverlay.vcproj:
19252 more plugins supported under windows
19254 2004-07-25 Iain <iain@prettypeople.org>
19256 * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
19257 pad now rather than when the pad is created because state changes wipe
19258 explicit caps (fixes #148043).
19260 2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
19262 reviewed by Benjamin Otte <otte@gnome.org>
19264 * ext/mad/gstmad.c:
19265 fix mad plugin crashing on Sun (fixes #148289)
19267 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
19270 * gst/avi/avi.vcproj:
19271 * gst/matroska/matroska.def:
19272 * gst/matroska/matroska.vcproj:
19273 remove unused .def files
19275 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
19277 * gst-libs/gst/audio/gstaudiofilter.c:
19278 Clean the local include
19280 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
19283 * gst-libs/gst/audio/audio.def:
19284 * gst-libs/gst/audio/audio.vcproj:
19285 * gst-libs/gst/audio/audiofilter.vcproj:
19286 * gst-libs/gst/audio/riff.def:
19287 * gst-libs/gst/audio/riff.vcproj:
19288 * gst-libs/gst/gst-libs.def:
19289 * gst-libs/gst/gst-libs.vcproj:
19290 * gst/avi/avi.vcproj:
19291 * gst/avi/avi.vcproj:
19292 Copy the files where needed after building, cleaner projects
19294 2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
19296 * gst/matroska/ebml-write.c:
19297 Fix some 64 bits constants to be glib friendly
19299 2004-07-24 Steve Lhomme <steve.lhomme@free.fr>
19302 * gst-libs/gst/gst-libs.def:
19303 * gst-libs/gst/gst-libs.vcproj:
19304 * gst/matroska/matroska.def:
19305 * gst/matroska/matroska.vcproj:
19306 Add the preliminary canvas to build plugins on Win32
19308 2004-07-23 Benjamin Otte <otte@gnome.org>
19310 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
19311 don't enfore negotiation from source side, it breaks
19312 sinesrc ! audioconvert ! osssink
19314 2004-07-22 David Schleef <ds@schleef.org>
19316 * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
19317 for ELF files, since they can easily be recognized as audio/mpeg.
19320 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
19322 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
19323 (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
19324 (gst_videoscale_scale_nearest_24bit),
19325 (gst_videoscale_scale_nearest_16bit):
19326 fix 16bit and 24bit for stride (24bit might need testing)
19327 don't pretend we do more than one algorithm
19329 2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
19333 * gst/multifilesink/Makefile.am:
19334 * gst/multifilesink/gstmultifilesink.c:
19335 (gst_multifilesink_get_formats),
19336 (gst_multifilesink_get_query_types), (_do_init),
19337 (gst_multifilesink_base_init), (gst_multifilesink_class_init),
19338 (gst_multifilesink_init), (gst_multifilesink_dispose),
19339 (gst_multifilesink_set_location), (gst_multifilesink_set_property),
19340 (gst_multifilesink_get_property), (gst_multifilesink_open_file),
19341 (gst_multifilesink_close_file), (gst_multifilesink_next_file),
19342 (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
19343 (gst_multifilesink_chain), (gst_multifilesink_change_state),
19344 (gst_multifilesink_uri_get_type),
19345 (gst_multifilesink_uri_get_protocols),
19346 (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
19347 (gst_multifilesink_uri_handler_init), (plugin_init):
19348 * gst/multifilesink/gstmultifilesink.h:
19349 * testsuite/Makefile.am:
19350 * testsuite/multifilesink/Makefile.am:
19351 * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
19352 (gst_newmedia_class_init), (gst_newmedia_init),
19353 (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
19354 (newfile_signal), (test_signal), (main):
19355 multifilesink plugin for creating new files every time a new media
19356 discontinuity event occurs
19358 2004-07-22 Wim Taymans <wim@fluendo.com>
19360 * gst/alpha/Makefile.am:
19361 * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
19362 (gst_alpha_color_base_init), (gst_alpha_color_class_init),
19363 (gst_alpha_color_init), (gst_alpha_color_set_property),
19364 (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
19365 (transform), (gst_alpha_color_chain),
19366 (gst_alpha_color_change_state), (plugin_init):
19367 Stupid plugin to to RGBA to AYUV conversion because none of
19368 the colorspace plugins can handle that yet.
19370 2004-07-22 Wim Taymans <wim@fluendo.com>
19372 * examples/seeking/seek.c: (update_scale), (main):
19373 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
19374 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
19375 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
19376 (gst_decode_bin_init), (gst_decode_bin_dispose),
19377 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
19378 (no_more_pads), (close_link), (type_found),
19379 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
19381 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
19382 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
19383 (gst_play_base_bin_dispose), (queue_overrun),
19384 (gen_preroll_element), (remove_prerolls), (unknown_type),
19385 (no_more_pads), (new_stream), (setup_source),
19386 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
19387 (play_base_eos), (gst_play_base_bin_change_state),
19388 (gst_play_base_bin_add_element),
19389 (gst_play_base_bin_remove_element),
19390 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
19391 (gst_play_base_bin_unlink_stream),
19392 (gst_play_base_bin_get_streaminfo):
19393 * gst/playback/gstplaybin.c: (gen_video_element),
19394 (gen_audio_element):
19395 * gst/playback/gststreaminfo.h:
19396 More playback updates, attempt to fix things after the state change
19399 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
19401 * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
19402 (gst_videoscale_scale_nearest_16bit):
19405 2004-07-22 Thomas Vander Stichele <thomas at apestaart dot org>
19407 * gst/videotestsrc/gstvideotestsrc.c:
19408 (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
19409 (gst_videotestsrc_init), (gst_videotestsrc_get),
19410 (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
19411 (gst_videotestsrc_get_property):
19412 * gst/videotestsrc/gstvideotestsrc.h:
19413 * gst/videotestsrc/videotestsrc.c:
19414 * gst/videotestsrc/videotestsrc.h:
19415 cleanup and commenting
19417 2004-07-21 Wim Taymans <wim@fluendo.com>
19419 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
19420 (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
19421 (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
19422 (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
19423 (_find_chain_get_unknown_part), (_find_streams_check),
19424 (gst_ogg_demux_push), (gst_ogg_pad_push):
19425 * ext/theora/theoradec.c: (theora_get_formats),
19426 (theora_dec_src_convert), (theora_dec_sink_convert),
19427 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
19428 (theora_dec_chain):
19429 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
19430 (vorbis_dec_convert), (vorbis_dec_src_query),
19431 (vorbis_dec_src_event), (vorbis_dec_event):
19432 More seeking fixes, oggdemux now supports seeking to time and
19433 uses the downstream element to convert granulepos to time.
19434 Seeking in theora-only ogg files now works.
19436 2004-07-21 Wim Taymans <wim@fluendo.com>
19438 * ext/theora/theoradec.c: (gst_theora_dec_init),
19439 (theora_get_formats), (theora_get_event_masks),
19440 (theora_get_query_types), (theora_dec_src_convert),
19441 (theora_dec_sink_convert), (theora_dec_src_query),
19442 (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
19443 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
19444 (vorbis_get_event_masks), (vorbis_get_query_types),
19445 (gst_vorbis_dec_init), (vorbis_dec_convert),
19446 (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
19447 Added query/convert/formats functions to vorbis and theora decoders
19448 so that the outside world can use them too. Fixed seeking on an
19449 ogg/theora/vorbis file by disabling the seeking seeking on the
19452 2004-07-21 Julien MOUTTE <julien@moutte.net>
19454 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
19455 (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
19456 (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
19457 images creation for both elements. We don't create the image on caps
19458 nego or renego, we just destroy the internal one if present if it does
19459 not match the needs. The chain function takes care of creating a new
19461 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
19462 (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
19463 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
19464 (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
19465 the image format information. The buffer pool checks for the context
19466 image format and discard images with different formats.
19467 * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
19469 2004-07-21 Thomas Vander Stichele <thomas at apestaart dot org>
19471 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
19472 (gst_ffmpegcolorspace_chain):
19473 no point in doing any chaining if the pad we want to push from
19476 2004-07-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
19478 * gst-libs/gst/riff/riff-media.c:
19479 (gst_riff_create_audio_caps_with_data):
19480 Fix double end-to-native symbol conversion (#148021).
19482 2004-07-20 David Schleef <ds@schleef.org>
19484 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
19485 Don't use an Atom that doesn't exist.
19487 2004-07-20 Wim Taymans <wim@fluendo.com>
19489 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
19490 (gst_multifdsink_add), (gst_multifdsink_get_stats),
19491 (gst_multifdsink_client_remove),
19492 (gst_multifdsink_handle_client_write),
19493 (gst_multifdsink_queue_buffer):
19494 * gst/tcp/gstmultifdsink.h:
19495 More multifdsink stats. Avoid deadlock by releasing locks
19496 before sending out a signal.
19498 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
19502 added Hungarian translation (Laszlo Dvornik)
19504 2004-07-20 Wim Taymans <wim@fluendo.com>
19506 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
19507 (gst_multifdsink_add), (gst_multifdsink_client_remove),
19508 (gst_multifdsink_handle_client_write),
19509 (gst_multifdsink_queue_buffer):
19510 * gst/tcp/gsttcp-marshal.list:
19511 Fixed the stupid marshal definition.
19513 2004-07-20 Wim Taymans <wim@fluendo.com>
19515 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
19516 (gst_multifdsink_init), (gst_multifdsink_add),
19517 (gst_multifdsink_client_remove),
19518 (gst_multifdsink_handle_client_write),
19519 (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
19520 (gst_multifdsink_set_property), (gst_multifdsink_get_property),
19521 (gst_multifdsink_init_send):
19522 * gst/tcp/gstmultifdsink.h:
19523 Added more stats, added timeout for a client, fixed some typos
19524 and added some comments.
19526 2004-07-20 Wim Taymans <wim@fluendo.com>
19528 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
19529 (gst_multifdsink_add), (gst_multifdsink_get_stats),
19530 (gst_multifdsink_client_remove),
19531 (gst_multifdsink_handle_client_write):
19532 * gst/tcp/gstmultifdsink.h:
19533 * gst/tcp/gsttcp-marshal.list:
19534 Added get_stats method that returns a GValueArray of
19537 2004-07-19 Benjamin Otte <otte@gnome.org>
19539 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
19540 make sure longname, description and author are valid UTF-8
19542 2004-07-19 Thomas Vander Stichele <thomas at apestaart dot org>
19544 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
19545 (gst_ximagesink_set_property):
19546 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
19547 (gst_xvimagesink_set_property):
19548 make sure SYNCHRONOUS is respected after getting the X context
19550 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
19552 * gst/matroska/matroska-demux.c:
19553 (gst_matroska_demux_handle_src_event),
19554 (gst_matroska_demux_parse_blockgroup):
19555 * gst/matroska/matroska-ids.h:
19556 add BlockReference tag and ignore it to clear out log.
19557 ignore NAVIGATION events to clear out log.
19559 2004-07-18 Thomas Vander Stichele <thomas at apestaart dot org>
19561 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
19562 (gst_matroska_demux_add_stream):
19563 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
19564 add debug categories
19566 2004-07-16 Wim Taymans <wim@fluendo.com>
19568 * ext/libpng/Makefile.am:
19569 * ext/libpng/gstpng.c: (plugin_init):
19570 * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
19571 (gst_pngdec_get_type), (gst_pngdec_base_init),
19572 (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
19573 (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
19574 * ext/libpng/gstpngdec.h:
19577 2004-07-16 Julien MOUTTE <julien@moutte.net>
19579 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
19580 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
19581 (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
19582 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
19583 (gst_ximagesink_buffer_alloc):
19584 * sys/ximage/ximagesink.h:
19585 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
19586 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
19587 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
19588 (gst_xvimagesink_buffer_alloc):
19589 * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
19590 again. Using internal data pointer of the x(v)image to store image's
19591 data to be coherent with the buffer alloc mechanism. Investigated the
19592 image destruction code to be sure that everything gets freed correctly.
19594 2004-07-16 Wim Taymans <wim@fluendo.com>
19596 * gst-libs/gst/riff/riff-read.c:
19597 (gst_riff_read_strf_vids_with_data),
19598 (gst_riff_read_strf_auds_with_data):
19599 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
19600 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
19601 Make sure we don't create 0 sized subbuffers in riff-read.
19602 Signal the no more pads signal after reading the avi header.
19604 2004-07-16 Wim Taymans <wim@fluendo.com>
19606 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
19607 (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
19608 (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
19609 (gst_decode_bin_init), (gst_decode_bin_dispose),
19610 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
19611 (no_more_pads), (close_link), (type_found),
19612 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
19613 (gst_decode_bin_change_state), (plugin_init):
19614 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
19615 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
19616 (gst_play_base_bin_dispose), (queue_overrun),
19617 (gen_preroll_element), (remove_prerolls), (unknown_type),
19618 (no_more_pads), (new_stream), (setup_source),
19619 (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
19620 (play_base_eos), (gst_play_base_bin_change_state),
19621 (gst_play_base_bin_add_element),
19622 (gst_play_base_bin_remove_element),
19623 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
19624 (gst_play_base_bin_unlink_stream),
19625 (gst_play_base_bin_get_streaminfo):
19626 * gst/playback/gstplaybasebin.h:
19627 Better error recovery. Added configurable preroll queue size. Faster
19628 detection of no-more-pads.
19630 2004-07-16 Wim Taymans <wim@fluendo.com>
19632 * gst-libs/gst/video/video.h:
19633 Added 32 bits RGBA. Not sure if we should use another mime-type
19634 for alpha rgb. Currently the presence of the alpha_mask property
19635 signals an alpha channel.
19637 2004-07-16 Wim Taymans <wim@fluendo.com>
19639 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
19640 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
19641 FPS seems to be 0.0 to MAX everywhere else.
19643 2004-07-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
19645 * gst-libs/gst/riff/riff-media.c:
19646 (gst_riff_create_video_caps_with_data):
19647 mp42/mp43 (no caps) exist too.
19648 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
19649 Set pixel_width/height; we've got them in-caps.
19650 * gst/typefind/gsttypefindfunctions.c: (plugin_init):
19651 * gst/wavparse/gstwavparse.c: (plugin_init):
19652 Both are valid primary.
19653 * sys/oss/gstossmixer.c:
19654 Remove i18n hack and enable translations.
19656 2004-07-15 Benjamin Otte <otte@gnome.org>
19658 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
19659 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
19660 fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
19662 2004-07-15 Benjamin Otte <otte@gnome.org>
19664 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
19665 (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
19666 (gst_alsa_close_audio):
19667 disable some of the debugging code for now. Writing debugging to a
19668 buffer is broken in current alsalib releases.
19670 2004-07-12 Benjamin Otte <otte@gnome.org>
19672 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
19675 2004-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
19677 * ext/theora/theoradec.c: (gst_theora_dec_class_init),
19678 (theora_dec_src_query), (theora_dec_event):
19679 * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
19680 add debugging categories. Remove \n's.
19682 2004-07-13 Johan Dahlin <johan@gnome.org>
19684 * gst/playback/gstplaybin.c (gst_play_bin_set_property)
19685 (gst_play_bin_get_property): Impl.
19687 2004-07-13 Wim Taymans <wim@fluendo.com>
19689 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
19690 When trying to find the stream length, seek back N pages
19691 instead of just one, where N is the number of streams in
19694 2004-07-13 Wim Taymans <wim@fluendo.com>
19696 * gst-libs/gst/riff/riff-media.c:
19697 (gst_riff_create_audio_caps_with_data),
19698 (gst_riff_create_audio_caps),
19699 (gst_riff_create_audio_template_caps):
19700 * gst-libs/gst/riff/riff-media.h:
19701 * gst-libs/gst/riff/riff-read.c:
19702 (gst_riff_read_strf_vids_with_data),
19703 (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
19704 * gst-libs/gst/riff/riff-read.h:
19705 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
19706 (gst_avi_demux_add_stream):
19707 Set codec_data on caps for avidemuxer.
19709 2004-07-12 David Schleef <ds@schleef.org>
19711 * configure.ac: Fix test for Objective C
19713 2004-07-12 Jan Schmidt <thaytan@mad.scientist.com>
19714 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
19715 (gst_gdk_pixbuf_chain):
19716 Add svg and pcx to template caps, and ensure that getcaps returns a
19717 subset of the template caps.
19718 Copy each row manually for output, as gdkpixbuf may pad the
19719 rowstride to a 32-bit word boundary.
19721 2004-07-12 Wim Taymans <wim@fluendo.com>
19723 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
19724 (gst_riff_create_video_template_caps):
19725 Fix the template caps to include some more media types.
19727 2004-07-12 Wim Taymans <wim@fluendo.com>
19729 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
19730 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
19731 (compare_ranks), (print_feature), (gst_decode_bin_init),
19732 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
19733 (try_to_link_1), (new_pad), (close_link), (type_found),
19734 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
19735 (gst_decode_bin_change_state), (plugin_init):
19736 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
19737 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
19738 (gst_play_base_bin_dispose), (queue_overrun),
19739 (gen_preroll_element), (remove_prerolls), (no_more_pads),
19740 (new_stream), (setup_source), (gst_play_base_bin_set_property),
19741 (gst_play_base_bin_get_property), (play_base_eos),
19742 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19743 (gst_play_base_bin_remove_element),
19744 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
19745 (gst_play_base_bin_unlink_stream),
19746 (gst_play_base_bin_get_streaminfo):
19747 * gst/playback/gstplaybasebin.h:
19748 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
19749 (gst_play_bin_class_init), (gst_play_bin_init),
19750 (gst_play_bin_dispose), (gst_play_bin_set_property),
19751 (gst_play_bin_get_property), (gen_video_element),
19752 (gen_audio_element), (remove_sinks), (setup_sinks),
19753 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
19754 (gst_play_bin_send_event), (gst_play_bin_get_formats),
19755 (gst_play_bin_convert), (gst_play_bin_get_query_types),
19756 (gst_play_bin_query), (plugin_init):
19757 * gst/playback/test4.c: (main):
19758 More fixes on reusing of the element.
19760 2004-07-11 Benjamin Otte <otte@gnome.org>
19762 * ext/mad/gstmad.c: (normal_seek):
19763 allow seeking for other methods than just SET
19765 2004-07-11 Andy Wingo <wingo@pobox.com>
19767 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
19768 float, "any" caps -> buffer_frames=[0,MAX].
19770 * gst/interleave/interleave.c (interleave_getcaps): Seems the core
19771 doesn't intersect our caps with the template any more. Do it
19773 (interleave_buffered_loop): Use g_newa instead of malloc/free.
19775 2004-07-09 Wim Taymans <wim@fluendo.com>
19777 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
19778 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
19779 (compare_ranks), (print_feature), (gst_decode_bin_init),
19780 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
19781 (try_to_link_1), (new_pad), (close_link), (type_found),
19782 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
19783 (gst_decode_bin_change_state), (plugin_init):
19784 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
19785 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
19786 (gst_play_base_bin_dispose), (queue_overrun),
19787 (gen_preroll_element), (remove_prerolls), (no_more_pads),
19788 (new_stream), (setup_source), (gst_play_base_bin_set_property),
19789 (gst_play_base_bin_get_property), (play_base_eos),
19790 (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
19791 (gst_play_base_bin_remove_element),
19792 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
19793 (gst_play_base_bin_unlink_stream),
19794 (gst_play_base_bin_get_streaminfo):
19795 * gst/playback/gstplaybasebin.h:
19796 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
19797 (gst_play_bin_class_init), (gst_play_bin_init),
19798 (gst_play_bin_dispose), (gst_play_bin_set_property),
19799 (gst_play_bin_get_property), (gen_video_element),
19800 (gen_audio_element), (remove_sinks), (setup_sinks),
19801 (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
19802 (gst_play_bin_send_event), (gst_play_bin_get_formats),
19803 (gst_play_bin_convert), (gst_play_bin_get_query_types),
19804 (gst_play_bin_query), (plugin_init):
19805 * gst/playback/test4.c: (main):
19806 Work on object reuse and seeking.
19808 2004-07-09 Wim Taymans <wim@fluendo.com>
19810 * examples/seeking/seek.c: (iterate):
19811 Don't consume all CPU in the idle loop.
19813 2004-07-09 Wim Taymans <wim@fluendo.com>
19815 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
19816 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
19817 Add pad to element *after* setting the pad functions so that
19818 the scheduler can use the correct ones.
19820 2004-07-09 Wim Taymans <wim@fluendo.com>
19822 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
19823 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
19824 Sync to keyframe after seek
19826 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19828 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
19829 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
19830 (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
19831 * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
19832 * ext/libvisual/visual.c: (gst_visual_change_state):
19833 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
19834 * ext/theora/theoradec.c: (theora_dec_change_state):
19835 * ext/theora/theoraenc.c: (theora_enc_change_state):
19836 * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
19837 * gst-libs/gst/navigation/navigation.c:
19838 * gst/adder/gstadder.c: (gst_adder_change_state):
19839 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
19840 (gst_audio_convert_get_buffer):
19841 * gst/multipart/multipartdemux.c:
19842 (gst_multipart_demux_change_state):
19843 * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
19844 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
19845 * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
19846 * gst/videoscale/gstvideoscale.c:
19847 (gst_videoscale_handle_src_event):
19848 * gst/volume/gstvolume.c: (volume_chain_int16):
19849 don't assert in state change, this should be done by the base
19851 various debugging fixes.
19853 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19856 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
19857 (gst_play_dispose), (gst_play_set_location),
19858 (gst_play_set_data_src), (gst_play_set_video_sink),
19859 (gst_play_set_audio_sink), (gst_play_set_visualization),
19860 (gst_play_connect_visualization), (gst_play_get_sink_element),
19861 (gst_play_get_all_by_interface):
19862 * gst-libs/gst/play/play.h:
19863 add new method to get elements implementing an interface.
19864 add various error logging
19866 2004-07-08 Wim Taymans <wim@fluendo.com>
19868 * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
19869 (make_mpeg_pipeline), (make_mpegnt_pipeline),
19870 (make_playerbin_pipeline), (query_durations_elems),
19871 (query_durations_pads), (query_positions_elems),
19872 (query_positions_pads), (update_scale), (iterate), (stop_seek),
19874 Added playbin seeking example.
19876 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19878 * gst-libs/gst/play/play.c: (gst_play_set_location),
19879 (gst_play_set_data_src), (gst_play_set_video_sink),
19880 (gst_play_set_audio_sink), (gst_play_set_visualization),
19881 (gst_play_connect_visualization), (gst_play_get_framerate):
19882 use a macro to look up elements from hash table
19884 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19886 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
19887 (gst_play_get_length_callback), (gst_play_set_location),
19888 (gst_play_seek_to_time), (gst_play_set_data_src),
19889 (gst_play_set_video_sink), (gst_play_set_audio_sink),
19890 (gst_play_set_visualization), (gst_play_connect_visualization),
19891 (gst_play_get_sink_element):
19892 - add debugging info
19893 - fix looking up sink elements by iterating over complete caps
19894 - put everything except for source and autoplugger in a complete bin
19896 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19898 * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
19899 * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
19900 (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
19901 (gst_alsa_sink_write), (gst_alsa_sink_loop):
19902 * ext/alsa/gstalsasink.h:
19903 - add debugging info
19904 - clean up schizophrenia of data/buffer/event
19905 - fix double event unref error
19907 2004-07-08 Wim Taymans <wim@fluendo.com>
19909 * gst/playback/Makefile.am:
19910 Add headers to noinst
19912 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19914 * tools/gst-launch-ext-m.m:
19915 * tools/gst-launch-ext.1.in:
19916 convert to the third millenium
19918 2004-07-07 David Schleef <ds@schleef.org>
19920 * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
19922 2004-07-07 Wim Taymans <wim@fluendo.com>
19924 * gst/playback/Makefile.am:
19925 * gst/playback/README:
19926 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
19927 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
19928 (compare_ranks), (print_feature), (gst_decode_bin_init),
19929 (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
19930 (try_to_link_1), (new_pad), (close_link), (type_found),
19931 (gst_decode_bin_set_property), (gst_decode_bin_get_property),
19933 * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
19934 (gst_play_base_bin_class_init), (gst_play_base_bin_init),
19935 (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
19936 (gen_preroll_element), (no_more_pads), (new_stream),
19937 (setup_source), (gst_play_base_bin_set_property),
19938 (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
19939 (gst_play_base_bin_add_element),
19940 (gst_play_base_bin_remove_element),
19941 (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
19942 (gst_play_base_bin_unlink_stream),
19943 (gst_play_base_bin_get_streaminfo):
19944 * gst/playback/gstplaybasebin.h:
19945 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
19946 (gst_play_bin_class_init), (gst_play_bin_init),
19947 (gst_play_bin_dispose), (gst_play_bin_set_property),
19948 (gst_play_bin_get_property), (gen_video_element),
19949 (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
19950 (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
19951 (gst_play_bin_get_formats), (gst_play_bin_convert),
19952 (gst_play_bin_get_query_types), (gst_play_bin_query),
19954 * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
19955 (gst_stream_info_get_type), (gst_stream_info_class_init),
19956 (gst_stream_info_init), (gst_stream_info_new),
19957 (gst_stream_info_dispose), (gst_stream_info_set_property),
19958 (gst_stream_info_get_property):
19959 * gst/playback/gststreaminfo.h:
19960 * gst/playback/test.c: (gen_video_element), (gen_audio_element),
19962 * gst/playback/test2.c: (main):
19963 * gst/playback/test3.c: (update_scale), (main):
19964 More playbin fixes. Added README. Do better element filtering.
19965 Added base class to preroll media. Added test apps.
19967 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19969 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
19970 * ext/mpeg2dec/gstmpeg2dec.h:
19971 various debugging improvements. Reset stream to next picture
19972 instead of sequence header, otherwise seeks cannot work.
19974 2004-07-07 Wim Taymans <wim@fluendo.com>
19976 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
19977 (gst_video_box_class_init), (gst_video_box_set_property),
19978 (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
19979 Use pad_alloc where possible.
19981 2004-07-07 Wim Taymans <wim@fluendo.com>
19983 * sys/oss/gstosselement.c: (gst_osselement_reset),
19984 (gst_osselement_parse_caps):
19985 * sys/oss/gstosselement.h:
19986 * sys/oss/gstosssrc.c: (gst_osssrc_get):
19987 Fix offset on osssrc.
19989 2004-07-07 Wim Taymans <wim@fluendo.com>
19991 * ext/theora/theora.c: (plugin_init):
19992 * ext/theora/theoradec.c: (theora_dec_from_granulepos),
19993 (theora_dec_src_query), (theora_dec_chain):
19994 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
19995 (theora_enc_sink_link), (theora_buffer_from_packet),
19996 (theora_push_packet), (theora_enc_chain):
19997 Fix theora granulepos calculation.
19998 Fix overflow in duration/position calculation.
19999 Bump rank to PRIMARY for theoradec.
20000 Use granulepos of last packet to calculate position.
20001 Set keyframe flag on buffers when needed.
20003 2004-07-06 David Schleef <ds@schleef.org>
20005 * gst/playback/Makefile.am: 'test' in bin_PROGRAMS? Are you
20006 serious? (Fixed, obviously.)
20008 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
20012 added Czech translation (Miloslav Trmac)
20014 2004-07-05 Wim Taymans <wim@fluendo.com>
20016 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
20017 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
20018 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
20019 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20020 (close_link), (type_found), (gst_decode_bin_set_property),
20021 (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
20022 (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
20023 (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
20024 (gst_decode_bin_query), (plugin_init):
20025 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
20026 (gst_play_bin_class_init), (gst_play_bin_init),
20027 (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
20028 (get_video_element), (new_pad), (setup_source),
20029 (gst_play_bin_set_property), (gst_play_bin_get_property),
20030 (gst_play_bin_change_state), (gst_play_bin_add_element),
20031 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
20032 (gst_play_bin_send_event), (gst_play_bin_get_formats),
20033 (gst_play_bin_convert), (gst_play_bin_get_query_types),
20034 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
20035 * gst/playback/test.c: (main):
20036 More fixes, cleaned up playbin, make it use decodebin. Added
20037 threaded property to playbin.
20039 2004-07-05 Wim Taymans <wim@fluendo.com>
20042 * gst/playback/Makefile.am:
20043 * gst/playback/decodetest.c: (main):
20044 * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
20045 (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
20046 (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
20047 (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
20048 (close_link), (type_found), (gst_decode_bin_set_property),
20049 (gst_decode_bin_get_property), (gst_decode_bin_change_state),
20050 (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
20051 (gst_decode_bin_get_formats), (gst_decode_bin_convert),
20052 (gst_decode_bin_get_query_types), (gst_decode_bin_query),
20054 * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
20055 (gst_play_bin_class_init), (gst_play_bin_init),
20056 (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
20057 (collect_sink_pads), (find_compatibles), (close_pad_link),
20058 (try_to_link_1), (new_pad), (close_link), (type_found),
20059 (setup_source), (gst_play_bin_set_property),
20060 (gst_play_bin_get_property), (gst_play_bin_factory_filter),
20061 (compare_ranks), (gst_play_bin_collect_factories),
20062 (gst_play_bin_change_state), (gst_play_bin_add_element),
20063 (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
20064 (gst_play_bin_send_event), (gst_play_bin_get_formats),
20065 (gst_play_bin_convert), (gst_play_bin_get_query_types),
20066 (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
20067 * gst/playback/test.c: (main):
20068 Added some playback helper elements and some test apps, very alpha
20071 2004-07-04 Benjamin Otte <otte@gnome.org>
20073 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
20074 only restart audio when we indeed have an xrun to fix repeated
20075 xruns. Fix suggested by Giuliano Pochini.
20077 2004-07-03 David Schleef <ds@schleef.org>
20079 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
20080 call to gst_debug_log() if debugging is disabled (bug #145118)
20082 2004-07-03 Benjamin Otte <otte@gnome.org>
20084 * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
20085 use our own functions for restarting the alsa device.
20086 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
20087 I should apply patches myself - use MIN for the third argument, not
20088 the second, this fixes seeking
20090 2004-07-02 David Schleef <ds@schleef.org>
20092 * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
20093 (gst_flacdec_write): Actually, GST_PAD_CAPS() has nothing to
20096 2004-07-02 David Schleef <ds@schleef.org>
20098 * ext/flac/gstflacdec.c: (gst_flacdec_write): Set duration on
20099 output buffers. Fix logic mistake. (bug #144866)
20101 2004-07-02 David Schleef <ds@schleef.org>
20103 * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
20104 on X. (bug #144753)
20106 2004-07-02 David Schleef <ds@schleef.org>
20108 * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
20109 (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
20111 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
20112 (gst_osselement_rate_probe_check): Add another workaround for
20113 buggy drivers (bug #145336)
20115 2004-07-02 David Schleef <ds@schleef.org>
20117 * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
20118 Most systems don't have MSG_NOSIGNAL.
20120 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
20123 * gst-libs/gst/colorbalance/Makefile.am:
20124 * gst-libs/gst/mixer/Makefile.am:
20125 * gst-libs/gst/play/Makefile.am:
20126 * gst-libs/gst/tuner/Makefile.am:
20127 (hopefully) fix both install and dist and make error message useful.
20128 needs testing across automakes.
20130 2004-07-02 Benjamin Otte <otte@gnome.org>
20132 * ext/ogg/gstogg.c: (plugin_init):
20133 we require bytestream now
20134 * ext/ogg/gstoggdemux.c:
20135 huge diff to implement chain setup in a fast and generic way. This
20136 improves tag reading and startup of huge files (read: Theora videos)
20137 quite a bit. It probably contains bugs, too, so please test.
20138 Seeking is not improved to the fast method.
20140 2004-06-29 Wim Taymans <wim@fluendo.com>
20142 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
20143 * ext/ogg/gstoggmux.c:
20144 Fix memleak in oggdemux when running unconnected pads.
20145 doc update in mux, start working on keyframe mode.
20147 2004-06-29 Benjamin Otte <otte@gnome.org>
20149 * sys/oss/gstosssink.c:
20150 * sys/oss/gstosssrc.c:
20151 advertise correct template caps - we indeed do non-native endianness
20152 and 8bit audio has no endianness
20153 * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
20154 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
20155 avoid (wrong) duplications in getcaps function and return
20158 2004-06-29 Wim Taymans <wim@fluendo.com>
20160 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20161 (gst_multifdsink_class_init), (gst_multifdsink_add),
20162 (gst_multifdsink_remove), (gst_multifdsink_clear),
20163 (gst_multifdsink_client_remove),
20164 (gst_multifdsink_handle_client_read),
20165 (gst_multifdsink_client_queue_data),
20166 (gst_multifdsink_client_queue_caps),
20167 (gst_multifdsink_client_queue_buffer),
20168 (gst_multifdsink_handle_client_write),
20169 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20170 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
20171 (gst_multifdsink_init_send), (gst_multifdsink_close):
20172 Fix wrong GList iteration that could crash the server when
20173 more then 2 clients disconnect at the same time. Read all the
20174 pending commands in one batch to recover from command storms under
20177 2004-06-28 Wim Taymans <wim@fluendo.com>
20179 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
20180 (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
20181 (gst_videomixer_pad_set_property),
20182 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
20183 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
20184 (gst_videomixer_class_init), (gst_videomixer_init),
20185 (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
20186 (pad_zorder_compare), (gst_videomixer_sort_pads),
20187 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
20188 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
20189 (gst_videomixer_update_queues), (gst_videomixer_loop),
20191 Avoid divide by zero, choose masterpad as the pad with the highest
20194 2004-06-27 Julien Moutte <julien@moutte.net>
20196 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
20197 (gst_ximagesink_xwindow_new):
20198 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
20199 (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
20200 function directly. We might want to call it from somewhere else one day.
20202 2004-06-27 Julien Moutte <julien@moutte.net>
20204 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
20205 (gst_ximagesink_xwindow_new):
20206 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
20207 (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
20208 window decorations.
20210 2004-06-27 Wim Taymans <wim@fluendo.com>
20212 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
20213 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
20214 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
20215 (gst_dvdec_set_property), (gst_dvdec_get_property):
20216 * ext/dv/gstdvdec.h:
20217 Implement drop_factor property to lower the framerate with
20220 2004-06-27 Thomas Vander Stichele <thomas at apestaart dot org>
20222 * gst-libs/gst/colorbalance/Makefile.am:
20223 * gst-libs/gst/mixer/Makefile.am:
20224 * gst-libs/gst/play/Makefile.am:
20225 * gst-libs/gst/tuner/Makefile.am:
20226 unbreak Company's fix that didn't install the -enum.h files
20228 2004-06-27 Wim Taymans <wim@fluendo.com>
20230 * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
20231 (gst_dvdec_change_state):
20232 * ext/dv/gstdvdec.h:
20233 Fix timestamp, duration and offset of the buffers.
20235 2004-06-27 Wim Taymans <wim@fluendo.com>
20237 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20238 (gst_multifdsink_class_init), (gst_multifdsink_add),
20239 (gst_multifdsink_remove), (gst_multifdsink_clear),
20240 (gst_multifdsink_client_remove),
20241 (gst_multifdsink_handle_client_read),
20242 (gst_multifdsink_client_queue_data),
20243 (gst_multifdsink_client_queue_caps),
20244 (gst_multifdsink_client_queue_buffer),
20245 (gst_multifdsink_handle_client_write),
20246 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20247 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
20248 (gst_multifdsink_init_send), (gst_multifdsink_close):
20249 * gst/tcp/gstmultifdsink.h:
20250 * gst/tcp/gsttcpserversink.c:
20251 (gst_tcpserversink_handle_server_read),
20252 (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
20253 More multifdsink fixes, more recovery policy fixes.
20254 Removed stupid g_print
20256 2004-06-26 Wim Taymans <wim@fluendo.com>
20258 * gst/tcp/Makefile.am:
20259 * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
20260 (gst_multifdsink_get_type), (gst_multifdsink_base_init),
20261 (gst_multifdsink_class_init), (gst_multifdsink_init),
20262 (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
20263 (gst_multifdsink_handle_client_read),
20264 (gst_multifdsink_client_queue_data),
20265 (gst_multifdsink_client_queue_caps),
20266 (gst_multifdsink_client_queue_buffer),
20267 (gst_multifdsink_handle_client_write),
20268 (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
20269 (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
20270 (gst_multifdsink_chain), (gst_multifdsink_set_property),
20271 (gst_multifdsink_get_property), (gst_multifdsink_init_send),
20272 (gst_multifdsink_close), (gst_multifdsink_change_state):
20273 * gst/tcp/gstmultifdsink.h:
20274 * gst/tcp/gsttcpplugin.c: (plugin_init):
20275 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
20276 (gst_tcpserversink_class_init), (gst_tcpserversink_init),
20277 (gst_tcpserversink_handle_server_read),
20278 (gst_tcpserversink_handle_select),
20279 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
20280 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
20281 * gst/tcp/gsttcpserversink.h:
20282 Added multifdsink, made tcpserversink a subclass of fdsink, removed
20283 one of the locks, added recovery policy to multifdsink.
20285 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
20287 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20288 fix decision for when getting frames with same timestamp
20289 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
20290 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
20291 (gst_v4lsrc_get_property):
20292 * sys/v4l/gstv4lsrc.h:
20293 add latency offset property
20295 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
20297 * gst/videorate/gstvideorate.c: (gst_videorate_chain),
20299 fix debugging. add category.
20301 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
20303 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
20306 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
20308 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
20309 (gst_alsa_src_get_time), (gst_alsa_src_loop),
20310 (gst_alsa_src_change_state):
20311 return a time that is in sync with the element's processing
20313 2004-06-25 Wim Taymans <wim@fluendo.com>
20315 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
20316 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
20317 (gst_tcpserversink_client_remove),
20318 (gst_tcpserversink_handle_client_read),
20319 (gst_tcpserversink_client_queue_data),
20320 (gst_tcpserversink_client_queue_caps),
20321 (gst_tcpserversink_client_queue_buffer),
20322 (gst_tcpserversink_handle_client_write),
20323 (gst_tcpserversink_queue_buffer),
20324 (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
20325 (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
20326 (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
20327 (gst_tcpserversink_close):
20328 * gst/tcp/gsttcpserversink.h:
20329 Serversink rewrite. Really do non blocking writes to clients and
20330 maintain an internal queue to handle slower clients while not
20331 disturbing fast clients.
20333 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
20335 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
20336 better debug, don't override OFFSET and OFFSET_END
20338 2004-06-25 Iain <iain@prettypeople.org>
20340 * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
20341 name=source for the wavparse pipeline.
20343 2004-06-24 Johan Dahlin <johan@gnome.org>
20345 * ext/theora/theoraenc.c (theora_enc_chain): Call
20346 gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
20347 streamheader caps are set correctly.
20349 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
20351 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
20352 (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
20353 respect minimum bitrate; same could be done for max bitrate
20355 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
20357 * ext/vorbis/vorbisenc.c: (raw_caps_factory),
20358 (gst_vorbisenc_setup):
20359 fix sample rate range
20361 2004-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
20363 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
20364 (gst_oggvorbisenc_setup):
20365 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
20366 (gst_vorbisenc_setup):
20367 resolve ambiguities in code and description
20369 2004-06-24 Wim Taymans <wim@fluendo.com>
20371 * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
20372 * ext/alsa/gstalsa.h:
20373 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
20374 (gst_alsa_src_update_avail), (gst_alsa_src_loop):
20375 Use alsa trigger_tstamp to get the timestamp of the first
20376 sample in the buffer for more precise sync. Some cleanups.
20378 2004-06-24 Wim Taymans <wim@fluendo.com>
20380 * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
20381 (gst_audiorate_init), (gst_audiorate_chain),
20382 (gst_audiorate_set_property), (gst_audiorate_get_property):
20383 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
20384 (gst_videorate_chain):
20385 Added some logging, fixed an overflow bug in videorate.
20387 2004-06-24 Benjamin Otte <otte@gnome.org>
20389 * ext/kio/Makefile.am:
20390 fix for builddir != srcdir and distcheck
20392 2004-06-24 Benjamin Otte <otte@gnome.org>
20394 * gst-libs/gst/colorbalance/Makefile.am:
20395 * gst-libs/gst/mixer/Makefile.am:
20396 * gst-libs/gst/play/Makefile.am:
20397 * gst-libs/gst/tuner/Makefile.am:
20398 * gst/tcp/Makefile.am:
20399 * sys/dxr3/Makefile.am:
20400 don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
20402 Also add all *.list files that were missing.
20404 add a distcheck hook to ensure the above doesn't happen again.
20406 2004-06-23 David I. Lehn <dlehn@users.sourceforge.net>
20408 * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
20410 2004-06-23 Colin Walters <walters@redhat.com>
20412 * m4/Makefile.am: Distribute gst-fionread.m4.
20414 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
20416 * configure.ac: back to dev
20418 2004-06-23 Wim Taymans <wim@fluendo.com>
20420 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
20421 (gst_alsa_xrun_recovery):
20422 * ext/alsa/gstalsa.h:
20423 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
20424 (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
20425 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
20426 (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
20427 (gst_alsa_src_loop):
20428 Add clock to alsasrc. Take new capture timestamp when
20429 restarting after an overrun. Split up some functions between
20430 alsasrc and alsasink.
20432 === release 0.8.2 ===
20434 2004-06-23 Thomas Vander Stichele <thomas at apestaart dot org>
20436 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
20437 (gst_alsa_change_state), (gst_alsa_update_avail),
20438 (gst_alsa_xrun_recovery):
20439 * ext/alsa/gstalsa.h:
20440 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
20441 merge back changes from release
20443 2004-06-23 Wim Taymans <wim@fluendo.com>
20445 * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
20446 (gst_audiorate_init), (gst_audiorate_chain),
20447 (gst_audiorate_set_property), (gst_audiorate_get_property):
20448 Implement sample dropping and notify
20450 2004-06-22 Wim Taymans <wim@fluendo.com>
20452 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
20453 (theora_enc_sink_link), (theora_buffer_from_packet),
20454 (theora_push_packet), (theora_enc_chain):
20455 Some cleanups, make sure the timestamps are correct.
20457 2004-06-22 Wim Taymans <wim@fluendo.com>
20459 * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
20460 (gst_alsa_change_state), (gst_alsa_update_avail),
20461 (gst_alsa_xrun_recovery):
20462 * ext/alsa/gstalsa.h:
20463 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
20464 Cleanups, take queued samples into account when reporting
20467 2004-06-22 Wim Taymans <wim@fluendo.com>
20469 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
20470 (gst_videorate_init):
20471 Initialize the property as well.
20473 2004-06-22 Wim Taymans <wim@fluendo.com>
20475 * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
20476 (gst_videorate_init), (gst_videorate_chain),
20477 (gst_videorate_set_property), (gst_videorate_get_property):
20478 Add property to make videorate silent.
20479 Add property to prefer new frames over old ones.
20481 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20483 * sys/osxvideo/Makefile.am:
20484 Workaround so that the osxvideo .so file gets linked with the
20485 Cocoa, OpenGL and QuickTime frameworks
20487 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20489 * sys/osxaudio/Makefile.am:
20490 Workaround so that the osxaudio .so file gets linked with the
20491 CoreAudio framework
20493 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20496 Whoops, my fault...fixed build issues
20498 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20501 Add objective-c support if running in Darwin/Mac OS X
20504 * sys/osxvideo/Makefile.am:
20505 * sys/osxvideo/osxvideosink.h:
20506 * sys/osxvideo/osxvideosink.m:
20507 * sys/osxvideo/cocoawindow.h:
20508 * sys/osxvideo/cocoawindow.m:
20509 Add osxvideosink, a cocoa-based osx video sink
20512 2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
20513 * ext/dvdnav/gst-dvd:
20514 Grab the gconf key from the right spot
20515 * gst/debug/gstnavseek.c: (gst_navseek_init),
20516 (gst_navseek_segseek), (gst_navseek_handle_src_event),
20517 (gst_navseek_chain):
20518 * gst/debug/gstnavseek.h:
20519 Add 's', 'e' and 'l' keypresses to navseek to define the start,end
20520 and loop parameters of a segment seek.
20521 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
20522 (gst_videotestsrc_get_event_masks),
20523 (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
20524 * gst/videotestsrc/gstvideotestsrc.h:
20525 Add seeking support to videotestsrc
20526 Initialise the timestamp_offset variable.
20528 2004-06-18 Wim Taymans <wim@fluendo.com>
20530 * ext/sidplay/gstsiddec.cc:
20531 Fix negotiation and set correct end offset.
20533 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
20535 * configure.ac: branch and prerelease
20537 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
20539 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
20540 (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
20541 (gst_tcpclientsrc_init_receive):
20542 * gst/tcp/gsttcpclientsrc.h:
20543 read caps when connecting to server for GDP so we set them correctly
20545 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
20547 * gst/videorate/gstvideorate.c: (gst_videorate_chain):
20548 notify drops and duplicates
20549 * gst/videoscale/videoscale.c: (videoscale_get_structure):
20550 no good reason to limit ourselves to 100x100
20552 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
20554 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
20555 (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
20556 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
20557 (gst_v4lsrc_get_property):
20558 * sys/v4l/gstv4lsrc.h:
20559 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
20560 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
20561 (gst_v4l_set_audio):
20562 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
20563 (gst_v4lsrc_try_capture):
20564 * sys/v4l/v4lsrc_calls.h:
20565 change try_palette to more general try_capture
20566 add autoprobe option so we can turn off autoprobing
20569 2004-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
20573 * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
20574 (gst_ximagesink_class_init):
20575 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
20576 (gst_xvimagesink_class_init):
20577 run them as finalize, not dispose, since dispose can be invoked
20580 2004-06-17 Wim Taymans <wim@fluendo.com>
20582 * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
20583 (gst_alsa_get_time), (gst_alsa_xrun_recovery):
20584 * ext/alsa/gstalsa.h:
20585 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
20586 * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
20587 (gst_alsa_src_change_state):
20588 * ext/alsa/gstalsasrc.h:
20589 Make the xrun code timestamp and offset the buffers correctly.
20590 moved the clock to the base class, use alsa methods to get time.
20591 Do correct timestamping on outgoing buffers.
20593 2004-06-17 Wim Taymans <wim@fluendo.com>
20595 * gst/audiorate/Makefile.am:
20596 * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
20597 (gst_audiorate_base_init), (gst_audiorate_class_init),
20598 (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
20599 (gst_audiorate_set_property), (gst_audiorate_get_property),
20600 (gst_audiorate_change_state), (plugin_init):
20601 Added an audiorate converter that fills in gaps.
20603 2004-06-17 Johan Dahlin <johan@gnome.org>
20605 * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
20607 2004-06-16 Wim Taymans <wim@fluendo.com>
20609 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
20610 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
20611 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
20612 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
20613 (gst_v4lsrc_get_property):
20614 * sys/v4l/gstv4lsrc.h:
20615 Added a copy mode to v4lsrc where it will output a copied version
20616 of its internal hardware buffer.
20617 Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
20620 2004-06-16 Wim Taymans <wim@fluendo.com>
20622 * sys/oss/gstosssrc.c: (gst_osssrc_get):
20625 2004-06-16 Wim Taymans <wim@fluendo.com>
20627 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
20628 (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
20629 (gst_v4lsrc_get), (gst_v4lsrc_set_property),
20630 (gst_v4lsrc_get_property):
20631 * sys/v4l/gstv4lsrc.h:
20632 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
20633 Added a sync mode enum property to control v4lsrc timestamp method
20634 Removed the use-fixed-fps property and moved functionality in
20636 Don't error on an error value from v4l-conf, it might not always
20639 2004-06-16 Wim Taymans <wim@fluendo.com>
20641 * gst/videorate/Makefile.am:
20642 * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
20643 (gst_videorate_base_init), (gst_videorate_class_init),
20644 (gst_videorate_getcaps), (gst_videorate_link),
20645 (gst_videorate_init), (gst_videorate_chain),
20646 (gst_videorate_set_property), (gst_videorate_get_property),
20647 (gst_videorate_change_state), (plugin_init):
20648 Added a video timestamp corrector.
20650 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20652 fixed a potential leak with previous commit
20654 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
20656 2004-06-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20658 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
20659 Added missing refcount, fixes bug #144425
20660 Cheers Tim for finding the bug
20662 2004-06-15 Thomas Vander Stichele <thomas at apestaart dot org>
20664 * sys/v4l/gstv4l.c: (plugin_init):
20665 * sys/v4l/gstv4lcolorbalance.c:
20666 * sys/v4l/gstv4lcolorbalance.h:
20667 * sys/v4l/gstv4lelement.c:
20668 * sys/v4l/gstv4lelement.h:
20669 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
20670 * sys/v4l/gstv4lmjpegsink.h:
20671 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
20672 * sys/v4l/gstv4lmjpegsrc.h:
20673 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
20674 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
20675 (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
20676 * sys/v4l/gstv4lsrc.h:
20677 * sys/v4l/gstv4ltuner.c:
20678 * sys/v4l/gstv4ltuner.h:
20679 * sys/v4l/gstv4lxoverlay.c:
20680 * sys/v4l/gstv4lxoverlay.h:
20681 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
20682 (gst_v4l_set_window), (gst_v4l_enable_overlay):
20683 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
20684 (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
20685 (gst_v4l_set_audio):
20686 * sys/v4l/v4l_calls.h:
20687 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
20688 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
20689 (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
20690 (gst_v4lmjpegsink_playback_init),
20691 (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
20692 (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
20693 (gst_v4lmjpegsink_playback_stop),
20694 (gst_v4lmjpegsink_playback_deinit):
20695 * sys/v4l/v4lmjpegsink_calls.h:
20696 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
20697 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
20698 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
20699 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
20700 (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
20701 (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
20702 * sys/v4l/v4lmjpegsrc_calls.h:
20703 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
20704 (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
20705 (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
20706 (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
20707 (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
20708 (gst_v4lsrc_try_palette):
20709 * sys/v4l/v4lsrc_calls.h:
20710 bunch of paranoia cleanups
20712 2004-06-14 David Schleef <ds@schleef.org>
20714 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
20715 (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
20716 Send discont events and change timestamps appropriately when
20717 we get a seek event. (bug #144240)
20718 * ext/cdparanoia/gstcdparanoia.h:
20720 2004-06-14 Benjamin Otte <otte@gnome.org>
20722 * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
20723 snd_pcm_hw_params_set_rate since the latter fails for no good
20724 reason on some setups.
20726 2004-06-14 David Schleef <ds@schleef.org>
20728 * gst/volume/demo.c: (value_changed_callback): exp10() is not
20729 standard. Thank you for playing.
20731 2004-06-14 Wim Taymans <wim@fluendo.com>
20733 * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
20734 Patch 1.3 broke the ordering of the colorspace info and
20735 made the plugin basically work by coincidence, reordered
20738 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
20740 * ext/lame/gstlame.c:
20741 * ext/mad/gstmad.c:
20742 sync caps. Make sure mad can only output a list of rates, not
20743 a full range. In the future, have three caps lists for each of the
20744 mpeg versions. Change mpegversion to a double as well.
20746 2004-06-14 Thomas Vander Stichele <thomas at apestaart dot org>
20748 * gst/volume/.cvsignore:
20749 * gst/volume/Makefile.am:
20750 * gst/volume/demo.c: (value_changed_callback), (idler),
20751 (setup_gui), (main):
20752 added small demo app
20754 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
20755 * ext/esd/esdsink.c: (gst_esdsink_change_state):
20756 * ext/esd/esdsink.h:
20757 Close the esd connection on pause, because esd will just wait -
20758 blocking all other esd clients indefinitely.
20760 2004-06-12 Christophe Fergeau <teuf@gnome.org>
20762 * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
20763 previous commit with GST_DEBUG
20765 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
20768 add a header check for a dvdread header in dvdnav. Fixes #133002
20770 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20772 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
20773 * gst/tcp/gsttcpclientsink.h:
20774 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
20775 * gst/tcp/gsttcpclientsrc.h:
20776 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
20777 (gst_tcpserversink_handle_server_read),
20778 (gst_tcpserversink_init_send):
20779 * gst/tcp/gsttcpserversink.h:
20780 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
20781 * gst/tcp/gsttcpserversrc.h:
20782 Modified the tcp plugins so they are portable (IPv4,IPv6, any future
20785 2004-06-12 Zaheer Abbas Merali <zaheerabbas at merali dot org>
20788 Added ogg library so that OSX detects libtheora properly
20790 2004-06-11 Wim Taymans <wim@fluendo.com>
20792 * ext/theora/theoradec.c: (theora_dec_chain),
20793 (theora_dec_change_state):
20794 Don't try to decode frames before we received a keyframe.
20796 2004-06-11 Wim Taymans <wim@fluendo.com>
20798 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20799 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
20800 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
20801 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
20802 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
20803 Added property to set the maximum delay of a page.
20805 2004-06-10 Wim Taymans <wim@fluendo.com>
20807 * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
20808 (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
20809 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
20810 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
20811 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
20812 Added max-delay property to control the maximum amount
20813 of data to put in one page.
20815 2004-06-10 Wim Taymans <wim@fluendo.com>
20817 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
20818 (gst_theora_enc_init), (theora_enc_sink_link),
20819 (theora_buffer_from_packet), (theora_enc_set_property),
20820 (theora_enc_get_property):
20821 Set duration on encoded buffer, added some more properties
20823 2004-06-10 Wim Taymans <wim@fluendo.com>
20825 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
20826 (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
20827 (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
20828 * ext/theora/theoraenc.c: (theora_enc_chain):
20829 Fix refcounting bugs
20831 2004-06-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
20833 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
20834 (gst_asf_demux_loop), (gst_asf_demux_process_file),
20835 (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
20836 (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
20837 (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
20838 (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
20839 (gst_asf_demux_change_state):
20840 * gst/asfdemux/gstasfdemux.h:
20841 You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
20842 feels like. I think we should set a new requirement for demuxers
20843 from now on to implement sane loop functions, data loops, query
20844 and seek functions before first commit into CVS. And this commit
20845 fixes all of the above.
20847 2004-06-10 Christophe Fergeau <teuf@gnome.org>
20849 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
20850 vorbis comments are properly encoded in UTF-8 before adding them
20853 2004-06-09 Benjamin Otte <otte@gnome.org>
20855 * ext/alsa/gstalsa.c: (add_channels):
20856 handle min <= max correctly
20857 * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
20858 (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
20859 add fixation functions so we fixate correctly. No preferring of alaw
20860 anymore because it's the first structure.
20861 * ext/alsa/gstalsa.h:
20862 * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
20863 (gst_alsa_hw_params_dump):
20864 add functions to ease debugging in alsalib
20865 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
20866 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
20867 (gst_alsa_start_audio):
20868 only specify hw params if we really setup a format (fixes #134007 -
20869 or at least works around it)
20871 2004-06-09 Wim Taymans <wim@fluendo.com>
20873 * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
20874 (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
20875 (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
20876 (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
20877 (gst_ogg_mux_loop):
20878 Use stream caps to setup the initial pages in the ogg stream.
20879 Correctly set the streamheader caps on the srcpad.
20881 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
20883 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
20884 (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
20885 (gst_v4lsrc_getcaps):
20886 * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
20887 (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
20888 add querying of fps lists for webcams. Negotiating to a framerate
20891 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20893 * ext/theora/theoraenc.c: (theora_buffer_from_packet),
20894 (theora_push_buffer), (theora_push_packet),
20895 (theora_set_header_on_caps), (theora_enc_chain):
20896 mark buffers and put on streamheader, raw theora streaming
20897 now works too, whee
20899 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20901 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
20902 (gst_tcp_gdp_read_caps):
20903 do a looping read for caps and GDP headers too
20905 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20907 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
20908 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
20909 return EOS instead of NULL in _get
20911 2004-06-08 Wim Taymans <wim@fluendo.com>
20913 * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
20914 (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
20915 (gst_tcp_gdp_write_caps):
20916 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
20917 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
20918 (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
20921 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20923 * ext/vorbis/Makefile.am:
20924 * ext/vorbis/vorbis.c: (plugin_init):
20925 * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
20926 (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
20927 (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
20928 (vorbis_parse_change_state):
20929 * ext/vorbis/vorbisparse.h:
20930 adding a vorbisparse element that marks the buffers, streaming
20931 raw vorbis using GDP now works, whee
20933 2004-06-08 Wim Taymans <wim@fluendo.com>
20935 * ext/jpeg/Makefile.am:
20937 * ext/jpeg/gstjpeg.c: (plugin_init):
20938 * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
20939 (gst_smokedec_base_init), (gst_smokedec_class_init),
20940 (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
20941 * ext/jpeg/gstsmokedec.h:
20942 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
20943 (gst_smokeenc_base_init), (gst_smokeenc_class_init),
20944 (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
20945 (gst_smokeenc_resync), (gst_smokeenc_chain),
20946 (gst_smokeenc_set_property), (gst_smokeenc_get_property):
20947 * ext/jpeg/gstsmokeenc.h:
20948 * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
20949 (smokecodec_flush_destination), (smokecodec_term_destination),
20950 (smokecodec_init_source), (smokecodec_fill_input_buffer),
20951 (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
20952 (smokecodec_term_source), (smokecodec_encode_new),
20953 (smokecodec_decode_new), (smokecodec_info_free),
20954 (smokecodec_set_quality), (smokecodec_get_quality),
20955 (smokecodec_set_threshold), (smokecodec_get_threshold),
20956 (smokecodec_set_bitrate), (smokecodec_get_bitrate),
20957 (find_best_size), (abs_diff), (put), (smokecodec_encode),
20958 (smokecodec_parse_header), (smokecodec_decode):
20959 * ext/jpeg/smokecodec.h:
20960 Added a new simple jpeg based codec
20962 2004-06-08 Wim Taymans <wim@fluendo.com>
20964 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
20965 (gst_multipart_mux_loop):
20968 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20970 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
20971 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
20972 (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
20973 (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
20974 (gst_tcpserversink_init_send), (gst_tcpserversink_close):
20975 * gst/tcp/gsttcpserversink.h:
20976 take streamheader into account
20978 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20980 * gst/level/Makefile.am:
20981 * gst/level/gstlevel.c: (gst_level_class_init):
20982 clean up marshal generation
20984 2004-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
20986 * gst/tcp/Makefile.am:
20987 * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
20988 (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
20989 (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
20990 * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
20991 (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
20992 (gst_tcpclientsrc_get_property):
20993 * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
20994 (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
20995 (gst_tcpserversink_handle_client_read),
20996 (gst_tcpserversink_handle_client_write),
20997 (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
20998 * gst/tcp/gsttcpserversink.h:
20999 add signals client-added and client-removed
21000 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
21001 (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
21002 (gst_tcpserversrc_get_property):
21003 uniformized, change default protocol to NONE
21004 * gst/tcp/gsttcp-marshal.list: added
21005 2004-06-07 Benjamin Otte <otte@gnome.org>
21007 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
21008 handle discont events if they happen before caps nego
21010 2004-06-07 Wim Taymans <wim@fluendo.com>
21012 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
21013 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
21014 (gst_multipart_demux_plugin_init):
21015 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
21016 (gst_multipart_mux_init), (gst_multipart_mux_loop),
21017 (gst_multipart_mux_change_state):
21018 Small updates, fix a memleak
21020 2004-06-07 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21022 * configure.ac: OSS portability
21023 * ext/arts/gst_arts.c: idem
21024 * sys/oss/gstosselement.c: idem
21025 * sys/oss/gstossmixer.c: idem
21026 * sys/oss/gstosssink.c: idem
21027 * sys/oss/gstosssrc.c: idem
21028 * sys/oss/oss_probe.c: idem
21029 - check for soundcard.h in different places for some BSD
21031 2004-06-07 Jan Schmidt <thaytan@mad.scientist.com>
21034 Add me to the authors file
21036 Increase the libdv requirement to >= version 0.100
21037 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
21038 (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
21039 (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
21040 * ext/dv/gstdvdec.h:
21041 Add support for the new_media flag when sending DISCONT events
21042 Make the querying work when video pad is not linked
21044 2004-06-07 Tim-Philipp M??ller <t.i.m@zen.co.uk>
21046 reviewed by Benjamin Otte <otte@gnome.org>
21048 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
21049 create a NULL-initialized array of pads, so we don't think they
21050 exist already. (fixes #143130)
21052 2004-06-07 Benjamin Otte <otte@gnome.org>
21054 * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
21055 (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
21056 (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
21057 don't use // coments
21059 2004-06-07 Benjamin Otte <otte@gnome.org>
21061 * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
21062 cast to GstClockTime to get higher granularity
21063 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
21064 use gst_element_set_time_delay to get the exact time
21065 * ext/mad/gstmad.c: (gst_mad_chain):
21066 use the negotiated rate instead of the current frame's rate which
21067 might be wrong because of bit errors. This avoids emitting totally
21068 bogus timestamps and screwing sync.
21071 2004-06-07 Tim-Philipp M??ller <t.i.m@zen.co.uk>
21073 reviewed by Benjamin Otte <otte@gnome.org>
21075 * gst/adder/gstadder.c: (gst_adder_loop):
21076 properly error out when no negotiation has happened yet. (fixes
21079 2004-06-06 Benjamin Otte <otte@gnome.org>
21081 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
21082 forward correctly transformed offset in discont events. Based on
21083 patch by Arwed v. Merkatz. (fixes #142851)
21085 2004-06-06 David Schleef <ds@schleef.org>
21087 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
21088 G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS. Should fix compile
21089 problems on several systems.
21091 2004-06-06 Benjamin Otte <otte@gnome.org>
21093 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
21094 use explicit caps on the srcpad
21095 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
21096 properly error out if caps couldn't be set (fixes #142764)
21098 2004-06-06 Benjamin Otte <otte@gnome.org>
21100 * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
21101 (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
21102 (gst_alsa_start_audio):
21103 - don't call set_periods_integer anymore, it breaks the
21104 configuration randomly
21105 - call snd_pcm_hw_params_set_access directly instead of using masks
21106 - don't fail if the sw_params can't be set, just use the default
21107 params and hope it works. Alsalib has weird issues when you touch
21108 sw_params and does no proper error reporting about what failed.
21109 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
21110 (gst_alsa_close_audio):
21111 make our alsa debugging go via gst debugging and not conditionally
21113 * ext/alsa/gstalsa.h:
21114 add ALSA_DEBUG_FLUSH macro
21115 * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
21117 wrap alsa errors to be printed via the gst debugging system and not
21120 2004-06-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
21122 * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
21123 (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
21124 (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
21125 (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
21126 (qtdemux_parse_trak):
21127 * gst/qtdemux/qtdemux.h:
21128 Bitch. Also known as seeking, querying & co.
21129 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
21130 (gst_osssink_change_state):
21131 * sys/oss/gstosssink.h:
21132 Resyncing is for weenies, this hack is no longer needed and was
21133 broken anyway (since it - unintendedly - always leaves resync to
21136 2004-06-05 Andrew Turner <zxombie@hotpop.com>
21138 * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
21139 * gst/tcp/gsttcpclientsrc.h: idem
21140 - define MSG_NOSIGNAL if not done
21141 - include unistd.h for off_t
21144 2004-06-05 Benjamin Otte <otte@gnome.org>
21147 * ext/kio/Makefile.am:
21148 check for qt's moc preprocessor explicitly and use it
21150 2004-06-03 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
21152 * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
21153 don't get a signal for EPIPE on socket writes
21154 (somebody check if this works on other platforms)
21156 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
21158 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
21159 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
21160 check error condition on available samples correctly
21162 2004-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
21164 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
21166 * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
21167 (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
21168 * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
21169 (gst_tcpserversrc_gdp_read_header):
21170 use ssize_t over size_t since the former is signed and thus the
21171 check for error codes can work
21173 2004-06-02 Wim Taymans <wim@fluendo.com>
21177 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
21178 (gst_multipart_mux_loop):
21181 2004-06-02 Wim Taymans <wim@fluendo.com>
21183 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
21184 (gst_multipart_mux_init), (gst_multipart_mux_loop),
21185 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
21186 (gst_multipart_mux_change_state):
21187 Added configurable boundary specifier, added the value as a
21188 caps field as well.
21190 2004-06-02 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21192 * gst/tcp/gsttcp.c:
21193 * gst/tcp/gsttcpclientsrc.c:
21194 * gst/tcp/gsttcpclientsrc.h:
21195 * gst/tcp/gsttcpserversrc.c:
21196 - portability fix, to compile on OSX
21199 * sys/osxaudio/gstosxaudioelement.c:
21200 * sys/osxaudio/gstosxaudiosink.c:
21201 * sys/osxaudio/gstosxaudiosrc.c:
21202 - compilation warnings on OSX
21205 2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21207 * ext/vorbis/vorbisdec.c : sign warning fixes
21209 * gst-libs/gst/mixer/mixertrack.c :
21210 do no use defines which are glib 2.4 specific
21212 2004-06-01 Christophe Fergeau <teuf@gnome.org>
21214 * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
21215 buffer since libflac doesn't expect it (reports a sync error when
21216 it encounters that)
21219 2004-06-01 Owen Fraser-Green <owen@discobabe.net>
21221 * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
21222 * gst-libs/gst/mixer/mixertrack.c:
21223 (gst_mixer_track_get_property), (get_mixer_track_init),
21224 (get_mixer_track_get_property): Added property accessors
21225 * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
21226 * gst-libs/gst/mixer/mixeroptions.c:
21227 (gst_mixer_options_get_values): Added
21228 * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
21229 * gst-libs/gst/mixer/mixer.c: Fixed comment
21232 2004-06-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
21234 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
21235 improve error messages on open
21238 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
21240 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
21241 check if v4l-conf is in path
21243 2004-06-01 Thomas Vander Stichele <thomas at apestaart dot org>
21245 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
21246 change assert to a more readable error message
21248 2004-05-31 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21250 * gst-libs/gst/tuner/tunerchannel.h:
21251 - add a freq_multiplicator field to make the conversion
21252 between internal frequency unit and Hz
21253 * sys/v4l/gstv4lelement.c:
21254 * sys/v4l2/gstv4l2element.c:
21255 - change default video device to /dev/video0
21256 * sys/v4l/v4l_calls.c:
21257 * sys/v4l2/v4l2_calls.c:
21258 - we only expose frequency to the user in Hz instead of
21259 bastard v4lX unit (either 62.5kHz or 62.5Hz)
21261 2004-05-31 Jan Schmidt <thaytan@mad.scientist.com>
21262 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
21263 Initialise b_o_s and e_o_s variables
21264 * gst-libs/gst/riff/riff-media.c:
21265 (gst_riff_create_video_caps_with_data):
21266 Add some unusual fourcc's from mplayer avi's
21267 * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
21268 Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
21271 2004-05-28 Wim Taymans <wim@fluendo.com>
21274 * gst/alpha/Makefile.am:
21275 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
21276 (gst_alpha_get_type), (gst_alpha_base_init),
21277 (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
21278 (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
21279 (gst_alpha_chroma_key), (gst_alpha_chain),
21280 (gst_alpha_change_state), (plugin_init):
21281 A plugin to add an alpha channel to I420 video. Can optionally do
21283 * gst/multipart/Makefile.am:
21284 * gst/multipart/multipart.c: (plugin_init):
21285 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
21286 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
21287 (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
21288 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
21289 (gst_multipart_demux_change_state),
21290 (gst_multipart_demux_plugin_init):
21291 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
21292 (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
21293 (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
21294 (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
21295 (gst_multipart_mux_pad_unlink),
21296 (gst_multipart_mux_request_new_pad),
21297 (gst_multipart_mux_handle_src_event),
21298 (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
21299 (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
21300 (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
21301 (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
21302 A Multipart demuxer/muxer. Not sure if it violates specs. Used to
21303 send multipart jpeg images to a browser.
21304 * gst/videobox/Makefile.am:
21305 * gst/videobox/README:
21306 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
21307 (gst_video_box_get_type), (gst_video_box_base_init),
21308 (gst_video_box_class_init), (gst_video_box_init),
21309 (gst_video_box_set_property), (gst_video_box_get_property),
21310 (gst_video_box_sink_link), (gst_video_box_i420),
21311 (gst_video_box_ayuv), (gst_video_box_chain),
21312 (gst_video_box_change_state), (plugin_init):
21313 Crops or adds borders around an image. can do alpha channel
21315 * gst/videomixer/Makefile.am:
21316 * gst/videomixer/README:
21317 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21318 (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
21319 (gst_videomixer_pad_get_sink_event_masks),
21320 (gst_videomixer_pad_get_property),
21321 (gst_videomixer_pad_set_property),
21322 (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
21323 (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
21324 (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
21325 (gst_videomixer_base_init), (gst_videomixer_class_init),
21326 (gst_videomixer_init), (gst_videomixer_request_new_pad),
21327 (gst_videomixer_handle_src_event),
21328 (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
21329 (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
21330 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21331 (gst_videomixer_loop), (gst_videomixer_get_property),
21332 (gst_videomixer_set_property), (gst_videomixer_change_state),
21334 Generic video mixer plugin, can handle multiple inputs all with
21335 different framerates and video sizes. Is fully alpha channel
21338 2004-05-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
21340 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
21341 Select first track as master track. Not sure how else to handle
21343 * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
21344 Discard discont events. Should fix #142962.
21346 2004-05-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
21348 * ext/alsa/Makefile.am:
21349 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
21350 (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
21351 (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
21352 (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
21353 (gst_alsa_mixer_get_option):
21354 * ext/alsa/gstalsamixer.h:
21355 * ext/alsa/gstalsamixeroptions.c:
21356 (gst_alsa_mixer_options_get_type),
21357 (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
21358 (gst_alsa_mixer_options_new):
21359 * ext/alsa/gstalsamixeroptions.h:
21360 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
21361 * ext/alsa/gstalsamixertrack.h:
21362 Add enumerations (as GstMixerOptions). Make correct distinction
21363 between input/output tracks. Add capture/playback private flag.
21364 Use flag to decide on whether to set capture or playback volumes
21365 or switches. Use playback and record switches.
21366 * gst-libs/gst/mixer/Makefile.am:
21367 * gst-libs/gst/mixer/mixer-marshal.list:
21368 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
21369 (gst_mixer_set_option), (gst_mixer_get_option),
21370 (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
21371 (gst_mixer_volume_changed), (gst_mixer_option_changed):
21372 * gst-libs/gst/mixer/mixer.h:
21373 * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
21374 (gst_mixer_options_class_init), (gst_mixer_options_init),
21375 (gst_mixer_options_dispose):
21376 * gst-libs/gst/mixer/mixeroptions.h:
21377 Add GstMixerOptions.
21378 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
21379 Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
21380 broken device detection on computers with multiple OSS sound
21383 2004-05-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
21385 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
21386 fixate nicely even when the peer is not negotiating
21388 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
21390 * gst/audioconvert/gstaudioconvert.c:
21391 (gst_audio_convert_parse_caps):
21392 make sure we don't allow depth > width
21393 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
21394 fixate endianness to G_BYTE_ORDER as default
21395 * gst/audioscale/gstaudioscale.c:
21396 we don't handle another endianness as host-endianness
21398 2004-05-25 David Schleef <ds@schleef.org>
21400 * gst/ffmpegcolorspace/mem.c: malloc() is in stdlib.h, not malloc.h
21402 2004-05-24 Benjamin Otte <otte@gnome.org>
21404 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
21405 (gst_oggvorbisenc_setup):
21406 properly fail when we can't setup the vorbis encoder due to
21407 unsupported settings
21408 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
21409 (gst_vorbisenc_setup):
21411 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21412 fix case where warnings occured when one pad was unlinked while the
21413 other's link function was called
21415 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
21417 * gst/tcp/Makefile.am:
21420 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
21422 * gst-libs/gst/resample/private.h:
21423 don't use optimizations that are #if 0'ed
21425 2004-05-24 Wim Taymans <wim@fluendo.com>
21427 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21428 Fix potential division by zero error and hopefully get
21429 the position query right to get correct timestamps on avi
21432 2004-05-24 Wim Taymans <wim@fluendo.com>
21434 * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
21435 (gst_videoscale_scale_nearest_str2),
21436 (gst_videoscale_scale_nearest_str4),
21437 (gst_videoscale_scale_nearest_32bit),
21438 (gst_videoscale_scale_nearest_24bit),
21439 (gst_videoscale_scale_nearest_16bit):
21440 Fix the scaling algorithm and avoid a buffer overflow.
21441 removed the while loop in the scaling function as it
21442 was used for point sampling only.
21444 2004-05-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
21446 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
21447 (gst_id3_tag_class_init), (gst_id3_tag_init),
21448 (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
21449 (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
21450 (gst_id3_tag_send_tag_event):
21451 lots of fixes to make id3mux work and id3demux work correctly
21453 2004-05-24 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21456 add rules to build shout2send (was removed by accident
21457 when this module was no more marked experimental/broken)
21459 2004-05-24 Zaheer Abbas Merali <zaheerabbas at merali dot org>
21461 * ext/shout2/gstshout2.c:
21462 * ext/shout2/gstshout2.h:
21463 adding a "connection problem" signal to shout2send
21466 2004-05-21 Thomas Vander Stichele <thomas at apestaart dot org>
21468 * ext/kio/kioreceiver.cpp:
21469 * ext/kio/kioreceiver.h:
21470 fix sign comparison issues
21472 2004-05-21 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21474 * gst/cdxaparse/gstcdxaparse.c:
21475 * gst/cdxaparse/gstcdxaparse.h:
21477 add some checks/sanity
21478 prepare for seek addition
21480 * sys/sunaudio/gstsunaudio.c:
21481 remove exported dupe init function
21483 2004-05-21 Jan Schmidt <thaytan@mad.scientist.com>
21485 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
21486 (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
21487 Fix format conversion and position querying.
21488 * gst/debug/progressreport.c: (gst_progressreport_report):
21489 Don't output a bogus total value that we didn't query.
21490 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
21491 Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
21492 only a blank window after xine has been used.
21494 2004-05-21 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
21497 sync with upstream version to fix test on FC2
21498 readd with -ko to preserve Id header
21500 2004-05-20 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21503 test for FIONREAD ioctl in sys/filio.h for Solaris compat.
21504 * gst/tcp/gsttcpclientsrc.c: idem
21505 * gst/tcp/gsttcpserversink.c: idem
21506 * gst/tcp/gsttcpserversrc.c: idem
21507 * m4/gst-fionread.m4: idem
21509 * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
21511 * configure.ac: enable speex plugin for speex 1.1.5+
21512 * ext/speex/gstspeexenc.c: fix cast warning
21514 * ext/esd/README: fix typo
21516 2004-05-20 David Schleef <ds@schleef.org>
21518 * configure.ac: Minor cosmetic change to convince the buildbot to
21520 * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
21521 (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
21522 (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
21523 (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
21524 (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
21525 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
21526 More hacking. Plays audio now.
21528 2004-05-20 David Schleef <ds@schleef.org>
21533 2004-05-20 David Schleef <ds@schleef.org>
21535 * sys/osxaudio/Makefile.am: New OS X audio plugin by Zaheer Abbas Merali
21536 * sys/osxaudio/gstosxaudio.c:
21537 * sys/osxaudio/gstosxaudioelement.c:
21538 * sys/osxaudio/gstosxaudioelement.h:
21539 * sys/osxaudio/gstosxaudiosink.c:
21540 * sys/osxaudio/gstosxaudiosink.h:
21541 * sys/osxaudio/gstosxaudiosrc.c:
21542 * sys/osxaudio/gstosxaudiosrc.h:
21544 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
21546 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
21547 (gst_vorbisenc_chain):
21548 put the codec headers on the caps as streamheader as well as
21551 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
21553 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
21554 (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
21555 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
21556 split up push_packet into two functions
21558 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
21560 * gst/tcp/.cvsignore:
21562 * gst/tcp/Makefile.am:
21564 * gst/tcp/gsttcp.c:
21565 * gst/tcp/gsttcp.h:
21566 * gst/tcp/gsttcpclientsink.c:
21567 * gst/tcp/gsttcpclientsink.h:
21568 * gst/tcp/gsttcpclientsrc.c:
21569 * gst/tcp/gsttcpclientsrc.h:
21570 * gst/tcp/gsttcpplugin.c:
21571 * gst/tcp/gsttcpserversink.c:
21572 * gst/tcp/gsttcpserversink.h:
21573 * gst/tcp/gsttcpserversrc.c:
21574 * gst/tcp/gsttcpserversrc.h:
21575 add new tcp elements
21577 2004-05-19 Wim Taymans <wim@fluendo.com>
21579 * gst/law/mulaw-conversion.c: (mulaw_encode):
21580 Fix overflow bug in ulaw encoding.
21582 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
21584 * ext/mad/gstmad.c: (gst_mad_handle_event):
21585 don't unref the event twice
21587 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
21590 remove -Wno-sign-compare
21592 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
21595 remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
21596 if you want to work against glib 2.2 and 2.4
21598 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
21600 * gst/tcp/Makefile.am:
21601 * gst/tcp/gsttcp.c:
21602 * gst/tcp/gsttcp.h:
21603 * gst/tcp/gsttcpsink.h:
21604 * gst/tcp/gsttcpsrc.h:
21605 gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
21607 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
21609 * gst/debug/tests.c: (md5_get_value):
21610 fix segfault on gst-inspect
21612 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
21614 * gst/debug/testplugin.c:
21615 * gst/debug/tests.c:
21616 * gst/debug/tests.h:
21617 add new extensible and configurable testing element. Current tests
21618 include buffer count, stream length, timestamp/duration matching and
21620 * gst/debug/Makefile.am:
21621 * gst/debug/gstdebug.c: (plugin_init):
21622 add infrastructure for new element
21624 2004-05-19 Johan Dahlin <johan@gnome.org>
21626 * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
21627 ending of the array. Fixes gst-inspect segfault on ppc.
21629 2004-05-19 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21631 * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
21633 * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
21635 2004-05-18 David Schleef <ds@schleef.org>
21637 * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
21638 warnings (bugs, actually) noticed by gcc but not forte.
21640 2004-05-18 David Schleef <ds@schleef.org>
21642 * sys/sunaudio/Makefile.am:
21643 * sys/sunaudio/gstsunaudio.c: New sunaudiosink
21645 2004-05-18 David Schleef <ds@schleef.org>
21647 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
21648 (gst_qtdemux_loop_header): Patch from dcm@acm.org (David Moore)
21649 to allow qtdemux to use non-seekable streams. (bug #142272)
21651 2004-05-18 David Schleef <ds@schleef.org>
21653 * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
21654 (gst_resample_sinc_ft_float): Remove use of static temporary
21655 buffer. This code was obviously not supposed to last long, but
21656 it's stuck in our ABI, so it required a little hack to make it
21657 ABI-compatible. Fixes #142585.
21658 * gst-libs/gst/resample/resample.h: same.
21660 2004-05-18 David Schleef <ds@schleef.org>
21662 * configure.ac: Add sunaudio
21663 * examples/Makefile.am: make gstplay depend on gconf
21664 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
21665 * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
21666 (convert_table_lookup), (img_convert): remove c99-isms
21667 * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
21668 unsigned, to fix a warning on Solaris
21669 * gst/mpeg1sys/systems.c: bcopy->memcpy
21670 * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
21671 * sys/Makefile.am: Add sunaudio
21673 2004-05-18 Wim Taymans <wim@fluendo.com>
21675 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
21676 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
21677 (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
21678 (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
21679 (gst_ogg_mux_loop):
21680 Fix an ugly memleak where the muxer didn't flush enough ogg
21681 pages. This also resulted in badly muxed ogg files.
21683 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21685 * gst/asfdemux/asfheaders.c :
21686 * gst/asfdemux/asfheaders.h :
21687 * gst/asfdemux/gstasfdemux.c :
21688 - fix ASF_OBJ_PADDING guid
21689 - add 3 new object guids (language list, metadata,
21690 extended stream properties)
21691 - add a function to parse extended header objects
21693 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
21695 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
21696 remove leftover debugging g_print
21698 2004-05-17 Ronald Bultje <rbultje@ronald.bitfreak.net>
21700 * ext/mad/gstmad.c: (gst_mad_handle_event):
21701 Fix for when the first format in a discont event is not a
21702 byte-based one. Should fix #137710.
21704 2004-05-18 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21706 * m4/a52.m4 : fix compilation with -Wall -Werror
21707 * m4/libfame.m4 : idem
21708 * m4/libmikmod.m4 : idem
21710 2004-05-17 Benjamin Otte <otte@gnome.org>
21712 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
21713 signal the new tags before giving up the reference
21715 2004-05-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
21717 * ext/shout2/gstshout2.c:
21718 use application/ogg instead of application/x-ogg (patch by Patrick
21719 Guimond, fixes #142432)
21720 * sys/oss/gstosselement.c: (gst_osselement_reset),
21721 (gst_osselement_sync_parms):
21722 don't set fragment size unless specified (fixes #142493)
21724 2004-05-17 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21726 * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
21729 2004-05-17 Benjamin Otte <otte@gnome.org>
21731 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
21732 compute offsets correctly for internal buffers so timestamps are set
21733 correctly when we can't seek. Also handle cases where there are no
21734 offsets. (based on a patch by David Moore, fixes #142507)
21736 2004-05-17 Benjamin Otte <otte@gnome.org>
21738 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21739 use correct variable when determining amount of data to skip so we
21740 don't skip into the void and segfault
21742 2004-05-16 Benjamin Otte <otte@gnome.org>
21744 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
21747 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21749 * gst/asfdemux/gstasfdemux.c:
21750 - fix a mem leak and always propagate tags
21751 - add WMV3 to known video codecs (but no decoder yet)
21752 - replace "surplus data" at end of audio header for what
21753 it is : codec specific data
21756 2004-05-16 Arwed v. Merkatz <v.merkatz@gmx.net>
21758 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
21760 * gst-libs/gst/audio/audioclock.c:
21761 Fix wrong return type (#142205).
21763 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
21765 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
21766 Ignore CRCs by default (fixes #142566).
21768 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
21770 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
21771 (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
21772 (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
21773 (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
21774 (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
21775 (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
21776 Fix for cases where we fail to attach to a mixer.
21778 2004-05-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
21780 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
21781 Don't touch events after not owning them anymore.
21782 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
21783 (gst_wavparse_fmt), (gst_wavparse_other),
21784 (gst_wavparse_handle_seek), (gst_wavparse_loop),
21785 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21786 (gst_wavparse_srcpad_event):
21787 * gst/wavparse/gstwavparse.h:
21788 Add seeking, fix querying.
21790 2004-05-16 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21792 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
21793 - process comments even if they don't end with \0\0
21794 g_convert would ignore them if present and works well without them
21796 2004-05-16 Benjamin Otte <otte@gnome.org>
21798 * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
21801 2004-05-16 Benjamin Otte <otte@gnome.org>
21803 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
21804 don't write to memory we might not write to - g_convert does that
21805 for us anyway (fixes #142613)
21806 (gst_asf_demux_audio_caps):
21807 comment out gst_util_dump_mem
21809 2004-05-16 Benjamin Otte <otte@gnome.org>
21811 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21812 compute correct expected timestamps after seek (broken since
21814 * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
21815 rename element and debugging category to gdkpixbufscale
21817 2004-05-16 Benjamin Otte <otte@gnome.org>
21819 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21820 add error checking to snd_pcm_delay and remove duplicate call to
21821 snd_pcm_delay that caused issues (see inline code comments)
21822 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
21823 make more readable and fix return value when snd_pcm_delay fails
21826 2004-05-15 Jan Schmidt <thaytan@mad.scientisti.com>
21827 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
21828 (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
21829 (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
21830 (gst_pixbufscale_link), (gst_pixbufscale_init),
21831 (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
21832 (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
21833 (gst_pixbufscale_get_property), (pixbufscale_init):
21834 * ext/gdk_pixbuf/pixbufscale.h:
21835 Add these files I forgot earlier
21837 2004-05-15 Jan Schmidt <thaytan@mad.scientist.com>
21838 * ext/gdk_pixbuf/Makefile.am:
21839 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
21840 * ext/gdk_pixbuf/gstgdkpixbuf.h:
21841 Add new pixbufscale element to scale RGB video
21842 using gdk_pixbuf, because gdk_pixbuf does BILINEAR
21843 and HYPER interpolation correctly.
21844 * ext/theora/theoraenc.c: (theora_enc_chain),
21845 Discard buffer and return if explicit caps could not be set
21846 (theora_enc_get_property):
21847 Make _get return kbps for the bitrate consistent with
21851 2004-05-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
21853 * ext/libvisual/visual.c: (gst_visual_chain):
21854 add missing visual_audio_analyze
21856 2004-05-14 David Schleef <ds@schleef.org>
21858 * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
21859 is killed while we're playing.
21860 * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
21861 gst_element_no_more_pads().
21863 2004-05-14 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21865 * gst-libs/gst/riff/riff-read.c :
21866 - fix INFO tag extraction in RIFF/AVI files
21867 because gst_event_unref (event) also freed taglist
21870 2004-05-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21872 * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
21873 * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
21875 * gst/auparse/gstauparse.c :
21876 - add code (commented for now) to support audio/x-adpcm on src pad
21877 (we have no decoder for those layout yet)
21879 * gst/cdxaparse/gstcdxaparse.c :
21880 * gst/cdxaparse/gstcdxaparse.h :
21881 - partial rewrite using RiffRead (ripped iain's wavparse code)
21883 * gst/rtp/gstrtpL16enc.c : typo
21884 * gst/rtp/gstrtpgsmenc.c : typo
21886 2004-05-13 Benjamin Otte <otte@gnome.org>
21889 check for exact version of libvisual, it's not supposed to be
21892 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
21894 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
21895 signal no-more-pads
21897 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
21899 * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
21900 Report which format was used for GST_FORMAT_DEFAULT
21901 * gst/debug/Makefile.am:
21902 * gst/debug/gstdebug.c: (plugin_init):
21903 * gst/debug/progressreport.c: (gst_progressreport_base_init),
21904 (gst_progressreport_class_init), (gst_progressreport_init),
21905 (gst_progressreport_report), (gst_progressreport_set_property),
21906 (gst_progressreport_get_property), (gst_progressreport_chain),
21907 (gst_progressreport_plugin_init):
21908 Add progressreport element for testing.
21910 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
21912 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
21913 * sys/v4l/gstv4lsrc.h:
21914 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
21915 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
21916 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
21917 (gst_v4lsrc_grab_frame):
21919 send a discont at start
21921 2004-05-12 Colin Walters <walters@redhat.com>
21923 * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
21924 inflooping if we can't find a chunk. Or in other words, don't blow
21925 chunks if we don't have a chunk to blow.
21927 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
21928 * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
21929 Remove old debug output
21930 * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
21931 (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
21932 (gst_dvdec_set_property), (gst_dvdec_get_property):
21933 Change the quality setting to an enum, so it works from gst-launch
21934 Don't renegotiate a non-linked pad. Allows audio only decoding.
21935 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
21936 (gst_deinterlace_link), (gst_deinterlace_init):
21937 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
21938 (gst_videodrop_link):
21939 Some caps negotiation fixes
21941 2004-05-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21943 * ext/tarkin/gsttarkin.c :
21944 - Change RANK from NONE to PRIMARY
21945 * ext/gdk_pixbuf/gstgdkpixbuf.c :
21946 - Change RANK from NONE to MARGINAL
21947 * ext/divx/gstdivxenc.c :
21948 - Change RANK from PRIMARY to NONE (encoder/spider issue)
21950 2004-05-12 Thomas Vander Stichele <thomas at apestaart dot org>
21952 * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
21953 (gst_vorbisenc_push_packet):
21954 copy a function that was added between 1.0 and 1.0.1 until we
21955 depend on worthwhile features of post-1.0
21957 2004-05-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
21960 enable shout2 by default
21961 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
21962 (gst_shout2send_base_init), (gst_shout2send_init),
21963 (gst_shout2send_connect), (gst_shout2send_change_state):
21964 * ext/shout2/gstshout2.h:
21965 make this work again. Based on a patch by Zaheer Abbas Merali (fixes
21967 * ext/theora/theora.c: (plugin_init):
21968 don't set rank on encoders
21970 2004-05-11 Jeremy Simon <jesimon@libertysurf.fr>
21972 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
21973 Use codec_data property instead of flag1 and flag2 for wma
21975 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
21977 * gst/cdxaparse/gstcdxaparse.c :
21978 - Add mpegversion to CAPS to make it link
21979 - Rank is as GST_RANK_SECONDARY instead of NONE
21980 * gst/auparse/gstauparse.c :
21981 - Document all audio encoding we can encounter from Solaris 9
21982 headers and libsndfile information.
21983 - Increase max. rate from 48000 to 192000 (to match other elements)
21984 - Don't try to play junk data between header and samples
21986 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
21988 * ext/libvisual/visual.c: (gst_visual_getcaps):
21989 use the right caps depending on endianness (I hope)
21990 * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
21991 use GST_RANK_NONE for all non-decoding elements or spider gets
21994 2004-05-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
21996 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
21997 Fix some odd cases and fix BE metadata parsing of unicode16 text.
21999 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
22001 * gst/switch/gstswitch.c: (gst_switch_release_pad),
22002 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
22003 (gst_switch_loop), (gst_switch_get_type):
22004 whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
22005 HEADERS. Had to be said.
22007 2004-05-10 David Schleef <ds@schleef.org>
22009 * configure.ac: Add prototype Dirac support.
22011 * ext/dirac/Makefile.am:
22012 * ext/dirac/gstdirac.cc:
22013 * ext/dirac/gstdiracdec.cc:
22015 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
22017 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
22018 (gst_auparse_init), (gst_auparse_chain),
22019 (gst_auparse_change_state):
22020 Hack around spider. Remove me some day please.
22022 2004-05-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
22024 * gst/auparse/gstauparse.c: (gst_auparse_chain):
22025 Fix for some uninitialized variables in previous patch, also
22026 makes it work. Fixes #142286 while we're at it.
22028 2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
22030 * gst/auparse/gstauparse.c:
22031 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
22032 only unsupported formats are ADPCM/CCITT G.72x
22034 * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
22036 2004-05-10 Wim Taymans <wim@fluendo.com>
22038 * ext/vorbis/Makefile.am:
22039 * ext/vorbis/README:
22040 * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
22041 (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
22042 (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
22043 (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
22044 (gst_oggvorbisenc_convert_sink),
22045 (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
22046 (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
22047 (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
22048 (get_constraints_string), (update_start_message),
22049 (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
22050 (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
22051 (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
22052 * ext/vorbis/oggvorbisenc.h:
22053 * ext/vorbis/vorbis.c: (plugin_init):
22054 * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
22055 (raw_caps_factory), (gst_vorbisenc_class_init),
22056 (gst_vorbisenc_init), (gst_vorbisenc_setup),
22057 (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
22058 (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
22059 * ext/vorbis/vorbisenc.h:
22060 Added a raw vorbis encoder to be used with the oggmuxer.
22061 We still need the old encoder for some gnome applications,
22062 read the README to find out how that works.
22063 The raw encoder is called "rawvorbisenc" until 0.9.
22065 2004-05-10 Wim Taymans <wim@fluendo.com>
22067 * ext/ogg/gstogg.c: (plugin_init):
22068 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
22070 * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
22071 (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
22072 (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
22073 (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
22074 (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
22075 (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
22076 (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
22077 (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
22078 (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
22079 (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
22080 Added an ogg muxer.
22081 Small typo fixes in the demuxer.
22083 2004-05-10 Wim Taymans <wim@fluendo.com>
22085 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22086 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
22087 (theora_enc_change_state), (theora_enc_set_property),
22088 (theora_enc_get_property):
22089 Mark the last packet with an EOS flag which is not really needed
22091 Do some better video framerate initialisation.
22092 Update the buffer timestamp.
22094 2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
22096 * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
22097 Return the result of the parent state change call
22099 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
22101 * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
22102 * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
22103 * gst/law/alaw-encode.c : (idem)
22104 * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
22105 * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
22106 * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
22108 2004-05-09 Benjamin Otte <otte@gnome.org>
22110 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
22111 don't use a fixed buffer size when writing variable length data to
22112 it. Fixes memory corruption and makes alsasrc work
22114 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
22116 * ext/gnomevfs/gstgnomevfssink.c:
22117 (_gst_boolean_allow_overwrite_accumulator),
22118 (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
22119 Run glib's default signal handler (??) in RUN_CLEANUP rather than
22120 RUN_LAST, and don't use that to set the accumulator value because
22121 then it's always FALSE.
22123 2004-05-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
22125 * gst-libs/gst/riff/riff-media.c:
22126 (gst_riff_create_video_caps_with_data),
22127 (gst_riff_create_audio_caps),
22128 (gst_riff_create_audio_template_caps):
22129 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
22130 Fix for unaligned RIFF files (i.e. where all the chunks together
22131 in a LIST chunk are not of the same size as the size given in
22132 the LIST chunk header). Fixes several odd WAVE files. Also fix
22133 ADPCM (block_align property) in audio, so that wavparse based
22134 on this works now as it used to stand-alone.
22136 2004-05-09 Edward Hervey <bilboed@bilboed.com>
22138 reviewed by Benjamin Otte <otte@gnome.org>
22140 * ext/a52dec/gsta52dec.c:
22141 * ext/divx/gstdivxdec.c:
22142 * ext/divx/gstdivxenc.c:
22143 * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
22144 * ext/faac/gstfaac.c: (gst_faac_base_init):
22145 * ext/faad/gstfaad.c: (gst_faad_base_init):
22146 * ext/ivorbis/vorbisfile.c:
22147 * ext/lame/gstlame.c:
22148 * ext/libfame/gstlibfame.c:
22149 * ext/mpeg2enc/gstmpeg2enc.cc:
22150 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
22151 * ext/sidplay/gstsiddec.cc:
22152 * ext/speex/gstspeexdec.c:
22153 * ext/speex/gstspeexenc.c:
22154 * ext/xvid/gstxviddec.c:
22155 * ext/xvid/gstxvidenc.c:
22156 correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
22159 2004-05-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
22161 * ext/alsa/gstalsa.c: (device_list),
22162 (gst_alsa_class_probe_devices):
22163 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
22164 Fix alsa oddness in mixer after the combination of using mixer
22165 in source/sink elements and using hw:x,y instead of just hw:x.
22167 2004-05-09 Benjamin Otte <otte@gnome.org>
22169 * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
22170 (gst_wavparse_create_sourcepad):
22171 make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
22174 2004-05-09 Benjamin Otte <otte@gnome.org>
22176 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22177 allow discont events before caps nego
22179 2004-05-08 Benjamin Otte <otte@gnome.org>
22181 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
22184 2004-05-08 Benjamin Otte <otte@gnome.org>
22186 * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
22187 (gst_level_change_state), (gst_level_init):
22188 * gst/level/gstlevel.h:
22189 figure out if we're initialized directly instead of keeping a
22190 variable that's wrong in 90% of cases
22191 don't initialize pads and then leak them and use a new unitialized
22192 pad. (fixes #142084)
22193 these were bugs so n00bish I didn't find them for an hour :/
22195 2004-05-08 Iain <iain@prettypeople.org>
22197 * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
22198 * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
22199 (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
22200 return the length that was read.
22201 (gst_riff_read_strf_auds): Allow fmt tags as well.
22203 2004-05-07 David Schleef <ds@schleef.org>
22205 * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
22206 signed char assumption in faad.h.
22208 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
22210 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
22211 Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
22213 2004-05-07 Colin Walters <walters@redhat.com>
22215 * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
22216 * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
22218 * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
22219 Add dispose function.
22221 2004-05-08 Jan Schmidt <thaytan@mad.scientist.com>
22222 * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
22223 Fix caps nego and pad templates. RGB mode caps should
22225 * ext/dvdnav/gst-dvd:
22226 Move mpeg2dec inside the thread because otherwise the
22227 queue rejects cap changes mid-stream
22228 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
22229 (gst_mpeg2dec_flush_decoder):
22230 For mpeg2dec > 0.4.0, call the flush function instead of
22231 manually extracting all in-flight frames.
22232 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
22233 (gst_dv1394src_init), (gst_dv1394src_iso_receive):
22234 Change mime type video/dv go video/x-dv to match the
22235 rest of gst-plugins
22237 2004-05-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
22239 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
22240 * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
22241 (gst_alsa_sink_class_init):
22242 * ext/alsa/gstalsasink.h:
22243 * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
22244 (gst_alsa_src_class_init):
22245 * ext/alsa/gstalsasrc.h:
22246 Make alsasink/src a subclass of alsamixer so that mixer stuff
22247 shows up in gst-rec. Needs some finetuning.
22249 2004-05-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
22251 * ext/lame/gstlame.c: (gst_lame_chain):
22253 * ext/mad/gstmad.c: (gst_mad_handle_event):
22255 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
22256 be able to detect mp3 files < 4096 bytes
22258 2004-05-06 Wim Taymans <wim@fluendo.com>
22260 * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
22261 (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
22262 (theora_enc_set_property), (theora_enc_get_property):
22263 Also encode the first frame, cleanup some code.
22265 2004-05-06 Wim Taymans <wim@fluendo.com>
22267 * ext/mpeg2enc/gstmpeg2enc.cc:
22268 Forward events first before deciding that negotiation was
22271 2004-05-06 Wim Taymans <wim@fluendo.com>
22273 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
22274 First process the events before deciding that negotiation
22277 2004-05-06 Wim Taymans <wim@fluendo.com>
22279 * ext/theora/Makefile.am:
22280 * ext/theora/theora.c: (plugin_init):
22281 * ext/theora/theoradec.c: (theora_dec_change_state):
22282 * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
22283 (gst_theora_enc_class_init), (gst_theora_enc_init),
22284 (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
22285 (theora_enc_chain), (theora_enc_change_state),
22286 (theora_enc_set_property), (theora_enc_get_property):
22287 Added a theora encoder, grouped the encoder and decoder into the
22290 2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
22292 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
22293 (gst_jpegenc_chain):
22294 fix DURATION on outgoing buffers
22295 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
22296 debug using time formats
22297 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
22298 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
22299 (gst_xvimagesink_sink_link):
22300 windows with width/height 0 generate X errors, so don't allow them
22302 2004-05-05 Wim Taymans <wim@fluendo.com>
22304 * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
22305 (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
22306 (gst_mpeg2dec_negotiate_format):
22307 * ext/mpeg2dec/gstmpeg2dec.h:
22308 removed the static pad template so that we can add the
22309 more accurate framerate value to the caps.
22312 2004-05-04 Benjamin Otte <otte@gnome.org>
22315 check for kdemacros.h, too (should fix #141821)
22316 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
22317 don't crash if no header was sent, but nicely error out (fixes part
22320 2004-05-04 Wim Taymans <wim@fluendo.com>
22322 * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
22323 parent dispose function to avoid segfault on destroy.
22325 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
22327 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
22329 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22330 (gst_xvimagesink_sink_link):
22331 clean up debugging caps
22332 also recreate xvimage when format has changed
22334 2004-05-04 Benjamin Otte <otte@gnome.org>
22336 * ext/libvisual/Makefile.am:
22337 * ext/libvisual/visual.c: (gst_visual_class_init),
22338 (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
22339 (gst_visual_srclink), (gst_visual_chain),
22340 (gst_visual_change_state), (plugin_init):
22341 use a GstAdapter to correctly adapt buffer sizes - allows using a
22344 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
22346 * sys/v4l/gstv4lelement.h:
22347 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
22348 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
22349 (gst_v4lsrc_buffer_free):
22350 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
22351 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
22352 (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
22353 (gst_v4lsrc_requeue_frame):
22354 move some debugging categories around
22355 query for fps index and set accordingly if found
22357 2004-05-03 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
22359 * ext/lame/gstlame.c:
22360 correct defaults that lame_init puts out of range
22362 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
22364 * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
22365 (gst_divxenc_class_init):
22366 fix range since -1 is the default
22367 * gst/mpeg1sys/gstmpeg1systemencode.c:
22368 (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
22369 * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
22370 (gst_rtjpegdec_chain):
22371 * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
22372 (gst_rtjpegenc_chain):
22373 * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
22374 (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
22375 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
22376 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
22377 * sys/v4l/gstv4lsrc.c:
22378 * sys/v4l/v4l_calls.c: (gst_v4l_open):
22379 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
22380 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
22381 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
22382 * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
22383 remove gst_info calls
22385 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
22394 Updated translations
22396 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
22398 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
22399 refactor/comment code
22401 2004-05-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
22403 * gst/asfdemux/Makefile.am:
22404 * gst/asfdemux/asfheaders.c:
22405 * gst/asfdemux/asfheaders.h:
22406 * gst/asfdemux/gstasf.c: (plugin_init):
22407 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
22408 (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
22409 (gst_asf_demux_setup_pad):
22410 * gst/asfdemux/gstasfdemux.h:
22411 * gst/asfdemux/gstasfmux.c:
22412 * gst/asfdemux/gstasfmux.h:
22413 Add tagging support to demuxer, split out registration in its own
22414 file instead of in demux (hacky), and prevent having some tables
22415 in our memory multiple times (in asfheaders.h).
22417 2004-05-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
22419 * gst/matroska/matroska-demux.c:
22420 (gst_matroska_demux_parse_metadata):
22421 * gst/matroska/matroska-ids.h:
22422 Basic tag reading support.
22424 2004-04-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
22426 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
22427 Really detect ac-3 audio.
22428 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
22429 really detect matroska files (off-by-1).
22431 2004-04-30 David Schleef <ds@schleef.org>
22433 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
22434 (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
22435 (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
22436 (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
22437 (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
22438 hackage -- parse a lot more atoms, extract a few tags. One might even
22439 mistake this for tag support. Maybe it is.
22440 * gst/qtdemux/qtdemux.h:
22442 2004-04-30 Colin Walters <walters@verbum.org>
22444 * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
22446 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
22448 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22449 (gst_ffmpegcolorspace_getcaps):
22450 remove broken nego fix
22452 2004-04-30 Benjamin Otte <otte@gnome.org>
22456 * ext/libvisual/Makefile.am:
22457 * ext/libvisual/visual.c:
22458 add initial support for libvisual (http://libvisual.sourceforge.net)
22459 libvisual is still quite alpha, so expect crashes in there :)
22461 2004-04-29 David Schleef <ds@schleef.org>
22463 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
22464 (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
22465 up qtdemux to make it spit out codec_data. Do _not_ look at this
22466 code; you will no longer respect me.
22468 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
22470 * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
22471 * ext/alsa/gstalsa.h :
22472 change alsa pcm device discovery to find more than 1 device
22473 per card. code review by Ronald.
22475 2004-04-29 David Schleef <ds@schleef.org>
22477 * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
22478 Add a check for a driver bug on FreeBSD. (bug #140565)
22480 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
22482 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
22483 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
22484 (gst_jpegenc_getcaps):
22485 move format setting to inner loop
22486 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22487 (gst_ffmpegcolorspace_getcaps):
22488 use GST_PAD_CAPS if available so that we use already negotiated
22490 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
22491 (qtdemux_parse_moov), (qtdemux_parse):
22493 * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
22494 * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
22495 move hardcoded path to DEFINE
22497 2004-04-28 David Schleef <ds@schleef.org>
22499 * gst/speed/gstspeed.c: (speed_parse_caps): Fix caps parsing.
22502 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
22504 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
22505 Don't probe for playback device if we're a source element. Fixes
22508 2004-04-29 Benjamin Otte <otte@gnome.org>
22510 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
22511 (gst_id3_tag_chain):
22512 rewrite buffer offset
22514 2004-04-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
22518 * ext/dts/Makefile.am:
22519 * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
22520 (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
22521 (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
22522 (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
22523 (gst_dtsdec_loop), (gst_dtsdec_change_state),
22524 (gst_dtsdec_set_property), (gst_dtsdec_get_property),
22526 * ext/dts/gstdtsdec.h:
22528 * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
22529 (gst_faad_srcconnect):
22530 Add ESDS atom handling (.m4a).
22532 2004-04-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
22534 * ext/divx/gstdivxdec.c: (plugin_init):
22535 Remove comment that makes no sense.
22536 * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
22537 Fix for obvious typo that resulted in warnings during gst-register.
22538 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
22539 (gst_xviddec_sink_link):
22540 Fix caps negotiation a bit better.
22541 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
22542 We call this 'codec_data', not 'esds'.
22544 2004-04-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
22546 * gst/monoscope/gstmonoscope.c:
22547 make sure we only provide 256x128
22548 * gst/monoscope/monoscope.c: (monoscope_init):
22549 assert size of 256x128
22551 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
22554 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
22555 (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
22556 fixate to max width and height of device
22558 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
22561 * sys/v4l/gstv4l.c:
22562 * sys/v4l/gstv4lsrc.c:
22563 * sys/v4l/v4l_calls.c:
22564 * sys/v4l/v4lsrc_calls.c:
22565 fix for qc-usb driver which fakes having more than one buffer
22566 by handing the same buffer twice, which confused GStreamer's/v4lsrc
22567 buffer_free override
22570 2004-04-27 Thomas Vander Stichele <thomas at apestaart dot org>
22573 * gst/videotestsrc/gstvideotestsrc.c:
22574 (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
22575 (gst_videotestsrc_init), (gst_videotestsrc_get),
22576 (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
22577 * gst/videotestsrc/gstvideotestsrc.h:
22578 add num-buffers property
22580 2004-04-26 Benjamin Otte <otte@gnome.org>
22582 * ext/mad/gstid3tag.c: (plugin_init):
22583 set id3mux rank to NONE so it doesn't confuse spider
22584 require audio/mpeg,mpegversion=1 in id3mux
22586 2004-04-26 Benjamin Otte <otte@gnome.org>
22589 detect faad correctly as non-working if it's indeed non-working
22591 2004-04-26 Thomas Vander Stichele <thomas at apestaart dot org>
22594 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
22595 (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
22596 fix _getcaps so it only negotiates to its supported format
22598 2004-04-25 Benjamin Otte <otte@gnome.org>
22600 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
22603 2004-04-23 Benjamin Otte <otte@gnome.org>
22605 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
22606 audio/x-raw-int with height rules! not. Now it's depth.
22608 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
22610 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
22611 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
22612 (gst_wavparse_loop):
22613 Missing variable initialization. Add handling of DVI ADPCM. Fix
22614 mis-parsing of LIST chunks. This works around a bug where we mis-
22615 parse non-aligning LIST chunks (so LIST chunks where the contents
22616 don't align with the actual LIST size). The correct fix is to use
22617 rifflib, I'm not going to fix wavparse - too much work. All this
22620 2004-04-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
22622 reviewed by Benjamin Otte <otte@gnome.org>
22624 * ext/shout/gstshout.c: (gst_icecastsend_change_state):
22625 fix shoutcast not working (fixes #140844)
22627 2004-04-22 Benjamin Otte <otte@gnome.org>
22629 * ext/hermes/gsthermescolorspace.c:
22630 (gst_hermes_colorspace_caps_remove_format_info):
22631 * gst/colorspace/gstcolorspace.c:
22632 (gst_colorspace_caps_remove_format_info):
22633 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22634 (gst_ffmpegcolorspace_caps_remove_format_info):
22635 s/gst_caps_simplify/gst_caps_do_simplify/
22637 2004-04-22 Benjamin Otte <otte@gnome.org>
22639 * gst-libs/gst/riff/riff-media.c:
22640 (gst_riff_create_video_caps_with_data):
22641 mpegversion is an int
22642 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
22643 don't try to create pad templates with NULL caps, use any caps
22646 2004-04-20 David Schleef <ds@schleef.org>
22648 * ext/sdl/Makefile.am: Link against libgstinterfaces, not
22649 libgstxoverlay. jmmv@menta.net (Julio M. Merino Vidal)
22652 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
22654 reviewed by David Schleef
22656 * ext/mad/gstid3tag.c: Add stdlib.h
22657 * gst/rtp/gstrtpgsmenc.c: same
22658 * gst/tags/gstid3tag.c: same
22659 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
22660 * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
22661 GST_DISABLE_LOADSAVE use.
22662 * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
22663 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
22664 * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
22666 * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
22667 * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
22669 * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
22670 * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
22672 * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
22675 2004-04-20 David Schleef <ds@schleef.org>
22677 * gst/realmedia/rmdemux.c: This was supposed to part of the
22678 last checkin. Same idea.
22680 2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
22682 reviewed by David Schleef
22684 * configure.ac: bump required gstreamer version to 0.8.1.1
22685 because of following changes [--ds]
22687 * gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
22688 (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
22689 (gst_riff_read_header): Use GST_READ_UINT*
22690 macros to access possibly unaligned memory.
22692 * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
22693 (mp3_type_find): Use GST_READ_UINT*
22694 macros to access possibly unaligned memory.
22695 (mp3_type_find, mpeg1_parse_header, qt_type_find)
22696 (speex_type_find): Likewise
22698 * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
22700 * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
22701 (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
22702 (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
22703 (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
22704 (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
22705 (qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
22706 macros to access possibly unaligned memory.
22708 * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
22711 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
22712 (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
22714 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
22717 * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
22718 (gst_mpeg2subt_chain_subtitle): Likewise.
22720 * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
22721 (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
22724 * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
22727 * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
22730 * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
22733 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
22736 update required version of GStreamer because of GST_TIME_FORMAT
22738 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
22740 * ext/mad/gstid3tag.c: (gst_id3_tag_init):
22741 remove leftover g_print
22742 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22743 don't try setting only a subset of the caps. We don't want to kill
22744 autoplugging on purpose
22746 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
22748 * sys/ximage/ximagesink.c: (plugin_init):
22749 * sys/xvimage/xvimagesink.c: (plugin_init):
22750 add debugging categories
22752 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
22756 Adding en_GB translation (Gareth Owen)
22758 2004-04-20 David Schleef <ds@schleef.org>
22760 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
22761 (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
22762 (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
22763 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
22764 A number of new features and hacks to extract the esds atom and
22765 put it into the caps. (bug #137724)
22767 2004-04-19 David Schleef <ds@schleef.org>
22769 * gconf/Makefile.am: Fix for non-GNU make
22770 * gst-libs/gst/Makefile.am: Change directory order to handle
22771 GstPlay linking with gstinterfaces
22772 * gst-libs/gst/audio/make_filter: make use of tr portable
22773 * gst-libs/gst/play/Makefile.am: Add intended \
22774 * gst-libs/gst/xwindowlistener/xwindowlistener.c:
22775 (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
22776 function prototype instead of void *.
22777 * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
22779 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
22780 (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
22781 * gst/videofilter/make_filter: make use of tr portable
22782 * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
22784 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
22788 Added Ukrainian translation (Maxim V. Dziumanenko)
22790 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
22792 * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
22793 (gst_gsmdec_link), (gst_gsmdec_chain):
22794 Fix capsnego, simplify chain function slightly.
22795 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
22798 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
22800 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
22801 (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
22802 (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
22803 Hack to make wavparse work with spider (always -> sometimes pad).
22804 Fixes #135862 && #140411.
22806 2004-04-18 Benjamin Otte <otte@gnome.org>
22808 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
22809 (gst_osselement_rate_probe_check),
22810 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
22811 get rid of \n in debug output
22813 2004-04-17 Iain <iain@prettypeople.org>
22815 * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
22818 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
22820 * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
22821 (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
22822 (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
22823 (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
22824 (gst_id3_tag_src_link), (gst_id3_tag_chain),
22825 (gst_id3_tag_change_state), (plugin_init):
22826 deprecate id3tag element and replace with id3demux/id3mux.
22827 great side effect: this ugly file is now even uglier, yay!
22828 * ext/mad/gstmad.h:
22829 remove non-available function
22830 update for new get_type
22832 2004-04-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
22835 require mpeg2dec >= 0.4.0
22837 2004-04-17 Benjamin Otte <otte@gnome.org>
22839 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
22840 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
22841 (gst_xvimagesink_set_xwindow_id):
22842 call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
22843 assorted cleanup fixes.
22845 2004-04-16 David Schleef <ds@schleef.org>
22847 * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
22848 * sys/xvimage/xvimagesink.h: same
22850 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
22852 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
22853 Fix GST_ELEMENT_ERROR with (NULL)
22855 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
22857 * gst-libs/gst/riff/riff-media.c:
22858 (gst_riff_create_video_caps_with_data):
22859 Add div[3456] as fourccs for DivX 3 (fixes #140137).
22861 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
22863 * gst-libs/gst/riff/riff-media.c:
22864 (gst_riff_create_video_caps_with_data),
22865 (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
22866 (gst_riff_create_video_template_caps),
22867 (gst_riff_create_audio_template_caps):
22868 * gst-libs/gst/riff/riff-media.h:
22869 * gst-libs/gst/riff/riff-read.c:
22870 (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
22871 * gst-libs/gst/riff/riff-read.h:
22872 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
22873 Add MS RLE support. I added some functions to read out strf chunks
22874 into strf chunks and the data behind it. This is usually color
22875 palettes (as in RLE, but also in 8-bit RGB). Also use those during
22876 caps creation. Lastly, add ADPCM (similar to wavparse - which
22877 should eventually be rifflib based).
22878 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
22879 (gst_matroska_demux_init), (gst_matroska_demux_reset):
22880 * gst/matroska/matroska-demux.h:
22881 Remove placeholders for some prehistoric tagging system. Didn't add
22882 support for any tag system really anyway.
22883 * gst/qtdemux/qtdemux.c:
22884 Add support for audio/x-m4a (MPEG-4) through spider.
22885 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
22886 (gst_wavparse_loop):
22887 ADPCM support (#135862). Increase max. buffer size because we
22888 cannot split buffers for ADPCM (screws references) and I've seen
22889 files with 2048 byte chunks. 4096 seems safe for now.
22891 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
22893 * configure.ac: bump nano to 1
22895 === release 0.8.1 ===
22897 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
22899 * configure.ac: releasing 0.8.1, "Comforting Sounds"
22901 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
22903 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
22904 Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
22907 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
22909 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
22910 lower rank of dvddemux so that it's not used for mpeg playback.
22912 2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
22915 save libs correctly when checking mad
22917 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
22919 * ext/mad/gstid3tag.c: (plugin_init):
22920 lower rank of id3tag as proposed by Benjamin. Fixes #139926.
22922 2004-04-13 David Schleef <ds@schleef.org>
22924 * common/m4/gst-feature.m4: Call -config scripts with
22925 --plugin-libs if it is supported.
22926 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
22927 JPEG images are image/jpeg.
22928 * gst/debug/Makefile.am:
22929 * gst/debug/negotiation.c: (gst_negotiation_class_init),
22930 (gst_negotiation_getcaps), (gst_negotiation_pad_link),
22931 (gst_negotiation_update_caps), (gst_negotiation_get_property),
22932 (gst_negotiation_plugin_init): Add a property that acts like
22934 * testsuite/gst-lint: Move license checking to be a standard
22937 2004-04-13 David Schleef <ds@schleef.org>
22939 * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
22940 patch from Sebastien Cote (bug #139958)
22942 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
22944 * examples/gstplay/Makefile.am:
22945 * examples/gstplay/player.c: (main):
22946 make the commandline player example use gconf settings
22948 2004-04-13 Thomas Vander Stichele <thomas at apestaart dot org>
22950 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
22951 (gst_cacasink_sinkconnect), (gst_cacasink_init),
22952 (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
22953 init/end library during state transition, not object
22954 creation/disposal. get rid of custom dispose handler.
22957 2004-04-12 Christian Schaller <Uraeus@gnome.org>
22959 * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
22962 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
22964 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
22965 Handle JUNK chunks inside data section. Prevents warnings.
22967 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
22969 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
22970 (gst_riff_create_video_template_caps):
22972 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
22973 (gst_avi_demux_stream_data):
22974 Add support for "rec-list" chunks.
22976 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
22978 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
22979 Fix another codecname mismatch.
22981 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
22983 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
22984 Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
22985 so that MJPEG plays back.
22987 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
22989 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
22990 (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
22991 * gst/mpeg1videoparse/gstmp1videoparse.h:
22992 Fix for some slight mis-cuts in buffer parsing, and for some
22993 potential overflows or faults-causers. Adds disconts. Also fixes
22994 #139105 while we're at it.
22996 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
22999 * sys/v4l2/gstv4l2element.h:
23000 Workaround for missing struct v4l2_buffer declaration in Suse 9
23001 and Mandrake 10 linux/videodev2.h header file (#135919).
23003 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
23005 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
23006 Bail out if no filename was given.
23008 2004-04-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
23010 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
23011 (gst_v4l2_fourcc_from_structure):
23012 Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
23015 2004-04-09 Benjamin Otte <otte@gnome.org>
23017 * ext/gnomevfs/gstgnomevfssink.c:
23018 (_gst_boolean_allow_overwrite_accumulator),
23019 (gst_gnomevfssink_class_init):
23020 fix erase signal - if any handler returns false the file will not be
23021 overwritten. If no handler is connected, the file will not be
23022 overwritten either.
23023 renamed signal to "allow-overwrite"
23024 * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
23025 free string when adding it to ID3 failed
23026 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
23027 unref event when done
23028 * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
23030 * gst/typefind/gsttypefindfunctions.c:
23031 (mpeg_video_stream_type_find):
23034 2004-04-08 David Schleef <ds@schleef.org>
23036 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23037 (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
23039 2004-04-08 David Schleef <ds@schleef.org>
23041 * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
23042 we don't support (bug #139532)
23044 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
23046 * ext/mad/gstmad.c: (gst_mad_handle_event),
23047 (gst_mad_check_caps_reset), (gst_mad_chain),
23048 (gst_mad_change_state):
23049 only set explicit caps if they haven't been set before for
23050 this stream. MPEG-audio sample rate/channels aren't allowed
23051 to change in-stream.
23054 2004-04-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
23056 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
23057 (_gst_boolean_did_something_accumulator),
23058 (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
23059 (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
23060 (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
23061 (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
23062 (gst_gnomevfssink_change_state):
23063 Fix erase signal. Don't erase by default. Remove handoff signal.
23064 Remove erase property. Don't segfault. General cleanup.
23066 2004-04-07 Benjamin Otte <otte@gnome.org>
23068 * gst-libs/gst/gconf/test-gconf.c: (main):
23069 add missing gst_init
23071 2004-04-07 Benjamin Otte <otte@gnome.org>
23073 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
23074 free the mutexes, too
23076 2004-04-07 Benjamin Otte <otte@gnome.org>
23078 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
23079 actually free the URI string
23080 * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
23081 compute offset correctly when passing discont events
23082 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
23083 don't leak discont events
23084 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
23085 add some missing breaks so caps aren't copied randomly
23086 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
23087 if we realloc memory, we better use it
23089 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
23091 * ext/mad/gstmad.c: (normal_seek):
23092 fix GST_FORMAT_TIME usage
23094 2004-04-05 David Schleef <ds@schleef.org>
23096 * ext/kio/kiosrc.cpp: Undefine KDE_DEPRECATED so we can use
23097 a deprecated function (hack!)
23099 2004-04-05 Benjamin Otte <otte@gnome.org>
23101 * ext/esd/esdmon.c: (gst_esdmon_get):
23102 fix nonterminated vararg and memleak
23104 2004-04-05 Benjamin Otte <otte@gnome.org>
23106 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
23107 (gst_ladspa_init), (gst_ladspa_force_src_caps),
23108 (gst_ladspa_set_property), (gst_ladspa_get_property),
23109 (gst_ladspa_instantiate), (gst_ladspa_activate),
23110 (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
23113 2004-04-05 Stefan Kost <kost@imn.htwk-leipzig.de>
23115 reviewed by Benjamin Otte <otte@gnome.org>
23117 * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
23118 check for broken LADSPA parameters (fixes #138635)
23120 2004-04-05 Benjamin Otte <otte@gnome.org>
23122 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
23123 advertise buffer-frames correctly on sinkpads
23125 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
23127 * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
23128 (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
23129 (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
23130 (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
23131 (gst_mad_check_caps_reset), (gst_mad_chain):
23132 add more debugging, only reset caps when we're not in error state
23134 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
23136 * ext/mad/gstmad.c: add debugging category, comment + cleanups
23138 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
23140 reviewed by Benjamin Otte <otte@gnome.org>
23143 fix == in test(1) operator
23145 2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
23147 reviewed by Benjamin Otte <otte@gnome.org>
23150 fix --export-symblos-regex to a working regex.
23152 2004-04-04 Benjamin Otte <otte@gnome.org>
23154 * sys/oss/.cvsignore:
23157 2004-04-03 Tim-Phillip M??ller <t.i.m@zen.co.uk>
23159 reviewed by Benjamin Otte <otte@gnome.org>
23161 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
23162 add missing 'new_media' argument (fixes #138168)
23163 * gst/matroska/matroska-demux.c:
23164 (gst_matroska_demux_handle_seek_event):
23165 add vararg terminator (fixes #138169)
23167 2004-04-02 David Schleef <ds@schleef.org>
23169 * ext/gdk_pixbuf/Makefile.am: Make sure gstgdkanimation.h is
23170 disted (bug #138914)
23172 2004-04-01 Benjamin Otte <otte@gnome.org>
23174 * ext/alsa/gstalsa.c: (gst_alsa_change_state),
23175 (gst_alsa_close_audio):
23176 handle case better where a soundcard can't pause
23177 * ext/ogg/gstoggdemux.c:
23178 don't crash when we get events but don't have pads yet
23180 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
23182 * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
23183 throw an error if we couldn't probe any caps.
23185 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
23187 * ext/dvdnav/gst-dvd:
23188 Add a really simple sample DVD player
23190 2004-04-01 Jan Schmidt <thaytan@mad.scientist.com>
23192 * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
23193 (gst_a52dec_push), (gst_a52dec_handle_event),
23194 (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
23195 (gst_a52dec_change_state):
23196 * ext/a52dec/gsta52dec.h:
23197 Use a debug category, Output timestamps correctly
23198 Emit tag info, Handle events, tell liba52dec about cpu
23199 capabilities so it can use MMX etc.
23200 * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
23201 Fix a crasher accessing invalid memory
23202 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
23203 (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
23204 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
23205 (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
23207 Some support for byte-format seeking.
23208 Small fixes for still frames and menu button overlays
23209 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
23210 (gst_mpeg2dec_alloc_buffer):
23211 Use a debug category. Adjust the report level of several items to
23212 LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
23213 so it doesn't lose the GstBuffer pointer
23214 * gst/debug/Makefile.am:
23215 * gst/debug/gstdebug.c: (plugin_init):
23216 * gst/debug/gstnavseek.c: (gst_navseek_get_type),
23217 (gst_navseek_base_init), (gst_navseek_class_init),
23218 (gst_navseek_init), (gst_navseek_seek),
23219 (gst_navseek_handle_src_event), (gst_navseek_set_property),
23220 (gst_navseek_get_property), (gst_navseek_chain),
23221 (gst_navseek_plugin_init):
23222 * gst/debug/gstnavseek.h:
23223 Add the navseek debug element for seeking back and forth in a
23224 video stream using arrow keys.
23225 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
23226 (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
23227 (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
23228 (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
23229 (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
23230 (gst_mpeg2subt_parse_header), (gst_get_nibble),
23231 (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
23232 (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
23233 (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
23234 (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
23235 * gst/mpeg2sub/gstmpeg2subt.h:
23236 Pretty much a complete rewrite. Now a loopbased element. May still
23237 require work to properly synchronise subtitle buffers.
23238 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
23239 (gst_dvd_demux_send_subbuffer):
23240 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
23241 Don't attempt to create subbuffers of size 0
23242 Reduce a couple of error outputs to warnings.
23243 * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
23244 (gst_y4mencode_chain):
23245 Output the y4m frame header correctly.
23247 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
23249 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
23250 throw errors instead of allowing SIGFPE
23252 2004-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
23254 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
23255 (gst_gconf_render_bin_from_key):
23256 leak plugging and style fixing
23258 2004-03-31 David Schleef <ds@schleef.org>
23260 * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
23261 (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
23263 * gst/debug/Makefile.am:
23264 * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
23265 * gst/debug/gstdebug.c: (plugin_init): Merge elements into one
23267 * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
23268 (gst_negotiation_base_init), (gst_negotiation_class_init),
23269 (gst_negotiation_init), (gst_negotiation_getcaps),
23270 (gst_negotiation_pad_link), (gst_negotiation_chain),
23271 (gst_negotiation_set_property), (gst_negotiation_get_property),
23272 (gst_negotiation_plugin_init): New element to talk about random
23273 negotiation things happening in a pipeline.
23275 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
23277 * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
23278 fix integer addition with help of Stefan Kost
23280 2004-03-31 Thomas Vander Stichele <thomas at apestaart dot org>
23282 * po/nl.po: updated Dutch translation (Elros Cyriatan)
23284 2004-03-30 David Schleef <ds@schleef.org>
23286 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
23287 (gst_mpeg2dec_negotiate_format): Handle Y42B-format MPEG
23288 video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
23290 * ext/mpeg2dec/gstmpeg2dec.h:
23292 2004-03-30 David Schleef <ds@schleef.org>
23294 * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
23296 2004-03-30 David Schleef <ds@schleef.org>
23298 * tools/gst-launch-ext-m.m: Applied patch from gnome@flyn.org (W.
23299 Michael Petullo) to handle .mov
23301 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
23303 * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
23304 (gst_osselement_rate_check_rate):
23305 probe caps correctly for sound cards that only support one format
23307 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
23309 * ext/kio/kiosrc.cpp: (process_events):
23310 update handling event processing if inside KDE - untested
23312 2004-03-29 David Schleef <ds@schleef.org>
23314 * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
23315 by 2 to not interfere with other colorspaces.
23316 * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
23317 * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
23318 one to not interfere with ffmpeg_colorspace.
23320 2004-03-29 David Schleef <ds@schleef.org>
23322 * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
23323 aren't in the caps.
23324 * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
23325 * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
23327 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
23329 * gst-libs/gst/riff/riff-media.c:
23330 fail on error, don't try to set stuff on NULL caps
23332 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
23336 * ext/kio/Makefile.am:
23337 * ext/kio/kioreceiver.cpp:
23338 * ext/kio/kioreceiver.h:
23339 * ext/kio/kiosrc.cpp:
23340 * ext/kio/kiosrc.h:
23341 add experimental kiosrc plugin
23342 * ext/alsa/gstalsaplugin.c: (plugin_init):
23343 initialize debugging category only when we're sure registering the
23346 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
23348 * examples/gstplay/player.c: (main):
23349 * gst-libs/gst/play/play.c: (gst_play_class_init),
23350 (gst_play_set_location), (gst_play_set_data_src),
23351 (gst_play_set_video_sink), (gst_play_set_audio_sink),
23352 (gst_play_set_visualization), (gst_play_connect_visualization):
23353 check return values of element_set_state and return FALSE where
23356 2004-03-29 Benjamin Otte <otte@gnome.org>
23358 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
23359 try harder to check if an event is really a discont
23361 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
23363 * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
23366 2004-03-28 Benjamin Otte <otte@gnome.org>
23368 * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
23369 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
23370 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
23371 get rid of non-standard "..." ranges in case statements.
23373 2004-03-27 Martin Soto <martinsoto@users.sourceforge.net>
23375 * gst/mpegstream/gstmpegdemux.c:
23376 * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
23377 specific functionality split to the new dvddemux element.
23378 * gst/mpegstream/gstdvddemux.c:
23379 * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
23380 streams, derived from mpegdemux.
23381 * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
23382 up. SCR based timestamp rewriting can be turned off (will probably
23383 completely disappear soon).
23384 * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
23385 hacking. General cleanup. All printf statements replaced by
23386 debugging messages. Almost complete libdvdnav support.
23387 (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
23388 by events. New properties for audio and subpicture languages.
23389 (dvdnavsrc_update_highlight): Now uses events.
23390 (dvdnavsrc_user_op): Cleaned up.
23391 (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
23392 based). Lots of cleanup, and propper support for most libdvdnav
23394 (dvdnavsrc_make_dvd_event): New function.
23395 (dvdnavsrc_make_dvd_nav_packet_event): New function.
23396 (dvdnavsrc_make_clut_change_event): New function.
23398 2004-03-26 Benjamin Otte <otte@gnome.org>
23400 * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
23401 fix bug where typefinding would claim it's theora whenever less then
23402 7 bytes of data were available
23404 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
23406 * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
23407 (gst_alawdec_base_init), (gst_alawdec_class_init),
23408 (gst_alawdec_init), (gst_alawdec_chain):
23409 * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
23410 (gst_alawenc_base_init), (gst_alawenc_class_init),
23411 (gst_alawenc_init), (gst_alawenc_chain):
23412 * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
23413 (gst_mulawdec_base_init), (gst_mulawdec_class_init),
23414 (gst_mulawdec_init), (gst_mulawdec_chain):
23415 * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
23416 (gst_mulawenc_base_init), (gst_mulawenc_class_init),
23417 (gst_mulawenc_init), (gst_mulawenc_chain):
23418 Fix capsnego in all four, remove the unused property functions and
23419 simplify the chain functions slightly. I guess we could use macros
23420 or something similar for those, since the code is so similar, but
23421 I'm currently too lazy...
23423 2004-03-24 David Schleef <ds@schleef.org>
23425 * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
23426 (gst_osselement_close_audio), (gst_osselement_probe_caps),
23427 (gst_osselement_get_format_structure),
23428 (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
23429 (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
23430 (gst_osselement_rate_int_compare): Add code to handle rate probing
23432 * sys/oss/gstosselement.h: same
23433 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
23434 Use rate probing provided by osselement.
23435 * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
23437 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
23439 * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
23440 (gst_xvidenc_get_property):
23443 2004-03-24 David Schleef <ds@schleef.org>
23445 * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
23446 (gst_speexdec_init):
23447 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
23448 (gst_speexenc_init): Create the pad template correctly (from
23449 the static pad template, not a NULL pointer.)
23451 2004-03-25 Benjamin Otte <otte@gnome.org>
23453 * gst/debug/Makefile.am:
23454 * gst/debug/breakmydata.c:
23455 add element that quasi-randomly changes bytes in the stream.
23456 Intended use is robustness checking of demuxers and decoders in
23459 2004-03-24 Benjamin Otte <otte@gnome.org>
23461 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
23462 (gst_alsa_probe_hw_params):
23463 * ext/alsa/gstalsa.h:
23464 debugging output fixes
23466 2004-03-24 Benjamin Otte <otte@gnome.org>
23468 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
23469 don't g_return_if_fail if element is PLAYING, fail silently as every
23471 * gst/effectv/gstquark.c: (gst_quarktv_chain):
23472 only fix needed for cast lvalue issues in gst-plugins
23473 * gst/volenv/gstvolenv.c: (gst_volenv_init):
23476 2004-03-24 Benjamin Otte <otte@gnome.org>
23478 * gst/level/gstlevel.c: (gst_level_init):
23479 add proxying getcaps function, so level doesn't advertise impossible
23482 2004-03-24 David Schleef <ds@schleef.org>
23484 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
23485 (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
23486 (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
23487 (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
23488 (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
23489 (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
23490 (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
23491 (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
23492 (qtdemux_parse_tree), (qtdemux_parse_trak): Fix debugging
23493 messages. Divide the chunk size by the compression ratio
23494 (needed for MACE audio)
23496 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
23498 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
23499 Fix buffer overflow read error.
23501 2004-03-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
23503 * ext/alsa/gstalsa.h:
23504 Remove unused entry.
23505 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
23507 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
23508 (gst_videodrop_link), (gst_videodrop_chain):
23509 Fix, sort of. Was horribly broken with new capsnego. Bah...
23511 2004-03-23 Jeremy Simon <jesimon@libertysurf.fr>
23513 * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
23515 Add a monkeysaudio typefind function
23517 2004-03-23 Johan Dahlin <johan@gnome.org>
23519 * gst-libs/gst/play/play.c (gst_play_audio_fixate)
23520 (gst_play_video_fixate): Check so the structure has the field
23521 before trying to fixate them, this makes it possible to have
23522 fakesinks for video and audio output without printing errors on
23523 the output console.
23525 2004-03-22 David Schleef <ds@schleef.org>
23527 * sys/oss/Makefile.am:
23528 * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
23529 (check_rate), (add_rate): Rate probing test app.
23531 2004-03-21 Benjamin Otte <otte@gnome.org>
23533 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
23534 (_fixate_caps_to_int), (gst_audio_convert_fixate):
23535 add a fixation function that pretty much does the right thing (fixes
23538 2004-03-20 David I. Lehn <dlehn@users.sourceforge.net>
23540 * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
23542 2004-03-20 Tim-Phillip M??ller <t.i.m@zen.co.uk>
23544 reviewed by: Benjamin Otte <otte@gnome.org>
23546 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
23547 terminate gst_event_new_discontinuous correctly (fixes parts of
23550 2004-03-19 David Schleef <ds@schleef.org>
23552 * gst-libs/gst/Makefile.am: Enable xoverlay unconditionally,
23553 since it doesn't depend on X, and it's part of our ABI.
23555 2004-03-19 Iain <iain@prettypeople.org>
23557 * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
23558 is_int in the structure, not the local variable.
23560 2004-03-19 David Schleef <ds@schleef.org>
23562 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
23563 (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
23564 (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
23565 Improvements in caps negotiation.
23567 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
23571 adding Afrikaans (Petri Jooste)
23573 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
23575 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23576 (gst_ffmpegcolorspace_chain):
23577 throw error instead of g_critical (#137588)
23579 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
23583 dist common and m4 correctly
23586 2004-03-17 David Schleef <ds@schleef.org>
23588 * pkgconfig/gstreamer-media-info.pc.in: Add Version.
23591 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
23595 adding Swedish translation (Christian Rose)
23597 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
23599 * Makefile.am: use release.mak
23601 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
23603 * common/ChangeLog:
23604 * common/gst-autogen.sh:
23605 add some explanation about the version detection
23609 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
23611 * configure.ac: bump nano to 1
23613 === release 0.8.0 ===
23615 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
23617 * configure.ac: release 0.8.0, "Pharmaceutical Itch"
23619 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
23622 update libtool version
23623 * gst-libs/gst/media-info/Makefile.am:
23624 actually use libtool version
23626 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
23628 * configure.ac: fix speex detection to work with 1.0 but not 1.1
23630 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
23633 * gst-plugins.spec.in:
23634 * pkgconfig/Makefile.am:
23635 * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
23636 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
23637 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
23638 * pkgconfig/gstreamer-libs.pc.in:
23639 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
23640 * pkgconfig/gstreamer-play-uninstalled.pc.in:
23641 * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
23642 * pkgconfig/gstreamer-plugins.pc.in:
23643 remove @VERSION@ from some of the pc files since core and plugins
23645 created gstreamer-plugins.pc as it's a better name, but keeping
23646 -libs around for now to get fixes upstream done first.
23648 2004-03-15 Julien MOUTTE <julien@moutte.net>
23650 * gst-libs/gst/play/play.c: (gst_play_get_framerate),
23651 (gst_play_get_sink_element): First draft of gst_play_get_framerate.
23652 * gst-libs/gst/play/play.h:
23654 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
23656 * *.c, *.cc: don't mix tabs and spaces
23658 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
23660 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
23661 use the new ffmpegcolorspace
23662 * gst-plugins.spec.in:
23663 package new colorspace and media-info
23665 * pkgconfig/Makefile.am:
23666 fix some more disting issues
23667 * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
23668 * pkgconfig/gstreamer-media-info.pc.in:
23669 generate media-info pc files
23671 2004-03-15 Johan Dahlin <johan@gnome.org>
23673 * *.h: Revert indenting
23675 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
23678 adding ffmpegcolorspace element
23679 * gst/ffmpegcolorspace/Makefile.am:
23680 * gst/ffmpegcolorspace/avcodec.h:
23681 * gst/ffmpegcolorspace/common.h:
23682 * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
23683 * gst/ffmpegcolorspace/dsputil.h:
23684 * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
23685 * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
23686 (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
23687 (gst_ffmpeg_caps_to_pix_fmt):
23688 * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
23689 * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
23690 (gst_ffmpegcolorspace_caps_remove_format_info),
23691 (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
23692 (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
23693 (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
23694 (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
23695 (gst_ffmpegcolorspace_set_property),
23696 (gst_ffmpegcolorspace_get_property),
23697 (gst_ffmpegcolorspace_register):
23698 * gst/ffmpegcolorspace/imgconvert.c:
23699 (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
23700 (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
23701 (avpicture_get_size), (avcodec_get_pix_fmt_loss),
23702 (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
23703 (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
23704 (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
23705 (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
23706 (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
23707 (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
23708 (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
23709 (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
23710 (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
23711 (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
23712 (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
23713 (img_get_alpha_info), (deinterlace_line),
23714 (deinterlace_line_inplace), (deinterlace_bottom_field),
23715 (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
23716 * gst/ffmpegcolorspace/imgconvert_template.h:
23717 * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
23718 * gst/ffmpegcolorspace/mmx.h:
23719 * gst/ffmpegcolorspace/utils.c: (avcodec_init):
23720 adding ffmpegcolorspace element supplied by Ronald after cleaning
23721 up and pulling in the right bits of upstream source.
23722 I'm sure a better C/compiler wizard could do some cleaning up (for
23723 example use GLIB's malloc stuff), but as a first pass this
23726 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
23728 * ext/alsa/gstalsa.h:
23729 I assume Ronald forgot to commit the change to have cardname
23730 as a struct member. Expect some public spanking at the next
23733 2004-03-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
23735 * ext/alsa/gstalsa.c: (gst_alsa_get_property),
23736 (gst_alsa_open_audio), (gst_alsa_close_audio):
23737 * ext/alsa/gstalsa.c:
23738 Don't open the device if we're a mixer (= padless).
23739 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
23740 (gst_alsa_mixer_init), (gst_alsa_mixer_open),
23741 (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
23742 Open mixer during state change rather than during object
23743 initialization. Also, get a device name. Currently in a somewhat
23744 hackish fashion, but I didn't really find something better.
23746 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
23748 * *.c, *.h: run gst-indent
23750 2004-03-14 Benjamin Otte <otte@gnome.org>
23752 * gst/modplug/gstmodplug.cc:
23753 * gst/modplug/gstmodplug.h:
23754 set correct timestamps on outgoing buffers
23756 2004-03-14 Benjamin Otte <otte@gnome.org>
23758 * gst/modplug/gstmodplug.cc:
23759 handle events - don't do crap when a discont arrives that's not
23761 This allows correct loading and playback of mods in Rhythmbox
23763 2004-03-14 Benjamin Otte <otte@gnome.org>
23766 * gst-libs/gst/gconf/Makefile.am:
23767 * pkgconfig/Makefile.am:
23768 move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
23769 they get rebuilt properly
23771 when checking for vorbis, try pkgconfig first.
23772 * gst/modplug/gstmodplug.cc:
23773 add fixate function
23775 2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
23777 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
23778 Fix for obvious mistake, where we first shift the offset and then
23779 read a samplesize element assuming the old offset. Note that this
23780 part still has something weird, i.e. my movies containing those
23781 don't actually play well, but at least there's something that looks
23784 2004-03-14 Jan Schmidt <thaytan@mad.scientist.com>
23785 * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
23787 Add a typefind function for speex format
23789 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
23791 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
23792 (gst_asf_demux_setup_pad):
23793 Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
23794 instead of 0. Reason is simple: some elements have a fps range
23795 of 1-max instead of 0-max. So now ASF video actually works.
23797 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
23801 adding serbian as a language
23803 2004-03-13 Benjamin Otte <otte@gnome.org>
23805 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23806 return taglist correctly from _get function, don't gst_pad_push it.
23809 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
23810 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
23812 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
23814 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
23815 * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
23816 (gst_alsa_mixer_track_new):
23817 * ext/alsa/gstalsamixertrack.h:
23818 Fix ancient leftovers... MixerTrack is a GObject.
23820 2004-03-13 Ronald Bultje <rbultje@ronald.bitfreak.net>
23822 * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
23823 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
23824 Don't block during probing...
23826 2004-03-12 Ronald Bultje <rbultje@ronald.bitfreak.net>
23828 * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
23829 (gst_alsa_get_property), (gst_alsa_probe_get_properties),
23830 (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
23831 (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
23832 (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
23833 (gst_alsa_open_audio), (gst_alsa_close_audio):
23834 * ext/alsa/gstalsa.h:
23835 Add propertyprobe interface implementation, add some device-name
23836 property, all this so that it looks good in gnome-volume-control.
23838 2004-03-12 David Schleef <ds@schleef.org>
23840 * configure.ac: the Hermes library controls hermescolorspace, not
23842 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
23843 (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
23845 * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
23846 * ext/sdl/sdlvideosink.h: ditto.
23847 * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
23849 2004-03-12 Benjamin Otte <otte@gnome.org>
23851 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
23852 (gst_x_overlay_got_xwindow_id):
23853 * gst-libs/gst/xoverlay/xoverlay.h:
23854 replace XID with unsigned long to get rid of the xlibs dependency in
23855 XOverlay (fixes #137004)
23857 2004-03-13 Jan Schmidt <thaytan@mad.scientist.com>
23858 * gst/effectv/gstaging.c: (gst_agingtv_base_init),
23859 (gst_agingtv_setup):
23860 * gst/effectv/gstdice.c: (gst_dicetv_get_type),
23861 (gst_dicetv_base_init), (gst_dicetv_class_init),
23862 (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
23863 * gst/effectv/gstedge.c: (gst_edgetv_get_type),
23864 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
23865 (gst_edgetv_setup), (gst_edgetv_rgb32):
23866 * gst/effectv/gsteffectv.c:
23867 * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
23868 (gst_quarktv_set_property):
23869 * gst/effectv/gstrev.c: (gst_revtv_get_type),
23870 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
23871 (gst_revtv_setup), (gst_revtv_rgb32):
23872 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
23873 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
23874 (gst_shagadelictv_init), (gst_shagadelictv_setup),
23875 (gst_shagadelictv_rgb32):
23876 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
23877 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
23878 (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
23879 * gst/effectv/gstwarp.c:
23880 Port everything that can be ported to videofilter and fix up the caps.
23881 Can someone with a big-endian machine please check these?
23883 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
23885 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
23886 (gst_osssink_chain), (gst_osssink_change_state):
23887 Latest fixes for A/V sync, audio playback and such. This is about
23888 all... MPEG playback issues are mostly related to the async build-
23889 up of MPEG files, I cannot fix that. Use basicgthread to solve it.
23891 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
23893 patch from: Stephane Loeuillet
23896 use pkg-config for some libraries, falling back to the old .m4 way
23901 2004-03-10 Thomas Vander Stichele <thomas at apestaart dot org>
23904 * tools/Makefile.am:
23905 * tools/Makefile.in:
23906 * tools/gst-launch-ext-m.m:
23907 * tools/gst-launch-ext.1.in:
23908 * tools/gst-visualise-m.m:
23909 * tools/gst-visualise.1:
23910 * tools/gst-visualise.1.in:
23911 reorganizing generation of script tools
23913 2004-03-10 Ronald Bultje <rbultje@ronald.bitfreak.net>
23915 * ext/divx/gstdivxdec.c:
23916 Downgrade priority. We prefer ffdec_mpeg4.
23917 * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
23918 (gst_faad_chain), (gst_faad_change_state):
23919 Fix capsnego. Doesn't work for some sounds because we don't have
23920 a 5:1 to stereo element.
23921 * ext/xvid/gstxvid.c: (plugin_init):
23923 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
23924 (gst_osssink_change_state):
23925 Add discont handling.
23927 2004-03-09 Colin Walters <walters@verbum.org>
23929 * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
23932 2004-03-09 Benjamin Otte <otte@gnome.org>
23934 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
23935 the signals take 2 arguments
23937 2004-03-09 David Schleef <ds@schleef.org>
23939 * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
23940 (gst_alsa_fixate): Add fixate function. (bug #136686)
23941 * ext/alsa/gstalsa.h:
23942 * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
23944 2004-03-09 Benjamin Otte <otte@gnome.org>
23946 * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
23947 (gst_mikmod_change_state):
23948 * ext/mikmod/gstmikmod.h:
23949 make mikmod's loop function not loop infinitely and call
23950 gst_element_yield anymore
23951 * gst/modplug/gstmodplug.cc:
23952 fix pad negotiation (fixes #136590)
23954 2004-03-09 David Schleef <ds@schleef.org>
23956 * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin
23957 doesn't conflict with the internal colorspace plugin.
23958 * gst-libs/gst/audio/make_filter: Use `` instead of $() to
23959 satisfy the crappy-ass shell shipped by a certain vendor.
23960 * gst/videofilter/make_filter: same (bug #135299)
23962 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
23964 * configure.ac: bump nano to 1
23966 === release 0.7.6 ===
23968 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
23970 * configure.in: releasing 0.7.6, "There"
23972 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
23974 * pkgconfig/gstreamer-play-uninstalled.pc.in:
23975 * pkgconfig/gstreamer-play.pc.in:
23976 synchronize the two
23978 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
23980 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
23981 (cdparanoia_open), (cdparanoia_event):
23982 fix/add error handling
23984 add cdparanoia source
23985 * tools/Makefile.am:
23986 make scripts executable
23988 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
23991 * ext/vorbis/Makefile.am:
23993 remove id3types, vorbisfile and xvideosink from the build (#133783)
23995 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
23997 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
23998 Fix metadata read crash (#136537).
24000 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
24002 * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
24003 * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
24004 adding mime types, fixing the one-stop function
24006 2004-03-08 Christian Schaller <Uraeus@gnome.org>
24008 * ext/nas/nassink.c and /ext/nas/nassink.h:
24009 More NAS love from Arwed von Merkatz
24010 So lets all sing 'Can you feel the NAS tonight'
24012 2004-03-08 Christian Schaller <Uraeus@gnome.org>
24014 * tools/gst-launch-ext.in:
24015 Replace vorbisfile with oggdemux/vorbisdec/audioconvert
24017 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
24019 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
24020 (gst_mpeg2dec_init):
24021 remove the user_data pad for now, because it is being used in
24022 fixating causing MPEG playback to fixate on 1000 Hz for playback.
24023 If someone knows how to fix this properly, please do.
24025 2004-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
24027 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
24028 (gst_osssink_get_time):
24029 add a warning, IMO this won't get triggered anymore, remove later
24031 2004-03-07 David Schleef <ds@schleef.org>
24033 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
24034 format (bug #136470)
24036 2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
24038 * gst-libs/Makefile.am:
24039 * gst-libs/gst/media-info/Makefile.am:
24040 * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
24041 (error_callback), (gst_media_info_error_create),
24042 (gst_media_info_error_element), (gmip_init), (gmip_reset),
24043 (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
24044 * gst-libs/gst/media-info/media-info-priv.h:
24045 * gst-libs/gst/media-info/media-info-test.c: (main):
24046 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
24047 (gst_media_info_class_init), (gst_media_info_instance_init),
24048 (gst_media_info_set_source), (gst_media_info_read_with_idler),
24049 (gst_media_info_read_idler), (gst_media_info_read):
24050 * gst-libs/gst/media-info/media-info.h:
24051 fixed, should work now
24053 2004-03-07 Christian Schaller <Uraeus@gnome.org>
24055 * ext/nas/nassink.c:
24056 A bunch of NAS fixes from Arwed von Merkatz
24058 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
24060 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
24061 (qtdemux_parse_trak):
24062 Fix crash (j might be greater than n_samples, in which case we're
24063 writing outside the allocated space for the array) and memleak.
24065 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
24067 * sys/oss/gstosssink.c: (gst_osssink_chain):
24068 And another caller that couldn't handle delay < 0 (unsigned
24069 integer overflow). Video now continues playing on an audio
24070 buffer underrun, and the clock continues working. Audio still
24073 2004-03-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
24075 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
24076 (gst_osssink_get_time):
24077 get_delay() may return values lower than 0. In those cases, we
24078 should not actually cast to *unsigned* int64, that will break
24079 stuff horribly. In my case, it screwed up A/V sync in movies
24080 in totem rather badly.
24082 2004-03-06 Christophe Fergeau <teuf@gnome.org>
24084 * ext/faac/gstfaac.c: (gst_faac_chain):
24085 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
24086 * ext/libpng/gstpngenc.c: (user_write_data):
24087 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
24088 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
24089 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
24090 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
24091 Fix several misuse of gst_buffer_merge (it doesn't take ownership
24092 of any buffer), should fix some leaks. I hope I didn't unref buffers
24093 that shouldn't be...
24095 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
24097 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
24098 (deep_notify_callback), (tag_flag_score), (found_tag_callback),
24099 (error_callback), (gmi_reset), (gmi_seek_to_track),
24100 (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
24101 (gmip_find_type_post), (gmip_find_stream_post),
24102 (gmip_find_track_streaminfo_post):
24103 * gst-libs/gst/media-info/media-info-priv.h:
24104 * gst-libs/gst/media-info/media-info-test.c: (print_tag),
24105 (info_print), (main):
24106 * gst-libs/gst/media-info/media-info.c:
24107 (gst_media_info_error_create), (gst_media_info_error_element),
24108 (gst_media_info_instance_init), (gst_media_info_get_property),
24109 (gst_media_info_new), (gst_media_info_set_source),
24110 (gst_media_info_read_idler), (gst_media_info_read):
24111 * gst-libs/gst/media-info/media-info.h:
24112 first pass at making this work again. This seems to work on
24113 tagged ogg/vorbis and mp3 files.
24115 2004-03-06 Benjamin Otte <otte@gnome.org>
24117 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
24118 fix huge leak: gst_buffer_merge doesn't unref the first argument
24121 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
24123 * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
24124 report layer/mode/emphasis
24126 2004-03-06 Christophe Fergeau <teuf@gnome.org>
24128 * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
24130 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
24132 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
24135 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
24137 * ext/vorbis/vorbis.c: (plugin_init):
24138 * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
24139 (gst_vorbis_dec_init), (vorbis_dec_event):
24141 make vorbisdec handle _BYTE and _TIME queries
24143 2004-03-06 Christophe Fergeau <teuf@gnome.org>
24145 * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
24146 from the xing header
24148 2004-03-06 Benjamin Otte <otte@gnome.org>
24150 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
24151 (gst_audio_convert_link), (gst_audio_convert_change_state),
24152 (gst_audio_convert_buffer_from_default_format):
24153 do conversions from/to float correctly, fix some caps nego errors,
24154 export correct supported caps in template and getcaps, use correct
24155 caps in try_set_caps functions
24157 2004-03-06 Christophe Fergeau <teuf@gnome.org>
24159 For some reason, I only committed a ChangeLog entry yesterday and
24160 not the corresponding code...
24161 * ext/mad/gstmad.c: Fix detection of Xing headers
24162 * gst/tags/gstid3tag.c: Changes to support TLEN tags
24164 2004-03-06 Benjamin Otte <otte@gnome.org>
24166 * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
24167 (gst_ogg_demux_src_query):
24168 make sure to handle the case where there's no current chain
24171 2004-03-05 David Schleef <ds@schleef.org>
24173 * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
24174 Add fixate function. (bug #131128)
24175 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
24176 (gst_sdlvideosink_fixate): Add fixate function.
24177 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
24178 Fix attempt to print a non-pointer using GST_PTR_FORMAT.
24179 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
24180 Fix missing break that was causing ulaw to be interpreted as
24183 2004-03-05 David Schleef <ds@schleef.org>
24185 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
24186 Fix code that ignores return value of gst_buffer_merge().
24188 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
24189 * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
24190 * testsuite/gst-lint: Check for above.
24192 2004-03-05 David Schleef <ds@schleef.org>
24194 * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Check for unfixed
24195 caps and throw an element error. (bug #136334)
24197 2004-03-05 David Schleef <ds@schleef.org>
24199 * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
24200 (gst_faad_chain): Fix negotiation.
24201 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
24202 key and button events.
24203 * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
24205 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
24207 * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
24208 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
24209 (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
24210 function to encourage better negotiation, particularly between
24211 audioconvert and osssink.
24212 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
24213 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak): Make some debugging
24215 * gst/typefind/gsttypefindfunctions.c: Fix mistake in flash
24217 * gst/vbidec/vbiscreen.c: Add glib header
24218 * pkgconfig/gstreamer-play.pc.in: Depends on gst-interfaces.
24220 2004-03-06 Christophe Fergeau <teuf@users.sourceforge.net>
24222 * ext/mad/gstmad.c: Fix detection of Xing headers
24223 * gst/tags/gstid3tag.c: Changes to support TLEN tags
24225 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
24227 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
24228 (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
24231 2004-03-06 Christophe Fergeau <teuf@gnome.org>
24233 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
24234 * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
24235 (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
24236 files, and report the parsed length as a GST_TAG_DURATION tag.
24237 * gst/tags/gstid3tag.c: support TLEN (duration) tag
24239 2004-03-05 Benjamin Otte <otte@gnome.org>
24241 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
24242 convert channels correctly. convert correctly to unsigned.
24244 2004-03-05 Julien MOUTTE <julien@moutte.net>
24246 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
24247 we have a window before clearing it.
24249 2004-03-05 Julien MOUTTE <julien@moutte.net>
24251 * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
24252 have a window before clearing it.
24254 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
24256 * gconf/gstreamer.schemas.in:
24257 * gst-libs/gst/gconf/Makefile.am:
24258 version installation path the same way as for 0.6
24259 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
24260 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
24261 * pkgconfig/gstreamer-play-uninstalled.pc.in:
24262 remove comment that was fixed
24264 2004-03-05 David Schleef <ds@schleef.org>
24266 * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
24267 (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
24268 (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
24269 (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
24270 Add prototype code for handling seeking and querying.
24272 2004-03-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
24274 * examples/gstplay/player.c: (main):
24275 Initialize variables to NULL. Prevents a segfault because the
24276 (uninitialized) variable is not NULL, resulting in a crash on
24277 trying to reach error->message.
24279 2004-03-05 Benjamin Otte <otte@gnome.org>
24281 * gst/audioconvert/gstaudioconvert.c:
24282 (gst_audio_convert_buffer_to_default_format):
24283 make float=>int conversion work correctly even in cornercases.
24285 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
24287 * debian/README.Debian:
24288 * debian/build-deps:
24289 * debian/changelog:
24291 * debian/control.in:
24292 * debian/copyright:
24293 * debian/gstreamer-a52dec.files:
24294 * debian/gstreamer-aa.files:
24295 * debian/gstreamer-alsa.files:
24296 * debian/gstreamer-alsa.manpages:
24297 * debian/gstreamer-arts.files:
24298 * debian/gstreamer-artsd.files:
24299 * debian/gstreamer-audiofile.files:
24300 * debian/gstreamer-avifile.files:
24301 * debian/gstreamer-cdparanoia.files:
24302 * debian/gstreamer-colorspace.files:
24303 * debian/gstreamer-doc.files:
24304 * debian/gstreamer-dv.files:
24305 * debian/gstreamer-dvd.files:
24306 * debian/gstreamer-esd.files:
24307 * debian/gstreamer-festival.files:
24308 * debian/gstreamer-flac.files:
24309 * debian/gstreamer-gconf.conffiles:
24310 * debian/gstreamer-gconf.files:
24311 * debian/gstreamer-gconf.postinst:
24312 * debian/gstreamer-gnomevfs.files:
24313 * debian/gstreamer-gsm.files:
24314 * debian/gstreamer-http.files:
24315 * debian/gstreamer-jack.files:
24316 * debian/gstreamer-jpeg.files:
24317 * debian/gstreamer-mad.files:
24318 * debian/gstreamer-mikmod.files:
24319 * debian/gstreamer-misc.files:
24320 * debian/gstreamer-mpeg2dec.files:
24321 * debian/gstreamer-oss.files:
24322 * debian/gstreamer-plugin-apps.files:
24323 * debian/gstreamer-plugin-apps.manpages:
24324 * debian/gstreamer-plugin-libs-dev.files:
24325 * debian/gstreamer-plugin-libs.files:
24326 * debian/gstreamer-plugin-template.postinst:
24327 * debian/gstreamer-plugin-template.postrm:
24328 * debian/gstreamer-sdl.files:
24329 * debian/gstreamer-sid.files:
24330 * debian/gstreamer-vorbis.files:
24331 * debian/gstreamer-x.files:
24332 * debian/mk.control:
24334 Debian package info not maintained here.
24336 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
24338 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
24339 * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
24340 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
24341 * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
24342 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
24343 * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
24344 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
24345 * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
24346 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
24347 * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
24348 * gst-libs/gst/colorbalance/colorbalance.c:
24349 (gst_color_balance_class_init):
24350 * gst-libs/gst/colorbalance/colorbalancechannel.c:
24351 (gst_color_balance_channel_class_init):
24352 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
24353 * gst-libs/gst/play/play.c: (gst_play_class_init):
24354 * gst-libs/gst/propertyprobe/propertyprobe.c:
24355 (gst_property_probe_iface_init):
24356 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
24357 * gst-libs/gst/tuner/tunerchannel.c:
24358 (gst_tuner_channel_class_init):
24359 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
24360 * gst/cutter/gstcutter.c: (gst_cutter_class_init):
24361 * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
24362 * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
24363 * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
24364 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
24365 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
24366 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
24367 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
24368 fix signals to use - instead of _
24369 * ext/libcaca/gstcacasink.h:
24370 * ext/sdl/sdlvideosink.h:
24373 2004-03-04 David Schleef <ds@schleef.org>
24375 * testsuite/gst-lint: Add a check for bad signal names.
24377 2004-03-04 <kost@imn.htwk-leipzig.de>
24379 reviewed by David Schleef
24381 * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
24382 modified the alpha channel and caused a warning. (bug #136192)
24384 2004-04-03 Christian Schaller <Uraeus@gnome.org>
24386 * gst-plugins.spec.in:
24387 Change names of plugins to actually be correct. Try to keep things
24388 alphabetical to avoid getting beat up by Thomas
24390 2004-03-03 Julien MOUTTE <julien@moutte.net>
24392 * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
24393 Using ximagesink as a default if no gconf key found. We should
24394 probably consider using alsasink instead of osssink for the audio
24397 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
24400 fix --with-plugins, don't think it ever worked before
24401 * gst-plugins.spec.in:
24404 2004-03-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
24406 * ext/sdl/sdlvideosink.h:
24407 * sys/ximage/ximagesink.h:
24408 * sys/xvideo/xvideosink.h:
24409 * sys/xvimage/xvimagesink.h:
24410 Fix for move of gstvideosink.h -> videosink.h.
24412 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
24414 * gst-libs/gst/xwindowlistener/Makefile.am:
24415 this is a plugin library, not a library
24417 2004-03-01 David Schleef <ds@schleef.org>
24419 * AUTHORS: Added some names. Add yourself if you're still
24422 2004-03-01 David Schleef <ds@schleef.org>
24426 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
24428 * gst-plugins.spec.in: clean up spec file
24430 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
24432 * gst-libs/gst/video/Makefile.am:
24433 * gst-libs/gst/video/gstvideosink.c:
24434 * gst-libs/gst/video/gstvideosink.h:
24435 rename gstvideosink.h to videosink.h to match other headers
24436 * gst/mixmatrix/Makefile.am:
24437 fix plugin filename
24438 * gst/tags/Makefile.am: fix plugin filename
24440 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
24442 * gst/tags/Makefile.am: fix plugin filename
24444 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
24446 * examples/gstplay/player.c: (got_time_tick), (main):
24448 display time_tick more readably
24449 * gst/mixmatrix/Makefile.am:
24450 fix plugin file name
24452 2004-02-29 Christophe Fergeau <teuf@gnome.org>
24454 * sys/oss/gstosselement.c: (gst_osselement_probe),
24455 (device_combination_append), (gst_osselement_class_probe_devices):
24456 * sys/oss/gstosselement.h:
24457 Reworked enumeration of oss dsps and mixers so that gst-mixer works
24458 on my system using alsa oss emulation, fixes bug #135597
24460 2004-02-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
24462 * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
24463 (gst_videodrop_chain), (gst_videodrop_change_state):
24464 * gst/videodrop/gstvideodrop.h:
24465 Work based on timestamp of input data, not based on the expected
24466 framerate from the input. The consequence is that this element now
24467 not only scales framerates, but also functions as a framerate
24468 corrector or framerate stabilizer/constantizer.
24470 2004-02-27 David Schleef <ds@schleef.org>
24472 patches from jmmv@menta.net (Julio M. Merino Vidal)
24474 * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
24475 GST_ELEMENT_ERROR call (bug #135634)
24476 * gst/interleave/interleave.c: (interleave_buffered_loop),
24477 (interleave_bytestream_loop): Don't use alloca() (bug #135640)
24478 * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
24479 * sys/oss/gstosssink.c: (gst_osssink_get_delay),
24480 (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
24481 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
24482 (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
24483 (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
24484 Fix GST_ELEMENT_ERROR call.
24485 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
24486 GST_ELEMENT_ERROR call.
24488 2004-02-27 Benjamin Otte <otte@gnome.org>
24490 * gst-libs/gst/audio/audio.h:
24491 add macro to make sure header isn't included twice
24492 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
24493 don't use gst_buffer_free
24494 * gst/playondemand/filter.func:
24495 don't use gst_data_free. Free data only once.
24497 2004-02-26 David Schleef <ds@schleef.org>
24499 * gst-libs/gst/colorbalance/Makefile.am:
24500 * gst-libs/gst/mixer/Makefile.am:
24501 * gst-libs/gst/tuner/Makefile.am:
24502 * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
24503 should not be disted, -marshal.h files should not be installed,
24504 and -enum.h files _should_ be installed. Fix to make this the
24507 === release 0.7.5 ===
24509 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
24511 * configure.ac: release 0.7.5, "Under The Sea"
24513 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
24515 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
24516 (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
24517 * gst/videoscale/gstvideoscale.c:
24518 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
24519 assorted debug/warning fixes
24521 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
24523 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
24524 (gst_videoscale_init), (gst_videoscale_chain),
24525 (gst_videoscale_set_property), (plugin_init):
24526 * gst/videoscale/gstvideoscale.h:
24527 * gst/videoscale/videoscale.c: (gst_videoscale_setup),
24528 (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
24529 (gst_videoscale_planar400), (gst_videoscale_packed422),
24530 (gst_videoscale_packed422rev), (gst_videoscale_32bit),
24531 (gst_videoscale_24bit), (gst_videoscale_16bit),
24532 (gst_videoscale_bilinear), (gst_videoscale_bicubic),
24533 (gst_videoscale_scale_plane_slow),
24534 (gst_videoscale_scale_point_sample),
24535 (gst_videoscale_scale_nearest),
24536 (gst_videoscale_scale_nearest_str2),
24537 (gst_videoscale_scale_nearest_str4),
24538 (gst_videoscale_scale_nearest_32bit),
24539 (gst_videoscale_scale_nearest_24bit),
24540 (gst_videoscale_scale_nearest_16bit):
24541 add debugging category and use it properly
24542 fix use of GST_PTR_FORMAT
24544 2004-02-25 Andy Wingo <wingo@pobox.com>
24546 * gst/interleave/interleave.c (interleave_buffered_loop): Always
24547 push only when channel->buffer is NULL. Prevents segfaults doing
24548 the state change after a nonlocal exit, like a scheme exception.
24550 * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
24551 Handle the case where the intersected caps is empty.
24553 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
24555 * gst/law/mulaw-decode.c: (mulawdec_link):
24556 * gst/law/mulaw.c: (plugin_init):
24557 fix mulawdec so it actually works again
24559 2004-02-24 Arwed v. Merkatz <v.merkatz@gmx.net>
24561 reviewed by: David Schleef <ds@schleef.org>
24563 * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
24564 (gst_gamma_init), (gst_gamma_set_property),
24565 (gst_gamma_get_property), (gst_gamma_calculate_tables),
24566 (gst_gamma_rgb24), (gst_gamma_rgb32): Adds gamma correction
24567 for RGB, with separate r g and b correction factors. (#131167)
24569 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
24571 * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
24572 only signal tags for bitrate if they're > 0 (#134894)
24574 2004-02-24 David Schleef <ds@schleef.org>
24576 * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
24577 (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
24578 (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
24579 (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
24580 (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
24581 (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
24582 (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
24583 (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
24584 Cleanups. Convert g_prints to GST_LOGs. Add qtdemux debug
24585 category. Attempt to fix timestamp calculation.
24587 2004-02-24 Johan Dahlin <johan@gnome.org>
24589 * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
24591 2004-02-23 Thomas Vander Stichele <thomas at apestaart dot org>
24594 * gconf/Makefile.am:
24595 * gconf/gstreamer.schemas:
24596 * gst-libs/gst/gconf/Makefile.am:
24597 * gst-libs/gst/gconf/gconf.c:
24598 version gconf schemas and install locations
24600 2004-02-23 Benjamin Otte <otte@gnome.org>
24602 * ext/xine/xineinput.c: (gst_xine_input_dispose):
24603 (gst_xine_input_subclass_init):
24604 call parent dispose.
24605 change pad template for CD reader correctly
24606 * ext/xine/Makefile.am:
24607 * ext/xine/gstxine.h:
24608 * ext/xine/xine.c: (plugin_init):
24609 * ext/xine/xineaudiosink.c:
24610 wrap audio sinks, too
24611 * gst-libs/gst/resample/private.h:
24612 * gst-libs/gst/resample/resample.c: (gst_resample_init),
24613 (gst_resample_reinit), (gst_resample_scale),
24614 (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
24615 (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
24616 (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
24617 (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
24618 (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
24619 * gst-libs/gst/resample/resample.h:
24620 * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
24621 (gst_audioscale_class_init), (gst_audioscale_link),
24622 (gst_audioscale_get_buffer), (gst_audioscale_init),
24623 (gst_audioscale_chain), (gst_audioscale_set_property),
24624 (gst_audioscale_get_property):
24625 * gst/audioscale/gstaudioscale.h:
24626 s/resample_*/gst_resample_*/i to not clobber namespaces
24628 2004-02-23 Julien MOUTTE <julien@moutte.net>
24630 * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
24631 (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
24632 (gst_riff_create_video_template_caps),
24633 (gst_riff_create_audio_template_caps),
24634 (gst_riff_create_iavs_template_caps):
24635 * gst-libs/gst/riff/riff-media.h:
24636 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
24637 (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
24638 (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
24639 * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
24640 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
24641 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
24642 (gst_matroska_demux_plugin_init): First batch implementing audio and
24643 video codec tags in demuxers.
24645 2004-02-22 Benjamin Otte <otte@gnome.org>
24647 * ext/xine/Makefile.am:
24648 * ext/xine/gstxine.h:
24649 * ext/xine/xine.c: (plugin_init):
24650 * ext/xine/xineinput.c:
24651 add input plugin wrapper. Playback from files, http, mms and cdda
24653 * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
24654 remove leftover G_GNUC_UNUSED
24655 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
24656 (gst_asf_demux_identify_guid):
24657 improve debugging output
24659 2004-02-22 Benjamin Otte <otte@gnome.org>
24661 reported by: Padraig O'Briain <padraig.obriain@sun.com>
24664 replace test -e with test -x for mkinstalldirs to be more portable.
24667 2004-02-22 Benjamin Otte <otte@gnome.org>
24669 reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
24671 * gst/audioconvert/gstaudioconvert.c: (plugin_init):
24672 set rank to PRIMARY
24673 * gst/volume/gstvolume.c: (plugin_init):
24677 2004-02-22 Julio M. Merino Vidal <jmmv@menta.net>
24679 reviewed by Benjamin Otte <otte@gnome.org>
24681 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
24682 escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
24684 2004-02-22 Benjamin Otte <otte@gnome.org>
24687 export [_]*{gst,Gst,GST}.* symbols from plugins
24689 2004-02-22 Christophe Fergeau <teuf@gnome.org>
24691 reviewed by: Benjamin Otte <otte@gnome.org>
24693 * ext/lame/gstlame.c: (add_one_tag):
24694 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
24695 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
24696 (gst_vorbisenc_metadata_set1):
24697 * gst/tags/gstid3tag.c:
24698 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
24699 apply fixes from bugs #135042 (lame can't write tags) and #133817
24700 (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
24702 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
24704 * configure.ac: Export only gst_plugin_desc from plugins.
24705 Note that this change only makes any effect with Linux using libtool
24706 1.5.2 or higher. Otherwise it is silently ignored, but it would build
24707 fine. And don't try to have several versions of libtool in different
24710 2004-02-20 Andy Wingo <wingo@pobox.com>
24712 * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
24713 interleave respectively.
24715 * gst/interleave/deinterleave.c: New plugin: deinterleave
24716 (replaces on oneton).
24717 * gst/interleave/interleave.c: New plugin: interleave.
24718 * gst/interleave/plugin.h: Support file.
24719 * gst/interleave/plugin.c: Support file.
24721 * configure.ac: Remove intfloat and oneton, add interleave.
24723 * ext/sndfile/gstsf.c: Handle events better.
24725 * gst/audioconvert/gstaudioconvert.c: Change to support int2float
24726 and float2int operation. int2float has scheduling problems as
24727 noted in in2float_chain.
24729 2004-02-20 Benjamin Otte <otte@gnome.org>
24731 * ext/xine/Makefile.am:
24732 * ext/xine/gstxine.h:
24734 * ext/xine/xineaudiodec.c:
24735 * ext/xine/xinecaps.c:
24736 add first version of xine plugin wrapper. Currently only wraps the
24737 QDM2 win32 DLL, and even that only in proof-of-concept quality.
24740 add xine plugin wrapper, disabled by default. Use --enable-xine to
24741 build. Note that it'll segfault on gst-register if you don't remove
24742 the goom and tvtime post plugins from xine.
24743 * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
24744 (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
24745 add extradata parsing for QDM2.
24746 change around debugging prints.
24748 2004-02-19 Benjamin Otte <otte@gnome.org>
24750 * ext/lame/gstlame.c: (gst_lame_chain):
24751 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
24752 use gst_tag_list_insert when you want to insert tags
24754 2004-02-18 David Schleef <ds@schleef.org>
24756 * configure.ac: Move massink to gst-rotten
24758 * ext/mas/Makefile.am:
24759 * ext/mas/massink.c:
24760 * ext/mas/massink.h:
24762 2004-02-18 David Schleef <ds@schleef.org>
24764 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
24765 typefinding, since it seems to be worse than nothing.
24766 * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Add ftyp
24767 atom to recognize .mp4 and .m4a files as video/quicktime.
24769 2004-02-18 David Schleef <ds@schleef.org>
24771 * gst/sine/demo-dparams.c: (quit_live),
24772 (dynparm_log_value_changed), (dynparm_value_changed), (main):
24773 Use double dparams, not float.
24774 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24775 (gst_sinesrc_init): Change sync default to FALSE, since multiple
24776 sync'd elements don't really work correctly.
24777 * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
24778 (volume_update_volume), (volume_get_property): Change dparam
24781 2004-02-18 Julien MOUTTE <julien@moutte.net>
24783 * sys/ximage/ximagesink.c:
24784 (gst_ximagesink_xwindow_update_geometry),
24785 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
24786 (gst_ximagesink_change_state), (gst_ximagesink_expose),
24787 (gst_ximagesink_init): Rework the way software video scaling works. So
24788 now we check on each chain call if the video frames are feeling the
24789 window. If not we try to renegotiate caps. On failure we memorize that
24790 and we won't try again for that PLAYING sessions.
24791 * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
24793 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
24796 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
24798 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
24799 break up _link so we can give a better debug message for errors
24801 2004-02-18 Thomas Vander Stichele <thomas at apestaart dot org>
24803 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
24804 set up debug category
24806 2004-02-18 Julien MOUTTE <julien@moutte.net>
24808 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24809 (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
24810 the way renegotiation work. The event handling function is not taking
24811 care of external windows and renegotiate method check for pad flags
24812 NEGOTIATING. Should fix : #133209
24814 2004-02-17 Julien MOUTTE <julien@moutte.net>
24816 * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
24817 pad is negotiating before trying renegotiation.
24819 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
24821 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
24822 pass on all possible mime types as typefind hints
24824 2004-02-17 Julien MOUTTE <julien@moutte.net>
24826 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
24827 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
24828 possible SHM leak if we crash. All other apps using XShm are doing
24831 2004-02-17 Julien MOUTTE <julien@moutte.net>
24833 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
24834 (gst_ximagesink_expose): Renegotiate size on expose.
24835 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
24838 2004-02-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
24840 * testsuite/alsa/sinesrc.c:
24841 cosmetic fix to fix compile issue with gcc 2.95.4
24843 2004-02-16 Julien MOUTTE <julien@moutte.net>
24845 * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
24846 (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
24847 failed opening the audio device.
24848 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
24849 (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
24850 (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
24851 (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
24852 (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
24853 (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
24854 (gst_ximagesink_change_state), (gst_ximagesink_chain),
24855 (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
24856 Removing some useless g_return_if_fail like wingo suggested.
24857 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
24858 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
24859 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
24860 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
24861 (gst_xvimagesink_update_colorbalance),
24862 (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
24863 (gst_xvimagesink_xcontext_clear),
24864 (gst_xvimagesink_get_fourcc_from_caps),
24865 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
24866 (gst_xvimagesink_set_xwindow_id),
24867 (gst_xvimagesink_colorbalance_list_channels),
24868 (gst_xvimagesink_colorbalance_set_value),
24869 (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
24870 PAUSED. Removing some useless g_return_if_fail like wingo suggested.
24872 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
24874 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
24875 throw error when not negotiated instead of asserting
24877 2004-02-15 Julien MOUTTE <julien@moutte.net>
24879 * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
24880 correct data refcounting.
24882 2004-02-15 Julien MOUTTE <julien@moutte.net>
24884 * gst/switch/gstswitch.c: (gst_switch_change_state),
24885 (gst_switch_class_init): Cleaning the sinkpads correctly on state
24886 change, mostly the EOS flag.
24888 2004-02-15 Julien MOUTTE <julien@moutte.net>
24890 * examples/gstplay/player.c: (got_eos), (main): Adding some
24891 output for debugging.
24892 * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
24893 timeouts if we go to any state different from PLAYING.
24894 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
24895 more EOS bugs in riff lib.
24897 2004-02-14 Julien MOUTTE <julien@moutte.net>
24899 * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
24900 visualization until i find a way to fix switch correctly.
24901 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
24903 * gst/switch/gstswitch.c: (gst_switch_release_pad),
24904 (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
24905 (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
24906 Reworked switch to get a more correct behaviour with events and refing
24907 of data stored in sinkpads.
24908 * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
24909 we don't pull from a pad in EOS.
24911 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
24913 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
24914 remove v1 tag even if we can't read it (makes sure we don't detect
24917 2004-02-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
24919 * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
24920 (gst_alsa_xrun_recovery):
24921 * ext/alsa/gstalsa.h:
24922 try xrun recovery when wait failed. Make xrun recovery function
24923 return TRUE/FALSE to indicate success. (might fix #134354)
24925 2004-02-13 David Schleef <ds@schleef.org>
24927 * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
24928 (dynparm_value_changed), (main): Convert from float to double.
24929 * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
24931 2004-02-13 David Schleef <ds@schleef.org>
24933 * gst/silence/gstsilence.c: (gst_silence_class_init),
24934 (gst_silence_set_clock), (gst_silence_get),
24935 (gst_silence_set_property), (gst_silence_get_property):
24936 * gst/silence/gstsilence.h: Add sync property.
24937 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
24938 (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
24939 (gst_sinesrc_set_property), (gst_sinesrc_get_property):
24940 * gst/sine/gstsinesrc.h: Add sync property.
24942 2004-02-13 David Schleef <ds@schleef.org>
24944 * gst/intfloat/gstint2float.c: (conv_f32_s16),
24945 (gst_int2float_chain_gint16): Change stdint usage to glib types.
24947 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
24951 * gst-libs/ext/Makefile.am:
24952 move ffmpeg plugin to gst-ffmpeg module
24954 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
24956 * configure.ac: use GST_ARCH to detect architecture
24958 2004-02-12 Julien MOUTTE <julien@moutte.net>
24960 * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
24962 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
24964 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
24965 classify LADSPA plugins based on number of src/sink pads
24966 (#133663, Stefan Kost)
24967 * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
24968 fix dparams registration
24969 (#133528, Stefan Kost)
24970 * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
24971 fix use of isprint and use g_ascii_isprint instead
24972 (#133316, Stefan Kost)
24974 2004-02-11 David Schleef <ds@schleef.org>
24976 Convert a few inner loops to use liboil. This is currently
24977 optional, and is only enabled if liboil is present (duh!).
24978 * configure.ac: Check for liboil-0.1
24979 * gst/intfloat/Makefile.am:
24980 * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
24981 (gst_int2float_chain_gint16):
24982 * gst/videofilter/Makefile.am:
24983 * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
24984 (tablelookup_u8), (gst_videobalance_planar411):
24985 * gst/videotestsrc/Makefile.am:
24986 * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
24987 * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
24988 (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
24989 (paint_hline_RGB565), (paint_hline_xRGB1555):
24991 2004-02-11 David Schleef <ds@schleef.org>
24993 * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
24994 (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
24995 (gst_colorspace_getcaps), (gst_colorspace_link),
24996 (gst_colorspace_base_init), (gst_colorspace_init),
24997 (gst_colorspace_chain), (gst_colorspace_change_state),
24998 (plugin_init): Merge Ronald's patch (bug #117897) and update
24999 for new caps and negotiation. Seems to work, although it
25000 shows off bugs in lcs.
25002 2004-02-11 David Schleef <ds@schleef.org>
25004 * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
25005 (bug #133886) Noticed by bugs@leroutier.net (Stephane LOEUILLET)
25007 2004-02-11 David Schleef <ds@schleef.org>
25009 * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
25010 (gst_rfbsrc_change_state), (gst_rfbsrc_init),
25011 (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
25012 Add server and port properties
25014 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
25019 * m4/as-liblame.m4:
25020 * m4/as-slurp-ffmpeg.m4:
25021 * m4/check-libheader.m4:
25028 * m4/gst-ivorbis.m4:
25029 * m4/gst-matroska.m4:
25031 * m4/gst-shout2.m4:
25039 fix underquotedness of macros (#133800)
25040 * m4/as-avifile.m4:
25042 removed because no longer used
25044 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
25047 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
25048 by autopoint (fixes #132996)
25050 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
25052 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
25053 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
25054 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
25055 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
25058 2004-02-11 David Schleef <ds@schleef.org>
25060 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
25061 (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
25062 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
25063 (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
25064 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
25065 (gst_jpegenc_class_init), (gst_jpegenc_init),
25066 (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
25067 (gst_jpegenc_chain), (gst_jpegenc_set_property),
25068 (gst_jpegenc_get_property): Fix negotiation. Add some properties.
25069 * ext/jpeg/gstjpegenc.h: Fix negotiation.
25071 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
25073 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
25074 (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
25075 * ext/mikmod/gstmikmod.h:
25076 fix caps negotiation in mikmod
25077 * ext/ogg/gstoggdemux.c: (gst_ogg_print):
25078 output debug information
25080 2004-02-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
25082 * gst-libs/gst/colorbalance/Makefile.am:
25083 * gst-libs/gst/navigation/Makefile.am:
25084 * gst-libs/gst/xoverlay/Makefile.am:
25085 remove unused GST_OPT_CFLAGS from Makefiles
25086 include X_CFLAGS and X_LIBS in xoverlay. (#131948)
25088 2004-02-07 David Schleef <ds@schleef.org>
25090 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
25091 push events to pads that haven't been created (#133508)
25093 2004-02-07 Jan Schmidt <thaytan@mad.scientist.com>
25095 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
25096 (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
25097 (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
25098 (gst_dvdec_loop), (gst_dvdec_change_state):
25099 Second attempt at committing a working dvdec element.
25101 2004-02-06 David Schleef <ds@schleef.org>
25103 Build fixes for OS X: (see #129600)
25104 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
25105 (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
25106 (gst_riff_read_strf_iavs):
25107 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
25108 (gst_avi_demux_stream_odml):
25109 * gst/playondemand/Makefile.am:
25110 * gst/rtp/rtp-packet.c:
25112 2004-02-05 David Schleef <ds@schleef.org>
25114 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
25115 last change, because it Just Doesn't Compile.
25117 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
25119 * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
25120 skip undecodable id3v2 tag instead of keeping it
25122 2004-02-05 David Schleef <ds@schleef.org>
25124 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
25125 Unref leaked buffer. (Noticed by Ronald)
25127 2004-02-05 David I. Lehn <dlehn@users.sourceforge.net>
25129 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
25130 Sync requires with other checks. >= vs =.
25132 2004-02-06 Jan Schmidt <thaytan@mad.scientist.com>
25134 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
25135 (gst_dvdec_video_link), (gst_dvdec_loop):
25136 * ext/dv/gstdvdec.h:
25137 rework the caps negotiation so that dvdec works again instead
25138 of just segfaulting.
25140 === release 0.7.4 ===
25142 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
25144 * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
25145 * configure.ac: changed for release
25147 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
25149 * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
25150 * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
25151 * pkgconfig/gstreamer-libs-uninstalled.pc.in:
25152 * pkgconfig/gstreamer-play-uninstalled.pc.in:
25153 reworked patch by David Lehn to fix libdir and includedir for
25154 uninstalled libraries
25155 removed play and gconf from gstreamer-libs since they have their
25156 own pkgconfig files
25158 2004-02-04 David Schleef <ds@schleef.org>
25160 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
25163 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
25165 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
25166 use correct GST_TAG_ENCODER tag
25168 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
25170 * ext/alsa/gstalsa.c: (gst_alsa_change_state):
25171 be sure to stop the clock when going to paused
25172 * sys/oss/gstosssink.c: (gst_osssink_change_state):
25173 reset number of transmitted when going to ready.
25176 2004-02-05 Charles Schmidt <cschmidt2@emich.edu>
25178 reviewed by Benjamin Otte
25180 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
25181 extract track count (fixes #133410)
25183 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
25185 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
25186 that should be !=, not == (fixes #132519)
25188 2004-02-04 David Schleef <ds@schleef.org>
25190 Make sure set_explicit_caps() is called before adding pad.
25191 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
25192 * gst/id3/gstid3types.c: (gst_id3types_loop):
25193 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
25194 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
25196 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
25199 bump nano to 2, first prerelease
25200 put back AM_PROG_LIBTOOL
25202 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
25204 * testsuite/alsa/Makefile.am:
25205 these are user test apps, not automatic testsuite tests
25207 2004-02-04 David Schleef <ds@schleef.org>
25209 Convert GST_DEBUG_CAPS() to GST_DEBUG():
25210 * gst/mpeg1videoparse/gstmp1videoparse.c:
25211 (mp1videoparse_parse_seq):
25212 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
25213 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
25214 * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
25215 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
25216 (gst_xvideosink_getcaps):
25217 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25218 * testsuite/gst-lint: more tests
25220 2004-02-04 David Schleef <ds@schleef.org>
25222 Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
25223 with the code that they would expand to.
25224 * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
25225 (gst_flacdec_get_src_query_types),
25226 (gst_flacdec_get_src_event_masks):
25227 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
25228 (gst_gnomevfssrc_get_query_types),
25229 (gst_gnomevfssrc_get_event_mask):
25231 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
25233 * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
25234 (gst_sinesrc_dispose):
25235 fix memleak by properly disposing sinesrc
25237 2004-02-04 Julien MOUTTE <julien@moutte.net>
25239 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
25240 * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
25241 an overlay to redraw the image because it has been exposed.
25242 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
25243 (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
25244 (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
25245 * sys/ximage/ximagesink.h: Implement expose method from XOverlay
25247 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
25248 (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
25249 (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
25250 * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
25253 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
25255 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
25256 more memleak fixage
25258 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
25260 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
25261 * gst/typefind/gsttypefindfunctions.c:
25262 fix memleaks shown by gst-typefind
25264 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
25266 * common/glib-gen.mak:
25267 add hack rule to touch .Plo files
25268 * gst-libs/gst/colorbalance/Makefile.am:
25269 * gst-libs/gst/mixer/Makefile.am:
25270 * gst-libs/gst/play/Makefile.am:
25271 * gst-libs/gst/tuner/Makefile.am:
25272 remove glib_root variable
25274 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
25276 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
25277 set explicit caps before adding the element, so the autopluggers can
25279 * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
25280 (mpeg2_sys_type_find), (mpeg1_sys_type_find),
25281 (mpeg_video_type_find), (mpeg_video_stream_type_find),
25283 fix memleaks in typefind functions. gst_type_find_suggest takes a const
25286 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
25288 * gst-libs/gst/colorbalance/Makefile.am:
25289 * gst-libs/gst/colorbalance/colorbalance-marshal.list:
25290 * gst-libs/gst/colorbalance/colorbalance.c:
25291 * gst-libs/gst/colorbalance/colorbalance.h:
25292 * gst-libs/gst/colorbalance/colorbalancemarshal.list:
25293 * gst-libs/gst/mixer/Makefile.am:
25294 * gst-libs/gst/mixer/mixer-marshal.list:
25295 * gst-libs/gst/mixer/mixer.c:
25296 * gst-libs/gst/mixer/mixer.h:
25297 * gst-libs/gst/mixer/mixermarshal.list:
25298 * gst-libs/gst/play/Makefile.am:
25299 * gst-libs/gst/play/play.h:
25300 * gst-libs/gst/tuner/Makefile.am:
25301 * gst-libs/gst/tuner/tuner-marshal.list:
25302 * gst-libs/gst/tuner/tuner.c:
25303 * gst-libs/gst/tuner/tuner.h:
25304 * gst-libs/gst/tuner/tunermarshal.list:
25305 use new glib-gen.mak snippet to clean up Makefile.am
25306 fix various bugs in Makefile.am's
25308 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
25310 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
25311 handle chain parsing correctly in the multichain case
25312 * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
25313 (theora_dec_from_granulepos), (theora_dec_to_granulepos),
25314 (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
25315 (theora_dec_chain):
25316 handle events and queries correctly
25318 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
25321 Ignore generated file _stdint.h.
25323 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
25325 * gst-libs/gst/colorbalance/Makefile.am:
25326 * gst-libs/gst/colorbalance/colorbalance.h:
25327 * gst-libs/gst/mixer/Makefile.am:
25328 * gst-libs/gst/mixer/mixer.h:
25329 * gst-libs/gst/play/Makefile.am:
25330 * gst-libs/gst/play/play.h:
25331 * gst-libs/gst/tuner/Makefile.am:
25332 * gst-libs/gst/tuner/tuner.h:
25333 Generate enum type code with glib-mkenums.
25334 * gst-libs/gst/colorbalance/.cvsignore:
25335 * gst-libs/gst/mixer/.cvsignore:
25336 * gst-libs/gst/play/.cvsignore:
25337 * gst-libs/gst/tuner/.cvsignore:
25338 Ignore generated files.
25340 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
25342 * gst-libs/gst/audio/.cvsignore:
25343 Ignore generated file.
25344 * gst-libs/gst/audio/Makefile.am:
25345 Do not install example filter.
25347 2004-02-03 David I. Lehn <dlehn@users.sourceforge.net>
25349 * examples/switch/.cvsignore:
25350 Ignore generated file.
25352 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
25354 * common/m4/ax_create_stdint_h.m4:
25356 add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
25359 remove generated _stdint.h in DISTCLEANFILES
25360 * ext/a52dec/gsta52dec.c:
25361 include _stdint.h for a52dec. (should fix #133064)
25363 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
25365 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
25366 (gst_tag_to_vorbis_comments):
25367 Add replaygain support to vorbistag
25369 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr>
25370 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
25371 (gst_ffmpeg_caps_to_extradata):
25372 Fix SVQ3 caps flag properties
25373 Use glib macro for bytes swap
25375 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
25377 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
25378 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
25379 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
25380 * ext/sndfile/gstsf.c: (plugin_init):
25381 * gst/avi/gstavi.c: (plugin_init):
25382 * sys/dxr3/dxr3init.c: (plugin_init):
25383 * sys/oss/gstossaudio.c: (plugin_init):
25384 * sys/v4l/gstv4l.c: (plugin_init):
25385 * sys/v4l2/gstv4l2.c: (plugin_init):
25386 remove textdomain calls
25388 update Dutch translation
25390 2004-02-02 Julien MOUTTE <julien@moutte.net>
25392 * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
25393 (gst_play_set_audio_sink): Moving volume in the audio thread for
25394 instantaneous volume change. Maybe i will add another volume in front
25395 of visualization later, not sure yet though.
25397 2004-02-02 Julien MOUTTE <julien@moutte.net>
25399 * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
25400 (gst_ximagesink_handle_xevents): Better X events handling, only take
25401 the latest events for configure and motion.
25402 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
25404 2004-02-02 Jon Trowbridge <trow@gnu.org>
25406 reviewed by: David Schleef <ds@schleef.org>
25409 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
25410 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
25412 2004-02-02 David Schleef <ds@schleef.org>
25414 code cleanup. Change bzero() to memset(). Remove duplicate ; at ends
25416 * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
25417 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
25418 * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
25419 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
25420 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
25421 * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
25422 * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
25423 * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
25424 (gst_float2_2_int_link):
25425 * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
25426 * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
25427 * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
25428 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
25429 * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
25430 * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
25431 * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
25432 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
25433 * testsuite/gst-lint: Add tests for bzero and ;;
25435 2004-02-02 David Schleef <ds@schleef.org>
25437 * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
25439 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
25441 * ext/aalib/gstaasink.c: (gst_aasink_open):
25442 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
25443 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25444 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
25445 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
25446 (gst_afsink_close_file):
25447 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
25448 (gst_afsrc_close_file):
25449 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
25450 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
25451 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
25452 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
25453 * ext/esd/esdmon.c: (gst_esdmon_get):
25454 * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
25455 * ext/faac/gstfaac.c: (gst_faac_chain):
25456 * ext/faad/gstfaad.c: (gst_faad_chain):
25457 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
25458 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
25459 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
25460 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
25461 (gst_flacdec_loop):
25462 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
25463 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
25464 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
25465 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
25466 (gst_gnomevfssink_close_file):
25467 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
25468 (gst_gnomevfssrc_open_file):
25469 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
25470 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
25471 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
25472 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
25473 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
25474 * ext/mad/gstmad.c: (gst_mad_chain):
25475 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
25476 * ext/mpeg2dec/gstmpeg2dec.c:
25477 * ext/mpeg2enc/gstmpeg2enc.cc:
25478 * ext/mplex/gstmplex.cc:
25479 * ext/mplex/gstmplexibitstream.cc:
25480 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
25481 (gst_ogg_demux_push):
25482 * ext/raw1394/gstdv1394src.c:
25483 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
25484 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
25485 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
25487 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
25488 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
25489 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
25490 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
25491 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
25492 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
25493 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
25494 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
25495 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
25496 (gst_riff_read_element_data), (gst_riff_read_seek),
25497 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
25498 * gst/adder/gstadder.c: (gst_adder_loop):
25499 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
25500 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
25501 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
25502 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
25503 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
25504 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
25505 * gst/goom/gstgoom.c: (gst_goom_chain):
25506 * gst/id3/gstid3types.c: (gst_id3types_loop):
25507 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
25508 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
25509 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
25510 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
25511 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
25512 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
25513 (gst_ebml_read_float), (gst_ebml_read_header):
25514 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
25515 (gst_matroska_demux_parse_blockgroup):
25516 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
25517 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
25518 * gst/oneton/gstoneton.c: (gst_oneton_chain):
25519 * gst/silence/gstsilence.c: (gst_silence_get):
25520 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
25521 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
25522 * gst/speed/gstspeed.c: (speed_loop):
25523 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
25524 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
25525 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
25526 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
25527 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
25528 (gst_wavparse_loop):
25529 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
25530 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
25531 (dxr3audiosink_close):
25532 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
25533 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
25534 (dxr3videosink_close), (dxr3videosink_write_data):
25535 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
25536 * sys/oss/gstosssink.c: (gst_osssink_chain):
25537 * sys/oss/gstosssrc.c: (gst_osssrc_get):
25538 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
25539 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
25540 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
25541 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
25542 (gst_v4l_set_window), (gst_v4l_enable_overlay):
25543 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
25544 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
25545 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
25546 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
25547 (gst_v4l_set_audio):
25548 * sys/v4l/v4l_calls.h:
25549 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
25550 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
25551 (gst_v4lmjpegsink_playback_init),
25552 (gst_v4lmjpegsink_playback_start):
25553 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
25554 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
25555 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
25556 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
25557 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
25558 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
25559 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
25560 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
25561 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
25562 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
25563 (gst_v4l2_get_output), (gst_v4l2_set_output),
25564 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
25565 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
25566 (gst_v4l2_set_attribute):
25567 * sys/v4l2/v4l2_calls.h:
25568 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
25569 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
25570 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
25571 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
25572 (gst_v4l2src_capture_stop):
25573 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
25574 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
25575 (gst_ximagesink_chain):
25576 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
25577 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
25578 (gst_xvideosink_xwindow_new):
25579 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
25580 (gst_xvimagesink_chain):
25582 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
25584 * gst/volume/gstvolume.c: (gst_volume_set_volume),
25585 (gst_volume_get_volume), (volume_class_init), (volume_init),
25586 (volume_chain_int16), (volume_update_volume):
25587 * gst/volume/gstvolume.h:
25588 make code more readable by removing magic numbers
25589 make mixer interface export 0-100 range
25590 make it internally map to 0.0-1.0 range so users don't distort
25591 output by putting the sliders at full volume
25593 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
25595 * gst-libs/gst/play/play.c: (gst_play_tick_callback),
25596 (gst_play_state_change), (gst_play_seek_to_time):
25597 block the tick callback for 0.5 secs after doing a seek
25599 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
25601 * gst-libs/gst/play/play.c: (gst_play_new):
25604 2004-02-01 Julien MOUTTE <julien@moutte.net>
25606 * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
25607 (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
25608 * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
25609 (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
25610 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
25611 (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
25613 2004-02-01 Thomas Vander Stichele <thomas at apestaart dot org>
25616 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25617 check for a function added in vorbis 1.1
25619 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
25621 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
25622 (gst_alsa_drain_audio), (gst_alsa_stop_audio):
25623 really start/stop clock only on PLAYING <=> PAUSED
25624 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
25625 remove \n from debugging lines
25626 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
25627 make it work when seeking does not
25628 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25631 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
25633 * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
25634 start clock on PAUSED=>PLAYING, not later
25635 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
25636 extract correct time for different discont formats
25637 (gst_alsa_sink_get_time):
25638 don't segfault when no format is negotiated yet, just return 0
25639 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
25640 (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
25641 (gst_ogg_pad_push):
25642 handle flush and discont events correctly
25643 * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
25644 handle discont events correctly
25646 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
25648 * gst-libs/gst/play/play.c: (gst_play_error_quark),
25649 (gst_play_error_create), (gst_play_error_plugin),
25650 (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
25651 * gst-libs/gst/play/play.h:
25652 add error handling during creation
25653 * examples/gstplay/player.c: (main):
25654 use new gst_play_new
25657 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
25659 * ext/theora/theoradec.c: (theora_dec_chain):
25661 * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
25662 (vorbis_dec_src_event), (vorbis_dec_chain):
25663 add encoder tag, fix tag reading to be more error tolerant, change
25664 BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
25665 gst_pad_event_default.
25666 * gst/tags/gstvorbistag.c:
25667 (gst_tag_list_from_vorbiscomment_buffer):
25668 undefine function specific define at end of function
25670 2004-01-31 Jeremy Simon <jesimon@libertysurf.fr>
25672 * ext/flac/gstflac.c: (plugin_init):
25673 * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
25674 * ext/flac/gstflacdec.h:
25675 * ext/flac/gstflacenc.h:
25678 2004-01-30 David I. Lehn <dlehn@users.sourceforge.net>
25680 * examples/gstplay/player.c: s/gstplay.h/play.h/
25682 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
25684 * gst-libs/gst/play/Makefile.am:
25685 * gst-libs/gst/play/gstplay.c:
25686 * gst-libs/gst/play/gstplay.h:
25687 * gst-libs/gst/play/play.c:
25688 more surgery, operation complete
25690 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
25692 * gst-libs/gst/play/play.old.c:
25693 * gst-libs/gst/play/play.old.h:
25694 after CVS surgery by moving, remove
25695 * gst-libs/gst/play/playpipelines.c:
25698 * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
25699 add negotiation error
25701 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
25703 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
25704 (gst_ogg_demux_push):
25705 add some seeking debug info
25706 send a flush when seeking
25708 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
25714 * ext/theora/Makefile.am:
25715 * ext/theora/theoradec.c:
25716 add theora video decoder. Does just do simple decoding for now and
25717 has been tested against Theora cvs only. It only works when theora
25718 is compiled with --enable-static.
25719 * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
25720 always reset packetno on DISCONT
25722 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
25724 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
25727 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
25729 * gst/mpegaudioparse/gstmpegaudioparse.c:
25730 (mp3_type_frame_length_from_header):
25731 Fix header parsing - stolen from ffmpeg (thank you! :) ).
25733 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
25735 * ext/esd/esdsink.c: (gst_esdsink_init):
25736 Since we have static pad template caps, we don't need to negotiate;
25737 either the core errors out or we know the format.
25739 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
25741 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
25742 (gst_riff_read_seek):
25743 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
25744 (gst_ebml_read_seek):
25745 Fix event handling.
25747 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
25749 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
25750 removee video/x-theora from vp3 decoder, it doesn't handle raw
25752 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
25753 fix bug with finalizing element that never went to PAUSED
25754 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
25755 length and position queries were swapped
25756 * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
25757 (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
25758 (vorbis_dec_src_event):
25759 implement querying time and bytes
25761 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
25763 * just about every source file:
25764 gst_element_error -> GST_ELEMENT_ERROR
25766 2004-01-29 Julien MOUTTE <julien@moutte.net>
25768 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
25769 emiting FLUSH and even before DISCONT.
25770 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
25771 get the best instant seeking as possible yay!
25773 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
25775 * gst/mpeg1videoparse/gstmp1videoparse.c:
25776 (gst_mp1videoparse_real_chain):
25777 Committed wrong version last week... Grr... Didn't notice until now.
25779 2004-01-29 Julien MOUTTE <julien@moutte.net>
25781 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
25782 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
25783 have_xwindow_id signal in xwindow_create.
25785 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
25787 * ext/ogg/gstoggdemux.c:
25788 lots of changes - mainly support for chained bitstreams, seeking,
25789 querying and bugfixes of course
25790 * ext/vorbis/Makefile.am:
25791 * ext/vorbis/vorbisdec.c:
25792 * ext/vorbis/vorbisdec.h:
25793 add vorbisdec raw vorbis decoder
25794 * ext/vorbis/vorbis.c: (plugin_init):
25795 register vorbisdec as PRIMARY, vorbisfile as SECONDARY
25796 * gst/intfloat/Makefile.am:
25797 * gst/intfloat/float22int.c:
25798 * gst/intfloat/float22int.h:
25799 * gst/intfloat/gstintfloatconvert.c: (plugin_init):
25800 add float2intnew plugin. It converts multichannel interleaved float to
25801 multichannel interleaved int. The name should probably be changed.
25802 * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
25804 add typefinding for raw theora video so oggdemux can detect it.
25806 2004-01-28 Julien MOUTTE <julien@moutte.net>
25808 * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
25809 sink element first.
25810 * gst/videoscale/gstvideoscale.c:
25811 (gst_videoscale_handle_src_event): Fixing src event handler.
25813 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
25815 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
25816 (gst_v4lsrc_open), (gst_v4lsrc_close),
25817 (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
25818 (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
25819 * sys/v4l/gstv4lsrc.h:
25820 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
25821 (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
25822 Implement resizing... Hack. But that's why v4l is b0rked...
25824 2004-01-28 Julien MOUTTE <julien@moutte.net>
25826 * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
25827 (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
25828 (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
25829 (gst_ximagesink_xwindow_destroy):
25830 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
25831 (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
25832 (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
25833 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
25834 (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
25835 correctly cleaning the image created to check xshm calls on succes,
25836 added a lot of XSync calls in X11 functions, and fixed a segfault when
25837 no image format was defined before negotiation happened.
25839 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
25841 * ext/alsa/gstalsa.c: (gst_alsa_query_func):
25842 use gst_element_get_time to get correct time
25844 2004-01-28 Julien MOUTTE <julien@moutte.net>
25846 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
25847 (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
25848 (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
25849 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
25850 (gst_xvimagesink_check_xshm_calls),
25851 (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
25852 X plugins are now able to detect that XShm calls will fail even if the
25853 server claims that it has XShm support (remote displays most of the
25854 time). We then log the error as a GST_DEBUG and set use_shm to FALSE
25855 so that we use non XShm functions. This feature is almost useless for
25856 xvimagesink as Xv is not supported on remote displays anyway, but
25857 it might happen than even on the local display XShm calls fail.
25859 2004-01-27 David Schleef <ds@schleef.org>
25861 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
25862 (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
25863 (gst_esdsink_change_state): Fix sync issues in esdsink. Also
25864 changed esdsink to only use 44100,16,2, since esd sucks at rate
25865 conversion and esdsink has had difficulty negotiating.
25867 2004-01-27 Julien MOUTTE <julien@moutte.net>
25869 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
25870 (gst_play_seek_to_time): Fixing the way to get current position.
25872 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
25874 * sys/oss/gstosssink.c: (gst_osssink_sink_query):
25875 use gst_element_get_time to get correct time
25877 2004-01-27 Julien MOUTTE <julien@moutte.net>
25879 * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
25880 fix ever... Inverting 2 lines of code make spider autoplug correctly
25883 2004-01-27 David Schleef <ds@schleef.org>
25885 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25886 Use gst_pad_try_set_caps_nonfixed().
25888 2004-01-27 David Schleef <ds@schleef.org>
25890 * gst/ac3parse/gstac3parse.c: update to checklist 5
25891 * gst/adder/gstadder.c: rewrite negotiation. update to checklist 5
25892 * gst/audioconvert/gstaudioconvert.c: update to checklist 5
25893 * gst/audioscale/gstaudioscale.c: same
25894 * gst/auparse/gstauparse.c: same
25895 * gst/avi/gstavidemux.c: same
25897 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
25899 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
25900 stop processing after EOS
25902 2004-01-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
25904 * gst/asfdemux/asfheaders.h:
25905 * gst/asfdemux/gstasfdemux.c:
25906 * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
25907 (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
25908 (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
25909 lot's of fixes to make data extraction simpler and get the code
25910 architecture and compiler independant. Add debugging category
25911 * gst/goom/gstgoom.c: (gst_goom_change_state):
25912 reset channel count on PAUSED=>READY, not READY=>PAUSED
25914 2004-01-26 Colin Walters <walters@verbum.org>
25916 * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
25917 code to pull a bigger buffer in iradio mode. This as a side effect
25918 makes typefinding work.
25920 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
25922 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
25923 Fix SVQ3 decoding on PPC
25925 2004-01-26 Julien MOUTTE <julien@moutte.net>
25927 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
25928 that one managed to stay there... Fixed.
25930 2004-01-26 Jeremy Simon <jesimon@libertysurf.fr>
25932 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
25933 (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
25934 * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
25935 (qtdemux_video_caps):
25936 * gst/qtdemux/qtdemux.h:
25937 Add SVQ3 specific flags to qtdemux and ffmpeg
25939 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
25941 * gst-libs/gst/audio/audio.h:
25942 remove buffer-frames from audio caps
25943 * gst/audioconvert/gstaudioconvert.c:
25944 fix plugin to really work.
25946 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
25948 * gst-libs/gst/mixer/mixer.c:
25949 * gst-libs/gst/propertyprobe/propertyprobe.c:
25950 * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
25951 (gst_tuner_find_channel_by_name):
25952 * gst-libs/gst/tuner/tuner.h:
25953 Add gtk-doc style comments. Also fix a function name.
25955 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
25957 * ext/divx/gstdivxdec.c: (gst_divxdec_init),
25958 (gst_divxdec_negotiate):
25959 Fix for new capsnego - also fixes gst-player with divxdec.
25961 2004-01-25 Julien MOUTTE <julien@moutte.net>
25963 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
25964 (gst_play_identity_handoff), (gst_play_set_location),
25965 (gst_play_set_visualization), (gst_play_connect_visualization): Another
25966 try in visualization implementation. Still have an issue with switch
25967 blocking when pulling from video_queue and only audio comes out of
25969 * gst/switch/gstswitch.c: (gst_switch_release_pad),
25970 (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
25971 release method. And check if the pad is usable before pulling.
25973 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
25975 * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
25976 (gst_videobalance_init),
25977 (gst_videobalance_colorbalance_list_channels),
25978 (gst_videobalance_colorbalance_set_value),
25979 (gst_videobalance_colorbalance_get_value),
25980 (gst_videobalance_update_properties),
25981 (gst_videobalance_update_tables_planar411),
25982 (gst_videobalance_planar411):
25983 * gst/videofilter/gstvideobalance.h:
25984 Implement lookup-tables. +/- 10x faster.
25986 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
25988 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
25989 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
25990 The index reading was broken. The rest worked fine, but the whole
25991 goal of my rewrite was to make avidemux readable, and this was
25992 not at all readable. Please use typed variables.
25994 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
25996 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
25997 Additional pad usability check.
25998 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
25999 (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
26000 (gst_mp1videoparse_real_chain):
26001 Fix MPEG video stream parsing. The original plugin had several
26002 issues, including not timestamping streams where the source was
26003 not timestamped (this happens with PTS values in mpeg system
26004 streams, but MPEG video is also a valid stream on its own so
26005 that needs timestamps too). We use the display time code for that
26006 for now. Also, if one incoming buffer contains multiple valid
26007 frames, we push them all on correctly now, including proper EOS
26008 handling. Lastly, several potential segfaults were fixed, and we
26009 properly sync on new sequence/gop headers to include them in next,
26010 not previous frames (since they're header for the next frame, not
26011 the previous). Also see #119206.
26012 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
26014 Move caps setting so we only do it after finding several valid
26015 MPEG-1 fraes sequentially, not right after the first one (which
26016 might be coincidental).
26017 * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
26018 (mpeg_video_type_find), (mpeg_video_stream_type_find),
26020 Add unsynced MPEG video stream typefinding, and change some
26021 probability values so we detect streams rightly. The idea is as
26022 follows: I can have an unsynced system stream which contains
26023 video. In the current code, I would randomly get a type for either
26024 system or video stream type found, because the probabilities are
26025 being calculated rather randomly. I now use fixed values, so we
26026 always prefer system stream if that was found (and that is how it
26027 should be). If no system stream was found, we can still identity the stream as video-only.
26029 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
26031 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
26032 (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
26033 don't write to buffer. Extract data without the need of
26034 __attribute__ ((packed))
26036 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26038 * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
26039 (mpeg1_sys_type_find):
26040 Fix MPEG-1 stream typefinding.
26042 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26044 * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
26045 Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
26047 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
26049 * ext/esd/esdsink.c: (gst_esdsink_open_audio):
26050 * ext/esd/gstesd.c: (plugin_init):
26051 private debugging, better error reporting
26053 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26055 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
26056 (gst_riff_read_init), (gst_riff_read_change_state):
26057 * gst-libs/gst/riff/riff-read.h:
26058 Remove stuff fromold metadata system.
26060 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26062 * ext/ogg/gstoggdemux.c:
26063 Fix wrong file comment.
26064 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
26065 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
26066 Add metadata reading properly.
26068 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
26071 Fix nas DIST_SUBDIRS
26073 Fix bug where make distcheck doesn't get run on adding stuff to
26076 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
26078 * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
26079 * ext/divx/gstdivxdec.h:
26080 Fix divx3 ("msmpeg4") playback using divxdec.
26082 2004-01-23 Benjamin Otte <in7y118@public.uni-hamburg.de>
26084 * gst/typefind/gsttypefindfunctions.c:
26085 (mp3_type_frame_length_from_header): fix bug in length computation
26086 (mp3_type_find): improve debugging output
26088 2004-01-23 Julien MOUTTE <julien@moutte.net>
26090 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
26091 (gst_play_set_location), (gst_play_seek_to_time),
26092 (gst_play_set_audio_sink), (gst_play_set_visualization),
26093 (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
26094 the pipeline from scratch. Visualization is back and switch went out as
26095 i realized it was not possible to use the way i wanted.
26096 * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
26097 (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
26098 clearing in state change from READY to NULL. So that one can clean the
26099 X ressources keeping the element.
26100 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26101 (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
26102 (gst_xvimagesink_colorbalance_set_value),
26103 (gst_xvimagesink_colorbalance_get_value),
26104 (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
26105 (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
26106 change from READY to NULL and fixed some stupid bugs in colorbalance
26107 get/set values. Also added the following feature : when nobody tries to
26108 set some values to the colorbalance levels before the xcontext is
26109 grabbed, then when creating channels list from Xv attributes we set the
26110 internal values to the Xv defaults. This way we handle buggy Xv drivers
26111 that set default hue values far from the middle of the range (Thanks
26112 to Jon Trowbridge for pointing that issue).
26113 * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
26114 colorbalance levels have been set before xcontext is grabbed.
26116 2004-01-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
26118 * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
26119 Fix the ossmixer case where we shouldn't open /dev/dsp* because
26120 it might block operations (which is bad for a mixer).
26122 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
26124 * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
26125 (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
26126 (gmip_find_type_pre):
26127 * gst-libs/gst/media-info/media-info-priv.h:
26128 * gst-libs/gst/media-info/media-info.c:
26129 (gst_media_info_instance_init), (gst_media_info_read_idler):
26130 add fakesink to get caps on decoder src pad again
26131 fix callback prototype to match new have_type signal signature
26133 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
26135 * gst/adder/gstadder.c: (gst_adder_link):
26136 fix non-compile and cut-n-paste code
26138 2004-01-21 David Schleef <ds@schleef.org>
26140 * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
26141 (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
26142 (gst_swfdec_init), (gst_swfdec_change_state):
26143 * ext/swfdec/gstswfdec.h:
26145 * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
26146 (gst_adder_request_new_pad): Fix negotiation.
26147 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
26148 Add a fixate function.
26149 * gst/intfloat/gstfloat2int.c:
26150 * gst/intfloat/gstfloat2int.h:
26151 * gst/intfloat/gstint2float.c:
26152 * gst/intfloat/gstint2float.h:
26153 Completely rewrite the negotiation. Doesn't quite work yet,
26154 due to some buffer-frames problem.
26156 2004-01-21 Thomas Vander Stichele <thomas at apestaart dot org>
26158 * ext/gnomevfs/gstgnomevfssrc.c:
26159 * sys/v4l2/v4l2_calls.h:
26160 fix includes for distcheck
26162 2004-01-21 Christian Schaller <uraeus@gnome.org>
26165 Add libnas (network audio system) plugin, patch from Arwed von Merkatz
26166 based on earlier patch from Laurent Vivier
26168 2004-01-20 Jeremy Simon <jesimon@libertysurf.fr>
26170 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
26171 Fix wma caps property
26172 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
26173 Fix typo (flags1 and flags2)
26175 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
26177 * gst-libs/gst/media-info/media-info-priv.c:
26178 (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
26179 (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
26180 (gmip_find_stream), (gmip_find_track_metadata),
26181 (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
26182 (gmip_find_track_format):
26183 * gst-libs/gst/media-info/media-info-priv.h:
26184 * gst-libs/gst/media-info/media-info-test.c: (main):
26185 * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
26186 (gst_media_info_read_idler), (gst_media_info_read):
26187 * gst-libs/gst/media-info/media-info.h:
26188 register debugging category and use it for debugging
26190 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
26192 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
26193 (gst_vorbisfile_new_link):
26194 signal streaminfo through tags
26196 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
26198 * ext/mplex/gstmplex.cc:
26199 * ext/mplex/gstmplexibitstream.cc:
26200 g++ doesn't like NULL in our i18n/error macros, should be
26201 either (NULL) or ("").
26203 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
26205 * sys/dxr3/dxr3audiosink.c:
26206 * sys/dxr3/dxr3init.c:
26207 * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
26208 * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
26209 Fix more error error error errors (missing includes here).
26211 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
26213 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
26214 fix thomas' error errors.
26216 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
26218 * ext/mpeg2enc/gstmpeg2enc.cc:
26221 2004-01-20 Ronald Bultje <rbultje@ronald.bitfreak.net>
26223 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
26224 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
26225 Fix for new error system.
26227 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
26229 * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
26230 fix for new error reporting
26232 2004-01-20 David Schleef <ds@schleef.org>
26234 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
26235 (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
26236 (gst_ximagesink_set_xwindow_id): Change to using a framerate
26237 of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
26238 and neither is 100+, most likely.
26239 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
26240 (gst_xvimagesink_getcaps): same
26242 2004-01-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
26245 Up version requirement to 2.0.3 (not yet released) to avoid symbol
26246 clashes with ffmpeg.
26248 2004-01-20 Julien MOUTTE <julien@moutte.net>
26250 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
26251 (gst_switch_init): Fixed switch element : proxying link and setting
26252 caps from src to sink on request.
26254 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26256 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
26257 * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
26258 (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
26261 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26263 * sys/v4l/v4l_calls.h:
26264 * sys/v4l2/v4l2_calls.h:
26265 element_error fixes
26267 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26269 * gst-libs/gst/gst-i18n-plugin.h:
26271 remove config.h inclusion
26273 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26276 adding autopoint invocation
26279 * gst-libs/gst/gettext.h:
26280 adding gettext bits
26281 * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
26282 * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
26283 * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
26284 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
26285 (gst_gnomevfssink_close_file):
26286 * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
26287 * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
26288 * gst-libs/gst/gst-i18n-plugin.h:
26289 * gst/avi/gstavi.c: (plugin_init):
26290 * sys/dxr3/dxr3init.c: (plugin_init):
26291 * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
26292 * sys/oss/gstossaudio.c: (plugin_init):
26293 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
26294 * sys/v4l/gstv4l.c: (plugin_init):
26295 * sys/v4l/v4l_calls.c: (gst_v4l_open):
26296 * sys/v4l2/gstv4l2.c: (plugin_init):
26297 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
26298 (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
26299 (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
26300 (gst_v4l2_set_output), (gst_v4l2_get_frequency),
26301 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
26302 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
26303 make sure locale and translation domain are set
26304 fix translated strings
26310 put translation files into place
26311 * sys/xvideo/imagetest.c: (main):
26312 * ext/dv/demo-play.c: (main):
26313 fix unnecessary translations
26315 2004-01-19 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
26317 * ext/sndfile/gstsf.c:
26318 * gst/avi/gstavimux.c:
26319 * ext/audiofile/gstafsink.c:
26320 * ext/audiofile/gstafsrc.c:
26321 * ext/gnomevfs/gstgnomevfssink.c:
26322 * ext/gnomevfs/gstgnomevfssrc.c:
26323 * sys/oss/gstosselement.c:
26324 * sys/v4l/v4l_calls.h:
26327 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26329 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
26330 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
26331 (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
26332 (gst_v4l2_get_output), (gst_v4l2_set_output),
26333 (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
26334 (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
26335 (gst_v4l2_set_attribute):
26336 update to new error handling
26338 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26340 * ext/sidplay/gstsiddec.cc:
26341 * gst/modplug/gstmodplug.cc:
26342 parenthese NULL because C++ seems angry about it
26344 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
26346 * gst-libs/gst/gst-i18n-plugin.h:
26347 add skeleton i18n stuff, but needs to be further implemented
26349 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
26351 * examples/gstplay/player.c: (main):
26352 * ext/aalib/gstaasink.c: (gst_aasink_open):
26353 * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
26354 * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
26355 * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
26356 * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
26357 (gst_afsink_close_file):
26358 * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
26359 (gst_afsrc_close_file):
26360 * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
26361 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
26362 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
26363 * ext/esd/esdmon.c: (gst_esdmon_get):
26364 * ext/esd/esdsink.c: (gst_esdsink_chain):
26365 * ext/faac/gstfaac.c: (gst_faac_chain):
26366 * ext/faad/gstfaad.c: (gst_faad_chain):
26367 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
26368 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
26369 * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
26370 * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
26371 (gst_flacdec_loop):
26372 * ext/flac/gstflacenc.c: (gst_flacenc_chain):
26373 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
26374 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
26375 * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
26376 (gst_gnomevfssink_close_file):
26377 * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
26378 (gst_gnomevfssrc_open_file):
26379 * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
26380 * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
26381 * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
26382 * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
26383 (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
26384 * ext/mad/gstmad.c: (gst_mad_chain):
26385 * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
26386 * ext/mpeg2dec/gstmpeg2dec.c:
26387 * ext/mpeg2enc/gstmpeg2enc.cc:
26388 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
26389 * ext/mplex/gstmplex.cc:
26390 * ext/mplex/gstmplexibitstream.cc:
26391 * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
26392 (gst_ogg_demux_push), (gst_ogg_pad_push):
26393 * ext/raw1394/gstdv1394src.c:
26394 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
26395 (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
26396 * ext/sidplay/gstsiddec.cc:
26397 * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
26399 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
26400 * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
26401 * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
26402 * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
26403 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
26404 * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
26405 * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
26406 * gst-libs/gst/Makefile.am:
26407 * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
26408 (gst_riff_read_element_data), (gst_riff_read_seek),
26409 (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
26410 * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
26411 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
26412 (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
26413 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
26414 (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
26415 * gst/avi/gstavimux.c: (gst_avimux_stop_file):
26416 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
26417 * gst/goom/gstgoom.c: (gst_goom_chain):
26418 * gst/id3/gstid3types.c: (gst_id3types_loop):
26419 * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
26420 * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
26421 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
26422 (gst_ebml_read_element_length), (gst_ebml_read_element_data),
26423 (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
26424 (gst_ebml_read_float), (gst_ebml_read_header):
26425 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
26426 (gst_matroska_demux_parse_blockgroup):
26427 * gst/modplug/gstmodplug.cc:
26428 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
26429 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
26430 * gst/oneton/gstoneton.c: (gst_oneton_chain):
26431 * gst/silence/gstsilence.c: (gst_silence_get):
26432 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
26433 * gst/smpte/gstsmpte.c: (gst_smpte_loop):
26434 * gst/speed/gstspeed.c: (speed_loop):
26435 * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
26436 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
26437 * gst/volenv/gstvolenv.c: (gst_volenv_chain):
26438 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
26439 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
26440 (gst_wavparse_loop):
26441 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
26442 (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
26443 (dxr3audiosink_close):
26444 * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
26445 * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
26446 (dxr3videosink_close), (dxr3videosink_write_data):
26447 * sys/oss/gstosselement.c: (gst_osselement_open_audio):
26448 * sys/oss/gstosselement.h:
26449 * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
26450 (gst_osssink_chain):
26451 * sys/oss/gstosssrc.c: (gst_osssrc_get):
26452 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
26453 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
26454 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
26455 * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
26456 (gst_v4l_enable_overlay):
26457 * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
26458 (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
26459 (gst_v4l_get_frequency), (gst_v4l_set_frequency),
26460 (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
26461 (gst_v4l_set_audio):
26462 * sys/v4l/v4l_calls.h:
26463 * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
26464 (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
26465 (gst_v4lmjpegsink_playback_init),
26466 (gst_v4lmjpegsink_playback_start):
26467 * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
26468 (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
26469 (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
26470 (gst_v4lmjpegsrc_requeue_frame):
26471 * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
26472 (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
26473 (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
26474 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
26475 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
26476 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
26477 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
26478 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
26479 (gst_v4l2src_capture_stop):
26480 * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
26481 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
26482 (gst_ximagesink_chain):
26483 * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
26484 (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
26485 (gst_xvideosink_xwindow_new):
26486 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26487 (gst_xvimagesink_chain):
26488 use new error signal, function and categories
26490 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
26494 * ext/musicbrainz/gsttrm.c:
26495 * ext/musicbrainz/gsttrm.h:
26496 * ext/musicbrainz/Makefile.am:
26499 2004-01-18 Julien MOUTTE <julien@moutte.net>
26501 * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
26502 (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
26503 synchronous property for debugging.
26504 * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
26505 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26506 (gst_xvimagesink_set_property): Moving a pointer declaration to a
26507 smaller block, fixing indent.
26509 2004-01-16 David Schleef <ds@schleef.org>
26511 * gst/videofilter/gstvideobalance.c: Fix regression; changing a
26512 property affects the video stream.
26513 * sys/xvimage/xvimagesink.c:
26514 * sys/xvimage/xvimagesink.h:
26515 Add synchronous property for debugging. Should probably be
26516 disabled in non-CVS builds. Make sure that the Xv attribute
26517 exists before we set it (crash!). Fix a silly float bug that
26518 caused colorbalance to just not work.
26520 2004-01-17 Christian Schaller <Uraeus@gnome.org>
26522 * tools/gst-launch-ext.in - update for new plugins
26524 2004-01-16 David Schleef <ds@schleef.org>
26526 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
26527 already-freed caps.
26529 2994-01-16 Christian Schaller <Uraeus@gnome.org>
26531 * Update spec for new colorspace plugin and libcaca plugin
26532 * Fix compilation of libcaca plugin (clock -> id)
26534 2004-01-16 Julien MOUTTE <julien@moutte.net>
26536 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
26537 (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
26538 (gst_xvimagesink_set_xwindow_id),
26539 (gst_xvimagesink_colorbalance_set_value),
26540 (gst_xvimagesink_colorbalance_get_value),
26541 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
26542 (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
26543 correct colorbalance properties. They can now be set when the element
26544 is still in NULL state. The values will be committed to the Xv Port
26545 when xcontext is initialized.
26546 * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
26547 brightness int values in the GstXvImagesink structure.
26549 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
26551 * gst-libs/gst/Makefile.am:
26552 restructure so having local patches works easier.
26554 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
26556 * ext/mpeg2enc/Makefile.am:
26557 * ext/mpeg2enc/gstmpeg2enc.cc:
26558 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
26559 Bugfix with respect to EOS handling.
26561 2004-01-16 Ronald Bultje <rbultje@ronald.bitfreak.net>
26563 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
26564 Link with right caps (else, it segfaults).
26565 * ext/mplex/gstmplexjob.cc:
26566 Fix for slight API change in 1.6.1.93 release of mjpegtools.
26568 2004-01-15 David Schleef <ds@schleef.org>
26570 * gst-libs/gst/audio/Makefile.am:
26571 Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
26573 * gst-libs/gst/audio/gstaudiofilter.c:
26574 * gst-libs/gst/audio/gstaudiofilter.h:
26575 Add bytes_per_sample and size and n_samples calculation.
26576 * gst-libs/gst/audio/gstaudiofilterexample.c:
26577 Remove, now autogenerated.
26578 * gst-libs/gst/audio/gstaudiofiltertemplate.c:
26579 Moved from gstaudiofilterexample, object name changed, code added
26580 so that it actually works.
26581 * gst-libs/gst/audio/make_filter:
26582 Script to build an audiofilter subclass from the template.
26583 * gst/colorspace/Makefile.am:
26584 * gst/colorspace/yuv2yuv.c:
26585 Remove file, since it's GPL, and we don't use it.
26587 2004-01-15 Julien MOUTTE <julien@moutte.net>
26589 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
26590 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
26591 them use the buffer free function to test how the buffer was allocated.
26593 2004-01-15 David Schleef <ds@schleef.org>
26595 * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
26596 that handles osssink fallback.
26597 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
26598 (gst_audio_convert_getcaps):
26599 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
26600 Add audio/x-qdm2 for QDM2 audio.
26601 * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
26602 * gst/sine/gstsinesrc.h: Add example of how to implement tags.
26603 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
26604 Decrease minimum size to 16x16.
26605 * gst/wavparse/gstwavparse.c:
26606 Convert disabled pad template caps to new caps.
26607 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26608 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26609 (gst_xvimagesink_chain): Throw element error when display cannot
26610 be opened. Increase minimum framerate to 1.0. Check the data
26611 free function on a buffer to make sure it is the type we expect
26612 before manipulating it.
26614 2004-01-15 Julien MOUTTE <julien@moutte.net>
26616 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
26617 (gst_videobalance_colorbalance_set_value): Implement passthru if
26618 settings are in the middle.
26619 * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
26621 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26623 * gst/videofilter/Makefile.am:
26624 * gst/volume/Makefile.am:
26625 Since we use videofilter symbols, link to it.
26627 2004-01-15 Julien MOUTTE <julien@moutte.net>
26629 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
26630 mixer interface type to HARDWARE.
26631 * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
26633 * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
26634 * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
26635 * gst/volume/gstvolume.c: (gst_volume_interface_supported),
26636 (gst_volume_interface_init), (gst_volume_list_tracks),
26637 (gst_volume_set_volume), (gst_volume_get_volume),
26638 (gst_volume_set_mute), (gst_volume_mixer_init),
26639 (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
26640 (volume_init): Implementing mixer interface.
26641 * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
26642 * sys/oss/gstosselement.c: (gst_osselement_get_type),
26643 (gst_osselement_change_state): Removing some trailing commas in
26645 * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
26646 interface type to HARDWARE.
26647 * sys/v4l/gstv4lcolorbalance.c:
26648 (gst_v4l_color_balance_interface_init): Setting colorbalance interface
26650 * sys/v4l2/gstv4l2colorbalance.c:
26651 (gst_v4l2_color_balance_interface_init): Setting colorbalance
26652 interface type to HARDWARE.
26653 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
26654 same code than ximagesink for event handling.
26656 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26658 * ext/snapshot/Makefile.am:
26659 * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
26660 (gst_snapshot_chain):
26661 * ext/snapshot/gstsnapshot.h:
26662 This has to be a joke... Snapshot should be connected to a tee,
26663 colorspace element before it and EOS after that, where the other
26664 src of the tee receives normal data.
26665 The current way is *wrong*.
26667 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26669 * ext/hermes/gsthermescolorspace.c:
26670 Fix another compile error. Same as below.
26672 2004-01-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
26674 * gst/colorspace/gstcolorspace.c:
26675 * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
26676 (gst_colorspace_i420_to_yv12):
26677 Fix compiling... Didn't test if it actually works.
26679 2004-01-15 David Schleef <ds@schleef.org>
26682 * gst/colorspace/Makefile.am:
26683 * gst/colorspace/gstcolorspace.c:
26684 * gst/colorspace/gstcolorspace.h:
26685 * gst/colorspace/yuv2rgb.c:
26686 * gst/colorspace/yuv2rgb.h:
26687 Duplicate the ext/hermes colorspace plugin, and remove Hermes
26688 code and GPL code. Fix for new caps negotiation. Rewrite
26689 much of the format handling code, and some of the conversion
26690 code. Basically, rewrote almost everything. This element
26691 handles I420, YV12 to RGB conversions.
26692 * ext/hermes/Makefile.am:
26693 * ext/hermes/gsthermescolorspace.c:
26694 Rename colorspace to hermescolorspace. Fix negotiation issues.
26695 Remove non-Hermes related code. This element handles lots of
26696 RGB to RGB conversions, but no YUV.
26697 * ext/hermes/gstcolorspace.c:
26698 * ext/hermes/gstcolorspace.h:
26699 * ext/hermes/rgb2yuv.c:
26700 * ext/hermes/yuv2rgb.c:
26701 * ext/hermes/yuv2rgb.h:
26702 * ext/hermes/yuv2rgb_mmx16.s:
26703 * ext/hermes/yuv2yuv.c:
26704 * ext/hermes/yuv2yuv.h:
26707 2004-01-14 Colin Walters <walters@verbum.org>
26709 * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
26710 they've already been.
26712 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
26714 * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
26715 assume tag mode when pad is not connected
26717 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
26719 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26720 Don't update the time of the clock
26721 (gst_alsa_sink_loop):
26722 sync to the clock given to alsasink, not the own clock
26723 * sys/oss/gstosssink.c: (gst_osssink_chain):
26725 (gst_osssink_change_state):
26727 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
26728 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
26729 remove bogus code that made DISCONT events unhandled
26730 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
26731 explicitly case to double in _set_simple. (fixes 2nd warning in bug
26733 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
26734 (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
26735 (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
26736 convert g_warning because of wrong asf data to GST_WARNINGs (fixes
26737 2nd warning in bug #131502)
26739 2004-01-14 Julien MOUTTE <julien@moutte.net>
26741 * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
26742 (gst_videobalance_colorbalance_set_value),
26743 (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
26744 for colorbalance interface implementation.
26745 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
26746 (gst_ximagesink_set_property), (gst_ximagesink_get_property),
26747 (gst_ximagesink_dispose), (gst_ximagesink_init),
26748 (gst_ximagesink_class_init): Adding DISPLAY property.
26749 * sys/ximage/ximagesink.h: Adding display_name to store display.
26750 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26751 (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
26752 (gst_xvimagesink_dispose), (gst_xvimagesink_init),
26753 (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
26754 properties (they still need polishing though for gst-launch use : no
26755 xcontext yet, i ll do that tomorrow).
26756 * sys/xvimage/xvimagesink.h: Adding display_name to store display.
26758 2004-01-14 Julien MOUTTE <julien@moutte.net>
26760 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
26761 (gst_play_set_location), (gst_play_set_visualization): Preparing
26762 switch integration, adding videobalance in the pipeline.
26764 2004-01-14 Julien MOUTTE <julien@moutte.net>
26766 * gst-libs/gst/colorbalance/colorbalance.c:
26767 (gst_color_balance_class_init): Adding a default type.
26768 * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
26770 * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
26771 (gst_videobalance_dispose), (gst_videobalance_class_init),
26772 (gst_videobalance_init), (gst_videobalance_interface_supported),
26773 (gst_videobalance_interface_init),
26774 (gst_videobalance_colorbalance_list_channels),
26775 (gst_videobalance_colorbalance_set_value),
26776 (gst_videobalance_colorbalance_get_value),
26777 (gst_videobalance_colorbalance_init): Implementing colorbalance
26779 * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
26781 * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
26782 bug which was triggering a BadAccess X error when setting an overlay
26783 before pad was really negotiated.
26784 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
26785 Using the colorbalance type macro.
26787 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26789 * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
26790 (gst_flacenc_chain):
26791 handle tags correctly
26792 * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
26793 extract ID3v1 tags correctly
26795 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26797 * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
26799 Improve matroska typefinding for odd-typed headers...
26801 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26803 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
26804 Fix for using incremental number on padnames.
26806 2004-01-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
26808 * ext/divx/gstdivxdec.c:
26809 * ext/divx/gstdivxenc.c:
26810 Set category to divx4linux instead of divx (too generic).
26811 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
26812 (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
26813 (gst_wavparse_loop), (gst_wavparse_change_state):
26814 * gst/wavparse/gstwavparse.h:
26815 fix parsing of WAV files with non-standard fmt-tag size and fix
26816 skipping of unrecognized chunks... Someone please fix this thing
26817 to use rifflib so all this is automated.
26818 * sys/v4l/Makefile.am:
26819 * sys/v4l2/Makefile.am:
26820 Add X_CFLAGS because we depend on X (for overlay).
26822 2004-01-14 Jan Schmidt <thaytan@mad.scientist.com>
26824 * ext/mpeg2dec/gstmpeg2dec.c:
26825 Don't issue a timestamp unless we tagged the frame
26828 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26830 * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
26831 Query the audio element to get the time, not the clock. We're
26832 interested in the element's time here.
26834 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26836 * ext/aalib/gstaasink.c: (gst_aasink_chain):
26837 * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
26838 * ext/esd/esdsink.c: (gst_esdsink_chain):
26839 * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
26840 * ext/mas/massink.c: (gst_massink_chain):
26841 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
26842 * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
26843 (gst_matroska_demux_parse_metadata):
26844 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
26845 (gst_mpeg_parse_release_locks):
26846 * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
26847 * gst/udp/gstudpsink.c: (gst_udpsink_chain):
26848 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
26849 * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
26850 (gst_osssink_change_state):
26851 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
26852 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
26853 * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
26854 (gst_xvideosink_release_locks):
26855 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
26857 * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
26858 (gst_alsa_clock_stop):
26859 * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
26860 (gst_audio_clock_get_internal_time):
26861 simplify for use with new clocking code.
26862 * testsuite/alsa/Makefile.am:
26863 * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
26864 fix testsuite for new caps system
26866 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
26868 * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
26869 * ext/flac/gstflacenc.c: (add_one_tag):
26870 length is already host endian, no need to convert. Fixes playback of
26871 tagged files on PPC. (bug #128384)
26873 2004-01-13 Julien MOUTTE <julien@moutte.net>
26875 * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
26876 colorbalance interface stating if it is hardware based or software
26878 * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
26879 Removing a trailing comma.
26880 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26881 (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
26882 Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
26883 the documentation seems to be wrong on the -1000 to 1000 interval.
26885 2004-01-12 David Schleef <ds@schleef.org>
26887 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
26888 (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
26889 (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
26890 Fix negotiation. Add a bufferalloc function for the sink pad,
26891 and generally clean up some of the code.
26893 2004-01-12 Julien MOUTTE <julien@moutte.net>
26895 * gst-libs/gst/colorbalance/colorbalancechannel.c:
26896 (gst_color_balance_channel_dispose): Adding safety check in dispose
26898 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
26899 (gst_xvimagesink_xcontext_clear),
26900 (gst_xvimagesink_interface_supported),
26901 (gst_xvimagesink_colorbalance_list_channels),
26902 (gst_xvimagesink_colorbalance_set_value),
26903 (gst_xvimagesink_colorbalance_get_value),
26904 (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
26905 Adding colorbalance interface support to set XV parameters such as
26906 HUE, BRIGHTNESS, CONTRAST, SATURATION.
26907 * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
26910 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
26912 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
26913 (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
26914 (gst_audio_convert_init), (gst_audio_convert_set_property),
26915 (gst_audio_convert_get_property), (gst_audio_convert_chain),
26916 (gst_audio_convert_link),
26917 (gst_audio_convert_buffer_to_default_format),
26918 (gst_audio_convert_buffer_from_default_format), (plugin_init):
26919 - implement _getcaps and use it
26921 - remove float caps since no float conversion is actually done
26922 - remove properties and arguments that were to be used for rate
26925 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
26927 * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
26928 (gst_audio_structure_set_int):
26929 * gst-libs/gst/audio/audio.h:
26930 add helper functions for _getcaps matching the standard audio
26933 2004-01-12 David Schleef <ds@schleef.org>
26935 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
26936 Test that pad is negotiated before getting its caps.
26938 2004-01-12 Julien MOUTTE <julien@moutte.net>
26940 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
26941 analyzing the pads of an element the bin is mostly in READY state so
26942 no caps were negotiated. This helper function needs to work with
26943 _get_caps directly then. I was not freeing them though, added that to
26946 2004-01-12 Julien MOUTTE <julien@moutte.net>
26948 * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
26949 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
26950 direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
26951 than the free_func.
26953 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
26955 * sys/oss/gstossaudio.c: (plugin_init):
26956 * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
26957 * sys/oss/gstosselement.h:
26958 make an oss debugging category
26959 make failure more descriptive
26961 2004-01-11 David Schleef <ds@schleef.org>
26963 * ext/ffmpeg/gstffmpeg.c:
26964 * ext/ffmpeg/gstffmpegcodecmap.c:
26965 * ext/ffmpeg/gstffmpegdec.c:
26966 * ext/ffmpeg/gstffmpegenc.c:
26967 * ext/ffmpeg/gstffmpegprotocol.c:
26968 * ext/gdk_pixbuf/gstgdkanimation.c:
26969 * ext/jpeg/gstjpeg.c:
26970 * ext/libpng/gstpng.c:
26971 * ext/mpeg2dec/perftest.c:
26972 * ext/speex/gstspeex.c:
26973 * gst-libs/gst/resample/dtos.c:
26974 * gst/intfloat/gstintfloatconvert.c:
26975 * gst/oneton/gstoneton.c:
26976 * gst/rtjpeg/RTjpeg.c:
26977 * gst/rtp/gstrtp.c:
26978 * sys/dxr3/dxr3init.c:
26979 * sys/glsink/gstgl_nvimage.c:
26980 * sys/glsink/gstgl_pdrimage.c:
26981 * sys/glsink/gstglsink.c:
26982 * testsuite/gst-lint:
26983 Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
26985 2004-01-11 David Schleef <ds@schleef.org>
26987 * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
26988 * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
26989 * ext/gdk_pixbuf/gstgdkanimation.c:
26990 (gst_gdk_animation_iter_create_pixbuf):
26991 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
26992 (gst_gdk_pixbuf_chain):
26993 * ext/gdk_pixbuf/gstgdkpixbuf.h:
26994 * ext/jack/gstjack.c: (gst_jack_change_state):
26995 * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
26996 * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
26997 * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
26998 * gst/videofilter/gstvideofilter.c:
26999 (gst_videofilter_set_output_size):
27000 Remove all usage of gst_pad_get_caps(), and replace it with
27001 gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
27003 2004-01-11 David Schleef <ds@schleef.org>
27006 * ext/Makefile.am: Fixes to make ext/libcaca compile.
27007 * ext/divx/gstdivxdec.c:
27008 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
27009 (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
27010 handle images that span multiple buffers. Now work with both
27011 filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
27012 * ext/gdk_pixbuf/gstgdkpixbuf.h:
27013 * ext/libcaca/gstcacasink.h: Fixes needed due to recent
27014 video/video.h changes
27015 * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
27016 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
27017 (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
27018 of GstData free function.
27019 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
27022 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
27024 * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
27025 (gst_v4l2element_dispose), (gst_v4l2element_set_property),
27026 (gst_v4l2element_get_property):
27027 * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
27028 add norm, channel and frequency properties.
27029 * sys/v4l2/gstv4l2tuner.c:
27030 fixes for tuner interface changes
27031 * sys/v4l2/gstv4l2element.h:
27032 * sys/v4l2/gstv4l2src.c:
27033 * sys/v4l2/gstv4l2src.h:
27034 * sys/v4l2/v4l2src_calls.c:
27035 * sys/v4l2/v4l2src_calls.h:
27036 rework v4l2src to work with saa1734 cards and allow mmaped buffers.
27038 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
27040 * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
27041 (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
27042 (gst_tuner_channel_changed), (gst_tuner_norm_changed),
27043 (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
27044 * gst-libs/gst/tuner/tuner.h:
27045 GObjects aren't const.
27046 Add find_by_name functions.
27047 Add checks to _changed functions.
27048 * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
27049 (gst_v4l_tuner_get_norm):
27052 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
27054 * gst-libs/gst/video/video.h:
27055 Fix caps template names to be understandable.
27056 Prefix everything with GST_VIDEO.
27057 * ext/aalib/gstaasink.c:
27058 * ext/divx/gstdivxdec.c:
27059 * ext/divx/gstdivxenc.c:
27060 * ext/gdk_pixbuf/gstgdkpixbuf.c:
27061 * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
27062 * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
27063 * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
27064 * ext/libcaca/gstcacasink.c:
27065 * ext/libpng/gstpngenc.c: (raw_caps_factory):
27066 * ext/snapshot/gstsnapshot.c:
27067 * ext/swfdec/gstswfdec.c:
27068 * ext/xvid/gstxviddec.c:
27069 * ext/xvid/gstxvidenc.c:
27070 * gst/chart/gstchart.c:
27071 * gst/deinterlace/gstdeinterlace.c:
27072 * gst/effectv/gsteffectv.c:
27073 * gst/flx/gstflxdec.c: (gst_flxdec_loop):
27074 * gst/goom/gstgoom.c:
27075 * gst/median/gstmedian.c:
27076 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
27077 (gst_monoscope_srcconnect), (gst_monoscope_chain):
27078 * gst/overlay/gstoverlay.c:
27079 * gst/smooth/gstsmooth.c:
27080 * gst/smpte/gstsmpte.c:
27081 * gst/synaesthesia/gstsynaesthesia.c:
27082 * gst/videocrop/gstvideocrop.c:
27083 * gst/videodrop/gstvideodrop.c:
27084 * gst/y4m/gsty4mencode.c:
27085 * sys/qcam/gstqcamsrc.c:
27086 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
27087 Make them work with new video.h file.
27088 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
27089 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
27090 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
27091 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
27092 Make it work with new buffer allocation system.
27094 2004-01-11 Julien MOUTTE <julien@moutte.net>
27096 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
27097 pad_alloc_buffer implementation to use ->srcpad
27098 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
27099 pad_alloc_buffer implementation to use ->srcpad
27100 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Fixing the
27101 pad_alloc_buffer implementation to use ->srcpad
27102 * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
27103 (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
27104 (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
27105 a reference to everything we need.
27106 * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
27107 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
27108 (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
27109 (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
27110 a reference to everything we need.
27111 * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
27113 2004-01-11 David Schleef <ds@schleef.org>
27115 * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
27116 * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
27117 (gst_fenced_buffer_default_copy): Fix for rename of buffer private
27119 * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
27120 value during a resize/renegotiation.
27121 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
27122 gst_pad_alloc_buffer();
27123 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
27124 (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
27126 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
27127 Fix for rename of buffer private structure members.
27128 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
27129 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
27130 Fix for rename of buffer private structure members.
27131 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
27132 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
27133 Fix for rename of buffer private structure members.
27135 2004-01-11 Arwed v. Merkatz <v.merkatz@gmx.net>
27137 reviewed by: David Schleef <ds@schleef.org>
27139 * gst/videofilter/Makefile.am:
27140 * gst/videofilter/gstgamma.c: Gamma correction filter. Modified
27141 from the patch by ds to fit in with recent make_filter changes.
27143 2004-01-11 Julien MOUTTE <julien@moutte.net>
27145 * configure.ac: Adding examples/switch/Makefile
27146 * examples/Makefile.am: Adding examples/switch
27147 * examples/switch/Makefile.am: Adding switcher example.
27148 * examples/switch/switcher.c: (got_eos), (idle_iterate),
27149 (switch_timer), (main): Adding an example demonstrating switch usage
27150 with 2 videotestsrc showing different patterns.
27151 * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
27152 (gst_switch_init): Fixing switch with the new caps system.
27154 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
27156 * gst-libs/gst/video/video.h:
27157 Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
27158 They should probably be like
27159 GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
27161 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
27163 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
27164 (qtdemux_parse_trak):
27165 fix audio chunk size/timestamp calculation
27167 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
27169 * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
27172 2004-01-11 Steve Baker <steve@stevebaker.org>
27174 * gst/effectv/gstaging.c: (gst_agingtv_get_type),
27175 (gst_agingtv_base_init), (gst_agingtv_class_init),
27176 (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
27177 (gst_agingtv_set_property), (gst_agingtv_get_property):
27178 Port agingTV to videofilter
27180 2004-01-09 Julien MOUTTE <julien@moutte.net>
27182 * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
27183 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
27185 2004-01-09 Julien MOUTTE <julien@moutte.net>
27187 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
27188 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
27189 * gst-libs/gst/xoverlay/xoverlay.c:
27190 (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
27191 * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
27192 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
27193 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
27194 Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
27195 * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
27196 (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
27197 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
27198 the bufferalloc_function to replace bufferpools, fixing the XOverlay
27199 interface implementation to handle xid being 0 and fix some bugs
27200 triggered by Benjamin's testcase.
27201 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
27202 (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
27203 (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
27204 the bufferalloc_function to replace bufferpools, fixing the XOverlay
27205 interface implementation to handle xid being 0 and fix some bugs
27206 triggered by Benjamin's testcase.
27208 2004-01-09 David Schleef <ds@schleef.org>
27210 * ext/librfb/gstrfbsrc.c: Hacking. Added actual decoding and
27211 mouse pointer events. It works.
27213 2004-01-09 Ronald Bultje <rbultje@ronald.bitfreak.net>
27215 * ext/divx/gstdivxenc.c: (gst_divxenc_init):
27216 Use explicit caps - fix capsnego.
27217 * ext/xvid/gstxviddec.c:
27218 * ext/xvid/gstxvidenc.c:
27219 Remove macro-inside-macro which caused compile errors.
27220 * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
27221 Error out if it's not a RIFF file. Else we error out without
27222 gst_element_error() which is not good...
27224 2004-01-08 David Schleef <ds@schleef.org>
27226 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
27227 Fix pad_link function to handle formats that ffmpeg returns
27228 as multiple caps structures.
27229 * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
27230 Only complain if source buffer is _smaller_ than expected.
27231 * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
27232 (gst_videoscale_handle_src_event): Resize navigation events
27233 when passing them upstream.
27234 * gst/videotestsrc/gstvideotestsrc.c:
27235 * gst/videotestsrc/gstvideotestsrc.h:
27236 * gst/videotestsrc/videotestsrc.c:
27237 * gst/videotestsrc/videotestsrc.h:
27238 Rewrite many of the buffer painting functions to handle odd
27239 sizes (for many formats, size%4!=0 or size%8!=0). Most have
27240 been verified to work with my video card.
27241 * testsuite/gst-lint: Add check for elements calling
27242 gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
27244 2004-01-08 David Schleef <ds@schleef.org>
27246 * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
27247 (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
27249 2004-01-08 Julien MOUTTE <julien@moutte.net>
27251 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
27252 configure event is not emiting the desired size signal. That fixes
27253 aspect ratio issues with gst-player.
27255 2004-01-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
27257 * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
27260 2004-01-08 Julien MOUTTE <julien@moutte.net>
27262 * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
27263 public method to fire size signal.
27265 2004-01-07 Julien MOUTTE <julien@moutte.net>
27267 * examples/gstplay/Makefile.am: Adding the interface library.
27268 * gst-libs/gst/play/Makefile.am: Adding the interface library.
27269 * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to the XOverlay size signal instead of GstVideoSink.
27270 * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
27271 GST_IS_X_OVERLAY before signal connect.
27272 * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
27273 Removing the have_video_size signal.
27274 * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
27275 and associated public method.
27276 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
27277 (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
27279 * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
27280 (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
27282 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
27283 Using XOverlay public method to fire size signal.
27285 2004-01-07 David Schleef <ds@schleef.org>
27287 * gst/videofilter/Makefile.am:
27288 * gst/videofilter/gstvideotemplate.c:
27289 * gst/videofilter/make_filter:
27290 Create gstvideoexample.c in a srcdir!=builddir friendly way.
27291 Convert make_filter to /bin/sh script.
27293 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
27295 * gst/modplug/gstmodplug.cc: fix element description
27297 2004-01-07 Julien MOUTTE <julien@moutte.net>
27299 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
27300 (got_video_size): Adding some new lines in g_print calls.
27301 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
27302 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
27303 (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
27304 (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
27305 (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
27306 (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
27307 Complete code review, reverting some stuff i disagree with, adding
27308 some fixes : time synchronization on invalid timestamps, renegotiation
27310 * sys/ximage/ximagesink.h:
27311 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
27312 (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
27313 (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
27314 (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
27315 (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
27316 (gst_xvimagesink_buffer_new),
27317 (gst_xvimagesink_navigation_send_event),
27318 (gst_xvimagesink_set_xwindow_id),
27319 (gst_xvimagesink_get_desired_size),
27320 (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
27321 stuff i disagree with, adding some fixes : Renegotiation of private
27322 window, implementing get_desired_size.
27324 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
27326 * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
27327 (gst_afsink_handle_event):
27328 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
27329 * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
27330 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
27331 * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
27332 * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
27333 Fix for instantiate-test (see core). Also remove dead code from
27334 jpegenc (which still needs fixing, but that's lower on my TODO
27336 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
27337 Never return NULL as caps.
27339 2004-01-07 David Schleef <ds@schleef.org>
27343 * ext/librfb/Makefile.am:
27344 * ext/librfb/gstrfbsrc.c:
27345 New source plugin based on librfb-0.1. RFB (remote framebuffer)
27346 is the protocol used by VNC.
27348 2004-01-07 David Schleef <ds@schleef.org>
27350 * gst/videofilter/gstvideotemplate.c:
27351 * gst/videofilter/gstvideotemplate.h:
27352 * gst/videofilter/make_filter:
27353 Merge videotemplate header into source file.
27354 * gst/effectv/Makefile.am:
27355 * gst/effectv/gsteffectv.c: (plugin_init):
27356 * gst/effectv/gstwarp.c:
27357 Make warpTV a subclass of videofilter.
27359 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
27361 * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
27362 Add guard against invalid utf-8 conversions in mad. Just in case.
27364 2004-01-07 Benjamin Otte <in7y118@public.uni-hamburg.de>
27366 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
27367 Fix for bug shown by poisoning
27369 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27371 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
27372 (gst_v4lmjpegsrc_buffer_free):
27373 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
27374 (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
27375 (gst_v4lsrc_buffer_free):
27376 Fix for removed bufferpools.
27378 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
27380 * ext/dv/gstdvdec.c: (gst_dvdec_loop):
27381 Fix caps negotiation.
27383 * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
27384 (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
27385 (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
27387 * ext/mpeg2dec/gstmpeg2dec.c:
27388 * gst-libs/gst/navigation/navigation.c:
27389 (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
27390 * gst-libs/gst/navigation/navigation.h:
27391 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
27392 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
27393 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
27394 Super-simple first version of mouse and keyboard events. Clicking
27395 on a DVD menu now works, although it may not take you where you
27398 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
27399 * gst/videotestsrc/gstvideotestsrc.c:
27400 (gst_videotestsrc_src_fixate):
27401 These fixate functions were broken - they never actually
27404 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27406 * ext/shout/gstshout.c: (gst_icecastsend_base_init),
27407 (gst_icecastsend_init):
27408 fix for new caps system.
27409 * gst-libs/gst/mixer/mixertrack.h:
27410 * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
27411 Add 'master track' flag (for tools like ACME that only want to
27412 change the main volume).
27414 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
27416 * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
27417 (gst_xvid_csp_to_caps):
27418 * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
27419 * ext/xvid/gstxvidenc.c:
27420 ifdef out ARGB type when it isn't available
27421 in xvidcore 1.0.0beta2
27423 2004-01-06 Ronald Bultje <rbultje@ronald.bitfreak.net>
27425 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
27426 When we have received a new SCR right in the first buffer after
27427 a seek (so in the same cycle that handles the discont), we should
27428 handle the buffer instead of unreffing it, else we lose data.
27430 2004-01-06 Iain <iain@prettypeople.org>
27432 * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
27433 buffer-frames caps too.
27435 * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
27436 caps that we need, don't destroy them all and rebuild them. And when
27437 creating src pads, use the src pad template rather than the sink...
27439 2004-01-05 Ronald Bultje <rbultje@ronald.bitfreak.net>
27441 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
27442 Add pad to element *after* setting functions such as event handler.
27443 Without this, the scheduler (opt) will link pads, set the event
27444 handler from the default event function (dispatcher in gstpad.c)
27445 and *after* that, we will set our own event function, which will
27446 thus never be used (and thus mpegdemux doesn't handle events).
27448 2004-01-04 David Schleef <ds@schleef.org>
27450 Fix the fixate functions to handle new prototype:
27451 * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
27452 * gst/videotestsrc/gstvideotestsrc.c:
27453 (gst_videotestsrc_src_fixate):
27454 * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
27455 * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
27456 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
27458 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
27460 * sys/ximage/ximagesink.h:
27461 * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
27462 (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
27463 (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
27464 (gst_ximagesink_xoverlay_init):
27465 assorted fixes to make (re)embedding work
27466 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
27467 (gst_ximagesink_get_desired_size):
27468 implement desired size additions to XOverlay
27470 2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
27472 * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
27473 (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
27474 (gst_x_overlay_got_desired_size):
27475 * gst-libs/gst/xoverlay/xoverlay.h:
27476 Add optional "desired size" signal and querying.
27478 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27480 * gst/matroska/matroska-demux.c:
27481 (gst_matroska_demux_parse_blockgroup):
27482 Fix EBML-laced block parsing. Diffs are relative to previous
27483 lace, not the first lace. Thanks to Mosu from the Matroska
27484 team for detecting this.
27485 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
27486 (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
27487 (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
27488 (gst_wavparse_change_state):
27489 * gst/wavparse/gstwavparse.h:
27490 Quickfix for capsnego.
27492 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27494 * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
27495 Fix indenting, fix pad creation.
27497 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27499 * ext/xvid/gstxviddec.c: (gst_xviddec_init),
27500 (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
27501 (gst_xviddec_sink_link):
27502 Implement src_getcaps() so proper size caps is negotiated.
27504 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27506 * ext/flac/gstflacdec.c: (gst_flacdec_loop):
27507 Finish flac decoder on EOS. See #116178.
27509 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27511 * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
27512 (gst_matroska_demux_add_stream):
27513 * gst/matroska/matroska-ids.h:
27514 Add getcaps() function to fix capsnego...
27516 2004-01-04 Ronald Bultje <rbultje@ronald.bitfreak.net>
27518 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27519 (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
27520 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
27521 Fix more integer overflows. Again, see #126967.
27523 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
27525 * ext/mpeg2dec/gstmpeg2dec.c:
27526 Add support for mpeg2dec-0.4.0 (released two weeks ago). See
27529 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
27532 * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
27533 (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
27534 * ext/xvid/gstxvid.h:
27535 * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
27536 (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
27537 (gst_xviddec_src_link), (gst_xviddec_sink_link),
27538 (gst_xviddec_change_state):
27539 * ext/xvid/gstxviddec.h:
27540 * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
27541 (gst_xvidenc_base_init), (gst_xvidenc_class_init),
27542 (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
27543 (gst_xvidenc_link), (gst_xvidenc_set_property),
27544 (gst_xvidenc_get_property), (gst_xvidenc_change_state):
27545 * ext/xvid/gstxvidenc.h:
27546 Update xvid plugin to latest xvid (1.0.0-beta3) API.
27548 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
27550 * gst/rtp/rtp-packet.c:
27551 Add sys/types.h include, since OS X doesn't define in_addr_t
27552 in netinet/in.h, like it does on Linux (see #129600).
27554 2004-01-03 Thomas Canty <tommydal@optushome.com.au>
27556 reviewed by: Ronald Bultje <rbultje@ronald.bitfreak.net>
27558 * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
27559 Correct logic of dispose function (see #129306).
27561 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
27563 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
27564 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
27565 (gst_mpeg_parse_init):
27566 * gst/mpegstream/gstmpegparse.h:
27567 Remove clock (which was never provided, i.e. dead code), and
27568 also fix integer overflows at high PTS values (see #126967).
27570 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
27572 * ext/flac/gstflacdec.c:
27573 * ext/libpng/gstpngenc.h:
27574 * ext/mikmod/gstmikmod.h:
27575 OS X fixes (see #126628).
27577 2004-01-02 David Schleef <ds@schleef.org>
27579 * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
27580 (gst_alsa_src_base_init): Remove bogus "src" request pad.
27581 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
27582 (gst_mpeg_parse_class_init): Move pad template registration
27583 to class_init, since the derived class (mpegdemux) doesn't
27586 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
27588 * sys/ximage/Makefile.am:
27589 * sys/xvideo/Makefile.am:
27590 * sys/xvimage/Makefile.am:
27591 Move interface libs from LDFLAGS to LIBADD, fix relocation errors
27592 after installation (see #127664).
27594 2004-01-02 David Schleef <ds@schleef.org>
27596 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
27597 (gst_ffmpegenc_connect): Negotiation fixes.
27598 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
27599 Remove inappropriate gst_caps_free().
27600 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
27601 Reenable Ronald's internal resize code, since the core handles
27604 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
27606 * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
27607 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
27608 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
27609 Fix pad template stuff.
27611 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
27613 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
27614 * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
27615 fix signed integer reading/writing.
27617 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
27620 Remove outdated document
27622 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
27624 * gst/cutter/gstcutter.c: (gst_cutter_init):
27625 src pad was being created twice - oops.
27627 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
27629 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
27630 Comment out internal resize. It doesn't handle the resulting
27631 XEvent internally, does another try_set_caps() which leads to
27632 a really nice loop.
27633 Real fix will come when Julien and Dave are awake. ;).
27635 2004-01-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
27637 * ext/mpeg2enc/gstmpeg2enc.cc:
27638 fix const/nonconst compile issue.
27640 2004-01-02 David Schleef <ds@schleef.org>
27642 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
27643 (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
27644 Add fixate function and a check for bad formats.
27646 2004-01-01 David Schleef <ds@schleef.org>
27649 * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
27650 (gst_audiofilter_init):
27651 * gst/debug/efence.c: (gst_efence_init):
27652 * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
27653 (gst_deinterlace_init):
27654 * gst/volume/gstvolume.c: (volume_connect):
27656 2004-01-01 David Schleef <ds@schleef.org>
27658 Convert elements to use gst_pad_use_explicit_caps() where
27660 * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
27661 * ext/audiofile/gstafparse.c: (gst_afparse_init),
27662 (gst_afparse_open_file):
27663 * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
27664 (gst_afsrc_open_file):
27665 * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
27666 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
27667 (gst_ffmpegdec_chain):
27668 * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
27669 * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
27670 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
27671 (gst_gdk_pixbuf_chain):
27672 * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
27673 (gst_jpegdec_chain):
27674 * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
27675 * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
27676 (gst_mikmod_negotiate):
27677 * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
27678 (gst_mpeg2dec_negotiate_format):
27679 * ext/mpeg2enc/gstmpeg2enc.cc:
27680 * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
27681 * ext/speex/gstspeexdec.c: (gst_speexdec_init),
27682 (gst_speexdec_sinkconnect):
27683 * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
27684 * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
27685 (gst_vorbisfile_new_link):
27686 * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
27687 (gst_ac3parse_chain):
27688 * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
27689 (gst_asf_demux_setup_pad):
27690 * gst/auparse/gstauparse.c: (gst_auparse_init),
27691 (gst_auparse_chain):
27692 * gst/id3/gstid3types.c: (gst_id3types_loop):
27693 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
27694 * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
27695 (mp1videoparse_parse_seq):
27696 * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
27698 * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
27699 (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
27700 * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
27701 (gst_mpeg_parse_send_data):
27702 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
27703 (gst_qtdemux_add_stream):
27704 * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
27705 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
27706 (gst_wavparse_parse_fmt):
27708 2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
27711 Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
27712 1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
27713 it therefore uses the wrong include paths. Too bad... Note
27714 that 1.6.1.93 is not release yet. ;).
27715 Also add a check for mplex, which is now using the lib'ified
27716 mplex from mjpegtools, too.
27717 * ext/ffmpeg/gstffmpegcodecmap.c:
27718 Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
27719 issues. I don't think ffmpeg handles 3ivx correctly, so this
27720 probably won't work. But it won't hurt either.
27721 * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
27722 (gst_ffmpegdec_chain):
27723 * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
27724 (gst_ffmpegenc_chain_audio):
27725 Fix memleak in audio encoding. Close codec if open fails, this
27726 calls the cleanup routines so we can re-use the context.
27727 * ext/mpeg2enc/gstmpeg2enc.cc:
27728 Fix pad template names/types, fix memory issue with getcaps().
27729 * ext/mpeg2enc/gstmpeg2encoder.cc:
27730 * ext/mpeg2enc/gstmpeg2encoder.hh:
27731 Fix compile issue with new caps system (const thingy).
27732 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
27733 * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
27734 We read a first frame right on initing, so that we have a caps
27735 when we init the output. This caps is cached in padprivate and
27736 read as first frame.
27737 * ext/mplex/Makefile.am:
27738 * ext/mplex/gstmplex.cc:
27739 * ext/mplex/gstmplex.h:
27740 * ext/mplex/gstmplex.hh:
27741 * ext/mplex/gstmplexibitstream.cc:
27742 * ext/mplex/gstmplexibitstream.hh:
27743 * ext/mplex/gstmplexjob.cc:
27744 * ext/mplex/gstmplexjob.hh:
27745 * ext/mplex/gstmplexoutputstream.cc:
27746 * ext/mplex/gstmplexoutputstream.hh:
27747 We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
27748 had issues, didn't do capsnego, supported only a subset of the
27749 mplex features and required a mplex fork in our local CVS. Plus
27750 that it worked agaist a very old mplex version. Rewriting was
27751 faster than updating it.
27752 * gst-libs/ext/Makefile.am:
27753 * gst-libs/ext/mplex/INSTRUCT:
27754 * gst-libs/ext/mplex/Makefile.am:
27755 * gst-libs/ext/mplex/README:
27756 * gst-libs/ext/mplex/TODO:
27757 * gst-libs/ext/mplex/ac3strm_in.cc:
27758 * gst-libs/ext/mplex/audiostrm.hh:
27759 * gst-libs/ext/mplex/audiostrm_out.cc:
27760 * gst-libs/ext/mplex/aunit.hh:
27761 * gst-libs/ext/mplex/bits.cc:
27762 * gst-libs/ext/mplex/bits.hh:
27763 * gst-libs/ext/mplex/buffer.cc:
27764 * gst-libs/ext/mplex/buffer.hh:
27765 * gst-libs/ext/mplex/fastintfns.h:
27766 * gst-libs/ext/mplex/format_codes.h:
27767 * gst-libs/ext/mplex/inputstrm.cc:
27768 * gst-libs/ext/mplex/inputstrm.hh:
27769 * gst-libs/ext/mplex/lpcmstrm_in.cc:
27770 * gst-libs/ext/mplex/mjpeg_logging.cc:
27771 * gst-libs/ext/mplex/mjpeg_logging.h:
27772 * gst-libs/ext/mplex/mjpeg_types.h:
27773 * gst-libs/ext/mplex/mpastrm_in.cc:
27774 * gst-libs/ext/mplex/mpegconsts.cc:
27775 * gst-libs/ext/mplex/mpegconsts.h:
27776 * gst-libs/ext/mplex/mplexconsts.hh:
27777 * gst-libs/ext/mplex/multplex.cc:
27778 * gst-libs/ext/mplex/outputstream.hh:
27779 * gst-libs/ext/mplex/padstrm.cc:
27780 * gst-libs/ext/mplex/padstrm.hh:
27781 * gst-libs/ext/mplex/stillsstream.cc:
27782 * gst-libs/ext/mplex/stillsstream.hh:
27783 * gst-libs/ext/mplex/systems.cc:
27784 * gst-libs/ext/mplex/systems.hh:
27785 * gst-libs/ext/mplex/vector.cc:
27786 * gst-libs/ext/mplex/vector.hh:
27787 * gst-libs/ext/mplex/videostrm.hh:
27788 * gst-libs/ext/mplex/videostrm_in.cc:
27789 * gst-libs/ext/mplex/videostrm_out.cc:
27790 * gst-libs/ext/mplex/yuv4mpeg.cc:
27791 * gst-libs/ext/mplex/yuv4mpeg.h:
27792 * gst-libs/ext/mplex/yuv4mpeg_intern.h:
27793 * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
27794 We don't fork mjpegtools' mplex in our CVS anymore.
27795 * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
27796 (gst_avi_demux_add_stream):
27797 * gst/avi/gstavidemux.h:
27798 Add getcaps() function for proper caps nego. This makes some
27799 parts of AVI playback/reading work.
27800 * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
27801 Resize window on new capsnego. This is probably wrong, but
27802 I'm still committing it because with current capsnego, the
27803 first successfull capsnego is auto-fixated, therefore rounded
27804 down to the lowest values in the caps. this results in a 16x16
27805 XWindow that is not reized when real capsnego finishes.
27806 Dave, I see more cases of this, do you know a proper solution?
27807 * tools/gst-launch-ext.in:
27808 Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
27810 2003-12-31 David Schleef <ds@schleef.org>
27812 * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
27813 * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
27814 Change gst_pad_proxy_link() to gst_pad_try_set_caps()
27816 2003-12-30 David Schleef <ds@schleef.org>
27818 * ext/ffmpeg/gstffmpegcolorspace.c:
27819 (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
27820 (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
27821 (gst_ffmpegcsp_chain): Negotiation fixes
27822 * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
27823 * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
27824 (gst_audio_convert_link), (gst_audio_convert_channels):
27825 * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
27826 (gst_audioscale_link), (gst_audioscale_get_buffer),
27827 (gst_audioscale_chain): Negotiation fixes
27828 * gst/audioscale/gstaudioscale.h:
27829 * gst/videofilter/gstvideofilter.c:
27830 (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
27831 (gst_videofilter_link), (gst_videofilter_init),
27832 (gst_videofilter_set_output_size), (gst_videofilter_setup),
27833 (gst_videofilter_find_format_by_structure):
27834 * gst/videofilter/gstvideofilter.h: Negotiation fixes
27835 * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
27836 (gst_videoscale_link):
27837 * gst/videoscale/videoscale.c: (videoscale_get_structure),
27838 (videoscale_find_by_structure), (gst_videoscale_setup):
27839 * gst/videoscale/videoscale.h: Negotiation fixes
27840 * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
27841 (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
27842 function, restrict resizing to a multiple of 4 (hack until
27843 everyone supports odd sizes correctly).
27845 2003-12-29 Colin Walters <walters@verbum.org>
27847 * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
27850 2003-12-30 Jan Schmidt <thaytan@mad.scientist.com>
27852 * ext/sndfile/gstsf.c: (gst_sf_loop):
27853 Fix warning about discarding const qualifier
27855 2003-12-27 Jeremy Simon <jesimon@libertysurf.fr>
27857 * gst/cutter/gstcutter.c:
27858 * gst/videoscale/gstvideoscale.c:
27859 * gst/volenv/gstvolenv.c:
27860 * gst-libs/gst/audio/audio.c:
27861 * gst-libs/gst/video/video.c:
27864 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
27866 * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
27867 Don't send ALSA debugging to stderr.
27868 * ext/alsa/gstalsa.h:
27869 Use GST_WARNING instead of g_warning when ALSA functions fail.
27871 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
27873 * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
27874 Free XVAdapterInfo correctly.
27876 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
27878 * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
27879 (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
27880 Make id3tag use correct caps nego.
27882 2003-12-27 Amaury Jacquot <sxpert@esitcom.org>
27884 * ext/ivorbis/vorbis.c:
27885 * ext/ivorbis/vorbisenc.h:
27886 * ext/ivorbis/vorbisfile.c:
27887 Modify so that it uses the new caps things
27889 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
27891 * testsuite/spider/spider1.c: (main):
27892 * testsuite/spider/spider2.c: (main):
27893 * testsuite/spider/spider3.c: (main):
27894 Make tests compile again. They probably don't work.
27896 2003-12-24 Colin Walters <walters@verbum.org>
27898 * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
27899 we can't fixate the caps anymore.
27901 2003-12-23 David Schleef <ds@schleef.org>
27903 * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
27904 * sys/oss/gstosssink.c: (gst_osssink_init),
27905 (gst_osssink_sink_fixate): Add fixate function.
27907 2003-12-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
27909 * ext/ffmpeg/gstffmpegcodecmap.c:
27910 * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
27911 (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
27912 (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
27913 (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
27914 (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
27915 (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
27916 (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
27917 fix typo in RGB masks, and move back to "old" colorspace
27918 capsnego code until whoever wrote this new crap has actually
27919 tested it so that it works.
27920 And yes, this works, keep it that way please.
27922 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27924 * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
27925 (gst_divxdec_init), (gst_divxdec_negotiate):
27926 * ext/divx/gstdivxdec.h:
27927 * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
27928 (gst_divxenc_init):
27929 * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
27930 (gst_faac_sinkconnect), (gst_faac_srcconnect):
27931 * ext/mpeg2enc/gstmpeg2enc.cc:
27932 * ext/mpeg2enc/gstmpeg2encoder.cc:
27933 * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
27934 * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
27935 (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
27936 * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
27937 (dxr3spusink_init):
27938 * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
27939 (dxr3videosink_init):
27940 Fix caps breakage after Dave's caps branch merge.
27942 2003-12-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
27944 * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
27945 Fix for 24bpp display.
27947 2003-12-23 Colin Walters <walters@verbum.org>
27949 * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
27950 a GnomeVFSHandle directly.
27952 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
27954 * gst/volume/Makefile.am:
27955 * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
27956 (volume_base_init), (volume_init):
27957 Reenable volume element and fix to work with new caps stuff.
27958 Rhythmbox needs this.
27960 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
27962 * gst/qtdemux/qtdemux.c: (plugin_init):
27963 qtdemux requires bytestream
27965 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
27967 * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
27968 Fix remaining caps handling errors due to CAPS merge.
27970 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
27972 * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
27973 (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
27974 (gst_faad_srcconnect):
27975 Port to new caps system.
27977 2003-12-21 Julien MOUTTE <julien@moutte.net>
27979 * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
27980 (got_video_size), (main): using g_print instead of g_message.
27981 * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
27982 signal which was not emitted because of "switch" element added to the
27983 bin but not connected. (Removing from the bin temporarily)
27985 2003-12-21 Julien MOUTTE <julien@moutte.net>
27987 * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
27988 find X development files. I don't understand the previous tests and
27989 they fail on my debian/ppc unstable. This one works.
27990 * examples/gstplay/player.c: (main): Set the pipeline to READY before
27992 * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
27993 (gst_play_set_video_sink), (gst_play_set_audio_sink),
27994 (gst_play_set_visualization): Add some safety checks in set_ methods
27995 and state_change. This was throwing some ugly CRITICAL messages when
27996 pipeline was getting disposed and casts were failing.
27998 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
28001 Improve mpeg2enc detection. This is for distributions that do
28002 ship mjpegtools, but without mpeg2enc. Also does object check
28003 for might there ever be ABI incompatibility.
28004 * ext/mpeg2enc/gstmpeg2enc.cc:
28005 Add Andrew as second maintainer (he's helping me), and also add
28006 an error if no caps was set. This happens if I pull before capsnego
28007 and that's something I should solve sometime else.
28008 * gst/matroska/matroska-demux.c:
28009 (gst_matroska_demux_parse_blockgroup):
28011 * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
28012 (gst_matroska_mux_track_header):
28013 Add caps to templates.
28014 * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
28015 Add mpegversion=1 to prevent confusion with MPEG/AAC.
28016 * gst/mpegstream/gstmpegdemux.c:
28017 Remove layer since it causes warnings about unfixed caps.
28018 * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
28019 Fix obvious typo (we error out if caps were set, we should of
28020 course error out if *no* caps were set).
28021 * sys/oss/gstosselement.c: (gst_osselement_convert):
28022 Fix format conversion, we confused bits/bytes.
28023 * sys/oss/gstosselement.h:
28024 Improve documentation for 'bps'.
28026 Remove stuff about plugins that need removing - this was done
28028 * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
28029 (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
28030 * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
28031 (gst_v4lsrc_src_query):
28032 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
28033 (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
28034 Add get_query_types(), get_formats() and query() functions.
28036 2003-12-21 Thomas Vander Stichele <thomas at apestaart dot org>
28038 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
28039 * moved CVS to freedesktop.org