1 2009-01-19 Wim Taymans <wim.taymans@collabora.co.uk>
3 Patch by: Luotao Fu <l dot fu at pengutronix dot de>
5 * gst/videocrop/gstvideocrop.c:
6 (gst_video_crop_get_image_details_from_caps):
7 Add 8bit grayscale support to videocrop plugin. Fixes #567952.
9 2009-01-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
11 * gst/audiofx/audioreverb.c: (gst_audio_reverb_init):
12 Set the default value in the instance init function.
14 2009-01-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
16 * docs/plugins/Makefile.am:
17 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18 * docs/plugins/gst-plugins-good-plugins-sections.txt:
19 * docs/plugins/gst-plugins-good-plugins.args:
20 * docs/plugins/gst-plugins-good-plugins.hierarchy:
21 * docs/plugins/inspect/plugin-audiofx.xml:
22 * docs/plugins/inspect/plugin-spectrum.xml:
23 * gst/audiofx/Makefile.am:
24 * gst/audiofx/audiofx.c: (plugin_init):
25 * gst/audiofx/audioreverb.c: (gst_audio_reverb_base_init),
26 (gst_audio_reverb_class_init), (gst_audio_reverb_init),
27 (gst_audio_reverb_finalize), (gst_audio_reverb_set_property),
28 (gst_audio_reverb_get_property), (gst_audio_reverb_setup),
29 (gst_audio_reverb_stop), (gst_audio_reverb_transform_ip):
30 * gst/audiofx/audioreverb.h:
31 * tests/check/Makefile.am:
32 * tests/check/elements/audioreverb.c: (setup_reverb),
33 (cleanup_reverb), (GST_START_TEST), (audioreverb_suite):
34 Add an echo/reverb filter to the audiofx plugin, with configurable
35 echo delay, intensity and feedback. Fixes bug #567874.
37 2009-01-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
39 * gst/spectrum/gstspectrum.c: (gst_spectrum_reset_state),
40 (gst_spectrum_transform_ip):
41 * gst/spectrum/gstspectrum.h:
42 Implement a simple compensation algorithm for rounding errors.
43 This makes sure that a spectrum message is posted on the bus
44 every interval nanoseconds. Fixes bug #567955.
46 2009-01-15 Michael Smith <msmith@songbirdnest.com>
48 * sys/osxaudio/Makefile.am:
49 Link against CoreServices (needed for osx 10.4) and fix up the linker
52 2009-01-15 Wim Taymans <wim.taymans@collabora.co.uk>
54 * gst/qtdemux/qtdemux.c: (qtdemux_parse_segments):
55 Catch invalid and commonly wrong playback rates in the elst atoms.
58 2009-01-15 Sebastian Dröge <sebastian.droege@collabora.co.uk>
60 * gst/spectrum/gstspectrum.c: (gst_spectrum_reset_state):
61 Don't call gst_fft_f32_free() with NULL to prevent a
62 crash. Fixes bug #567642.
64 2009-01-14 Sebastian Dröge <sebastian.droege@collabora.co.uk>
66 * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
67 * gst/spectrum/gstspectrum.h:
68 Use correct types for frame/fft counters and some minor
71 2009-01-14 Sebastian Dröge <sebastian.droege@collabora.co.uk>
73 Patch by: Lennart Poettering <lennart at poettering dot net>
75 * ext/pulse/pulseprobe.c: (gst_pulseprobe_new),
76 (gst_pulseprobe_free):
77 Fix refcount loop, resulting in a thread leak. Fixes bug #567746.
79 2009-01-14 Sebastian Dröge <sebastian.droege@collabora.co.uk>
81 * gst/spectrum/Makefile.am:
82 * gst/spectrum/README:
83 * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
84 (gst_spectrum_class_init), (gst_spectrum_init),
85 (gst_spectrum_reset_state), (gst_spectrum_finalize),
86 (gst_spectrum_set_property), (gst_spectrum_start),
87 (gst_spectrum_stop), (gst_spectrum_setup),
88 (gst_spectrum_transform_ip):
89 * gst/spectrum/gstspectrum.h:
90 Post a spectrum message on the bus for every interval, even
91 if the interval is small than the length of the FFT.
94 Major cleanup of the spectrum element.
96 2009-01-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
99 * gst/audiofx/Makefile.am:
100 * gst/audiofx/audiofirfilter.c: (gst_audio_fir_filter_base_init),
101 (gst_audio_fir_filter_class_init),
102 (gst_audio_fir_filter_update_kernel), (gst_audio_fir_filter_init),
103 (gst_audio_fir_filter_setup), (gst_audio_fir_filter_finalize),
104 (gst_audio_fir_filter_set_property),
105 (gst_audio_fir_filter_get_property):
106 * gst/audiofx/audiofirfilter.h:
107 * gst/audiofx/audiofx.c: (plugin_init):
108 * gst/audiofx/audioiirfilter.c: (gst_audio_iir_filter_base_init),
109 (gst_audio_iir_filter_class_init),
110 (gst_audio_iir_filter_update_coefficients),
111 (gst_audio_iir_filter_init), (gst_audio_iir_filter_setup),
112 (gst_audio_iir_filter_finalize),
113 (gst_audio_iir_filter_set_property),
114 (gst_audio_iir_filter_get_property):
115 * gst/audiofx/audioiirfilter.h:
116 Add audioiirfilter and audiofirfilter elements which allow
117 generic IIR/FIR filters to be implemented by providing the
118 filter coefficients. Fixes bug #567577.
120 * docs/plugins/Makefile.am:
121 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
122 * docs/plugins/gst-plugins-good-plugins-sections.txt:
123 * docs/plugins/gst-plugins-good-plugins.args:
124 * docs/plugins/gst-plugins-good-plugins.hierarchy:
125 * docs/plugins/gst-plugins-good-plugins.signals:
126 * docs/plugins/inspect/plugin-alaw.xml:
127 * docs/plugins/inspect/plugin-audiofx.xml:
128 * docs/plugins/inspect/plugin-avi.xml:
129 * docs/plugins/inspect/plugin-flac.xml:
130 * docs/plugins/inspect/plugin-mulaw.xml:
131 * docs/plugins/inspect/plugin-video4linux2.xml:
132 * docs/plugins/inspect/plugin-wavparse.xml:
133 Add documentation for the audioiirfilter and audiofirfilter
136 * tests/check/Makefile.am:
137 * tests/check/elements/audiofirfilter.c: (on_message),
138 (on_rate_changed), (on_handoff), (GST_START_TEST),
139 (audiofirfilter_suite):
140 * tests/check/elements/audioiirfilter.c: (on_message),
141 (on_rate_changed), (on_handoff), (GST_START_TEST),
142 (audioiirfilter_suite):
143 * tests/examples/Makefile.am:
144 * tests/examples/audiofx/Makefile.am:
145 * tests/examples/audiofx/firfilter-example.c: (on_message),
146 (on_rate_changed), (main):
147 * tests/examples/audiofx/iirfilter-example.c: (on_message),
148 (on_rate_changed), (main):
149 Add unit tests and example applications for the two filter
152 2009-01-13 Michael Smith <msmith@songbirdnest.com>
154 Patch by: Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>
155 * gst/qtdemux/qtdemux.c:
156 Fix format string for guint64.
158 2009-01-13 Michael Smith <msmith@songbirdnest.com>
160 * sys/osxaudio/Makefile.am:
161 osxaudio plugin now requires AudioUnit framework, so link against that.
162 Clean up tabs v spaces while I'm there.
164 2009-01-13 Wim Taymans <wim.taymans@collabora.co.uk>
166 * tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
167 (print_stats), (main):
168 Add some example code for printing the RTP manager stats.
170 2009-01-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
172 * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_class_init),
173 (gst_audio_cheb_band_init), (gst_audio_cheb_band_finalize),
174 (gst_audio_cheb_band_set_property):
175 * gst/audiofx/audiochebband.h:
176 * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_class_init),
177 (gst_audio_cheb_limit_init), (gst_audio_cheb_limit_finalize),
178 (gst_audio_cheb_limit_set_property):
179 * gst/audiofx/audiocheblimit.h:
180 * gst/audiofx/audiowsincband.c: (gst_audio_wsincband_class_init),
181 (gst_audio_wsincband_init), (gst_audio_wsincband_finalize),
182 (gst_audio_wsincband_set_property):
183 * gst/audiofx/audiowsincband.h:
184 * gst/audiofx/audiowsinclimit.c: (gst_audio_wsinclimit_class_init),
185 (gst_audio_wsinclimit_init), (gst_audio_wsinclimit_finalize),
186 (gst_audio_wsinclimit_set_property):
187 * gst/audiofx/audiowsinclimit.h:
188 Use a custom mutex for protecting the instance fields instead of
189 the GstObject lock. Using the latter can lead to deadlocks, especially
190 with the FIR filters when updating the latency.
192 2009-01-11 Sebastian Dröge <sebastian.droege@collabora.co.uk>
194 * gst/audiofx/Makefile.am:
195 * gst/audiofx/audiofxbasefirfilter.c:
196 (gst_audio_fx_base_fir_filter_dispose),
197 (gst_audio_fx_base_fir_filter_base_init),
198 (gst_audio_fx_base_fir_filter_class_init),
199 (gst_audio_fx_base_fir_filter_init),
200 (gst_audio_fx_base_fir_filter_push_residue),
201 (gst_audio_fx_base_fir_filter_setup),
202 (gst_audio_fx_base_fir_filter_transform),
203 (gst_audio_fx_base_fir_filter_start),
204 (gst_audio_fx_base_fir_filter_stop),
205 (gst_audio_fx_base_fir_filter_query),
206 (gst_audio_fx_base_fir_filter_query_type),
207 (gst_audio_fx_base_fir_filter_event),
208 (gst_audio_fx_base_fir_filter_set_kernel):
209 * gst/audiofx/audiofxbasefirfilter.h:
210 * gst/audiofx/audiofxbaseiirfilter.c:
211 Implement a base class for generic audio FIR filters.
213 * gst/audiofx/audiowsincband.c:
214 (gst_gst_audio_wsincband_mode_get_type),
215 (gst_gst_audio_wsincband_window_get_type),
216 (gst_audio_wsincband_base_init), (gst_audio_wsincband_class_init),
217 (gst_audio_wsincband_init), (gst_audio_wsincband_build_kernel),
218 (gst_audio_wsincband_setup), (gst_audio_wsincband_set_property),
219 (gst_audio_wsincband_get_property):
220 * gst/audiofx/audiowsincband.h:
221 * gst/audiofx/audiowsinclimit.c:
222 (gst_audio_wsinclimit_mode_get_type),
223 (gst_audio_wsinclimit_window_get_type),
224 (gst_audio_wsinclimit_base_init),
225 (gst_audio_wsinclimit_class_init), (gst_audio_wsinclimit_init),
226 (gst_audio_wsinclimit_build_kernel), (gst_audio_wsinclimit_setup),
227 (gst_audio_wsinclimit_set_property),
228 (gst_audio_wsinclimit_get_property):
229 * gst/audiofx/audiowsinclimit.h:
230 * tests/check/elements/audiowsincband.c: (GST_START_TEST):
231 * tests/check/elements/audiowsinclimit.c: (GST_START_TEST):
232 Use this new base class for audiowsincband and audiowsinclimit.
233 Also cleanup both elements.
235 2009-01-08 Michael Smith <msmith@songbirdnest.com>
237 * gst/qtdemux/qtdemux.c:
238 In push mode, error out if we get EOS before we've created any srcpads.
239 Handle (in pull mode) some files that have a truncated moov atom where
240 the final sub-atom is a 'free' atom and the contents of that are not
243 2009-01-08 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
245 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
246 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps):
247 Some cleanups, refactoring and minor enhancements in caps handling.
249 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
250 (gst_matroska_mux_init), (gst_matroska_pad_reset),
251 (gst_matroska_pad_free), (gst_matroska_mux_reset),
252 (gst_matroska_mux_video_pad_setcaps),
253 (gst_matroska_mux_request_new_pad):
254 * tests/check/elements/matroskamux.c: (teardown_src_pad):
255 Only remove, release or reset what is appropriate upon state change.
257 2009-01-07 Jan Schmidt <jan.schmidt@sun.com>
259 * ext/pulse/pulsesink.c:
260 * ext/pulse/pulsesink.h:
261 Use a mutex to protect the current stream pointer, and ignore
262 callbacks for stream objects that have been destroyed already.
263 Fixes problems with unprepare/prepare cycles caused by the input
264 caps changing, without reintroducing bug #556986.
266 2009-01-07 Jan Schmidt <jan.schmidt@sun.com>
268 * sys/v4l2/gstv4l2src.c:
269 Remove () from translateable string, so that it makes more sense.
271 2009-01-07 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
273 * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
274 Minor fix/cleanup in header field calculation.
276 2009-01-06 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
278 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
279 (gst_matroska_mux_handle_sink_event), (gst_matroska_mux_finish):
280 * gst/matroska/matroska-mux.h:
281 Remove internal taglist and fully use tagsetter interface.
283 2009-01-06 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
285 * gst/avi/gstavimux.c: (gst_avi_mux_reset),
286 (gst_avi_mux_riff_get_avi_header):
287 * gst/avi/gstavimux.h:
288 Ensure header size invariance during subsequent rewrite by using
291 2009-01-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
293 * ext/pulse/pulsesink.c: (gst_pulsesink_destroy_stream):
294 Don't wait for the pulse mainloop when destroying the stream.
295 Fixes a deadlock when the pulsedaemon goes away while pulsesink
296 is PLAYING. Fixes bug #556986.
298 2009-01-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
300 Patch by: Sascha Hauer <s dot hauer at pengutronix dot de>
301 Luotao Fu <l dot fu at pengutronix dot de>
303 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
304 (gst_v4l2_get_caps_info):
305 Add support for grayscale v4l2 devices. Fixes bug #566616.
307 2009-01-05 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
309 * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
310 (qtdemux_tag_add_tmpo), (qtdemux_tag_add_covr),
311 (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
312 (qtdemux_tag_add_blob), (qtdemux_parse_udta):
313 * gst/qtdemux/qtdemux.h:
314 * gst/qtdemux/quicktime.c: (plugin_init):
315 Streamline tag handling and pass unparsed tags as binary blob
318 2009-01-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
320 * gst/audiofx/Makefile.am:
321 * gst/audiofx/audiofxbaseiirfilter.c:
322 (gst_audio_fx_base_iir_filter_base_init),
323 (gst_audio_fx_base_iir_filter_dispose),
324 (gst_audio_fx_base_iir_filter_class_init),
325 (gst_audio_fx_base_iir_filter_init),
326 (gst_audio_fx_base_iir_filter_calculate_gain),
327 (gst_audio_fx_base_iir_filter_set_coefficients),
328 (gst_audio_fx_base_iir_filter_setup), (process),
329 (gst_audio_fx_base_iir_filter_transform_ip),
330 (gst_audio_fx_base_iir_filter_stop):
331 * gst/audiofx/audiofxbaseiirfilter.h:
332 Implement a base class for IIR filters.
334 * gst/audiofx/audiochebband.c: (gst_audio_cheb_band_base_init),
335 (gst_audio_cheb_band_class_init), (gst_audio_cheb_band_init),
336 (generate_coefficients), (gst_audio_cheb_band_set_property),
337 (gst_audio_cheb_band_setup):
338 * gst/audiofx/audiochebband.h:
339 * gst/audiofx/audiocheblimit.c: (gst_audio_cheb_limit_base_init),
340 (gst_audio_cheb_limit_class_init), (gst_audio_cheb_limit_init),
341 (generate_coefficients), (gst_audio_cheb_limit_set_property),
342 (gst_audio_cheb_limit_setup):
343 * gst/audiofx/audiocheblimit.h:
344 Use the IIR filter base class for the chebyshev filters.
346 2009-01-02 Michael Smith <msmith@songbirdnest.com>
348 Patch by: Justin Karnegas <justin@affinix.com> and
349 Michael Smith <msmith@songbirdnest.com>
350 * sys/osxaudio/gstosxaudio.c:
351 * sys/osxaudio/gstosxaudioelement.c:
352 * sys/osxaudio/gstosxaudioelement.h:
353 * sys/osxaudio/gstosxaudiosink.c:
354 * sys/osxaudio/gstosxaudiosink.h:
355 * sys/osxaudio/gstosxaudiosrc.c:
356 * sys/osxaudio/gstosxaudiosrc.h:
357 * sys/osxaudio/gstosxringbuffer.c:
358 * sys/osxaudio/gstosxringbuffer.h:
359 Rewrite osxaudio to work more flexibly and more reliably, using a
360 different abstraction layer of coreaudio that is the recommended way of
361 doing low-level audio I/O on OSX.
364 2009-01-02 Wim Taymans <wim.taymans@collabora.co.uk>
366 * tests/examples/rtp/server-decodebin-H263p-AMR.sh:
367 Add example RTP transcoding pipeline from any file decodedable with
370 2009-01-02 Wim Taymans <wim.taymans@collabora.co.uk>
372 * tests/examples/rtp/.cvsignore:
373 * tests/examples/rtp/Makefile.am:
374 * tests/examples/rtp/client-PCMA.c: (pad_added_cb), (main):
375 * tests/examples/rtp/server-alsasrc-PCMA.c: (main):
376 Add two C examples of using gstrtpbin as a sender and a receiver.
378 2008-12-31 Jan Schmidt <jan.schmidt@sun.com>
381 Remove conflict marker from ChangeLog
383 2008-12-28 Edward Hervey <edward.hervey@collabora.co.uk>
385 Patch by: j^ <j at oil21.org>
387 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps),
388 (qtdemux_audio_caps):
389 Add codec mapping for xvid, fmp4 and ac3 tracks.
392 2008-12-23 Wim Taymans <wim.taymans@collabora.co.uk>
394 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
395 (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
396 (gst_smokeenc_chain), (gst_smokeenc_change_state):
397 * ext/jpeg/gstsmokeenc.h:
398 Implement getcaps function.
399 Set caps on the pad and on all outgoing buffers.
402 2008-12-19 Stefan Kost <ensonic@users.sf.net>
404 * ext/pulse/pulsemixerctrl.c:
405 And remove temporary comment pointing to the bug ticket.
407 * gst/avi/gstavimux.c:
408 Move reoccuring logging to LOG and log instance too.
410 2008-12-17 Stefan Kost <ensonic@users.sf.net>
412 * ext/pulse/pulsemixerctrl.c:
413 Don't leak the pa_operation.
415 2008-12-16 Stefan Kost <ensonic@users.sf.net>
420 2008-12-16 Stefan Kost <ensonic@users.sf.net>
422 * gst/avi/gstavimux.c:
423 Rename api from _flush to _reset_tags.
425 2008-12-16 Stefan Kost <ensonic@users.sf.net>
427 * gst/avi/gstavimux.c:
428 Use new tagsetter api to flush tags.
430 2008-12-16 Sebastian Dröge <sebastian.droege@collabora.co.uk>
432 * tests/check/elements/deinterleave.c: (deinterleave_suite):
433 Increase timeout to 3 minutes to prevent timeouts.
435 2008-12-16 Sebastian Dröge <sebastian.droege@collabora.co.uk>
437 * tests/check/elements/interleave.c: (interleave_suite):
438 Increase timeout to 3 minutes to prevent timeouts.
440 2008-12-16 Stefan Kost <ensonic@users.sf.net>
442 * gst/avi/gstavimux.c:
443 * gst/avi/gstavimux.h:
444 Totally remove the internal taglists and fully use tagsetter.
446 2008-12-15 Stefan Kost <ensonic@users.sf.net>
448 * gst/avi/gstavimux.c:
449 Instead of filtering wrongly just use the mergemode. Applications is
450 use KEEP_ALL if they want to supress tag-events. Fixes #563221 for
451 avi for real (I hope). Everyone chime in, before I fix the others.
453 2008-12-15 Stefan Kost <ensonic@users.sf.net>
455 * ext/pulse/pulsemixerctrl.c:
456 Add note about memleak.
458 2008-12-13 Edward Hervey <bilboed@gmail.com>
461 A couple more .m4 that aren't shipped anymore with gettext 0.17.
463 2008-12-13 Edward Hervey <edward.hervey@collabora.co.uk>
465 * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
467 * gst/law/alaw-decode.c: (gst_alaw_dec_base_init),
469 * gst/law/alaw-encode.c: (gst_alaw_enc_base_init),
471 * gst/law/alaw.c: (plugin_init):
472 * gst/law/mulaw-decode.c: (gst_mulawdec_base_init),
474 * gst/law/mulaw-encode.c: (gst_mulawenc_base_init),
476 * gst/law/mulaw.c: (plugin_init):
477 Switch to using GstStaticPadTemplate.
478 * gst/udp/gstudpnetutils.c: (gst_udp_get_addr):
479 Don't forget to free the addrinfo structure.
480 * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
481 (gst_wavparse_sink_activate):
482 Don't forget to unref the GstAdapter.
484 2008-12-13 Edward Hervey <edward.hervey@collabora.co.uk>
487 inttypes.m4 hasn't been available since gettext-0.15, and since we now
488 require gettext >= 0.17 ... we can remove it from the list of files to
491 2008-12-09 Stefan Kost <ensonic@users.sf.net>
493 * gst/avi/gstavidemux.c:
496 * gst/avi/gstavimux.c:
497 Handle more metadata fields. Better estimate of metadata size. Don't
498 merge received tags, if application has specified tags using
499 GST_TAG_MERGE_REPLACE_ALL. Fixes #563221 for avi.
501 2008-12-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
503 * tests/check/Makefile.am:
504 Also ignore pulsemixer for the states unit test.
506 2008-12-09 Wim Taymans <wim.taymans@collabora.co.uk>
508 * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_process):
509 Add an EOI marker at the end of the jpeg frame when it's missing.
512 2008-12-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
514 * tests/check/elements/videocrop.c: (check_1x1_buffer):
515 Update the unit test for the new color values for BT.601 red.
518 2008-12-09 Tim-Philipp Müller <tim.muller at collabora co uk>
520 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
521 Restore previous behaviour of not passing QoS and navigation
522 events upstream, which presumably wasn't meant to be changed.
524 2008-12-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
526 * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
527 (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
528 (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
529 (gst_dvdemux_chain), (gst_dvdemux_loop),
530 (gst_dvdemux_change_state):
531 Add srcpads only when needed and remove them again when going
532 back to READY. This prevents stalled pipelines if there's no
533 audio inside the DV stream, which happens for many MXF files.
535 2008-12-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
537 * tests/check/elements/souphttpsrc.c: (GST_START_TEST),
539 The ports in libsoup are unsigned integers and not signed
542 2008-12-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
544 * ext/dv/gstdvdemux.c: (gst_dvdemux_add_video_pad),
545 (gst_dvdemux_add_audio_pad), (gst_dvdemux_remove_pads),
546 (gst_dvdemux_demux_audio), (gst_dvdemux_demux_video),
547 (gst_dvdemux_chain), (gst_dvdemux_loop),
548 (gst_dvdemux_change_state):
549 Add srcpads only when they're needed. If we add all pads in any
550 case we will get a stalling audio pad if the stream contains
551 no audio, which is the case for many MXF files.
553 2008-12-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
555 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_src_event):
556 Forward all events upstream unless it's something we really
557 don't handle. This fixes latency configuration of pipelines.
559 2008-12-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
561 * ext/dv/gstdv.c: (plugin_init):
562 * ext/dv/gstdvdec.c: (gst_dvdec_class_init):
563 * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init):
564 Really call dv_init() exactly one time, not one time for
565 the demuxer and one time for the decoder.
567 2008-12-08 Wim Taymans <wim.taymans@collabora.co.uk>
569 * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_handle_buffer):
570 Copy incomming timestamp to outgoing packets.
572 2008-12-08 Wim Taymans <wim.taymans@collabora.co.uk>
574 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush),
575 (gst_rtp_mp4v_pay_event):
576 Don't try to push packets before we could find a valid config
577 startcode. Fixes #563509.
579 2008-12-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
581 Patch by: Brian Cameron <brian.cameron at sun dot com>
583 * sys/sunaudio/gstsunaudiomixerctrl.c:
584 (gst_sunaudiomixer_ctrl_open):
585 Set the mixer fd before calling ioctl() on it. Fixes bug #563414.
587 2008-12-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
589 Patch by: Alexandre Rostovtsev <tetromino at gmail dot com>
592 Make usage of libv4l optional by a configure parameter.
595 2008-12-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
597 * docs/plugins/Makefile.am:
598 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
599 * docs/plugins/gst-plugins-good-plugins-sections.txt:
600 * docs/plugins/gst-plugins-good-plugins.args:
601 * docs/plugins/gst-plugins-good-plugins.hierarchy:
602 * docs/plugins/gst-plugins-good-plugins.interfaces:
603 * docs/plugins/inspect/plugin-1394.xml:
604 * docs/plugins/inspect/plugin-aasink.xml:
605 * docs/plugins/inspect/plugin-alaw.xml:
606 * docs/plugins/inspect/plugin-alpha.xml:
607 * docs/plugins/inspect/plugin-alphacolor.xml:
608 * docs/plugins/inspect/plugin-annodex.xml:
609 * docs/plugins/inspect/plugin-apetag.xml:
610 * docs/plugins/inspect/plugin-audiofx.xml:
611 * docs/plugins/inspect/plugin-auparse.xml:
612 * docs/plugins/inspect/plugin-autodetect.xml:
613 * docs/plugins/inspect/plugin-avi.xml:
614 * docs/plugins/inspect/plugin-cacasink.xml:
615 * docs/plugins/inspect/plugin-cairo.xml:
616 * docs/plugins/inspect/plugin-cutter.xml:
617 * docs/plugins/inspect/plugin-debug.xml:
618 * docs/plugins/inspect/plugin-dv.xml:
619 * docs/plugins/inspect/plugin-efence.xml:
620 * docs/plugins/inspect/plugin-effectv.xml:
621 * docs/plugins/inspect/plugin-equalizer.xml:
622 * docs/plugins/inspect/plugin-esdsink.xml:
623 * docs/plugins/inspect/plugin-flac.xml:
624 * docs/plugins/inspect/plugin-flxdec.xml:
625 * docs/plugins/inspect/plugin-gamma.xml:
626 * docs/plugins/inspect/plugin-gconfelements.xml:
627 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
628 * docs/plugins/inspect/plugin-goom.xml:
629 * docs/plugins/inspect/plugin-goom2k1.xml:
630 * docs/plugins/inspect/plugin-halelements.xml:
631 * docs/plugins/inspect/plugin-icydemux.xml:
632 * docs/plugins/inspect/plugin-id3demux.xml:
633 * docs/plugins/inspect/plugin-interleave.xml:
634 * docs/plugins/inspect/plugin-jpeg.xml:
635 * docs/plugins/inspect/plugin-level.xml:
636 * docs/plugins/inspect/plugin-matroska.xml:
637 * docs/plugins/inspect/plugin-monoscope.xml:
638 * docs/plugins/inspect/plugin-mulaw.xml:
639 * docs/plugins/inspect/plugin-multifile.xml:
640 * docs/plugins/inspect/plugin-multipart.xml:
641 * docs/plugins/inspect/plugin-navigationtest.xml:
642 * docs/plugins/inspect/plugin-ossaudio.xml:
643 * docs/plugins/inspect/plugin-png.xml:
644 * docs/plugins/inspect/plugin-pulseaudio.xml:
645 * docs/plugins/inspect/plugin-quicktime.xml:
646 * docs/plugins/inspect/plugin-replaygain.xml:
647 * docs/plugins/inspect/plugin-rtp.xml:
648 * docs/plugins/inspect/plugin-rtsp.xml:
649 * docs/plugins/inspect/plugin-shout2send.xml:
650 * docs/plugins/inspect/plugin-smpte.xml:
651 * docs/plugins/inspect/plugin-soup.xml:
652 * docs/plugins/inspect/plugin-spectrum.xml:
653 * docs/plugins/inspect/plugin-speex.xml:
654 * docs/plugins/inspect/plugin-taglib.xml:
655 * docs/plugins/inspect/plugin-udp.xml:
656 * docs/plugins/inspect/plugin-video4linux2.xml:
657 * docs/plugins/inspect/plugin-videobalance.xml:
658 * docs/plugins/inspect/plugin-videobox.xml:
659 * docs/plugins/inspect/plugin-videocrop.xml:
660 * docs/plugins/inspect/plugin-videoflip.xml:
661 * docs/plugins/inspect/plugin-videomixer.xml:
662 * docs/plugins/inspect/plugin-wavenc.xml:
663 * docs/plugins/inspect/plugin-wavpack.xml:
664 * docs/plugins/inspect/plugin-wavparse.xml:
665 * docs/plugins/inspect/plugin-ximagesrc.xml:
666 * gst/matroska/matroska-demux.c:
667 * gst/matroska/matroska-demux.h:
668 * gst/matroska/matroska-mux.c:
669 * gst/matroska/matroska-mux.h:
670 Add documentation for matroskamux and matroskademux and
671 update the inspection xml files.
673 2008-12-04 Sebastian Dröge <sebastian.droege@collabora.co.uk>
676 Apparently AC_CONFIG_MACRO_DIR breaks when using more
677 than one macro directory, reverting last change.
679 2008-12-04 Sebastian Dröge <sebastian.droege@collabora.co.uk>
682 Set AC_CONFIG_MACRO_DIR to common/m4 to point autoconf to
685 2008-11-30 Sebastian Dröge <sebastian.droege@collabora.co.uk>
687 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
688 Provide the parameters that are required for the format string
689 to fix a compiler warning.
691 2008-11-29 Stefan Kost <ensonic@users.sf.net>
693 * gst/autodetect/gstautoaudiosrc.c:
696 2008-11-29 Sebastian Dröge <sebastian.droege@collabora.co.uk>
698 Patch by: Cygwin Ports maintainer
699 <yselkowitz at users dot sourceforge dot net>
703 Require gettext 0.17 because older versions don't mix with libtool
704 2.2. At build time an older gettext version will still work.
707 2008-11-28 Wim Taymans <wim.taymans@collabora.co.uk>
709 Patch by: Peter Kjellerstedt <pkj at axis com>
711 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
712 Make gst_multiudpsink_render() ignore errors from sendto() instead of
713 breaking streaming. Emit a warning instead. Fixes #562572.
715 2008-11-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
717 Patch by: Ron McOuat <rmcouat at smartt dot com>
719 * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
720 (gst_soup_http_src_init), (gst_soup_http_src_dispose),
721 (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
722 (gst_soup_http_src_authenticate_cb), (gst_soup_http_src_start):
723 * ext/soup/gstsouphttpsrc.h:
724 * tests/check/elements/souphttpsrc.c: (basic_auth_cb),
725 (digest_auth_cb), (run_test), (GST_START_TEST),
726 (souphttpsrc_suite), (run_server):
727 Add support for basic and digest authentication in souphttpsrc.
730 2008-11-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
732 Patch by: Pepijn Van Eeckhoudt
733 <pepijn dot vaneeckhoudt at luciad dot com>
735 * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
736 (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
737 * gst/wavenc/gstwavenc.h:
739 Add support for a-law and mu-law encoded wav files. Fixes bug #562434.
741 2008-11-27 Wim Taymans <wim.taymans@collabora.co.uk>
743 Patch by: 이문형 <iwings at gmail dot com>
745 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
746 Prevent further read/write actions taken to the connect-failed socket by
747 erroring out quickly. See #562258.
749 2008-11-26 Stefan Kost <ensonic@users.sf.net>
751 * tests/examples/level/level-example.c:
752 Set fakesink to sync. Otherwise people might question the message
753 interval. Nevertheless the timestamp in the message is what matters.
755 2008-11-25 Wim Taymans <wim.taymans@collabora.co.uk>
757 * tests/icles/.cvsignore:
758 cvsignore newly generated file.
760 2008-11-25 Wim Taymans <wim.taymans@collabora.co.uk>
762 * gst/rtp/gstasteriskh263.c:
763 * gst/rtp/gstasteriskh263.h:
764 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
765 * gst/rtp/gstrtpL16depay.h:
766 * gst/rtp/gstrtpL16pay.c:
767 * gst/rtp/gstrtpL16pay.h:
768 * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps):
769 * gst/rtp/gstrtpac3depay.h:
770 * gst/rtp/gstrtpamrdepay.c:
771 * gst/rtp/gstrtpamrdepay.h:
772 * gst/rtp/gstrtpamrpay.c:
773 * gst/rtp/gstrtpamrpay.h:
774 * gst/rtp/gstrtpdepay.c:
775 * gst/rtp/gstrtpdepay.h:
776 * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps):
777 * gst/rtp/gstrtpg726depay.c:
778 * gst/rtp/gstrtpg726pay.c:
779 * gst/rtp/gstrtpg729depay.c:
780 * gst/rtp/gstrtpg729pay.c:
781 * gst/rtp/gstrtpgsmdepay.c:
782 * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
783 * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps):
784 * gst/rtp/gstrtph263depay.h:
785 * gst/rtp/gstrtph263pay.c:
786 * gst/rtp/gstrtph263pay.h:
787 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
788 * gst/rtp/gstrtph263pdepay.h:
789 * gst/rtp/gstrtph263ppay.c:
790 * gst/rtp/gstrtph263ppay.h:
791 * gst/rtp/gstrtph264depay.c:
792 * gst/rtp/gstrtph264depay.h:
793 * gst/rtp/gstrtph264pay.c:
794 * gst/rtp/gstrtph264pay.h:
795 * gst/rtp/gstrtpilbcdepay.c:
796 * gst/rtp/gstrtpilbcpay.c:
797 * gst/rtp/gstrtpjpegdepay.h:
798 * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps):
799 * gst/rtp/gstrtpmp1sdepay.h:
800 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
801 * gst/rtp/gstrtpmp2tdepay.h:
802 * gst/rtp/gstrtpmp2tpay.c:
803 * gst/rtp/gstrtpmp2tpay.h:
804 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps):
805 * gst/rtp/gstrtpmp4apay.c:
806 * gst/rtp/gstrtpmp4apay.h:
807 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps):
808 * gst/rtp/gstrtpmp4gdepay.h:
809 * gst/rtp/gstrtpmp4gpay.c:
810 * gst/rtp/gstrtpmp4gpay.h:
811 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
812 * gst/rtp/gstrtpmp4vdepay.h:
813 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
814 * gst/rtp/gstrtpmp4vpay.h:
815 * gst/rtp/gstrtpmpadepay.c:
816 * gst/rtp/gstrtpmpadepay.h:
817 * gst/rtp/gstrtpmpapay.c:
818 * gst/rtp/gstrtpmpapay.h:
819 * gst/rtp/gstrtpmpvdepay.c:
820 * gst/rtp/gstrtpmpvdepay.h:
821 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
822 * gst/rtp/gstrtppcmapay.c:
823 * gst/rtp/gstrtppcmudepay.c:
824 * gst/rtp/gstrtppcmupay.c:
825 * gst/rtp/gstrtpspeexdepay.c:
826 * gst/rtp/gstrtpspeexpay.c:
827 * gst/rtp/gstrtpsv3vdepay.c:
828 * gst/rtp/gstrtpsv3vdepay.h:
829 * gst/rtp/gstrtptheoradepay.c:
830 * gst/rtp/gstrtptheoradepay.h:
831 * gst/rtp/gstrtptheorapay.c:
832 * gst/rtp/gstrtptheorapay.h:
833 * gst/rtp/gstrtpvorbisdepay.c:
834 * gst/rtp/gstrtpvorbisdepay.h:
835 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
836 * gst/rtp/gstrtpvorbispay.h:
837 * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
838 * gst/rtp/gstrtpvrawpay.c:
839 Fix the descriptions and fix some email addresses.
841 2008-11-25 Julien Moutte <julien@fluendo.com>
843 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add MPG1 and MPG2 fourcc
844 to supported qtdemux video codecs as I found some video clips using
847 2008-11-25 Wim Taymans <wim.taymans@collabora.co.uk>
849 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
850 * gst/autodetect/gstautoaudiosrc.c: (gst_auto_audio_src_detect):
851 * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
852 (gst_auto_video_sink_detect):
853 * gst/autodetect/gstautovideosrc.c: (gst_auto_video_src_detect):
854 Post an error when we can't set the internal ghostpad target.
856 2008-11-25 Wim Taymans <wim.taymans@collabora.co.uk>
858 * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
859 (gst_video_crop_transform), (gst_video_crop_transform_caps),
860 (gst_video_crop_set_caps), (gst_video_crop_set_property):
861 * gst/videocrop/gstvideocrop.h:
862 Fix renegotiation when changing properties using the new basetransform
863 features. Fixes #561502.
865 * tests/icles/Makefile.am:
866 * tests/icles/videocrop2-test.c: (make_pipeline), (main):
867 Add crazy interactive test unit for dynamically changing properties.
869 2008-11-24 Wim Taymans <wim.taymans@collabora.co.uk>
871 * gst/rtsp/gstrtspsrc.c: (new_session_pad),
872 (gst_rtspsrc_parse_range):
873 Add some more debugging.
874 Use the reanges received from the server unconditionally.
877 2008-11-23 Stefan Kost <ensonic@users.sf.net>
879 * ext/pulse/pulsesink.c:
880 Change #if 0 to something more expresive and add pointer to related
883 2008-11-23 Sebastian Dröge <sebastian.droege@collabora.co.uk>
885 Patch by: Tal Shalif <tshalif at nargila dot org>
887 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
888 Use G_{BIG,LITTLE}_ENDIAN instead of the non-GLib variants as
889 the latter don't exist on some systems (mingw). Fixes bug #561990.
891 2008-11-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
893 Patch by: Zeeshan Ali <zeeshanak at gnome dot org>
895 * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_build_message):
896 Add transferMode.dnla.org header to HTTP requests as this is
897 required by the DLNA specs and doesn't hurt in other situations.
900 2008-11-20 Michael Smith <msmith@songbirdnest.com>
902 * sys/osxvideo/osxvideosink.h:
903 * sys/osxvideo/osxvideosink.m:
904 Handle video window resizing more correctly, avoiding crashes when
905 embedding the window and resizing it.
907 2008-11-20 Michael Smith <msmith@songbirdnest.com>
909 * gst/udp/gstmultiudpsink.c:
910 * gst/udp/gstudpnetutils.c:
911 * gst/udp/gstudpnetutils.h:
912 * gst/udp/gstudpsrc.c:
913 Fix multiudpsink on OSX by passing the specific length of the socket,
914 refactor that into a function shared with the same thing in udpsrc.
916 2008-11-20 Wim Taymans <wim.taymans@collabora.co.uk>
918 * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
919 (uint64_ceiling_scale), (gst_wavparse_calculate_duration),
920 (gst_wavparse_stream_headers):
921 Fix the scaling code.
922 Fix parsing of the INFO chunks, we were reading the wrong number of
923 bytes. Fixes #561580.
925 2008-11-20 Jan Schmidt <jan.schmidt@sun.com>
927 * gst/matroska/matroska-mux.c:
928 Fix NULL pointer dereference of an unset codec_id in the recently
931 2008-11-20 Jan Schmidt <jan.schmidt@sun.com>
933 * tests/check/Makefile.am:
934 Just keep disabling elements that hang the states test until it
937 2008-11-20 Jan Schmidt <jan.schmidt@sun.com>
939 * ext/libpng/gstpngenc.c:
940 Don't flush downstream after every buffer - that's not what
941 this libpng callback is for at all!
943 2008-11-17 Tim-Philipp Müller <tim.muller at collabora co uk>
945 * sys/v4l2/v4l2src_calls.c:
946 (gst_v4l2src_probe_caps_for_format_and_size), (sort_by_frame_size),
947 (gst_v4l2src_probe_caps_for_format):
948 Turns out we don't always get the frame sizes in a predefined
949 order from lowest to highest resolution, so let's just sort the
950 list by frame size once we've queried the possible resolutions
951 rather than assume any particular order. Fixes probed caps for
952 the camera in my HP2133 mini notebook and makes v4l2src default
955 2008-11-16 Edward Hervey <edward.hervey@collabora.co.uk>
957 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
958 * gst/matroska/matroska-ids.h:
959 Make mkvdemux aware of E-AC3.
961 2008-11-14 Wim Taymans <wim.taymans@collabora.co.uk>
963 * gst/rtp/Makefile.am:
964 * gst/rtp/gstrtp.c: (plugin_init):
965 * gst/rtp/gstrtpjpegdepay.c: (gst_rtp_jpeg_depay_base_init),
966 (gst_rtp_jpeg_depay_class_init), (gst_rtp_jpeg_depay_init),
967 (gst_rtp_jpeg_depay_finalize), (MakeTables), (MakeQuantHeader),
968 (MakeHuffmanHeader), (MakeDRIHeader), (MakeHeaders),
969 (gst_rtp_jpeg_depay_setcaps), (gst_rtp_jpeg_depay_process),
970 (gst_rtp_jpeg_depay_change_state),
971 (gst_rtp_jpeg_depay_plugin_init):
972 * gst/rtp/gstrtpjpegdepay.h:
973 Add a jpeg depayloader.
975 * gst/rtp/gstrtpjpegpay.c:
976 Set the default properties on the payloader to better defaults.
978 2008-11-14 Stefan Kost <ensonic@users.sf.net>
980 * sys/v4l2/gstv4l2.c:
981 Give it a primary rank for autovideosrc.
983 2008-11-14 Wim Taymans <wim.taymans@collabora.co.uk>
985 Patch by: Bjorn Ostby <bjornos at axis dot com>
987 * gst/rtp/Makefile.am:
988 * gst/rtp/gstrtp.c: (plugin_init):
989 * gst/rtp/gstrtpjpegpay.c: (gst_rtp_jpeg_pay_base_init),
990 (gst_rtp_jpeg_pay_class_init), (gst_rtp_jpeg_pay_init),
991 (gst_rtp_jpeg_pay_setcaps), (gst_rtp_jpeg_pay_header_size),
992 (gst_rtp_jpeg_pay_read_quant_table),
993 (gst_rtp_jpeg_pay_scan_marker), (gst_rtp_jpeg_pay_handle_buffer),
994 (gst_rtp_jpeg_pay_set_property), (gst_rtp_jpeg_pay_get_property),
995 (gst_rtp_jpeg_pay_plugin_init):
996 * gst/rtp/gstrtpjpegpay.h:
997 Add JPEG payloader. Fixes #560756.
999 2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
1001 Patch by: Fabricio Godoy <skarllot at gmail dot com>
1003 * sys/oss/gstosssink.c: (gst_oss_sink_open):
1004 * sys/oss/gstosssrc.c: (gst_oss_src_open):
1005 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
1006 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
1007 Fix some spelling mistakes. Fixes #556802.
1009 2008-11-13 Stefan Kost <ensonic@users.sf.net>
1011 * gst/equalizer/GstIirEqualizer10Bands.prs:
1012 * gst/equalizer/GstIirEqualizer3Bands.prs:
1013 * gst/equalizer/Makefile.am:
1014 * gst/equalizer/gstiirequalizer10bands.c:
1015 * gst/equalizer/gstiirequalizer3bands.c:
1016 Add presets for equalizer. Fixes #522183.
1018 2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
1020 * gst/rtsp/Makefile.am:
1021 * gst/rtsp/gstrtsp.c: (plugin_init):
1022 * gst/rtsp/gstrtspgoogle.c:
1023 * gst/rtsp/gstrtspgoogle.h:
1024 Remove google extension again, it's not needed anymore because we never
1025 send multiple transports anymore.
1027 2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
1029 Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1031 * gst/rtsp/gstrtspsrc.c: (gst_rtsp_nat_method_get_type),
1032 (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
1033 (gst_rtspsrc_get_property), (gst_rtspsrc_create_stream),
1034 (gst_rtspsrc_stream_free),
1035 (gst_rtspsrc_stream_configure_udp_sinks),
1036 (gst_rtspsrc_stream_configure_transport),
1037 (gst_rtspsrc_send_dummy_packets),
1038 (gst_rtspsrc_create_transports_string),
1039 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
1040 * gst/rtsp/gstrtspsrc.h:
1041 Add property to configure NAT traversal method.
1042 Ignore EOS from the internal sinks.
1043 Implement sending dummy packets as a (simple) method to open up
1045 Send PLAY request to the server after we started the udp sources.
1048 2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
1050 Patch by: Yotam <sh dot yotam at gmail dot com>
1052 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_event):
1053 Flush the remaining frames on EOS. Fixes #560641.
1055 2008-11-12 Jan Schmidt <jan.schmidt@sun.com>
1057 * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_handle_buffer):
1058 Fix compiler warning about printf formatting.
1060 2008-11-12 Andy Wingo <wingo@pobox.com>
1062 * gst/qtdemux/qtdemux.h (struct _GstQTDemux):
1063 * gst/qtdemux/qtdemux.c (gst_qtdemux_do_seek): Queue up new
1064 segment events instead of sending them from the seeking thread.
1066 (gst_qtdemux_push_pending_newsegment): New helper, sends out
1067 queued newsegment events.
1068 (gst_qtdemux_loop_state_movie): Voilà, call it here. Only need to
1069 call it here, as we only seek when looping, and only push in the
1072 2008-11-11 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1074 * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_tmpo),
1075 (qtdemux_tag_add_covr), (qtdemux_parse_udta):
1076 * gst/qtdemux/qtdemux_fourcc.h:
1077 * gst/qtdemux/qtdemux_types.c:
1078 Add cover and alternative copyright tag, and enhance some existing
1079 ones by marking them as container atoms.
1081 2008-11-11 Wim Taymans <wim.taymans@collabora.co.uk>
1083 * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_set_caps):
1084 Don't ignore the return value of setcaps.
1086 2008-11-11 Wim Taymans <wim.taymans@collabora.co.uk>
1088 Patch by: Olivier Crete <tester at tester dot ca>
1090 * gst/rtp/gstrtpg729pay.c: (gst_rtp_g729_pay_base_init),
1091 (gst_rtp_g729_pay_class_init), (gst_rtp_g729_pay_init),
1092 (gst_rtp_g729_pay_set_caps), (gst_rtp_g729_pay_handle_buffer):
1093 * gst/rtp/gstrtpg729pay.h:
1094 Replace G729 payloader with an improved version. Fixes #532409.
1096 2008-11-11 Wim Taymans <wim.taymans@collabora.co.uk>
1098 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_transports_string),
1099 (gst_rtspsrc_change_state):
1100 Only send one transport at a time for improved compatibility with some
1101 broken servers. See #537832.
1103 2008-11-11 Wim Taymans <wim.taymans@collabora.co.uk>
1105 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
1106 (gst_rtspsrc_perform_seek):
1107 Only pause/play in the seek handler when the source was playing.
1110 2008-11-11 Sebastian Dröge <slomo@circular-chaos.org>
1112 * gst/matroska/matroska-mux.c:
1113 (gst_matroska_mux_handle_dirac_packet):
1114 Fix muxing of Dirac streams if the input already has the format
1115 we need, i.e. is the output of matroskademux.
1117 2008-11-11 Stefan Kost <ensonic@users.sf.net>
1119 * gst/avi/gstavimux.c:
1120 Don't segfault on string typed tags being NULL. Fixes #560155.
1122 2008-11-10 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1124 * gst/matroska/matroska-mux.c: (aac_codec_data_to_codec_id),
1125 (gst_matroska_mux_audio_pad_setcaps):
1126 Fix mapping AAC profile to Matroska codec id.
1128 2008-11-10 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1130 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
1131 (qtdemux_video_caps), (qtdemux_audio_caps):
1132 Refactor some raw audio caps building, and handle >16-bit cases.
1133 Fix/replace building caps from a string description.
1135 2008-11-10 Thomas Vander Stichele <thomas at apestaart dot org>
1137 * gst/audiofx/audiowsincband.c:
1138 * gst/audiofx/audiowsinclimit.c:
1139 * gst/cutter/gstcutter.c:
1140 Make author name consistent with others.
1142 2008-11-10 Wim Taymans <wim.taymans@collabora.co.uk>
1144 Based on patch by: Eric Zhang <chao.zhang at access-company dot com>
1146 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_perform_seek),
1147 (gst_rtspsrc_stream_configure_udp_sink):
1148 Pause the RTSP stream before doing a new play request.
1149 Make sure that adding the udpsinks does not cause the rtspsrc to become
1150 a sink. Fixes #559547.
1152 2008-11-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1154 * gst/matroska/matroska-ids.h:
1155 * gst/matroska/matroska-mux.c: (gst_matroska_pad_free),
1156 (gst_matroska_mux_handle_dirac_packet),
1157 (gst_matroska_mux_write_data):
1158 Implement Dirac muxing into Matroska comforming to the spec, i.e.
1159 put all Dirac packages up to a picture into a Matroska block.
1161 TODO: Implement writing of the ReferenceBlock Matroska elements,
1162 currently the Dirac muxing is only 100% correct if Matroska version 2
1163 is selected for muxing.
1165 2008-11-04 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1167 Patch by: Bastien Nocera <hadess at hadess dot net>,
1168 Hans de Goede <jwrdegoede at fedoraproject dot org>
1171 * sys/v4l2/Makefile.am:
1172 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
1173 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
1174 (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_close),
1175 (gst_v4l2_get_norm), (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
1176 (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
1177 (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
1178 (gst_v4l2_get_input), (gst_v4l2_set_input):
1179 * sys/v4l2/v4l2_calls.h:
1180 * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
1181 (gst_v4l2_buffer_new), (gst_v4l2_buffer_pool_finalize),
1182 (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
1183 (gst_v4l2src_fill_format_list),
1184 (gst_v4l2src_probe_caps_for_format_and_size),
1185 (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame),
1186 (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
1187 (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
1188 (gst_v4l2src_get_nearest_size):
1189 Optionally use libv4l to access v4l2 devices. Fixes bug #545033.
1191 2008-11-04 Stefan Kost <ensonic@users.sf.net>
1193 * ext/aalib/Makefile.am:
1194 * ext/annodex/Makefile.am:
1195 * ext/cairo/Makefile.am:
1196 * ext/dv/Makefile.am:
1197 * ext/esd/Makefile.am:
1198 * ext/flac/Makefile.am:
1199 * ext/gconf/Makefile.am:
1200 * ext/gdk_pixbuf/Makefile.am:
1201 * ext/hal/Makefile.am:
1202 * ext/jpeg/Makefile.am:
1203 * ext/ladspa/Makefile.am:
1204 * ext/libcaca/Makefile.am:
1205 * ext/libmng/Makefile.am:
1206 * ext/libpng/Makefile.am:
1207 * ext/mikmod/Makefile.am:
1208 * ext/pulse/Makefile.am:
1209 * ext/raw1394/Makefile.am:
1210 * ext/shout2/Makefile.am:
1211 * ext/soup/Makefile.am:
1212 * ext/speex/Makefile.am:
1213 * ext/taglib/Makefile.am:
1214 * ext/wavpack/Makefile.am:
1215 * gst/alpha/Makefile.am:
1216 * gst/apetag/Makefile.am:
1217 * gst/audiofx/Makefile.am:
1218 * gst/auparse/Makefile.am:
1219 * gst/autodetect/Makefile.am:
1220 * gst/avi/Makefile.am:
1221 * gst/cutter/Makefile.am:
1222 * gst/debug/Makefile.am:
1223 * gst/effectv/Makefile.am:
1224 * gst/equalizer/Makefile.am:
1225 * gst/flx/Makefile.am:
1226 * gst/goom/Makefile.am:
1227 * gst/goom2k1/Makefile.am:
1228 * gst/icydemux/Makefile.am:
1229 * gst/id3demux/Makefile.am:
1230 * gst/interleave/Makefile.am:
1231 * gst/law/Makefile.am:
1232 * gst/level/Makefile.am:
1233 * gst/matroska/Makefile.am:
1234 * gst/median/Makefile.am:
1235 * gst/monoscope/Makefile.am:
1236 * gst/multifile/Makefile.am:
1237 * gst/multipart/Makefile.am:
1238 * gst/oldcore/Makefile.am:
1239 * gst/qtdemux/Makefile.am:
1240 * gst/replaygain/Makefile.am:
1241 * gst/rtp/Makefile.am:
1242 * gst/rtsp/Makefile.am:
1243 * gst/smpte/Makefile.am:
1244 * gst/spectrum/Makefile.am:
1245 * gst/udp/Makefile.am:
1246 * gst/videobox/Makefile.am:
1247 * gst/videocrop/Makefile.am:
1248 * gst/videofilter/Makefile.am:
1249 * gst/videomixer/Makefile.am:
1250 * gst/wavenc/Makefile.am:
1251 * gst/wavparse/Makefile.am:
1252 * sys/directdraw/Makefile.am:
1253 * sys/directsound/Makefile.am:
1254 * sys/oss/Makefile.am:
1255 * sys/osxaudio/Makefile.am:
1256 * sys/osxvideo/Makefile.am:
1257 * sys/sunaudio/Makefile.am:
1258 * sys/v4l2/Makefile.am:
1259 * sys/waveform/Makefile.am:
1260 * sys/ximage/Makefile.am:
1261 Don't install static libs for plugins. Fixes #550851 for -good.
1263 2008-10-31 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1265 * ext/flac/Makefile.am:
1266 Include $(FLAC_CFLAGS) in CFLAGS to make sure to find the FLAC headers.
1267 This fixes compilation if FLAC is installed in an uncommon location
1268 that is not already handled by other CFLAGS. Fixes bug #558711.
1270 2008-10-31 Wim Taymans <wim.taymans@collabora.co.uk>
1272 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank):
1273 Guard more uncommon formats with ifdefs so that we can compile on older
1276 2008-10-31 Wim Taymans <wim.taymans@collabora.co.uk>
1278 Patch by: Nick Haddad <nick at haddads dot net>
1280 * gst/avi/gstavidemux.c: (gst_avi_demux_is_uncompressed),
1281 (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
1282 (gst_avi_demux_stream_data):
1283 Invert other uncompressed RGB formats. Fixes #558554.
1285 2008-10-30 Sebastian Dröge <slomo@circular-chaos.org>
1287 * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
1288 (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
1289 * gst/wavenc/gstwavenc.h:
1290 Add support for float/double as input and remove the (nowadays)
1291 useless parsing of the depth as we require width==depth.
1293 2008-10-30 Wim Taymans <wim.taymans@collabora.co.uk>
1295 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps):
1296 * gst/rtp/gstrtpmpapay.c:
1297 Narrow down the caps of the mpeg audio pay/depayloaders to only accept
1298 mpeg version 1. Fixes #558427.
1300 2008-10-29 Wim Taymans <wim.taymans@collabora.co.uk>
1302 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_flush),
1303 (gst_rtp_L16_pay_getcaps):
1304 Only put an integral amount of samples in the RTP packet.
1307 2008-10-28 Wim Taymans <wim.taymans@collabora.co.uk>
1309 * gst/rtp/gstrtpchannels.c: (gst_rtp_channels_get_by_index):
1310 * gst/rtp/gstrtpchannels.h:
1311 Add method to get possible channel positions.
1313 2008-10-28 Wim Taymans <wim.taymans@collabora.co.uk>
1315 * gst/rtp/Makefile.am:
1316 Also commit updated makefile
1318 2008-10-28 Sebastian Dröge <slomo@circular-chaos.org>
1320 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
1321 Don't allow width=32,depth=24 as input. WAV requires that the width
1322 is the next integer multiply of 8 from the depth.
1324 2008-10-28 Wim Taymans <wim.taymans@collabora.co.uk>
1326 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps):
1327 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
1328 (gst_rtp_L16_pay_getcaps):
1329 * gst/rtp/gstrtpchannels.c: (check_channels),
1330 (gst_rtp_channels_get_by_pos), (gst_rtp_channels_get_by_order),
1331 (gst_rtp_channels_create_default):
1332 * gst/rtp/gstrtpchannels.h:
1333 Add mappings for multichannel support. Does not completely just work
1334 because the getcaps function does not yet return the allowed channel
1335 mappings. See #556641.
1337 2008-10-28 Stefan Kost <ensonic@users.sf.net>
1339 * gst/goom/Makefile.am:
1341 * gst/goom/config_param.c:
1342 * gst/goom/convolve_fx.c:
1343 * gst/goom/drawmethods.c:
1344 * gst/goom/drawmethods.h:
1345 * gst/goom/filters.c:
1346 * gst/goom/filters_mmx.s:
1347 * gst/goom/flying_stars_fx.c:
1349 * gst/goom/goom_config.h:
1350 * gst/goom/goom_config_param.h:
1351 * gst/goom/goom_core.c:
1352 * gst/goom/goom_filters.h:
1353 * gst/goom/goom_fx.h:
1354 * gst/goom/goom_graphic.h:
1355 * gst/goom/goom_plugin_info.h:
1356 * gst/goom/goom_tools.c:
1357 * gst/goom/goom_tools.h:
1358 * gst/goom/goom_typedefs.h:
1359 * gst/goom/goom_visual_fx.h:
1360 * gst/goom/graphic.c:
1365 * gst/goom/mathtools.c:
1366 * gst/goom/mathtools.h:
1368 * gst/goom/motif_goom1.h:
1369 * gst/goom/motif_goom2.h:
1370 * gst/goom/plugin_info.c:
1371 * gst/goom/ppc_drawings.h:
1372 * gst/goom/ppc_zoom_ultimate.h:
1373 * gst/goom/sound_tester.c:
1374 * gst/goom/sound_tester.h:
1375 * gst/goom/surf3d.c:
1376 * gst/goom/surf3d.h:
1377 * gst/goom/tentacle3d.c:
1378 * gst/goom/tentacle3d.h:
1382 Add license headers in all source files. Remove filter.c from
1383 EXTRA_DIST, as its in SOURCES already. Mention the files in the REDME
1384 which are not used right now. Fixes #557709.
1386 2008-10-27 Wim Taymans <wim.taymans@collabora.co.uk>
1388 Patch by: Olivier Crete <tester at tester dot ca>
1390 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_class_init),
1391 (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_getcaps):
1392 Implement getcaps in rtpL16pay. Fixes #556484.
1394 2008-10-27 Wim Taymans <wim.taymans@collabora.co.uk>
1396 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_setcaps),
1397 (gst_rtp_L16_depay_process):
1398 Check if clock-rate and channels are valid.
1399 Don't ignore the return value of setcaps.
1400 No need to validate the buffer, the base class does that for us.
1401 Use the marker bit to set the DISCONT flag on outgoing buffers.
1403 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps):
1404 Don't ignore the return value of set_outcaps.
1406 * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_setcaps),
1407 (gst_rtp_ac3_depay_process):
1408 Don't ignore the return value of set_caps.
1409 No need to validate the buffer, the base class does that for us.
1411 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
1412 (gst_rtp_amr_depay_process):
1413 * gst/rtp/gstrtpamrdepay.h:
1414 Don't ignore the return value of setcaps.
1415 No need to validate the buffer, the base class does that for us.
1416 No need to set output caps on the buffers, the base class does that for
1418 The subclass will make sure we are negotiated.
1420 * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_setcaps),
1421 (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset):
1422 * gst/rtp/gstrtpdvdepay.h:
1423 Clean up caps negotiation.
1424 The subclass will make sure we are negotiated.
1426 * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_setcaps),
1427 (gst_rtp_g726_depay_process):
1428 Clean up caps negotiation.
1429 Use the marker bit to set the DISCONT flag on outgoing buffers.
1431 * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_init),
1432 (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process):
1433 * gst/rtp/gstrtpg729depay.h:
1434 The subclass will make sure we are negotiated.
1435 Use the marker bit to set the DISCONT flag on outgoing buffers.
1437 * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_setcaps),
1438 (gst_rtp_gsm_depay_process):
1439 Clean up caps negotiation.
1440 Use the marker bit to set the DISCONT flag on outgoing buffers.
1442 * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_setcaps):
1443 Clean up caps negotiation.
1444 Don't ignore the return value of set_outcaps.
1446 * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_setcaps),
1447 (gst_rtp_h263_depay_process):
1448 Clean up caps negotiation.
1449 No need to validate the buffer, the base class does that for us.
1451 * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_setcaps),
1452 (gst_rtp_h263_pay_flush), (gst_rtp_h263_pay_handle_buffer):
1453 * gst/rtp/gstrtph263pay.h:
1454 Don't ignore the return value of set_outcaps.
1455 Do some more timestamps.
1457 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
1458 (gst_rtp_h263p_depay_process):
1459 Clean up caps negotiation.
1460 Don't ignore the return value of setcaps.
1461 No need to validate the buffer, the base class does that for us.
1463 * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init),
1464 (gst_rtp_h263p_pay_setcaps), (gst_rtp_h263p_pay_flush),
1465 (gst_rtp_h263p_pay_handle_buffer):
1466 * gst/rtp/gstrtph263ppay.h:
1467 Don't ignore the return value of set_outcaps.
1468 Do some more timestamps.
1470 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps),
1471 (gst_rtp_h264_depay_process):
1472 Clean up caps negotiation.
1473 Don't ignore the return value of setcaps.
1474 Fix possible caps leak.
1475 No need to validate the buffer, the base class does that for us.
1477 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps):
1478 Add some more debug info.
1480 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps),
1481 (gst_rtp_ilbc_depay_process):
1482 Clean up caps negotiation.
1483 Use the marker bit to set the DISCONT flag on outgoing buffers.
1485 * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_sink_setcaps):
1486 Clean up caps negotiation.
1488 * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_setcaps),
1489 (gst_rtp_mp1s_depay_process):
1490 Clean up caps negotiation.
1491 Don't ignore the return value of setcaps.
1492 No need to validate the buffer, the base class does that for us.
1493 No need to set caps on buffers, subclass does that for us.
1495 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
1496 (gst_rtp_mp2t_depay_process):
1497 Clean up caps negotiation.
1498 Don't ignore the return value of setcaps.
1499 No need to validate the buffer, the base class does that for us.
1500 No need to set caps on buffers, subclass does that for us.
1502 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1503 (gst_rtp_mp4a_depay_process):
1504 Clean up caps negotiation.
1505 Don't ignore the return value of setcaps.
1506 No need to validate the buffer, the base class does that for us.
1508 * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_new_caps),
1509 (gst_rtp_mp4a_pay_setcaps):
1510 Don't ignore the return value of set_outcaps.
1512 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_setcaps),
1513 (gst_rtp_mp4g_depay_process):
1514 Clean up caps negotiation.
1515 Don't ignore the return value of setcaps.
1516 No need to validate the buffer, the base class does that for us.
1517 No need to set caps on buffers, subclass does that for us.
1519 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize),
1520 (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps):
1521 Don't ignore the return value of set_outcaps.
1523 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
1524 (gst_rtp_mp4v_depay_process):
1525 Clean up caps negotiation.
1526 Don't ignore the return value of setcaps.
1527 No need to validate the buffer, the base class does that for us.
1528 No need to set caps on buffers, subclass does that for us.
1530 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_new_caps),
1531 (gst_rtp_mp4v_pay_setcaps):
1532 Don't ignore the return value of set_outcaps.
1534 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_setcaps),
1535 (gst_rtp_mpa_depay_process):
1536 Clean up caps negotiation.
1537 Don't ignore the return value of setcaps.
1538 No need to validate the buffer, the base class does that for us.
1539 Use the marker bit to set the DISCONT flag on outgoing buffers.
1541 * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_setcaps):
1542 Don't ignore the return value of set_outcaps.
1544 * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_setcaps),
1545 (gst_rtp_mpv_depay_process):
1546 Clean up caps negotiation.
1547 Actually set output caps.
1548 No need to validate the buffer, the base class does that for us.
1550 * gst/rtp/gstrtpmpvpay.c: (gst_rtp_mpv_pay_setcaps):
1551 Don't ignore the return value of set_outcaps.
1553 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps),
1554 (gst_rtp_pcma_depay_process):
1555 Clean up caps negotiation.
1556 Set output buffer duration because we can.
1557 Use the marker bit to set the DISCONT flag on outgoing buffers.
1559 * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_setcaps):
1560 Don't ignore the return value of set_outcaps.
1562 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps),
1563 (gst_rtp_pcmu_depay_process):
1564 Clean up caps negotiation.
1565 Use the marker bit to set the DISCONT flag on outgoing buffers.
1567 * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_setcaps):
1568 Don't ignore the return value of set_outcaps.
1570 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
1571 (gst_rtp_speex_depay_setcaps), (gst_rtp_speex_depay_process):
1572 Clean up caps negotiation.
1573 Set output caps on the pad and header buffers.
1574 Set duration on output buffers because we can.
1576 * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_parse_ident):
1577 Don't ignore the return value of set_outcaps.
1579 * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_setcaps),
1580 (gst_rtp_sv3v_depay_process):
1581 Clean up caps negotiation.
1582 No need to validate the buffer, the base class does that for us.
1583 No need to set caps out output buffers, subclass does that.
1585 * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps),
1586 (gst_rtp_theora_depay_process):
1587 Don't ignore the return value of setcaps.
1588 No need to validate the buffer, the base class does that for us.
1590 * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_class_init),
1591 (gst_rtp_theora_pay_flush_packet), (encode_base64),
1592 (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
1593 (gst_rtp_theora_pay_handle_buffer):
1594 Don't ignore the return value of set_outcaps.
1596 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
1597 (gst_rtp_vorbis_depay_process):
1598 Don't ignore the return value of setcaps.
1599 No need to validate the buffer, the base class does that for us.
1601 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
1602 Don't ignore the return value of set_outcaps.
1604 * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_setcaps):
1605 Clean up caps negotiation, don't ignore setcaps return.
1607 * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_setcaps):
1608 Don't ignore the return value of set_outcaps.
1610 2008-10-27 Wim Taymans <wim.taymans@collabora.co.uk>
1612 * gst/matroska/matroska-demux.c:
1613 (gst_matroska_demux_handle_src_event):
1614 Forward unknown events upstream.
1616 2008-10-27 Wim Taymans <wim.taymans@collabora.co.uk>
1618 * tests/check/elements/icydemux.c: (icydemux_found_pad):
1619 Add some refcount check
1621 * tests/check/elements/rtp-payloading.c: (rtp_pipeline_run):
1622 Don't ignore the result of write(), fixes a compiler warning for me.
1624 * tests/icles/videobox-test.c: (main):
1625 Make the output a little more pretty.
1627 2008-10-27 Stefan Kost <ensonic@users.sf.net>
1632 2008-10-27 Stefan Kost <ensonic@users.sf.net>
1634 * docs/plugins/Makefile.am:
1635 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1636 * docs/plugins/gst-plugins-good-plugins-sections.txt:
1637 * docs/plugins/gst-plugins-good-plugins.args:
1638 * docs/plugins/gst-plugins-good-plugins.hierarchy:
1639 * docs/plugins/gst-plugins-good-plugins.interfaces:
1640 * docs/plugins/inspect/plugin-autodetect.xml:
1641 Add the docs of the new elements.
1643 2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1645 * gst/autodetect/gstautoaudiosrc.c:
1646 (gst_auto_audio_src_class_init):
1647 * gst/autodetect/gstautovideosrc.c:
1648 (gst_auto_video_src_class_init):
1649 Fix "Since" tags in the documentation.
1651 2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1653 Patch by: Sjoerd Simons <sjoerd at luon dot net>
1655 * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
1656 (gst_soup_http_src_set_property), (gst_soup_http_src_get_property):
1657 Add support for souphttpsrc to act as a live source. This makes it
1658 possible to get timestamped buffers in combination with the
1659 "do-timestamp" property. Fixes bug #556019.
1661 2008-10-27 Stefan Kost <ensonic@users.sf.net>
1663 * gst/autodetect/Makefile.am:
1664 * gst/autodetect/gstautoaudiosink.c:
1665 * gst/autodetect/gstautoaudiosrc.c:
1666 * gst/autodetect/gstautoaudiosrc.h:
1667 * gst/autodetect/gstautodetect.c:
1668 * gst/autodetect/gstautovideosink.c:
1669 * gst/autodetect/gstautovideosrc.c:
1670 * gst/autodetect/gstautovideosrc.h:
1671 Implement src plugins. Little code/string cleanup in the sinks.
1674 2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1676 Patch by: Peter Kjellerstedt <pkj at axis com>
1678 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1679 (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad):
1680 Fix a memory leak when pads are requested but the pipeline never
1683 Correctly remove request pads, no matter if they have collected
1688 2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1690 Patch by: <lrn1986 at gmail dot com>
1692 * gst/udp/gstudpnetutils.h:
1693 Define the correct WINVER so getaddinfo() can be used when using
1694 mingw32. Fixes bug #557294.
1696 2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1698 Patch by: <lrn1986 at gmail dot com>
1700 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
1701 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
1702 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1703 Fix "argument type mismatch" compiler warnings on Windows.
1706 2008-10-27 Sebastian Dröge <sebastian.droege@collabora.co.uk>
1708 * gst/equalizer/gstiirequalizer.c: (update_coefficients):
1709 Don't calculate the filter coefficients for every single buffer
1710 but only when it's needed. Fixes bug #557260.
1712 2008-10-26 Jan Schmidt <jan.schmidt@sun.com>
1715 Back to development -> 0.10.11.1
1717 2008-10-25 Jan Schmidt <jan.schmidt@sun.com>
1719 * gst-plugins-good.doap:
1720 Fix version number of 0.10.11 release in doap file
1722 === release 0.10.11 ===
1724 2008-10-24 Jan Schmidt <jan.schmidt@sun.com>
1727 releasing 0.10.11, "Secondary Consideration"
1729 2008-10-24 Jan Schmidt <jan.schmidt@sun.com>
1732 Commit 0.10.10.4 pre-release
1734 2008-10-21 Jan Schmidt <jan.schmidt@sun.com>
1736 * gst/avi/gstavimux.c:
1737 Fix VPRP chunk setup in avimux.
1739 Patch By: Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
1741 2008-10-21 Jan Schmidt <jan.schmidt@sun.com>
1743 * gst/videobox/gstvideobox.c:
1744 support dynamically changing properties in videobox
1746 Patch By: Wim Taymans <wim.taymans@collabora.co.uk>
1748 2008-10-16 Jan Schmidt <jan.schmidt@sun.com>
1751 0.10.10.3 pre-release
1753 2008-10-16 Jan Schmidt <jan.schmidt@sun.com>
1755 * tests/check/Makefile.am:
1756 Don't run the states test on pulsesrc and pulsesink
1758 2008-10-16 Jan Schmidt <jan.schmidt@sun.com>
1761 Commit 0.10.10.2 pre-release bump that actually went
1764 2008-10-15 Edward Hervey <edward.hervey@collabora.co.uk>
1766 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
1767 Skip entries for streams that don't have a output pad yet, thereby
1768 avoiding calling pad functions with a NULL pad.
1771 2008-10-15 Edward Hervey <edward.hervey@collabora.co.uk>
1773 * gst/qtdemux/qtdemux.c: Remove previous wrong commit
1774 * tests/check/elements/icydemux.c: (icydemux_found_pad):
1775 Remove problematic and useless refcount check.
1778 2008-10-15 Edward Hervey <edward.hervey@collabora.co.uk>
1780 * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
1781 Remove problematic and useless refcount check.
1784 2008-10-10 Jan Schmidt <jan.schmidt@sun.com>
1786 * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
1787 * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
1788 Cast some size_t arguments to guint to avoid compiler
1789 warnings on 64-bit systems.
1791 2008-10-09 Wim Taymans <wim.taymans@collabora.co.uk>
1793 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
1794 Return TRUE instead of FALSE from the event handler when we swallowed the
1797 2008-10-08 Wim Taymans <wim.taymans@collabora.co.uk>
1799 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
1800 (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index):
1801 Reset header state. Fixes #555321.
1803 2008-10-08 Wim Taymans <wim.taymans@collabora.co.uk>
1805 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
1806 (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index):
1807 * gst/avi/gstavidemux.h:
1808 For timestamping audio packets we need to take into account the
1809 amount of blocks in one entry using the blockalign. Fixes some sync
1810 issues with zero-padded audio blocks in the beginning of avi files.
1812 2008-10-08 Wim Taymans <wim.taymans@collabora.co.uk>
1814 * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init),
1815 (gst_multi_file_src_query):
1816 Implement DEFAULT and BUFFER position queries. See #555260.
1818 2008-10-08 Edward Hervey <edward.hervey@collabora.co.uk>
1820 * sys/ximage/gstximagesrc.c: (gst_ximage_src_stop):
1821 Fix build for systems that don't have XDamage.
1823 2008-10-07 Wim Taymans <wim.taymans@collabora.co.uk>
1825 * tests/examples/rtp/client-H263p.sdp:
1826 * tests/examples/rtp/client-H263p.sh:
1827 * tests/examples/rtp/server-VTS-H263p.sh:
1828 Add some more H263p server and client examples.
1830 2008-10-03 Tim-Philipp Müller <tim.muller at collabora co uk>
1833 Depend on released versions of core and base.
1835 2008-10-03 Wim Taymans <wim.taymans@collabora.co.uk>
1837 * ext/pulse/pulsesink.c: (gst_pulsesink_write):
1838 * ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
1839 Return -1 instead of 0 in error cases. Fixes #554771.
1841 2008-10-03 Wim Taymans <wim.taymans@collabora.co.uk>
1843 * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
1844 (gst_ximage_src_stop), (gst_ximage_src_ximage_get):
1845 Stop leaking the cursor image.
1846 Unref the last_ximage and the cached cursor image on shutdown.
1849 2008-10-03 Wim Taymans <wim.taymans@collabora.co.uk>
1851 * sys/v4l2/gstv4l2object.h:
1852 Getting the Class from an instance is not just a matter of casting it to
1853 the class struct but it involves calling G_OBJECT_GET_CLASS on the
1854 instance. Fixes #549784.
1856 2008-10-01 Michael Smith <msmith@songbirdnest.com>
1859 Fix libs for linking directsound.
1860 * sys/directsound/gstdirectsoundsink.c:
1861 Fix buffer sizing to prevent racing the ringbuffer at startup.
1862 Add volume property.
1864 2008-09-27 Jan Schmidt <jan.schmidt@sun.com>
1866 * ext/pulse/pulsesink.c:
1867 Fix problems with pulsesink randomly erroring with code 'OK' after a
1868 format change on the stream by waiting when disconnecting the stream.
1870 2008-09-26 Wim Taymans <wim.taymans@collabora.co.uk>
1872 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init),
1873 (gst_rtp_amr_depay_process):
1874 Mark DISCONT on output buffers when the marker bit signals a new talk
1877 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
1878 Set the marker bit for buffers with a DISCONT flag to signal a talk
1881 2008-09-26 Wim Taymans <wim.taymans@collabora.co.uk>
1883 * gst/rtp/Makefile.am:
1884 * gst/rtp/gstrtp.c: (plugin_init):
1885 * gst/rtp/gstrtpmp4apay.c: (gst_rtp_mp4a_pay_get_type),
1886 (gst_rtp_mp4a_pay_base_init), (gst_rtp_mp4a_pay_class_init),
1887 (gst_rtp_mp4a_pay_init), (gst_rtp_mp4a_pay_finalize),
1888 (gst_rtp_mp4a_pay_parse_audio_config), (gst_rtp_mp4a_pay_new_caps),
1889 (gst_rtp_mp4a_pay_setcaps), (gst_rtp_mp4a_pay_handle_buffer),
1890 (gst_rtp_mp4a_pay_change_state), (gst_rtp_mp4a_pay_plugin_init):
1891 * gst/rtp/gstrtpmp4apay.h:
1892 Added MP4A-LATM payloader to match the depayloader.
1894 2008-09-25 Wim Taymans <wim.taymans@collabora.co.uk>
1896 * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1897 (gst_videomixer_sink_event):
1898 Handle segments a little better. Fixes #537361.
1900 2008-09-25 Wim Taymans <wim.taymans@collabora.co.uk>
1902 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
1903 Don't assume the server supports PAUSE by default. Fixes #551048.
1905 2008-09-25 Wim Taymans <wim.taymans@collabora.co.uk>
1907 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
1908 (gst_udpsrc_set_uri), (gst_udpsrc_start):
1909 Switch on the socket family to get the addrlen size right.
1911 2008-09-25 Wim Taymans <wim.taymans@collabora.co.uk>
1913 Patch by: Daniel Franke <df at dfranke dot us>
1915 * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
1916 OS X's bind() implementation is picky about its addrlen parameter and
1917 fails with EINVAL if it is larger than expected for the socket's address
1918 family. Set the length to the expected length instead. Fixes #553191.
1920 2008-09-23 Wim Taymans <wim.taymans@collabora.co.uk>
1922 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1923 Handle the case where we cannot do desribe or when the describe result
1924 does not contain a valid SDP message.
1926 2008-09-23 Wim Taymans <wim.taymans@collabora.co.uk>
1928 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_set_property):
1929 Fix setting the qos.
1931 2008-09-17 Edward Hervey <edward.hervey@collabora.co.uk>
1933 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
1934 (gst_qtdemux_chain):
1935 Some 'broken' files out there have atom lengths of zero...
1936 which basically results in qtdemux consuming that atom again and again
1937 until the *end of night* !
1938 Detect that and emits an adequate element error message.
1940 2008-09-17 Jan Schmidt <jan.schmidt@sun.com>
1942 * gst/interleave/Makefile.am:
1943 * gst/matroska/Makefile.am:
1944 Fix build flags order.
1946 * tests/check/elements/audioamplify.c: (GST_START_TEST):
1947 * tests/check/elements/audiodynamic.c: (GST_START_TEST):
1948 * tests/check/elements/audioinvert.c: (GST_START_TEST):
1949 * tests/check/elements/audiopanorama.c: (GST_START_TEST):
1952 * tests/check/elements/multifile.c:
1955 2008-09-15 Wim Taymans <wim.taymans@collabora.co.uk>
1957 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_init),
1958 (gst_rtp_mp4g_depay_finalize), (gst_rtp_mp4g_depay_setcaps),
1959 (gst_rtp_mp4g_depay_clear_queue), (gst_rtp_mp4g_depay_flush_queue),
1960 (gst_rtp_mp4g_depay_queue), (gst_rtp_mp4g_depay_process),
1961 (gst_rtp_mp4g_depay_change_state):
1962 * gst/rtp/gstrtpmp4gdepay.h:
1963 Handle interleaved streams by reordering AU in a queue.
1965 2008-09-15 Wim Taymans <wim.taymans@collabora.co.uk>
1967 * gst/rtp/gstrtpmp4gdepay.c: (gst_bs_parse_init),
1968 (gst_bs_parse_read), (gst_rtp_mp4g_depay_process):
1969 Change some of the ranges in the caps, mostly for the amount of bits we
1971 Added a little bitstream parse and use it to parse the AU header fields.
1972 Check for malformed and wrongly sized packets better.
1973 Implement more header field parsing.
1974 Handle the size of fragmented packets correctly.
1976 2008-09-14 Edward Hervey <edward.hervey@collabora.co.uk>
1978 Patch by: Jonathan Matthew <notverysmart@gmail.com>
1979 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1980 Add mapping for 'tiff' => image/tiff
1983 2008-09-11 Tim-Philipp Müller <tim.muller at collabora co uk>
1986 * ext/raw1394/gstdv1394src.c: (SEND_COMMAND):
1987 * ext/raw1394/gsthdv1394src.c: (SEND_COMMAND):
1988 Pretend to care about the result of write() which works around
1991 2008-09-04 Tim-Philipp Müller <tim.muller at collabora co uk>
1993 * ext/flac/gstflacenc.c: (gst_flac_enc_class_init):
1994 Make sure the desired default values are actually set, not only
1995 registered as defaults (actual problem is that the stereo-specific
1996 values are only updated if channels==2, which is not the case yet
1997 when the object is created, so the default values for the
1998 mid-side-stereo and loose-mid-side-stereo settings are never
1999 set in _update_quality()). Makes flacenc create smaller files by
2000 default (for stereo input), and fixes #550791.
2002 2008-09-03 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
2004 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
2005 (gst_qtdemux_loop_state_header), (qtdemux_parse_node),
2006 (qtdemux_parse_trak), (qtdemux_video_caps):
2007 * gst/qtdemux/qtdemux.h:
2008 * gst/qtdemux/qtdemux_fourcc.h:
2009 * gst/qtdemux/qtdemux_types.c:
2010 Add support for video/mj2 mime-type and its additional atoms/boxes.
2013 2008-09-03 Stefan Kost <ensonic@users.sf.net>
2015 * gst/debug/gsttaginject.c:
2016 Add warning when tags parameter is unparsable and give example for
2017 quoting in the docs.
2019 2008-09-02 Wim Taymans <wim.taymans@collabora.co.uk>
2021 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
2022 Add mapping for IMA Loki SDL MJPEG ADPCM codec.
2023 Add some alternative byteswapped mappings that seem to pop up sometimes.
2026 2008-09-02 Tim-Philipp Müller <tim.muller at collabora co uk>
2031 Add 'ca' to LINGUAS; add some more files with translations and some
2032 files which should be ignored by translation tools.
2034 2008-09-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2036 * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2037 * ext/speex/gstspeexdec.h:
2038 * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
2039 * ext/speex/gstspeexenc.h:
2040 Use integer encoding and decoding functions instead of converting
2041 the integer input to float in the element. The libspeex integer
2042 functions are doing this for us already or, if libspeex was compiled
2043 in integer mode, they're doing everything using integer arithmetics.
2044 Also saves some copying around.
2046 2008-09-01 Tim-Philipp Müller <tim.muller at collabora co uk>
2049 Fix --disable-external
2051 2008-08-31 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2053 * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
2054 (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain):
2055 * ext/wavpack/gstwavpackenc.h:
2056 Handle non-zero start timestamps and stream discontinuities
2057 correctly. This only has an effect if we're muxing into
2058 a container format as the raw WavPack stream must contain
2059 continous sample numbers.
2061 2008-08-31 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2063 * ext/speex/gstspeexenc.c: (gst_speex_enc_encode):
2064 Correct the timestamp and granulepos calculation by one Speex
2067 2008-08-31 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2069 * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
2070 Correctly take the granulepos from upstream if possible and
2071 correctly handle the granulepos in various calculations: the
2072 granulepos is the sample number of the _last_ sample in a frame, not
2075 * ext/speex/gstspeexenc.c: (gst_speex_enc_sinkevent),
2076 (gst_speex_enc_encode), (gst_speex_enc_chain),
2077 (gst_speex_enc_change_state):
2078 * ext/speex/gstspeexenc.h:
2079 Handle non-zero start timestamps in the encoder and detect/handle
2080 stream discontinuities. Fixes bug #547075.
2082 2008-08-31 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2084 Patch by: Craig Keogh <cskeogh at adam dot com dot au>
2086 * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
2087 Fix compiler warnings caused by passing a string as format string
2088 instead of "%s" and then the string. This is only exposed by -Wformat=2
2089 as used by default on Ubuntu. Fixes bug #550015.
2091 2008-08-30 Tim-Philipp Müller <tim.muller at collabora co uk>
2093 * ext/raw1394/gsthdv1394src.c: (gst_hdv1394src_create):
2094 * gst/alpha/gstalpha.c: (gst_alpha_get_unit_size):
2095 * gst/audiofx/audiocheblimit.c: (generate_coefficients):
2096 * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert):
2097 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2098 (gst_ebml_read_element_length):
2099 * gst/matroska/matroska-demux.c:
2100 (gst_matroska_demux_check_subtitle_buffer):
2101 Make stuff compile with GST_DISABLE_GST_DEBUG.
2103 2008-08-28 Michael Smith <msmith@songbirdnest.com>
2107 Ref caps before passing to gst_pad_template_new(), since that takes
2110 2008-08-28 Wim Taymans <wim.taymans@collabora.co.uk>
2112 Patch by: Mersad Jelacic <mersad at axis dot com>
2114 * gst/multipart/multipartdemux.c:
2115 * gst/multipart/multipartmux.c: (gst_multipart_mux_get_mime):
2116 Convert audio/x-adpcm to and from the audio/G726-X in the muxer and
2117 demuxer. Fixes #549551.
2119 2008-08-27 Edward Hervey <edward.hervey@collabora.co.uk>
2121 * sys/osxaudio/gstosxaudiosink.c:
2122 (gst_osx_audio_sink_select_device):
2123 * sys/osxaudio/gstosxaudiosrc.c:
2124 (gst_osx_audio_src_create_ringbuffer),
2125 (gst_osx_audio_src_select_device):
2126 * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_acquire):
2127 Fix the build on macosx.
2129 2008-08-27 Tim-Philipp Müller <tim.muller at collabora co uk>
2131 * gst/icydemux/gsticydemux.c:
2132 Small docs fix: in the example pipeline, we need to pass
2133 iradio-mode=true to the source, so the server actually sends
2136 2008-08-26 Michael Smith <msmith@songbirdnest.com>
2138 * sys/osxaudio/gstosxaudio.c:
2139 Oops. Revert more completely.
2141 2008-08-26 Michael Smith <msmith@songbirdnest.com>
2143 * sys/osxaudio/gstosxaudio.c:
2144 Revert accidental element rename from testing.
2146 2008-08-27 Jan Schmidt <jan.schmidt@sun.com>
2148 * gst-plugins-good.doap:
2149 Pull in 0.10.10 doap entry from release branch
2151 2008-08-27 Jan Schmidt <jan.schmidt@sun.com>
2154 Update version number to reflect 0.10.10 release from
2157 2008-08-26 Michael Smith <msmith@songbirdnest.com>
2159 * sys/osxaudio/Makefile.am:
2160 * sys/osxaudio/gstosxaudio.c:
2161 * sys/osxaudio/gstosxaudiosink.c:
2162 * sys/osxaudio/gstosxaudiosink.h:
2163 * sys/osxaudio/gstosxaudiosrc.c:
2164 * sys/osxaudio/gstosxaudiosrc.h:
2165 * sys/osxaudio/gstosxringbuffer.c:
2166 * sys/osxaudio/gstosxringbuffer.h:
2167 Rewrite caps setting and ring buffer initialisation.
2168 Previously we never told CoreAudio what format we were going to send it,
2169 so it only worked due to luck, and not at all on some hardware.
2170 Now we explicitly advertise what formats the hardware supports, and then
2171 configure the selected one correctly.
2173 2008-08-26 Stefan Kost <ensonic@users.sf.net>
2175 * sys/v4l2/gstv4l2object.c:
2176 * sys/v4l2/gstv4l2src.c:
2177 * sys/v4l2/gstv4l2src.h:
2178 * sys/v4l2/v4l2_calls.c:
2179 * sys/v4l2/v4l2src_calls.c:
2180 Fix memory leaks. Small code cleanups : No need for empty _init(). No
2181 need to memset instance structures. Some more FIXME's and comments.
2183 2008-08-26 Stefan Kost <ensonic@users.sf.net>
2185 * tests/icles/.cvsignore:
2188 2008-08-26 Stefan Kost <ensonic@users.sf.net>
2190 * gst/goom/.cvsignore:
2191 * gst/goom2k1/.cvsignore:
2194 2008-08-26 Stefan Kost <ensonic@users.sf.net>
2196 * ext/cairo/gsttextoverlay.c:
2197 Fix compiler warning.
2199 2008-08-25 David Schleef <ds@schleef.org>
2201 * ext/cairo/gsttextoverlay.c: Fix obvious memleak.
2203 2008-08-25 Edward Hervey <edward.hervey@collabora.co.uk>
2205 * gst/matroska/matroska-demux.c: (gst_matroska_demux_send_event),
2206 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
2207 * gst/matroska/matroska-mux.c:
2208 (gst_matroska_mux_video_pad_setcaps),
2209 (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_finish):
2210 Add Real[Audio|Video] support to Matroska containers.
2212 * decoding real audio/video streams contained in mkv
2213 * 'transmuxing' real (.rm) files into .mkv files
2214 It will not work though for encoding real[audio/video] streams that
2215 don't contain the 'mdpr_data' extra data on the caps.
2216 The reason why this will not work is because I never intended to
2217 duplicate virtually all the 'mdpr' block creation into mkvmux.
2220 2008-08-25 Wim Taymans <wim.taymans@collabora.co.uk>
2222 * gst/law/alaw-encode.c: (gst_alaw_enc_init), (gst_alaw_enc_chain):
2223 * gst/law/mulaw-conversion.c:
2224 * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2225 (gst_mulawenc_chain):
2226 The encoder can't really renegotiate at the time they perform a
2227 pad-alloc so make the srcpads use fixed caps.
2228 Check the buffer size after a pad-alloc because the returned size might
2229 not be right when the downstream element does not know the size of the
2230 new buffer (capsfilter). Fixes #549073.
2232 2008-08-23 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2234 Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
2236 * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify):
2237 v4l2src doesn't have a property named "norm" so don't try to notify
2238 about changes to that property. The "norm" property and related
2239 code are commented out currently. Fixes bug #549090.
2241 2008-08-23 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2243 Patch by: Mike Ruprecht <cmaiku at gmail dot com>
2245 * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
2246 Reprobe devices again instead of taking a cached list as new
2247 devices could've been plugged in. Fixes bug #549062.
2249 2008-08-22 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2251 * gst/autodetect/Makefile.am:
2252 Don't link the autodetect plugin with GConf as it doesn't
2253 use GConf. Fixes bug #545463.
2255 2008-08-22 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2257 * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
2258 (gst_ebml_read_element_length), (gst_ebml_read_uint),
2259 (gst_ebml_read_sint), (gst_ebml_read_float),
2260 (gst_ebml_read_header):
2261 Change some GST_ELEMENT_ERRORs to GST_ERROR_OBJECT to make it
2262 possible to ignore errors and not post any ERROR messages on
2265 * gst/matroska/matroska-demux.c:
2266 (gst_matroska_demux_parse_contents):
2267 Ignore any errors and not just EOS when parsing the contents of
2268 a SeekHead. Errors here are usually caused by truncated files
2269 and playback of the file works fine. Fixes playback of the
2270 audio_only_chapter_seekbroken.mka file from the MPlayer samples
2273 2008-08-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
2275 * gst/multipart/multipartdemux.c:
2276 * gst/multipart/multipartmux.c:
2277 Conform to RFC2046. audio/basic is mulaw 8000Hz mono.
2279 2008-08-21 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
2281 * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_buffer_alloc,
2282 gst_directdraw_sink_bufferpool_clear):
2283 Fix two more buffer ref leaks.
2285 2008-08-21 Tim-Philipp Müller <tim.muller at collabora co uk>
2287 Patch by: Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
2289 * sys/directdraw/gstdirectdrawsink.c:
2290 (gst_directdraw_sink_show_frame):
2291 Fix buffer ref leak.
2293 2008-08-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2295 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2296 Revert the last commit. wavenc still supports width!=depth for 32 bit
2299 2008-08-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2301 * gst/matroska/matroska-demux.c:
2302 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2303 If the duration of a block is unknown only use the timestamp for the
2304 first lace and use GST_CLOCK_TIME_NONE as duration for the following
2305 laces. Otherwise every lace has the same timestamp which leads to
2306 various problems. Really fixes bug #548831.
2308 2008-08-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2310 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
2311 If we're not allowing width!=depth in wavenc we should also disable
2312 the code that was added to support width!=depth.
2314 2008-08-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2316 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
2317 Don't calculate the default duration of a frame from the audio sampling
2318 rate. This only works for raw audio if every frame contains a single
2319 sample and results in broken buffer durations for other formats
2320 if no specified default duration is given or the blocks have no
2321 duration. Fixes bug #548831.
2323 2008-08-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2325 * gst/matroska/matroska-demux.c:
2326 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2327 Allow zero sized blocks instead of returning GST_FLOW_OK. Such blocks
2328 are used for text/plain subtitles as a gap-filler in some files.
2330 2008-08-21 Wim Taymans <wim.taymans@collabora.co.uk>
2332 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
2333 (gst_v4l2_get_caps_info):
2334 Add S910 and PWC formats with a low priority.
2336 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_format_get_rank),
2337 (gst_v4l2src_probe_caps_for_format):
2340 2008-08-20 Tim-Philipp Müller <tim at collabora co uk>
2342 * ext/flac/gstflacenc.c:
2343 Fix compilation against older libflac versions.
2345 2008-08-20 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2347 * ext/pulse/pulsemixer.c: (gst_pulsemixer_class_init),
2348 (gst_pulsemixer_set_property), (gst_pulsemixer_get_property):
2349 * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2350 (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_timeout_event),
2351 (gst_pulsemixer_ctrl_set_volume):
2352 * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_new):
2353 * ext/pulse/pulseprobe.c: (gst_pulseprobe_open):
2354 * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2355 (gst_pulsesink_init), (gst_pulsesink_open),
2356 (gst_pulsesink_prepare), (gst_pulsesink_write),
2357 (gst_pulsesink_delay), (gst_pulsesink_reset):
2358 * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2359 (gst_pulsesrc_init):
2360 Use GST_BOILERPLATE everywhere and fix coding style at some places.
2361 Fix a locking issue in pulsesink's prepare function.
2363 * ext/pulse/pulseutil.c: (gst_pulse_channel_map_to_gst):
2364 Check if the created channel layout is valid for GStreamer.
2366 2008-08-20 Wim Taymans <wim.taymans@collabora.co.uk>
2368 * gst/rtsp/gstrtspgoogle.c:
2369 Things that can happen when your brain is in google mode trying to
2370 deal with their google rtsp server extensions and trying to type your
2371 google mail account.
2373 2008-08-20 Wim Taymans <wim.taymans@collabora.co.uk>
2375 * gst/rtsp/Makefile.am:
2376 * gst/rtsp/gstrtsp.c: (plugin_init):
2377 * gst/rtsp/gstrtspgoogle.c: (gst_rtsp_google_before_send),
2378 (gst_rtsp_google_after_send), (gst_rtsp_google_get_transports),
2379 (_do_init), (gst_rtsp_google_base_init),
2380 (gst_rtsp_google_class_init), (gst_rtsp_google_init),
2381 (gst_rtsp_google_finalize), (gst_rtsp_google_change_state),
2382 (gst_rtsp_google_extension_init):
2383 * gst/rtsp/gstrtspgoogle.h:
2384 Add google RTSP extension, it can only handle udp and responds with
2385 unsupported if we do anything else. Fixes #546465.
2387 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_connection_send),
2388 (gst_rtspsrc_connection_receive), (gst_rtspsrc_loop_send_cmd),
2389 (gst_rtspsrc_create_transports_string),
2390 (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
2391 (gst_rtspsrc_close), (gst_rtspsrc_pause):
2392 Make transport setup code a bit better using GString.
2393 Add some more debug.
2394 Check for closed connections before doing anything on them.
2396 2008-08-20 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2398 * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2399 (gst_pulsesrc_create_stream), (gst_pulsesrc_negotiate),
2400 (gst_pulsesrc_prepare):
2401 * ext/pulse/pulseutil.c: (gst_pulse_gst_to_channel_map),
2402 (gst_pulse_channel_map_to_gst):
2403 * ext/pulse/pulseutil.h:
2404 If downstream provides no channel layout and >2 channels should be
2405 used use the default layout that pulseaudio chooses and also
2406 add this layout to the caps. Fixes bug #547258.
2408 2008-08-20 Wim Taymans <wim.taymans@collabora.co.uk>
2410 Patch by: Peter Kjellerstedt <pkj at axis com>
2412 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
2413 (gst_dynudpsink_finalize), (gst_dynudpsink_set_property),
2414 (gst_dynudpsink_init_send), (gst_dynudpsink_close):
2415 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
2416 (gst_multiudpsink_finalize), (gst_multiudpsink_set_property):
2417 * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize),
2418 (gst_udpsrc_set_property):
2419 Avoid leaking internally allocated file descriptors when setting
2420 custom file descriptors. Fixes #543101.
2422 2008-08-20 Wim Taymans <wim.taymans@collabora.co.uk>
2424 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
2425 Don't try to configure RTCP back to the server when the server did not
2426 give us a valid port number.
2428 2008-08-20 Wim Taymans <wim.taymans@collabora.co.uk>
2430 * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
2431 Use new basetransform method to renegotiate. Fixes #544956.
2433 * tests/icles/Makefile.am:
2434 * tests/icles/videobox-test.c: (make_pipeline), (main):
2435 Add videobox renegotiation example.
2437 2008-08-19 David Schleef <ds@schleef.org>
2439 * gst/wavenc/gstwavenc.c: Remove depth ranges and replace
2440 with sane values. Fixes #548530.
2442 2008-08-18 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2444 * ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
2445 * ext/pulse/pulsesrc.c: (gst_pulsesrc_prepare):
2446 The bytes_per_sample and silence_sample fields of the GstRingBufferSpec
2447 are already filled with the correct values by
2448 gst_ring_buffer_parse_caps() so there's no need to set them again
2451 2008-08-16 Edward Hervey <edward.hervey@collabora.co.uk>
2453 * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
2454 (gst_avi_demux_read_subindexes_push):
2455 Some AVI 2.0 (ODML) files don't respect the 'specifications' completely
2456 and instead of using the 'ix##' nomenclature, use '##ix'.
2457 They're still valid though, this fixes the duration and indexes for
2458 virtually all the ODML files I have.
2460 2008-08-15 Wim Taymans <wim.taymans@collabora.co.uk>
2462 Patch by: Olivier Crete <tester at tester dot ca>
2464 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps),
2465 (gst_rtp_vorbis_depay_process):
2466 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
2467 Update the vorbis RTP pay/depay to RFC 5215.
2470 2008-08-14 David Schleef <ds@schleef.org>
2472 * gst/qtdemux/qtdemux.c: Add 'hdv6' as a HDV format for 1080i/60
2473 with 3:2 pulldown, i.e., 24p.
2475 2008-08-14 Wim Taymans <wim.taymans@collabora.co.uk>
2477 * tests/check/elements/level.c: (GST_START_TEST):
2478 Fix compilation some more.
2480 2008-08-14 Tim-Philipp Müller <tim.muller at collabora co uk>
2483 Require -base CVS for wavparse acid chunk parsing.
2485 2008-08-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2487 * ext/pulse/pulsesink.c: (gst_pulsesink_class_init),
2488 (gst_pulsesink_init), (gst_pulsesink_finalize),
2489 (gst_pulsesink_set_volume), (gst_pulsesink_get_volume),
2490 (gst_pulsesink_set_property), (gst_pulsesink_get_property),
2491 (gst_pulsesink_prepare), (gst_pulsesink_change_state):
2492 * ext/pulse/pulsesink.h:
2493 Add "device-name" property to pulsesink too and currently commented
2494 out and not working support for a "volume" property.
2496 2008-08-13 Thijs Vermeir <thijsvermeir@gmail.com>
2499 Remove more cdio stuff (moved to ugly)
2501 2008-08-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2503 Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2505 * ext/pulse/pulsesrc.c: (gst_pulsesrc_class_init),
2506 (gst_pulsesrc_get_property):
2507 Add "device-name" property, which provides a human readable string
2508 for the audio device, to make it more consisten with other audio
2509 sources. Fixes bug #547519.
2511 2008-08-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2513 * ext/pulse/pulsemixer.c: (gst_pulsemixer_change_state):
2514 * ext/pulse/pulsemixerctrl.c: (gst_pulsemixer_ctrl_subscribe_cb),
2515 (gst_pulsemixer_ctrl_open), (gst_pulsemixer_ctrl_new),
2516 (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_timeout_event):
2517 * ext/pulse/pulsemixerctrl.h:
2518 * ext/pulse/pulseprobe.c: (gst_pulseprobe_open),
2519 (gst_pulseprobe_enumerate), (gst_pulseprobe_new),
2520 (gst_pulseprobe_free), (gst_pulseprobe_needs_probe),
2521 (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values):
2522 * ext/pulse/pulseprobe.h:
2523 * ext/pulse/pulsesink.c: (gst_pulsesink_init):
2524 * ext/pulse/pulsesrc.c: (gst_pulsesrc_init), (gst_pulsesrc_delay),
2525 (gst_pulsesrc_change_state):
2526 Improve debugging a bit by including the parent object in pulsemixerctrl
2527 and pulseprobe objects and using GST_WARNING_OBJECT instead of
2530 Use the parent GObject subclass instead of a random struct as GObject
2531 parameter for G_OBJECT_WARN_INVALID_PROPERTY_ID. This fixes a crash
2532 when probing for another property than "device".
2534 2008-08-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2536 Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2538 * ext/pulse/pulsemixer.c: (gst_pulsemixer_set_property):
2539 Fix property probing after the device property is set by calling
2540 set_server when the server property changes. Fixes bug #547518.
2542 2008-08-13 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2544 Patch by: Laszlo Pandy <laszlok2 at gmail dot com>
2546 * ext/pulse/pulsesink.c: (gst_pulsesink_interface_supported),
2547 (gst_pulsesink_implements_interface_init),
2548 (gst_pulsesink_init_interfaces), (gst_pulsesink_init),
2549 (gst_pulsesink_finalize), (gst_pulsesink_set_property),
2550 (gst_pulsesink_get_type):
2551 * ext/pulse/pulsesink.h:
2552 * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
2553 (gst_pulsesrc_init_interfaces), (gst_pulsesrc_init),
2554 (gst_pulsesrc_finalize), (gst_pulsesrc_set_property):
2555 * ext/pulse/pulsesrc.h:
2556 Implement GstPropertyProbe interface on pulsesink for detecting
2557 sink devices and on pulsesrc for detecting source devices.
2558 Fixes bugs #547227 and #547217.
2560 2008-08-13 Stefan Kost <ensonic@users.sf.net>
2562 * gst/spectrum/gstspectrum.c:
2563 Don't terminate on fabs(in)>1.0. Init doubles as doubles.
2565 2008-08-13 Edward Hervey <edward.hervey@collabora.co.uk>
2567 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2568 Properly set the maximum latency value, in the same way it is done in
2570 * sys/v4l2/v4l2src_calls.c:
2571 Simplify fraction equality check, no need to use GValues for this.
2573 2008-08-12 Edward Hervey <edward.hervey@collabora.co.uk>
2575 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_query):
2576 Add warning messages stating exactly why the latency query failed.
2577 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
2578 In some cases, the negotiated framerate might be the default one which
2579 is already set internally. But we still need to mark it down in fps_n
2580 and fps_d so that the latency query can happen properly.
2582 2008-08-12 Edward Hervey <edward.hervey@collabora.co.uk>
2584 * docs/plugins/inspect/plugin-1394.xml:
2585 Whoops, forgot one doc file for people who can't/don't build the
2588 2008-08-12 Jan Schmidt <jan.schmidt@sun.com>
2590 * docs/plugins/Makefile.am:
2591 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2592 * docs/plugins/gst-plugins-good-plugins-sections.txt:
2593 * docs/plugins/inspect/plugin-cdio.xml:
2595 * ext/cdio/Makefile.am:
2596 * ext/cdio/gstcdio.c:
2597 * ext/cdio/gstcdio.h:
2598 * ext/cdio/gstcdiocddasrc.c:
2599 * ext/cdio/gstcdiocddasrc.h:
2601 Pull changes from 0.10.9.2 pre-release branch moving the libcdio
2602 CDDA source to -ugly.
2607 Pull in new translation from 0.10.9.2 release branch.
2609 2008-08-11 Edward Hervey <edward.hervey@collabora.co.uk>
2611 * docs/plugins/Makefile.am:
2612 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2613 * docs/plugins/gst-plugins-good-plugins-sections.txt:
2614 * docs/plugins/gst-plugins-good-plugins.args:
2615 * docs/plugins/gst-plugins-good-plugins.hierarchy:
2616 * docs/plugins/gst-plugins-good-plugins.interfaces:
2617 Integrate documentation for new hdv1394src element.
2619 2008-08-11 Edward Hervey <edward.hervey@collabora.co.uk>
2621 * ext/raw1394/Makefile.am:
2622 * ext/raw1394/gst1394.c: (plugin_init):
2623 * ext/raw1394/gsthdv1394src.c: (_do_init),
2624 (gst_hdv1394src_base_init), (gst_hdv1394src_class_init),
2625 (gst_hdv1394src_init), (gst_hdv1394src_dispose),
2626 (gst_hdv1394src_set_property), (gst_hdv1394src_get_property),
2627 (gst_hdv1394src_from_raw1394handle),
2628 (gst_hdv1394src_iec61883_receive), (gst_hdv1394src_bus_reset),
2629 (gst_hdv1394src_create), (gst_hdv1394src_discover_avc_node),
2630 (gst_hdv1394src_start), (gst_hdv1394src_stop),
2631 (gst_hdv1394src_unlock), (gst_hdv1394src_update_device_name),
2632 (gst_hdv1394src_uri_get_type), (gst_hdv1394src_uri_get_protocols),
2633 (gst_hdv1394src_uri_get_uri), (gst_hdv1394src_uri_set_uri),
2634 (gst_hdv1394src_uri_handler_init):
2635 * ext/raw1394/gsthdv1394src.h:
2636 mpeg2-ts (HDV) variant of firewire capture element.
2639 2008-08-11 Edward Hervey <edward.hervey@collabora.co.uk>
2641 * gst/level/gstlevel.c: (gst_level_message_new):
2642 Fix compilation (also known as the classic 'fix code that someone
2643 committed without compiling it first').
2645 2008-08-10 Stefan Kost <ensonic@users.sf.net>
2647 * tests/check/elements/level.c:
2648 Add a test for level in stereo mode.
2650 2008-08-10 Stefan Kost <ensonic@users.sf.net>
2652 * tests/examples/spectrum/demo-audiotest.c:
2653 * tests/examples/spectrum/demo-osssrc.c:
2654 Demo how to draw analyzer results synced to the clock.
2656 2008-08-10 Stefan Kost <ensonic@users.sf.net>
2658 * gst/level/gstlevel.c:
2659 Little renaming (l -> level).
2661 * gst/spectrum/gstspectrum.c:
2662 * gst/spectrum/gstspectrum.h:
2663 Also send full timestamp/duration details here.
2665 2008-08-10 Stefan Kost <ensonic@users.sf.net>
2667 * gst/level/gstlevel.c:
2668 * gst/level/gstlevel.h:
2669 Send same timestamp/duration details as videoanalysis. This gives
2670 applications better chance to sync analysis results with playback.
2672 2008-08-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2674 * gst/matroska/matroska-mux.c:
2675 (gst_matroska_mux_handle_sink_event),
2676 (flac_streamheader_to_codecdata):
2677 We need to drop one additional buffer for FLAC as the fLaC
2678 marker and STREAMINFO block are merged into one buffer in the caps.
2680 Also don't pretend to support NEWSEGMENT events, otherwise we
2681 will most probably write some invalid data.
2683 2008-08-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2685 * gst/matroska/matroska-mux.c: (flac_streamheader_to_codecdata),
2686 (gst_matroska_mux_audio_pad_setcaps):
2687 Add support for muxing FLAC into Matroska containers.
2690 2008-08-09 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2692 * ext/flac/gstflacenc.c: (gst_flac_enc_check_discont):
2693 Actually provide the variables required for the format string.
2695 2008-08-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2697 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2698 (gst_matroska_demux_element_send_event),
2699 (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
2700 * gst/matroska/matroska-demux.h:
2701 Close the current segment if we're doing a non-flushing seek and send
2702 the close-segment and the new segment of the seek from the streaming
2705 2008-08-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2707 * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
2708 (gst_flac_enc_check_discont), (gst_flac_enc_chain),
2709 (gst_flac_enc_change_state):
2710 * ext/flac/gstflacenc.h:
2711 Handle non-zero start timestamps correctly, mark header packets as
2712 IN_CAPS and print a warning and suggest using audiorate if stream
2713 discontinuities are detected. When FLAC supports flushing the encoder
2714 somehow this should be done for discontinuities instead.
2716 Remove some unused variables from the instance struct.
2718 2008-08-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2720 * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
2721 If seeking failed return the appropiate return value to FLAC.
2722 Otherwise it thinks seeking was successfull and tries to rewrite
2723 parts of the headers which then get appended to the output.
2725 2008-08-07 Tim-Philipp Müller <tim.muller at collabora co uk>
2727 Patch by: Frederic Crozat <fcrozat@mandriva.org>
2729 * ext/esd/gstesd.c: (plugin_init):
2730 * ext/flac/gstflac.c: (plugin_init):
2731 * ext/shout2/gstshout2.c: (plugin_init):
2732 * ext/wavpack/gstwavpack.c: (plugin_init):
2733 * sys/oss/gstossaudio.c: (plugin_init):
2734 * sys/v4l2/gstv4l2.c: (plugin_init):
2735 Make sure gettext returns translations in UTF-8 encoding rather
2736 than in the current locale encoding (#546822).
2738 2008-08-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2740 * ext/flac/gstflacdec.c:
2741 Add FIXME for 0.11 to simply output everything with width=32 as given
2742 by FLAC and let audioconvert handle the conversions instead of doing
2745 2008-08-07 Jan Schmidt <Jan.Schmidt@sun.com>
2747 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
2748 When outputting a pad template range for the size, include a framerate
2749 range too, to avoid 'not a real subset of template caps' errors.
2751 2008-08-06 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2753 Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
2755 * ext/flac/Makefile.am:
2756 * ext/flac/gstflac.c: (plugin_init):
2757 * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
2758 (gst_flac_tag_base_init), (gst_flac_tag_class_init),
2759 (gst_flac_tag_dispose), (gst_flac_tag_init),
2760 (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
2761 (gst_flac_tag_change_state):
2762 * ext/flac/gstflactag.h:
2763 Port flactag to 0.10, add documentation for it and clean it up a bit.
2766 * docs/plugins/Makefile.am:
2767 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2768 * docs/plugins/gst-plugins-good-plugins-sections.txt:
2769 * docs/plugins/gst-plugins-good-plugins.hierarchy:
2770 * docs/plugins/gst-plugins-good-plugins.interfaces:
2771 * docs/plugins/gst-plugins-good-plugins.prerequisites:
2772 * docs/plugins/inspect/plugin-flac.xml:
2773 * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
2774 * ext/flac/gstflacdec.h:
2775 * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
2776 * ext/flac/gstflacenc.h:
2777 Add flactag and flacenc to the documentation and mark
2778 the private parts of the flacdec instance structure as private.
2780 Also use gst_element_class_set_details_simple() in flacdec and
2783 2008-08-06 Stefan Kost <ensonic@users.sf.net>
2785 * gst/qtdemux/qtdemux.c:
2786 Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
2787 for it but ffmpeg does not.
2789 2008-08-05 Stefan Kost <ensonic@users.sf.net>
2791 * gst/wavparse/gstwavparse.c:
2792 Handle the list chunk and use gst_riff_parse_info() to parse the info
2795 2008-08-05 Stefan Kost <ensonic@users.sf.net>
2797 * gst/wavparse/gstwavparse.c:
2798 Handle the acid chunk and send tempo as part of tags. Other fields are
2799 interesting too, but need more tag-definitions. Fixes #545433.
2801 2008-08-05 Stefan Kost <ensonic@users.sf.net>
2803 * gst/wavparse/gstwavparse.c:
2804 Refactor wavparse. Call _reset() from dispose() and move old code from
2805 dispose into reset. This way we don't leak taglists when we abort
2806 parsing. Fix some comments. Move code for skipping a chunk into extra
2807 function. Replace chunk sizes with a const to ease readability.
2809 2008-08-05 Wim Taymans <wim.taymans@collabora.co.uk>
2811 Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
2813 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
2814 Improve udp port setup. Fixes #545710.
2816 2008-08-05 Wim Taymans <wim.taymans@collabora.co.uk>
2818 * gst/rtp/Makefile.am:
2819 * gst/rtp/gstrtp.c: (plugin_init):
2820 * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
2821 (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
2822 (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
2823 (gst_rtp_mp1s_depay_set_property),
2824 (gst_rtp_mp1s_depay_get_property),
2825 (gst_rtp_mp1s_depay_change_state),
2826 (gst_rtp_mp1s_depay_plugin_init):
2827 * gst/rtp/gstrtpmp1sdepay.h:
2828 Add MP1S depayloader.
2831 Some more sample rtsp streams.
2833 2008-08-05 Wim Taymans <wim.taymans@collabora.co.uk>
2838 * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
2839 * tests/check/elements/rglimiter.c: (GST_START_TEST):
2840 Add some more debug info.
2842 2008-08-04 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
2844 * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
2845 Provide cbSize field for audio extra_data size, and take care to
2848 2008-08-04 Stefan Kost <ensonic@users.sf.net>
2850 * gst/qtdemux/qtdemux.c:
2851 Return the result of gst_pad_{start,stop}_task instead of hard-coded
2854 2008-08-04 Stefan Kost <ensonic@users.sf.net>
2856 * gst/qtdemux/qtdemux.c:
2857 * gst/qtdemux/qtdemux_fourcc.h:
2858 Add keyword tag support. Fixes #520694 for qtdemux.
2860 2008-08-04 Stefan Kost <ensonic@users.sf.net>
2862 * gst/qtdemux/qtdemux.c:
2863 Add support for tmpo tag (BPM).
2865 2008-08-03 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2867 * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
2868 (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
2869 Set an estimate for the total number of samples that will be encoded
2870 if possible to help decoders if the streaminfo can't be rewritten
2871 later (like when muxing into Ogg containers).
2873 Add a warning if we get header packets after data packets as those
2874 will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
2877 2008-08-03 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2879 * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
2880 (gst_flac_dec_write):
2881 Support decoding of all depths between 4 and 32 bits and read the
2882 depth from the streaminfo header if needed. Also support all sampling
2883 rates between 1 and 655350 Hz.
2885 * ext/flac/gstflacenc.c:
2886 (gst_flac_enc_caps_append_structure_with_widths),
2887 (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
2888 (gst_flac_enc_chain):
2889 * ext/flac/gstflacenc.h:
2890 Support encoding in all bit depths supported by the streamable
2891 subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
2892 between 1 Hz and 655350 Hz.
2894 2008-08-03 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2896 * ext/flac/gstflacenc.c: (gst_flac_enc_init),
2897 (gst_flac_enc_sink_getcaps):
2898 Support encoding of up to 8 channels.
2900 2008-08-02 Jan Schmidt <jan.schmidt@sun.com>
2902 * ext/soup/gstsouphttpsrc.c:
2903 * ext/soup/gstsouphttpsrc.h:
2904 Fix seeking race condition in #540300
2905 Patch By: Wouter Cloetens <wouter at mind be>
2907 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2909 * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
2910 (gst_matroska_demux_element_send_event),
2911 (gst_matroska_demux_handle_seek_event),
2912 (gst_matroska_demux_handle_src_event):
2913 When receiving a SEEK event on a specific pad first search for a seek
2914 table entry for the stream of the pad and then fall back to an entry
2915 for a different stream.
2917 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2920 * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
2921 * gst/matroska/matroska-ids.h:
2922 Build depend on core CVS for the attachment tag.
2924 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2927 * gst/matroska/Makefile.am:
2928 * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
2929 (copy_backptr), (lzo1x_decode), (main):
2930 * gst/matroska/lzo.h:
2931 * gst/matroska/matroska-demux.c:
2932 (gst_matroska_demux_read_track_encoding),
2933 (gst_matroska_decompress_data), (gst_matroska_decode_data),
2934 (gst_matroska_decode_buffer),
2935 (gst_matroska_decode_content_encodings),
2936 (gst_matroska_demux_read_track_encodings),
2937 (gst_matroska_demux_add_stream),
2938 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
2939 * gst/matroska/matroska-ids.h:
2940 Decode the codec private data and following ContentEncoding if
2943 Support bzip2, lzo and header stripped compression. For lzo use the
2944 ffmpeg lzo implementation as liblzo is GPL licensed.
2946 Fix zlib decompression.
2948 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2950 * gst/matroska/matroska-mux.c:
2951 (gst_matroska_mux_audio_pad_setcaps):
2952 Fix muxing of MP3/MP2 with different MPEG versions by calculating the
2953 duration of a frame with the new mpegaudioversion caps field.
2955 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2957 * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
2958 (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2959 (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
2960 (gst_matroska_demux_stream_from_num),
2961 (gst_matroska_demux_tracknumber_unique),
2962 (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
2963 (gst_matroska_demux_handle_seek_event),
2964 (gst_matroska_demux_sync_streams),
2965 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2966 (gst_matroska_demux_loop):
2967 * gst/matroska/matroska-demux.h:
2968 Allow an infinite number of stream inside Matroska containers and use
2969 a GPtrArray for storing them instead of allowing "only" 127 streams.
2971 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2973 * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
2974 (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
2975 (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
2976 (gst_ebml_read_element_length), (gst_ebml_peek_id),
2977 (gst_ebml_read_get_length), (gst_ebml_read_skip),
2978 (gst_ebml_read_buffer), (gst_ebml_read_bytes),
2979 (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
2980 (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
2981 (gst_ebml_read_master), (gst_ebml_read_binary),
2982 (gst_ebml_read_header):
2983 * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
2984 (gst_ebml_write_element_size), (gst_ebml_write_uint),
2985 (gst_ebml_write_sint), (gst_ebml_write_ascii),
2986 (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
2987 (gst_ebml_replace_uint):
2988 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
2989 (gst_matroska_demux_read_track_encoding),
2990 (gst_matroska_demux_read_track_encodings),
2991 (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
2992 (gst_matroska_demux_send_event),
2993 (gst_matroska_demux_element_send_event),
2994 (gst_matroska_demux_handle_seek_event),
2995 (gst_matroska_demux_handle_src_event),
2996 (gst_matroska_demux_init_stream),
2997 (gst_matroska_demux_parse_tracks),
2998 (gst_matroska_demux_parse_index_cuetrack),
2999 (gst_matroska_demux_parse_index_pointentry),
3000 (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3001 (gst_matroska_demux_parse_metadata_id_simple_tag),
3002 (gst_matroska_demux_parse_metadata_id_tag),
3003 (gst_matroska_demux_parse_metadata),
3004 (gst_matroska_demux_parse_attached_file),
3005 (gst_matroska_demux_parse_attachments),
3006 (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
3007 (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
3008 (gst_matroska_demux_push_flac_codec_priv_data),
3009 (gst_matroska_demux_push_xiph_codec_priv_data),
3010 (gst_matroska_demux_push_dvd_clut_change_event),
3011 (gst_matroska_demux_add_mpeg_seq_header),
3012 (gst_matroska_demux_add_wvpk_header),
3013 (gst_matroska_demux_check_subtitle_buffer),
3014 (gst_matroska_decode_buffer),
3015 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3016 (gst_matroska_demux_parse_cluster),
3017 (gst_matroska_demux_parse_contents_seekentry),
3018 (gst_matroska_demux_parse_contents),
3019 (gst_matroska_demux_loop_stream_parse_id),
3020 (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
3021 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3022 (gst_matroska_demux_subtitle_caps),
3023 (gst_matroska_demux_change_state):
3024 * gst/matroska/matroska-ids.c:
3025 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
3026 (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
3027 (gst_matroska_mux_video_pad_setcaps),
3028 (xiph3_streamheader_to_codecdata),
3029 (vorbis_streamheader_to_codecdata),
3030 (theora_streamheader_to_codecdata),
3031 (gst_matroska_mux_audio_pad_setcaps),
3032 (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
3033 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
3034 (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
3035 (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
3036 (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
3037 Fix indention everywhere. A broken indent version has added newlines
3038 after every single declaration some time ago.
3040 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3042 * gst/matroska/matroska-demux.c:
3043 (gst_matroska_demux_loop_stream_parse_id):
3044 If no Tracks are found error out instead of trying it again until the
3047 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3049 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
3050 Fix demuxing of raw integer audio. The samples are unsigned only for 8
3051 bit and signed otherwise, not the other way around.
3053 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3055 * gst/matroska/matroska-mux.c:
3056 Add more raw YUV formats to the list of supported formats.
3058 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3060 * gst/matroska/matroska-mux.c:
3061 (gst_matroska_mux_audio_pad_setcaps):
3062 Add support for muxing raw float audio now that the spec defines the
3063 endianness and add support for muxing raw integer audio with 24 and
3066 Allow muxing of more than 8 audio channels.
3068 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3070 * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
3071 (gst_matroska_mux_reset), (gst_matroska_mux_start):
3072 Add locking to the global array of used track UIDs to prevent random
3073 crashes if more than a single matrosmux instance is used.
3075 Use 64 bit values for the track UIDs.
3077 Use the global GRandom of GLib instead of creating our own one
3078 for the few random numbers we need every single time.
3080 2008-08-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3082 * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
3083 (gst_flac_dec_setup_stream_decoder),
3084 (gst_flac_dec_update_metadata):
3085 Always post the audio-codec tag, not only if other tags are present.
3087 2008-08-02 Jan Schmidt <jan.schmidt@sun.com>
3090 Back to development -> 0.10.9.1
3092 === release 0.10.9 ===
3094 2008-07-31 Jan Schmidt <jan.schmidt@sun.com>
3097 releasing 0.10.9, "Steam Train Rolling"
3099 2008-07-31 Jan Schmidt <jan.schmidt@sun.com>
3101 * ext/soup/gstsouphttpsrc.c:
3102 Don't throw an error when soup completes a msg with status
3103 'cancelled', as that indicates we cancelled a request while
3104 shutting down or seeking, and it's not an error.
3105 Fixes: #540300 again.
3107 2008-07-28 Jan Schmidt <jan.schmidt@sun.com>
3110 0.10.8.4 pre-release
3112 2008-07-25 Edward Hervey <edward.hervey@collabora.co.uk>
3114 * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
3115 Fix segment-stop regression.
3116 Add documentation regarding segments in quicktime files by Wim Taymans.
3119 2008-07-25 Jan Schmidt <jan.schmidt@sun.com>
3122 0.10.8.3 pre-release
3126 Add pt_BR translation
3128 2008-07-23 Michael Smith <msmith@songbirdnest.com>
3130 * gst/goom/convolve_fx.c:
3131 * gst/goom/filters.c:
3132 * gst/goom/goom_config.h:
3133 * gst/goom/goom_core.c:
3134 * gst/goom/goom_tools.h:
3135 Fix build with MSVC: include glib.h to define inline appropriately,
3136 use header guards where needed.
3137 * gst/udp/gstudpnetutils.c:
3138 * gst/udp/gstudpsrc.c:
3139 Fix build with MSVC: use WSA* constants/functions where appropriate, use
3140 g_snprintf rather than snprintf.
3143 2008-07-22 Stefan Kost <ensonic@users.sf.net>
3145 * gst/debug/gsttaginject.c:
3146 * gst/debug/gsttaginject.h:
3147 Sent tags in _transform_ip() instead of _start(). Fixes #543404
3150 2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
3153 0.10.8.2 pre-release
3155 2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
3158 Finish hooking up pulseaudio plugin to the build.
3160 * ext/pulse/pulsemixerctrl.c:
3161 Fix compilation error.
3163 2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
3167 Add new lithunian translation, and add french to the LINGUAS
3170 2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
3172 * ext/soup/gstsouphttpsrc.c:
3173 Fix Soup HTTP source seeking.
3174 Patch By: Wouter Cloetens <wouter at mind be>
3177 * tests/check/elements/.cvsignore:
3178 Ignore new check programs.
3180 2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
3183 * docs/plugins/Makefile.am:
3184 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3185 * docs/plugins/gst-plugins-good-plugins-sections.txt:
3186 * docs/plugins/gst-plugins-good-plugins.args:
3187 * docs/plugins/gst-plugins-good-plugins.hierarchy:
3188 * docs/plugins/gst-plugins-good-plugins.interfaces:
3189 * docs/plugins/gst-plugins-good-plugins.prerequisites:
3190 * docs/plugins/inspect/plugin-interleave.xml:
3191 * docs/plugins/inspect/plugin-replaygain.xml:
3192 * tests/check/Makefile.am:
3194 Move replaygain and interleave plugins from -bad.
3198 2008-07-18 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3200 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3201 (qtdemux_parse_trak):
3202 Revert ISO base media spec based pixel-aspect-ratio calculation.
3205 2008-07-17 Edward Hervey <edward.hervey@collabora.co.uk>
3207 * sys/osxvideo/osxvideosink.m:
3208 Fix minor build issues on macosx.
3211 2008-07-17 Tim-Philipp Müller <tim.muller at collabora co uk>
3214 * ext/taglib/Makefile.am::
3215 Only use -Wno-attributes (which is there to work around a
3216 bug in the taglib 1.5 headers) if the c++ compiler actually
3217 supports it (#543255).
3219 2008-07-17 Tim-Philipp Müller <tim.muller at collabora co uk>
3221 Patch by: Benoit Fouet <benoit.fouet purplelabs com>
3223 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
3224 Avoid compiler warning by initialising variable to NULL (#543259).
3226 2008-07-14 Sebastian Dröge <slomo@circular-chaos.org>
3228 * gst/debug/gsttaginject.c: (gst_tag_inject_start):
3229 Don't pass NULL taglists to gst_tag_list_is_empty().
3231 2008-07-14 Sebastian Dröge <slomo@circular-chaos.org>
3233 * tests/check/elements/cmmldec.c: (GST_START_TEST):
3234 * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
3236 * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
3237 Don't use declarations after statements.
3239 2008-07-14 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3241 * ext/jpeg/gstjpegdec.c:
3242 Align documentation with reality.
3244 2008-07-14 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3246 * gst/udp/gstudpnetutils.c:
3247 EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
3248 old value (1) if it's not defined which should not cause any problems
3249 as we're using it internal only anyway.
3251 2008-07-14 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3253 Patch by: Alessandro Decina <alessandro at nnva dot org>
3255 * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
3256 Fix build of avidemux on big endian architectures.
3258 2008-07-10 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3260 Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
3262 * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
3263 Correctly distinguish 8bit vs 16bit raw audio. Fixes #542410.
3265 2008-07-08 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3267 * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
3268 (qtdemux_parse_trak):
3269 Set pixel-aspect-ratio in caps using display width and height
3272 2008-07-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3275 Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
3276 flags that are invalid for C++. Fixes bug #516509.
3278 2008-07-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3280 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3281 * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
3282 * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
3283 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
3284 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
3285 * tests/examples/equalizer/demo.c: (message_handler):
3286 * tests/examples/spectrum/demo-audiotest.c: (message_handler):
3287 * tests/examples/spectrum/demo-osssrc.c: (message_handler):
3288 Don't use declarations after statements and variable length arrays.
3290 2008-07-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3292 Patch by: Daniel Drake <dsd at gentoo dot org>
3294 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
3295 (gst_v4l2src_get_nearest_size):
3296 Try progressive video if interlaced fails. Fixes bug #541956
3297 and the usage of v4l2src on OLPC.
3299 2008-07-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3301 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3302 (gst_rtp_speex_depay_process):
3303 * gst/rtp/gstrtpspeexdepay.h:
3304 Revert last change: Only the jitterbuffer is able to convert RTP to
3305 Gstreamer timestamps and normal (de)payloaders should simply copy it.
3306 Reopens bug #541787.
3308 2008-07-07 Stefan Kost <ensonic@users.sf.net>
3310 * gst/rtp/gstrtpvrawdepay.c:
3311 Include stdlib.h for atoi().
3313 * gst/rtsp/gstrtspsrc.c:
3314 Use floating point math for latencies < 0 sec in log output.
3316 2008-07-07 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3318 Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
3320 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
3321 (gst_rtp_speex_depay_process):
3322 * gst/rtp/gstrtpspeexdepay.h:
3323 Take timestamp from the RTP packet as a first step to fix problems
3324 with transmission over RTP when the network is not reliable.
3327 2008-07-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3329 Patch by: Tero Saarni <tero dot saarni at gmail dot com>
3331 * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
3332 Fix parsing of udp:// URIs containing IPv6 addresses.
3335 2008-07-04 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3337 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
3338 Do not leak incoming buffers.
3340 2008-07-03 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3342 Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
3345 Fix build of the RTP plugin with mingw32 by linking to ws2_32
3346 for htons() and htonl(). Fixes bug #541412.
3348 2008-07-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3350 * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
3351 (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
3352 (gst_matroska_demux_element_query),
3353 (gst_matroska_demux_handle_src_query),
3354 (gst_matroska_demux_handle_seek_event):
3355 Handle position and duration query in DEFAULT format if the
3356 pad's track has a default frame duration set.
3358 Fix seeking now that the segment's duration doesn't contain the
3359 (possibly wrong or inaccurate) duration of the Matroska file.
3361 2008-07-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3363 * gst/matroska/ebml-read.c: (_ext2dbl):
3364 Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
3365 in math.h except on MSVC where it is defined in xmath.h.
3366 Fixes compilation with MSVC.
3368 2008-07-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3370 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3371 (gst_matroska_demux_handle_src_query),
3372 (gst_matroska_demux_parse_info),
3373 (gst_matroska_demux_loop_stream_parse_id):
3374 * gst/matroska/matroska-demux.h:
3375 Don't set the segment duration to the duration from the Matroska
3376 header as this value could be wrong and is just informational.
3378 2008-07-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3380 * gst/matroska/matroska-demux.c:
3381 (gst_matroska_demux_loop_stream_parse_id):
3382 If no Tracks element is found until the first Cluster is found
3383 search it and error out if none is found in the complete file.
3385 2008-07-02 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3387 * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
3388 Resync non-subtitle tracks too if a too large gap compared to other
3391 2008-07-01 Wim Taymans <wim.taymans@collabora.co.uk>
3393 * gst/rtp/Makefile.am:
3394 * gst/rtp/gstrtp.c: (plugin_init):
3395 * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
3396 (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
3397 (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
3398 (gst_rtp_vraw_depay_change_state),
3399 (gst_rtp_vraw_depay_plugin_init):
3400 * gst/rtp/gstrtpvrawdepay.h:
3401 * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
3402 (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
3403 (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
3404 (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
3405 (gst_rtp_vraw_pay_plugin_init):
3406 * gst/rtp/gstrtpvrawpay.h:
3407 Add raw video pay and depayloaders, see RFC4175.
3409 2008-06-30 Jan Schmidt <jan.schmidt@sun.com>
3411 * ext/libpng/gstpngdec.c:
3412 Don't return GST_FLOW_ERROR when buffer_alloc fails - return
3413 whatever it returned.
3415 2008-06-29 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3417 * gst/avi/avi-ids.h:
3418 Add vprp chunk related structures.
3419 * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
3420 (gst_avi_demux_parse_stream):
3421 Parse optional vprp chunk and add calculated pixel-aspect-ratio
3422 to caps. Fixes #539482.
3423 * gst/avi/gstavimux.h:
3424 * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
3425 (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
3426 Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
3428 2008-06-28 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3430 * tests/check/elements/avimux.c: (check_avimux_pad):
3431 Adjust avimux unit test according to increased streamheader size.
3433 2008-06-27 David Schleef <ds@schleef.org>
3435 * gst/qtdemux/qtdemux.c: Add Dirac stream type
3437 2008-06-27 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
3439 * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
3440 * gst/avi/gstavimux.h:
3441 Add 8 bytes to current streamheader to make for a complete one
3442 and to make more players happy. Fixes #519460.
3444 2008-06-26 Tim-Philipp Müller <tim.muller at collabora co uk>
3446 * sys/v4l2/v4l2_calls.c::
3447 Don't include unused gstv4l2xoverlay.h. Fixes build
3448 in case where X11 headers are not installed.
3450 2008-06-26 Wim Taymans <wim.taymans@collabora.co.uk>
3452 * ext/dv/gstdv.c: (plugin_init):
3455 2008-06-26 Edward Hervey <edward.hervey@collabora.co.uk>
3457 * ext/dv/gstdv.c: (plugin_init):
3458 Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
3459 DV decoder available.
3462 2008-06-25 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3464 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3465 Call getsockname() after the call to bind() to get updated values
3466 for the port, etc. This fixes the usage of udpsrc on anonymous
3467 binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
3468 Thanks to Aurelien Grimaud for pointing out the obvious fix.
3470 2008-06-25 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3472 * tests/check/pipelines/wavpack.c: (bus_handler):
3473 Remove workaround for a bug in identity that is fixed in 0.10.20.
3475 2008-06-25 Sebastian Dröge <sebastian.droege@collabora.co.uk>
3477 Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
3479 * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
3480 Fix HTTP auth support with user/password passed via the URI.
3483 2008-06-24 Tim-Philipp Müller <tim.muller at collabora co uk>
3486 Depend on released versions of core and -base.
3488 2008-06-23 Julien Moutte <julien@fluendo.com>
3490 * gst/matroska/matroska-demux.c:
3491 (gst_matroska_demux_read_track_encoding),
3492 (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
3493 format strings in macros. (makes it build on OS X again...)
3495 2008-06-20 Thomas Vander Stichele <thomas at apestaart dot org>
3497 * gst/rtp/gstrtptheorapay.c:
3498 * gst/udp/gstmultiudpsink.c:
3501 2008-06-20 Christian Schaller <christian.schaller@collabora.co.uk>
3503 * configure.ac: switch v4l2src over to the normal build instead of
3504 being 'experimental'. Fixes bug #536831.
3506 2008-06-19 Wim Taymans <wim.taymans@collabora.co.uk>
3508 * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3509 Remove unused variable so that we can compile again.
3511 2008-06-19 Peter Kjellerstedt <pkj@axis.com>
3513 * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
3514 No need to check for audio/G723 and audio/32KADPCM here as they are
3515 no longer supported.
3517 2008-06-19 Sebastian Dröge <slomo@circular-chaos.org>
3519 * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3520 (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
3521 Use G_GINT64_CONSTANT, this fixes the duration query on files without
3524 2008-06-19 Sebastian Dröge <slomo@circular-chaos.org>
3526 * gst/matroska/matroska-demux.c:
3527 (gst_matroska_demux_add_wvpk_header),
3528 (gst_matroska_demux_audio_caps):
3529 * gst/matroska/matroska-ids.h:
3530 Fix demuxing of WavPack files. Muxing is still broken.
3532 2008-06-19 Sebastian Dröge <slomo@circular-chaos.org>
3534 * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
3535 (gst_matroska_demux_add_mpeg_seq_header),
3536 (gst_matroska_demux_add_wvpk_header),
3537 (gst_matroska_demux_check_subtitle_buffer),
3538 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3539 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
3540 (gst_matroska_demux_subtitle_caps):
3541 * gst/matroska/matroska-ids.h:
3542 Add a "vfunc" to the track context for postprocessing frames and
3543 convert the wavpack and subtitle postprocessing to this vfunc.
3544 Copy buffer flags in those functions to the new buffers too.
3546 Parse CodecState elements of Blocks.
3548 Add a postprocessing function for MPEG video that adds the sequence
3549 header from the codec private data or codec state to the frames if
3550 it's not already there.
3552 2008-06-19 Sebastian Dröge <slomo@circular-chaos.org>
3554 * gst/matroska/matroska-demux.c:
3555 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
3556 If a gap of more than 1/2 second is found in one stream send a
3557 NEWSEGMENT event to not stall the pipeline if the gap is too large.
3558 This also fixes Matroska files where the first buffer doesn't start
3559 at timestamp 0. Fixes bug #429322.
3561 The duration of a block is the default duration multiplied with the
3562 number of laces. Every lace is one frame and the default duration
3563 is the duration of one frame. This fixes playback of files that use
3564 lacing for some tracks.
3566 2008-06-18 Sebastian Dröge <slomo@circular-chaos.org>
3568 * gst/matroska/matroska-demux.c:
3569 (gst_matroska_demux_parse_contents_seekentry):
3570 Update FIXME/TODOs and only ignore EOS at the central, important place
3571 instead of several places.
3573 2008-06-18 Wim Taymans <wim.taymans@collabora.co.uk>
3575 * gst/rtp/gstrtpg726pay.c:
3576 Fix caps, See #538891.
3578 2008-06-18 Sebastian Dröge <slomo@circular-chaos.org>
3580 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3581 (gst_matroska_demux_stream_from_num),
3582 (gst_matroska_demux_encoding_cmp),
3583 (gst_matroska_demux_encoding_order_unique),
3584 (gst_matroska_demux_read_track_encoding),
3585 (gst_matroska_demux_read_track_encodings),
3586 (gst_matroska_demux_tracknumber_unique),
3587 (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
3588 (gst_matroska_demux_parse_tracks),
3589 (gst_matroska_demux_parse_index_cuetrack),
3590 (gst_matroska_demux_parse_index_pointentry),
3591 (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3592 (gst_matroska_demux_parse_metadata_id_simple_tag),
3593 (gst_matroska_demux_parse_metadata_id_tag),
3594 (gst_matroska_demux_parse_metadata),
3595 (gst_matroska_demux_parse_attached_file),
3596 (gst_matroska_demux_parse_attachments),
3597 (gst_matroska_demux_parse_chapters),
3598 (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
3599 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3600 (gst_matroska_demux_parse_cluster),
3601 (gst_matroska_demux_parse_contents_seekentry),
3602 (gst_matroska_demux_parse_contents),
3603 (gst_matroska_demux_loop_stream_parse_id),
3604 (gst_matroska_demux_loop):
3605 Improve debug output everywhere and fix the EOS logic.
3607 Check the values of the ContentEncoding elements more strictly and
3608 don't use tracks for which it's invalid.
3610 Check that the track number is unique for this stream.
3612 Check that seek positions are below G_MAXINT64 as our seeks are
3613 int64-based and overflows will fail badly.
3615 After seeks also don't push SimpleBlocks until the first one
3616 containing a keyframe is found. Before this was done only for normal
3619 Update some FIXME/TODOs.
3621 * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3622 (gst_ebml_read_utf8), (gst_ebml_read_header):
3623 Improve debug output.
3625 * gst/matroska/matroska-ids.c:
3626 (gst_matroska_track_init_video_context):
3627 * gst/matroska/matroska-ids.h:
3628 * gst/matroska/matroska-mux.c:
3629 (gst_matroska_mux_video_pad_setcaps):
3630 Remove eye mode and don't parse it anymore. We can't use that
3631 information in GStreamer yet so it's useless.
3634 2008-06-18 Wim Taymans <wim.taymans@collabora.co.uk>
3636 Patch by: Mersad Jelacic <mersad at axis dot com>
3638 * gst/rtp/Makefile.am:
3639 * gst/rtp/gstrtp.c: (plugin_init):
3640 * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
3641 (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
3642 (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
3643 (gst_rtp_g726_depay_plugin_init):
3644 * gst/rtp/gstrtpg726depay.h:
3645 * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
3646 (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
3647 (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
3648 * gst/rtp/gstrtpg726pay.h:
3649 Added G726 pay/depayloaders. Fixes #538891.
3651 2008-06-17 Wim Taymans <wim.taymans@collabora.co.uk>
3656 * gst/smpte/barboxwipes.c:
3659 * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
3660 Fix typo, add audioresample to the pipeline.
3662 2008-06-17 Wim Taymans <wim.taymans@collabora.co.uk>
3664 * ext/libmng/Makefile.am:
3665 * ext/libmng/gstmng.c: (plugin_init):
3666 * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
3667 (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
3668 (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
3669 (gst_mng_dec_get_property), (gst_mng_dec_set_property),
3670 (mngdec_error), (mngdec_openstream), (mngdec_closestream),
3671 (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
3672 (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
3673 (gst_mng_dec_change_state):
3674 * ext/libmng/gstmngdec.h:
3675 * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
3676 (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
3677 (gst_mng_enc_init), (gst_mng_enc_chain),
3678 (gst_mng_enc_get_property), (gst_mng_enc_set_property):
3679 * ext/libmng/gstmngenc.h:
3680 Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
3681 bits ifdeffed out still.
3683 2008-06-16 Sebastian Dröge <slomo@circular-chaos.org>
3685 * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
3686 When comparing index elements with the same time compare their
3689 2008-06-16 Tim-Philipp Müller <tim.muller at collabora co uk>
3691 * gst/matroska/matroska-demux.c:
3692 (gst_matroska_demux_parse_attached_file)
3693 Init variable to NULL to avoid compiler warning.
3695 2008-06-16 Sebastian Dröge <slomo@circular-chaos.org>
3697 * gst/matroska/Makefile.am:
3698 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3699 (gst_matroska_demux_parse_attached_file),
3700 (gst_matroska_demux_parse_attachments),
3701 (gst_matroska_demux_parse_contents_seekentry),
3702 (gst_matroska_demux_loop_stream_parse_id):
3703 * gst/matroska/matroska-demux.h:
3704 * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
3705 * gst/matroska/matroska-ids.h:
3706 * gst/matroska/matroska.c: (plugin_init):
3707 Parse Attachments and post them as GST_TAG_IMAGE if we detect
3708 it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
3709 and description of the attachments in the caps. Fixes bug #537622.
3711 2008-06-16 Wim Taymans <wim.taymans@collabora.co.uk>
3713 * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
3714 (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
3715 (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
3716 (gst_speex_enc_src_query), (gst_speex_enc_init),
3717 (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
3718 (gst_speex_enc_chain), (gst_speex_enc_get_property),
3719 (gst_speex_enc_set_property):
3721 Some cleanups, add more debug info.
3724 2008-06-16 Sebastian Dröge <slomo@circular-chaos.org>
3726 * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
3727 Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
3728 If we get less bytes than requested we can't do anything except doing
3731 2008-06-15 Sebastian Dröge <slomo@circular-chaos.org>
3733 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3734 (gst_matroskademux_do_index_seek),
3735 (gst_matroska_demux_parse_index_cuetrack),
3736 (gst_matroska_demux_parse_index_pointentry),
3737 (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
3738 (gst_matroska_demux_parse_metadata):
3739 * gst/matroska/matroska-demux.h:
3740 * gst/matroska/matroska-ids.h:
3741 Use a GArray for storing the Cue (i.e. seek) information, store
3742 the CueTrackPositions for every track, store the block number
3743 and optimize searching in the array by sorting it after the last
3746 Fix a small memory leak when trying to parse a tags element that was
3749 2008-06-15 Sebastian Dröge <slomo@circular-chaos.org>
3751 * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
3752 (gst_matroska_mux_start), (gst_matroska_mux_finish),
3753 (gst_matroska_mux_write_data):
3754 * gst/matroska/matroska-mux.h:
3755 Don't write another SeekHead which indexes all Clusters to the end of
3756 the file. This isn't useful for anything and just increases filesize.
3758 2008-06-15 Sebastian Dröge <slomo@circular-chaos.org>
3760 * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
3761 Prevent unaligned memory access when reading floats.
3763 2008-06-15 Sebastian Dröge <slomo@circular-chaos.org>
3765 * gst/matroska/ebml-read.c:
3766 * gst/matroska/ebml-read.h:
3767 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3768 (gst_matroska_demux_parse_metadata):
3769 * gst/matroska/matroska-demux.h:
3770 Make sure that every Tags element is only parsed once and it's
3771 containing tags are only posted once.
3773 2008-06-15 Sebastian Dröge <slomo@circular-chaos.org>
3775 * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
3776 (gst_ebml_read_header):
3777 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
3778 (gst_matroska_demux_parse_tracks),
3779 (gst_matroska_demux_parse_index_cuetrack),
3780 (gst_matroska_demux_parse_index_pointentry),
3781 (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3782 (gst_matroska_demux_parse_metadata_id_simple_tag),
3783 (gst_matroska_demux_parse_metadata_id_tag),
3784 (gst_matroska_demux_parse_metadata),
3785 (gst_matroska_demux_parse_attachments),
3786 (gst_matroska_demux_parse_chapters),
3787 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3788 (gst_matroska_demux_parse_cluster),
3789 (gst_matroska_demux_parse_contents_seekentry),
3790 (gst_matroska_demux_parse_contents),
3791 (gst_matroska_demux_loop_stream_parse_id):
3792 Handle EBML elements like Void or CRC32 in the EbmlRead base class
3793 already. They're not useful in the matroska parser and only cause
3796 2008-06-14 Sebastian Dröge <slomo@circular-chaos.org>
3798 * gst/matroska/ebml-read.c: (gst_ebml_level_free),
3799 (gst_ebml_finalize), (gst_ebml_read_change_state),
3800 (gst_ebml_read_element_level_up), (gst_ebml_read_master):
3801 * gst/matroska/matroska-demux.c:
3802 (gst_matroska_demux_parse_contents_seekentry):
3803 Reverse the level list as we usually are only interested in the
3804 first element or want to add a new first element. Having the
3805 first element stored at the end and calling g_list_last() and
3806 g_list_append() is more expensive.
3808 Also use GSlice for allocating the GstEbmlLevel structs.
3810 2008-06-13 Tim-Philipp Müller <tim.muller at collabora co uk>
3812 * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
3813 (gst_tag_inject_class_init), (gst_tag_inject_init):
3814 Don't unref NULL taglist in finalize. Don't use c++ style
3817 2008-06-13 Sebastian Dröge <slomo@circular-chaos.org>
3819 * gst/matroska/matroska-demux.c:
3820 (gst_matroska_demux_parse_metadata_id_simple_tag):
3821 * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
3822 (gst_matroska_mux_write_data):
3823 Use gst_value_serialize() and gst_value_deserialize() for transforming
3824 tags from some GType to a string and the other way around. The default
3825 transformations in GLib don't include transformations from string to
3828 2008-06-13 Sebastian Dröge <slomo@circular-chaos.org>
3830 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
3831 (gst_matroska_demux_parse_tracks),
3832 (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3833 (gst_matroska_demux_parse_attachments),
3834 (gst_matroska_demux_parse_chapters),
3835 (gst_matroska_demux_parse_contents_seekentry),
3836 (gst_matroska_demux_loop_stream_parse_id):
3837 * gst/matroska/matroska-demux.h:
3838 Only parse Tracks, SeekHead and SegmentInfo elements once but allow
3839 Tags multiple times. The first ones can appear more than once but must
3840 contain the same content as the first for backup purposes so we ignore
3841 all but the first one. Tags can appear multiple times with different
3844 Jump to all elements except Clusters that are available from a
3845 SeekHead to make it more likely to have all required informations
3846 before getting to the first Clusters.
3848 Add dummy functions for parsing Attachments and Chapters.
3850 2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
3852 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
3853 (gst_udpsrc_create), (gst_udpsrc_set_property),
3854 (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
3855 * gst/udp/gstudpsrc.h:
3856 Add property to control automatic join/leave of multicast groups.
3858 Remove setting caps on buffers explicitly, basesrc does that for us now.
3860 Convert some non-fatal error into warnings.
3861 Use g_ntohs for better portability.
3862 Leave multicast groups when stopping.
3863 When using external sockets, use getsockname() on them to fill up the
3864 addr structure before calling methods that use the structure.
3865 Should all fix #536903.
3866 API: GstUDPSrc::auto-multicast property
3868 2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
3870 * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
3871 Use g_ntohl for better portability.
3873 2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
3875 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
3876 (gst_multiudpsink_remove):
3877 Fix a typo and do some small cleanups.
3879 2008-06-13 Wim Taymans <wim.taymans@collabora.co.uk>
3881 Patch by: Olivier Crete <tester at tester dot ca>
3883 * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
3884 Make the delivery-method mandatory on the caps and only accept inline
3886 Reverse strcmp checks for delivery-method.
3888 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
3889 Make delivery method optional when parsing caps and note this in the
3891 Reverse strcmp checks for delivery-method.
3893 * gst/rtp/gstrtpvorbispay.c:
3894 Update a comment to note that the delivery-method is optional,
3897 2008-06-12 Wim Taymans <wim.taymans@collabora.co.uk>
3899 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
3900 Set udpsrc for receiving data from multicast groups to PAUSED instead of
3901 leaving them in READY. Fixes #537832.
3903 2008-06-12 Stefan Kost <ensonic@users.sf.net>
3905 * gst/avi/gstavimux.c:
3906 Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
3907 for a random constant in tagmuxing code.
3909 2008-06-11 Stefan Kost <ensonic@users.sf.net>
3911 * gst/debug/gsttaginject.c:
3912 * gst/debug/gsttaginject.h:
3913 Now actually adding the new element.
3915 2008-06-11 Stefan Kost <ensonic@users.sf.net>
3917 * docs/plugins/Makefile.am:
3918 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3919 * docs/plugins/gst-plugins-good-plugins-sections.txt:
3920 * docs/plugins/gst-plugins-good-plugins.args:
3921 * docs/plugins/gst-plugins-good-plugins.hierarchy:
3922 * docs/plugins/gst-plugins-good-plugins.interfaces:
3923 * docs/plugins/gst-plugins-good-plugins.prerequisites:
3924 * docs/plugins/inspect/plugin-aasink.xml:
3925 * docs/plugins/inspect/plugin-alaw.xml:
3926 * docs/plugins/inspect/plugin-alpha.xml:
3927 * docs/plugins/inspect/plugin-alphacolor.xml:
3928 * docs/plugins/inspect/plugin-annodex.xml:
3929 * docs/plugins/inspect/plugin-apetag.xml:
3930 * docs/plugins/inspect/plugin-audiofx.xml:
3931 * docs/plugins/inspect/plugin-auparse.xml:
3932 * docs/plugins/inspect/plugin-autodetect.xml:
3933 * docs/plugins/inspect/plugin-avi.xml:
3934 * docs/plugins/inspect/plugin-cacasink.xml:
3935 * docs/plugins/inspect/plugin-cairo.xml:
3936 * docs/plugins/inspect/plugin-cdio.xml:
3937 * docs/plugins/inspect/plugin-cutter.xml:
3938 * docs/plugins/inspect/plugin-debug.xml:
3939 * docs/plugins/inspect/plugin-dv.xml:
3940 * docs/plugins/inspect/plugin-efence.xml:
3941 * docs/plugins/inspect/plugin-effectv.xml:
3942 * docs/plugins/inspect/plugin-equalizer.xml:
3943 * docs/plugins/inspect/plugin-esdsink.xml:
3944 * docs/plugins/inspect/plugin-flac.xml:
3945 * docs/plugins/inspect/plugin-flxdec.xml:
3946 * docs/plugins/inspect/plugin-gamma.xml:
3947 * docs/plugins/inspect/plugin-gconfelements.xml:
3948 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3949 * docs/plugins/inspect/plugin-goom.xml:
3950 * docs/plugins/inspect/plugin-goom2k1.xml:
3951 * docs/plugins/inspect/plugin-halelements.xml:
3952 * docs/plugins/inspect/plugin-icydemux.xml:
3953 * docs/plugins/inspect/plugin-id3demux.xml:
3954 * docs/plugins/inspect/plugin-jpeg.xml:
3955 * docs/plugins/inspect/plugin-level.xml:
3956 * docs/plugins/inspect/plugin-matroska.xml:
3957 * docs/plugins/inspect/plugin-monoscope.xml:
3958 * docs/plugins/inspect/plugin-mulaw.xml:
3959 * docs/plugins/inspect/plugin-multifile.xml:
3960 * docs/plugins/inspect/plugin-multipart.xml:
3961 * docs/plugins/inspect/plugin-navigationtest.xml:
3962 * docs/plugins/inspect/plugin-ossaudio.xml:
3963 * docs/plugins/inspect/plugin-png.xml:
3964 * docs/plugins/inspect/plugin-quicktime.xml:
3965 * docs/plugins/inspect/plugin-rtp.xml:
3966 * docs/plugins/inspect/plugin-rtsp.xml:
3967 * docs/plugins/inspect/plugin-smpte.xml:
3968 * docs/plugins/inspect/plugin-soup.xml:
3969 * docs/plugins/inspect/plugin-spectrum.xml:
3970 * docs/plugins/inspect/plugin-speex.xml:
3971 * docs/plugins/inspect/plugin-taglib.xml:
3972 * docs/plugins/inspect/plugin-udp.xml:
3973 * docs/plugins/inspect/plugin-video4linux2.xml:
3974 * docs/plugins/inspect/plugin-videobalance.xml:
3975 * docs/plugins/inspect/plugin-videobox.xml:
3976 * docs/plugins/inspect/plugin-videocrop.xml:
3977 * docs/plugins/inspect/plugin-videoflip.xml:
3978 * docs/plugins/inspect/plugin-videomixer.xml:
3979 * docs/plugins/inspect/plugin-wavenc.xml:
3980 * docs/plugins/inspect/plugin-wavpack.xml:
3981 * docs/plugins/inspect/plugin-wavparse.xml:
3982 * docs/plugins/inspect/plugin-ximagesrc.xml:
3983 * gst/debug/Makefile.am:
3984 * gst/debug/breakmydata.c:
3985 * gst/debug/efence.c:
3986 * gst/debug/gstdebug.c:
3987 * gst/debug/gstnavseek.c:
3988 * gst/debug/gstpushfilesrc.c:
3989 * gst/debug/gstpushfilesrc.h:
3990 * gst/debug/negotiation.c:
3991 * gst/debug/progressreport.c:
3992 * gst/debug/progressreport.h:
3993 * gst/debug/rndbuffersize.c:
3994 * gst/debug/testplugin.c:
3995 Remove dummy plugin_init. Remove some undefined entries from doc-
3996 section file. Add taginject element and rebuild docs for it.
3998 2008-06-11 Sebastian Dröge <slomo@circular-chaos.org>
4000 * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
4001 (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
4002 Update the counter for the number of streams when pads are added or
4003 removed. This will make sure that a seek table is generated for
4004 files with just one audio stream.
4006 2008-06-11 Sebastian Dröge <slomo@circular-chaos.org>
4008 * gst/matroska/matroska-demux.c:
4009 (gst_matroska_demux_parse_metadata_id_simple_tag):
4010 * gst/matroska/matroska-ids.h:
4011 * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
4012 Add some more tags, improve debugging a bit and make sure that
4013 GValue transformation has succeeded before using the result
4016 2008-06-11 Sebastian Dröge <slomo@circular-chaos.org>
4018 Patch by: Olivier Crete <tester at tester dot ca>
4020 * gst/rtp/gstrtptheorapay.c:
4021 The Theora RTP payloader only supports the "inline" delievery method
4022 so let's declare this on the caps of the static pad template.
4025 2008-06-10 Wim Taymans <wim.taymans@collabora.co.uk>
4027 * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
4028 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
4031 2008-06-10 Wim Taymans <wim.taymans@collabora.co.uk>
4033 * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
4034 (gst_videomixer_blend_buffers):
4035 Use stream_time to synchronize the object properties.
4036 Use running_time of the master pad to timestamp outgoing buffers.
4037 Fix the initial segment event to extend an unknown amount of time.
4040 2008-06-10 Wim Taymans <wim.taymans@collabora.co.uk>
4042 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
4043 (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
4044 (gst_avi_demux_calculate_durations_from_index),
4045 (gst_avi_demux_stream_header_push),
4046 (gst_avi_demux_stream_header_pull):
4047 Try to ignore unparsable/unknown streams and give a warning instead of
4048 erroring out. Fixes #537377.
4050 2008-06-10 Sebastian Dröge <slomo@circular-chaos.org>
4052 * gst/matroska/ebml-write.c: (gst_ebml_write_float):
4053 Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
4055 * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4056 (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4057 (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4058 (gst_matroska_demux_read_track_encodings),
4059 (gst_matroska_demux_add_stream),
4060 (gst_matroska_demux_handle_src_query),
4061 (gst_matroska_demux_init_stream),
4062 (gst_matroska_demux_parse_index_cuetrack),
4063 (gst_matroska_demux_parse_index_pointentry),
4064 (gst_matroska_demux_parse_info),
4065 (gst_matroska_demux_parse_metadata_id_simple_tag),
4066 (gst_matroska_demux_parse_metadata),
4067 (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4068 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4069 (gst_matroska_demux_parse_cluster),
4070 (gst_matroska_demux_parse_contents_seekentry),
4071 (gst_matroska_demux_loop_stream_parse_id),
4072 (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4073 (gst_matroska_demux_audio_caps),
4074 (gst_matroska_demux_subtitle_caps):
4075 * gst/matroska/matroska-demux.h:
4076 * gst/matroska/matroska-ids.c:
4077 (gst_matroska_track_init_subtitle_context):
4078 * gst/matroska/matroska-ids.h:
4079 * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4080 (gst_matroska_mux_class_init), (gst_matroska_mux_init),
4081 (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
4082 (gst_matroska_mux_video_pad_setcaps),
4083 (gst_matroska_mux_audio_pad_setcaps),
4084 (gst_matroska_mux_subtitle_pad_setcaps),
4085 (gst_matroska_mux_request_new_pad),
4086 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
4087 (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
4088 (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
4089 (gst_matroska_mux_set_property):
4090 Add many FIXMEs/TODOs all over the matroska muxer and demuxer
4091 elements, do some checks for valid values in the demuxer, handle
4092 tracktimecodescale in the demuxer, set correct default values for all
4093 settings in the demuxer, review and add all missing matroska
4094 IDs and some more raw YUV formats, and some trivial cleanup.
4096 2008-06-10 Sebastian Dröge <slomo@circular-chaos.org>
4098 * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
4099 (gst_pulsemixer_class_init):
4100 * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4101 (gst_pulsesink_class_init), (gst_pulsesink_prepare):
4102 * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4103 (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
4104 (gst_pulsesrc_prepare):
4105 Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
4106 gst_element_class_set_details_simple() and fix coding style a bit
4109 2008-06-10 Sebastian Dröge <slomo@circular-chaos.org>
4111 * docs/plugins/Makefile.am:
4112 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4113 * docs/plugins/gst-plugins-good-plugins-sections.txt:
4114 * docs/plugins/gst-plugins-good-plugins.args:
4115 * docs/plugins/gst-plugins-good-plugins.hierarchy:
4116 * docs/plugins/gst-plugins-good-plugins.interfaces:
4117 * docs/plugins/gst-plugins-good-plugins.prerequisites:
4118 * docs/plugins/inspect/plugin-aasink.xml:
4119 * docs/plugins/inspect/plugin-alaw.xml:
4120 * docs/plugins/inspect/plugin-alpha.xml:
4121 * docs/plugins/inspect/plugin-alphacolor.xml:
4122 * docs/plugins/inspect/plugin-annodex.xml:
4123 * docs/plugins/inspect/plugin-apetag.xml:
4124 * docs/plugins/inspect/plugin-audiofx.xml:
4125 * docs/plugins/inspect/plugin-auparse.xml:
4126 * docs/plugins/inspect/plugin-autodetect.xml:
4127 * docs/plugins/inspect/plugin-avi.xml:
4128 * docs/plugins/inspect/plugin-cacasink.xml:
4129 * docs/plugins/inspect/plugin-cairo.xml:
4130 * docs/plugins/inspect/plugin-cdio.xml:
4131 * docs/plugins/inspect/plugin-cutter.xml:
4132 * docs/plugins/inspect/plugin-debug.xml:
4133 * docs/plugins/inspect/plugin-dv.xml:
4134 * docs/plugins/inspect/plugin-efence.xml:
4135 * docs/plugins/inspect/plugin-effectv.xml:
4136 * docs/plugins/inspect/plugin-equalizer.xml:
4137 * docs/plugins/inspect/plugin-esdsink.xml:
4138 * docs/plugins/inspect/plugin-flac.xml:
4139 * docs/plugins/inspect/plugin-flxdec.xml:
4140 * docs/plugins/inspect/plugin-gamma.xml:
4141 * docs/plugins/inspect/plugin-gconfelements.xml:
4142 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4143 * docs/plugins/inspect/plugin-goom.xml:
4144 * docs/plugins/inspect/plugin-goom2k1.xml:
4145 * docs/plugins/inspect/plugin-halelements.xml:
4146 * docs/plugins/inspect/plugin-icydemux.xml:
4147 * docs/plugins/inspect/plugin-id3demux.xml:
4148 * docs/plugins/inspect/plugin-jpeg.xml:
4149 * docs/plugins/inspect/plugin-level.xml:
4150 * docs/plugins/inspect/plugin-matroska.xml:
4151 * docs/plugins/inspect/plugin-monoscope.xml:
4152 * docs/plugins/inspect/plugin-mulaw.xml:
4153 * docs/plugins/inspect/plugin-multifile.xml:
4154 * docs/plugins/inspect/plugin-multipart.xml:
4155 * docs/plugins/inspect/plugin-navigationtest.xml:
4156 * docs/plugins/inspect/plugin-ossaudio.xml:
4157 * docs/plugins/inspect/plugin-png.xml:
4158 * docs/plugins/inspect/plugin-pulseaudio.xml:
4159 * docs/plugins/inspect/plugin-quicktime.xml:
4160 * docs/plugins/inspect/plugin-rtp.xml:
4161 * docs/plugins/inspect/plugin-rtsp.xml:
4162 * docs/plugins/inspect/plugin-smpte.xml:
4163 * docs/plugins/inspect/plugin-soup.xml:
4164 * docs/plugins/inspect/plugin-spectrum.xml:
4165 * docs/plugins/inspect/plugin-speex.xml:
4166 * docs/plugins/inspect/plugin-taglib.xml:
4167 * docs/plugins/inspect/plugin-udp.xml:
4168 * docs/plugins/inspect/plugin-video4linux2.xml:
4169 * docs/plugins/inspect/plugin-videobalance.xml:
4170 * docs/plugins/inspect/plugin-videobox.xml:
4171 * docs/plugins/inspect/plugin-videocrop.xml:
4172 * docs/plugins/inspect/plugin-videoflip.xml:
4173 * docs/plugins/inspect/plugin-videomixer.xml:
4174 * docs/plugins/inspect/plugin-wavenc.xml:
4175 * docs/plugins/inspect/plugin-wavpack.xml:
4176 * docs/plugins/inspect/plugin-wavparse.xml:
4177 * docs/plugins/inspect/plugin-ximagesrc.xml:
4178 * ext/pulse/plugin.c:
4179 * ext/pulse/pulsemixer.c:
4180 * ext/pulse/pulsesink.c:
4181 * ext/pulse/pulsesrc.c:
4182 Add documentation to the pulseaudio plugin and run make update
4185 2008-06-10 Sebastian Dröge <slomo@circular-chaos.org>
4187 Patch by: Brian Cameron <brian.cameron at sun dot com>
4189 * sys/sunaudio/gstsunaudiomixerctrl.c:
4190 (gst_sunaudiomixer_ctrl_get_volume),
4191 (gst_sunaudiomixer_ctrl_set_volume):
4192 Improvements for the SunAudio mixer by handling mute as no gain
4193 for tracks that have a gain property but no mute property.
4196 2008-06-10 Sebastian Dröge <slomo@circular-chaos.org>
4199 * ext/pulse/Makefile.am:
4200 * ext/pulse/plugin.c: (plugin_init):
4201 * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
4202 (gst_pulsemixer_implements_interface_init),
4203 (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
4204 (gst_pulsemixer_class_init), (gst_pulsemixer_init),
4205 (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
4206 (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
4207 * ext/pulse/pulsemixer.h:
4208 * ext/pulse/pulsemixerctrl.c:
4209 (gst_pulsemixer_ctrl_context_state_cb),
4210 (gst_pulsemixer_ctrl_sink_info_cb),
4211 (gst_pulsemixer_ctrl_source_info_cb),
4212 (gst_pulsemixer_ctrl_subscribe_cb),
4213 (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
4214 (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
4215 (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
4216 (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
4217 (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
4218 (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
4219 * ext/pulse/pulsemixerctrl.h:
4220 * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
4221 (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
4222 * ext/pulse/pulsemixertrack.h:
4223 * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
4224 (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
4225 (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
4226 (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
4227 (gst_pulseprobe_new), (gst_pulseprobe_free),
4228 (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
4229 (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
4230 (gst_pulseprobe_set_server):
4231 * ext/pulse/pulseprobe.h:
4232 * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
4233 (gst_pulsesink_class_init), (gst_pulsesink_init),
4234 (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
4235 (gst_pulsesink_finalize), (gst_pulsesink_dispose),
4236 (gst_pulsesink_set_property), (gst_pulsesink_get_property),
4237 (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
4238 (gst_pulsesink_stream_request_cb),
4239 (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
4240 (gst_pulsesink_close), (gst_pulsesink_prepare),
4241 (gst_pulsesink_unprepare), (gst_pulsesink_write),
4242 (gst_pulsesink_delay), (gst_pulsesink_success_cb),
4243 (gst_pulsesink_reset), (gst_pulsesink_change_title),
4244 (gst_pulsesink_event), (gst_pulsesink_get_type):
4245 * ext/pulse/pulsesink.h:
4246 * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
4247 (gst_pulsesrc_implements_interface_init),
4248 (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
4249 (gst_pulsesrc_class_init), (gst_pulsesrc_init),
4250 (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
4251 (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
4252 (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
4253 (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
4254 (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
4255 (gst_pulsesrc_close), (gst_pulsesrc_prepare),
4256 (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
4257 (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
4258 (gst_pulsesrc_get_type):
4259 * ext/pulse/pulsesrc.h:
4260 * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
4261 (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
4262 * ext/pulse/pulseutil.h:
4263 Add pulseaudio GStreamer element from gst-pulse. Development will
4264 continue here instead of pulseaudio SVN. Fixes bug #400679.
4265 Only changes over gst-pulse SVN are added copyright to the top of
4266 files and coding style changes.
4268 2008-06-09 Tim-Philipp Müller <tim.muller at collabora co uk>
4270 Patch by: Benjamin Kampmann <benjamin at fluendo dot com>
4272 * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
4273 (gst_cdio_add_cdtext_album_tags):
4274 * ext/cdio/gstcdio.h:
4275 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4276 Also extract album title and album genre from CD-TEXT if
4277 available (#537021).
4279 2008-06-09 Sebastian Dröge <slomo@circular-chaos.org>
4281 Patch by: Sjoerd Simons <sjoerd at luon dot net>
4283 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
4284 Improve negotiation a bit more by picking the smallest possible
4285 resolution that is larger than the resolution specified in the
4286 first caps entry of the peer caps. Fixes bug #536994.
4288 2008-06-09 Sebastian Dröge <slomo@circular-chaos.org>
4290 Patch by: Bastien Nocera <hadess at hadess dot net>
4292 * sys/v4l2/gstv4l2vidorient.c:
4293 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4294 Fix compilation with newer GIT kernels that deprecated
4295 V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
4297 2008-06-07 Tim-Philipp Müller <tim.muller at collabora co uk>
4300 * ext/cdio/gstcdio.c:
4301 * ext/cdio/gstcdio.h:
4302 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
4303 Require libcdio >= 0.76.
4305 2008-06-05 Thijs Vermeir <thijsvermeir@gmail.com>
4307 * gst/avi/gstavidemux.c:
4308 Catch UNEXPECTED when downstream has reached end of
4309 segment in reverse mode.
4311 2008-06-04 Thijs Vermeir <thijsvermeir@gmail.com>
4313 * gst/avi/gstavidemux.c:
4316 2008-06-04 Thijs Vermeir <thijsvermeir@gmail.com>
4318 * gst/avi/gstavidemux.c:
4319 Because we don't know the frame order we need to push till
4322 2008-06-04 Sebastian Dröge <slomo@circular-chaos.org>
4324 Patch by: Sjoerd Simons <sjoerd at luon dot net>
4326 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4327 (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
4328 Provide a custom negotiation function to make sure to pick the highest
4329 possible framerate and resolution. Fixes bug #536646.
4331 2008-06-04 Thijs Vermeir <thijsvermeir@gmail.com>
4333 * gst/avi/gstavidemux.c:
4334 Set EOS when going out of the segment in reverse playback
4336 2008-06-04 Tim-Philipp Müller <tim.muller at collabora co uk>
4338 * ext/taglib/Makefile.am::
4339 Add -Wno-attributes to CXXFLAGS to suppress warning caused by
4340 taglib headers (with gcc 4.3.1).
4342 2008-06-04 Peter Kjellerstedt <pkj@axis.com>
4344 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
4345 Use the new gst_rtsp_connection_get_ip() to access the IP address
4346 of a GstRTSPConnection since it is a private member.
4348 2008-06-04 Tim-Philipp Müller <tim.muller at collabora co uk>
4350 * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4351 * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4352 Use new utility functions in libgsttag to process coverart (#512333).
4354 2008-06-04 Sebastian Dröge <slomo@circular-chaos.org>
4356 * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4357 We actually support left/side, right/side and mid/side files. The
4358 conversion to normal, interleaved stereo is done by libflac.
4360 2008-06-04 Sebastian Dröge <slomo@circular-chaos.org>
4362 * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4363 (gst_ebml_write_set_cache):
4364 Unref the write cache in finalize if it was set and add add "FIXME"
4365 to a comment that needs it.
4367 2008-06-02 Wim Taymans <wim.taymans@collabora.co.uk>
4369 Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
4371 * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
4372 (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
4373 (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
4374 (gst_avi_demux_process_next_entry):
4375 * gst/avi/gstavidemux.h:
4376 Implement reverse playback. Fixes #535300.
4379 2008-06-02 Sebastian Dröge <slomo@circular-chaos.org>
4381 * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
4382 (gst_videomixer_query_latency):
4383 When using gst_element_iterate_pads() one has to unref every pad
4386 2008-05-31 Edward Hervey <edward.hervey@collabora.co.uk>
4388 Patch by: Bastien Nocera <hadess at hadess dot net>
4389 * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
4390 (qtdemux_parse_udta):
4391 * gst/qtdemux/qtdemux_fourcc.h:
4392 Improve meta-data handling, add 'comment', 'description' and
4393 'copyright' tag handling.
4396 2008-05-31 Julien Moutte <julien@fluendo.com>
4398 * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
4399 (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
4400 (gst_qtdemux_seek_to_previous_keyframe),
4401 (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
4402 we don't clip the segment's stop using the main segment duration as
4403 that could crop quite some video frames. Make reverse playback support
4404 more robust and support edit lists. Support seeking to the last frame,
4405 and fix reverse looping playback. Add some debugging.
4406 * win32/common/config.h: Updated.
4408 2008-05-31 Sebastian Dröge <slomo@circular-chaos.org>
4410 * gst/equalizer/gstiirequalizer.c:
4411 (gst_iir_equalizer_transform_ip):
4412 Don't clip float/double samples, correctly unset passthrough mode
4413 and use better rounding for integer samples.
4415 2008-05-30 Sebastian Dröge <slomo@circular-chaos.org>
4417 * gst/equalizer/gstiirequalizer.c:
4418 (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
4419 (setup_filter), (set_passthrough), (update_coefficients),
4420 (gst_iir_equalizer_compute_frequencies),
4421 (gst_iir_equalizer_transform_ip):
4422 * gst/equalizer/gstiirequalizer.h:
4423 Update the filter coefficients only when needed in the transform_ip
4424 function and correctly set the element into passthrough mode if the
4425 gain of all bands is 0.
4427 2008-05-29 Wim Taymans <wim.taymans@collabora.co.uk>
4429 Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
4431 * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4432 (gst_alpha_set_property), (gst_alpha_get_property),
4433 (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
4434 Try to skip pixels or areas that are too dark or too bright for us to do
4435 meaningfull color detection.
4436 Added properties to control the sensitivity to light and darkness.
4437 Added some small cleanups. Fixes #512345.
4439 2008-05-28 Jan Schmidt <jan.schmidt@sun.com>
4441 * docs/plugins/.cvsignore:
4442 * tests/check/elements/.cvsignore:
4443 Ignore some more generated things
4445 * tests/check/Makefile.am:
4446 Ignore OSS elements in the state changes test too.
4448 2008-05-28 Wim Taymans <wim.taymans@collabora.co.uk>
4450 * docs/plugins/Makefile.am:
4451 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4452 * docs/plugins/gst-plugins-good-plugins-sections.txt:
4453 Add SMPTE effect elements to docs.
4455 2008-05-28 Stefan Kost <ensonic@users.sf.net>
4457 * docs/plugins/Makefile.am:
4458 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4459 * docs/plugins/gst-plugins-good-plugins-sections.txt:
4460 * ext/raw1394/gstdv1394src.c:
4461 Document whats first shown on the fdo plugin docs page :)
4463 2008-05-28 Stefan Kost <ensonic@users.sf.net>
4465 * docs/plugins/Makefile.am:
4466 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4467 * docs/plugins/gst-plugins-good-plugins-sections.txt:
4468 * docs/plugins/gst-plugins-good-plugins.args:
4469 * docs/plugins/gst-plugins-good-plugins.hierarchy:
4470 * docs/plugins/inspect/plugin-audiofx.xml:
4471 * gst/audiofx/Makefile.am:
4472 * gst/audiofx/audiofx.c:
4473 * gst/audiofx/audiokaraoke.c:
4474 * gst/audiofx/audiokaraoke.h:
4475 * gst/audiofx/audiovoice.c:
4476 * gst/audiofx/audiovoice.h:
4477 Rename audiovoice to audiokaraoke and add it to the docs.
4479 2008-05-28 Stefan Kost <ensonic@users.sf.net>
4482 * docs/plugins/Makefile.am:
4483 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4484 * docs/plugins/gst-plugins-good-plugins-sections.txt:
4485 * docs/plugins/gst-plugins-good-plugins.args:
4486 * docs/plugins/gst-plugins-good-plugins.hierarchy:
4487 * docs/plugins/gst-plugins-good-plugins.interfaces:
4488 * docs/plugins/gst-plugins-good-plugins.prerequisites:
4489 * docs/plugins/inspect/plugin-aasink.xml:
4490 * docs/plugins/inspect/plugin-alaw.xml:
4491 * docs/plugins/inspect/plugin-alpha.xml:
4492 * docs/plugins/inspect/plugin-alphacolor.xml:
4493 * docs/plugins/inspect/plugin-annodex.xml:
4494 * docs/plugins/inspect/plugin-apetag.xml:
4495 * docs/plugins/inspect/plugin-audiofx.xml:
4496 * docs/plugins/inspect/plugin-auparse.xml:
4497 * docs/plugins/inspect/plugin-autodetect.xml:
4498 * docs/plugins/inspect/plugin-avi.xml:
4499 * docs/plugins/inspect/plugin-cacasink.xml:
4500 * docs/plugins/inspect/plugin-cairo.xml:
4501 * docs/plugins/inspect/plugin-cdio.xml:
4502 * docs/plugins/inspect/plugin-cutter.xml:
4503 * docs/plugins/inspect/plugin-debug.xml:
4504 * docs/plugins/inspect/plugin-dv.xml:
4505 * docs/plugins/inspect/plugin-efence.xml:
4506 * docs/plugins/inspect/plugin-effectv.xml:
4507 * docs/plugins/inspect/plugin-equalizer.xml:
4508 * docs/plugins/inspect/plugin-esdsink.xml:
4509 * docs/plugins/inspect/plugin-flac.xml:
4510 * docs/plugins/inspect/plugin-flxdec.xml:
4511 * docs/plugins/inspect/plugin-gamma.xml:
4512 * docs/plugins/inspect/plugin-gconfelements.xml:
4513 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4514 * docs/plugins/inspect/plugin-goom.xml:
4515 * docs/plugins/inspect/plugin-goom2k1.xml:
4516 * docs/plugins/inspect/plugin-halelements.xml:
4517 * docs/plugins/inspect/plugin-icydemux.xml:
4518 * docs/plugins/inspect/plugin-id3demux.xml:
4519 * docs/plugins/inspect/plugin-jpeg.xml:
4520 * docs/plugins/inspect/plugin-level.xml:
4521 * docs/plugins/inspect/plugin-matroska.xml:
4522 * docs/plugins/inspect/plugin-monoscope.xml:
4523 * docs/plugins/inspect/plugin-mulaw.xml:
4524 * docs/plugins/inspect/plugin-multifile.xml:
4525 * docs/plugins/inspect/plugin-multipart.xml:
4526 * docs/plugins/inspect/plugin-navigationtest.xml:
4527 * docs/plugins/inspect/plugin-ossaudio.xml:
4528 * docs/plugins/inspect/plugin-png.xml:
4529 * docs/plugins/inspect/plugin-quicktime.xml:
4530 * docs/plugins/inspect/plugin-rtp.xml:
4531 * docs/plugins/inspect/plugin-rtsp.xml:
4532 * docs/plugins/inspect/plugin-smpte.xml:
4533 * docs/plugins/inspect/plugin-soup.xml:
4534 * docs/plugins/inspect/plugin-spectrum.xml:
4535 * docs/plugins/inspect/plugin-speex.xml:
4536 * docs/plugins/inspect/plugin-taglib.xml:
4537 * docs/plugins/inspect/plugin-udp.xml:
4538 * docs/plugins/inspect/plugin-video4linux2.xml:
4539 * docs/plugins/inspect/plugin-videobalance.xml:
4540 * docs/plugins/inspect/plugin-videobox.xml:
4541 * docs/plugins/inspect/plugin-videocrop.xml:
4542 * docs/plugins/inspect/plugin-videoflip.xml:
4543 * docs/plugins/inspect/plugin-videomixer.xml:
4544 * docs/plugins/inspect/plugin-wavenc.xml:
4545 * docs/plugins/inspect/plugin-wavpack.xml:
4546 * docs/plugins/inspect/plugin-wavparse.xml:
4547 * docs/plugins/inspect/plugin-ximagesrc.xml:
4548 * ext/aalib/gstaasink.c:
4549 * ext/libcaca/gstcacasink.c:
4550 Document aasink and cacasink.
4552 2008-05-28 Sebastian Dröge <slomo@circular-chaos.org>
4554 * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4555 (gst_videomixer_init), (gst_videomixer_query_duration),
4556 (gst_videomixer_query_latency), (gst_videomixer_query),
4557 (gst_videomixer_blend_buffers):
4558 * gst/videomixer/videomixer.h:
4559 Implement position (in time), duration and latency queries.
4561 2008-05-27 Edward Hervey <edward.hervey@collabora.co.uk>
4563 * gst/videomixer/videomixer.c: (gst_videomixer_reset),
4564 (gst_videomixer_init), (gst_videomixer_request_new_pad),
4565 (gst_videomixer_fill_queues), (forward_event_func),
4566 (forward_event), (gst_videomixer_src_event),
4567 (gst_videomixer_sink_event):
4568 * gst/videomixer/videomixer.h:
4569 Implement proper seek/newsegment handling.
4570 Based on adder's implementation.
4573 2008-05-26 Wim Taymans <wim.taymans@collabora.co.uk>
4575 Patch by: Jan Gerber <j at oil21 dot org>
4577 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
4578 Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
4580 2008-05-26 Wim Taymans <wim.taymans@collabora.co.uk>
4582 * gst/audiofx/Makefile.am:
4583 * gst/audiofx/audiofx.c: (plugin_init):
4584 * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
4585 (gst_audio_voice_class_init), (gst_audio_voice_init),
4586 (update_filter), (gst_audio_voice_set_property),
4587 (gst_audio_voice_get_property), (gst_audio_voice_setup),
4588 (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
4589 (gst_audio_voice_transform_ip):
4590 * gst/audiofx/audiovoice.h:
4591 Add simple voice removal element. Yay karaoke.
4593 2008-05-26 Wim Taymans <wim.taymans@collabora.co.uk>
4595 Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4597 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4598 Fix potential caps leak.
4599 If we can't get the framerate with an ioctl, try to get it with the
4600 current norm. Fixes #520092.
4602 2008-05-26 Wim Taymans <wim.taymans@collabora.co.uk>
4604 Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4606 * sys/v4l2/v4l2src_calls.c:
4607 (gst_v4l2src_probe_caps_for_format_and_size):
4608 If we fail to get the frame intervals, simply don't touch the framerates
4609 on the template caps instead of discarding the format. See #520092.
4611 2008-05-26 Wim Taymans <wim.taymans@collabora.co.uk>
4613 Patch by: William M. Brack <wbrack at mmm dot com dot hk>
4615 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
4616 (gst_v4l2_get_caps_info):
4617 Add NV12, NV21 and bayer support. See #520092.
4619 2008-05-26 Wim Taymans <wim.taymans@collabora.co.uk>
4621 * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4622 (gst_qtdemux_activate_segment):
4623 Unbreak segment activation again. Fixes #531672.
4625 2008-05-25 Sebastian Dröge <slomo@circular-chaos.org>
4627 * ext/flac/Makefile.am:
4628 * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4629 Set the channel layout when decoding FLAC files with more than 2
4630 channels as defined by the FLAC spec. Fixes bug #534570.
4632 Also don't try to decode left/side, right/side and mid/side files
4633 as we don't support this at all.
4635 2008-05-24 Tim-Philipp Müller <tim.muller at collabora co uk>
4638 We need -base CVS (rtsp).
4640 2008-05-22 Tim-Philipp Müller <tim.muller at collabora co uk>
4642 * gst/udp/Makefile.am:
4643 Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
4644 when including netdb.h when building against glibc >= 2.8.
4646 2008-05-22 Julien Moutte <julien@fluendo.com>
4648 * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
4649 debug statement arguments.
4650 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
4651 * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
4652 (gst_udp_leave_group): Fix IP and IPV6 options to make it work
4655 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4657 * tests/check/elements/avimux.c: (setup_src_pad),
4659 * tests/check/elements/icydemux.c: (icydemux_found_pad),
4661 * tests/check/elements/matroskamux.c: (setup_src_pad),
4662 (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
4663 * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
4665 * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
4666 (setup_wavpackparse), (cleanup_wavpackparse):
4667 Don't use gst_element_get_pad(), it's a bad, bad method.
4669 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4671 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
4672 (do_toggle_element):
4673 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
4674 (do_toggle_element):
4675 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
4676 (do_toggle_element):
4677 * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
4678 * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
4679 (do_toggle_element):
4680 * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
4681 (do_toggle_element):
4682 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
4683 (gst_auto_audio_sink_detect):
4684 * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
4685 (gst_auto_video_sink_detect):
4686 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4687 (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
4688 (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
4689 (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
4690 (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
4691 (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
4692 * tests/icles/videocrop-test.c: (test_with_caps),
4693 (video_crop_get_test_caps):
4694 Don't use gst_element_get_pad(), it's a bad method.
4696 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4698 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
4699 (gst_multiudpsink_add_internal):
4700 * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
4701 (gst_udp_join_group):
4702 * gst/udp/gstudpnetutils.h:
4703 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
4704 Joining a multicast group and setting the loop/ttl properties are
4705 totally unrelated tasks are must be separated.
4707 2008-05-21 Stefan Kost <ensonic@users.sf.net>
4709 * gst/avi/gstavimux.c:
4710 Also support alaw/mulaw.
4712 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4714 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4715 (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
4716 * gst/udp/gstmultiudpsink.h:
4717 Add a fixme for the auto-multicast property.
4718 Fix some confusing debug messages.
4719 Disable setting a qos value by default.
4721 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4723 Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
4725 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
4726 Ignore EPERM errors from sendto. Fixes #533619.
4728 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4730 Patch by: Henrik Eriksson <henriken at axis dot com>
4732 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4733 (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
4734 (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
4735 (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
4736 * gst/udp/gstmultiudpsink.h:
4737 Add qos-dscp property to manage the Quality of service. Fixes #469917.
4739 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4741 * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
4742 Improve debugging of the ident.
4744 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4746 Patch by: Bruno Santos <brunof at ua dot pt>
4748 * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
4749 (gst_udp_join_group), (gst_udp_leave_group),
4750 (gst_udp_is_multicast):
4751 * gst/udp/gstudpnetutils.h:
4752 Provide a bunch of helper methods to deal with IPv4 and IPv6
4755 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4756 (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4757 (gst_multiudpsink_get_property), (join_multicast),
4758 (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
4759 (gst_multiudpsink_remove):
4760 * gst/udp/gstmultiudpsink.h:
4761 Add multicast TTL and loopback properties.
4762 Use the helper methods to implement ip4 and ip6.
4764 * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
4765 * gst/udp/gstudpsrc.h:
4766 Use the helper methods to implement ip4 and ip6.
4769 2008-05-21 Wim Taymans <wim.taymans@collabora.co.uk>
4771 Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
4773 * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
4774 (gst_multipart_demux_get_gstname),
4775 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
4776 * gst/multipart/multipartdemux.h:
4777 Don't blindly copy the mime-type as the caps name because they not
4778 always map directly. Instead use a hashtable with common mappings.
4781 2008-05-20 Wim Taymans <wim.taymans@collabora.co.uk>
4783 * ext/esd/esdsink.c: (gst_esdsink_write):
4784 When we post an error, we must return -1 to let the parent know that we
4785 cannot write the segment else it will loop and continue to call us again
4786 forever. Patch by Michael Meeks.
4788 2008-05-20 Stefan Kost <ensonic@users.sf.net>
4790 * gst/videomixer/videomixer.c:
4791 Add missing incudes.
4793 2008-05-20 Peter Kjellerstedt <pkj@axis.com>
4795 * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4796 (gst_rtp_h264_pay_handle_buffer):
4797 * gst/rtp/gstrtph264pay.h:
4798 Correct a typo (sinle -> single).
4800 2008-05-20 Wim Taymans <wim.taymans@collabora.co.uk>
4802 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4803 (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
4804 (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
4805 (gst_rtp_h264_depay_process):
4806 * gst/rtp/gstrtph264depay.h:
4807 Add experimental support for outputting quicktime-like AVC output in
4808 addition to the existing bytestream output.
4810 * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
4811 (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4812 (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
4813 (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4814 (gst_rtp_h264_pay_get_property):
4815 * gst/rtp/gstrtph264pay.h:
4816 Make the parsing mode configurable, for some inputs we don't need to
4817 scan every byte for start codes.
4818 Only set the marker bit on ACCESS units.
4820 2008-05-20 Sebastian Dröge <slomo@circular-chaos.org>
4822 * gst/equalizer/gstiirequalizer.c:
4823 Use a bigger type in integer mode for the intermediate results to
4824 prevent overflows. This fixes the crippled sound when using the
4825 equalizer in integer mode. Fixes bug #510865.
4827 2008-05-20 Jan Schmidt <jan.schmidt@sun.com>
4829 * gst/videomixer/videomixer.c:
4830 * gst/videomixer/videomixer.h:
4831 Instead of a random number for the request pad id's,
4834 Register the videomixerpad class from the element's class_init
4835 where it's safer, and allows the docs generator to scan it.
4837 2008-05-20 Wim Taymans <wim.taymans@collabora.co.uk>
4839 * gst/smpte/Makefile.am:
4840 * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
4841 * gst/smpte/gstsmpte.h:
4842 * gst/smpte/gstsmptealpha.c:
4843 (gst_smpte_alpha_transition_type_get_type),
4844 (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
4845 (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
4846 (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
4847 (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
4848 (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
4849 (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
4850 (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
4851 * gst/smpte/gstsmptealpha.h:
4852 * gst/smpte/plugin.c: (plugin_init):
4853 Add new plugin that adds the SMPTE transition in the alpha channel of
4854 I420 and AYUV frames so that they can be blended with videomixer later
4855 on. Uses all niceties such as using base transform for efficient alloc
4856 and negotiation. It currently requires GstController to control the
4857 position in the transition effect.
4859 2008-05-19 Stefan Kost <ensonic@users.sf.net>
4861 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4862 * docs/plugins/gst-plugins-good-plugins-sections.txt:
4863 * docs/plugins/gst-plugins-good-plugins.args:
4864 * docs/plugins/gst-plugins-good-plugins.hierarchy:
4865 * docs/plugins/gst-plugins-good-plugins.interfaces:
4866 * docs/plugins/gst-plugins-good-plugins.types:
4867 * gst/videomixer/videomixer.c:
4868 Try using thaytans new mechanism to get extra classes into plugin
4869 docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
4872 2008-05-18 Mark Nauwelaerts <mnauw@users.sf.net>
4874 * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
4875 Set proper rate in avi stream header for PCM audio, and also do some
4876 more sanity checks on caps in this case. Fixes #511489.
4878 2008-05-17 Sebastian Dröge <slomo@circular-chaos.org>
4880 * sys/v4l2/gstv4l2src.c:
4881 Don't include the gstv4l2xoverlay.h header as the XOverlay support
4882 isn't implemented at all yet and this requires X headers to be
4883 installed. Fixes bug #533264.
4885 2008-05-17 Sebastian Dröge <slomo@circular-chaos.org>
4887 reviewed by: <delete if not using a buddy>
4889 * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
4890 (gst_ebml_write_set_cache):
4891 * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
4892 (gst_matroska_demux_class_init), (gst_matroska_demux_init),
4893 (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
4894 (gst_matroska_demux_read_track_encodings),
4895 (gst_matroska_demux_add_stream),
4896 (gst_matroska_demux_handle_src_query),
4897 (gst_matroska_demux_init_stream),
4898 (gst_matroska_demux_parse_index_cuetrack),
4899 (gst_matroska_demux_parse_index_pointentry),
4900 (gst_matroska_demux_parse_info),
4901 (gst_matroska_demux_parse_metadata_id_simple_tag),
4902 (gst_matroska_demux_parse_metadata),
4903 (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
4904 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
4905 (gst_matroska_demux_parse_cluster),
4906 (gst_matroska_demux_parse_contents_seekentry),
4907 (gst_matroska_demux_loop_stream_parse_id),
4908 (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
4909 (gst_matroska_demux_audio_caps),
4910 (gst_matroska_demux_subtitle_caps):
4911 * gst/matroska/matroska-demux.h:
4912 * gst/matroska/matroska-ids.c:
4913 (gst_matroska_track_init_subtitle_context):
4914 * gst/matroska/matroska-ids.h:
4915 * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
4916 (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
4917 (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4918 * sys/v4l2/gstv4l2src.c:
4919 * tests/check/pipelines/wavpack.c: (bus_handler):
4920 * win32/common/config.h:
4922 2008-05-16 Jan Schmidt <jan.schmidt@sun.com>
4924 * ext/wavpack/gstwavpackstreamreader.c:
4925 * tests/examples/spectrum/demo-audiotest.c:
4926 * tests/examples/spectrum/demo-osssrc.c:
4927 Fix some compiler warnings.
4929 2008-05-14 Wim Taymans <wim.taymans@collabora.co.uk>
4931 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
4932 Small comment added.
4934 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4935 (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
4936 (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
4937 Debug string cleanups (remove trailing \n)
4938 Refactor and clean up the payloader a bit and make sure that we only
4939 put one NAL unit in an RTP packet even if the input buffer contains
4941 Add suport for AVC format input.
4943 2008-05-14 Peter Kjellerstedt <pkj@axis.com>
4945 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
4946 (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
4947 (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
4948 * gst/rtp/gstrtph264pay.h:
4949 Make it possible to specify profile-level-id and sprop-parameter-sets
4950 using properties in case they are not available in-stream.
4952 2008-05-14 Stefan Kost <ensonic@users.sf.net>
4954 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4955 * docs/plugins/gst-plugins-good-plugins.args:
4956 * docs/plugins/inspect/plugin-ladspa.xml:
4957 Remove ladspa fro plugin-docs, its in gst-plugins-bad.
4959 2008-05-13 Mark Nauwelaerts <mnauw@users.sf.net>
4961 * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4962 Send an initial BYTE segment to inform downstream of later seeking,
4963 and to forego sync attempts.
4965 2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
4967 * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
4968 Fix wrong caps string.
4970 2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
4972 Based on patch by: Olivier Crete <tester at tester dot ca>
4974 * gst/rtp/Makefile.am:
4975 * gst/rtp/gstrtp.c: (plugin_init):
4976 * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
4977 (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
4978 (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
4979 (gst_rtp_g729_depay_plugin_init):
4980 * gst/rtp/gstrtpg729depay.h:
4981 * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
4982 (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
4983 (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
4984 * gst/rtp/gstrtpg729pay.h:
4985 Added G729 pay and depayloaders. Fixes #532409.
4987 2008-05-13 Wim Taymans <wim.taymans@collabora.co.uk>
4989 * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
4990 Fix the calculation of the duration of the concealment packets.
4992 2008-05-12 Wim Taymans <wim.taymans@collabora.co.uk>
4994 Based on patch by: Olivier Crete <tester at tester dot ca>
4996 * gst/rtp/Makefile.am:
4997 * gst/rtp/gstrtp.c: (plugin_init):
4998 * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
4999 (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
5000 (parse_encode), (gst_rtp_dv_depay_setcaps),
5001 (calculate_difblock_location), (gst_rtp_dv_depay_process),
5002 (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
5003 (gst_rtp_dv_depay_plugin_init):
5004 * gst/rtp/gstrtpdvdepay.h:
5005 * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
5006 (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
5007 (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
5008 (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
5009 (gst_dv_pay_negotiate), (include_dif),
5010 (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
5011 * gst/rtp/gstrtpdvpay.h:
5012 Add DV pay and depayloaders. Fixes #532423.
5014 2008-05-12 Mark Nauwelaerts <mnauw@users.sf.net>
5016 * gst/matroska/matroska-demux.c:
5017 (gst_matroska_demux_push_dvd_clut_change_event):
5018 Convert subtitle palette info in VobSub private data from VobSub's
5021 2008-05-12 Mark Nauwelaerts <mnauw@users.sf.net>
5023 * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
5024 Do not leave fourcc stream header field empty upon reset.
5027 2008-05-11 Jan Schmidt <jan.schmidt@sun.com>
5029 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5030 * docs/plugins/gst-plugins-good-plugins-sections.txt:
5031 * docs/plugins/inspect/plugin-goom.xml:
5032 * docs/plugins/inspect/plugin-goom2k1.xml:
5033 * gst/goom/gstgoom.c:
5034 * gst/goom2k1/gstgoom.c:
5035 Add goom2k1 into the docs.
5037 2008-05-08 Wim Taymans <wim.taymans@collabora.co.uk>
5039 Based on patch by: Wouter Cloetens <wouter at mind be>
5041 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5042 (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
5043 (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
5044 (gst_rtsp_decode_quoted_string),
5045 (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
5046 (gst_rtspsrc_setup_auth):
5047 Support Digest authentication. Fixes #532065.
5049 2008-05-08 Stefan Kost <ensonic@users.sf.net>
5051 * gst/level/gstlevel.c:
5052 Also support 32bit (e.g. whe having it after 'mad'). Add more notes
5053 about whats needed for liboil acceleration. Simplify docs a bit.
5055 2008-05-08 Sebastian Dröge <slomo@circular-chaos.org>
5057 Patch by: Sjoerd Simons <sjoerd at luon dot net>
5059 * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
5060 Update the track duration if the old one was invalid.
5063 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5065 * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
5066 Use GST_STR_NULL when trying to print sps and pps strings that could
5067 be NULL, as this might crash on some platforms.
5069 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5071 patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5073 * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
5074 Do IDirectDrawClipper_SetHWnd() if the window ID has already been
5075 set after creating the clipper.
5077 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5079 patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5081 * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
5082 Added checking of surface lost case after an unsuccessful
5083 IDirectDrawSurface7_Lock() call.
5084 If surface is lost, return GST_FLOW_OK.
5086 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5088 patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5090 * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
5091 WndProc, gst_directdraw_sink_window_thread):
5092 Improved Windows message loop and fixed window destruction issue.
5093 When the window which DirectDraw is rendering to is destroyed, the
5094 render/show_frame function will return GST_FLOW_ERROR.
5095 Partially fixes #520885.
5097 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5099 patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
5101 * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
5102 Fixed mid stream resolution change bug, the offscreen surface is now
5103 released when set_caps is called.
5104 Partially fixes #520885.
5106 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5108 * sys/directdraw/gstdirectdrawsink.c
5109 (gst_directdraw_sink_buffer_alloc):
5110 Make it so that gst_directdraw_sink_buffer_alloc uses the right
5113 Especially when looking through the pool of buffers, make sure that
5114 the width/height of caps is used instead of the already negotiated
5116 For example if a buffer with different caps is requested, i.e.
5117 higher resolution, the caller would get a buffer with the old
5118 dimensions and thus corrupt the heap.
5120 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5122 * sys/directdraw/gstdirectdrawsink.c
5123 (gst_directdraw_sink_buffer_alloc):
5124 Clear the flags on recycled buffers from buffer_alloc.
5125 Partially fixes #520885.
5127 2008-05-07 Ole André Vadla Ravnås <ole.andre.ravnas at tandberg com>
5129 * gst/rtp/gstrtpilbcpay.c:
5130 Added missing stdlib.h include for strtol(), and made include ordering and
5131 style consistent with the corresponding depayloader.
5133 2008-05-07 Tim-Philipp Müller <tim.muller at collabora co uk>
5136 Error out if we don't have the required core/base versions.
5138 2008-05-06 Sebastian Dröge <slomo@circular-chaos.org>
5140 Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5142 * sys/osxvideo/cocoawindow.m:
5143 Fix compiler warnings on PPC64. Fixes bug #499318.
5145 2008-05-05 Wim Taymans <wim.taymans@collabora.co.uk>
5147 Patch by: Sjoerd Simons <sjoerd at luon dot net>
5149 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
5150 Don't leak file descriptors on error. Fixes #531532.
5152 2008-05-03 Sebastian Dröge <slomo@circular-chaos.org>
5154 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
5155 (gst_gconf_audio_src_change_state):
5156 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
5157 (gst_gconf_video_sink_change_state):
5158 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
5159 (gst_gconf_video_src_change_state):
5160 * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
5161 (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
5162 When we can't create a fakesink/fakesrc complain instead of unreffing
5163 NULL pointers and crashing later. See bug #530535.
5165 2008-05-02 Wim Taymans <wim.taymans@collabora.co.uk>
5167 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5168 Add some more debug info and guard against small payloads.
5170 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
5171 Set duration on outgoing buffers because we can.
5173 2008-05-02 Wim Taymans <wim.taymans@collabora.co.uk>
5175 Patch by: Olivier Crete <tester at tester dot ca>
5177 * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
5178 (gst_speex_enc_init), (gst_speex_enc_chain):
5179 Add negotiation for the speex channels and rate. Fixes #465146.
5181 2008-05-02 Wim Taymans <wim.taymans@collabora.co.uk>
5183 Patch by: Olivier Crete <tester at tester dot ca>
5185 * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
5186 (gst_rtp_speex_pay_getcaps):
5187 Add negotiation for the speex channels and rate. See #465146.
5189 2008-05-02 Wim Taymans <wim.taymans@collabora.co.uk>
5191 Patch by: Olivier Crete <tester at tester dot ca>
5193 * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
5194 (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
5195 Add negotiation for the ILBC mode. See #465146.
5197 2008-05-02 Stefan Kost <ensonic@users.sf.net>
5199 * ext/soup/gstsouphttpsrc.c:
5200 Include stdlib to fix the build. Use g_free instead of free, libsoup
5203 2008-05-02 Wim Taymans <wim.taymans@collabora.co.uk>
5205 Patch by: j^ <j@bootlab.org>
5207 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5208 Add more mpeg2 variants. Fixes #530886.
5210 2008-05-01 Tim-Philipp Müller <tim.muller at collabora co uk>
5212 Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
5214 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5215 Don't error out if we get an ICMP destination-unreachable
5216 message when trying to read packets on win32 (#529454).
5218 2008-04-30 Tim-Philipp Müller <tim.muller at collabora co uk>
5221 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
5222 Use new error code for encrypted streams (which requires core CVS).
5224 2008-04-30 Tim-Philipp Müller <tim.muller at collabora co uk>
5226 * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
5227 (gst_qtdemux_audiosrc_template):
5228 Fix swapped pad template names, spotted by Thiago Sousa Santos.
5230 2008-04-30 Wim Taymans <wim.taymans@collabora.co.uk>
5232 * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
5233 (speex_dec_chain_parse_data):
5234 Produce concealment data when time progresses in a segment update.
5236 2008-04-29 Wim Taymans <wim.taymans@collabora.co.uk>
5238 * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
5240 Try to preserve input timestamps when we can.
5241 Do beginnings of error concealment.
5243 2008-04-28 Michael Smith <msmith@songbirdnest.com>
5245 * gst/debug/gstnavigationtest.c:
5246 MSVC doesn't provide rint(), define an adequate replacement locally as
5249 2008-04-28 Julien Moutte <julien@fluendo.com>
5251 * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
5252 format to pacify Mac OSX's gcc.
5254 2008-04-25 Tim-Philipp Müller <tim at centricular dot net>
5256 * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
5257 (DEFAULT_MAX), (src_template), (sink_template),
5258 (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
5259 (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
5260 (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
5261 Bring rndbuffersize element into a state that doesn't require us
5262 to move it to -bad immediately. For one, fix up default min/max
5263 values so that the element actuall works using the default values.
5264 Also, don't ignore flow return values and do some kind of minimal
5265 eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
5266 other gratuitious clean-ups.
5268 2008-04-25 Tim-Philipp Müller <tim at centricular dot net>
5270 * docs/plugins/Makefile.am:
5271 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5272 * docs/plugins/gst-plugins-good-plugins-sections.txt:
5273 * docs/plugins/gst-plugins-good-plugins.args:
5274 * docs/plugins/gst-plugins-good-plugins.hierarchy:
5275 * docs/plugins/gst-plugins-good-plugins.interfaces:
5276 * docs/plugins/gst-plugins-good-plugins.prerequisites:
5277 * docs/plugins/inspect/plugin-1394.xml:
5278 * docs/plugins/inspect/plugin-aasink.xml:
5279 * docs/plugins/inspect/plugin-alaw.xml:
5280 * docs/plugins/inspect/plugin-alpha.xml:
5281 * docs/plugins/inspect/plugin-alphacolor.xml:
5282 * docs/plugins/inspect/plugin-annodex.xml:
5283 * docs/plugins/inspect/plugin-apetag.xml:
5284 * docs/plugins/inspect/plugin-audiofx.xml:
5285 * docs/plugins/inspect/plugin-auparse.xml:
5286 * docs/plugins/inspect/plugin-autodetect.xml:
5287 * docs/plugins/inspect/plugin-avi.xml:
5288 * docs/plugins/inspect/plugin-cacasink.xml:
5289 * docs/plugins/inspect/plugin-cairo.xml:
5290 * docs/plugins/inspect/plugin-cdio.xml:
5291 * docs/plugins/inspect/plugin-cutter.xml:
5292 * docs/plugins/inspect/plugin-debug.xml:
5293 * docs/plugins/inspect/plugin-dv.xml:
5294 * docs/plugins/inspect/plugin-efence.xml:
5295 * docs/plugins/inspect/plugin-effectv.xml:
5296 * docs/plugins/inspect/plugin-equalizer.xml:
5297 * docs/plugins/inspect/plugin-esdsink.xml:
5298 * docs/plugins/inspect/plugin-flac.xml:
5299 * docs/plugins/inspect/plugin-flxdec.xml:
5300 * docs/plugins/inspect/plugin-gamma.xml:
5301 * docs/plugins/inspect/plugin-gconfelements.xml:
5302 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
5303 * docs/plugins/inspect/plugin-goom.xml:
5304 * docs/plugins/inspect/plugin-halelements.xml:
5305 * docs/plugins/inspect/plugin-icydemux.xml:
5306 * docs/plugins/inspect/plugin-id3demux.xml:
5307 * docs/plugins/inspect/plugin-jpeg.xml:
5308 * docs/plugins/inspect/plugin-level.xml:
5309 * docs/plugins/inspect/plugin-matroska.xml:
5310 * docs/plugins/inspect/plugin-monoscope.xml:
5311 * docs/plugins/inspect/plugin-mulaw.xml:
5312 * docs/plugins/inspect/plugin-multifile.xml:
5313 * docs/plugins/inspect/plugin-multipart.xml:
5314 * docs/plugins/inspect/plugin-navigationtest.xml:
5315 * docs/plugins/inspect/plugin-ossaudio.xml:
5316 * docs/plugins/inspect/plugin-png.xml:
5317 * docs/plugins/inspect/plugin-quicktime.xml:
5318 * docs/plugins/inspect/plugin-rtp.xml:
5319 * docs/plugins/inspect/plugin-rtsp.xml:
5320 * docs/plugins/inspect/plugin-shout2send.xml:
5321 * docs/plugins/inspect/plugin-smpte.xml:
5322 * docs/plugins/inspect/plugin-spectrum.xml:
5323 * docs/plugins/inspect/plugin-speex.xml:
5324 * docs/plugins/inspect/plugin-taglib.xml:
5325 * docs/plugins/inspect/plugin-udp.xml:
5326 * docs/plugins/inspect/plugin-video4linux2.xml:
5327 * docs/plugins/inspect/plugin-videobalance.xml:
5328 * docs/plugins/inspect/plugin-videobox.xml:
5329 * docs/plugins/inspect/plugin-videocrop.xml:
5330 * docs/plugins/inspect/plugin-videoflip.xml:
5331 * docs/plugins/inspect/plugin-videomixer.xml:
5332 * docs/plugins/inspect/plugin-wavenc.xml:
5333 * docs/plugins/inspect/plugin-wavpack.xml:
5334 * docs/plugins/inspect/plugin-wavparse.xml:
5335 * docs/plugins/inspect/plugin-ximagesrc.xml:
5336 Add docs for gdkpixbufsink; update docs to CVS version.
5338 2008-04-25 Wim Taymans <wim.taymans@collabora.co.uk>
5340 * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5341 Remove test sync-offset by default.
5343 2008-04-25 Tim-Philipp Müller <tim at centricular dot net>
5345 * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
5346 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
5347 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5348 Use GLib versions of htonl, htons, ntohl and ntohs in order
5349 to avoid problems on win32 (#529707).
5351 2008-04-25 Tim-Philipp Müller <tim at centricular dot net>
5353 Patch by: Jesús Corrius <jesus at softcatala org>
5355 * gst/goom/filters.c: (zoomVector):
5356 * gst/goom/goom_core.c: (init_buffers):
5357 Fix build with mingw32: use rand() instead of random() and
5358 replace bzero() with memset(). Fixes #529692.
5360 2008-04-25 Wim Taymans <wim.taymans@collabora.co.uk>
5362 * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
5363 Fix typo in comments.
5365 * tests/examples/rtp/client-H263p-PCMA.sdp:
5366 * tests/examples/rtp/client-H263p-PCMA.sh:
5367 * tests/examples/rtp/client-H264-PCMA.sdp:
5368 * tests/examples/rtp/client-H264-PCMA.sh:
5369 * tests/examples/rtp/client-H264.sdp:
5370 * tests/examples/rtp/client-H264.sh:
5371 * tests/examples/rtp/client-PCMA.sdp:
5372 * tests/examples/rtp/client-PCMA.sh:
5373 * tests/examples/rtp/server-alsasrc-PCMA.sh:
5374 * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5375 * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5376 Add some more docs and fix examples.
5378 2008-04-25 Sebastian Dröge <slomo@circular-chaos.org>
5380 * tests/check/elements/multifile.c:
5381 Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
5382 declared in the former, some have it declared in the latter.
5384 2008-04-24 Sebastian Dröge <slomo@circular-chaos.org>
5386 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
5387 * gst/debug/tests.c: (md5_get_value):
5388 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
5389 * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
5390 * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
5391 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
5392 Stop using deprecated GLib functions.
5394 2008-04-24 Jan Schmidt <jan.schmidt@sun.com>
5397 Back to development -> 0.10.8.1
5399 === release 0.10.8 ===
5401 2008-04-23 Jan Schmidt <jan.schmidt@sun.com>
5404 releasing 0.10.8, "One For The Money"
5406 2008-04-22 Jan Schmidt <jan.schmidt@sun.com>
5409 0.10.7.4 pre-release
5411 2008-04-22 Jan Schmidt <jan.schmidt@sun.com>
5413 * gst/goom/config_param.c: (goom_plugin_parameters_free):
5414 * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
5415 * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
5416 * gst/goom/flying_stars_fx.c: (fs_free):
5417 * gst/goom/goom_config_param.h:
5418 * gst/goom/goom_core.c: (goom_init), (goom_close):
5419 * gst/goom/goom_plugin_info.h:
5420 * gst/goom/gstgoom.c: (gst_goom_finalize):
5421 * gst/goom/lines.c: (goom_lines_free):
5422 * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
5423 * gst/goom/surf3d.c: (grid3d_free):
5424 * gst/goom/surf3d.h:
5425 * gst/goom/tentacle3d.c: (tentacle_free):
5426 Free a bunch of stuff, and initialise things to fix leaks
5427 and valgrind warnings in the testsuite.
5431 2008-04-21 Wim Taymans <wim.taymans@collabora.co.uk>
5433 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
5434 (gst_rtspsrc_configure_caps):
5435 Ref caps as the return value for the request_pt_map signal.
5436 Remove some caps weirdness when configuring a stream. See #528245.
5438 2008-04-18 Tim-Philipp Müller <tim at centricular dot net>
5440 * tests/icles/gdkpixbufsink-test.c:
5441 Add cast to placate gcc 4.1.2.
5443 2008-04-16 Jan Schmidt <jan.schmidt@sun.com>
5446 0.10.7.3 pre-release
5448 2008-04-16 Jan Schmidt <jan.schmidt@sun.com>
5450 * tests/check/Makefile.am:
5451 Disable some more elements in the state test.
5452 Add a define so the soup test can find the test files
5453 it needs at runtime.
5455 * tests/check/elements/souphttpsrc.c: (run_server):
5457 Add a define so the soup test can find the test files
5458 it needs at runtime.
5460 2008-04-17 Jan Schmidt <Jan.Schmidt@sun.com>
5462 * gst/goom/convolve_fx.c: (convolve_apply):
5463 Don't ever draw the GOOM logo.
5466 2008-04-17 Edward Hervey <edward.hervey@collabora.co.uk>
5468 * ext/cdio/gstcdiocddasrc.c:
5469 * ext/dv/gstdvdemux.c:
5470 gst_atomic_int_set ==> g_atomic_int_set
5472 2008-04-16 Tim-Philipp Müller <tim at centricular dot net>
5475 * gst/goom/Makefile.am:
5476 * gst/goom/convolve_fx.c:
5477 * gst/goom/default_scripts.h:
5479 * gst/goom/goom_core.c: (choose_a_goom_line):
5480 * gst/goom/goom_plugin_info.h:
5481 * gst/goom/goomsl.c:
5482 * gst/goom/goomsl.h:
5483 * gst/goom/goomsl_hash.c:
5484 * gst/goom/goomsl_hash.h:
5485 * gst/goom/goomsl_heap.c:
5486 * gst/goom/goomsl_heap.h:
5487 * gst/goom/goomsl_private.h:
5488 * gst/goom/plugin_info.c:
5489 Strip out the config/script parsing stuff, we don't need it.
5492 2008-04-15 Tim-Philipp Müller <tim at centricular dot net>
5494 * gst/goom/plugin_info.c: (setOptimizedMethods):
5495 Disable altivec optimisations for 32-bit PPC as well to make
5496 things build properly on all PPC systems. Fixes #528143
5498 2008-04-14 Tim-Philipp Müller <tim at centricular dot net>
5500 * gst-plugins-good.spec.in:
5501 Update for souphttpsrc plugin which has moved to -good.
5503 2008-04-14 Jan Schmidt <Jan.Schmidt@sun.com>
5505 * gst/matroska/matroska-demux.c:
5506 (gst_matroska_demux_handle_seek_event):
5507 Fix open-ended seeks in matroskademux
5508 Patch by: Mark Nauwelaerts <manauw skynet be>
5511 2008-04-14 Jan Schmidt <jan.schmidt@sun.com>
5513 * tests/check/Makefile.am:
5514 Add soup test certificates to the dist.
5516 2008-04-13 Jan Schmidt <jan.schmidt@sun.com>
5519 Remove LADSPA reference I missed.
5521 2008-04-13 Sebastian Dröge <slomo@circular-chaos.org>
5523 * ext/soup/gstsouphttpsrc.c: (plugin_init):
5524 Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
5525 over gnome-vfs and everything else. Fixes bug #527848.
5527 2008-04-13 Jan Schmidt <jan.schmidt@sun.com>
5531 Remove LADSPA plugin. Fixes: #515978
5533 2008-04-13 Jan Schmidt <jan.schmidt@sun.com>
5536 * docs/plugins/Makefile.am:
5537 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5538 * docs/plugins/gst-plugins-good-plugins-sections.txt:
5539 * docs/plugins/gst-plugins-good-plugins.args:
5540 * docs/plugins/inspect/plugin-soup.xml:
5542 * tests/check/Makefile.am:
5543 Move soup plugin from -bad (Fixes: #523124)
5545 2008-04-11 Jan Schmidt <Jan.Schmidt@sun.com>
5547 * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
5548 Fix bounds checking of mode in Speex header, which may
5549 produce negative numbers in speex <= 1.1.12
5551 2008-04-09 Tim-Philipp Müller <tim at centricular dot net>
5553 * gst/goom/Makefile.am:
5554 * gst/goom/gfontlib.c:
5555 * gst/goom/gfontlib.h:
5556 * gst/goom/gfontrle.c:
5557 * gst/goom/gfontrle.h:
5559 * gst/goom/goom_core.c: (goom_update):
5560 * gst/goom/goom_plugin_info.h:
5561 * gst/goom/gstgoom.c: (gst_goom_chain):
5562 * gst/goom/plugin_info.c:
5563 Remove a bunch of font/text related code that we don't need.
5565 2008-04-09 Tim-Philipp Müller <tim at centricular dot net>
5567 * gst/goom/ppc_drawings.s:
5568 * gst/goom/ppc_zoom_ultimate.s:
5569 Change license of these files to LGPL, as permitted by the
5570 author, Guillaume Borios. See #515073.
5572 2008-04-09 Stefan Kost <ensonic@users.sf.net>
5574 * gst/goom/convolve_fx.c:
5575 * gst/goom/motif_goom1.h:
5576 * gst/goom/motif_goom2.h:
5577 As hinted in Bug #518213, revert one change and fix warnings properly.
5578 This fixes both #518213 and #520073 for me.
5580 2008-04-09 Jan Schmidt <Jan.Schmidt@sun.com>
5582 * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
5583 * gst/matroska/matroska-demux.c:
5584 (gst_matroska_demux_handle_seek_event),
5585 (gst_matroska_demux_parse_contents_seekentry),
5586 (gst_matroska_demux_loop):
5587 Fix the Forte build by making function declaration signatures
5588 match the implementations.
5590 2008-04-08 Tim-Philipp Müller <tim at centricular dot net>
5592 * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
5593 * sys/oss/gstosssink.c: (gst_oss_sink_reset):
5594 * sys/oss/gstosssrc.c: (gst_oss_src_reset):
5595 More logging when probing (see #518474), some comments in _reset().
5597 2008-04-07 Julien Moutte <julien@fluendo.com>
5599 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
5600 because of a bad argument number.
5602 2008-04-06 Tim-Philipp Müller <tim at centricular dot net>
5604 * tests/icles/.cvsignore:
5605 * tests/icles/Makefile.am:
5606 * tests/icles/gdkpixbufsink-test.c:
5607 Interactive test app for gdkpixbufsink.
5609 2008-04-06 Sebastian Dröge <slomo@circular-chaos.org>
5611 Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
5614 Actually build dlls when cross-compiling with mingw32.
5617 2008-04-05 Tim-Philipp Müller <tim at centricular dot net>
5619 * ext/hal/hal.c: (gst_hal_get_alsa_element):
5620 Don't munge device string to 'default:x' for capture devices.
5623 2008-04-04 Sebastian Dröge <slomo@circular-chaos.org>
5625 * ext/wavpack/gstwavpackparse.c:
5626 (gst_wavpack_parse_index_entry_free):
5627 Always use GSlice as we actually depend on GLib 2.12 already.
5629 2008-04-04 Tim-Philipp Müller <tim at centricular dot net>
5632 Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
5633 Also bump the GLib requirement to the current de-facto requirement
5636 2008-04-04 Wim Taymans <wim.taymans@collabora.co.uk>
5638 * gst/rtp/gstrtph264pay.c: (encode_base64),
5639 (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
5640 * gst/rtp/gstrtph264pay.h:
5641 Parse codec_data for future AVC compatibility.
5642 Fail when we encounter AVC data for now.
5644 2008-04-04 Tim-Philipp Müller <tim at centricular dot net>
5646 * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
5647 (gst_spectrum_init), (gst_spectrum_set_property),
5648 (gst_spectrum_get_property), (gst_spectrum_message_new):
5649 Rename property enums and default defines for the properties to match
5650 the property names and rephrase property descriptions to make them a
5651 bit clearer (hopefully). See #518188.
5653 2008-04-03 Tim-Philipp Müller <tim at centricular dot net>
5655 * tests/check/Makefile.am:
5656 * tests/check/elements/.cvsignore:
5657 * tests/check/elements/gdkpixbufsink.c:
5658 Add unit test for gdkpixbufsink element.
5660 2008-04-03 Tim-Philipp Müller <tim at centricular dot net>
5662 * ext/gdk_pixbuf/Makefile.am:
5663 * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
5664 * ext/gdk_pixbuf/gstgdkpixbufsink.c:
5665 (gst_gdk_pixbuf_sink_base_init),
5666 (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
5667 (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
5668 (gst_gdk_pixbuf_sink_set_caps),
5669 (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
5670 (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
5671 (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
5672 (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
5673 (gst_gdk_pixbuf_sink_get_property):
5674 * ext/gdk_pixbuf/gstgdkpixbufsink.h:
5675 Add gdkpixbufsink element for easy snapshotting (#525946).
5677 2008-04-03 Sebastian Dröge <slomo@circular-chaos.org>
5679 * tests/check/pipelines/wavpack.c: (wavpack_suite):
5680 Bump timeout from 3 to 60 seconds.
5682 2008-04-03 Sebastian Dröge <slomo@circular-chaos.org>
5684 * tests/check/pipelines/.cvignore:
5685 Remove useless file.
5687 * tests/check/pipelines/.cvsignore:
5688 Add new test to .cvsignore.
5690 2008-04-03 Sebastian Dröge <slomo@circular-chaos.org>
5692 * tests/check/Makefile.am:
5693 * tests/check/pipelines/wavpack.c: (bus_handler),
5694 (identity_handoff), (fakesink_handoff), (GST_START_TEST),
5695 (wavpack_suite), (main):
5696 Add unit test that encodes and decodes some data, checks that it
5697 is still the same and that all timestamps/offsets are perfect.
5699 2008-04-03 Sebastian Dröge <slomo@circular-chaos.org>
5701 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
5702 * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
5703 * ext/wavpack/gstwavpackparse.c:
5704 (gst_wavpack_parse_index_entry_new),
5705 (gst_wavpack_parse_index_entry_free),
5706 (gst_wavpack_parse_base_init),
5707 (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
5708 Use GSlice for allocating index entries and use
5709 gst_element_class_set_details_simple().
5711 2008-04-02 Tim-Philipp Müller <tim at centricular dot net>
5713 Patch by: Brian Cameron <brian.cameron at sun dot com>
5715 * sys/sunaudio/gstsunaudio.c:
5716 * sys/sunaudio/gstsunaudiomixer.c:
5717 * sys/sunaudio/gstsunaudiomixer.h:
5718 * sys/sunaudio/gstsunaudiomixerctrl.c:
5719 * sys/sunaudio/gstsunaudiomixerctrl.h:
5720 * sys/sunaudio/gstsunaudiomixertrack.c:
5721 * sys/sunaudio/gstsunaudiomixertrack.h:
5722 * sys/sunaudio/gstsunaudiosink.c:
5723 * sys/sunaudio/gstsunaudiosink.h:
5724 * sys/sunaudio/gstsunaudiosrc.c:
5725 * sys/sunaudio/gstsunaudiosrc.h:
5726 Fix up copyrights (#525860).
5728 2008-04-02 Tim-Philipp Müller <tim at centricular dot net>
5730 * gst/goom/goomsl.c: (gsl_read_file):
5731 Check return value of fread() to avoid compiler warnings.
5733 2008-04-01 Wim Taymans <wim.taymans@collabora.co.uk>
5735 Based on patch by: Mersad Jelacic <mersad at axis dot com>
5737 * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
5738 (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
5739 * gst/law/alaw-decode.h:
5740 * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
5741 * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5742 (gst_mulawdec_chain), (gst_mulawdec_change_state):
5743 * gst/law/mulaw-decode.h:
5744 * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
5745 Make negotiation a bit modern.
5746 Use pad_alloc. Fixes #525359.
5748 2008-03-31 David Schleef <ds@schleef.org>
5750 * gst/goom/xmmx.c: Fix constraints on asm code so that it
5751 compiles consistently. Fixes #522278.
5753 2008-03-27 Tim-Philipp Müller <tim at centricular dot net>
5755 Patch by: Brian Cameron <brian.cameron at sun dot com>
5757 * sys/sunaudio/gstsunaudiomixerctrl.c:
5758 (gst_sunaudiomixer_ctrl_get_volume),
5759 (gst_sunaudiomixer_ctrl_set_volume):
5760 * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
5761 Fix up the mixer tracks to use a volume range of 0-255, which is what
5762 the sun audio API uses. This simplifies the code and avoids rounding
5763 errors. Fixes #524593.
5765 2008-03-26 Edgard Lima <edgard.lima@indt.org.br>
5767 * sys/v4l2/gstv4l2object.c:
5768 * sys/v4l2/gstv4l2object.h:
5769 Add device-fd property to make it possible to apps to call ioctl's.
5771 2008-03-25 Wim Taymans <wim.taymans@collabora.co.uk>
5773 * gst/qtdemux/qtdemux.c: (next_entry_size):
5774 Unbreak streaming mode again.
5776 2008-03-25 Tim-Philipp Müller <tim at centricular dot net>
5778 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
5779 Remove superfluous DEBUG macro.
5781 2008-03-25 Tim-Philipp Müller <tim at centricular dot net>
5783 Based on patch by: William M. Brack <wbrack at mmm com hk>
5785 * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
5786 (gst_v4l2src_set_capture):
5787 Check whether the device supports setting the framerate before
5788 trying to set it and then posting a warning or error if it doesn't
5789 work (#516649, #520092). Also compare fractions more correctly.
5791 2008-03-23 Tim-Philipp Müller <tim at centricular dot net>
5793 * gst/goom/Makefile.am:
5794 Remove ppc assembler optimisations from the build until they
5795 actually build (they also seem to have GPL headers).
5797 2008-03-23 Tim-Philipp Müller <tim at centricular dot net>
5800 Better not dist files that don't exist any longer (lrint*m4).
5802 2008-03-21 Sebastian Dröge <slomo@circular-chaos.org>
5807 Remove lrint/lrintf checks. We don't use it anywhere.
5809 2008-03-18 Andy Wingo <wingo@pobox.com>
5811 * sys/osxvideo/osxvideosink.m
5812 (gst_osx_video_sink_osxwindow_destroy)
5813 (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5815 (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5818 2008-03-18 Andy Wingo <wingo@pobox.com>
5820 * sys/osxvideo/osxvideosink.m
5821 (gst_osx_video_sink_osxwindow_destroy)
5822 (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
5824 (cocoa_event_loop): Pacify the taymans by upping the usleepage to
5827 2008-03-17 Tim-Philipp Müller <tim at centricular dot net>
5829 Patch by: William M. Brack <wbrack at mmm com hk>
5831 * sys/v4l2/v4l2src_calls.c:
5832 (gst_v4l2src_probe_caps_for_format_and_size),
5833 (gst_v4l2src_probe_caps_for_format):
5834 Make sure the probed frame sizes are reversed in the resulting
5835 caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
5836 highest resolution first); also remove unused variable.
5837 (Partly fixes #520092)
5839 2008-03-17 Wim Taymans <wim.taymans@collabora.co.uk>
5841 Patch by: Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
5843 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5844 (gst_rtspsrc_finalize):
5845 Call WSAStartup() and WSACleanup before using the Winsock API.
5848 2008-03-16 Stefan Kost <ensonic@users.sf.net>
5850 * gst/avi/gstavidemux.c:
5851 Erm, the buffer-size is just guint, no need for the special format
5854 2008-03-16 Tim-Philipp Müller <tim at centricular dot net>
5856 * gst/goom/plugin_info.c:
5857 * gst/goom/ppc_zoom_ultimate.h:
5858 Small fixes to build more on PPC: ifdef out code that uses unknown
5859 define; add newline at end of header file to avoid compiler warning.
5860 Assembler code still doesn't build though.
5862 2008-03-16 Stefan Kost <ensonic@users.sf.net>
5864 * gst/avi/gstavidemux.c:
5865 Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
5866 Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
5868 2008-03-16 Stefan Kost <ensonic@users.sf.net>
5870 * gst/avi/gstavidemux.c:
5871 Chunksize is uint32. Fix format specifier.
5873 2008-03-14 Christian Schaller <christian.schaller@collabora.co.uk>
5875 * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
5876 mistake. Return file to pure MIT text.
5878 2008-03-13 Sebastian Dröge <slomo@circular-chaos.org>
5880 * gst/audiofx/audiofx.c:
5881 Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5882 of hardcoding values.
5884 2008-03-11 Tim-Philipp Müller <tim at centricular dot net>
5886 Patch by: Mark Nauwelaerts <manauw skynet be>
5888 * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
5889 (gst_oss_src_close):
5890 * sys/oss/gstosssrc.h:
5891 Cache probed caps, so _get_caps() during recording doesn't cause
5892 ioctl calls which may disrupt the recording (fixes #521875).
5894 2008-03-11 Wim Taymans <wim.taymans@collabora.co.uk>
5896 * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
5897 (gst_qtdemux_activate_segment),
5898 (gst_qtdemux_prepare_current_sample),
5899 (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
5900 Make sure we always send a DISCONT after a seek by setting the sample
5901 index to an undefined value after a seek.
5903 2008-03-11 Tim-Philipp Müller <tim at centricular dot net>
5905 * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
5906 (GST_IS_AVI_SUBTITLE_CLASS):
5907 Fix up IS_FOO macros, which makes gtk-doc much happier.
5909 2008-03-08 Tim-Philipp Müller <tim at centricular dot net>
5911 * tests/icles/Makefile.am:
5912 Move the -lgstfoo where it belongs.
5914 2008-03-08 Sebastian Dröge <slomo@circular-chaos.org>
5916 * gst/matroska/ebml-ids.h:
5917 Add ID for EBML CRC32 elements.
5919 * gst/matroska/Makefile.am:
5920 * gst/matroska/ebml-read.c: (gst_ebml_finalize),
5921 (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
5922 (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
5923 (gst_ebml_read_header):
5924 Support reading 80bit floats, add finalize method to clean up
5925 in any case, support reading length/id elements with any length
5926 as long as it's smaller than our supported maximum, don't leak
5927 buffers if reading as much data as we wanted failed and some
5930 2008-03-08 Sebastian Dröge <slomo@circular-chaos.org>
5932 Patch by: Olivier Crete <tester at tester dot ca>
5934 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
5935 Check that a buffer is large enough before reading from it.
5938 2008-03-07 Wim Taymans <wim.taymans@collabora.co.uk>
5940 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5941 Fix compilation after removing the GstPollMode from the
5944 2008-03-07 Sebastian Dröge <slomo@circular-chaos.org>
5947 * gst/audiofx/Makefile.am:
5948 * gst/audiofx/audiochebband.c:
5949 * gst/audiofx/audiocheblimit.c:
5950 * gst/audiofx/math_compat.h:
5951 Check for sinh(), cosh() and asinh() and define our own
5952 implementations if they're not available. Fixes bug #520880.
5954 2008-03-07 Sebastian Dröge <slomo@circular-chaos.org>
5956 Patch by: Olivier Crete <tester at tester dot ca>
5958 * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
5959 Unref the buffers only once when handling not-negotiated errors.
5962 2008-03-07 Wim Taymans <wim.taymans@collabora.co.uk>
5964 Patch by: Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
5966 * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
5968 Properly balance WSA_Cleanup with WSA_Startup.
5969 Also make the poll controllable on windows. Fixes #520888.
5971 2008-03-06 Wim Taymans <wim.taymans@collabora.co.uk>
5973 * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
5974 (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
5975 (gst_ebml_read_element_length), (gst_ebml_peek_id),
5976 (gst_ebml_read_skip), (gst_ebml_read_buffer),
5977 (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
5978 (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
5979 (gst_ebml_read_date), (gst_ebml_read_master),
5980 (gst_ebml_read_binary), (gst_ebml_read_header):
5981 * gst/matroska/ebml-read.h:
5982 * gst/matroska/matroska-demux.c:
5983 (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
5984 (gst_matroska_demux_read_track_encodings),
5985 (gst_matroska_demux_add_stream),
5986 (gst_matroska_demux_handle_src_query),
5987 (gst_matroska_demux_handle_seek_event),
5988 (gst_matroska_demux_init_stream),
5989 (gst_matroska_demux_parse_tracks),
5990 (gst_matroska_demux_parse_index_cuetrack),
5991 (gst_matroska_demux_parse_index_pointentry),
5992 (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
5993 (gst_matroska_demux_parse_metadata_id_simple_tag),
5994 (gst_matroska_demux_parse_metadata_id_tag),
5995 (gst_matroska_demux_parse_metadata),
5996 (gst_matroska_demux_sync_streams),
5997 (gst_matroska_demux_push_hdr_buf),
5998 (gst_matroska_demux_push_flac_codec_priv_data),
5999 (gst_matroska_demux_push_xiph_codec_priv_data),
6000 (gst_matroska_demux_add_wvpk_header),
6001 (gst_matroska_demux_check_subtitle_buffer),
6002 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
6003 (gst_matroska_demux_parse_cluster),
6004 (gst_matroska_demux_parse_contents_seekentry),
6005 (gst_matroska_demux_parse_contents),
6006 (gst_matroska_demux_loop_stream_parse_id),
6007 (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
6008 * gst/matroska/matroska-demux.h:
6009 * gst/matroska/matroska-ids.h:
6010 Handle return values from pull_range in a more granular way to properly
6012 Combine return values from push.
6013 Implement proper error handling.
6014 Prepare for handling seeking correctly.
6016 2008-03-03 Jan Schmidt <jan.schmidt@sun.com>
6018 * gst/matroska/ebml-read.c:
6019 Use GINT64 formatting constants from GLIB.
6021 * gst/matroska/matroska-demux.c:
6022 Add some guards to avoid a possible division by 0 and crashing
6023 with NULL events on some systems.
6024 Use gst_gdouble_to_guint64 somewhere instead of an implicit
6027 * gst/matroska/matroska-mux.c:
6028 Check for invalid timestamps in a bunch of places to avoid
6029 writing bogus durations into the output file.
6030 Fix some double<->gint64 conversions that weren't using
6031 gst_guint64_to_gdouble
6033 2008-03-03 Peter Kjellerstedt <pkj@axis.com>
6036 Move the checks for bison, flex and as to the program section and the
6037 check for gcc inline asm to the compiler characteristics section.
6039 2008-03-03 Peter Kjellerstedt <pkj@axis.com>
6042 Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
6043 plug-ins are included/excluded. (#498222)
6045 2008-02-29 Michael Smith <msmith@fluendo.com>
6047 * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
6048 Don't call gst_object_sync_values() unless we have a valid timestamp.
6050 2008-02-28 David Schleef <ds@schleef.org>
6052 * gst/matroska/matroska-demux.c:
6053 * gst/matroska/matroska-ids.h:
6054 * gst/matroska/matroska-mux.c:
6055 Fix Dirac mapping. I had previously added a VfW-type
6056 mapping, but it looks like Dirac will get a native Matroska
6057 mapping, and this is the most likely method.
6059 2008-02-28 David Schleef <ds@schleef.org>
6061 * gst/avi/gstavimux.c: Add Dirac encoding
6063 2008-02-28 Wim Taymans <wim.taymans@collabora.co.uk>
6065 Patch by: Peter Kjellerstedt <pkj at axis com>
6067 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
6068 (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
6069 (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
6070 * gst/udp/gstudpsrc.h:
6071 Port to GstPoll. See #505417.
6073 2008-02-28 Sebastian Dröge <slomo@circular-chaos.org>
6075 * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
6076 Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
6077 yet on the srcpad. We need rate and channels before we
6078 can do any processing. Fixes bug #519088.
6080 2008-02-26 Jan Schmidt <jan.schmidt@sun.com>
6083 Detect and indicate if GCC inline assembly syntax is
6086 * gst/goom/Makefile.am:
6087 * gst/goom/convolve_fx.c:
6088 * gst/goom/flying_stars_fx.c:
6089 * gst/goom/goom_config.h:
6090 * gst/goom/goom_core.c:
6091 * gst/goom/goomsl.c:
6094 * gst/goom/plugin_info.c:
6096 Fix various GCC-isms, and only build the inline assembly
6097 with compilers that support GCC inline assembly.
6099 Fix a couple of other warnings shown with Forte.
6101 2008-02-25 Stefan Kost <ensonic@users.sf.net>
6104 Use 'emms' instead of 'femms' to not crash on cpus that do not
6105 implement this 3dnow specific instruction.
6107 2008-02-25 Sebastian Dröge <slomo@circular-chaos.org>
6109 * gst/goom/plugin_info.c: (setOptimizedMethods):
6110 Use extended MMX for draw_line() too if available, not only
6113 2008-02-25 Sebastian Dröge <slomo@circular-chaos.org>
6115 * ext/jpeg/gstjpeg.c: (plugin_init):
6116 Remove (commented out) smoke typefinder. This is in base now.
6118 2008-02-23 Jan Schmidt <jan.schmidt@sun.com>
6120 * gst/goom2k1/Makefile.am:
6121 * gst/goom2k1/gstgoom.c:
6123 Rename the installed library, and don't register the same
6124 GType name as the new goom.
6126 2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
6129 * ext/taglib/Makefile.am:
6130 Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
6131 when building C++ code (#516509).
6133 2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
6135 * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
6136 * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
6137 (setOptimizedMethods):
6138 Call oil_init(), otherwise oil_get_cpu_flags() won't return
6139 anything useful. Export goom debug category so we can get
6140 rid of the VERBOSE define and the printfs.
6142 2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
6144 * gst/goom/goomsl_heap.c: (align_it):
6145 * gst/goom/plugin_info.c: (setOptimizedMethods):
6146 Compile fixes for x86-64.
6148 2008-02-23 Bastien Nocera <hadess@hadess.net>
6150 * gst/goom/Makefile.am: Don't compile lex or yacc outputs
6151 with warnings, but add other CFLAGS
6153 * gst/goom/goomsl.c (gsl_instr_set_namespace),
6154 (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
6155 (calculate_labels), (gsl_read_file):
6156 * gst/goom/goomsl_lex.l:
6157 * gst/goom/goomsl_yacc.y:
6158 * gst/goom/plugin_info.c: Remove a few live printf, and
6159 fprintf, replace exit() calls with g_assert_not_reached()
6160 if it not optimal for a library
6162 2008-02-23 Bastien Nocera <hadess@hadess.net>
6164 * gst/goom/Makefile.am: Remove the warnings being disabled,
6165 fix linkage on x86, spotted by Sebastian Dröge
6166 <slomo@circular-chaos.org>
6168 * gst/goom/convolve_fx.c (convolve_init),
6169 (create_output_with_brightness), (convolve_apply):
6170 * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
6171 * gst/goom/goomsl.c:
6172 * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
6173 * gst/goom/plugin_info.c:
6174 * gst/goom/tentacle3d.c (tentacle_fx_create):
6175 Fix warnings, and disable the motifs in the convolve_fx
6176 plugin (they were causing warnings, and they were just
6177 "Goom" in funny letterring)
6179 2008-02-23 Bastien Nocera <hadess@hadess.net>
6181 * configure.ac: Add checks for Flex/Yacc/Bison and other
6182 furry animals, for the new goom 2k4 based plugin
6184 * gst/goom/*: Update to use goom 2k4, uses liboil to detect
6185 CPU optimisations (not working yet), move the old plugin to...
6187 * gst/goom2k1/*: ... here, in case somebody is sick enough
6191 2008-02-22 Wim Taymans <wim.taymans@collabora.co.uk>
6193 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6194 Post the server response code in an error message instead of a generic
6195 'error' message. Fixes #517237.
6197 2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
6199 * tests/check/Makefile.am:
6200 Ignore gconfaudiosrc for the states unit test too. It will fallback
6201 to alsasrc if the gconf settings can't be read and not everybody has
6204 2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
6206 * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
6207 (gst_wavpack_parse_create_src_pad):
6208 * ext/wavpack/gstwavpackparse.h:
6209 Always report the duration if we know it in push mode and don't
6210 return 0 just to make totem believe we can't seek in push mode.
6211 Newer totem version use the SEEKING query which properly reports
6212 if we can seek or not.
6214 2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
6216 Patch by: Jens Granseuer <jensgr at gmx dot net>
6218 * tests/examples/equalizer/demo.c: (main):
6219 C89 fix, moving variable declarations to the beginning of
6220 the block. Fixes bug #517933.
6222 2008-02-21 Jan Schmidt <jan.schmidt@sun.com>
6225 Back to development...
6227 === release 0.10.7 ===
6229 2008-02-20 Jan Schmidt <jan.schmidt@sun.com>
6232 releasing 0.10.7, "Red Door Black"
6234 2008-02-19 Sebastian Dröge <slomo@circular-chaos.org>
6236 * gst/alpha/Makefile.am:
6237 Link alpha plugin with libgstbase. Fixes bug #517386.
6239 2008-02-18 Wim Taymans <wim.taymans@collabora.co.uk>
6241 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
6242 Init values to -1 instead of the default 0 value.
6245 2008-02-14 Stefan Kost <ensonic@users.sf.net>
6247 * tests/examples/spectrum/spectrum-example.c:
6248 Add missing include to fix compilation when libxml usage is disabled.
6251 2008-02-12 Jan Schmidt <jan.schmidt@sun.com>
6253 patch by: Wim Taymans <wim.taymans@collabora.co.uk>
6256 * gst/rtp/gstrtph264pay.c:
6257 * gst/rtp/gstrtpmp4gdepay.c:
6258 * gst/rtp/gstrtpmp4gpay.c:
6259 * gst/rtp/gstrtpmp4gpay.h:
6260 * gst/rtp/gstrtptheorapay.c:
6261 * gst/rtp/gstrtpvorbispay.c:
6263 Fix various leaks shown up in valgrind
6264 - free sprops and buffer in error cases in H264 payloader
6265 - fix leak in mp4g depayloader when construction the caps
6266 - don't leak config string in the mp4g payloader
6267 - don't leak buffers and headers in theora and vorbis payloaders
6269 * tests/check/elements/rtp-payloading.c:
6271 Fix the RTP data test
6272 - Actually send valid amr data to the payloader instead of 20
6274 - The mp4g payloader expects codec_data on the caps
6276 2008-02-12 Sebastien Moutte <sebastien@moutte.net>
6279 Add libgstpng.dsp to MANIFEST.
6280 * win32/vs6/libgstaudiofx.dsp:
6281 Add new source files to VS project file.
6283 2008-02-12 Jan Schmidt <jan.schmidt@sun.com>
6285 * sys/ximage/gstximagesrc.c:
6286 Initialise variables when opening the X display rather
6287 than in _start(), as the display can be opened before that.
6291 2008-02-12 Sebastian Dröge <slomo@circular-chaos.org>
6293 * sys/directdraw/gstdirectdrawsink.c:
6294 (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
6295 (gst_directdraw_sink_finalize):
6296 Properly chain up finalize functions. Fixes bug #515980.
6298 2008-02-12 Sebastian Dröge <slomo@circular-chaos.org>
6300 * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6301 (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
6302 (gst_v4l2_buffer_pool_class_init):
6303 Chain up the finalize functions. Fixes bug #515984.
6305 2008-02-12 Jan Schmidt <jan.schmidt@sun.com>
6307 * sys/ximage/ximageutil.c:
6308 Chain up in the finalize function for our custom
6310 Patch by: Sebastian Dröge <slomo@circular-chaos.org>
6313 2008-02-12 Sebastian Dröge <slomo@circular-chaos.org>
6315 * gst/debug/efence.c: (gst_fenced_buffer_finalize),
6316 (gst_fenced_buffer_class_init):
6317 Properly chain up finalize method. Fixes bug #515979.
6319 2008-02-12 Jan Schmidt <jan.schmidt@sun.com>
6321 * sys/ximage/gstximagesrc.c:
6322 Free allocated Damage memory before closing our connection to the
6323 X server. Partially fixes: #515706
6325 2008-02-12 Sebastian Dröge <slomo@circular-chaos.org>
6327 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
6328 * tests/check/Makefile.am:
6329 * tests/check/gst-plugins-good.supp:
6330 Add a few libjpeg suppressions and initialize a variable to
6331 make smokeenc valgrind clean. Fixes bug #515701.
6333 2008-02-11 Jan Schmidt <jan.schmidt@sun.com>
6335 * gst/avi/gstavidemux.c:
6336 Revert patch which sends timestamps only on keyframes, as it
6337 breaks playback with current gst-ffmpeg.
6341 2008-02-11 Sebastian Dröge <slomo@circular-chaos.org>
6343 * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6344 * tests/check/elements/multifile.c: (GST_START_TEST):
6345 Close some memory leaks spotted by the unit test. Fixes bug #515697.
6347 2008-02-11 Sebastian Dröge <slomo@circular-chaos.org>
6349 * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6350 Use and unset the GError when pipeline creation fails instead of
6351 simply leaking it. Fixes bug #515704.
6353 2008-02-10 Sebastian Dröge <slomo@circular-chaos.org>
6355 * gst/audiofx/audioamplify.c:
6356 * gst/audiofx/audiochebband.c:
6357 * gst/audiofx/audiocheblimit.c:
6358 * gst/audiofx/audiodynamic.c:
6359 * gst/audiofx/audioinvert.c:
6360 * gst/audiofx/audiopanorama.c:
6361 * gst/audiofx/audiowsincband.c:
6362 * gst/audiofx/audiowsinclimit.c:
6363 Fix long description of audiofx elements. Fixes bug #515457.
6365 2008-02-09 Jan Schmidt <jan.schmidt@sun.com>
6367 * docs/plugins/Makefile.am:
6368 * gst/spectrum/gstspectrum.c:
6369 * tests/examples/spectrum/.cvsignore:
6370 * tests/examples/spectrum/Makefile.am:
6371 * tests/examples/spectrum/spectrum-example.c:
6373 Add a simple example application for the spectrum element, include it
6374 in the docs, and fix some documentation ambiguities.
6378 2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
6380 * gst/equalizer/Makefile.am:
6381 * gst/spectrum/Makefile.am:
6384 * tests/check/Makefile.am:
6385 Exclude v4l2src from the states test - it takes too long to start.
6387 * tests/check/elements/spectrum.c:
6388 Make the test run properly with CK_FORK=no
6390 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
6392 * gst/audiofix/Makefile.am: add missing header files
6394 2008-02-08 Julien Moutte <julien@fluendo.com>
6396 * gst/matroska/matroska-demux.c:
6397 (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
6398 keyframe and delta units correctly when dealign with a BlockGroup.
6401 2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
6403 * tests/check/elements/.cvsignore:
6404 Spell the new tests correctly in .cvsignore
6406 2008-02-08 Tim-Philipp Müller <tim at centricular dot net>
6408 * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
6409 Need to use gsize here for the size, fixes compiler warning.
6411 * tests/examples/equalizer/.cvsignore:
6412 * tests/examples/equalizer/Makefile.am:
6413 * tests/examples/spectrum/.cvsignore:
6414 * tests/examples/spectrum/Makefile.am:
6415 Add missing files to fix the build.
6417 2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
6420 * docs/plugins/Makefile.am:
6421 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6422 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6423 * docs/plugins/gst-plugins-good-plugins.args:
6424 * docs/plugins/gst-plugins-good-plugins.hierarchy:
6425 * docs/plugins/inspect/plugin-multifile.xml:
6426 * tests/check/Makefile.am:
6427 * tests/check/elements/.cvsignore:
6429 Move multifile plugin from -bad.
6432 2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
6435 * docs/plugins/Makefile.am:
6436 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6437 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6438 * docs/plugins/gst-plugins-good-plugins.args:
6439 * docs/plugins/gst-plugins-good-plugins.hierarchy:
6440 * docs/plugins/inspect/plugin-spectrum.xml:
6441 * gst/spectrum/Makefile.am:
6442 * tests/check/Makefile.am:
6443 * tests/check/elements/.cvsignore:
6444 * tests/examples/Makefile.am:
6446 Move spectrum plugin from -bad.
6447 Move examples into tests/examples/spectrum.
6449 2008-02-08 Jan Schmidt <jan.schmidt@sun.com>
6452 * docs/plugins/Makefile.am:
6453 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6454 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6455 * docs/plugins/gst-plugins-good-plugins.args:
6456 * docs/plugins/gst-plugins-good-plugins.hierarchy:
6457 * docs/plugins/gst-plugins-good-plugins.interfaces:
6458 * docs/plugins/inspect/plugin-equalizer.xml:
6459 * gst/equalizer/Makefile.am:
6460 * tests/check/Makefile.am:
6461 * tests/examples/Makefile.am:
6462 Move the equalizer plugin across from -bad
6464 * tests/check/elements/.cvsignore:
6465 Add equalizer, audiosincwband and audiosincwlimit
6467 * tests/check/elements/equalizer.c:
6468 Fix compiler warnings
6472 2008-02-07 Jan Schmidt <jan.schmidt@sun.com>
6475 Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
6476 are treated like releases and build without it.
6478 2008-02-07 Jan Schmidt <jan.schmidt@sun.com>
6480 * docs/plugins/Makefile.am:
6481 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6482 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6483 * docs/plugins/gst-plugins-good-plugins.args:
6484 * docs/plugins/inspect/plugin-audiofx.xml:
6485 * gst/audiofx/Makefile.am:
6486 * gst/audiofx/audiofx.c:
6487 * gst/audiofx/audiowsincband.c:
6488 * gst/audiofx/audiowsincband.h:
6489 * gst/audiofx/audiowsinclimit.c:
6490 * gst/audiofx/audiowsinclimit.h:
6491 * tests/check/Makefile.am:
6492 * tests/check/elements/audiowsincband.c:
6493 * tests/check/elements/audiowsinclimit.c:
6495 Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
6496 the audiofx plugin, and rename to audiowsinclimit and audiowsincband
6501 2008-02-07 Tim-Philipp Müller <tim at centricular dot net>
6503 * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
6504 * tests/check/elements/icydemux.c:
6505 Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
6506 caps, and add a somewhat useful debug message. Plus test.
6508 2008-02-07 Sebastien Moutte <sebastien@moutte.net>
6510 * gst/rtsp/gstrtspsrc.c:
6511 Include unistd.h only if HAVE_UNISTD_H is defined
6512 * win32/common/config.h.in:
6513 * win32/common/config.h:
6514 Define socklen_t as it seems it's not defined in default
6515 Visual Studio headers.
6516 * win32/vs6/libgstalpha.dsp:
6517 * win32/vs6/libgstapetag.dsp:
6518 * win32/vs6/libgstavi.dsp:
6519 * win32/vs6/libgstrtp.dsp:
6520 * win32/vs6/libgstrtsp.dsp:
6521 * win32/vs6/libgstvideomixer.dsp:
6522 Update project file dependencies and add new source files
6524 2008-02-07 Sebastian Dröge <slomo@circular-chaos.org>
6526 Patch by: Bjarne Rosengren <bjarne at axis dot com>
6528 * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
6529 Don't leak buffers when we don't push them downstream.
6532 2008-02-07 Tim-Philipp Müller <tim at centricular dot net>
6535 Bump requirements to (good) released versions to avoid
6536 confusion and make implicit core requirement explicit.
6538 2008-02-06 Jan Schmidt <jan.schmidt@sun.com>
6540 * docs/plugins/Makefile.am:
6541 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6542 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6543 * docs/plugins/gst-plugins-good-plugins.args:
6544 * docs/plugins/inspect/plugin-audiofx.xml:
6545 * gst/audiofx/Makefile.am:
6546 * gst/audiofx/audiochebband.c:
6547 * gst/audiofx/audiochebband.h:
6548 * gst/audiofx/audiocheblimit.c:
6549 * gst/audiofx/audiocheblimit.h:
6550 * gst/audiofx/audiochebyshevfreqband.c:
6551 * gst/audiofx/audiochebyshevfreqband.h:
6552 * gst/audiofx/audiochebyshevfreqlimit.c:
6553 * gst/audiofx/audiochebyshevfreqlimit.h:
6554 * gst/audiofx/audiofx.c:
6555 * tests/check/Makefile.am:
6556 * tests/check/elements/.cvsignore:
6557 * tests/check/elements/audiochebband.c:
6558 * tests/check/elements/audiocheblimit.c:
6559 * tests/check/elements/audiochebyshevfreqband.c:
6560 * tests/check/elements/audiochebyshevfreqlimit.c:
6562 Rename audiochebyshevfreqband -> audiochebband and
6563 audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
6568 2008-02-05 Wim Taymans <wim.taymans@collabora.co.uk>
6570 Patch by: Orjan Friberg <orjanf at axis dot com>
6572 * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6573 Fix caps memory leak. Fixes #514573.
6575 2008-02-04 Edward Hervey <edward.hervey@collabora.co.uk>
6577 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
6578 If there's no entries in the subindex, don't try to do anything stupid,
6581 2008-02-02 Tim-Philipp Müller <tim at centricular dot net>
6583 Patch by: John Millikin <jmillikin at gmail dot com>
6585 * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
6586 (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
6587 Fix extraction of picture blocks with newer libflac versions again:
6588 FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
6590 2008-02-02 Tim-Philipp Müller <tim at centricular dot net>
6592 * tests/check/Makefile.am:
6593 Add rtp-payloading test to VALGRIND_TO_FIX.
6595 * tests/check/elements/rtp-payloading.c:
6596 Add semicolons after GST_TEST_END so gst-indent gets the
6597 formatting right; make test less verbose in general, but
6598 more verbose in the error case (which should probably
6599 make the test fail anyway).
6601 2008-02-01 Thijs Vermeir <thijsvermeir@gmail.com>
6603 * docs/plugins/Makefile.am:
6604 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6605 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6606 * gst/avi/gstavisubtitle.c:
6607 Add documentation for avisubtitle and change class to
6608 Codec/Parser/Subtitle
6610 2008-01-31 Jan Schmidt <Jan.Schmidt@sun.com>
6612 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
6613 Treat ENOTTY (driver does not implement ioctl) the same as
6614 EINVAL since it implies there are no available standards.
6616 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6617 (gst_v4l2src_get_nearest_size):
6618 Replace gst_v4l2src_get_size_limits with 2 calls to new function
6619 gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
6620 probe if the driver does not support VIDIOC_TRY_FMT for whatever
6621 reason, and if we aren't yet actively capturing.
6623 * sys/v4l2/v4l2src_calls.h:
6624 Remove replaced function declaration.
6626 2008-01-31 Jan Schmidt <Jan.Schmidt@sun.com>
6629 Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
6632 2008-01-31 Jan Schmidt <jan.schmidt@sun.com>
6637 2008-01-30 Jan Schmidt <jan.schmidt@sun.com>
6639 * gst/alpha/Makefile.am:
6640 * gst/alpha/gstalpha.c:
6642 Re-write the 'alpha' plugin to be BaseTransform based, simplifying
6643 some stuff, and making buffer-alloc and resizing work automatically.
6644 No longer crashes on odd frame widths and heights, although there
6645 seems to be a disagreement with ffmpegcolorspace about what size
6646 an AYUV frame with odd height should be.
6648 2008-01-29 Wim Taymans <wim.taymans@collabora.co.uk>
6650 Patch by: Alessandro Decina <alessandro at nnva dot org>
6652 * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
6653 * ext/libpng/gstpngenc.h:
6654 Preallocate the output buffer so that g_memdup() and
6655 gst_buffer_merge() aren't needed anymore. This greatly improves
6656 performances and fixes #512544.
6658 2008-01-29 Wim Taymans <wim.taymans@collabora.co.uk>
6660 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
6661 (gst_avi_demux_stream_data):
6662 GStreamer timestamps are PTS values while AVI only knows about DTS
6663 timestamps. Make sure we only copy the DTS as the buffer timestamp when
6664 we are dealing with a key frame.
6666 2008-01-29 Stefan Kost <ensonic@users.sf.net>
6668 * tests/check/Makefile.am:
6669 * tests/check/elements/.cvsignore:
6670 * tests/check/elements/rtp-payloading.c:
6671 Add add testsuite for the rtp-payloader that tries simulating
6672 dataflow. Needs more test data.
6674 2008-01-29 Stefan Kost <ensonic@users.sf.net>
6676 * tests/check/elements/alphacolor.c:
6677 Remove two unused variables.
6679 2008-01-28 Tim-Philipp Müller <tim at centricular dot net>
6681 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6682 Use g_ascii_strtoll() instead of atoll, which is only
6685 2008-01-25 Thijs Vermeir <thijsvermeir@gmail.com>
6687 * gst/rtp/Makefile.am:
6689 * gst/rtp/gstrtpmpvpay.c:
6690 * gst/rtp/gstrtpmpvpay.h:
6691 Add MPEG2 video payloader
6693 2008-01-23 Sebastian Dröge <slomo@circular-chaos.org>
6695 * gst/level/gstlevel.c:
6696 Use #include <math.h> instead of #include "math.h".
6698 2008-01-21 Jan Schmidt <Jan.Schmidt@sun.com>
6700 * tests/check/Makefile.am:
6701 Fix up some CFLAGS sets.
6702 Don't include gconfvideosrc in the states test.
6704 * tests/check/elements/autodetect.c: (GST_START_TEST):
6705 Add some error strings to fail_unless arguments to fix some weird
6706 compiler errors on Solaris.
6708 2008-01-21 Jan Schmidt <Jan.Schmidt@sun.com>
6711 Detect video4linux headers on Solaris too.
6712 * sys/v4l2/gstv4l2colorbalance.h:
6713 * sys/v4l2/gstv4l2object.h:
6714 * sys/v4l2/v4l2_calls.c:
6715 * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
6716 (gst_v4l2_buffer_new):
6718 Make v4l2 build on Solaris.
6719 Patch by: Brian Cameron <brian.cameron at sun dot com>
6722 2008-01-21 Stefan Kost <ensonic@users.sf.net>
6724 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6725 Update list from (still local) scanning script.
6727 2008-01-19 Sebastian Dröge <slomo@circular-chaos.org>
6729 Based on a patch by:
6730 Victor STINNER <victor dot stinner at haypocalc dot com>
6732 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
6733 Set variable to NULL after freeing it to prevent double frees
6734 or make failures by another use of it afterwards more obvious
6735 and fix use of it after the freeing. Fixes bug #510592.
6737 2008-01-18 Thijs Vermeir <thijsvermeir@gmail.com>
6739 * gst/udp/gstmultiudpsink.c:
6740 use GST_WARNING for logging
6742 2008-01-18 Thijs Vermeir <thijsvermeir@gmail.com>
6744 * gst/udp/gstmultiudpsink.c:
6745 Don't try to leave a multicast group with an invalid socket
6747 2008-01-17 Tim-Philipp Müller <tim at centricular dot net>
6749 * ext/flac/gstflacdec.c:
6750 Fix compilation against flac 1.1.2 (as on debian stable), where
6751 the picture metadata defines and structs don't exist yet.
6754 2008-01-17 Wim Taymans <wim.taymans@collabora.co.uk>
6756 Patch by: Olivier Crete <tester at tester dot ca>
6758 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
6759 (gst_multiudpsink_init), (gst_multiudpsink_set_property),
6760 (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
6761 (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
6762 * gst/udp/gstmultiudpsink.h:
6763 Add property to automatically join a multicast group or not. This can be
6764 useful when sharing a socket between multiple elements.
6767 2008-01-16 Stefan Kost <ensonic@users.sf.net>
6769 * gst/videomixer/Makefile.am:
6770 Add controller flags.
6772 2008-01-16 Stefan Kost <ensonic@users.sf.net>
6774 * gst/videomixer/videomixer.c:
6775 Also commit the missing gst_object_sync_values().
6777 2008-01-16 Stefan Kost <ensonic@users.sf.net>
6779 * docs/plugins/Makefile.am:
6780 Remove duplicate entry.
6782 2008-01-15 Stefan Kost <ensonic@users.sf.net>
6784 * docs/plugins/Makefile.am:
6785 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6786 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6787 * docs/plugins/inspect/plugin-gamma.xml:
6788 * docs/plugins/inspect/plugin-monoscope.xml:
6789 * docs/plugins/inspect/plugin-video4linux2.xml:
6790 Add 3 more plugins to docs.
6792 2008-01-15 Stefan Kost <ensonic@users.sf.net>
6794 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6795 * sys/osxvideo/osxvideosink.h:
6796 Revert previous change caused by a file that got stuck on an old
6799 2008-01-15 Stefan Kost <ensonic@users.sf.net>
6801 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6802 * gst/multipart/Makefile.am:
6803 * gst/multipart/multipartdemux.c:
6804 * gst/multipart/multipartdemux.h:
6805 * gst/multipart/multipartmux.c:
6806 * gst/multipart/multipartmux.h:
6807 Re-add multipartdemux to the docs. Last round of section cleanup.
6809 2008-01-15 Stefan Kost <ensonic@users.sf.net>
6811 * docs/plugins/Makefile.am:
6812 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6813 * sys/osxaudio/gstosxaudiosink.h:
6814 * sys/osxvideo/osxvideosink.h:
6815 Managed to resolve most unused declarations. Filed a bug for one left.
6817 2008-01-15 Stefan Kost <ensonic@users.sf.net>
6819 * docs/plugins/gst-plugins-good-plugins-sections.txt:
6820 Cleanup section file.
6822 2008-01-15 Stefan Kost <ensonic@users.sf.net>
6824 * docs/plugins/Makefile.am:
6825 * docs/plugins/gst-plugins-good-plugins.args:
6826 * docs/plugins/gst-plugins-good-plugins.signals:
6827 * docs/plugins/inspect/plugin-alaw.xml:
6828 * docs/plugins/inspect/plugin-alpha.xml:
6829 * docs/plugins/inspect/plugin-alphacolor.xml:
6830 * docs/plugins/inspect/plugin-annodex.xml:
6831 * docs/plugins/inspect/plugin-apetag.xml:
6832 * docs/plugins/inspect/plugin-audiofx.xml:
6833 * docs/plugins/inspect/plugin-auparse.xml:
6834 * docs/plugins/inspect/plugin-autodetect.xml:
6835 * docs/plugins/inspect/plugin-avi.xml:
6836 * docs/plugins/inspect/plugin-cairo.xml:
6837 * docs/plugins/inspect/plugin-cdio.xml:
6838 * docs/plugins/inspect/plugin-cutter.xml:
6839 * docs/plugins/inspect/plugin-debug.xml:
6840 * docs/plugins/inspect/plugin-dv.xml:
6841 * docs/plugins/inspect/plugin-efence.xml:
6842 * docs/plugins/inspect/plugin-effectv.xml:
6843 * docs/plugins/inspect/plugin-flac.xml:
6844 * docs/plugins/inspect/plugin-flxdec.xml:
6845 * docs/plugins/inspect/plugin-gconfelements.xml:
6846 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6847 * docs/plugins/inspect/plugin-goom.xml:
6848 * docs/plugins/inspect/plugin-halelements.xml:
6849 * docs/plugins/inspect/plugin-icydemux.xml:
6850 * docs/plugins/inspect/plugin-id3demux.xml:
6851 * docs/plugins/inspect/plugin-jpeg.xml:
6852 * docs/plugins/inspect/plugin-ladspa.xml:
6853 * docs/plugins/inspect/plugin-level.xml:
6854 * docs/plugins/inspect/plugin-matroska.xml:
6855 * docs/plugins/inspect/plugin-mulaw.xml:
6856 * docs/plugins/inspect/plugin-multipart.xml:
6857 * docs/plugins/inspect/plugin-navigationtest.xml:
6858 * docs/plugins/inspect/plugin-png.xml:
6859 * docs/plugins/inspect/plugin-quicktime.xml:
6860 * docs/plugins/inspect/plugin-rtp.xml:
6861 * docs/plugins/inspect/plugin-rtsp.xml:
6862 * docs/plugins/inspect/plugin-shout2send.xml:
6863 * docs/plugins/inspect/plugin-smpte.xml:
6864 * docs/plugins/inspect/plugin-speex.xml:
6865 * docs/plugins/inspect/plugin-taglib.xml:
6866 * docs/plugins/inspect/plugin-udp.xml:
6867 * docs/plugins/inspect/plugin-videobalance.xml:
6868 * docs/plugins/inspect/plugin-videobox.xml:
6869 * docs/plugins/inspect/plugin-videocrop.xml:
6870 * docs/plugins/inspect/plugin-videoflip.xml:
6871 * docs/plugins/inspect/plugin-videomixer.xml:
6872 * docs/plugins/inspect/plugin-wavenc.xml:
6873 * docs/plugins/inspect/plugin-wavpack.xml:
6874 * docs/plugins/inspect/plugin-wavparse.xml:
6877 * gst/videomixer/Makefile.am:
6878 * gst/videomixer/videomixer.c:
6879 * gst/videomixer/videomixer.h:
6880 * gst/videomixer/videomixerpad.h:
6881 Split out header to fix warnings from the doc-build.
6883 2008-01-14 Wim Taymans <wim.taymans@collabora.co.uk>
6885 As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6887 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
6888 Use atoll to parse the rtptime with enough precision. Fixes #509329.
6890 2008-01-14 Tim-Philipp Müller <tim at centricular dot net>
6892 * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
6893 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
6894 Initialise variables to work around (false) 'foo might be used
6895 uninitialized in this function' warnings by gcc-3.3.3 (#509298).
6897 2008-01-11 David Schleef <ds@schleef.org>
6899 * docs/plugins/.cvsignore:
6900 * tests/check/pipelines/.cvsignore:
6901 Ignore more files for the buildbot.
6903 2008-01-11 Jan Schmidt <Jan.Schmidt@sun.com>
6905 * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
6906 * gst/id3demux/id3v2frames.c: (parse_picture_frame):
6907 Generate the image-type values correctly. Leave them out of the caps
6908 when outputting a "preview image" tag, since it only makes sense
6909 to have one of those - the type is irrelevant.
6911 * sys/sunaudio/gstsunaudiomixerctrl.c:
6912 (gst_sunaudiomixer_ctrl_open):
6913 If we can, mark the mixer multiple open when we use it, in case
6914 (for some reason) the process wants to open it again elsewhere.
6916 2008-01-11 Wim Taymans <wim.taymans@collabora.co.uk>
6918 Patch by: Olivier Crete <tester at tester dot ca>
6920 * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
6921 * gst/rtp/gstrtptheorapay.c:
6922 Fix the clock rate to 90000 as required by the RFC.
6925 2008-01-11 Tim-Philipp Müller <tim at centricular dot net>
6927 * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
6928 Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
6930 2008-01-10 Sebastian Dröge <slomo@circular-chaos.org>
6933 Add -Wno-portability to the automake parameters to stop warnings
6934 about GNU make extensions being used. We require GNU make in almost
6935 every Makefile anyway.
6938 Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
6939 at the same time is required for per target flags.
6941 2008-01-09 Edward Hervey <edward.hervey@collabora.co.uk>
6943 * gst/videomixer/videomixer.c: (gst_videomixer_init):
6944 Fix error from my last commit.
6946 2008-01-09 Tim-Philipp Müller <tim at centricular dot net>
6948 Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
6950 * gst/id3demux/id3v2frames.c: (parse_comment_frame):
6951 Make sure the ISO 639-X language code in ID3v2 COMM frames
6952 is actually valid UTF-8 (or rather: ASCII), so we don't end
6953 up with non-UTF8 strings in tags if there's garbage in the
6954 language field. Also make sure the language code is always
6955 lower case. Fixes: #508291.
6957 2008-01-09 Stefan Kost <ensonic@users.sf.net>
6962 2008-01-09 Stefan Kost <ensonic@users.sf.net>
6965 Include lcov.mak to allow building coverage reports. Guard
6966 check-torture target like in the other packages.
6968 2008-01-09 Sameer Naik <sameer@damagehead.com>
6970 reviewed by: Edward Hervey <edward.hervey@collabora.co.uk>
6972 * gst/videomixer/videomixer.c:
6973 (gst_videomixer_set_master_geometry), (_do_init),
6974 (gst_videomixer_child_proxy_get_child_by_index),
6975 (gst_videomixer_child_proxy_get_children_count),
6976 (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
6977 (gst_videomixer_init), (gst_videomixer_request_new_pad),
6978 (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
6979 Implement GstChildProxy interface.
6980 Send newsegment at the right moment
6983 2008-01-09 Edward Hervey <edward.hervey@collabora.co.uk>
6985 * gst/alpha/Makefile.am:
6986 * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
6987 (gst_alpha_sink_event), (gst_alpha_chain),
6988 (gst_alpha_change_state), (plugin_init):
6989 Make the various properties of 'alpha' controllable. This allows doing
6990 niceties like fade-in/fade-out.
6992 2008-01-09 Stefan Kost <ensonic@users.sf.net>
6994 * gst/rtp/gstasteriskh263.c:
6995 * gst/rtp/gstrtpL16depay.c:
6996 * gst/rtp/gstrtpac3depay.c:
6997 * gst/rtp/gstrtpamrpay.c:
6998 * gst/rtp/gstrtpdepay.c:
6999 * gst/rtp/gstrtpgsmdepay.c:
7000 * gst/rtp/gstrtph263depay.c:
7001 * gst/rtp/gstrtph263pdepay.c:
7002 * gst/rtp/gstrtph263ppay.c:
7003 * gst/rtp/gstrtph264depay.c:
7004 * gst/rtp/gstrtph264pay.c:
7005 * gst/rtp/gstrtpmp2tdepay.c:
7006 * gst/rtp/gstrtpmp4adepay.c:
7007 * gst/rtp/gstrtpmp4gdepay.c:
7008 * gst/rtp/gstrtpmp4gpay.c:
7009 * gst/rtp/gstrtpmp4vdepay.c:
7010 * gst/rtp/gstrtpmpadepay.c:
7011 * gst/rtp/gstrtpmpvdepay.c:
7012 * gst/rtp/gstrtpsv3vdepay.c:
7013 * gst/rtp/gstrtptheoradepay.c:
7014 * gst/rtp/gstrtptheorapay.c:
7015 * gst/rtp/gstrtpvorbisdepay.c:
7016 * gst/rtp/gstrtpvorbispay.c:
7017 Remove copy/paste unused code (property setters and getter) found by
7018 the coverage suite (yay, saves ~20k on disk).
7020 2008-01-08 Tim-Philipp Müller <tim at centricular dot net>
7022 * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
7024 Also fix up pad templates to indicate that image/jpeg doesn't
7025 absolutely require the framerate property to be set (#504081).
7027 2008-01-08 Tim-Philipp Müller <tim at centricular dot net>
7029 Based on patch by: Wouter Cloetens <wouter at mind be>
7031 * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
7032 (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
7033 (gst_matroska_mux_finish), (gst_matroska_mux_collected):
7034 * gst/matroska/matroska-mux.h:
7035 Keep track of first and last timestamps for each incoming stream,
7036 so we can calculate the total duration for live sources and other
7037 input where we can't query the duration from the start or where
7038 there's no constant framerate from which we can deduce the
7039 duration; also use calculated/observed duration if it is bigger
7040 than the previously queried duration. Furthermore, use
7041 gst_pad_query_peer_duration() and take into account that it may
7042 return TRUE but still a duration of CLOCK_TIME_NONE, which easily
7043 screws up comparisons when using unsigned integers. Fixes #504081.
7045 2008-01-08 Sebastian Dröge <slomo@circular-chaos.org>
7048 * gst/audiofx/audioamplify.c:
7049 (gst_audio_amplify_clipping_method_get_type),
7050 (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
7051 * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
7052 (gst_audio_dynamic_transform_ip):
7053 * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
7054 (gst_audio_invert_transform_ip):
7055 * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
7056 (gst_audio_panorama_transform):
7057 * gst/level/gstlevel.c: (gst_level_init):
7058 Make elements GST_BUFFER_FLAG_GAP aware and call
7059 gst_base_transform_set_gap_aware for this.
7060 Bump core requirement to CVS.
7062 * gst/audiofx/audiochebyshevfreqband.c:
7063 (gst_audio_chebyshev_freq_band_transform_ip):
7064 * gst/audiofx/audiochebyshevfreqlimit.c:
7065 (gst_audio_chebyshev_freq_limit_transform_ip):
7066 Also sync GObject properties to the controller if operating
7067 in passthrough mode.
7069 2008-01-07 Tim-Philipp Müller <tim at centricular dot net>
7071 * sys/directdraw/gstdirectdrawsink.c:
7072 (gst_directdraw_sink_window_thread):
7073 FALSE is not a gpointer.
7075 2008-01-05 Julien Moutte <julien@fluendo.com>
7077 * sys/directdraw/gstdirectdrawsink.c:
7078 (gst_directdraw_sink_set_window_id),
7079 (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
7080 (gst_directdraw_sink_buffer_alloc),
7081 (gst_directdraw_sink_draw_borders),
7082 (gst_directdraw_sink_show_frame),
7083 (gst_directdraw_sink_setup_ddraw),
7084 (gst_directdraw_sink_window_thread),
7085 (gst_directdraw_sink_get_ddrawcaps),
7086 (gst_directdraw_sink_surface_create): Make sure we create our
7087 internal window only when we need it. That will give a chance to
7088 the application to get the prepare-xwindow-id bus message. Draw
7089 black borders when keeping aspect ratio. Handle the case where our
7090 rendering window disappears (closed or errors) like other sinks
7091 do. Various 80 columns fixes, improve state change order. That
7092 element could need some more love.
7094 2008-01-04 Sebastian Dröge <slomo@circular-chaos.org>
7096 * ext/taglib/gstapev2mux.h:
7097 * ext/taglib/gstid3v2mux.h:
7098 Remove useless typedefs without new type name. Fixes a warning with
7101 2008-01-03 Wim Taymans <wim.taymans@collabora.co.uk>
7103 Patch by: John Millikin <jmillikin at gmail dot com>
7105 * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
7106 (gst_flac_dec_setup_stream_decoder),
7107 (gst_flac_normalize_picture_mime_type),
7108 (gst_flac_extract_picture_buffer),
7109 (gst_flac_dec_metadata_callback):
7110 Emit metadata messages when a PICTURE block is encountered.
7113 2008-01-02 Thijs Vermeir <thijsvermeir@gmail.com>
7116 increase rank because no known issues anymore ...
7117 * gst/avi/gstavisubtitle.c:
7118 send subtitle name to the srcpad
7120 2007-12-31 Wim Taymans <wim.taymans@collabora.co.uk>
7122 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
7123 * gst/rtsp/gstrtspsrc.h:
7124 Implement redirect for the DESCRIBE reply. Fixes #506025.
7126 2007-12-29 Sebastian Dröge <slomo@circular-chaos.org>
7128 * ext/flac/gstflacdec.c: (gst_flac_dec_write):
7129 Fix 'xyz may be used uninitialized' compiler warnings caused
7130 by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7131 abort() in any case but properly report the error.
7133 2007-12-26 Tim-Philipp Müller <tim at centricular dot net>
7135 * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
7136 * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
7137 * sys/ximage/gstximagesrc.c: (composite_pixel):
7138 Fix 'xyz may be used uninitialized' compiler warnings caused
7139 by broken g_assert_not_reached() macro in GLib-2.15.x (it's
7140 not really nice to abort in any case). Fixes #505745.
7142 2007-12-18 Tim-Philipp Müller <tim at centricular dot net>
7144 * tests/check/elements/avisubtitle.c: (check_correct_buffer):
7145 Small unit test fix (has no practical impact at the moment,
7146 since we're only feeding utf8 and hence just create a sub-
7147 buffer for the output).
7149 2007-12-18 Thijs Vermeir <thijsvermeir@gmail.com>
7151 * gst/avi/gstavisubtitle.c:
7152 * tests/check/elements/avisubtitle.c:
7153 Add seeking support for avi subtitle
7155 2007-12-18 Wim Taymans <wim.taymans@collabora.co.uk>
7157 * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
7158 (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
7159 (gst_flac_dec_write):
7160 * ext/flac/gstflacdec.h:
7161 Remove some unused vars.
7162 Do more cleanup of leftover events and tags.
7163 Output tags after the segment event. Fixes #504018.
7165 2007-12-18 Tim-Philipp Müller <tim at centricular dot net>
7167 * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
7168 (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
7169 (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
7170 Detect other UTF byte order markers and convert to UTF-8 as
7173 2007-12-18 Tim-Philipp Müller <tim at centricular dot net>
7175 * gst/avi/gstavisubtitle.c: (src_template),
7176 (gst_avi_subtitle_extract_utf8_file),
7177 (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
7178 (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
7179 (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
7180 * gst/avi/gstavisubtitle.h:
7181 Refactor a bit; fix name extraction; don't assume all the data
7182 in the chunk is actually subtitle data, there may be padding at
7183 the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
7184 file so it's there to send again after a seek (for future use).
7186 2007-12-18 Thijs Vermeir <thijsvermeir@gmail.com>
7188 * gst/avi/Makefile.am:
7190 * gst/avi/gstavisubtitle.c:
7191 * gst/avi/gstavisubtitle.h:
7192 * tests/check/Makefile.am:
7193 * tests/check/elements/avisubtitle.c:
7194 * win32/common/config.h:
7195 Add avi subtitle element for bug #442034. Need seeking support
7196 and more support for character conversion.
7198 2007-12-18 Tim-Philipp Müller <tim at centricular dot net>
7201 Include common/win32.mak for CRLF check of win32 project
7202 files (see #393626).
7204 * win32/vs6/libgstpng.dsp:
7205 Fix line endings and do cvs admin -kb.
7207 2007-12-17 Edward Hervey <edward.hervey@collabora.co.uk>
7209 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
7210 Actually drop the buffers which are outside the currently configured
7211 segment instead of just emitting a WARNING.
7213 2007-12-14 Wim Taymans <wim.taymans@collabora.co.uk>
7215 * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
7216 (gst_flac_dec_write):
7217 * ext/flac/gstflacdec.h:
7218 Send segments from the streaming thread. Fixes #502187.
7219 Fix segment seeking and a bunch of other seeking cases.
7221 2007-12-14 Tim-Philipp Müller <tim at centricular dot net>
7223 * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
7224 Parse WOAF frames and put the result into GST_TAG_CONTACT,
7225 which is where it would end up if the same information was
7226 put in a vorbis comment (don't think it's worth adding a
7227 new URI tag for this). Fixes #488112.
7229 2007-12-11 Tim-Philipp Müller <tim at centricular dot net>
7232 We need core/base 0.10.15 or later.
7234 2007-12-11 Wim Taymans <wim.taymans@collabora.co.uk>
7236 Patch by: Mark Nauwelaerts <manauw skynet be>
7238 * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
7239 Fix regression in stream numbering. Fixes #502655.
7241 2007-12-11 Wim Taymans <wim.taymans@collabora.co.uk>
7243 Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
7245 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
7246 (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
7247 (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
7248 (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
7249 (gst_rtp_h264_pay_handle_buffer):
7250 * gst/rtp/gstrtph264pay.h:
7251 Use higher performance start-code searching.
7252 Parse NALs and store SPS, PPS and profile in the caps so that they can
7253 be used in the SDP. Fixes #502814.
7255 2007-12-11 Tim-Philipp Müller <tim at centricular dot net>
7257 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7258 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
7259 Init some structs to zero before we pass them to ioctl, which
7260 avoids valgrind warnings. Also fix a small memory leak.
7262 2007-12-11 Wim Taymans <wim.taymans@collabora.co.uk>
7264 Patch by: Wouter Cloetens <wouter at mind dot be>
7266 * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
7267 Copy timestamp from input to output. Not very perfect yet but better
7268 than nothing. Fixes #503023.
7270 2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
7272 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7273 Also print a useful error message with the old Wavpack API
7276 2007-12-09 Tim-Philipp Müller <tim at centricular dot net>
7278 * ext/wavpack/gstwavpackdec.c:
7279 More build fixes for old libwavpack versions: include config.h so
7280 that WAVPACK_OLD_API is actually defined as detected; only use
7281 WavpackGetErrorMessage if it is available. This fixes the build
7282 on debian stable for me.
7284 2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
7286 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
7287 * ext/wavpack/gstwavpackparse.c:
7288 (gst_wavpack_parse_create_src_pad):
7289 Workaround the non-existance of WavpackGetChannelMask in Wavpack
7290 versions below 4.40.0.
7292 2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
7295 And now do it right for real...
7297 2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
7300 Correctly reset $LIBS to not contain -lm.
7302 2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
7304 Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
7307 * ext/cairo/gsttimeoverlay.c:
7308 (gst_cairo_time_overlay_print_smpte_time):
7309 Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
7310 and checking for rint() and implementing it ourself if it doesn't
7311 exist. Fixes #497293.
7313 2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
7316 Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
7318 2007-12-08 Jan Schmidt <jan.schmidt@sun.com>
7320 * sys/oss/gstosshelper.c:
7321 Verify that the format returned after the ioctl is the one
7322 we requested. It is valid for the ioctl to succeed while
7323 substituting an alternate 'supported' sample format.
7325 2007-12-07 Tim-Philipp Müller <tim at centricular dot net>
7327 * sys/oss/gstossaudio.c: (plugin_init):
7328 * sys/oss/gstosssink.c: (gst_oss_sink_open):
7329 * sys/oss/gstosssrc.c: (gst_oss_src_open):
7330 Post decent (and translated) error message when we can't
7331 open the audio device for some reason.
7333 2007-12-07 Jan Schmidt <jan.schmidt@sun.com>
7335 * sys/oss/gstosssink.c:
7336 * sys/oss/gstosssrc.c:
7337 Allow the AUDIODEV environment variable to redirect us
7338 to a different default OSS device, like sunaudiosink does
7339 on Solaris (makes audio play automatically on SunRays).
7341 2007-12-06 Sebastian Dröge <slomo@circular-chaos.org>
7343 * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7344 * gst/audiofx/audiochebyshevfreqband.c:
7345 (gst_audio_chebyshev_freq_band_transform_ip):
7346 * gst/audiofx/audiochebyshevfreqlimit.c:
7347 (gst_audio_chebyshev_freq_limit_transform_ip):
7348 * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7349 * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7350 The transform_ip() methods should do nothing if in passthrough mode.
7351 It might get non-writable buffers in that case but the buffer might
7352 as well be writable.
7354 * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
7355 The transform() methods won't be called in passthrough mode and
7356 otherwise the buffer is always writable so don't check here.
7358 2007-12-06 Tim-Philipp Müller <tim at centricular dot net>
7360 * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
7361 Fix seeking in .wav files again (#501775). Some people seem to think
7362 they don't need to test their changes when they're just 'reflowing'
7365 2007-12-05 Wim Taymans <wim.taymans@gmail.com>
7367 * gst/autodetect/gstautovideosink.c:
7368 (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
7369 (gst_auto_video_sink_init),
7370 (gst_auto_video_sink_create_element_with_pretty_name),
7371 (gst_auto_video_sink_find_best),
7372 (gst_auto_video_sink_set_property),
7373 (gst_auto_video_sink_get_property):
7374 * gst/autodetect/gstautovideosink.h:
7376 Use same error reporting code as autoaudiosink.
7377 Add property to filter sinks based on caps. Only select raw video sinks
7378 by default for backwards compat.
7379 API: GstAutoVideoSink::filter-caps
7381 2007-12-05 Wim Taymans <wim.taymans@gmail.com>
7383 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7385 * gst/autodetect/gstautoaudiosink.c:
7386 (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
7387 (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
7388 (gst_auto_audio_sink_set_property),
7389 (gst_auto_audio_sink_get_property):
7390 * gst/autodetect/gstautoaudiosink.h:
7391 Add property to filter sinks based on caps. Only select raw audio sinks
7392 by default for backwards compat. Fixes #417420.
7393 API: GstAutoAudioSink::filter-caps
7395 2007-11-29 Michael Smith <msmith@fluendo.com>
7397 Patch by: Arek Korbik <arkadini@gmail.com>
7399 * gst/videobox/gstvideobox.c: (plugin_init):
7400 Initialise liboil in plugin_init()
7402 2007-11-29 Wim Taymans <wim.taymans@gmail.com>
7404 * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7405 Post error before sending EOS. Fixes #499178.
7407 2007-11-28 Sebastien Moutte <sebastien@moutte.net>
7409 * win32/vs6/gst_plugins_good.dsw:
7410 * win32/vs6/libgstpng.dsp:
7411 Add a project file for libgstpng
7413 2007-11-28 Edward Hervey <bilboed@bilboed.com>
7415 * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
7416 (gst_rtp_h263_depay_process):
7417 Code beautification.
7418 Added debug statements.
7419 Don't bit-shift everything, just do operations on last/first byte
7422 2007-11-27 Wim Taymans <wim.taymans@gmail.com>
7424 Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
7426 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
7427 Fix wrong comparison in overrun check. Fixes #499239 some more.
7429 2007-11-27 Edward Hervey <bilboed@bilboed.com>
7431 * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
7432 (gst_rtp_h263_depay_process):
7433 * gst/rtp/gstrtph263depay.h:
7434 Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
7437 2007-11-26 Wim Taymans <wim.taymans@gmail.com>
7439 Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
7441 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
7442 (gst_rtp_mp4a_depay_process):
7443 * gst/rtp/gstrtpmp4adepay.h:
7444 Fix depayloading when multiple frames are inside one RTP packet.
7447 2007-11-26 Stefan Kost <ensonic@users.sf.net>
7449 * gst/level/gstlevel.c:
7450 Add GAP-flag support.
7452 2007-11-26 Edward Hervey <bilboed@bilboed.com>
7454 * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
7455 Read the I flag for Mode A h263 rtp stream and set the
7456 GST_BUFFER_FLAG_DELTA_UNIT accordingly.
7459 2007-11-26 Stefan Kost <ensonic@users.sf.net>
7461 * gst/level/gstlevel.c:
7462 Remove some dead code and do cleanups.
7464 2007-11-26 Stefan Kost <ensonic@users.sf.net>
7466 * tests/check/pipelines/simple-launch-lines.c:
7467 Improve the tests by allowing to set a target state.
7469 2007-11-26 Sebastian Dröge <slomo@circular-chaos.org>
7471 * tests/check/elements/wavpackenc.c: (GST_START_TEST):
7472 Don't check the caps of the output buffer if they're equal some
7473 other caps. The caps can change in a backward compatible way
7474 and did at this point.
7476 2007-11-24 Julien MOUTTE <julien@moutte.net>
7478 * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
7479 (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
7480 (gst_qtdemux_seek_to_previous_keyframe),
7481 (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
7482 (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
7483 reverse playback support.
7485 2007-11-20 Sebastian Dröge <slomo@circular-chaos.org>
7487 * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
7488 Also set the channel layout on the Wavpack caps if we're having
7489 a mono layout. Of course only do it for "audio/x-wavpack".
7491 2007-11-20 Sebastian Dröge <slomo@circular-chaos.org>
7493 * ext/wavpack/gstwavpackcommon.c:
7494 (gst_wavpack_get_default_channel_mask),
7495 (gst_wavpack_set_channel_layout),
7496 (gst_wavpack_get_default_channel_positions),
7497 (gst_wavpack_get_channel_mask_from_positions),
7498 (gst_wavpack_set_channel_mapping):
7499 * ext/wavpack/gstwavpackcommon.h:
7500 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
7501 (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
7502 * ext/wavpack/gstwavpackdec.h:
7503 * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
7504 (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
7505 (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
7506 (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
7507 (gst_wavpack_enc_rewrite_first_block),
7508 (gst_wavpack_enc_sink_event):
7509 * ext/wavpack/gstwavpackenc.h:
7510 * ext/wavpack/gstwavpackparse.c:
7511 (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
7512 (gst_wavpack_parse_scan_to_find_sample),
7513 (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
7514 (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
7515 * ext/wavpack/gstwavpackparse.h:
7516 Add support for encoding, parsing and decoding multichannel
7517 files with up to 8 channels. This also improves the robustness
7518 of parsing quite a bit.
7520 * ext/wavpack/gstwavpackstreamreader.c:
7521 (gst_wavpack_stream_reader_read_bytes),
7522 (gst_wavpack_stream_reader_get_pos),
7523 (gst_wavpack_stream_reader_set_pos_abs),
7524 (gst_wavpack_stream_reader_set_pos_rel),
7525 (gst_wavpack_stream_reader_push_back_byte),
7526 (gst_wavpack_stream_reader_get_length),
7527 (gst_wavpack_stream_reader_can_seek),
7528 (gst_wavpack_stream_reader_write_bytes):
7531 2007-11-20 Stefan Kost <ensonic@users.sf.net>
7533 * ext/libpng/gstpngdec.c:
7534 * ext/libpng/gstpngdec.h:
7535 Don't release the png-memory from within the callback.
7537 2007-11-20 Stefan Kost <ensonic@users.sf.net>
7539 Patch by: René Stadler <mail at renestadler dot de>
7541 * ext/libpng/gstpngenc.c:
7542 Don't leak buffer data memory. Fixes #498395.
7544 2007-11-20 Stefan Kost <ensonic@users.sf.net>
7546 Patch by: René Stadler <mail at renestadler dot de>
7548 * tests/check/pipelines/simple-launch-lines.c:
7551 2007-11-20 Julien MOUTTE <julien@moutte.net>
7553 * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
7554 (gst_tag_lib_mux_adjust_event_offsets):
7555 * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
7556 * sys/osxaudio/Makefile.am:
7557 * sys/osxvideo/cocoawindow.h:
7558 * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
7560 2007-11-15 David Schleef <ds@schleef.org>
7562 * ext/cairo/gsttextoverlay.c:
7563 Change strcasecmp() to g_strcasecmp(). Fixes #497292.
7565 2007-11-15 Wim Taymans <wim.taymans@gmail.com>
7567 Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
7569 * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
7570 (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
7571 (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
7572 * gst/rtp/gstrtpmp2tpay.h:
7573 Fill the MTU with as many packets as possible. Fixes #491323.
7575 2007-11-15 Wim Taymans <wim.taymans@gmail.com>
7577 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7579 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7580 Fix some more leaks. Fixes #497007.
7582 2007-11-15 Wim Taymans <wim.taymans@gmail.com>
7584 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7586 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
7587 (gst_rtspsrc_stream_configure_tcp):
7588 Fix 3 pad leaks. Fixes #496983.
7590 2007-11-15 Wim Taymans <wim.taymans@gmail.com>
7592 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7594 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7595 Fix small leak. Fixes #497017.
7597 2007-11-15 Wim Taymans <wim.taymans@gmail.com>
7599 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7600 (gst_qtdemux_prepare_current_sample),
7601 (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
7602 (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
7603 * gst/qtdemux/qtdemux_fourcc.h:
7604 * gst/qtdemux/qtdemux_types.c:
7605 Add suppport for theora in quicktime according to XiphQT.
7607 2007-11-15 Edgard Lima <edgard.lima@indt.org.br>
7609 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
7610 (gst_v4l2src_init), (gst_v4l2src_set_property),
7611 (gst_v4l2src_get_property):
7612 * sys/v4l2/gstv4l2src.h:
7613 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7614 Always copy buffers by default (handle safer with bugged drivers)
7615 and added a property to make it possible to use mmap effectively (no
7616 copy if possible) when application wants to. Fixes: #480557.
7618 2007-11-14 Tim-Philipp Müller <tim at centricular dot net>
7620 * gst/id3demux/id3tags.c:
7621 * gst/id3demux/id3tags.h:
7622 * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
7623 We don't want the same string multiple times in a tag list for the
7624 same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
7625 this doesn't happen and remove special-case code for GST_TAG_GENRE.
7627 2007-11-14 Tim-Philipp Müller <tim at centricular dot net>
7629 * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
7630 Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
7631 into ID3v2 TXXX frames (fixes #347848).
7633 2007-11-14 Tim-Philipp Müller <tim at centricular dot net>
7635 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7636 Don't leak sdp message contents (fixes #496773).
7638 * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
7639 Don't leak URI string.
7641 2007-11-14 Tim-Philipp Müller <tim at centricular dot net>
7643 Patch by: Julien Puydt <julien dot puydt at laposte net>
7645 * ext/raw1394/Makefile.am:
7646 * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
7647 (gst_1394_property_probe_get_properties),
7648 (gst_1394_property_probe_probe_property),
7649 (gst_1394_property_probe_needs_probe),
7650 (gst_1394_property_probe_get_values),
7651 (gst_1394_property_probe_interface_init),
7652 (gst_1394_type_add_property_probe_interface):
7653 * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
7654 * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
7655 (gst_dv1394src_init), (gst_dv1394src_dispose),
7656 (gst_dv1394src_set_property), (gst_dv1394src_get_property),
7657 (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
7658 (gst_dv1394src_update_device_name):
7659 * ext/raw1394/gstdv1394src.h:
7660 Implement GstPropertyProbe interface and add "device-name" property,
7661 so applications can use this to probe for available devices in the
7662 same way they can already with v4lsrc and v4l2src (however horrible
7663 this property probe interface may be). Fixes #358841.
7665 2007-11-14 Tim-Philipp Müller <tim at centricular dot net>
7667 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7669 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7670 (gst_rtspsrc_parse_range):
7671 Don't leak event, don't leak range (fixes #496752).
7673 2007-11-14 Michael Smith <msmith@fluendo.com>
7675 Patch by: Arek Korbik <arkadini@gmail.com>
7677 * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
7678 Detect RGBA/BGRA correctly on little endian systems.
7680 2007-11-13 Tim-Philipp Müller <tim at centricular dot net>
7682 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
7683 If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
7684 corresponding ioctl() call fails even though the driver claims to
7685 support this format, just fall back to the pre-2.6.19 kernel
7686 routine that creates caps with suitable height and width ranges
7689 2007-11-13 Tim-Philipp Müller <tim at centricular dot net>
7691 Patch by: Mark Nauwelaerts <manauw skynet be>
7693 * gst/matroska/matroska-demux.c:
7694 (gst_matroska_demux_push_dvd_clut_change_event),
7695 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
7696 (gst_matroska_demux_subtitle_caps):
7697 * gst/matroska/matroska-ids.h:
7698 Extract palette data for dvd subpicture streams and send it
7699 downstream as custom gstreamer dvd event (fixes #453417).
7701 2007-11-13 Tim-Philipp Müller <tim at centricular dot net>
7703 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
7704 Implement minimal parsing of the passed pango font description
7705 string, so passing a font size works the same as with the
7706 pango textoverlay plugin; fixes #455086.
7707 (Maybe we could just use pangocairo here at some point).
7709 2007-11-13 Stefan Kost <ensonic@users.sf.net>
7711 * gst/avi/gstavidemux.c:
7712 * gst/wavparse/gstwavparse.c:
7713 Return the result in _activate_pull(). Don't ref element there.
7715 2007-11-13 Stefan Kost <ensonic@users.sf.net>
7717 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
7718 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
7719 (gst_wavparse_srcpad_event):
7720 Ref the element when we should, but not when we its not needed. Reflow
7721 the event_handling to not leak the event.
7723 2007-11-12 Edward Hervey <bilboed@bilboed.com>
7725 * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
7726 (qtdemux_parse_samples):
7727 Properly free QTDemuxSamples array.
7728 Protect table write with a sensible check, some files apparently DO contain
7729 stts values starting with 0 :(
7731 2007-11-12 Stefan Kost <ensonic@users.sf.net>
7733 * gst/avi/gstavidemux.c:
7734 * gst/qtdemux/qtdemux.c:
7735 Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
7736 previous commit messed up.
7738 2007-11-12 Stefan Kost <ensonic@users.sf.net>
7740 * gst/avi/gstavidemux.c:
7741 * gst/qtdemux/qtdemux.c:
7742 Sync _handle_src_event() with oggdemux. In avidemux also ref the
7743 element when we should, but not when we its not needed.
7745 2007-11-08 Stefan Kost <ensonic@users.sf.net>
7747 * gst/wavparse/gstwavparse.c:
7748 Return FALSE if we can't handle a query instead of changing the
7749 format. Ignore fact when dealing with mpeg audio.
7751 2007-11-02 Tim-Philipp Müller <tim at centricular dot net>
7753 Patch by: Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
7756 * gst/udp/gstdynudpsink.c:
7757 * gst/udp/gstdynudpsink.h:
7758 * gst/udp/gstmultiudpsink.c:
7759 * gst/udp/gstmultiudpsink.h:
7760 * gst/udp/gstudpsink.c:
7761 * gst/udp/gstudpsink.h:
7762 Fix includes for MSVC and GLib-2.14.0 (#492388).
7764 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
7765 No more pipe define since GLib-2.14.0, need to use _pipe() directly.
7767 2007-11-02 Edward Hervey <bilboed@bilboed.com>
7769 * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
7770 (gst_mulawdec_chain):
7771 * gst/law/mulaw-decode.h:
7772 Calculate outgoing buffer duration if incoming buffer didn't have a
7775 2007-10-30 Wim Taymans <wim.taymans@gmail.com>
7777 * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
7778 (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
7779 Smarter combine_flow code that also deals with downstream elements
7780 returning UNEXPECTED when they receive data out of the segment
7781 boundaries. Fixes #491305.
7783 2007-10-26 Tim-Philipp Müller <tim at centricular dot net>
7785 * sys/v4l2/v4l2src_calls.c:
7786 Fix 'unused variable' compiler warning when compiling against
7787 older kernel headers.
7789 2007-10-25 Tim-Philipp Müller <tim at centricular dot net>
7791 * ext/taglib/gstid3v2mux.cc (add_funcs):
7792 Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
7794 2007-10-24 Stefan Kost <ensonic@users.sf.net>
7796 * tests/check/pipelines/simple-launch-lines.c:
7797 Improve the tests a little more.
7799 2007-10-23 Zaheer Abbas Merali <zaheerabbas at merali dot org>
7801 patch by: Yun Zheng Hu
7803 * sys/osxaudio/gstosxaudiosrc.c:
7804 Use default input device instead of default output device and
7805 only memcpy actual available bytes.
7807 2007-10-22 Edgard Lima <edgard.lima@indt.org.br>
7809 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7810 Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
7811 early. It is temporary until we find something better.
7813 2007-10-22 Wim Taymans <wim.taymans@gmail.com>
7815 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
7817 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
7818 Fix race when pausing a RTSP stream in interleaved.
7821 2007-10-22 Wim Taymans <wim.taymans@gmail.com>
7823 Patch by: Peter Kjellerstedt <pkj at axis com>
7825 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
7826 Use correct unref function for buffers. #488844.
7828 2007-10-19 Stefan Kost <ensonic@users.sf.net>
7830 * gst/avi/gstavimux.c:
7831 * tests/check/elements/avimux.c:
7832 Add some debug and sync tests with the fix.
7834 2007-10-18 Wim Taymans <wim.taymans@gmail.com>
7836 Based on patch by: Laurent Glayal <spglegle yahoo fr>
7838 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7839 When the socket is used by the app for other purposes, don't generate an
7840 error if there is activaty on the socket that is not data related.
7843 2007-10-18 Wim Taymans <wim.taymans@gmail.com>
7845 * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
7846 (gst_v4l2src_grab_frame):
7847 Add some more debug info. Generate an error when we run out of buffers
7848 for some reason. See #480557.
7850 2007-10-18 Wim Taymans <wim.taymans@gmail.com>
7852 Patch by: Anders Skargren <anders dot skargren at axis dot com>
7854 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7855 Set marker bit correctly.
7857 2007-10-17 Wim Taymans <wim.taymans@gmail.com>
7859 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7860 Use allowed name for the GstStructure.
7862 2007-10-17 Tim-Philipp Müller <tim at centricular dot net>
7864 * ext/gconf/gstswitchsink.c:
7865 * gst/autodetect/gstautoaudiosink.c:
7866 Use new gst_bus_pop_filtered().
7868 2007-10-13 Tim-Philipp Müller <tim at centricular dot net>
7870 * sys/v4l2/gstv4l2src.c:
7871 * sys/v4l2/v4l2src_calls.c:
7872 When probing the formats and sizes a camera supports, make
7873 sure the best ones (highest resolution, prefered format)
7874 end up at the beginning of the probed caps and the less
7875 desirable ones at the end. This is important because the
7876 order within the caps matters for things like fixation and
7877 negotiation, ie. what format is chosen in the end.
7878 With recent kernels, the current probing code will end up
7879 querying the supported sizes from lowest resolution to
7880 highest resolution, adding them to the probed caps in that
7881 order, resulting to v4l2src fixating to the lowest possible
7882 resolution if downstream does not express a size preference.
7883 Also make up a somewhat random ranking of prefered output
7884 formats for the same reason. Fixes #485828.
7886 2007-10-11 Tim-Philipp Müller <tim at centricular dot net>
7888 Based on patch by: Jason Kivlighn <jkivlighn gmail com>
7890 * gst/id3demux/id3v2frames.c:
7891 Extract license/copyright URIs from ID3v2 WCOP frames
7894 * tests/check/elements/id3demux.c:
7895 * tests/files/Makefile.am:
7896 * tests/files/id3-447000-wcop.tag:
7897 Add simple unit test.
7899 2007-10-11 Tim-Philipp Müller <tim at centricular dot net>
7901 * ext/taglib/gstid3v2mux.cc:
7902 Add support for license/copyright URI tags (ID3v2 WCOP frame).
7903 Prerequisite for #447000.
7905 2007-10-08 Jan Schmidt <Jan.Schmidt@sun.com>
7907 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
7908 Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
7911 2007-10-08 Wim Taymans <wim.taymans@gmail.com>
7913 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7914 (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7915 (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
7916 (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
7917 (gst_rtspsrc_change_state):
7918 More seeking fixes, mostly passing around the new playback segment in
7919 order to configure it properly.
7920 Also reset base_time of udp sources when setting them back to PLAYING as
7921 a temporary hack until core supports seek in live sources properly.
7923 2007-10-08 Wim Taymans <wim.taymans@gmail.com>
7925 * gst/rtp/gstrtpmp4adepay.c:
7926 Fix caps as to not confuse autopluggers.
7928 2007-10-06 Tim-Philipp Müller <tim at centricular dot net>
7930 * gst/id3demux/gstid3demux.c:
7931 * gst/id3demux/gstid3demux.h:
7932 * gst/id3demux/id3tags.c:
7933 * gst/id3demux/id3tags.h:
7934 * gst/id3demux/id3v2frames.c:
7935 Port ID3 tag demuxer over to the new GstTagDemux in -base
7936 (now would be a good time to test re-importing your music
7939 2007-10-06 Tim-Philipp Müller <tim at centricular dot net>
7941 * gst/apetag/Makefile.am:
7942 * gst/apetag/gstapedemux.c:
7943 * gst/apetag/gstapedemux.h:
7944 * gst/apetag/gsttagdemux.c:
7945 * gst/apetag/gsttagdemux.h:
7946 Port APE tag demuxer over to the new GstTagDemux in -base.
7948 2007-10-05 Wim Taymans <wim.taymans@gmail.com>
7950 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7951 (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
7952 (gst_rtspsrc_handle_internal_src_query),
7953 (gst_rtspsrc_handle_src_query), (new_session_pad),
7954 (gst_rtspsrc_stream_configure_tcp),
7955 (gst_rtspsrc_stream_configure_transport),
7956 (gst_rtspsrc_loop_send_cmd):
7957 Improve flushing behaviour.
7958 Set state of the udp sources to PAUSE/PLAYING correctly.
7959 Handle events and queries for UDP and TCP transport now.
7961 2007-10-04 Stefan Kost <ensonic@users.sf.net>
7963 * gst/rtp/gstrtpgsmdepay.c:
7964 * gst/rtp/gstrtpgsmpay.c:
7967 2007-10-04 Stefan Kost <ensonic@users.sf.net>
7969 Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
7971 * tests/check/Makefile.am:
7972 * tests/check/pipelines/simple-launch-lines.c:
7973 Add unit tests for payloaders/depayloaders.
7975 2007-10-02 Stefan Kost <ensonic@users.sf.net>
7977 * gst/avi/gstavimux.c:
7978 * gst/avi/gstavimux.h:
7979 Also save codec data for audio streams. Fixes #482495.
7981 2007-10-02 Stefan Kost <ensonic@users.sf.net>
7983 * gst/avi/gstavimux.c:
7984 Fix "Index entry has invalid stream nr 1".
7985 Add support for muxing aac - work in progress (see #482495).
7987 2007-10-01 Wim Taymans <wim.taymans@gmail.com>
7989 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
7990 (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
7991 (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
7992 * gst/rtsp/gstrtspsrc.h:
7993 Parse bandwidth modifiers, they are not yet configured in the session
7994 manager because we don't have an API for that yet.
7996 2007-10-01 Wim Taymans <wim.taymans@gmail.com>
7998 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
7999 (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
8000 Use shiny new function in -base to get the default clock-rate.
8003 2007-09-29 Sebastien Moutte <sebastien@moutte.net>
8006 Add files to win32 manifest.
8007 * win32/vs6/libgstaudiofx.dsp:
8008 * win32/vs6/libgstqtdemux.dsp:
8009 * win32/vs6/libgstrtp.dsp:
8010 * win32/vs6/libgstrtsp.dsp:
8011 Update project files.
8013 2007-09-28 Wim Taymans <wim.taymans@gmail.com>
8015 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8017 * gst/rtsp/gstrtspsrc.h:
8018 In TCP mode, only timestamp the first buffer. TCP is not real time and
8019 it does not make sense to try to skew compensate, also some servers send
8020 the first batch of data in a burst.
8022 2007-09-27 Tim-Philipp Müller <tim at centricular dot net>
8024 * gst/matroska/matroska-demux.c:
8025 Fix setting the discont flag on the first buffer
8026 pushed downstream for formats with private codec
8027 data that needs to be deserialised into buffers
8028 (such as vorbis and FLAC when in a matroska container).
8030 2007-09-27 Wim Taymans <wim.taymans@gmail.com>
8032 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
8034 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
8035 (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
8036 (gst_rtp_mp4v_pay_handle_buffer):
8037 * gst/rtp/gstrtpmp4vpay.h:
8038 Free the config string. Fixes #480707.
8039 Clean up the timestamp code a little.
8041 2007-09-26 Wim Taymans <wim.taymans@gmail.com>
8043 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8044 (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
8045 (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
8046 * gst/rtsp/gstrtspsrc.h:
8047 Set timestamps on RTP buffers in interleaved mode.
8048 Mark first buffers with a DISCONT.
8049 Remove flush hack now that sync for live sources has been figured out.
8051 2007-09-26 Wim Taymans <wim.taymans@gmail.com>
8053 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8054 Update documentation.
8056 2007-09-26 Wim Taymans <wim.taymans@gmail.com>
8058 * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
8059 (gst_rtp_xqt_depay_change_state):
8060 * gst/qtdemux/gstrtpxqtdepay.h:
8061 Fail if we don't know the quicktime format.
8063 2007-09-26 Tim-Philipp Müller <tim at centricular dot net>
8065 * ext/flac/gstflacenc.c:
8066 * ext/flac/gstflacenc.h:
8067 Save the flow return from the last gst_pad_push() and
8068 make sure we pass the right flow return value upstream
8069 in the case of failure; minor clean-ups.
8071 2007-09-25 Tim-Philipp Müller <tim at centricular dot net>
8073 * ext/taglib/gstapev2mux.cc:
8074 * ext/taglib/gstid3v2mux.cc:
8075 * gst/apetag/gstapedemux.c:
8076 Add support for the new GST_TAG_COMPOSER (#459809).
8078 2007-09-25 Tim-Philipp Müller <tim at centricular dot net>
8080 * gst/law/alaw-decode.c:
8081 * gst/law/alaw-decode.h:
8082 * gst/law/alaw-encode.c:
8083 * gst/law/alaw-encode.h:
8085 * gst/law/mulaw-conversion.h:
8086 Compulsive clean-ups: use boilerplate macros, add debug
8087 categories, fix up things to conform to symbol nomenklatura,
8090 2007-09-25 Tim-Philipp Müller <tim at centricular dot net>
8092 Based on patch by: Laurent Glayal <spglegle yahoo fr>
8094 * gst/law/alaw-decode.c:
8095 * gst/law/alaw-encode.c:
8096 Use static tables for A-Law decoding and encoding; this makes
8097 A-Law decoding and encoding less CPU-intensive, but increases
8098 the binary size a bit. Leaving old code around for now,
8099 selectable by a define in the code. Fixes #435435.
8101 2007-09-25 Sebastian Dröge <slomo@circular-chaos.org>
8104 Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
8105 AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
8108 2007-09-25 Sebastian Dröge <slomo@circular-chaos.org>
8110 Patch by: Jan Gerber <j at bootlab dot org>
8112 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8113 Add fourccs for MPEG2 HDV streams. Fixes #479960.
8115 2007-09-23 Stefan Kost <ensonic@users.sf.net>
8117 * sys/oss/gstosshelper.c:
8118 Use GST_WARNING instead of a g_critical. This situation is not caused
8121 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8125 Updated translations.
8127 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8129 translated by: Mikel Olasagasti <hey_neken@mundurat.net>
8132 Added Basque translation.
8134 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8136 translated by: Abel Cheung <abelcheung@gmail.com>
8140 Added Chinese (traditional and Hong Kong) translation.
8142 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8144 translated by: Jakub Bogusz <qboosh@pld-linux.org>
8147 Added Polish translation.
8149 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8151 translated by: Ilkka Tuohela <hile@iki.fi>
8154 Added Finnish translation.
8156 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8158 translated by: Jorge González González <aloriel@gmail.com>
8161 Added Spanish translation.
8163 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8165 translated by: Mogens Jaeger <mogens@jaeger.tf>
8168 Added Danish translation.
8170 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8172 translated by: Funda Wang <fundawang@linux.net.cn>
8175 Added Chinese (simplified) translation.
8177 2007-09-22 Thomas Vander Stichele <thomas at apestaart dot org>
8179 translated by: Alexander Shopov <ash@contact.bg>
8182 Added Bulgarian translation.
8184 2007-09-21 Wim Taymans <wim.taymans@gmail.com>
8186 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
8187 Set outgoing packet duration because we can. Fixes #478244 some more.
8189 2007-09-20 Stefan Kost <ensonic@users.sf.net>
8191 * ext/cairo/gsttextoverlay.c:
8192 Add info about static leak.
8194 * tests/check/Makefile.am:
8195 * tests/check/generic/states.c:
8196 Improved state change unit test.
8198 2007-09-19 Stefan Kost <ensonic@users.sf.net>
8200 * docs/plugins/.cvsignore:
8201 * tests/check/.cvsignore:
8202 Ignore registries in any format.
8204 2007-09-19 Wim Taymans <wim.taymans@gmail.com>
8206 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
8207 Removed some unused code.
8209 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
8210 * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
8211 * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
8212 * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
8213 * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
8214 (gst_rtp_theora_pay_flush_packet):
8215 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
8216 Try to preserve the incomming buffer duration on the outgoing
8217 packets. Fixes #478244.
8219 2007-09-18 Tim-Philipp Müller <tim at centricular dot net>
8221 * ext/taglib/gstapev2mux.cc:
8222 * ext/taglib/gstid3v2mux.cc:
8223 Work around compiler warnings with g++-4.2 when assigning a
8224 string constant to a gchar * (partially fixes #478092).
8226 2007-09-18 Tim-Philipp Müller <tim at centricular dot net>
8229 We require core CVS now for gst_base_src_set_do_timestamp().
8231 2007-09-17 Jan Schmidt <Jan.Schmidt@sun.com>
8233 * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
8234 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8235 (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
8236 (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8237 (gst_rtspsrc_handle_message):
8238 Fix compiler warnings shown with Forte.
8240 2007-09-16 Wim Taymans <wim.taymans@gmail.com>
8242 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
8243 (gst_rtspsrc_dup_printf):
8244 Give meaningfull error when all streams failed to configure for some
8247 2007-09-16 Wim Taymans <wim.taymans@gmail.com>
8250 Update README with the design for synchronisation rules of RTP on
8251 sender and receiver.
8253 2007-09-14 Sebastian Dröge <slomo@circular-chaos.org>
8255 * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
8256 (gst_wavparse_chain):
8257 Don't push EOS from the chain function, the element
8258 driving the pipeline is responsible for this. The bug
8259 this was meant to fix seems to be queue not forwarding
8260 EOS in all cases (see #476514).
8262 2007-09-13 Wim Taymans <wim.taymans@gmail.com>
8264 * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
8265 (gst_level_transform_ip):
8266 * gst/level/gstlevel.h:
8267 Use basetransform segment so that it is correctly managed on flushes and
8269 Report message timestamp as stream time, which is what an application
8272 2007-09-13 Sebastian Dröge <slomo@circular-chaos.org>
8274 * ext/taglib/gstapev2mux.cc:
8275 * ext/taglib/gstapev2mux.h:
8276 * ext/taglib/gsttaglibmux.c:
8277 * tests/check/elements/apev2mux.c:
8278 Update my mail address.
8280 2007-09-13 Sebastian Dröge <slomo@circular-chaos.org>
8282 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
8283 (gst_wavparse_loop), (gst_wavparse_chain):
8284 Add EOS logic for the push-based mode too. Fixes #476514.
8286 2007-09-12 Wim Taymans <wim.taymans@gmail.com>
8288 * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
8289 * gst/law/alaw-encode.h:
8290 * gst/law/mulaw-encode.c: (gst_mulawenc_init),
8291 (gst_mulawenc_chain):
8292 * gst/law/mulaw-encode.h:
8293 Fix law encoder timestamps.
8295 2007-09-12 Stefan Kost <ensonic@users.sf.net>
8297 * ext/gconf/gstgconfaudiosink.c:
8298 Fix warning when building without debug.
8300 * sys/oss/gstossmixertrack.c:
8301 Use const like in alsamixertrack.c (fixes warnings).
8303 2007-09-11 Wim Taymans <wim.taymans@gmail.com>
8305 * sys/v4l2/v4l2src_calls.c:
8306 (gst_v4l2src_probe_caps_for_format_and_size):
8307 Fix framerate detection code some more.
8308 Handle the case where there is a weird step in the stepwise framerates.
8309 Don't overwrite the min interval with the framerate, use a temp variable
8311 Use max in the Continuous framerate intervals instead of step, which is
8312 1 according to the docs. Fixes #475424.
8314 2007-09-10 Wim Taymans <wim.taymans@gmail.com>
8316 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
8317 Make udpsrc timestamp outgoing buffers based on when they were received.
8318 Also make it output a segment in time.
8320 2007-09-10 Stefan Kost <ensonic@users.sf.net>
8322 * gst/avi/gstavidemux.c:
8323 Plug a little leak. Little code cleanups.
8325 2007-09-09 Tim-Philipp Müller <tim at centricular dot net>
8328 Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
8329 flac versions, 's good for cross-compilation karma.
8331 2007-09-07 Tim-Philipp Müller <tim at centricular dot net>
8333 Patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
8335 * gst/rtp/gstrtph263pay.c:
8336 Fix up header structure so that compilers don't add padding
8337 between the structure fields, since that would lead to us
8338 sending RTP packets with broken headers (as is currently the
8339 case when compiling with MSVC). Also see similar fixes in
8340 libgstrtp in gst-plugins-base. (#474616; #471194)
8342 2007-09-07 Wim Taymans <wim.taymans@gmail.com>
8344 * sys/v4l2/v4l2src_calls.c:
8345 (gst_v4l2src_probe_caps_for_format_and_size):
8346 Don't overwrite our GValue with 0 but instead use the previously
8347 computed value. Fixes #471823 some more.
8349 2007-09-06 Tim-Philipp Müller <tim at centricular dot net>
8351 * docs/plugins/gst-plugins-good-plugins.hierarchy:
8352 No tabs in this file please, or gtk-doc will end up documenting
8353 rather absurd class hierarchies.
8355 2007-09-06 Tim-Philipp Müller <tim at centricular dot net>
8357 * ext/gconf/gstswitchsink.c:
8358 If the new kid element fails to change state for some reason
8359 (e.g. esdsink not being able to connect to the sound server),
8360 forward the error message it posted on the bus instead of just
8361 posting a generic 'Internal state change error: please file a
8362 bug' error message. Fixes #471364.
8364 2007-09-05 Tim-Philipp Müller <tim at centricular dot net>
8366 * gst/qtdemux/Makefile.am:
8367 * gst/qtdemux/qtdemux.c:
8368 Don't assume tags are encoded as UTF-8 (#473670).
8370 2007-09-05 Tim-Philipp Müller <tim at centricular dot net>
8372 * sys/v4l2/gstv4l2src.c:
8373 * sys/v4l2/gstv4l2src.h:
8374 * sys/v4l2/v4l2src_calls.c:
8375 Implement LATENCY queries in the crudest way possible so I don't
8376 have to use sync=false any longer when testing with videosinks.
8378 2007-09-05 Tim-Philipp Müller <tim at centricular dot net>
8383 2007-09-04 Wim Taymans <wim.taymans@gmail.com>
8385 * sys/v4l2/v4l2src_calls.c:
8386 (gst_v4l2src_probe_caps_for_format_and_size):
8387 Add some more debugging in the framerate function.
8388 Iterate stepwise framerate up to and _including_ the max and if nothing
8389 was added to the list, add a dummy 0/1 to 100/1 framerate so that we
8390 don't end up with an empty list. Fixes #471823
8392 2007-09-04 Wim Taymans <wim.taymans@gmail.com>
8394 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8395 (gst_multiudpsink_set_clients_string),
8396 (gst_multiudpsink_get_clients_string),
8397 (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
8398 (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
8399 (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
8400 (gst_multiudpsink_clear):
8401 Add property do configure destination address/port pairs
8402 API:GstMultiUDPSink::clients
8404 2007-09-04 Wim Taymans <wim.taymans@gmail.com>
8406 * tests/examples/Makefile.am:
8407 * tests/examples/rtp/Makefile.am:
8408 * tests/examples/rtp/client-H263p-AMR.sh:
8409 * tests/examples/rtp/client-H263p-PCMA.sdp:
8410 * tests/examples/rtp/client-H263p-PCMA.sh:
8411 * tests/examples/rtp/client-H264-PCMA.sdp:
8412 * tests/examples/rtp/client-H264-PCMA.sh:
8413 * tests/examples/rtp/client-PCMA.sh:
8414 * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
8415 * tests/examples/rtp/server-alsasrc-PCMA.sh:
8416 * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
8417 * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
8418 Added some RTP example scripts for sending and receiving RTP streams.
8420 2007-09-04 Wim Taymans <wim.taymans@gmail.com>
8422 * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
8423 (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
8424 Restructure the setcaps function so that we can also compute the
8425 expected GStreamer output size of the video frames.
8426 Set frame_byte_size correctly so that read-based devices have a chance
8427 of working correctly.
8428 When grabbing a frame, discard frames that are not of the expected size.
8429 Some cameras don't output the right framesize for the first buffer.
8430 Try only a couple of times to get a valid frame, else error out.
8432 * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
8433 (gst_v4l2_fill_lists), (gst_v4l2_get_input):
8434 Add some more debug info when scanning the device.
8436 * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
8437 (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
8438 (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
8439 (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
8440 Add some more debug info when dequeing a frame.
8442 2007-09-04 Stefan Kost <ensonic@users.sf.net>
8444 * gst/wavparse/gstwavparse.c:
8445 More code cleanups. Add some more comment and improve debugs logs.
8447 2007-09-04 Stefan Kost <ensonic@users.sf.net>
8449 * gst/wavparse/gstwavparse.c:
8450 * gst/wavparse/gstwavparse.h:
8451 Implement seek-query. Refactor duration calculations. Appropriate use
8452 of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
8455 2007-09-03 Stefan Kost <ensonic@users.sf.net>
8457 * gst/avi/gstavidemux.c:
8458 Implement seek-query.
8460 2007-08-29 Wim Taymans <wim.taymans@gmail.com>
8462 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
8463 (gst_rtspsrc_dup_printf):
8464 Use new basesink async property to make sparse RTCP packet not wait for
8467 2007-08-27 Jan Schmidt <thaytan@mad.scientist.com>
8469 * gst/audiofx/Makefile.am:
8470 Dist the right file.
8472 2007-08-23 Wim Taymans <wim.taymans@gmail.com>
8474 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
8475 (gst_rtspsrc_get_float), (gst_rtspsrc_play):
8476 Make sure we generate and parse floating point values in the POSIX
8477 locale instead of the current locale.
8479 2007-08-22 Wim Taymans <wim.taymans@gmail.com>
8481 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
8482 (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8484 * gst/rtsp/gstrtspsrc.h:
8485 Fix method detection again.
8486 Keep track of when we must send a Range header.
8487 Use segment values for Range, Speed and Scale headers.
8488 Parse Speed and Scale headers to update the segment values.
8490 2007-08-22 Stefan Kost <ensonic@users.sf.net>
8492 patch by: Mark Nauwelaerts <manauw@skynet.be>
8494 * sys/v4l2/v4l2src_calls.c:
8495 Handle optional v4l2 ioctls gracefully.
8497 2007-08-20 Wim Taymans <wim.taymans@gmail.com>
8499 * gst/rtp/Makefile.am:
8500 * gst/rtp/gstrtp.c: (plugin_init):
8501 * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
8502 (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
8503 (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
8504 (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
8505 (gst_rtp_h263_depay_get_property),
8506 (gst_rtp_h263_depay_change_state),
8507 (gst_rtp_h263_depay_plugin_init):
8508 * gst/rtp/gstrtph263depay.h:
8509 Added an H263 depayloader. Fixes #369392.
8511 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
8512 (gst_rtp_h263p_depay_process):
8513 * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
8514 (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
8515 Make the H263+ pay/depayloader support H263-1998 and H263-2000
8517 Also alow plain H263 on the h263p payloaders. Fixes #465040.
8519 2007-08-19 Sebastian Dröge <slomo@circular-chaos.org>
8521 * gst/audiofx/audiochebyshevfreqband.c:
8522 * gst/audiofx/audiochebyshevfreqlimit.c:
8523 Add small comparision with the windowed sinc filters in the docs.
8525 2007-08-19 Sebastian Dröge <slomo@circular-chaos.org>
8527 * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
8528 (audiochebyshevfreqband_suite):
8529 * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
8530 (audiochebyshevfreqlimit_suite):
8531 Also test 32 bit float mode and the type 2 variants of the filters.
8533 2007-08-18 Wim Taymans <wim.taymans@gmail.com>
8535 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
8536 (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8538 Refactor the udp and interleaved loop function a bit.
8540 2007-08-17 Wim Taymans <wim.taymans@gmail.com>
8542 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8543 (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
8544 (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
8545 (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8546 (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8547 (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
8548 * gst/rtsp/gstrtspsrc.h:
8549 Protect connection activity with a new lock, avoids deadlocks when going
8550 to PAUSED. Fixes #455808.
8552 2007-08-17 Wim Taymans <wim.taymans@gmail.com>
8554 * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
8555 Fix debug statement.
8557 2007-08-17 Wim Taymans <wim.taymans@gmail.com>
8559 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
8560 Fix stray %u in debug line as spotted by Saur on IRC.
8562 2007-08-17 Sebastian Dröge <slomo@circular-chaos.org>
8564 * gst/audiofx/audiochebyshevfreqband.c:
8565 (gst_audio_chebyshev_freq_band_class_init):
8566 * gst/audiofx/audiochebyshevfreqlimit.c:
8567 (gst_audio_chebyshev_freq_limit_class_init):
8568 Use generator macros for the process functions for the different
8569 sample types, add lower upper boundaries for the GObject properties
8570 so automatically generated UIs can use sliders and add a note about
8571 the number of poles as a too high number of poles combined with
8572 very low or very high frequencies will produce only noise.
8573 * docs/plugins/gst-plugins-good-plugins.args:
8574 Regenerated for the property changes.
8576 2007-08-17 Wim Taymans <wim.taymans@gmail.com>
8578 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
8579 (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
8580 (gst_rtspsrc_stream_configure_udp_sink),
8581 (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
8582 (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
8583 (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8584 (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
8585 (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
8586 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8587 * gst/rtsp/gstrtspsrc.h:
8588 Improve timeout handling.
8589 Use the same socket for sending and receiving RTCP packets so that some
8590 servers can track clients better.
8591 Improve connection closed handling. Try to reconnect.
8592 Don't overwrite our content base with NULL.
8594 Improve range parsing and handling.
8595 Remove flushing hack now that core does the right thing.
8597 2007-08-17 Wim Taymans <wim.taymans@gmail.com>
8599 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
8600 (gst_multiudpsink_init), (gst_multiudpsink_set_property),
8601 (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
8602 (gst_multiudpsink_close), (gst_multiudpsink_add):
8603 * gst/udp/gstmultiudpsink.h:
8604 Add support for getting and setting the socket to use.
8606 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8607 (gst_udpsrc_create), (gst_udpsrc_get_property):
8608 Add support for getting the currently used socket.
8610 2007-08-16 Sebastian Dröge <slomo@circular-chaos.org>
8612 reviewed by: Stefan Kost <ensonic@users.sf.net>
8614 * gst/audiofx/Makefile.am:
8615 * gst/audiofx/audiochebyshevfreqband.c:
8616 (gst_audio_chebyshev_freq_band_mode_get_type),
8617 (gst_audio_chebyshev_freq_band_base_init),
8618 (gst_audio_chebyshev_freq_band_dispose),
8619 (gst_audio_chebyshev_freq_band_class_init),
8620 (gst_audio_chebyshev_freq_band_init),
8621 (generate_biquad_coefficients), (calculate_gain),
8622 (generate_coefficients),
8623 (gst_audio_chebyshev_freq_band_set_property),
8624 (gst_audio_chebyshev_freq_band_get_property),
8625 (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
8626 (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
8627 (gst_audio_chebyshev_freq_band_start):
8628 * gst/audiofx/audiochebyshevfreqband.h:
8629 * gst/audiofx/audiochebyshevfreqlimit.c:
8630 (gst_audio_chebyshev_freq_limit_mode_get_type),
8631 (gst_audio_chebyshev_freq_limit_base_init),
8632 (gst_audio_chebyshev_freq_limit_dispose),
8633 (gst_audio_chebyshev_freq_limit_class_init),
8634 (gst_audio_chebyshev_freq_limit_init),
8635 (generate_biquad_coefficients), (calculate_gain),
8636 (generate_coefficients),
8637 (gst_audio_chebyshev_freq_limit_set_property),
8638 (gst_audio_chebyshev_freq_limit_get_property),
8639 (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
8640 (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
8641 (gst_audio_chebyshev_freq_limit_start):
8642 * gst/audiofx/audiochebyshevfreqlimit.h:
8643 * gst/audiofx/audiofx.c: (plugin_init):
8644 Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
8647 * tests/check/Makefile.am:
8648 * tests/check/elements/.cvsignore:
8649 * tests/check/elements/audiochebyshevfreqband.c:
8650 (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
8651 (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
8652 * tests/check/elements/audiochebyshevfreqlimit.c:
8653 (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
8654 (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
8655 Add unit tests for the chebyshev filters.
8657 * docs/plugins/Makefile.am:
8658 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8659 * docs/plugins/gst-plugins-good-plugins-sections.txt:
8660 * docs/plugins/gst-plugins-good-plugins.args:
8661 * docs/plugins/inspect/plugin-1394.xml:
8662 * docs/plugins/inspect/plugin-audiofx.xml:
8663 * docs/plugins/inspect/plugin-dv.xml:
8664 * docs/plugins/inspect/plugin-flac.xml:
8665 * docs/plugins/inspect/plugin-jpeg.xml:
8666 * docs/plugins/inspect/plugin-png.xml:
8667 * docs/plugins/inspect/plugin-rtp.xml:
8668 * docs/plugins/inspect/plugin-shout2send.xml:
8669 * docs/plugins/inspect/plugin-wavpack.xml:
8670 And add docs for the chebyshev filters. While doing
8671 that also run make update in docs/plugins.
8673 2007-08-16 Stefan Kost <ensonic@users.sf.net>
8675 * ext/annodex/gstcmmltag.c:
8676 * gst/rtp/gstrtpvorbispay.c:
8677 Make ro memory to share.
8679 2007-08-16 Wim Taymans <wim.taymans@gmail.com>
8681 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
8682 Improve UDP performance by avoiding a select() when we have data
8683 available immediatly.
8685 2007-08-16 Wim Taymans <wim.taymans@gmail.com>
8687 * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
8688 (gst_rtp_dec_class_init):
8689 * gst/rtsp/gstrtpdec.h:
8690 Add (dummy) SSRC management signals.
8692 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8693 (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
8694 (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
8695 (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
8696 (on_timeout), (gst_rtspsrc_stream_configure_manager),
8697 (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
8698 (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
8699 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8700 * gst/rtsp/gstrtspsrc.h:
8701 Add connection-speed property.
8702 Add find_stream helper functions.
8703 Handle stream EOS based on BYE messages or SSRC timeout.
8704 Returns SUCCESS from the state change function as we hide our async
8705 elements from the parent.
8707 2007-08-16 Stefan Kost <ensonic@users.sf.net>
8709 * gst/debug/rndbuffersize.c:
8712 2007-08-14 Stefan Kost <ensonic@users.sf.net>
8714 * gst/debug/Makefile.am:
8715 * gst/debug/breakmydata.c:
8716 * gst/debug/gstdebug.c:
8717 * gst/debug/negotiation.c:
8718 * gst/debug/progressreport.c:
8719 * gst/debug/rndbuffersize.c:
8720 * gst/debug/testplugin.c:
8721 Add new test element and clean-up the others a little.
8723 2007-08-12 Wim Taymans <wim.taymans@gmail.com>
8725 * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
8726 Fix parsing of mp4a version 0 atoms. Fixes #465774.
8728 2007-08-10 Stefan Kost <ensonic@users.sf.net>
8730 * gst/rtp/gstrtpilbcdepay.c:
8733 2007-08-10 Wim Taymans <wim.taymans@gmail.com>
8735 * gst/rtp/gstrtpmpvdepay.c:
8736 Set the mpegversion in the caps so that autoplugging does not get
8739 2007-08-09 Thomas Vander Stichele <thomas at apestaart dot org>
8744 Updated translations.
8746 2007-08-08 Michael Smith <msmith@fluendo.com>
8748 * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
8749 Render right border in the correct location.
8751 2007-08-08 Wim Taymans <wim.taymans@gmail.com>
8753 Patch by: Olivier Crete <tester at tester dot ca>
8755 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
8756 * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
8757 Make mode property a string. Fixes #464475.
8759 2007-08-05 Stefan Kost <ensonic@users.sf.net>
8761 * ext/flac/gstflacenc.c:
8762 Widen caps to match decoder a bit and add more FIXMEs.
8764 2007-08-05 Stefan Kost <ensonic@users.sf.net>
8766 patch by: Mark Nauwelaerts <manauw@skynet.be>
8768 * gst/avi/gstavimux.c:
8769 Fix ODML index tag numbering. Fixes #463624.
8771 2007-08-03 Wim Taymans <wim.taymans@gmail.com>
8773 * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
8774 (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8775 (gst_rtspsrc_stream_configure_tcp),
8776 (gst_rtspsrc_stream_configure_udp_sink):
8777 Fix default clock-rate for realmedia.
8778 Fix parsing of transport.
8779 Don't try to link NULL pads.
8781 2007-07-30 Tim-Philipp Müller <tim at centricular dot net>
8784 Add POTFILES.skip with list of source files that aren't disted at the
8785 moment but contain translatable strings. Should hopefully pacify
8786 broken tools and make it clearer that these files are left out
8787 intentionally (#461600).
8789 2007-07-30 Edward Hervey <bilboed@bilboed.com>
8791 * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
8792 If the buffer was entirely clipped ... don't try sending it :)
8794 2007-07-27 Wim Taymans <wim.taymans@gmail.com>
8796 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
8797 (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
8798 (gst_rtspsrc_create_transports_string),
8799 (gst_rtspsrc_prepare_transports):
8800 If we don't hav a session manager, set the caps on outgoing buffers
8802 Force PAUSE/PLAY methods for now until the extensions can overwrite.
8803 Append final bit of the transport string even when it does not contain a
8806 2007-07-27 Wim Taymans <wim.taymans@gmail.com>
8808 * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
8809 (gst_rtsp_ext_list_connect):
8810 * gst/rtsp/gstrtspext.h:
8811 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8812 (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
8813 Clean up the interface list.
8814 Allow connecting to interface signals for the extensions.
8815 Remove old extension code.
8816 Free list on cleanup.
8817 Allow extensions to send additional RTSP messages.
8819 2007-07-27 Jan Schmidt <thaytan@mad.scientist.com>
8821 * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8822 Handle a NULL gconf key gracefully by rendering the default element.
8824 2007-07-27 Wim Taymans <wim.taymans@gmail.com>
8826 * gst/rtsp/gstrtspext.h:
8827 Fix include path for extension interface.
8829 2007-07-26 Sebastian Dröge <slomo@circular-chaos.org>
8831 * gst/audiofx/audioamplify.h:
8832 Also remove a now unecessary variable here.
8834 2007-07-26 Sebastian Dröge <slomo@circular-chaos.org>
8836 * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
8837 (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
8838 * gst/audiofx/audiodynamic.c:
8839 (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
8840 (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
8841 * gst/audiofx/audiodynamic.h:
8842 * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
8843 (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
8844 * gst/audiofx/audioinvert.h:
8845 Don't save format information ourselves, this is already saved in
8848 2007-07-26 Wim Taymans <wim.taymans@gmail.com>
8850 * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8851 (gst_rtsp_ext_list_stream_select):
8852 * gst/rtsp/gstrtspext.h:
8853 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
8854 Use rank to filter out extensions.
8855 Add url to stream_select interface call.
8857 2007-07-25 Wim Taymans <wim.taymans@gmail.com>
8859 * gst/rtsp/Makefile.am:
8860 * gst/rtsp/base64.c:
8861 * gst/rtsp/base64.h:
8862 * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
8863 (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
8864 (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
8865 (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
8866 (gst_rtsp_ext_list_setup_media),
8867 (gst_rtsp_ext_list_configure_stream),
8868 (gst_rtsp_ext_list_get_transports),
8869 (gst_rtsp_ext_list_stream_select):
8870 * gst/rtsp/gstrtspext.h:
8871 * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
8872 (gst_rtspsrc_class_init), (gst_rtspsrc_init),
8873 (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
8874 (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
8875 (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
8876 (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
8877 (gst_rtspsrc_stream_configure_tcp),
8878 (gst_rtspsrc_stream_configure_mcast),
8879 (gst_rtspsrc_stream_configure_udp),
8880 (gst_rtspsrc_stream_configure_udp_sink),
8881 (gst_rtspsrc_stream_configure_transport),
8882 (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
8883 (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
8884 (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
8885 (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
8886 (gst_rtspsrc_try_send), (gst_rtspsrc_send),
8887 (gst_rtspsrc_parse_methods),
8888 (gst_rtspsrc_create_transports_string),
8889 (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
8890 (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
8891 (gst_rtspsrc_play), (gst_rtspsrc_pause),
8892 (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
8893 * gst/rtsp/gstrtspsrc.h:
8895 * gst/rtsp/rtspconnection.c:
8896 * gst/rtsp/rtspconnection.h:
8897 * gst/rtsp/rtspdefs.c:
8898 * gst/rtsp/rtspdefs.h:
8899 * gst/rtsp/rtspext.h:
8900 * gst/rtsp/rtspextwms.c:
8901 * gst/rtsp/rtspextwms.h:
8902 * gst/rtsp/rtspmessage.c:
8903 * gst/rtsp/rtspmessage.h:
8904 * gst/rtsp/rtsprange.c:
8905 * gst/rtsp/rtsprange.h:
8906 * gst/rtsp/rtsptransport.c:
8907 * gst/rtsp/rtsptransport.h:
8908 * gst/rtsp/rtspurl.c:
8909 * gst/rtsp/rtspurl.h:
8911 * gst/rtsp/sdpmessage.c:
8912 * gst/rtsp/sdpmessage.h:
8914 Use shiny new RTSP and SDP library.
8915 Implement RTSP extensions using the new interface.
8916 Remove a lot of old code.
8918 2007-07-24 Edward Hervey <bilboed@bilboed.com>
8920 * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8921 Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
8923 2007-07-24 Sebastian Dröge <slomo@circular-chaos.org>
8925 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
8926 Don't unref the outgoing buffer twice when dropping it because it's
8927 outside of the segment.
8929 2007-07-24 Sebastian Dröge <slomo@circular-chaos.org>
8932 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
8933 (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
8934 Use the new buffer clipping function from gstaudio here and
8935 require gst-plugins-base CVS.
8936 * tests/check/elements/wavpackdec.c: (GST_START_TEST):
8937 For framed Wavpack buffers we require a valid timestamp.
8939 2007-07-23 Wim Taymans <wim.taymans@gmail.com>
8941 * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
8942 (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
8943 (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
8944 Clip raw audio and video when we can, keep track of current output
8946 Don't leak buffers and events when there is no output pad.
8947 Improve debugging here and there.
8949 2007-07-23 Stefan Kost <ensonic@users.sf.net>
8952 Sync liboil check with plugins-base.
8954 2007-07-20 Stefan Kost <ensonic@users.sf.net>
8956 * ext/annodex/Makefile.am:
8959 * ext/cdio/gstcdiocddasrc.c:
8960 * ext/libpng/gstpngdec.c: (gst_pngdec_task):
8963 * ext/cairo/Makefile.am:
8964 * gst/videofilter/Makefile.am:
8965 * tests/examples/level/Makefile.am:
8966 Use $(LIBM) instead of -lm
8968 2007-07-18 Stefan Kost <ensonic@users.sf.net>
8970 * sys/v4l2/gstv4l2src.c:
8971 Add another example pipeline.
8973 2007-07-18 Stefan Kost <ensonic@users.sf.net>
8975 Patch by: Alexander Eichner <alexeichi@yahoo.de>
8977 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
8980 * sys/v4l2/gstv4l2tuner.c:
8981 (gst_v4l2_tuner_set_frequency_and_notify):
8982 Don't touch the property - its still disabled.
8984 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
8985 (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
8986 * sys/v4l2/v4l2src_calls.h:
8987 Improve fallback format negotionation. Fixes #451388
8989 2007-07-18 Stefan Kost <ensonic@users.sf.net>
8991 * tests/check/elements/videocrop.c: (GST_START_TEST):
8994 2007-07-18 Stefan Kost <ensonic@users.sf.net>
8996 * docs/plugins/Makefile.am:
8997 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8998 * docs/plugins/gst-plugins-good-plugins-sections.txt:
8999 * docs/plugins/inspect/plugin-jpeg.xml:
9000 * docs/plugins/inspect/plugin-png.xml:
9001 * ext/jpeg/gstjpegdec.c:
9002 * ext/libpng/gstpngdec.c: (gst_pngdec_task),
9003 (gst_pngdec_sink_setcaps):
9004 More docs. More logs in pngdec.
9006 2007-07-17 Stefan Kost <ensonic@users.sf.net>
9008 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
9009 Initialize num_buffers with minimum value.
9011 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
9012 (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
9013 Handle frame-size query failure gracefully.
9015 2007-07-16 Wim Taymans <wim.taymans@gmail.com>
9017 * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
9018 Fix parsing of esds atoms inside mp4a atoms so that we can set correct
9019 codec_info for AAC audio. Fixes #457097 along with a whole other bunch
9022 2007-07-16 Sebastian Dröge <slomo@circular-chaos.org>
9024 * ext/wavpack/gstwavpackdec.c:
9025 (gst_wavpack_dec_clip_outgoing_buffer):
9026 Fix buffer clipping to correctly clip to the segment stop.
9028 2007-07-13 Jan Schmidt <thaytan@mad.scientist.com>
9031 * tests/Makefile.am:
9032 Remove bogus check for libcheck, since we check for
9033 gstreamer-check and it pulls in the required info from there,
9034 and we weren't actually _using_ the information for libcheck
9037 2007-07-12 Stefan Kost <ensonic@users.sf.net>
9040 Use pkg-config to locate check.
9042 2007-07-11 Tim-Philipp Müller <tim at centricular dot net>
9044 * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
9045 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
9046 * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
9047 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
9048 * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
9049 * gst/effectv/gstaging.c: (gst_agingtv_transform):
9050 * gst/effectv/gstdice.c: (gst_dicetv_transform):
9051 * gst/effectv/gstedge.c: (gst_edgetv_transform):
9052 * gst/effectv/gstquark.c: (gst_quarktv_transform):
9053 * gst/effectv/gstrev.c: (gst_revtv_transform):
9054 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
9055 * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
9056 * gst/effectv/gstwarp.c: (gst_warptv_transform):
9057 * gst/matroska/matroska-demux.c:
9058 (gst_matroska_demux_add_wvpk_header),
9059 (gst_matroska_demux_check_subtitle_buffer),
9060 (gst_matroska_decode_buffer):
9061 * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
9062 Fix build against core CVS.
9064 2007-07-10 Edward Hervey <bilboed@gmail.com>
9066 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
9067 Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
9068 don't have enough granularity to convert that boolean into a
9071 2007-07-06 Michael Smith <msmith@fluendo.com>
9073 * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
9074 (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
9075 (gst_alawdec_change_state):
9076 * gst/law/alaw-decode.h:
9077 * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
9078 (gst_mulawdec_class_init), (gst_mulawdec_init),
9079 (gst_mulawdec_chain), (gst_mulawdec_change_state):
9080 * gst/law/mulaw-decode.h:
9081 Fix capsnego bogosity in *law decoders.
9083 2007-07-06 Michael Smith <msmith@fluendo.com>
9085 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
9086 (gst_smokeenc_setcaps), (gst_smokeenc_chain),
9087 (gst_smokeenc_change_state):
9088 * ext/jpeg/gstsmokeenc.h:
9089 Remove stupidity in get/set caps functions.
9090 Fix some refcounting problems.
9092 2007-07-06 Jan Schmidt <thaytan@mad.scientist.com>
9094 * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
9095 Remove endianness-flipping hack that seems to have been required
9096 only because of a bug in ffmpegcolorspace.
9097 Partially Fixes: #451908
9099 2007-07-05 Stefan Kost <ensonic@users.sf.net>
9101 * docs/plugins/Makefile.am:
9102 Simplify --extra-dir as gtkdoc scans recursively.
9104 2007-07-03 Wim Taymans <wim@fluendo.com>
9106 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9108 * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
9109 Set the encoding-name in the rtp caps to all uppercase, as required by
9111 Some small cleanups in the error paths. Fixes #453037.
9113 2007-06-28 Sebastian Dröge <slomo@circular-chaos.org>
9115 * ext/wavpack/gstwavpackparse.c:
9116 (gst_wavpack_parse_index_get_last_entry),
9117 (gst_wavpack_parse_index_get_entry_from_sample),
9118 (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
9119 (gst_wavpack_parse_scan_to_find_sample):
9120 * ext/wavpack/gstwavpackparse.h:
9121 Use a GSList for the GArray that is used like a list anyway.
9123 2007-06-28 Tim-Philipp Müller <tim at centricular dot net>
9125 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
9126 (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
9127 (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
9128 Add state change function where we set 0/1 as default framerate in
9129 case our setcaps function isn't called, like it might not in a
9130 filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
9131 gdkpixbufdec trying to create caps with a 0/0 framerate.
9132 Also post an error message on the bus if gst_pad_push() fails when
9133 called from our sink event handler (+1 for flow returns for event
9134 functions in 0.11) instead of failing silently.
9136 2007-06-27 Wim Taymans <wim@fluendo.com>
9138 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
9139 Cast stack args to the proper types. Fixes #451249.
9141 2007-06-27 Wim Taymans <wim@fluendo.com>
9143 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
9144 (new_session_pad), (gst_rtspsrc_setup_streams):
9145 * gst/rtsp/gstrtspsrc.h:
9146 For container formats we only need to activate one of the streams so
9147 that we correctly signal no-more-pads. Fixes #451015.
9149 2007-06-25 Stefan Kost <ensonic@users.sf.net>
9151 * docs/plugins/gst-plugins-good-plugins.args:
9152 * docs/plugins/inspect/plugin-aasink.xml:
9153 * docs/plugins/inspect/plugin-alaw.xml:
9154 * docs/plugins/inspect/plugin-alpha.xml:
9155 * docs/plugins/inspect/plugin-alphacolor.xml:
9156 * docs/plugins/inspect/plugin-annodex.xml:
9157 * docs/plugins/inspect/plugin-apetag.xml:
9158 * docs/plugins/inspect/plugin-audiofx.xml:
9159 * docs/plugins/inspect/plugin-auparse.xml:
9160 * docs/plugins/inspect/plugin-autodetect.xml:
9161 * docs/plugins/inspect/plugin-avi.xml:
9162 * docs/plugins/inspect/plugin-cacasink.xml:
9163 * docs/plugins/inspect/plugin-cairo.xml:
9164 * docs/plugins/inspect/plugin-cdio.xml:
9165 * docs/plugins/inspect/plugin-cutter.xml:
9166 * docs/plugins/inspect/plugin-debug.xml:
9167 * docs/plugins/inspect/plugin-efence.xml:
9168 * docs/plugins/inspect/plugin-effectv.xml:
9169 * docs/plugins/inspect/plugin-esdsink.xml:
9170 * docs/plugins/inspect/plugin-flac.xml:
9171 * docs/plugins/inspect/plugin-flxdec.xml:
9172 * docs/plugins/inspect/plugin-gconfelements.xml:
9173 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9174 * docs/plugins/inspect/plugin-goom.xml:
9175 * docs/plugins/inspect/plugin-halelements.xml:
9176 * docs/plugins/inspect/plugin-icydemux.xml:
9177 * docs/plugins/inspect/plugin-id3demux.xml:
9178 * docs/plugins/inspect/plugin-jpeg.xml:
9179 * docs/plugins/inspect/plugin-ladspa.xml:
9180 * docs/plugins/inspect/plugin-level.xml:
9181 * docs/plugins/inspect/plugin-matroska.xml:
9182 * docs/plugins/inspect/plugin-mulaw.xml:
9183 * docs/plugins/inspect/plugin-multipart.xml:
9184 * docs/plugins/inspect/plugin-navigationtest.xml:
9185 * docs/plugins/inspect/plugin-ossaudio.xml:
9186 * docs/plugins/inspect/plugin-png.xml:
9187 * docs/plugins/inspect/plugin-quicktime.xml:
9188 * docs/plugins/inspect/plugin-rtp.xml:
9189 * docs/plugins/inspect/plugin-rtsp.xml:
9190 * docs/plugins/inspect/plugin-smpte.xml:
9191 * docs/plugins/inspect/plugin-speex.xml:
9192 * docs/plugins/inspect/plugin-taglib.xml:
9193 * docs/plugins/inspect/plugin-udp.xml:
9194 * docs/plugins/inspect/plugin-videobalance.xml:
9195 * docs/plugins/inspect/plugin-videobox.xml:
9196 * docs/plugins/inspect/plugin-videocrop.xml:
9197 * docs/plugins/inspect/plugin-videoflip.xml:
9198 * docs/plugins/inspect/plugin-videomixer.xml:
9199 * docs/plugins/inspect/plugin-wavenc.xml:
9200 * docs/plugins/inspect/plugin-wavparse.xml:
9201 * docs/plugins/inspect/plugin-ximagesrc.xml:
9202 Update docs with caps info.
9204 2007-06-25 Tim-Philipp Müller <tim at centricular dot net>
9207 Add more files with translatable strings (#450878).
9209 2007-06-22 Jan Schmidt <thaytan@noraisin.net>
9212 Updating all the maintainers files
9214 2007-06-22 Edward Hervey <edward@fluendo.com>
9216 * ext/flac/gstflactag.c: (gst_flac_tag_init):
9217 * gst/interleave/deinterleave.c: (deinterleave_init),
9218 (deinterleave_sink_link):
9219 * gst/interleave/interleave.c: (interleave_init):
9220 * gst/median/gstmedian.c: (gst_median_init):
9221 * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
9223 * tests/check/elements/id3demux.c: (pad_added_cb):
9224 Remove unused variable.
9226 2007-06-21 Jan Schmidt <thaytan@mad.scientist.com>
9228 * ext/gconf/gconf.h:
9229 Make the prototype of gst_gconf_get_key_for_sink_profile
9230 match the implementation.
9231 Patch by: Damien Carbery <damien dot carbery at sun dot com>
9234 2007-06-20 Michael Smith <msmith@fluendo.com>
9236 * gst/rtp/gstrtpdepay.c:
9237 Fix description - rtpdepay is not a payloader.
9239 2007-06-20 Stefan Kost <ensonic@users.sf.net>
9241 * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
9242 (qtdemux_video_caps):
9243 * gst/qtdemux/qtdemux_fourcc.h:
9244 Add MJPG to the variants of motion jpeg.
9246 2007-06-19 Tim-Philipp Müller <tim at centricular dot net>
9248 * tests/check/Makefile.am:
9249 * tests/check/elements/audiopanorama.c: (GST_START_TEST):
9250 * tests/check/elements/videocrop.c: (GST_START_TEST):
9251 * tests/check/elements/videofilter.c:
9252 * tests/check/elements/wavpackdec.c: (GST_START_TEST):
9253 * tests/check/elements/wavpackparse.c: (GST_START_TEST):
9254 Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
9255 error flags are included and it errors out on compiler warnings
9256 for CVS builds; remove unused variables in various unit tests.
9258 2007-06-19 Wim Taymans <wim@fluendo.com>
9260 * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9261 (rtsp_connection_close), (rtsp_connection_free):
9262 Use threadsafe inet_ntop to convert an ip number to a string.
9264 Don't leak fd (and ip) when freeing a connection without first closing
9267 2007-06-19 Jan Schmidt <thaytan@mad.scientist.com>
9272 * gst-plugins-good.doap:
9273 Add 0.10.6 to the doap file.
9275 === release 0.10.6 ===
9277 2007-06-18 Jan Schmidt <thaytan@mad.scientist.com>
9280 releasing 0.10.6, "Wobble Board"
9282 2007-06-17 Tim-Philipp Müller <tim at centricular dot net>
9284 * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9285 (rtsp_connection_free):
9286 Revert previous commit again, since we are frozen (sorry).
9288 2007-06-17 Tim-Philipp Müller <tim at centricular dot net>
9290 Patch by: Peter Kjellerstedt <pkj at axis com>
9292 * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9293 (rtsp_connection_free):
9294 inet_ntoa() uses a static buffer internally, so we need to copy the
9295 returned string if we want to store it for later (#447961).
9297 2007-06-15 Jan Schmidt <thaytan@mad.scientist.com>
9299 * win32/vs6/autogen.dsp:
9300 * win32/vs6/gst_plugins_good.dsw:
9301 * win32/vs6/libgstalaw.dsp:
9302 * win32/vs6/libgstalpha.dsp:
9303 * win32/vs6/libgstalphacolor.dsp:
9304 * win32/vs6/libgstapetag.dsp:
9305 * win32/vs6/libgstaudiofx.dsp:
9306 * win32/vs6/libgstauparse.dsp:
9307 * win32/vs6/libgstautodetect.dsp:
9308 * win32/vs6/libgstavi.dsp:
9309 * win32/vs6/libgstcutter.dsp:
9310 * win32/vs6/libgstdirectdraw.dsp:
9311 * win32/vs6/libgstdirectsound.dsp:
9312 * win32/vs6/libgsteffectv.dsp:
9313 * win32/vs6/libgstflx.dsp:
9314 * win32/vs6/libgstgoom.dsp:
9315 * win32/vs6/libgsticydemux.dsp:
9316 * win32/vs6/libgstid3demux.dsp:
9317 * win32/vs6/libgstinterleave.dsp:
9318 * win32/vs6/libgstjpeg.dsp:
9319 * win32/vs6/libgstlevel.dsp:
9320 * win32/vs6/libgstmatroska.dsp:
9321 * win32/vs6/libgstmedian.dsp:
9322 * win32/vs6/libgstmonoscope.dsp:
9323 * win32/vs6/libgstmulaw.dsp:
9324 * win32/vs6/libgstmultipart.dsp:
9325 * win32/vs6/libgstqtdemux.dsp:
9326 * win32/vs6/libgstrtp.dsp:
9327 * win32/vs6/libgstrtsp.dsp:
9328 * win32/vs6/libgstsmpte.dsp:
9329 * win32/vs6/libgstspeex.dsp:
9330 * win32/vs6/libgstudp.dsp:
9331 * win32/vs6/libgstvideobalance.dsp:
9332 * win32/vs6/libgstvideobox.dsp:
9333 * win32/vs6/libgstvideocrop.dsp:
9334 * win32/vs6/libgstvideoflip.dsp:
9335 * win32/vs6/libgstvideomixer.dsp:
9336 * win32/vs6/libgstwaveform.dsp:
9337 * win32/vs6/libgstwavenc.dsp:
9338 * win32/vs6/libgstwavparse.dsp:
9339 Mark *.dsp & *.dsw as binary files and convert to DOS line
9340 endings, as they don't load into VS6 correctly otherwise.
9342 2007-06-15 Jan Schmidt <thaytan@mad.scientist.com>
9344 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9345 (rtsp_connection_connect):
9346 Fix the MingW build.
9347 Patch By: Vincent Torri <vtorri at univ-evry dot fr>
9350 2007-06-14 Jan Schmidt <thaytan@mad.scientist.com>
9352 * tests/check/elements/.cvsignore:
9353 * tests/icles/.cvsignore:
9354 Hush the buildbots up
9356 2007-06-14 Jan Schmidt <thaytan@mad.scientist.com>
9360 * sys/directdraw/Makefile.am:
9361 * sys/directsound/Makefile.am:
9362 * sys/waveform/Makefile.am:
9363 Make sure to dist everything needed for win32 builds.
9365 2007-06-14 Edward Hervey <edward@fluendo.com>
9367 * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
9368 For AMR-NB streams, export the AMRSpecificBox as codec_data on the
9372 2007-06-13 Wim Taymans <wim@fluendo.com>
9374 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
9375 Make sure we allocate enough memory for the codec_data.
9378 2007-06-12 Sebastien Moutte <sebastien@moutte.net>
9381 Add videocrop project file to the win32 manifest.
9382 * win32/vs6/gst_plugins_good.dsw:
9383 Add qtdemux,videocrop and waveform projects to the workspace.
9384 * win32/vs6/libgstqtdemux.dsp:
9385 Add zlib to the link list of qtdemux.
9386 * win32/vs6/libgstvideocrop.dsp:
9387 Add a project file for videocrop.
9389 2007-06-12 Jan Schmidt <thaytan@mad.scientist.com>
9392 Add qtdemux for translation
9394 2007-06-12 Jan Schmidt <thaytan@mad.scientist.com>
9397 * docs/plugins/Makefile.am:
9398 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9399 * docs/plugins/gst-plugins-good-plugins-sections.txt:
9400 * docs/plugins/inspect/plugin-videocrop.xml:
9401 * gst-plugins-good.spec.in:
9403 * tests/check/Makefile.am:
9404 * tests/icles/Makefile.am:
9405 * tests/icles/videocrop-test.c:
9406 Move videocrop and osxvideo from -bad.
9408 2007-06-12 Jan Schmidt <thaytan@mad.scientist.com>
9411 * docs/plugins/Makefile.am:
9412 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9413 * docs/plugins/gst-plugins-good-plugins-sections.txt:
9414 * docs/plugins/gst-plugins-good-plugins.args:
9415 * docs/plugins/inspect/plugin-qtdemux.xml:
9416 * docs/plugins/inspect/plugin-quicktime.xml:
9418 Move qtdemux from -bad.
9420 * gst-plugins-good.spec.in:
9421 Update spec file to reflect moving of qtdemux and wavpack
9423 2007-06-12 Jan Schmidt <thaytan@mad.scientist.com>
9426 * docs/plugins/Makefile.am:
9427 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9428 * docs/plugins/gst-plugins-good-plugins-sections.txt:
9429 * docs/plugins/inspect/plugin-directdraw.xml:
9430 * docs/plugins/inspect/plugin-directsound.xml:
9431 * docs/plugins/inspect/plugin-waveform.xml:
9432 Move the waveform plugin from -bad too. Update the inspect xml
9433 files to mention Plugins Good instead of Plugins Bad.
9435 2007-06-12 Andy Wingo <wingo@pobox.com>
9437 * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
9438 (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
9439 (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
9440 finalization and resuscitation. No longer public.
9441 (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
9442 (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
9443 (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
9444 (gst_v4l2_buffer_pool_destroy): Make the pool follow common
9445 miniobject semantics, and be threadsafe.
9446 (gst_v4l2src_queue_frame): Remove this function, as we just call
9447 the ioctls directly in the two places where we queue buffers.
9448 (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
9450 (gst_v4l2src_capture_init): Use the new buffer_pool_new function
9451 to allocate the pool, which also preallocates the GstBuffers.
9452 (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
9453 queueing the frames directly.
9454 (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
9455 mmap buffers have been dequeued.
9457 * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
9458 real MiniObject instead of rolling our own refcounting and
9459 finalizing. Give it a lock.
9460 (struct _GstV4l2Buffer): Remove one intermediary object, having
9461 the buffers hold the struct v4l2_buffer directly.
9463 * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
9464 capture_init so that it can set them on the buffers that it will
9466 (gst_v4l2src_get_read): For better or for worse, include the
9467 timestamping and offsetting code here; really we should be using
9469 (gst_v4l2src_get_mmap): Just make grab_frame return one of our
9470 preallocated, mmap'd buffers.
9472 2007-06-11 Wim Taymans <wim@fluendo.com>
9474 Patch by: daniel fischer <dan at f3c dot com>
9476 * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
9477 (gst_ximage_src_get_caps):
9478 Actually use the display_name property so that we can dump any
9479 available X display. Fixes #445905.
9481 2007-06-11 Wim Taymans <wim@fluendo.com>
9483 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
9485 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
9486 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
9487 Add missing rate fields to caps. Fixes #441118.
9489 2007-06-10 Sebastien Moutte <sebastien@moutte.net>
9491 * win32/vs6/gst_plugins_good.dsw:
9492 * win32/vs8/gst-plugins-good.sln:
9493 Add DirectSound and DirectDraw sinks project files to
9494 workspace and solution files.
9496 2007-06-10 Sebastian Dröge <slomo@circular-chaos.org>
9498 Patch by: Josh Coalson <xflac at yahoo dot com>,
9499 updated by Alexis Ballier <aballier at gentoo dot org>:
9502 * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
9503 (gst_flac_dec_setup_seekable_decoder),
9504 (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
9505 (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
9506 (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
9507 * ext/flac/gstflacdec.h:
9508 * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9509 (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
9510 (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
9511 (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
9512 (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
9513 (gst_flac_enc_chain), (gst_flac_enc_set_property),
9514 (gst_flac_enc_get_property), (gst_flac_enc_change_state):
9515 * ext/flac/gstflacenc.h:
9516 Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
9518 2007-06-09 Sebastian Dröge <slomo@circular-chaos.org>
9520 * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
9521 Remove workaround for bug #421543. This is fixed in core 0.10.13 and
9522 not necessary anymore as we need at least that core version.
9524 2007-06-09 Sebastian Dröge <slomo@circular-chaos.org>
9526 * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
9527 (gst_wavpack_dec_chain):
9528 * ext/wavpack/gstwavpackdec.h:
9529 * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
9530 (gst_wavpack_parse_push_buffer):
9531 * ext/wavpack/gstwavpackparse.h:
9532 Improve discont handling by checking if the next Wavpack block has
9533 the expected, following block index.
9535 2007-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
9537 * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
9538 Fix element description.
9540 2007-06-08 Thomas Vander Stichele <thomas at apestaart dot org>
9543 * docs/plugins/Makefile.am:
9544 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9545 * docs/plugins/gst-plugins-good-plugins-sections.txt:
9546 * docs/plugins/gst-plugins-good-plugins.args:
9547 * docs/plugins/gst-plugins-good-plugins.hierarchy:
9548 * docs/plugins/gst-plugins-good-plugins.signals:
9549 * docs/plugins/inspect/plugin-autodetect.xml:
9550 * docs/plugins/inspect/plugin-gconfelements.xml:
9551 * docs/plugins/inspect/plugin-ladspa.xml:
9552 * docs/plugins/inspect/plugin-rtp.xml:
9553 * docs/plugins/inspect/plugin-wavpack.xml:
9555 * tests/check/Makefile.am:
9556 move wavpack plugin. See #352605.
9558 2007-06-08 Jan Schmidt <thaytan@mad.scientist.com>
9561 * docs/plugins/Makefile.am:
9562 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9563 * docs/plugins/gst-plugins-good-plugins-sections.txt:
9564 * docs/plugins/gst-plugins-good-plugins.args:
9567 Add DirectDraw & DirectSound plugins to the build and docs.
9569 2007-06-08 Tim-Philipp Müller <tim at centricular dot net>
9571 * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
9572 * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
9573 When operating in pull mode, error out correct on not-linked.
9575 2007-06-06 Andy Wingo <wingo@pobox.com>
9577 * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
9578 (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
9579 format and size if the ioctls are defined; should fix compilation
9582 2007-06-06 Tim-Philipp Müller <tim at centricular dot net>
9584 * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
9585 Printf fixes in debug statements; use LOG level for debug statements
9586 that are printed for each and every frame; convert c++ comments to
9587 C-style comments; not much point using g_try_malloc() if we then not
9588 even check the return value.
9590 2007-06-05 Tim-Philipp Müller <tim at centricular dot net>
9593 Bump requirements to released versions (core and base 0.10.13).
9595 * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
9596 Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
9599 2007-06-05 Andy Wingo <wingo@pobox.com>
9601 * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
9602 some useless comments.
9604 * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
9605 frames before calling STREAMON, that might leave them in a state
9606 where they can't be dequeued if we go back to NULL without calling
9607 STREAMON, according to the docs.
9608 (gst_v4l2src_capture_start): Enqueue buffers here instead, right
9609 before we call STREAMON.
9610 (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
9611 failures. (For me this code hung.) The pool refcounting is still
9612 crack; added a note to that effect.
9614 2007-06-05 Wim Taymans <wim@fluendo.com>
9616 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
9617 (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
9618 Add support for mapping gst structure names to the MIME type equivalent.
9619 Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
9621 2007-06-03 Sebastian Dröge <slomo@circular-chaos.org>
9623 * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
9624 (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
9625 (gst_wavenc_chain), (gst_wavenc_change_state):
9626 * gst/wavenc/gstwavenc.h:
9627 Properly write wav files with width!=depth by having the depth most
9628 significant bytes set and all others zero. Fixes #442535.
9630 2007-06-01 Wim Taymans <wim@fluendo.com>
9632 * gst/rtsp/rtspconnection.c:
9633 Add include to make buildbot happy.
9635 2007-06-01 Wim Taymans <wim@fluendo.com>
9637 Patch by: Peter Kjellerstedt <pkj at axis com>
9639 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9640 (rtsp_connection_connect), (add_date_header),
9641 (rtsp_connection_send), (parse_response_status),
9642 (parse_request_line), (parse_line), (rtsp_connection_receive):
9643 * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
9644 * gst/rtsp/rtspdefs.h:
9645 * gst/rtsp/rtspmessage.c: (key_value_foreach),
9646 (rtsp_message_init_request), (rtsp_message_init_response),
9647 (rtsp_message_remove_header), (rtsp_message_append_headers),
9648 (rtsp_message_dump):
9649 * gst/rtsp/rtspmessage.h:
9650 Improves version checking, allowing an RTSP server to reply with "505
9651 RTSP Version not supported.
9652 Adds a Date header to all messages.
9653 Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
9654 want to be able to send a response even if something in the request was
9655 invalid. EINVAL is only used when passing wrong arguments to functions.
9656 Do not handle an invalid method in parse_request_line(). Defer this to
9657 the caller so it can respond with "405 Method Not Allowed".
9658 Improves parsing of the timeout parameter to the Session header,
9659 allowing whitespace after the semicolon.
9660 Avoids a compiler warning due to variables shadowing a function argument.
9662 2007-06-01 Wim Taymans <wim@fluendo.com>
9664 Based on Patch by: Daniel Charles <dcharles at ti dot com>
9666 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
9667 (gst_rtp_amr_depay_process):
9668 * gst/rtp/gstrtpamrdepay.h:
9669 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
9670 (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
9671 (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
9672 * gst/rtp/gstrtpamrpay.h:
9673 Add support for AMR-WB.
9674 Small cleanups such as using BOILERPLATE.
9676 2007-05-31 Wim Taymans <wim@fluendo.com>
9678 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
9679 Fix compile warning when debug is disabled as spotted bu Saur on IRC.
9681 2007-05-30 Andy Wingo <wingo@pobox.com>
9683 * sys/v4l2/gstv4l2object.h:
9684 * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
9687 * sys/v4l2/v4l2src_calls.h:
9688 * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
9689 the format list in the order that the driver gives it to us.
9690 (gst_v4l2src_probe_caps_for_format_and_size)
9691 (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
9692 based on the capabilities of the device.
9693 (gst_v4l2src_grab_frame): Update for object variable renaming.
9694 (gst_v4l2src_set_capture): Update to be strict in its parameters,
9695 as in the set_caps below.
9696 (gst_v4l2src_capture_init): Update for object variable renaming,
9698 (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
9699 (gst_v4l2src_capture_deinit): Update for object variable renaming.
9700 (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
9701 (gst_v4l2src_get_fps): Remove; these functions don't have much
9702 meaning outside of an atomic set_caps method.
9703 (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
9706 * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
9707 call to update_fps; not sure about this change.
9708 (gst_v4l2_tuner_set_norm): Work around the fact that for the
9709 moment we don't have an update_fps_func.
9711 * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
9712 structures in the object, just store what we need. Do store the
9713 probed caps of the device. Don't store the current frame rate.
9715 * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
9716 update_fps_function, for now. Update for new object variable
9718 (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
9719 new object variable naming.
9720 (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
9721 (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
9722 (gst_v4l2src_get_caps): Rework to probe the device for supported
9723 frame sizes and frame rates.
9724 (gst_v4l2src_set_caps): Rework to be strict in the given
9725 parameters: if someone asks us to have a certain size and rate,
9726 that is what we configure.
9727 (gst_v4l2src_get_read): Update for object variable naming. Don't
9728 leak buffers on short reads.
9729 (gst_v4l2src_get_mmap): Update for object variable naming, and add
9731 (gst_v4l2src_create): Update for object variable naming.
9733 2007-05-30 Tim-Philipp Müller <tim at centricular dot net>
9735 * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
9736 (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
9737 * gst/avi/gstavidemux.h:
9738 Parse subtitle text streams instead of erroring out (#442034). Still
9739 needs a parser for the subtitles to actually show up.
9741 2007-05-30 Tim-Philipp Müller <tim at centricular dot net>
9743 * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
9744 (gst_avi_demux_loop):
9745 Make _push_event() return TRUE if the event could be pushed on at
9746 least one pad and not only if it could be pushed on all pads,
9747 otherwise we'll end up posting an error message on EOS if one or
9748 more source pads are not connected.
9750 2007-05-28 Wim Taymans <wim@fluendo.com>
9752 * gst/rtsp/rtsptransport.c:
9753 Use renamed RTP bin.
9755 2007-05-28 Wim Taymans <wim@fluendo.com>
9757 Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
9759 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
9760 (gst_video_box_set_property), (gst_video_box_transform_caps),
9761 (video_box_recalc_transform), (gst_video_box_set_caps),
9762 (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
9763 (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
9764 (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
9765 (gst_video_box_i420_i420), (gst_video_box_transform),
9767 Add AYUV->AYUV and AYUV->I420 formats.
9768 Fix negotiation and I420->AYUV conversion.
9771 2007-05-26 Wim Taymans <wim@fluendo.com>
9773 * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
9774 Use different variables for nested for loops so that the outer loop
9775 functions properly and speex files with multiple frames per buffer work
9779 2007-05-25 Tim-Philipp Müller <tim at centricular dot net>
9781 * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
9782 Don't leak newsegment events.
9784 2007-05-25 Tim-Philipp Müller <tim at centricular dot net>
9786 * gst/wavparse/Makefile.am:
9787 Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
9790 2007-05-25 Tim-Philipp Müller <tim at centricular dot net>
9792 * ext/flac/gstflacenc.c: (gst_flac_enc_init),
9793 (notgst_value_array_append_buffer),
9794 (gst_flac_enc_process_stream_headers),
9795 (gst_flac_enc_write_callback), (gst_flac_enc_chain),
9796 (gst_flac_enc_change_state):
9797 * ext/flac/gstflacenc.h:
9798 Collect headers, add "streamheader" field to output caps and set
9799 BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
9800 produces output according to the official FLAC-to-Ogg mapping
9801 instead of completely broken files. Fixes #426044.
9803 2007-05-25 Jan Schmidt <thaytan@mad.scientist.com>
9805 * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
9806 (gst_id3demux_send_new_segment), (gst_id3demux_chain),
9807 (gst_id3demux_sink_event):
9808 * gst/id3demux/gstid3demux.h:
9809 * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
9810 (gst_tag_demux_chain), (gst_tag_demux_sink_event),
9811 (gst_tag_demux_send_new_segment):
9812 Handle and adjust new-segment events so that downstream really
9813 sees a stream with the tag pieces stripped off the front and back.
9814 Fixes strangeness in seeking when mp3 decoders use the new-segment
9815 byte position to estimate their current playback position timestamp
9816 and then the arriving buffers don't match up.
9818 2007-05-25 Jan Schmidt <thaytan@mad.scientist.com>
9820 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
9821 Don't unnecessarily perform a READY->NULL->READY transition on the
9822 detected audio sink when starting up. Fixes: #440127
9824 2007-05-24 Tim-Philipp Müller <tim at centricular dot net>
9826 * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
9827 (gst_flac_enc_chain):
9828 Don't crash in chain function if setcaps hasn't been called.
9830 2007-05-24 Wim Taymans <wim@fluendo.com>
9832 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
9833 Init value to avoid infinte loops.
9835 2007-05-24 Wim Taymans <wim@fluendo.com>
9837 Patch by: Peter Kjellerstedt <pkj at axis com>
9839 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
9840 (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
9841 (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
9843 (rtsp_connection_send), (rtsp_connection_receive):
9844 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
9847 * gst/rtsp/rtspconnection.c: (add_auth_header),
9848 Only add authorisation and session headers when sending messages.
9850 * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
9851 (rtsp_message_init_request), (rtsp_message_init_response),
9852 (rtsp_message_unset), (rtsp_message_add_header),
9853 (rtsp_message_remove_header), (rtsp_message_get_header),
9854 (rtsp_message_append_headers), (dump_key_value),
9855 (rtsp_message_dump):
9856 * gst/rtsp/rtspmessage.h:
9857 Add support for multiple headers of the same type by storing the parsed
9858 headers in a GArray instaed of a hashtable.
9860 2007-05-21 Wim Taymans <wim@fluendo.com>
9862 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
9863 (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
9864 Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
9867 2007-05-21 Wim Taymans <wim@fluendo.com>
9869 * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
9870 * gst/rtsp/gstrtpdec.h:
9871 Added signal for backwards compat.
9873 2007-05-21 Sebastian Dröge <slomo@circular-chaos.org>
9875 Patch by: René Stadler <mail at renestadler dot de>
9878 * gst/auparse/gstauparse.c: (gst_au_parse_reset),
9879 (gst_au_parse_parse_header), (gst_au_parse_chain):
9880 * gst/auparse/gstauparse.h:
9881 Use audioconvert for converting from non-native endianness floats
9882 in auparse instead of doing it ourself. Fixes #424527.
9883 This needs the audioconvert from plugins-base CVS.
9885 2007-05-21 Wim Taymans <wim@fluendo.com>
9887 * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9888 (gst_rtp_h263p_pay_flush):
9889 Fix enum registration.
9891 2007-05-21 Wim Taymans <wim@fluendo.com>
9893 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
9895 * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
9896 (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
9897 (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
9898 (gst_rtp_h263p_pay_flush):
9899 * gst/rtp/gstrtph263ppay.h:
9900 Add new fragmentation mode base on GOB headers. Fixes #438940.
9902 2007-05-20 Tim-Philipp Müller <tim at centricular dot net>
9904 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
9907 2007-05-18 Wim Taymans <wim@fluendo.com>
9909 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
9910 Don't crash when an unsupported transport error was returned by the
9911 server, just try to configure the next stream. Fixes #439255.
9913 2007-05-18 Wim Taymans <wim@fluendo.com>
9915 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
9916 (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
9917 (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
9918 (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9919 (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
9920 * gst/rtsp/gstrtspsrc.h:
9921 Add TCP timeout property and use it for all TCP connection.
9923 * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
9924 (rtsp_connection_write), (rtsp_connection_next_timeout),
9925 (rtsp_connection_reset_timeout):
9926 Make connect and writes cancelable and make them use the timeout.
9928 2007-05-18 Wim Taymans <wim@fluendo.com>
9930 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
9931 (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
9932 (gst_rtspsrc_try_send), (gst_rtspsrc_send),
9933 (gst_rtspsrc_setup_streams):
9934 Refactor timeout handling.
9935 Also send keep-alive when dealing with TCP transport.
9937 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9938 (rtsp_connection_free), (rtsp_connection_next_timeout),
9939 (rtsp_connection_reset_timeout):
9940 * gst/rtsp/rtspconnection.h:
9941 Use a timer to handle the session timeouts, add some methods to deal
9944 2007-05-17 Wim Taymans <wim@fluendo.com>
9946 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
9947 (gst_rtspsrc_setup_streams):
9948 Ignore streams that fail the setup command, we will retry with a
9949 different transport later on.
9951 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
9952 (rtsp_ext_wms_configure_stream):
9953 Fix encoding name case.
9955 2007-05-16 Edward Hervey <edward@fluendo.com>
9957 * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
9958 Fix build on macosx.
9960 2007-05-16 Sebastian Dröge <slomo@circular-chaos.org>
9962 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
9963 Replace direct comparison of a string with the string literal "" with
9964 a comparison of the first character with '\0'. Fixes #438926.
9966 2007-05-15 Stefan Kost <ensonic@users.sf.net>
9968 * gst/debug/breakmydata.c (gst_break_my_data_init):
9969 One more try. This should be the proper fix now.
9971 2007-05-15 Stefan Kost <ensonic@users.sf.net>
9973 * gst/debug/breakmydata.c:
9974 Ooops, no // comments please.
9976 2007-05-15 Stefan Kost <ensonic@users.sf.net>
9978 * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
9979 (gst_break_my_data_init):
9980 Fix gst_buffer_is_writable() assertion.
9982 2007-05-14 David Schleef <ds@schleef.org>
9984 * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
9985 video/x-raw-bayer. Fixes #314160.
9987 2007-05-14 Wim Taymans <wim@fluendo.com>
9989 * gst/rtp/gstrtptheoradepay.c: (decode_base64),
9990 (gst_rtp_theora_depay_parse_configuration):
9991 * gst/rtp/gstrtptheorapay.c: (encode_base64),
9992 (gst_rtp_theora_pay_finish_headers),
9993 (gst_rtp_theora_pay_handle_buffer):
9994 Update theora pay/depayloader in a similar to vorbis.
9996 * gst/rtp/gstrtpvorbisdepay.c:
9997 (gst_rtp_vorbis_depay_parse_configuration):
10000 2007-05-14 Wim Taymans <wim@fluendo.com>
10002 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
10003 When we try to execute a method that is not supported by the server,
10004 don't error out but remove the method from the accepted methods so that
10005 we never try to perform this method again.
10007 2007-05-14 Wim Taymans <wim@fluendo.com>
10009 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
10010 Remove annoying _dump_mem.
10012 2007-05-14 Wim Taymans <wim@fluendo.com>
10014 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
10015 Parse range correctly.
10017 * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
10018 The baseurl now always has a '/' at the start.
10020 2007-05-14 Wim Taymans <wim@fluendo.com>
10022 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
10023 (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
10024 (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10025 Factor out caps configuration and configure more stuff such as the time
10026 ranges and speed/scale values.
10028 * gst/rtsp/rtsptransport.c:
10029 Add Copyright after non-trival fixes.
10031 2007-05-12 Wim Taymans <wim@fluendo.com>
10033 Patch by: Peter Kjellerstedt <pkj at axis com>
10035 * gst/rtsp/gstrtspsrc.h:
10036 * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10037 * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
10038 (rtsp_message_get_header):
10039 * gst/rtsp/rtspmessage.h:
10040 Make channel guint8 where possible.
10041 Make rtsp_message_init_data() take the channel as a guint8.
10043 * gst/rtsp/rtspdefs.c:
10044 Fixed a typo: Timout -> Timeout
10046 * gst/rtsp/rtspdefs.h:
10047 Make RTSP_CHECK() behave as a statement.
10049 * gst/rtsp/sdpmessage.c:
10050 Avoid a compiler warning in INIT_ARRAY().
10053 2007-05-12 Wim Taymans <wim@fluendo.com>
10055 Patch by: Peter Kjellerstedt <pkj at axis com>
10057 * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
10058 (rtsp_url_get_request_uri):
10059 * gst/rtsp/rtspurl.h:
10060 Add support for query parameters to RTSP URLs.
10062 2007-05-12 Wim Taymans <wim@fluendo.com>
10064 Patch by: Peter Kjellerstedt <pkj at axis com>
10066 * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
10067 (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
10068 (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
10069 (rtsp_transport_parse), (rtsp_transport_as_text):
10070 * gst/rtsp/rtsptransport.h:
10071 Add validation to rtsp_transport_parse().
10072 Add rtsp_transport_as_text() to generate an RTSP header from an
10074 Change ssrc to guint (was a string) since that is what it is, even
10075 though it is sent as a hex string.
10076 Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
10077 incorrect, which can be seen when looking at the examples in the RFC).
10080 2007-05-11 Zaheer Abbas Merali <<zaheerabbas at merali dot org>>
10082 Patch by: Eric Anholt
10084 * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
10085 gst_ximage_src_ximage_get):
10086 Use union of all damage between frames to make it faster.
10088 Also fix crasher when cursor is at bottom right of window.
10090 2007-05-11 Tim-Philipp Müller <tim at centricular dot net>
10092 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10093 Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
10094 streaming mode regression for file from #343837 with 'bext' chunk
10095 before the 'fmt' chunk.
10097 2007-05-11 Wim Taymans <wim@fluendo.com>
10099 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
10100 (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
10101 (gst_rtspsrc_handle_src_event),
10102 (gst_rtspsrc_stream_configure_manager),
10103 (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
10104 (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
10105 (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
10106 * gst/rtsp/gstrtspsrc.h:
10107 * gst/rtsp/rtspdefs.h:
10108 Preliminary seek support.
10109 Activate internal pads so that we can receive events on them.
10110 Don't try to parse a range string when it's NULL.
10112 2007-05-11 Wim Taymans <wim@fluendo.com>
10115 Update README with new RTP variables that will be used for
10118 * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
10119 (gst_rtp_vorbis_depay_parse_configuration),
10120 (gst_rtp_vorbis_depay_process):
10121 * gst/rtp/gstrtpvorbispay.c: (encode_base64),
10122 (gst_rtp_vorbis_pay_finish_headers),
10123 (gst_rtp_vorbis_pay_handle_buffer):
10124 Update vorbis pay and depayloader to draft-04.
10126 2007-05-11 Wim Taymans <wim@fluendo.com>
10128 * gst/rtsp/rtsptransport.c:
10129 UDP MCAST is actually the default for RTP/AVP.
10130 2007-05-13 Sebastien Moutte <sebastien@moutte.net>
10132 * gst/level/gstlevel.c: (gst_level_transform_ip):
10133 Use guint8 * instead of gpointer then vs6 can build
10134 in_data += (filter->width / 8).
10136 2007-05-11 Zaheer Abbas Merali <<zaheerabbas at merali dot org>>
10138 * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
10139 gst_ximage_src_ximage_get):
10140 * sys/ximage/gstximagesrc.h (last_ximage):
10141 When using Damage actually keep the last frame, and not assume
10142 that the buffer we get already has the last frame on it.
10143 Copy the cursor over if we specify a non-zero start x and
10146 2007-05-11 Wim Taymans <wim@fluendo.com>
10148 * gst/rtsp/rtsptransport.c:
10149 Make UDP the default transport when not specified.
10151 2007-05-09 David Schleef <ds@schleef.org>
10153 * gst/level/gstlevel.c:
10154 Revert last change.
10156 2007-05-09 Sebastien Moutte <sebastien@moutte.net>
10158 * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
10159 (gst_level_transform_ip):
10160 Use guint8 * instead of gpointer then vs6 know the size of data
10161 pointed when moving the pointer.
10162 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
10163 Move instructions after variables declaration.
10164 * win32/vs6/autogen.dsp:
10165 * win32/vs6/libgstrtp.dsp:
10166 * win32/vs6/libgstrtsp.dsp:
10167 Update vs6 project files.
10169 2007-05-09 Wim Taymans <wim@fluendo.com>
10171 * gst/rtsp/Makefile.am:
10172 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
10173 (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
10174 * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
10175 (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
10177 * gst/rtsp/rtsprange.h:
10178 Add code to parse time ranges.
10179 Report DURATION on the stream when possible.
10181 2007-05-08 Tim-Philipp Müller <tim at centricular dot net>
10183 * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
10184 (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
10185 (gst_videomixer_collected):
10186 Fix strides calculation for AYUV (it's just width*4) (#436910).
10188 2007-05-06 Sebastian Dröge <slomo@circular-chaos.org>
10190 * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
10191 * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
10192 * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
10193 Sync the GObject properties before each processing step to properly
10194 work with the controller.
10196 2007-05-04 Wim Taymans <wim@fluendo.com>
10198 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
10199 (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
10200 (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
10201 (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
10202 (gst_rtspsrc_change_state):
10203 Let more error state trickle down so that we can catch more error
10205 Handle keep-alive a little smarter by selecting a method the server
10207 Fix a race in UDP streaming shutdown.
10209 2007-05-04 Wim Taymans <wim@fluendo.com>
10211 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
10212 Ignore errors when trying to use the keep-alive messages.
10214 2007-05-04 Wim Taymans <wim@fluendo.com>
10216 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
10217 (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
10218 (gst_rtspsrc_stream_configure_manager),
10219 (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10220 (gst_rtspsrc_stream_configure_mcast),
10221 (gst_rtspsrc_stream_configure_udp),
10222 (gst_rtspsrc_stream_configure_udp_sink),
10223 (gst_rtspsrc_stream_configure_transport):
10224 Send RTCP messages back to the server over the TCP connection.
10226 * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
10227 (rtsp_connection_send), (rtsp_connection_read), (read_body),
10228 (rtsp_connection_receive):
10229 * gst/rtsp/rtspconnection.h:
10230 Factor out and expose lowlevel _write and _read methods.
10231 Implement sending data messages to the server.
10233 2007-05-03 Wim Taymans <wim@fluendo.com>
10235 * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
10236 (gst_multipart_mux_collected):
10237 Fix timestamps on outgoing buffers.
10239 2007-05-03 Wim Taymans <wim@fluendo.com>
10241 * gst/multipart/multipartmux.c:
10242 (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
10243 (gst_multipart_mux_change_state):
10244 Emit NEWSEGMENT events before pushing the first buffer.
10246 2007-05-03 Wim Taymans <wim@fluendo.com>
10248 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10249 (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
10250 (gst_rtspsrc_handle_src_query),
10251 (gst_rtspsrc_stream_configure_manager),
10252 (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
10253 (gst_rtspsrc_stream_configure_mcast),
10254 (gst_rtspsrc_stream_configure_udp),
10255 (gst_rtspsrc_stream_configure_udp_sink),
10256 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
10257 (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10258 (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10259 (gst_rtspsrc_pause):
10260 Refactor transport configuration code.
10261 Create internal pads for TCP transport so that we can implement events
10263 Handle events and queries.
10264 Parse range from the SDP.
10265 Fix race in pause handler where the connection could still be flushing.
10267 2007-05-02 Wim Taymans <wim@fluendo.com>
10269 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10270 (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
10271 (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10272 (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
10273 (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
10274 (gst_rtspsrc_change_state):
10275 * gst/rtsp/gstrtspsrc.h:
10276 Fix race when multiple udp sources post timeouts, just act on the first
10278 Protect stream list with a recursive lock to fix some races.
10279 Flush connection when we need to do a reconnect or stop.
10280 Make state lock recursive.
10282 * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10283 (rtsp_connection_close):
10284 Some small cleanups.
10286 2007-05-02 Wim Taymans <wim@fluendo.com>
10288 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10289 (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10290 Only set DISCONT when there actually is a discont or when we just
10293 2007-05-02 Sebastian Dröge <slomo@circular-chaos.org>
10295 * ext/flac/gstflac.c: (plugin_init):
10296 Call bindtextdomain() to get localized strings.
10298 2007-05-02 Wim Taymans <wim@fluendo.com>
10300 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10301 (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
10302 (gst_wavparse_stream_data):
10303 * gst/wavparse/gstwavparse.h:
10304 Be a bit more clever when dealing with VBR files with FACT tags, we
10305 don't want to timestamp buffers in that case but the estimated BPS can
10306 be used for seeking.
10307 Only send close segment in the streaming thread.
10309 2007-05-02 Sebastian Dröge <slomo@circular-chaos.org>
10311 * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10312 Correctly post an error on the bus if something went wrong in the loop
10313 function. This fixes a few cases where the task was paused and nothing
10316 2007-05-02 Wim Taymans <wim@fluendo.com>
10318 * gst/rtsp/test.c: (main):
10319 Fix compilation of deprecated test just because I'm too lazy to delete
10322 2007-05-02 Wim Taymans <wim@fluendo.com>
10324 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10325 (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10326 (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
10327 (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
10328 (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
10329 (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
10330 * gst/rtsp/gstrtspsrc.h:
10331 Fix sending RTCP to the right place.
10332 Fix bug in reffing the wrong UDP element.
10333 Use new pad names for the session manager.
10334 Implement handling server requests in interleaved and UDP modes.
10335 Handle session keep-alive in UDP modes.
10336 Remove GCond for handling UDP timeouts.
10338 * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
10339 (rtsp_connection_send), (rtsp_connection_read), (read_body),
10340 (rtsp_connection_receive), (rtsp_connection_close):
10341 * gst/rtsp/rtspconnection.h:
10342 Store connection IP address for later.
10343 Add timeout args to all operations that might block forever.
10344 Parse session timeout.
10345 Only close sockets when not already closed.
10347 * gst/rtsp/rtspdefs.c:
10348 * gst/rtsp/rtspdefs.h:
10349 Add timeout return value and error string.
10351 * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
10354 2007-05-01 Wim Taymans <wim@fluendo.com>
10356 Patch by: Sjoerd Simons <sjoerd at luon dot net>
10358 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
10359 (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
10360 * gst/rtp/gstrtpmp4vpay.h:
10361 Handle NEWSEGMENT and FLUSH events. Fixes #434824.
10363 2007-04-30 Tim-Philipp Müller <tim at centricular dot net>
10365 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10366 Remove v4l2src from docs, since it breaks the docs build, and the
10367 plugin is only built if --enable-experimental is used anyway.
10369 * docs/plugins/Makefile.am:
10372 2007-04-29 Wim Taymans <wim@fluendo.com>
10374 * gst/udp/gstmultiudpsink.c: (leave_multicast),
10375 (gst_multiudpsink_add), (gst_multiudpsink_remove):
10376 Add code to drop membership of a multicast group.
10378 * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
10379 (gst_udpsink_set_uri):
10380 Implement URI handler.
10382 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10383 (gst_rtspsrc_parse_rtpinfo):
10384 Use URI handler to make udpsink instace.
10385 Improve code to configure port and destination.
10387 2007-04-29 Wim Taymans <wim@fluendo.com>
10389 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
10390 Fix multicast detection.
10391 Don't try to join a multicast group if the address is not multicast.
10393 * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
10394 Small debug improvement.
10396 2007-04-27 Wim Taymans <wim@fluendo.com>
10398 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
10399 (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10400 (gst_rtspsrc_handle_message):
10401 Ignore ASYNC state messages from the udpsink, it's irrelevant for the
10404 2007-04-27 Wim Taymans <wim@fluendo.com>
10406 * gst/rtp/gstrtpilbcdepay.h:
10407 Fix mode property when specified as an arg.
10409 2007-04-26 Edward Hervey <edward@fluendo.com>
10411 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10412 * docs/plugins/gst-plugins-good-plugins-sections.txt:
10413 * docs/plugins/gst-plugins-good-plugins.hierarchy:
10414 * docs/plugins/inspect/plugin-osxaudio.xml:
10415 Add documentation for osxaudio plugin.
10417 2007-04-26 Wim Taymans <wim@fluendo.com>
10419 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
10420 (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
10421 (gst_rtspsrc_open), (gst_rtspsrc_close),
10422 (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
10423 (gst_rtspsrc_pause):
10424 * gst/rtsp/gstrtspsrc.h:
10425 Protect state changes with a lock.
10427 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
10429 * gst/rtsp/rtspconnection.h:
10430 Remove some unused stuff.
10432 2007-04-26 Wim Taymans <wim@fluendo.com>
10434 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
10435 Handle the case where there are exactly 0 bytes to read and the ioctl
10436 did not report an error. Fixes #433530.
10438 2007-04-26 Wim Taymans <wim@fluendo.com>
10440 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10441 (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
10442 * gst/wavparse/gstwavparse.h:
10443 Apply DISCONT to buffers.
10444 Only apply timestamp to the first sample after a DISCONT, too many VBR
10445 files cause random jitter in the timestamps. Fixes #433119.
10447 2007-04-25 Wim Taymans <wim@fluendo.com>
10449 * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
10450 (gst_rtp_dec_init), (gst_rtp_dec_set_property),
10451 (gst_rtp_dec_get_property):
10452 * gst/rtsp/gstrtpdec.h:
10453 Add dummy latency property to be backwards compat with rtpbin.
10455 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
10456 (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
10457 (gst_rtspsrc_stream_configure_transport),
10458 (gst_rtspsrc_parse_rtpinfo):
10459 * gst/rtsp/gstrtspsrc.h:
10460 Add latency property and configure in the session manager.
10461 Don't set invalid clock-base and seqnum-base on caps, some servers
10462 sometimes don't send them.
10464 2007-04-25 Tim-Philipp Müller <tim at centricular dot net>
10466 * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
10467 (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
10468 Double-check that RGB input caps are really RGBA caps (apparently
10469 the core doesn't always catch it if those caps aren't a subset of
10470 our template caps, also see #421543). Fixes #429319 in a way.
10471 Also, don't leak the pad template in the transform_caps function.
10473 * tests/check/Makefile.am:
10474 * tests/check/elements/.cvsignore:
10475 * tests/check/elements/alphacolor.c: (setup_alphacolor),
10476 (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
10477 (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
10478 (GST_START_TEST), (alphacolor_suite):
10479 Add some basic unit tests for alphacolor.
10481 2007-04-25 Tim-Philipp Müller <tim at centricular dot net>
10483 * ext/libpng/gstpngdec.c: (gst_pngdec_task):
10484 If we get a fatal flow return in the loop function, first post the
10485 error message and only then send the EOS event downstream, otherwise
10486 applications might get an eos message before the error message and
10487 think everything was ok (related to #429319).
10489 2007-04-25 Wim Taymans <wim@fluendo.com>
10491 * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
10492 Read the channel byte as an unsigned byte.
10494 2007-04-25 Wim Taymans <wim@fluendo.com>
10496 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
10497 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
10498 (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
10499 * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
10500 (gst_rtp_gsm_depay_setcaps):
10501 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
10502 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
10503 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
10504 (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
10505 (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
10506 (gst_ilbc_depay_get_property):
10507 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
10508 * gst/rtp/gstrtpmp4adepay.c:
10509 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
10510 (gst_rtp_pcma_depay_setcaps):
10511 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
10512 (gst_rtp_pcmu_depay_setcaps):
10513 Make sure we configure the clock_rate in the baseclass in the setcaps
10514 function. Fixes #431282.
10516 2007-04-25 Wim Taymans <wim@fluendo.com>
10518 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
10519 (gst_rtspsrc_stream_free), (request_pt_map),
10520 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
10521 * gst/rtsp/gstrtspsrc.h:
10522 Parse server address from SDP.
10523 Hook up a udpsink to send RTCP back to the server.
10525 * docs/plugins/gst-plugins-good-plugins-sections.txt:
10526 * gst/rtsp/rtsptransport.h:
10529 2007-04-25 Stefan Kost <ensonic@users.sf.net>
10531 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10532 Make header field check conditional. Fixes #433135
10534 2007-04-24 Tim-Philipp Müller <tim at centricular dot net>
10536 * docs/plugins/Makefile.am:
10537 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10538 * docs/plugins/gst-plugins-good-plugins-sections.txt:
10539 * docs/plugins/inspect/plugin-alphacolor.xml:
10540 * gst/alpha/Makefile.am:
10541 * gst/alpha/gstalphacolor.c:
10542 * gst/alpha/gstalphacolor.h:
10543 Add minimal docs blurb to alphacolor; split out headers into
10544 separate header file for gtk-doc.
10546 2007-04-20 Tim-Philipp Müller <tim at centricular dot net>
10548 * gst/debug/progressreport.c: (gst_progress_report_report):
10549 Don't try to post NULL message (in case we can't query upstream
10550 position or duration).
10552 2007-04-18 Michael Smith <msmith@fluendo.com>
10554 * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
10555 (gst_cutter_get_caps):
10556 * gst/cutter/gstcutter.h:
10557 Fix some of the most obvious bugs in cutter. Now doesn't leak
10558 everything if input is silent.
10560 2007-04-18 Sebastian Dröge <slomo@circular-chaos.org>
10562 * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10563 (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
10564 * gst/wavenc/gstwavenc.h:
10565 Wav apparently only supports width==GST_ROUND_UP(depth), everything
10566 else results in a invalid block align and invalid files.
10568 2007-04-17 Tim-Philipp Müller <tim at centricular dot net>
10570 Patch by: Snaik <snaik32 gmail com>
10572 * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
10573 Add missing break statement for BOX_HORIZONTAL case.
10575 2007-04-17 Sebastian Dröge <slomo@circular-chaos.org>
10577 Patch by: Vincent Torri <vtorri at univ-evry dot fr>
10579 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10580 Use correct format strings for integer types.
10582 2007-04-17 Sebastian Dröge <slomo@circular-chaos.org>
10584 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10585 (gst_wavparse_create_sourcepad):
10586 Use gst_riff_create_audio_template_caps () instead of the local caps.
10587 This makes updates of the local caps unecessary whenever libgstriff
10588 gets support for new formats.
10590 2007-04-16 Tim-Philipp Müller <tim at centricular dot net>
10592 Patch by: Brian Cameron <brian.cameron at sun dot com>
10594 * sys/sunaudio/gstsunaudio.c:
10595 * sys/sunaudio/gstsunaudiomixer.c:
10596 * sys/sunaudio/gstsunaudiomixer.h:
10597 * sys/sunaudio/gstsunaudiomixerctrl.c:
10598 * sys/sunaudio/gstsunaudiomixerctrl.h:
10599 * sys/sunaudio/gstsunaudiomixertrack.h:
10600 * sys/sunaudio/gstsunaudiosink.c:
10601 * sys/sunaudio/gstsunaudiosink.h:
10602 * sys/sunaudio/gstsunaudiosrc.c:
10603 * sys/sunaudio/gstsunaudiosrc.h:
10604 Fix and/or update copyright attributions (#430228).
10606 2007-04-13 Wim Taymans <wim@fluendo.com>
10608 * docs/plugins/gst-plugins-good-plugins-sections.txt:
10612 Add some more example urls.
10614 * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10615 (gst_rtp_dec_chain_rtp):
10618 * gst/rtsp/gstrtspsrc.c: (request_pt_map),
10619 (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10620 (gst_rtspsrc_parse_rtpinfo):
10621 Remove unused code.
10623 2007-04-13 Stefan Kost <ensonic@users.sf.net>
10625 * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10626 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10627 (gst_wavparse_stream_data):
10628 Relax the audio/mpeg caps again and add FIXME: comment.
10630 2007-04-13 Stefan Kost <ensonic@users.sf.net>
10632 * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10633 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10634 (gst_wavparse_stream_data):
10635 * gst/wavparse/gstwavparse.h:
10636 More sanity check for the header fields. Fix type for 'rate' header
10639 2007-04-12 Tim-Philipp Müller <tim at centricular dot net>
10641 * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
10642 (gst_icydemux_unicodify):
10643 If the metadata strings we get in the stream are not UTF-8, try to
10644 interpret them according to the character encodings specified in the
10645 GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
10646 only fall back to locale/ISO-8859-1 if those aren't set or don't
10647 work. Should fix #428901.
10649 2007-04-12 Wim Taymans <wim@fluendo.com>
10651 * gst/rtp/gstrtph264depay.c:
10652 Use the proper sync word for SPS and PPS.
10654 2007-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
10656 * gst/rtp/Makefile.am:
10657 * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
10658 fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
10659 * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
10660 Add a simple hashing implementation that we can use to generate
10661 a 24-bit ident value based on the codebooks for vorbis and theora.
10662 * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
10663 gst_rtp_theora_pay_handle_buffer):
10664 * gst/rtp/gstrtpvorbisdepay.c
10665 (gst_rtp_vorbis_depay_parse_configuration,
10666 gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
10667 * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
10668 gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
10669 gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
10670 Use the hashing function, ensuring that the same codebooks result
10671 in the same ident and thus the same SDP description.
10672 Various log fixes/changes.
10674 2007-04-12 Wim Taymans <wim@fluendo.com>
10676 Patch by: jerry tan <jerry dot tan at sun dot com>
10678 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10679 remove the call of ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
10680 application's responsibility to make sure it open the device once.
10681 Remove a careless error if AUDIODEV is set. Fixes #392620.
10683 2007-04-12 Wim Taymans <wim@fluendo.com>
10685 * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
10686 (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
10687 * gst/rtsp/gstrtpdec.h:
10688 Make backward compat with rtpbin by adding the request-pt-map signals.
10690 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
10691 (new_session_pad), (request_pt_map),
10692 (gst_rtspsrc_stream_configure_transport),
10693 (gst_rtspsrc_stream_configure_caps),
10694 (gst_rtspsrc_activate_streams):
10695 * gst/rtsp/gstrtspsrc.h:
10696 Implement request-pt-map signals instead of setting caps on the buffers
10697 for the session manager.
10699 2007-04-11 Wim Taymans <wim@fluendo.com>
10701 * gst/udp/gstudp.c: (plugin_init):
10702 Register GstNetBuffer in plugin_init so that the type can be used from
10703 multiple threads without races.
10705 2007-04-10 Wim Taymans <wim@fluendo.com>
10707 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
10708 (gst_rtp_amr_depay_process):
10709 Fix depayloader clock_rate and some cleanups.
10711 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
10712 (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10713 * gst/rtp/gstrtph264depay.h:
10714 Don't push codec_data in the adapter because it might get flushed when
10717 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10718 Handle multiple AU per packet.
10720 * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
10721 (gst_rtp_sv3v_depay_plugin_init):
10722 Disable rank, this one does not work.
10723 Remove timestamping, base class does that.
10725 2007-04-10 Stefan Kost <ensonic@users.sf.net>
10727 * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
10728 limit caps to the formats we announce in the template
10730 * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
10731 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10732 (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
10733 fix some crashers/asserts when dealing with broken files
10735 2007-04-10 Wim Taymans <wim@fluendo.com>
10737 Patch by: Peter Kjellerstedt <pkj at axis com>
10739 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10740 * gst/rtp/gstrtpL16depay.c:
10741 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10742 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
10743 (gst_rtp_speex_depay_setcaps):
10744 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
10745 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
10746 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
10747 Fix some compiler warnings. Fixes #428182.
10749 2007-04-06 Wim Taymans <wim@fluendo.com>
10751 * gst/rtsp/Makefile.am:
10752 * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
10753 (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
10754 (gst_rtp_dec_init), (gst_rtp_dec_finalize),
10755 (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
10756 (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
10757 (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
10758 (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
10759 (create_rtcp), (gst_rtp_dec_request_new_pad),
10760 (gst_rtp_dec_release_pad):
10761 * gst/rtsp/gstrtpdec.h:
10762 * gst/rtsp/gstrtsp.c: (plugin_init):
10763 Morph RTPDec into something compatible with RTPBin as a fallback.
10764 Various other style fixes.
10766 * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
10767 (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
10768 (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
10769 (new_session_pad), (gst_rtspsrc_stream_configure_transport),
10770 (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
10771 (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
10772 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10773 * gst/rtsp/gstrtspsrc.h:
10774 Implement RTPBin session manager handling.
10775 Don't try to add empty properties to caps.
10776 Implement fallback session manager, handling.
10777 Don't combine errors from RTCP streams, just ignore them.
10779 * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
10780 * gst/rtsp/rtsptransport.h:
10781 Implement fallback session manager.
10782 Make RTPBin the default one when available.
10784 2007-04-05 Wim Taymans <wim@fluendo.com>
10786 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10787 (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
10788 This element is ready to be autoplugged.
10790 2007-04-05 Julien MOUTTE <julien@moutte.net>
10792 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10793 Don't leave the offsets defined by upstream element on the
10794 compressed data buffer we are pushing downstream. Make them
10795 GST_BUFFER_OFFSET_NONE.
10797 2007-04-04 Stefan Kost <ensonic@users.sf.net>
10800 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10801 (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10802 (gst_avi_demux_stream_index), (gst_avi_demux_sync),
10803 (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
10804 (gst_avi_demux_calculate_durations_from_index),
10805 (gst_avi_demux_stream_header_push),
10806 (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
10807 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
10808 Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
10810 2007-04-03 Wim Taymans <wim@fluendo.com>
10812 * gst/smpte/barboxwipes.c:
10813 Fix error as spotted by Snaik <snaik32 at gmail dot com>
10815 2007-03-30 Sebastian Dröge <slomo@circular-chaos.org>
10817 * gst/wavparse/gstwavparse.c:
10818 Support audio/x-raw-float in wav files. This only works with
10819 plugins-base CVS, using an older version doesn't have any
10820 disadvantages though.
10822 2007-03-30 Sebastian Dröge <slomo@circular-chaos.org>
10825 * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10826 (gst_au_parse_parse_header), (gst_au_parse_chain):
10827 * gst/auparse/gstauparse.h:
10828 Revert last change as we don't want plugins-good to depend on
10829 plugins-base CVS now.
10831 2007-03-29 Sebastian Dröge <slomo@circular-chaos.org>
10834 Require gst-plugins-base CVS for audioconvert with non-native
10835 float support and width/depth fix in libgstriff.
10837 Patch by: René Stadler <mail at renestadler dot de>
10839 * gst/auparse/gstauparse.c: (gst_au_parse_reset),
10840 (gst_au_parse_parse_header), (gst_au_parse_chain):
10841 * gst/auparse/gstauparse.h:
10842 Don't swap the floats ourself if they're not in native endianness.
10843 Instead let audioconvert handle this. Fixes #339838.
10845 2007-03-29 Wim Taymans <wim@fluendo.com>
10847 * gst/rtp/gstasteriskh263.h:
10848 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
10849 (gst_rtp_h263p_depay_change_state):
10850 * gst/rtp/gstrtph263pdepay.h:
10851 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10852 (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
10853 (gst_rtp_h264_depay_change_state):
10854 * gst/rtp/gstrtph264depay.h:
10855 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
10856 (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
10857 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10858 Flush adapter on disconts.
10860 2007-03-29 Wim Taymans <wim@fluendo.com>
10862 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
10863 * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
10864 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
10865 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
10866 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
10867 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
10868 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10869 (gst_rtp_mp4v_depay_process):
10870 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
10871 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
10872 * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
10873 * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
10874 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
10875 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
10876 * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
10877 Use more efficient adapter and rtpbuffer methods when possible.
10879 2007-03-29 Sebastian Dröge <slomo@circular-chaos.org>
10881 * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
10882 (gst_wavenc_sink_setcaps):
10883 Correctly handle width!=depth input.
10884 * gst/wavparse/gstwavparse.c:
10885 Already export in the caps that width==8 uses unsigned samples and
10886 everything else uses signed samples.
10888 2007-03-29 Wim Taymans <wim@fluendo.com>
10890 Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10892 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
10893 (gst_dynudpsink_init), (gst_dynudpsink_set_property),
10894 (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
10895 (gst_dynudpsink_close):
10896 * gst/udp/gstdynudpsink.h:
10897 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
10898 (gst_udpsrc_create), (gst_udpsrc_set_property),
10899 (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
10900 * gst/udp/gstudpsrc.h:
10901 Rework the socket allocation a bit based on the sockfd argument so that
10903 Add a closefd property to instruct the udp elements to close the custom
10904 file descriptors when going to READY. Fixes #423304.
10905 API:GstUDPSrc::closefd property
10906 API:GstDynUDPSink::closefd property
10908 2007-03-29 Wim Taymans <wim@fluendo.com>
10910 Patch by: Laurent Glayal <spglegle at yahoo dot fr>
10912 * gst/rtp/Makefile.am:
10913 * gst/rtp/gstrtp.c: (plugin_init):
10914 * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
10915 (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
10916 (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
10917 (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
10918 (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
10919 (gst_rtp_h264_pay_plugin_init):
10920 * gst/rtp/gstrtph264pay.h:
10921 Added H264 payloader. Fixes #423782.
10923 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
10924 (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
10927 2007-03-29 Sebastian Dröge <slomo@circular-chaos.org>
10929 * gst/wavparse/gstwavparse.c:
10930 Actually support depths from 1 to 32, not only 8 to 32.
10932 2007-03-29 Sebastian Dröge <slomo@circular-chaos.org>
10934 * gst/wavparse/gstwavparse.c:
10935 Add support for wav files containing audio/x-raw-int with random
10936 depths between 1 and 32 bits.
10938 2007-03-28 Wim Taymans <wim@fluendo.com>
10940 Based on patch by: Stefan Kost <ensonic@users.sf.net>
10942 * gst/rtp/Makefile.am:
10943 * gst/rtp/gstrtp.c: (plugin_init):
10944 * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
10945 (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
10946 (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
10947 (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
10948 (gst_rtp_mp4a_depay_get_property),
10949 (gst_rtp_mp4a_depay_change_state),
10950 (gst_rtp_mp4a_depay_plugin_init):
10951 * gst/rtp/gstrtpmp4adepay.h:
10952 Added MP4A-LATM depayloader. Fixes #417792.
10954 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
10955 (gst_rtp_mp4v_depay_process):
10956 Fixup depayloader, setting codec_data, using more efficient adaptor and
10957 rtpbuffer handling.
10960 Add url to test above.
10962 2007-03-25 Wim Taymans <wim@fluendo.com>
10964 * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
10965 (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
10966 (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
10967 (gst_rtspsrc_media_to_caps),
10968 (gst_rtspsrc_stream_configure_transport),
10969 (gst_rtspsrc_stream_configure_caps),
10970 (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
10971 * gst/rtsp/gstrtspsrc.h:
10972 Handle default clock-rates for static payload types, rearrange stuff so
10973 that the rtpmap field in the sdp can override the defaults.
10974 Parse RTP-Info field to get the seqnum and timebase fields that should
10976 Delay configuring caps after we got the RTP-Info from the PLAY reply from
10979 2007-03-22 Wim Taymans <wim@fluendo.com>
10981 Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
10983 * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
10984 Accept complex pipeline descriptions as an audio profile instead of just
10985 a single element. Fixes #420658.
10987 2007-03-21 Tim-Philipp Müller <tim at centricular dot net>
10989 * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
10990 Rename registered type in preparation of GstTagDemux moving to
10991 -base at some point in the future.
10993 2007-03-19 Tim-Philipp Müller <tim at centricular dot net>
10995 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10996 Streaming mode fixes: don't unref buffer we don't own any longer;
10997 remove bogus adapter flush. Fixes #419338.
10999 2007-03-17 David Schleef <ds@schleef.org>
11001 * REQUIREMENTS: Change the format to key/value, add a bunch of
11002 information, remove a bunch of requirements that are for
11003 other GStreamer packages.
11005 2007-03-17 David Schleef <ds@schleef.org>
11007 * REQUIREMENTS: Fix a few things. This file really needs a
11010 2007-03-15 Edward Hervey <edward@fluendo.com>
11013 Don't forget to distribute the sys/osxaudio/ directory.
11015 2007-03-15 Edward Hervey <edward@fluendo.com>
11019 * sys/osxaudio/Makefile.am:
11020 * sys/osxaudio/gstosxaudio.c:
11021 * sys/osxaudio/gstosxaudiosink.c:
11022 (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
11023 (gst_osx_audio_sink_getcaps),
11024 (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
11025 * sys/osxaudio/gstosxaudiosrc.c:
11026 (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
11027 (gst_osx_audio_src_create_ringbuffer):
11028 * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
11029 (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
11030 (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
11031 (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
11032 * sys/osxaudio/gstosxringbuffer.h:
11033 Activate osxaudio in gst-plugins-good with proper build setup.
11034 Add inlined documentation.
11035 Fix debug statements
11036 Fix ringbuffer when pausing.
11039 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>
11040 * gst/rtp/gstrtppcmapay.c:
11041 * gst/rtp/gstrtppcmapay.h:
11042 * gst/rtp/gstrtppcmupay.c:
11043 * gst/rtp/gstrtppcmupay.h:
11044 Ported mulaw and alaw payloaders to use new base class
11046 2007-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
11060 Update translations.
11062 2007-03-14 Tim-Philipp Müller <tim at centricular dot net>
11065 Fix string replace error (AG_AG_GST_* => AG_GST_*).
11067 2007-03-12 Tim-Philipp Müller <tim at centricular dot net>
11069 * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
11070 Fix handling of -1 values for start and stop values when seeking,
11071 and SEEK_CUR+SEEK_END here as well.
11073 2007-03-12 Jan Schmidt <thaytan@mad.scientist.com>
11075 * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
11076 Fix handling of -1 values for start and stop values when seeking,
11077 and SEEK_CUR+SEEK_END.
11079 2007-03-12 Tim-Philipp Müller <tim at centricular dot net>
11081 * gst/id3demux/id3v2frames.c: (parse_picture_frame):
11082 Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
11083 the image format a variable-length NUL-terminated string; in
11084 versions before that the image format is a fixed-length string of
11085 3 characters (see #348644 for a sample tag).
11086 Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
11088 2007-03-10 Sebastien Moutte <sebastien@moutte.net>
11091 Add new project files to MANIFEST.
11092 * win32/vs6/libgstaudiofx.dsp:
11093 * win32/vs6/libgstrtp.dsp:
11094 * win32/vs6/libgstrtsp.dsp:
11095 Update project files.
11097 2007-03-10 Tim-Philipp Müller <tim at centricular dot net>
11099 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
11100 (gst_avi_demux_parse_index):
11101 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
11102 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
11103 Printf format fixes; also add some missing quotes in translated
11104 strings. Fixes #416728 and #416727.
11106 2007-03-09 Jan Schmidt <thaytan@mad.scientist.com>
11108 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
11109 Tim and I can't think of any reason the child audio sink needs to
11110 be set back to NULL after successfully determining that it can
11111 reach READY - it gets immediately set back to READY by the caller
11112 anyway, causing an unnecessary close/open of any audio devices
11115 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
11119 Add ja.po file from #377306.
11121 2007-03-09 Tim-Philipp Müller <tim at centricular dot net>
11123 * sys/sunaudio/gstsunaudio.c: (plugin_init):
11124 * sys/sunaudio/gstsunaudiomixertrack.c:
11125 (gst_sunaudiomixer_track_new):
11126 Actually translate sunaudio mixer track labels instead of just
11127 marking the strings as translatable (#377306); clean up weird
11128 label string mapping code that serves no apparent purpose. Also
11129 set the 'untranslated-label' property when creating mixer tracks
11130 if the GstMixerTrack base class supports this.
11132 * tests/check/Makefile.am:
11133 * tests/check/elements/.cvsignore:
11134 * tests/check/elements/sunaudio.c: (GST_START_TEST),
11136 Very minimalistic unit test for sunaudiomixer element (compiles, but not
11137 actually tested on a system where sunaudiomixer is available).
11139 2007-03-09 Jan Schmidt <thaytan@mad.scientist.com>
11141 * tests/check/Makefile.am:
11142 Re-enable the states test and see if it works on the buildbots.
11144 2007-03-09 Jan Schmidt <thaytan@mad.scientist.com>
11146 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
11147 (gst_dvdec_src_negotiate), (gst_dvdec_chain),
11148 (gst_dvdec_change_state):
11149 * ext/dv/gstdvdec.h:
11150 Infer pixel-aspect-ratio from the video frame format if it isn't
11151 provided by the container, as happens when playing DV from AVI
11152 or Quicktime containers.
11154 Patch by: Wim Taymans <wim@fluendo.com>
11157 2007-03-09 Wim Taymans <wim@fluendo.com>
11159 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
11160 When activated, remove the udpsrc timeout, we have dataflow and timeouts
11161 will later be handled by the jitterbuffer.
11163 2007-03-09 Wim Taymans <wim@fluendo.com>
11165 * ext/taglib/gstid3v2mux.cc:
11166 Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
11169 Patch by: Alex Lancaster <alexl at users sourceforge net>
11171 2007-03-09 Wim Taymans <wim@fluendo.com>
11173 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11174 (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
11175 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11176 (gst_avi_demux_chain):
11177 Fix stream position reporting after a seek. Fixes #416445.
11179 2007-03-08 Wim Taymans <wim@fluendo.com>
11181 Patch by: René Stadler <mail at renestadler dot de>
11183 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11184 (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
11185 (gst_avi_demux_stream_data), (gst_avi_demux_chain):
11186 Make avidemux accept optional header chunks in any order.
11189 2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
11191 * tests/check/Makefile.am:
11192 Disable the states check until the remaining Valgrind errors
11193 are fixed or suppressed.
11195 2007-03-08 Sebastian Dröge <slomo@circular-chaos.org>
11197 * tests/check/elements/.cvsignore:
11198 Add audiodynamic check to .cvsignore
11200 2007-03-08 Sebastian Dröge <slomo@circular-chaos.org>
11202 reviewed by: Stefan Kost <ensonic@users.sf.net>
11204 * gst/audiofx/Makefile.am:
11205 * gst/audiofx/audiodynamic.c:
11206 (gst_audio_dynamic_characteristics_get_type),
11207 (gst_audio_dynamic_mode_get_type),
11208 (gst_audio_dynamic_set_process_function),
11209 (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
11210 (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
11211 (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
11212 (gst_audio_dynamic_transform_hard_knee_compressor_int),
11213 (gst_audio_dynamic_transform_hard_knee_compressor_float),
11214 (gst_audio_dynamic_transform_soft_knee_compressor_int),
11215 (gst_audio_dynamic_transform_soft_knee_compressor_float),
11216 (gst_audio_dynamic_transform_hard_knee_expander_int),
11217 (gst_audio_dynamic_transform_hard_knee_expander_float),
11218 (gst_audio_dynamic_transform_soft_knee_expander_int),
11219 (gst_audio_dynamic_transform_soft_knee_expander_float),
11220 (gst_audio_dynamic_transform_ip):
11221 * gst/audiofx/audiodynamic.h:
11222 * gst/audiofx/audiofx.c: (plugin_init):
11223 Add new audiodynamic element which can act as a compressor or
11224 expander. Supported are hard-knee and soft-knee operation modes with
11225 user-specified ratio and threshold.
11226 Attack and release parameters are not yet implemented but will follow.
11227 * docs/plugins/Makefile.am:
11228 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11229 * docs/plugins/gst-plugins-good-plugins-sections.txt:
11230 * docs/plugins/gst-plugins-good-plugins.args:
11231 * docs/plugins/inspect/plugin-audiofx.xml:
11232 Integrate audiodynamic into the docs.
11233 * tests/check/Makefile.am:
11234 * tests/check/elements/audiodynamic.c: (setup_dynamic),
11235 (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
11236 Add unit test for audiodynamic.
11238 2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
11240 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
11241 Free handles that we allocated when exiting via the error paths.
11243 2007-03-07 Stefan Kost <ensonic@users.sf.net>
11245 * gst/level/gstlevel.c: (gst_level_class_init),
11246 (gst_level_set_caps), (gst_level_start), (gst_level_event),
11247 (gst_level_transform_ip):
11248 * gst/level/gstlevel.h:
11249 Resolve message timestamps against the playback segment.
11251 2007-03-06 Tim-Philipp Müller <tim at centricular dot net>
11253 * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
11254 (gst_id3demux_sink_activate):
11255 Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
11256 caps passed to it (previously one code path assumed it took ownership
11257 while another one assumed it didn't, while in fact it sometimes did and
11258 sometimes didn't ...).
11261 * tests/files/Makefile.am:
11262 * tests/files/id3-407349-1.tag:
11263 * tests/files/id3-407349-2.tag:
11264 Add directory where data for unit tests can be stored.
11266 * tests/Makefile.am:
11267 * tests/check/Makefile.am:
11268 * tests/check/elements/.cvsignore:
11269 * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
11270 (read_tags_from_file), (run_check_for_file),
11271 (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
11272 Add unit test for id3demux, and in particular for bug #407349. Only
11273 testing pull-mode for now; push mode doesn't work yet because the test
11274 files are smaller than ID3_TYPE_FIND_MIN_SIZE.
11276 2007-03-06 Tim-Philipp Müller <tim at centricular dot net>
11278 * tests/check/Makefile.am:
11279 Add missing backslash at end of line.
11281 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
11285 2007-03-06 Tim-Philipp Müller <tim at centricular dot net>
11287 * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
11288 * gst/id3demux/id3tags.h:
11289 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11290 (parse_obsolete_tdat_frame):
11291 Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
11292 the four-digit number will be interpreted as a year, whereas it is
11293 month and day in DDMM format. Instead, parse TDAT frames and fix up
11294 the date in the GST_TAG_DATE tag later if we also extracted a year.
11297 2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
11299 * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11300 (gst_switch_commit_new_kid):
11301 Fix up the dispose logic so it doesn't leak, and fix setting of
11302 the child state so that we don't set a child to our current state
11303 just as we are changing it to something else.
11305 2007-03-06 Wim Taymans <wim@fluendo.com>
11307 * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
11309 * gst/goom/gstgoom.h:
11310 Document, fix and improve goom adapter behaviour.
11313 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
11315 * ext/esd/esdsink.c: (gst_esdsink_open):
11316 Unref static pad template after using it.
11318 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
11320 * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
11321 (gst_switch_commit_new_kid):
11322 Fix up the reference counting of the child elements.
11324 2007-03-05 Wim Taymans <wim@fluendo.com>
11326 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11327 * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
11328 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
11329 Fix encoding-name case.
11331 2007-03-05 Wim Taymans <wim@fluendo.com>
11333 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
11334 (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
11335 (gst_rtp_speex_depay_process):
11336 * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
11337 (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
11338 (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
11339 (gst_rtp_speex_pay_change_state):
11340 * gst/rtp/gstrtpspeexpay.h:
11341 Fix speex (de)payloader. Fixes #358040.
11343 2007-03-05 Jan Schmidt <thaytan@mad.scientist.com>
11345 * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
11346 (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
11347 Install fakesink in NULL by fixing some broken logic. This obviates
11348 the need to manually set _IS_SINK.
11349 Add some comments and remove a little cruft while I'm at it.
11351 2007-03-05 Wim Taymans <wim@fluendo.com>
11353 * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
11354 Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
11356 2007-03-04 Tim-Philipp Müller <tim at centricular dot net>
11361 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11363 * tests/check/Makefile.am:
11364 Gah! Also disable gconfvideosink from the tests, otherwise
11365 it will instantiate autovideosink, and dfbvideosink and
11366 leak on the buildbots.
11368 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11370 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
11371 (gst_cdio_cdda_src_finalize):
11372 Make sure we always destroy our libcdio handle.
11374 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11376 * tests/check/Makefile.am:
11377 Disable autovideosink so the buildbots don't barf over memory
11378 leaked in the directfb sink.
11380 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11382 * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
11383 Chain up in dispose
11385 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11387 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11388 (gst_multipart_find_pad_by_mime):
11389 Use gst_pad_new_from_static_template instead of
11390 static_pad_template_get+pad_new.
11392 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11394 * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
11395 Catch the case where no clock has been set.
11397 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11399 * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
11400 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
11401 (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
11402 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
11403 (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
11404 (gst_gconf_audio_src_finalize), (do_toggle_element):
11405 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
11406 (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
11407 (do_toggle_element):
11408 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
11409 (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
11410 (gst_gconf_video_src_finalize), (do_toggle_element):
11411 * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
11412 (gst_switch_sink_reset), (gst_switch_sink_set_child):
11413 * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11414 * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11415 * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11416 (gst_shout2send_init), (gst_shout2send_finalize):
11417 * gst/debug/testplugin.c: (gst_test_class_init),
11418 (gst_test_finalize):
11419 * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
11420 (gst_flxdec_dispose):
11421 * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
11422 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
11423 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11424 (gst_rtspsrc_finalize):
11425 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
11426 * gst/rtsp/rtspextwms.h:
11427 * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
11428 (gst_smpte_finalize):
11429 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
11430 * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
11431 (gst_udpsink_finalize):
11432 * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
11433 (gst_wavparse_sink_activate):
11434 * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
11435 * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
11436 (gst_oss_src_finalize):
11437 * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
11438 * sys/v4l2/gstv4l2object.h:
11439 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
11440 (gst_v4l2src_finalize):
11441 * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
11443 Fix a bunch of leaks shown by the newly-added states test.
11445 2007-03-04 Jan Schmidt <thaytan@mad.scientist.com>
11447 * ext/dv/gstdvdec.c: (gst_dvdec_init):
11448 Use gst_pad_new_from_static_template instead of
11449 static_pad_template_get+pad_new.
11451 2007-03-03 Tim-Philipp Müller <tim at centricular dot net>
11453 Patch by: Loïc Minier <lool+gnome at via ecp fr>
11455 * ext/libcaca/Makefile.am:
11456 * gst/debug/Makefile.am:
11457 Don't mix tabs and spaces (#414168).
11459 2007-03-02 Stefan Kost <ensonic@users.sf.net>
11461 * tests/check/generic/.cvsignore:
11462 Ignore files to please buildbot.
11464 2007-03-02 Stefan Kost <ensonic@users.sf.net>
11466 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
11467 (gst_wavparse_stream_data):
11468 Unbreak my previous commit (swapped nominator & denominator). Tim,
11469 thanks for spotting.
11471 2007-03-02 Wim Taymans <wim@fluendo.com>
11473 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
11474 (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
11475 (gst_cdio_cdda_src_finalize):
11476 Small code cleanups.
11477 Don't use pad_alloc as the base class cannot deal with the error codes.
11479 2007-03-02 Wim Taymans <wim@fluendo.com>
11481 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11482 (gst_udpsrc_create):
11485 2007-03-02 Stefan Kost <ensonic@users.sf.net>
11487 Patch by: René Stadler <mail@renestadler.de>
11489 * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
11490 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
11491 (gst_wavparse_stream_data):
11492 Handle rounding better to not drop last sample frame. Fixes #356692
11494 2007-03-02 Jan Schmidt <thaytan@mad.scientist.com>
11496 * tests/check/Makefile.am:
11497 Disable cacasink from the states check too - it also calls exit(1)
11498 on us when it can't find a terminal to talk to.
11500 2007-03-02 Wim Taymans <wim@fluendo.com>
11502 Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11504 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11505 (gst_udpsrc_create), (gst_udpsrc_set_property),
11506 (gst_udpsrc_get_property):
11507 * gst/udp/gstudpsrc.h:
11508 Add support to strip proprietary headers. Fixes #350296.
11510 2007-03-02 Wim Taymans <wim@fluendo.com>
11512 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
11515 2007-03-02 Wim Taymans <wim@fluendo.com>
11517 Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
11519 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
11520 (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
11521 (gst_rtp_mp2t_depay_set_property),
11522 (gst_rtp_mp2t_depay_get_property):
11523 * gst/rtp/gstrtpmp2tdepay.h:
11524 Add support to strip off proprietary headers. Fixes #350278.
11526 2007-03-02 Wim Taymans <wim@fluendo.com>
11531 2007-03-02 Wim Taymans <wim@fluendo.com>
11533 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
11534 (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
11535 (gst_sunaudiosrc_open):
11536 * sys/sunaudio/gstsunaudiosrc.h:
11537 Remove device-name from GstSunAudioSrc. Fixes #412597.
11539 2007-03-01 Sebastian Dröge <slomo@circular-chaos.org>
11541 * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11542 * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11543 Having NULL as UDI previously selected the default sink/src. Change
11544 this back but mention it in the debug output.
11545 * ext/hal/hal.c: (gst_hal_get_alsa_element),
11546 (gst_hal_get_oss_element), (gst_hal_get_string),
11547 (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
11548 (gst_hal_get_audio_src):
11550 Refactor a bit, check all error conditions, greatly improve debugging
11551 and fix some possible memory leaks. Also implement OSS support
11552 and allow specifying an UDI that points to a real device. For this the
11553 child device which supports ALSA (preferred) or OSS is used.
11554 As a side effect this makes it impossible now to get a alsasink in
11555 halaudiosrc and a alsasrc in halaudiosink.
11557 2007-03-01 Wim Taymans <wim@fluendo.com>
11559 * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
11560 (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
11561 Errors from the udp sources are not fatal unless all of them are in
11564 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
11566 * tests/check/Makefile.am:
11567 Disable aasink in the states test. I suspect this is the element that
11568 is calling exit(1) when it can't proceed.
11570 2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
11572 * tests/check/Makefile.am:
11573 Draw plugins in from the build tree sys/ dir, rather than picking
11574 up the already installed versions.
11576 2007-03-01 Zaheer Abbas Merali <zaheerabbas at merali dot org>
11578 * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
11579 Error out correctly when getting xcontext fails.
11581 2007-03-01 Wim Taymans <wim@fluendo.com>
11583 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
11584 Make state change to PAUSED NO_PREROLL because that's what it will be in
11585 the future and rtspsrc relies on it.
11587 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
11588 (gst_rtspsrc_change_state):
11589 Don't error out when we don't get an error from the state change
11592 2007-03-01 Sebastian Dröge <slomo@circular-chaos.org>
11594 * ext/hal/gsthalaudiosink.c: (do_toggle_element):
11595 * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
11596 Check if the device UDI is set before trying to query HAL
11597 about it and give a useful error message if it wasn't set.
11598 * ext/hal/hal.c: (gst_hal_get_string):
11599 Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
11600 gives an assertion failure in D-Bus when running with
11601 DBUS_FATAL_WARNINGS=1.
11603 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
11606 Convert to new AG_GST style.
11608 2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
11610 * tests/check/Makefile.am:
11611 * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
11612 add test for states
11614 2007-02-28 Wim Taymans <wim@fluendo.com>
11616 * tests/check/elements/.cvsignore:
11617 Add new videofilter check to .cvsignore.
11619 2007-02-28 Wim Taymans <wim@fluendo.com>
11621 * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
11622 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11623 (gst_avi_demux_loop), (gst_avi_demux_chain):
11624 Fix combined flow return. Fixes #412608.
11626 2007-02-28 Wim Taymans <wim@fluendo.com>
11628 * gst/videofilter/Makefile.am:
11631 2007-02-28 Wim Taymans <wim@fluendo.com>
11633 * gst/videofilter/gstgamma.h:
11636 2007-02-28 Wim Taymans <wim@fluendo.com>
11638 Patch by: Mark Nauwelaerts <manauw at skynet be>
11640 * gst/videofilter/Makefile.am:
11641 * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
11642 (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
11643 (gst_gamma_get_property), (gst_gamma_calculate_tables),
11644 (oil_tablelookup_u8), (gst_gamma_set_caps),
11645 (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
11646 Port gamma filter to 0.10. Fixes #412704.
11648 * tests/check/Makefile.am:
11649 * tests/check/elements/videofilter.c: (setup_filter),
11650 (cleanup_filter), (check_filter), (GST_START_TEST),
11651 (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
11652 Add unit tests for videofilters.
11654 2007-02-28 Wim Taymans <wim@fluendo.com>
11657 Add another interesting test url.
11659 * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
11660 Don't allow getting header fields from data packets.
11662 2007-02-28 Michael Smith <msmith@fluendo.com>
11664 * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
11665 (gst_shout2send_init), (gst_shout2send_start),
11666 (gst_shout2send_set_property), (gst_shout2send_get_property):
11667 * ext/shout2/gstshout2.h:
11668 Add a property for username.
11670 2007-02-27 Christian Schallerr <christian@fluendo.com>
11672 * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
11674 2007-02-26 Jan Schmidt <thaytan@mad.scientist.com>
11676 * gst/rtsp/Makefile.am:
11677 Fix make check too.
11679 2007-02-26 Jan Schmidt <thaytan@mad.scientist.com>
11681 * gst/rtsp/base64.c: (util_base64_encode):
11682 * gst/rtsp/base64.h:
11683 Commit missing files for base64 encoding.
11685 2007-02-24 Tim-Philipp Müller <tim at centricular dot net>
11687 Patch by: Loïc Minier <lool+gnome at via ecp fr>
11690 * ext/annodex/Makefile.am:
11691 * ext/jpeg/Makefile.am:
11692 * ext/speex/Makefile.am:
11693 * gst/alpha/Makefile.am:
11694 * gst/cutter/Makefile.am:
11695 * gst/debug/Makefile.am:
11696 * gst/effectv/Makefile.am:
11697 * gst/goom/Makefile.am:
11698 * gst/level/Makefile.am:
11699 * gst/smpte/Makefile.am:
11700 * gst/videofilter/Makefile.am:
11701 Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
11703 2007-02-23 Jan Schmidt <thaytan@mad.scientist.com>
11705 * gst/rtsp/Makefile.am:
11706 * gst/rtsp/rtspconnection.c: (append_auth_header),
11707 (rtsp_connection_send), (rtsp_connection_set_auth):
11708 g_base64_encode is a GLib 2.12 function. Use an equivalent taken
11709 from icecast to replace it. Relicensed from GPL courtesy of Mike
11712 2007-02-23 Jan Schmidt <thaytan@mad.scientist.com>
11714 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
11715 (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
11716 (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
11717 (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
11718 (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11719 (gst_rtspsrc_uri_set_uri):
11720 * gst/rtsp/gstrtspsrc.h:
11721 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11722 (append_auth_header), (rtsp_connection_send),
11723 (rtsp_connection_free), (rtsp_connection_set_auth):
11724 * gst/rtsp/rtspconnection.h:
11725 * gst/rtsp/rtspdefs.h:
11726 * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
11727 * gst/rtsp/rtspurl.h:
11729 Implement simple Basic Authentication support so that urls like
11730 rtsp://user:pass@hostname/rtspstream work on hosts that require
11733 2007-02-22 Edgard Lima <edgard.lima@indt.org.br>
11735 * sys/v4l2/gstv4l2object.c:
11736 * sys/v4l2/gstv4l2tuner.c:
11737 * sys/v4l2/v4l2_calls.c:
11738 Fix segfault when oppening a radio device.
11740 2007-02-22 Stefan Kost <ensonic@users.sf.net>
11742 * gst/level/gstlevel.c: (gst_level_set_caps),
11743 (gst_level_transform_ip):
11745 * tests/check/elements/level.c: (GST_START_TEST):
11746 Fix level for multi-channel case.
11748 2007-02-21 Stefan Kost <ensonic@users.sf.net>
11750 * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
11751 (gst_level_transform_ip):
11752 * gst/level/gstlevel.h:
11753 Use function pointer for process function and add process functions
11756 2007-02-19 Stefan Kost <ensonic@users.sf.net>
11758 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11759 (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11760 (gst_v4l2src_capture_init):
11761 Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
11764 2007-02-18 Wim Taymans <wim@fluendo.com>
11766 * gst/rtp/Makefile.am:
11767 * gst/rtp/gstrtp.c: (plugin_init):
11768 * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
11769 (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
11770 (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
11771 (gst_rtp_mp2t_pay_plugin_init):
11772 * gst/rtp/gstrtpmp2tpay.h:
11773 Added simple mpeg transport stream payloader.
11775 2007-02-16 Wim Taymans <wim@fluendo.com>
11778 Add example H264 rtsp url.
11780 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11781 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11782 Don't convert values to lowercase or we might mess up base64 encoded
11785 2007-02-16 Wim Taymans <wim@fluendo.com>
11788 Fix case of string params.
11790 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
11791 (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
11792 Fix depayloader, support more packet types.
11793 Add sync codes to make sure the packetizer can do its job.
11795 * gst/rtp/gstrtpmp4gdepay.c:
11796 * gst/rtp/gstrtpmp4gpay.c:
11797 * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
11798 Fix caps case again.
11800 2007-02-15 Wim Taymans <wim@fluendo.com>
11802 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
11803 Set right caps on output buffers.
11805 2007-02-14 Wim Taymans <wim@fluendo.com>
11807 * gst/rtsp/sdpmessage.c: (sdp_parse_line):
11808 As spotted by: Peter Kjellerstedt <pkj at axis com>:
11809 Clear stack allocated SDPMedia struct before calling _init() on it.
11810 Clarify this in the docs as well.
11812 2007-02-14 Jan Schmidt <thaytan@mad.scientist.com>
11814 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
11816 Don't reset the profile when going switching states, as it makes
11817 the element non-reusable.
11819 2007-02-14 Wim Taymans <wim@fluendo.com>
11821 * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
11822 (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
11823 (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
11824 (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
11825 (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
11827 * gst/rtsp/sdpmessage.h:
11828 Based on patch by: jp.liu <jp_liu at astrocom dot cn>
11829 Fix memory management of SDP messages. Fixes #407793.
11831 2007-02-14 Stefan Kost <ensonic@users.sf.net>
11833 Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
11835 * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
11836 Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
11838 2007-02-14 Wim Taymans <wim@fluendo.com>
11840 Patch by: jp.liu <jp_liu at astrocom dot cn>
11842 * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11843 Fix parsing of password field in url. Fixes #407797.
11845 2007-02-14 Wim Taymans <wim@fluendo.com>
11847 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
11848 (gst_wavparse_reset), (gst_wavparse_init),
11849 (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
11850 (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
11851 (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11852 (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
11853 (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11854 (gst_wavparse_loop), (gst_wavparse_chain),
11855 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
11856 (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
11858 * gst/wavparse/gstwavparse.h:
11861 Various code cleanups.
11862 When the bitrate is not known (bps == 0 or compressed formats) let
11863 downstream element guestimate the duration and position and don't
11864 generate timestamps or durations. Fixes #405213.
11865 Fix EOS and ERROR conditions in chain mode, we just need to forward the
11866 error flowreturn upstream.
11868 2007-02-13 Jan Schmidt <thaytan@mad.scientist.com>
11870 * ext/gconf/Makefile.am:
11871 * ext/gconf/gconf.c: (gst_gconf_get_string),
11872 (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
11873 (gst_gconf_render_bin_with_default):
11874 * ext/gconf/gconf.h:
11875 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
11876 (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
11877 (gst_gconf_audio_sink_dispose), (do_change_child),
11878 (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
11879 (cb_change_child), (gst_gconf_audio_sink_change_state):
11880 * ext/gconf/gstgconfaudiosink.h:
11881 * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
11882 (gst_switch_sink_class_init), (gst_switch_sink_reset),
11883 (gst_switch_sink_init), (gst_switch_sink_dispose),
11884 (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
11885 (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
11886 (gst_switch_sink_get_property), (gst_switch_sink_change_state):
11887 * ext/gconf/gstswitchsink.h:
11888 * gst/autodetect/gstautoaudiosink.c:
11889 (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
11890 (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
11891 (gst_auto_audio_sink_detect):
11892 * gst/autodetect/gstautovideosink.c:
11893 (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
11894 (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
11895 (gst_auto_video_sink_detect):
11896 Re-factor the gconfaudiosink into a "GstSwitchSink" base class
11897 and a child that implements the GConf key monitoring. The end goal of
11898 this is an audio sink that can be changed on the fly, but at the
11899 moment it still only changes on the next READY transition.
11901 2007-02-13 Stefan Kost <ensonic@users.sf.net>
11903 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11904 (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11905 (gst_avi_demux_sync), (gst_avi_demux_massage_index),
11906 (gst_avi_demux_calculate_durations_from_index),
11907 (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11908 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11909 (gst_avi_demux_loop):
11910 Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
11912 2007-02-13 Stefan Kost <ensonic@users.sf.net>
11915 * docs/plugins/Makefile.am:
11916 Add crossreferences to glib/gobject/gstream docs.
11918 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
11920 * gst/monoscope/Makefile.am:
11921 * gst/monoscope/gstmonoscope.c:
11922 Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
11923 (but no LIBS, since we only use defines from the headers).
11925 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
11927 Based on patch by: Jonathan Matthew <jonathan at kaolin wh9 net>
11929 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
11930 (gst_wavparse_stream_data):
11931 Fix massive memory leak when operating in streaming mode due to
11932 GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
11935 2007-02-12 Stefan Kost <ensonic@users.sf.net>
11937 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11938 (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
11939 (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
11940 (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11941 (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11942 (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
11943 (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
11944 (gst_avi_demux_calculate_durations_from_index),
11945 (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
11946 (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
11947 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
11948 * gst/avi/gstavidemux.h:
11949 Save some memory (8%) by repacking the index entry structure (more to
11950 come). Add more FIXMEs to questionable parts.
11952 2007-02-12 Stefan Kost <ensonic@users.sf.net>
11954 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
11955 (gst_v4l2src_get_caps):
11956 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
11957 (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
11958 (gst_v4l2src_capture_init):
11959 More FIXME comments and messaging changes.
11961 2007-02-12 Stefan Kost <ensonic@users.sf.net>
11963 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
11964 (gst_goom_change_state):
11965 * gst/goom/gstgoom.h:
11966 Improved docs and use GST_DEBUG_FUNCPTR.
11968 * gst/level/gstlevel.c: (gst_level_class_init):
11969 Use GST_DEBUG_FUNCPTR.
11971 * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
11972 (gst_monoscope_chain), (gst_monoscope_change_state):
11973 Improved docs source cleanups.
11975 2007-02-12 Tim-Philipp Müller <tim at centricular dot net>
11977 * gst/debug/Makefile.am:
11978 * gst/debug/gstdebug.c: (plugin_init):
11979 * gst/debug/gstpushfilesrc.c:
11980 * gst/debug/gstpushfilesrc.h:
11981 Add code for a pushfilesrc element that implements a pushfile:// URI
11982 handler, to make debugging push-mode operation of demuxer/decoders
11983 that support both easier in connection with seek/playbin/etc.
11984 The element isn't registered at the moment.
11986 2007-02-11 Sébastien Moutte <sebastien@moutte.net>
11988 * gst/avi/gstavimux.c:
11989 Comment a #if 0 in caps template definition as VS6 seems to
11991 * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
11992 Use gst_guint64_to_gdouble for conversion.
11993 * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
11994 Move variables declaration before the first instruction.
11995 * gst/rtsp/rtspdefs.c:(rtsp_strresult):
11996 Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
11997 And don't include netdb.h for G_OS_WIN32
11998 * gst/rtsp/sdpmessage.c:(sdp_parse_line):
11999 This initialization SDPMedia nmedia = {.media = NULL }; is not supported
12000 by VS6 then use an other way to initialize SDPMedia structure.
12001 * gst/udp/gstdynudpsink.h:
12002 * gst/udp/gstdynudpnetutils.h:
12003 Do not include <sys/time.h> for G_OS_WIN32
12004 * gst/udp/gstudpsrc.c:
12005 Define socklen_t as int for G_OS_WIN32
12006 * win/common/config.h.in:
12007 Undef HAVE_NETINET_IN_H
12008 * win32/vs6/gst_plugins_good.dsw:
12009 * win32/vs6/libgstrtp.dsp:
12010 * win32/vs6/libgstrtsp.dsp:
12011 * win32/vs6/libgstautogen.dsp:
12012 * win32/vs6/libgstaudiofx.dsp:
12013 * win32/vs6/libgstudp.dsp:
12014 Add and update project files.
12015 * win32/common/gstudp-enumtypes.c:
12016 * win32/common/gstudp-enumtypes.h:
12017 Add a copy of udp enumtypes to win32/common as in core
12020 2007-02-11 Stefan Kost <ensonic@users.sf.net>
12023 Activate monoscope when building with --enable-experimental. Fix
12024 --enable-external configure switch description.
12026 * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
12027 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
12030 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
12032 * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
12033 Explicitly cast result of pointer arithmetic to integer in order to
12034 avoid compiler warnings on some 64-bit systems. Should fix #406018.
12036 2007-02-08 Tim-Philipp Müller <tim at centricular dot net>
12038 * gst/debug/progressreport.c:
12041 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
12043 * docs/plugins/inspect/plugin-rtp.xml:
12044 Update for new elements.
12046 * gst/debug/progressreport.h:
12047 Commit newly-created header file as well.
12049 2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
12051 * docs/plugins/Makefile.am:
12052 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12053 * docs/plugins/gst-plugins-good-plugins-sections.txt:
12054 * docs/plugins/gst-plugins-good-plugins.hierarchy:
12055 * gst/debug/Makefile.am:
12056 * gst/debug/progressreport.c: (gst_progress_report_post_progress),
12057 (gst_progress_report_do_query), (gst_progress_report_report):
12058 Make progressreport element post messages with the current progress
12059 on the bus. Also add some basic docs for it.
12061 2007-01-30 Tim-Philipp Müller <tim at centricular dot net>
12063 * ext/hal/hal.c: (gst_hal_get_string):
12065 Some small cleanups; deal with errors when parsing the HAL ALSA
12066 capabilities a bit better.
12068 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
12070 * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
12071 Let's try this again and use the right cast this time.
12073 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
12075 * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
12076 Add cast to avoid compiler warnings with older GLib versions
12077 where the nick/name members in GEnumValue are not declared as
12080 2007-02-06 Tim-Philipp Müller <tim at centricular dot net>
12082 * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
12083 (gst_gconf_render_bin_from_key),
12084 (gst_gconf_get_default_audio_sink):
12085 * ext/gconf/gconf.h:
12086 * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
12087 (do_toggle_element), (gst_gconf_audio_sink_set_property),
12088 (gst_gconf_audio_sink_get_property):
12089 In gconfaudiosink, get the right key as the old key in do_toggle
12090 (ie. one dependent on the profile selected). Log some more stuff so
12091 we can see what's actually going on.
12093 2007-02-06 Sebastian Dröge <slomo@circular-chaos.org>
12095 * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
12096 (gst_audio_amplify_class_init), (gst_audio_amplify_init),
12097 (gst_audio_amplify_set_process_function),
12098 (gst_audio_amplify_setup):
12099 * gst/audiofx/audioamplify.h:
12100 * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12101 (gst_audio_invert_class_init), (gst_audio_invert_setup):
12102 * gst/audiofx/audioinvert.h:
12103 Some small cleanups and port both elements to the new GstAudioFilter
12104 base class to save a few lines of common code.
12105 * gst/audiofx/Makefile.am:
12106 Link against libgstaudio for the above changes
12108 2007-01-29 Wim Taymans <wim@fluendo.com>
12110 * tests/check/elements/.cvsignore:
12113 2007-01-26 Wim Taymans <wim@fluendo.com>
12115 Patch by: charles <charlesg3 at gmail dot com>
12117 * ext/shout2/gstshout2.c: (gst_shout2send_init),
12118 (set_shout_metadata), (gst_shout2send_event):
12119 * ext/shout2/gstshout2.h:
12120 Properly handle tags in shout2send. Fixes #399825.
12122 2007-01-25 Wim Taymans <wim@fluendo.com>
12124 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
12125 (gst_rtspsrc_activate_streams):
12126 Convert SDP fields to upper/lowercase following the rules in the SDP to
12129 2007-01-25 Wim Taymans <wim@fluendo.com>
12132 * gst/rtp/gstrtpilbcdepay.c:
12133 * gst/rtp/gstrtpilbcpay.c:
12134 * gst/rtp/gstrtpmp4gdepay.c:
12135 * gst/rtp/gstrtpmp4gpay.c:
12136 * gst/rtp/gstrtpspeexdepay.c:
12137 * gst/rtp/gstrtpspeexpay.c:
12138 * gst/rtp/gstrtpsv3vdepay.c:
12139 * gst/rtp/gstrtptheoradepay.c:
12140 * gst/rtp/gstrtptheorapay.c:
12141 * gst/rtp/gstrtpvorbisdepay.c:
12142 * gst/rtp/gstrtpvorbispay.c:
12143 Fix case of encoding-name and key/value pairs to match the document.
12144 This is to make interoperation with SDP case-insensitive as required by
12147 2007-01-25 Wim Taymans <wim@fluendo.com>
12150 Bump required -core/-base to CVS
12152 2007-01-25 Wim Taymans <wim@fluendo.com>
12154 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
12155 (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
12156 * gst/rtp/gstrtpL16pay.h:
12157 Fill up to MTU using adapter.
12158 Timestamp rtp packets.
12160 2007-01-25 Edward Hervey <edward@fluendo.com>
12162 * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12163 * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
12164 Use G_GSIZE_FORMAT in print statements for portability.
12165 Fixes build on macosx.
12167 2007-01-24 Wim Taymans <wim@fluendo.com>
12169 * gst/rtp/Makefile.am:
12170 * gst/rtp/gstrtp.c: (plugin_init):
12171 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
12172 (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
12173 (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
12174 (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
12175 (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
12176 (gst_rtp_L16_depay_plugin_init):
12177 * gst/rtp/gstrtpL16depay.h:
12178 * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
12179 (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
12180 (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
12181 (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
12182 (gst_rtp_L16_pay_plugin_init):
12183 * gst/rtp/gstrtpL16pay.h:
12184 Port and enable raw audio payloader/depayloader. Needs a bit more work
12185 on the payloader side.
12187 2007-01-24 Wim Taymans <wim@fluendo.com>
12189 * gst/rtsp/gstrtspsrc.c: (pad_blocked),
12190 (gst_rtspsrc_stream_configure_transport),
12191 (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
12192 * gst/rtsp/gstrtspsrc.h:
12193 Only unblock the udp pads when we linked and activated them all.
12196 2007-01-24 Wim Taymans <wim@fluendo.com>
12198 * gst/rtp/Makefile.am:
12199 * gst/rtp/gstrtp.c: (plugin_init):
12200 * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
12201 (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
12202 (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
12203 (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
12204 (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
12205 * gst/rtp/gstrtpac3depay.h:
12206 Added simple AC3 depayloader (RFC 4184).
12208 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
12211 2007-01-24 Sebastian Dröge <slomo@circular-chaos.org>
12213 reviewed by: Stefan Kost <ensonic@users.sf.net>
12215 * gst/audiofx/Makefile.am:
12216 * gst/audiofx/audioamplify.c:
12217 (gst_audio_amplify_clipping_method_get_type),
12218 (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
12219 (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
12220 (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
12221 (gst_audio_amplify_set_caps),
12222 (gst_audio_amplify_transform_int_clip),
12223 (gst_audio_amplify_transform_int_wrap_negative),
12224 (gst_audio_amplify_transform_int_wrap_positive),
12225 (gst_audio_amplify_transform_float_clip),
12226 (gst_audio_amplify_transform_float_wrap_negative),
12227 (gst_audio_amplify_transform_float_wrap_positive),
12228 (gst_audio_amplify_transform_ip):
12229 * gst/audiofx/audioamplify.h:
12230 * gst/audiofx/audiofx.c: (plugin_init):
12231 Add new element "audioamplify". This allows scaling of raw audio
12232 samples, similar to the "volume" element, but provides different modes
12233 for clipping and allows unlimited amplification. It's mainly targeted
12234 for creative sound design and not as a replacement of the "volume"
12235 element. Fixes #397162
12236 * docs/plugins/Makefile.am:
12237 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12238 * docs/plugins/gst-plugins-good-plugins-sections.txt:
12239 * docs/plugins/gst-plugins-good-plugins.args:
12240 * docs/plugins/inspect/plugin-audiofx.xml:
12241 Add docs for audioamplify and integrate them into the build system
12242 * tests/check/Makefile.am:
12243 * tests/check/elements/audioamplify.c: (setup_amplify),
12244 (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
12245 Add fairly extensive unit test suite for audioamplify
12247 2007-01-24 Wim Taymans <wim@fluendo.com>
12249 * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
12250 Unblock pads after adding the pads to the element so that autopluggers
12251 get a change to link something. Possibly fixes #395688.
12253 2007-01-24 Wim Taymans <wim@fluendo.com>
12255 * gst/rtp/gstrtpamrdepay.c:
12256 * gst/rtp/gstrtpgsmdepay.c:
12257 * gst/rtp/gstrtph263pdepay.c:
12258 * gst/rtp/gstrtph263ppay.c:
12259 * gst/rtp/gstrtph264depay.c:
12260 * gst/rtp/gstrtpilbcdepay.c:
12261 * gst/rtp/gstrtpmp2tdepay.c:
12262 * gst/rtp/gstrtpmp4gdepay.c:
12263 * gst/rtp/gstrtpmp4gpay.c:
12264 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
12265 * gst/rtp/gstrtpmp4vpay.c:
12266 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
12267 (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
12268 (gst_rtp_mpa_depay_process):
12269 * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
12270 (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
12271 * gst/rtp/gstrtppcmadepay.c:
12272 * gst/rtp/gstrtppcmudepay.c:
12273 * gst/rtp/gstrtpspeexdepay.c:
12274 * gst/rtp/gstrtpspeexpay.c:
12275 * gst/rtp/gstrtpsv3vdepay.c:
12276 * gst/rtp/gstrtptheoradepay.c:
12277 * gst/rtp/gstrtptheorapay.c:
12278 * gst/rtp/gstrtpvorbisdepay.c:
12279 * gst/rtp/gstrtpvorbispay.c:
12280 Fix caps with payload numbers.
12281 Add some fixed payload numbers to caps when possible.
12283 2007-01-23 Sebastian Dröge <slomo@circular-chaos.org>
12285 reviewed by: Stefan Kost <ensonic@users.sf.net>
12287 * gst/audiofx/Makefile.am:
12288 * gst/audiofx/audiofx.c: (plugin_init):
12289 * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
12290 (gst_audio_invert_class_init), (gst_audio_invert_init),
12291 (gst_audio_invert_set_property), (gst_audio_invert_get_property),
12292 (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
12293 (gst_audio_invert_transform_float),
12294 (gst_audio_invert_transform_ip):
12295 * gst/audiofx/audioinvert.h:
12296 Add new audiofx element "audioinvert". This element swaps the upper
12297 and lower half of samples and can be used for example for a
12298 wide-stereo effect. Fixes #396057
12299 * docs/plugins/Makefile.am:
12300 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12301 * docs/plugins/gst-plugins-good-plugins-sections.txt:
12302 * docs/plugins/gst-plugins-good-plugins.args:
12303 * docs/plugins/inspect/plugin-audiofx.xml:
12304 Add docs for the audioinvert element and add them to the build system.
12305 * tests/check/Makefile.am:
12306 * tests/check/elements/audioinvert.c: (setup_invert),
12307 (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
12308 Add unit test suite for the audioinvert element.
12310 2007-01-23 Wim Taymans <wim@fluendo.com>
12312 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
12313 (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
12314 Parse config params as string and int.
12315 Parse and use AU header length
12317 2007-01-23 Wim Taymans <wim@fluendo.com>
12319 * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
12320 (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
12321 * gst/smpte/gstmask.c: (_gst_mask_register):
12322 * gst/smpte/gstmask.h:
12323 * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
12324 * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
12325 (gst_smpte_paint_triangle_clock):
12326 constify some static structs.
12327 Don't update the mask if nothing changed to the params.
12328 Make sure we never draw outside of the picture. Fixes #398325.
12330 2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
12332 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
12333 Error out properly when pull_range fails while we're reading the
12334 headers, instead of just pausing the task silently. Fixes #399338.
12336 2007-01-19 Tim-Philipp Müller <tim at centricular dot net>
12338 * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12339 Some more sanity checks to make sure the input formats match and the
12340 input pads are actually negotiated, in case someone tries to feed
12341 buffers from fakesrc or filesrc. Fixes #398299.
12342 Also const-ify an array, just because we can.
12344 2007-01-19 Edward Hervey <edward@fluendo.com>
12346 * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
12347 Ignore previous commit, that was only valid for widths and heights
12348 that are multiples of 4.
12349 Copy over size/stride macros from jpegdec. This allows the element
12350 to work with any width,height...
12351 ... but puts in evidence that the actual transformations only work
12352 with width/height that are multiples of 4.
12354 2007-01-19 Edward Hervey <edward@fluendo.com>
12356 * gst/smpte/gstsmpte.c: (gst_smpte_collected):
12357 Allocate buffers of the right size.
12358 The proper size of a I420 buffer in bytes is:
12364 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
12366 * gst/smpte/gstsmpte.c: (gst_smpte_init):
12367 Proxy getcaps on sink pads too, so that we either end up with the
12368 same dimensions on all pads or error out if that's not possible
12369 (seems to work even!). Fixes #398086, I think.
12371 2007-01-18 Tim-Philipp Müller <tim at centricular dot net>
12373 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12374 * docs/plugins/gst-plugins-good-plugins.args:
12375 * docs/plugins/gst-plugins-good-plugins.hierarchy:
12376 Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
12377 fix integer properties with -1 as minimum value.
12379 * docs/plugins/inspect/plugin-1394.xml:
12380 * docs/plugins/inspect/plugin-aasink.xml:
12381 * docs/plugins/inspect/plugin-alaw.xml:
12382 * docs/plugins/inspect/plugin-alpha.xml:
12383 * docs/plugins/inspect/plugin-alphacolor.xml:
12384 * docs/plugins/inspect/plugin-annodex.xml:
12385 * docs/plugins/inspect/plugin-apetag.xml:
12386 * docs/plugins/inspect/plugin-audiofx.xml:
12387 * docs/plugins/inspect/plugin-auparse.xml:
12388 * docs/plugins/inspect/plugin-autodetect.xml:
12389 * docs/plugins/inspect/plugin-avi.xml:
12390 * docs/plugins/inspect/plugin-cacasink.xml:
12391 * docs/plugins/inspect/plugin-cairo.xml:
12392 * docs/plugins/inspect/plugin-cdio.xml:
12393 * docs/plugins/inspect/plugin-cutter.xml:
12394 * docs/plugins/inspect/plugin-debug.xml:
12395 * docs/plugins/inspect/plugin-dv.xml:
12396 * docs/plugins/inspect/plugin-efence.xml:
12397 * docs/plugins/inspect/plugin-effectv.xml:
12398 * docs/plugins/inspect/plugin-esdsink.xml:
12399 * docs/plugins/inspect/plugin-flac.xml:
12400 * docs/plugins/inspect/plugin-flxdec.xml:
12401 * docs/plugins/inspect/plugin-gconfelements.xml:
12402 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12403 * docs/plugins/inspect/plugin-goom.xml:
12404 * docs/plugins/inspect/plugin-halelements.xml:
12405 * docs/plugins/inspect/plugin-icydemux.xml:
12406 * docs/plugins/inspect/plugin-id3demux.xml:
12407 * docs/plugins/inspect/plugin-jpeg.xml:
12408 * docs/plugins/inspect/plugin-level.xml:
12409 * docs/plugins/inspect/plugin-matroska.xml:
12410 * docs/plugins/inspect/plugin-mulaw.xml:
12411 * docs/plugins/inspect/plugin-multipart.xml:
12412 * docs/plugins/inspect/plugin-navigationtest.xml:
12413 * docs/plugins/inspect/plugin-ossaudio.xml:
12414 * docs/plugins/inspect/plugin-png.xml:
12415 * docs/plugins/inspect/plugin-rtp.xml:
12416 * docs/plugins/inspect/plugin-rtsp.xml:
12417 * docs/plugins/inspect/plugin-shout2send.xml:
12418 * docs/plugins/inspect/plugin-smpte.xml:
12419 * docs/plugins/inspect/plugin-speex.xml:
12420 * docs/plugins/inspect/plugin-taglib.xml:
12421 * docs/plugins/inspect/plugin-udp.xml:
12422 * docs/plugins/inspect/plugin-videobalance.xml:
12423 * docs/plugins/inspect/plugin-videobox.xml:
12424 * docs/plugins/inspect/plugin-videoflip.xml:
12425 * docs/plugins/inspect/plugin-videomixer.xml:
12426 * docs/plugins/inspect/plugin-wavenc.xml:
12427 * docs/plugins/inspect/plugin-wavparse.xml:
12428 * docs/plugins/inspect/plugin-ximagesrc.xml:
12431 2007-01-18 Stefan Kost <ensonic@users.sf.net>
12433 Patch by: Sebastian Dröge <slomo circular-chaos org>
12435 * gst/audiofx/audiopanorama.c:
12436 Fix doc section name (Fixes #397946)
12438 2007-01-17 Stefan Kost <ensonic@users.sf.net>
12440 * sys/v4l2/gstv4l2object.c:
12441 (gst_v4l2_object_install_properties_helper),
12442 (gst_v4l2_object_set_property_helper),
12443 (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
12444 * sys/v4l2/gstv4l2object.h:
12445 * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
12446 (gst_v4l2src_init), (gst_v4l2src_set_property),
12447 (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
12448 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
12449 (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
12450 (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
12451 (gst_v4l2src_capture_deinit):
12452 Fix EIO handing when capturing. Add new property to specify the number of
12453 buffers to enque (and remove the borked num-buffers usage).
12455 2007-01-16 Stefan Kost <ensonic@users.sf.net>
12457 Patch by: Sebastian Dröge <slomo circular-chaos org>
12459 * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
12460 (gst_audio_panorama_set_process_function):
12461 Use a function array for process methods, add more docs and define the
12462 startindex of enums.
12464 2007-01-14 Tim-Philipp Müller <tim at centricular dot net>
12466 Patch by: Mark Nauwelaerts <manauw at skynet be>
12468 * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
12469 (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
12470 (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
12471 (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
12472 (gst_avi_mux_riff_get_avi_header),
12473 (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
12474 (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
12475 (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
12476 (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
12477 (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
12478 (gst_avi_mux_change_state):
12479 * gst/avi/gstavimux.h:
12480 * tests/check/elements/avimux.c: (teardown_src_pad):
12481 Add support for more than one audio stream; write better AVIX
12482 header; refactor code a bit; don't announce vorbis caps on our audio
12483 sink pads since we don't support it anyway. Closes #379298.
12485 2007-01-13 Tim-Philipp Müller <tim at centricular dot net>
12487 Patch by: Sebastian Dröge <slomo circular-chaos org>
12489 * gst/audiofx/audiopanorama.c:
12490 (gst_audio_panorama_method_get_type),
12491 (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12492 (gst_audio_panorama_set_process_function),
12493 (gst_audio_panorama_set_property),
12494 (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
12495 (gst_audio_panorama_transform_m2s_int_simple),
12496 (gst_audio_panorama_transform_s2s_int_simple),
12497 (gst_audio_panorama_transform_m2s_float_simple),
12498 (gst_audio_panorama_transform_s2s_float_simple):
12499 * gst/audiofx/audiopanorama.h:
12500 Add 'method' property and provide a simple (non-psychoacustic)
12501 processing method (#394859).
12503 * tests/check/elements/audiopanorama.c: (GST_START_TEST),
12505 Tests for new method.
12507 2007-01-11 Tim-Philipp Müller <tim at centricular dot net>
12509 * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
12510 * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
12511 Set correct caps on outgoing pulled buffers, or things blow up
12512 after recent core changes.
12514 2007-01-11 Wim Taymans <wim@fluendo.com>
12516 Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
12518 * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
12519 (gst_multipart_mux_request_new_pad),
12520 (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
12521 (gst_multipart_mux_change_state):
12522 Return FLOW errors ASAP. Fixes #394977.
12525 2007-01-11 Wim Taymans <wim@fluendo.com>
12527 Patch by: Lutz Mueller <lutz at topfrose dot de>
12529 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
12530 Check for stream pad before activating.
12532 2007-01-10 Wim Taymans <wim@fluendo.com>
12534 Patch by: Peter Kjellerstedt <pkj at axis com>
12536 * gst/rtsp/COPYING.MIT:
12537 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
12538 (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
12539 (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
12540 (gst_rtspsrc_stream_configure_transport),
12541 (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
12542 (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
12543 (gst_rtspsrc_parse_methods),
12544 (gst_rtspsrc_create_transports_string),
12545 (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
12546 (gst_rtspsrc_open), (gst_rtspsrc_close):
12547 * gst/rtsp/gstrtspsrc.h:
12548 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
12549 (rtsp_connection_connect), (rtsp_connection_send), (read_line),
12550 (parse_request_line), (parse_line), (rtsp_connection_read),
12551 (rtsp_connection_close):
12552 * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
12553 (rtsp_method_as_text), (rtsp_header_as_text),
12554 (rtsp_status_as_text), (rtsp_find_header_field),
12555 (rtsp_find_method):
12556 * gst/rtsp/rtspdefs.h:
12557 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
12558 (rtsp_ext_wms_configure_stream):
12559 * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
12560 (rtsp_message_new_request), (rtsp_message_init_request),
12561 (rtsp_message_new_response), (rtsp_message_init_response),
12562 (rtsp_message_init_data), (rtsp_message_unset),
12563 (rtsp_message_free), (rtsp_message_add_header),
12564 (rtsp_message_get_header), (rtsp_message_set_body),
12565 (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
12566 * gst/rtsp/rtspmessage.h:
12567 * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
12568 (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
12569 (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
12570 (sdp_message_dump):
12571 Allow url to be NULL to be able to use it for server connections.
12572 Can now send responses as well as requests.
12573 No longer hangs in an endless loop if EOF is received.
12574 Can now convert a status code to a text string.
12575 Return RTSP_HDR_INVALID for unknown headers.
12576 Return RTSP_INVALID for unknown methods.
12577 Copy CSeq and Session headers from the request.
12578 Only free memory corresponding to the currently set message type.
12579 Added const to function arguments as appropriate.
12580 Avoid a compiler warning when initializing nmedia.
12581 Use guint rather than gint to avoid compiler warnings.
12582 Fix crasher in wms extension.
12583 Factor out stream setup from open_connection.
12584 Delay activation of streams when actual data is received from the
12585 server, this prepares us to do proper protocol switching.
12590 2007-01-10 Tim-Philipp Müller <tim at centricular dot net>
12592 Patch by: Sebastian Dröge <slomo ubuntu com>
12594 * docs/plugins/Makefile.am:
12595 * gst/audiofx/audiopanorama.c:
12596 Some small docs fixes (#394851).
12598 2007-01-09 Wim Taymans <wim@fluendo.com>
12600 * gst/avi/gstavidemux.c:
12603 2007-01-09 Wim Taymans <wim@fluendo.com>
12605 * gst/rtp/Makefile.am:
12606 * gst/rtp/gstrtp.c: (plugin_init):
12607 * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
12608 (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
12609 (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
12610 (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
12611 (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
12612 * gst/rtp/gstrtpmpvdepay.h:
12613 Added RFC 2250 MPEG Video Depayloader.
12615 * gst/rtp/gstrtpL16depay.h:
12616 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
12617 (gst_rtp_h263p_depay_process):
12618 Fix Header file. Small cleanups.
12620 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
12621 (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
12622 (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
12623 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
12624 (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
12625 (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
12626 (gst_rtp_mp4v_depay_change_state):
12627 Remove usused code. Remove Adapter from state Change. Added debug.
12629 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
12630 (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
12631 (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
12632 * gst/rtp/gstrtpmpadepay.h:
12633 Subclass base depayloader.
12635 Support static payload type assignment as well.
12637 * gst/rtp/gstrtpmpapay.c:
12640 2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
12642 Patch by: Vincent Torri <vtorri at univ-evry fr>
12644 * ext/jpeg/gstjpegdec.c:
12645 * ext/jpeg/gstjpegenc.c:
12646 * ext/jpeg/smokecodec.c:
12647 These libjpeg callbacks should return a 'boolean' (unsigned char
12648 apparently) and not a 'gboolean' (which maps to gint). Fixes
12649 warnings when compiling with MingW (#393427).
12651 * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
12652 Use ioctlsocket on win32.
12654 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
12655 Some printf format fixes for win32.
12657 2007-01-07 Sébastien Moutte <sebastien@moutte.net>
12659 * gst/cutter/gstcutter.c: (gst_cutter_chain):
12660 Use gst_guint64_to_gdouble for conversion.
12661 * win32/vs6/libgstmatroska.dsp:
12662 Add zlib to the link.
12663 * win32/vs6/libgstvideobox.dsp:
12664 Update liboil library name (project is linked to
12665 liboil-0.3-0.lib now).
12667 2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
12669 * gst/matroska/Makefile.am:
12670 If zlib is available and used, we must link it explicitly for
12671 things to work on MingW (fixes #392855).
12673 2007-01-04 Tim-Philipp Müller <tim at centricular dot net>
12675 * ext/esd/esdsink.c: (gst_esdsink_delay):
12676 Don't return bogus values when esd_get_delay() fails for some
12679 2006-12-24 Tim-Philipp Müller <tim at centricular dot net>
12681 * sys/ximage/gstximagesrc.c: (composite_pixel):
12682 Fix presumably copy'n'pasto for 16bpp depth.
12684 2006-12-24 Tim-Philipp Müller <tim at centricular dot net>
12686 * gst/matroska/matroska-mux.c:
12687 (gst_matroska_mux_audio_pad_setcaps):
12688 The "signed" field in audio caps is of boolean type, trying to use
12689 gst_structure_get_int() to extract it will fail. Fixing this makes
12690 matroskamux accept raw audio input (#387121) (use at your own risk
12691 though, due to the matroska spec being not entirely useful in this
12693 Also fix up raw audio structures in template caps so that they
12694 represent what our setcaps function will actually accept, so that
12695 converters know what to convert to.
12696 Finally, don't fail if there isn't an "endianness" field in 8-bit
12699 2006-12-22 Stefan Kost <ensonic@users.sf.net>
12701 * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12702 * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12703 * tests/check/elements/cmmldec.c: (setup_cmmldec),
12704 (teardown_cmmldec):
12705 * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12706 (teardown_cmmlenc):
12707 * tests/check/elements/level.c: (setup_level), (cleanup_level):
12708 reapply consistent pad (de)activation
12710 2006-12-21 Jan Schmidt <thaytan@mad.scientist.com>
12715 * gst-plugins-good.doap:
12716 Add 0.10.5 doap entry
12718 === release 0.10.5 ===
12720 2006-12-21 Jan Schmidt <thaytan@mad.scientist.com>
12723 releasing 0.10.5, "The Path of Thorns"
12725 2006-12-21 Stefan Kost <ensonic@users.sf.net>
12727 * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12728 * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12729 * tests/check/elements/cmmldec.c: (setup_cmmldec),
12730 (teardown_cmmldec):
12731 * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12732 (teardown_cmmlenc):
12733 * tests/check/elements/level.c: (setup_level), (cleanup_level):
12734 revert my freeze breakage
12736 2006-12-21 Stefan Kost <ensonic@users.sf.net>
12738 * tests/check/elements/audiopanorama.c: (cleanup_panorama):
12739 * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
12740 * tests/check/elements/cmmldec.c: (setup_cmmldec),
12741 (teardown_cmmldec):
12742 * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
12743 (teardown_cmmlenc):
12744 * tests/check/elements/level.c: (setup_level), (cleanup_level):
12745 consistent pad (de)activation
12747 2006-12-18 Jan Schmidt <thaytan@mad.scientist.com>
12751 Disable LADPSA, as it has moved to the -bad module for the duration.
12753 2006-12-18 Wim Taymans <wim@fluendo.com>
12755 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12756 (gst_signal_processor_event):
12757 Reset flow_state back to _OK after a flush stop so that we exit our
12758 error state after the flush. Fixes #374213
12760 2006-12-16 David Schleef <ds@schleef.org>
12762 * sys/osxvideo/osxvideosink.h:
12763 * sys/osxvideo/osxvideosink.m:
12764 Decent effort at porting to 0.10. Needs cleanup on OS/X.
12766 2006-12-16 David Schleef <ds@schleef.org>
12768 Patch by: Vijay Santhanam <vijay santhanam gmail com>
12770 * sys/osxvideo/Makefile.am:
12771 * sys/osxvideo/osxvideosink.h:
12772 * sys/osxvideo/osxvideosink.m:
12773 Preliminary patch for porting osxvideosink
12775 2006-12-16 Wim Taymans <wim@fluendo.com>
12777 Patch by: Sjoerd Simons <sjoerd at luon dot net>
12779 * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
12780 (gst_videomixer_set_master_geometry),
12781 (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
12782 (gst_videomixer_reset), (gst_videomixer_init),
12783 (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
12784 (gst_videomixer_release_pad), (gst_videomixer_collected),
12785 (gst_videomixer_change_state):
12786 Introduce some locking around the videomixer state so that it does not
12787 crash when adding/removing pads. Fixes #383043.
12789 2006-12-16 Tim-Philipp Müller <tim at centricular dot net>
12792 Make sure libcaca can actually be used instead of just checking for
12793 /usr/bin/caca-config, so we don't wrongly try to build cacasink when
12794 cross-compiling (fixes #384587).
12796 2006-12-15 Thomas Vander Stichele <thomas at apestaart dot org>
12799 * gst-plugins-good.doap:
12800 * gst-plugins-good.spec.in:
12803 2006-12-14 Tim-Philipp Müller <tim at centricular dot net>
12806 libflac-1.1.3 changed API again, but we can't build against it yet,
12807 so make sure our check doesn't use libflac-1.1.3 and add a comment
12810 2006-12-14 Tim-Philipp Müller <tim at centricular dot net>
12812 * gst/effectv/gstquark.c: (gst_quarktv_transform),
12813 (gst_quarktv_planetable_clear):
12814 Add some NULL pointer checks (possibly related to #385623).
12816 2006-12-12 Tim-Philipp Müller <tim at centricular dot net>
12818 * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
12819 (gst_tag_demux_chain):
12820 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12821 In streaming mode, if the first buffer we get doesn't have an
12822 offset, fix it up to be 0, otherwise trimming won't work later on
12823 and we'll be typefinding application/x-id3, which may result in
12824 decodebin plugging an endless number of id3demux elements as a
12825 consequence. Fixes #385031.
12827 2006-12-08 Jan Schmidt <thaytan@mad.scientist.com>
12829 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
12830 Ignore the buffer_time the sound device reports. Turns out it is
12831 sometimes completely bogus and we're better off without it.
12833 2006-12-11 Tim-Philipp Müller <tim at centricular dot net>
12835 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12836 (gst_matroska_demux_video_caps):
12837 * gst/matroska/matroska-ids.c:
12838 (gst_matroska_track_init_video_context):
12839 * gst/matroska/matroska-ids.h:
12840 Try harder to extract the framerate for video tracks correctly and
12841 save it directly instead of converting it back and forth a few
12842 times. Mostly makes a difference for very small framerates (<1).
12845 2006-12-11 Tim-Philipp Müller <tim at centricular dot net>
12847 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
12848 (gst_gconf_audio_src_dispose), (do_toggle_element):
12849 * ext/gconf/gstgconfaudiosrc.h:
12850 Remove gconf notify hook when the gconfaudiosrc element is
12851 destroyed, otherwise the callback may be called on an
12852 already-destroyed instance and bad things happen. Should fix
12854 Also ignore gconf key changes when the source is already running.
12856 2006-12-09 Tim-Philipp Müller <tim at centricular dot net>
12858 Patch by: Sebastian Dröge <mail at slomosnail de>
12860 * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12861 We need to be able to read and parse any possible floating point string
12862 format ("1,234" or "1.234") irrespective of the current locale. g_strod()
12863 will parse the former only in certain locales though, so we really need
12864 to canonicalise the separator to '.' and then use g_ascii_strtod() to
12865 make sure we can parse either version at all times.
12866 Fixes #382982 for real.
12868 2006-12-08 Jan Schmidt <thaytan@mad.scientist.com>
12870 * sys/sunaudio/gstsunaudiomixerctrl.c:
12871 * sys/sunaudio/gstsunaudiosrc.c:
12873 Use the sunaudio debug category.
12875 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
12876 (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
12877 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
12878 (gst_sunaudiosink_open), (gst_sunaudiosink_close),
12879 (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
12880 (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
12881 (gst_sunaudiosink_reset):
12882 * sys/sunaudio/gstsunaudiosink.h:
12884 Uses the sunaudio debug category for all debug output
12885 Implements the _delay() callback to synchronise video playback better
12886 Change the segtotal and segsize values back to the parent class
12887 defaults (taken from buffer_time and latency_times of 200ms and 10ms
12889 Measure the samples written to the device vs. played.
12890 Keep track of segments in the device by writing empty eof frames, and
12891 sleep using a GCond when we get too far ahead and risk overrunning the
12896 2006-12-08 Wim Taymans <wim@fluendo.com>
12898 Patch by: Sebastian Dröge <mail at slomosnail de >
12900 * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
12901 (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
12902 * gst/audiofx/audiopanorama.h:
12903 Fix audiopanorame with float samples. Fixes #383726.
12905 2006-12-08 Jan Schmidt <thaytan@mad.scientist.com>
12907 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
12908 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
12909 (gst_sunaudiosrc_reset):
12911 Implement reset functions to unblock the src/sink more quickly on
12912 state change requests.
12913 Patch by: Brian Cameron <brian dot cameron at sun com>
12915 2006-12-08 Jan Schmidt <thaytan@mad.scientist.com>
12917 * sys/sunaudio/gstsunaudiomixer.c:
12918 (gst_sunaudiomixer_change_state):
12919 Construct the correct mixer device name when the AUDIODEV env var
12922 Patch by: Jerry Tan <jerry.tan at sun dot com>
12925 2006-12-08 Jan Schmidt <thaytan@mad.scientist.com>
12927 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12928 Apply patch to open the mixer control and set the MULTIPLE_OPEN
12929 ioctl. On solaris, the mixer device doesn't need opening non-blocking
12930 - it can be opened by multiple processes by default, but needs the ioctl for multiple opens within 1 process.
12931 Patch by: Jerry Tan <jerry.tan at sun dot com>
12934 2006-12-07 Wim Taymans <wim@fluendo.com>
12936 * gst/smpte/gstmask.h:
12937 * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
12938 (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
12939 (gst_smpte_collected), (gst_smpte_set_property),
12940 (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
12941 * gst/smpte/gstsmpte.h:
12942 Port to 0.10 some more.
12943 Added duration property to specify the duration of the transition.
12944 Make framerate a fraction.
12945 Deprecate fps property, we only use negotiated fps.
12947 Fix collectpad usage.
12948 Reset state in READY.
12949 Send NEWSEGMENT event.
12950 Fix racy updates of object properties.
12951 Added debug category.
12954 2006-12-06 Wim Taymans <wim@fluendo.com>
12956 Patch by: Sjoerd Simons <sjoerd at luon dot net>
12958 * gst/videomixer/videomixer.c:
12959 (gst_videomixer_set_master_geometry),
12960 (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
12961 Don't reset xpos and ypos in the setcaps function because causes
12962 unexpected behaviour.
12965 2006-12-06 Wim Taymans <wim@fluendo.com>
12967 * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
12968 (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
12969 Keep track of the buffer timestamp in the collectdata member instead
12970 of modifying the buffer without making the metadata writable first.
12973 2006-12-06 Wim Taymans <wim@fluendo.com>
12975 Patch by: Rob Taylor <robtaylor at floopily dot org>
12977 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12978 If using multicast in udpsrc, bind to the multicast address rather than
12980 This allows the simultanous use of multiple udpsrcs listening on
12981 different multicat addresses. Without this all udpsrcs will receive all
12982 packets from all subscribed multicast addresses.
12985 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
12987 * ext/taglib/gstid3v2mux.cc:
12988 Don't attempt to write a NULL frame into the ID3 tag set when the
12989 createFrame method returned NULL.
12991 Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
12993 2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
12995 * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
12996 Use g_strtod() instead of sscanf to parse doubles, so that it will
12997 try parsing in the C locale if the current locale fails.
12999 Patch by: Sebastian Dröge <mail at slomosnail de >
13001 2006-12-01 Jan Schmidt <thaytan@mad.scientist.com>
13004 Fix compilation on win32 under VS8
13005 Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
13006 Partially fixes #381175
13008 2006-11-30 Stefan Kost <ensonic@users.sf.net>
13010 * gst/avi/gstavimux.c:
13011 accept all mpegversions,fixes #380825
13012 spotted by: Jerome Alet
13014 2006-11-30 Stefan Kost <ensonic@users.sf.net>
13016 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
13017 (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
13018 (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
13019 (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
13020 cleanup the error message a bit more
13022 2006-11-28 Wim Taymans <wim@fluendo.com>
13024 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
13025 Fix width and height properties.
13027 * ext/libcaca/gstcacasink.h:
13028 Fix compilation on newer libcaca that require us to include a new
13029 header. Fixes #379918.
13031 2006-11-28 Wim Taymans <wim@fluendo.com>
13033 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
13034 * gst/rtsp/gstrtspsrc.h:
13035 * gst/rtsp/rtspext.h:
13036 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
13037 (rtsp_ext_wms_get_context):
13038 Add method so that extensions can choose to disable the setup of
13040 Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
13042 2006-11-27 Wim Taymans <wim@fluendo.com>
13044 Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
13046 * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
13047 Push header in a separate buffer instead of memcpy:ing all data.
13048 Change LF => CRLF in headers.
13049 Move trailing LF to header. Fixes #379792.
13051 2006-11-27 Wim Taymans <wim@fluendo.com>
13053 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
13054 Small buffer overflow fix and improve debugging.
13056 2006-11-24 Stefan Kost <ensonic@users.sf.net>
13058 * ext/esd/esdmon.h:
13059 * ext/esd/esdsink.h:
13060 remove obsolete _factory_init protos
13062 2006-11-24 Stefan Kost <ensonic@users.sf.net>
13064 * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
13065 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
13066 (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
13067 (gst_avi_demux_read_subindexes_push),
13068 (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
13069 (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
13070 (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
13071 (gst_avi_demux_massage_index),
13072 (gst_avi_demux_calculate_durations_from_index),
13073 (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
13074 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
13075 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
13076 remove dead code, tweak debugs statements, add comments, use
13077 _uint64_scale instead _uint64_scale_int when using guint64 values,
13078 small optimizations, reflow some error handling
13080 2006-11-22 Edward Hervey <edward@fluendo.com>
13083 We never put .pot files in cvs. Let's ignore them all.
13085 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
13088 ... but better exclude files that aren't disted.
13090 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
13093 Add v4l2 source files to list of files with translations, so the
13094 strings are actually extracted (however bad they still may be).
13096 2006-11-19 Tim-Philipp Müller <tim at centricular dot net>
13098 * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
13099 Minor clean-ups: const-ify static array, remove trailing comma from
13100 last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
13102 2006-11-19 Jan Schmidt <thaytan@mad.scientist.com>
13104 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13105 Make sure that g_free always gets called on the same pointer that was
13106 returned by g_malloc. Fixes #376594.
13107 Do not leak memory if decompressed size is wrong.
13108 Remove unneeded check of return value of g_malloc.
13109 Patch by: René Stadler <mail@renestadler.de>
13111 2006-11-18 Tim-Philipp Müller <tim at centricular dot net>
13113 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
13114 Add missing curly brackets.
13116 2006-11-17 Edgard Lima <edgard.lima@indt.org.br>
13118 * sys/v4l2/v4l2src_calls.c:
13119 Fix capture_deinit.
13121 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
13123 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
13124 (gst_matroska_mux_request_new_pad):
13125 Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
13127 * tests/check/elements/matroskamux.c: (setup_src_pad),
13128 (setup_sink_pad), (GST_START_TEST):
13129 Activate pads before using them.
13131 2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
13133 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
13134 Initialise variable to get rid of bogus compiler warning.
13136 2006-11-16 Stefan Kost <ensonic@users.sf.net>
13138 Patch by: Ville Syrjala <ville.syrjala@movial.fi>
13140 * gst/rtp/gstrtph263pay.c:
13141 * gst/rtp/gstrtph263pdepay.c:
13142 * gst/rtp/gstrtph263ppay.c:
13143 Specify H.263 variant and version in the caps (fixes #361637)
13145 2006-11-15 Wim Taymans <wim@fluendo.com>
13147 * gst/rtsp/rtspconnection.c: (read_body):
13148 Don't set a data pointer to NULL and a size > 0 when we deal
13149 with empty packets.
13151 * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
13152 (rtsp_message_init_response), (rtsp_message_init_data),
13153 (rtsp_message_unset), (rtsp_message_free),
13154 (rtsp_message_take_body):
13155 Check that we can't create invalid empty packets.
13157 2006-11-15 Tim-Philipp Müller <tim at centricular dot net>
13159 Patch by: Mark Nauwelaerts <manauw at skynet be>
13161 * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
13162 (gst_matroska_mux_class_init), (gst_matroska_pad_free),
13163 (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
13164 (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
13165 (gst_matroska_mux_track_header), (gst_matroska_mux_start),
13166 (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
13167 * gst/matroska/matroska-mux.h:
13168 Add basic tag writing support; implement releasing pads (#374658).
13170 2006-11-15 Tim-Philipp Müller <tim at centricular dot net>
13172 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13173 (gst_matroska_demux_audio_caps):
13174 Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
13176 2006-11-14 David Schleef <ds@schleef.org>
13178 * gst/matroska/matroska-mux.c: Add Dirac fourcc.
13180 2006-11-14 Tim-Philipp Müller <tim at centricular dot net>
13182 Patch by: Sergey Scobich <sergey.scobich at gmail com>
13184 * win32/vs8/gst-plugins-good.sln:
13185 * win32/vs8/libgst1394.vcproj:
13186 * win32/vs8/libgstaasink.vcproj:
13187 * win32/vs8/libgstalaw.vcproj:
13188 * win32/vs8/libgstalpha.vcproj:
13189 * win32/vs8/libgstalphacolor.vcproj:
13190 * win32/vs8/libgstannodex.vcproj:
13191 * win32/vs8/libgstapetag.vcproj:
13192 * win32/vs8/libgstaudiofx.vcproj:
13193 * win32/vs8/libgstauparse.vcproj:
13194 * win32/vs8/libgstautodetect.vcproj:
13195 * win32/vs8/libgstavi.vcproj:
13196 * win32/vs8/libgstcacasink.vcproj:
13197 * win32/vs8/libgstcdio.vcproj:
13198 * win32/vs8/libgstcutter.vcproj:
13199 * win32/vs8/libgstdv.vcproj:
13200 * win32/vs8/libgsteffectv.vcproj:
13201 * win32/vs8/libgstflac.vcproj:
13202 * win32/vs8/libgstflxdec.vcproj:
13203 * win32/vs8/libgstgoom.vcproj:
13204 * win32/vs8/libgsticydemux.vcproj:
13205 * win32/vs8/libgstid3demux.vcproj:
13206 * win32/vs8/libgstjpeg.vcproj:
13207 * win32/vs8/libgstladspa.vcproj:
13208 * win32/vs8/libgstlevel.vcproj:
13209 * win32/vs8/libgstmatroska.vcproj:
13210 * win32/vs8/libgstmikmod.vcproj:
13211 * win32/vs8/libgstmng.vcproj:
13212 * win32/vs8/libgstmonoscope.vcproj:
13213 * win32/vs8/libgstmulaw.vcproj:
13214 * win32/vs8/libgstmultipart.vcproj:
13215 * win32/vs8/libgstpng.vcproj:
13216 * win32/vs8/libgstrtp.vcproj:
13217 * win32/vs8/libgstrtsp.vcproj:
13218 * win32/vs8/libgstshout2.vcproj:
13219 * win32/vs8/libgstsmpte.vcproj:
13220 * win32/vs8/libgstspeex.vcproj:
13221 * win32/vs8/libgsttaglib.vcproj:
13222 * win32/vs8/libgstudp.vcproj:
13223 * win32/vs8/libgstvideobalance.vcproj:
13224 * win32/vs8/libgstvideobox.vcproj:
13225 * win32/vs8/libgstvideoflip.vcproj:
13226 * win32/vs8/libgstvideomixer.vcproj:
13227 * win32/vs8/libgstwavenc.vcproj:
13228 * win32/vs8/libgstwavparse.vcproj:
13229 Make end-of-line returns unixy, so that when the files are checked
13230 out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
13231 Hopefully fixes #366492.
13233 2006-11-14 Wim Taymans <wim@fluendo.com>
13235 * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
13236 Disable init_frames delay timestamp adjustment, it does not
13237 seem to be needed at all. Fixes #369621.
13239 2006-11-13 Wim Taymans <wim@fluendo.com>
13241 Patch by: Mark Nauwelaerts <manauw at skynet be>
13243 * gst/videomixer/videomixer.c:
13244 (gst_videomixer_set_master_geometry),
13245 (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
13246 (gst_videomixer_collect_free), (gst_videomixer_reset),
13247 (gst_videomixer_init), (gst_videomixer_finalize),
13248 (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
13249 (gst_videomixer_collected), (gst_videomixer_change_state):
13250 Fix memleak by unref'ing collectpads instance (when finalizing)
13251 Implement releasing a request pad. Fixes #374479.
13253 2006-11-10 Tim-Philipp Müller <tim at centricular dot net>
13255 Patch by: Sergey Scobich <sergey.scobich at gmail com>
13257 * win32/vs8/gst-plugins-good.sln:
13258 * win32/vs8/libgst1394.vcproj:
13259 * win32/vs8/libgstaasink.vcproj:
13260 * win32/vs8/libgstalaw.vcproj:
13261 * win32/vs8/libgstalpha.vcproj:
13262 * win32/vs8/libgstalphacolor.vcproj:
13263 * win32/vs8/libgstannodex.vcproj:
13264 * win32/vs8/libgstapetag.vcproj:
13265 * win32/vs8/libgstaudiofx.vcproj:
13266 * win32/vs8/libgstauparse.vcproj:
13267 * win32/vs8/libgstautodetect.vcproj:
13268 * win32/vs8/libgstavi.vcproj:
13269 * win32/vs8/libgstcacasink.vcproj:
13270 * win32/vs8/libgstcdio.vcproj:
13271 * win32/vs8/libgstcutter.vcproj:
13272 * win32/vs8/libgstdv.vcproj:
13273 * win32/vs8/libgsteffectv.vcproj:
13274 * win32/vs8/libgstflac.vcproj:
13275 * win32/vs8/libgstflxdec.vcproj:
13276 * win32/vs8/libgstgoom.vcproj:
13277 * win32/vs8/libgsticydemux.vcproj:
13278 * win32/vs8/libgstid3demux.vcproj:
13279 * win32/vs8/libgstjpeg.vcproj:
13280 * win32/vs8/libgstladspa.vcproj:
13281 * win32/vs8/libgstlevel.vcproj:
13282 * win32/vs8/libgstmatroska.vcproj:
13283 * win32/vs8/libgstmikmod.vcproj:
13284 * win32/vs8/libgstmng.vcproj:
13285 * win32/vs8/libgstmonoscope.vcproj:
13286 * win32/vs8/libgstmulaw.vcproj:
13287 * win32/vs8/libgstmultipart.vcproj:
13288 * win32/vs8/libgstpng.vcproj:
13289 * win32/vs8/libgstrtp.vcproj:
13290 * win32/vs8/libgstrtsp.vcproj:
13291 * win32/vs8/libgstshout2.vcproj:
13292 * win32/vs8/libgstsmpte.vcproj:
13293 * win32/vs8/libgstspeex.vcproj:
13294 * win32/vs8/libgsttaglib.vcproj:
13295 * win32/vs8/libgstudp.vcproj:
13296 * win32/vs8/libgstvideobalance.vcproj:
13297 * win32/vs8/libgstvideobox.vcproj:
13298 * win32/vs8/libgstvideoflip.vcproj:
13299 * win32/vs8/libgstvideomixer.vcproj:
13300 * win32/vs8/libgstwavenc.vcproj:
13301 * win32/vs8/libgstwavparse.vcproj:
13302 Add VS8 project files (note that many of the plugins in ext are
13303 disabled by default). Fixes #366492.
13305 2006-11-10 Stefan Kost <ensonic@users.sf.net>
13307 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
13308 we do not translate debug messages
13310 2006-11-08 Stefan Kost <ensonic@users.sf.net>
13312 * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
13313 fix categorisation, make short desc more explicit, remove unused code
13316 2006-11-08 Wim Taymans <wim@fluendo.com>
13318 * gst/rtp/gstrtpL16depay.c:
13319 * gst/rtp/gstrtpamrdepay.c:
13320 * gst/rtp/gstrtpamrpay.c:
13321 * gst/rtp/gstrtpgsmdepay.c:
13322 * gst/rtp/gstrtph263pay.c:
13323 * gst/rtp/gstrtph263pdepay.c:
13324 * gst/rtp/gstrtph263ppay.c:
13325 * gst/rtp/gstrtph264depay.c:
13326 * gst/rtp/gstrtpmp2tdepay.c:
13327 * gst/rtp/gstrtpmp4gdepay.c:
13328 * gst/rtp/gstrtpmp4gpay.c:
13329 * gst/rtp/gstrtpmp4vdepay.c:
13330 * gst/rtp/gstrtpmp4vpay.c:
13331 * gst/rtp/gstrtpmpadepay.c:
13332 * gst/rtp/gstrtpmpapay.c:
13333 * gst/rtp/gstrtppcmadepay.c:
13334 * gst/rtp/gstrtppcmapay.c:
13335 * gst/rtp/gstrtppcmudepay.c:
13336 * gst/rtp/gstrtppcmupay.c:
13337 * gst/rtp/gstrtpspeexdepay.c:
13338 * gst/rtp/gstrtpspeexpay.c:
13339 * gst/rtp/gstrtpsv3vdepay.c:
13340 Fix element descriptions.
13342 2006-11-08 Wim Taymans <wim@fluendo.com>
13344 * gst/rtp/gstrtpvorbisdepay.c:
13345 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
13347 Small cleanup in the payloader.
13349 2006-11-08 Wim Taymans <wim@fluendo.com>
13351 * gst/rtp/Makefile.am:
13352 * gst/rtp/gstrtp.c: (plugin_init):
13353 * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
13354 (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
13355 (gst_rtp_theora_depay_finalize),
13356 (gst_rtp_theora_depay_parse_configuration),
13357 (gst_rtp_theora_depay_setcaps),
13358 (gst_rtp_theora_depay_switch_codebook),
13359 (gst_rtp_theora_depay_process),
13360 (gst_rtp_theora_depay_set_property),
13361 (gst_rtp_theora_depay_get_property),
13362 (gst_rtp_theora_depay_change_state),
13363 (gst_rtp_theora_depay_plugin_init):
13364 * gst/rtp/gstrtptheoradepay.h:
13365 * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
13366 (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
13367 (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
13368 (gst_rtp_theora_pay_init_packet),
13369 (gst_rtp_theora_pay_flush_packet),
13370 (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
13371 (gst_rtp_theora_pay_handle_buffer),
13372 (gst_rtp_theora_pay_plugin_init):
13373 * gst/rtp/gstrtptheorapay.h:
13374 Add theora pay/depayloaders.
13376 2006-11-06 Wim Taymans <wim@fluendo.com>
13378 * gst/rtp/Makefile.am:
13379 We depend on gsttag to generate the vorbis comments.
13381 * gst/rtp/gstrtpvorbisdepay.c:
13382 (gst_rtp_vorbis_depay_parse_configuration),
13383 (gst_rtp_vorbis_depay_setcaps),
13384 (gst_rtp_vorbis_depay_switch_codebook),
13385 (gst_rtp_vorbis_depay_process):
13386 * gst/rtp/gstrtpvorbisdepay.h:
13387 Parse configuration string in the depayloader.
13388 Implement selecting and switching to a new codebook.
13389 Receiving vorbis over RTP now works.
13391 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
13392 (gst_rtp_vorbis_pay_init_packet),
13393 (gst_rtp_vorbis_pay_finish_headers),
13394 (gst_rtp_vorbis_pay_handle_buffer):
13395 * gst/rtp/gstrtpvorbispay.h:
13396 Set timestamps on outgoing buffers and RTP packets.
13397 Fix configuration string, prepend number of Packet headers.
13398 Fix encoding of ident string.
13399 Add delivery-method to caps.
13400 Streaming vorbis over RTP now works.
13402 2006-11-06 Wim Taymans <wim@fluendo.com>
13404 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13405 (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
13406 (gst_rtp_vorbis_pay_handle_buffer):
13407 * gst/rtp/gstrtpvorbispay.h:
13408 Generate a valid configuration string in the caps based on the
13411 2006-11-02 Tim-Philipp Müller <tim at centricular dot net>
13413 * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
13414 * ext/cdio/gstcdio.h:
13415 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
13416 Move CD-TEXT utility function into common file so it can also be
13417 used by a future cdioparanoiasrc.
13419 2006-11-01 Edgard Lima <edgard.lima@indt.org.br>
13421 * sys/v4l2/Makefile.am:
13422 * sys/v4l2/gstv4l2object.c:
13423 * sys/v4l2/gstv4l2src.c:
13424 * sys/v4l2/gstv4l2xoverlay.c:
13425 * sys/v4l2/v4l2_calls.c:
13426 * sys/v4l2/v4l2src_calls.c:
13427 Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
13428 xoverlay code that is still not implemented.
13430 2006-11-01 Tim-Philipp Müller <tim at centricular dot net>
13432 * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13433 We require a -base more recent than 0.10.9, so it's safe to use
13434 GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
13436 * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
13437 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
13438 Use _newsegment_full() now that we depend on a recent enough core.
13440 * gst/wavparse/gstwavparse.c:
13441 Remove cruft that we don't need any longer now that we depend on
13442 a recent enough -base.
13444 2006-10-31 Wim Taymans <wim@fluendo.com>
13446 * gst/rtp/Makefile.am:
13447 * gst/rtp/gstrtp.c: (plugin_init):
13448 * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
13449 (gst_rtpilbcpay_setcaps):
13450 Fix and activate ILBC pay and depayloaders. Fixes #368162.
13452 2006-10-31 Wim Taymans <wim@fluendo.com>
13454 * ext/speex/gstspeexdec.c: (speex_dec_convert),
13455 (speex_dec_sink_event), (speex_dec_chain_parse_header):
13456 Some small cleanups, use _scale.
13458 2006-10-31 Wim Taymans <wim@fluendo.com>
13460 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
13461 Use higher precision scale function.
13463 2006-10-30 Tim-Philipp Müller <tim at centricular dot net>
13465 Patch by: Michal Benes <michal dot benes at itonis tv>
13467 * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
13468 (gst_matroska_demux_read_track_encodings),
13469 (gst_matroska_decode_buffer):
13470 Fix several issues with encoded/compressed/encrypted/signed tracks;
13471 also, remove superfluous newline characters from some debug
13472 statements. (#366155)
13474 2006-10-30 Wim Taymans <wim@fluendo.com>
13476 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
13477 * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
13478 (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
13479 (gst_smokedec_change_state):
13480 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
13481 (gst_smokeenc_init), (gst_smokeenc_finalize),
13482 (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
13483 (gst_smokeenc_resync), (gst_smokeenc_chain),
13484 (gst_smokeenc_set_property), (gst_smokeenc_get_property),
13485 (gst_smokeenc_change_state):
13486 Various cleanups, capsnego and leak fixes.
13488 2006-10-30 Wim Taymans <wim@fluendo.com>
13490 Patch by: Mark Nauwelaerts <manauw at skynet be>
13492 * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
13493 Fix videomixer so that it can handle any combination of framerates.
13496 2006-10-28 Wim Taymans <wim@fluendo.com>
13498 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
13499 (gst_avi_demux_parse_file_header),
13500 (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
13501 (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
13502 (gst_avi_demux_chain):
13503 Fix position query for audio. also fixes timestamps in streaming
13504 mode and bug #364958.
13507 2006-10-27 Wim Taymans <wim@fluendo.com>
13509 * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
13510 * ext/libpng/gstpngenc.h:
13511 Fix strides. Fixes #364856.
13513 Set caps on outgoing buffers.
13515 2006-10-18 Wim Taymans <wim@fluendo.com>
13517 Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
13519 * gst/rtp/gstrtpgsmpay.c:
13520 * gst/rtp/gstrtph263pay.c:
13521 * gst/rtp/gstrtpmpapay.c:
13522 * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
13523 (gst_rtp_pcma_pay_handle_buffer):
13524 * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
13525 Add static payload numbers in addition to the dynamic ones.
13528 2006-10-18 Wim Taymans <wim@fluendo.com>
13530 * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
13531 (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
13532 (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
13533 (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
13534 * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
13535 * gst/rtsp/rtspdefs.h:
13536 * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13537 * gst/rtsp/rtspurl.h:
13538 Reuse already existing enum for lower transport.
13539 Add rtspt and rtspu protocols.
13540 Send redirect to rtspt when udp times out.
13542 2006-10-18 Wim Taymans <wim@fluendo.com>
13544 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
13545 (gst_wavparse_stream_data):
13546 Fix seeking some more, mostly for speed changes.
13548 2006-10-18 Tim-Philipp Müller <tim at centricular dot net>
13550 Patch by: Fredrik Persson <frepe at bredband net>
13552 * sys/v4l2/gstv4l2tuner.c:
13553 * sys/v4l2/gstv4l2tuner.h:
13554 Fix _set_channel(): remove useless g_object_notify() for "channel"
13555 property that doesn't exist any longer and therefore now also
13556 useless redirect (#338818).
13558 2006-10-17 Wim Taymans <wim@fluendo.com>
13560 * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
13561 Some drivers do not support unsetting the non-blocking flag once the
13562 device is opened. In those cases, close/open the device in
13563 non-blocking mode. Fixes #362673.
13565 2006-10-17 Stefan Kost <ensonic@users.sf.net>
13567 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13568 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13569 (gst_v4l2src_get_fps):
13570 dear stefan, framespersecond is not frameperiod, reverting but adding
13573 2006-10-17 Stefan Kost <ensonic@users.sf.net>
13575 * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
13576 * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
13577 (gst_v4l2src_get_fps):
13578 Numerator is numerator and denominator is denominator. Say that aloud
13579 5 times and retry after next beer.
13581 2006-10-16 Tim-Philipp Müller <tim at centricular dot net>
13583 Patch by: Josep Torra Valles <josep at fluendo com>
13585 * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13586 * ext/esd/esdsink.c: (gst_esdsink_write):
13587 * ext/flac/gstflacdec.c: (gst_flac_dec_length),
13588 (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
13589 (gst_flac_dec_send_newsegment):
13590 * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
13591 (gst_flac_enc_tell_callback):
13592 * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
13593 (smokecodec_parse_header), (smokecodec_decode):
13594 * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
13595 * gst/debug/efence.c: (gst_fenced_buffer_alloc):
13596 * gst/goom/Makefile.am:
13597 * gst/goom/gstgoom.c:
13598 * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
13599 * gst/rtsp/gstrtspsrc.c:
13600 * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13601 * gst/udp/gstudpsink.c:
13602 * gst/udp/gstudpsrc.c:
13603 * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
13604 * sys/sunaudio/gstsunaudiomixertrack.h:
13605 Fix a bunch of problems discovered by the Forte compiler, mostly type
13606 mixups and pointer arithmetics with void pointers. Fixes #362603.
13608 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
13610 * ext/speex/gstspeex.c: (plugin_init):
13611 * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
13612 (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
13613 (gst_speex_enc_class_init), (gst_speex_enc_finalize),
13614 (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
13615 (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
13616 (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
13617 (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
13618 (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
13619 (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
13620 (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
13621 (gst_speex_enc_chain), (gst_speex_enc_get_property),
13622 (gst_speex_enc_set_property), (gst_speex_enc_change_state):
13623 * ext/speex/gstspeexenc.h:
13624 Miscellaneous clean-ups, among other things: speexenc => enc to
13625 enhance code readability; change speexenc => speex_enc; in chain
13626 function unref input buffer in case of error; take reference in
13627 event function; use boilerplate macro; use gst_pad_query_peer_*
13628 convenience functions.
13630 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
13632 * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
13633 (gst_speexenc_set_last_msg), (gst_speexenc_setup),
13634 (gst_speexenc_set_header_on_caps):
13635 Fix some mem leaks.
13637 2006-10-11 Wim Taymans <wim@fluendo.com>
13640 Added some other URL.
13642 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
13643 (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
13644 (gst_rtspsrc_open), (gst_rtspsrc_play),
13645 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13646 * gst/rtsp/gstrtspsrc.h:
13647 Work on fallback to TCP connection when the UDP socket times out.
13648 Handler server requests, just reply with OK for now.
13650 * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13651 * gst/rtsp/rtspdefs.h:
13652 Added some more Real extension headers.
13654 * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13655 Fix parsing of urls with a ':' that is not part of the hostname:port
13658 2006-10-11 Tim-Philipp Müller <tim at centricular dot net>
13660 * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
13661 * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
13662 * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13663 Activate pad before adding it to the already-running element.
13665 * tests/check/elements/icydemux.c: (icydemux_found_pad):
13666 Activate newly-created pad too.
13668 2006-10-11 Wim Taymans <wim@fluendo.com>
13670 Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
13672 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13673 (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
13674 (gst_udpsrc_start):
13675 Fix some leaks in caps and uris. Fixes #361252.
13677 2006-10-10 Tim-Philipp Müller <tim at centricular dot net>
13679 * gst/wavparse/Makefile.am:
13680 Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
13682 2006-10-09 Jan Schmidt <thaytan@mad.scientist.com>
13684 * sys/v4l2/gstv4l2xoverlay.c:
13685 * sys/v4l2/gstv4l2xoverlay.h:
13686 Fix build as per the patch in #338818 comment 36.
13688 2006-10-07 Tim-Philipp Müller <tim at centricular dot net>
13690 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
13691 Activate pads before adding them to the source.
13693 2006-10-06 Wim Taymans <wim@fluendo.com>
13695 * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
13696 * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
13697 Activate pads before adding.
13699 2006-10-06 Wim Taymans <wim@fluendo.com>
13701 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13702 (gst_multipart_find_pad_by_mime):
13703 Activate pads before adding.
13705 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
13706 BOILERPLATE sets parent_class for us.
13708 2006-10-06 Wim Taymans <wim@fluendo.com>
13710 * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
13711 (gst_rtspsrc_class_init), (gst_rtspsrc_init),
13712 (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
13713 (gst_rtspsrc_alloc_udp_ports),
13714 (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
13715 (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
13716 (gst_rtspsrc_create_transports_string),
13717 (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
13718 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13719 * gst/rtsp/gstrtspsrc.h:
13720 Rework how the transport string is constructed, try to share channels
13722 Make most of the stuff less dependant on RTP as we are also going to use
13724 Add support for transport specific session managers.
13726 * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
13727 Implement _flush().
13729 * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13730 * gst/rtsp/rtspdefs.h:
13731 Add generic error return code.
13733 * gst/rtsp/rtspext.h:
13734 Add support for pluggable tranport strings.
13736 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
13737 (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
13738 (rtsp_ext_wms_get_context):
13739 Detect WMServer and activate the extension.
13741 * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
13742 (rtsp_transport_get_manager), (rtsp_transport_parse):
13743 * gst/rtsp/rtsptransport.h:
13744 Added methods to get mime/manager for certain transports.
13746 2006-10-05 Tim-Philipp Müller <tim at centricular dot net>
13748 * ext/cairo/gsttimeoverlay.c:
13749 (gst_cairo_time_overlay_update_font_height):
13750 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
13751 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
13752 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13753 * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13754 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13755 * ext/libpng/gstpngdec.c: (user_endrow_callback):
13756 * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
13757 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
13758 (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
13759 (gst_avi_demux_stream_data):
13760 * gst/cutter/gstcutter.c: (gst_cutter_chain):
13761 * gst/debug/efence.c: (gst_efence_buffer_alloc),
13762 (gst_fenced_buffer_copy):
13763 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13764 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13765 * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
13766 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
13767 (gst_rtspsrc_handle_message):
13768 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
13769 * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
13770 Printf format fixes.
13772 2006-10-04 Wim Taymans <wim@fluendo.com>
13774 * gst/rtsp/Makefile.am:
13775 Dist new .h file too.
13777 2006-10-04 Wim Taymans <wim@fluendo.com>
13779 * gst/rtsp/Makefile.am:
13780 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
13781 (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
13782 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
13783 (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
13784 (gst_rtspsrc_parse_rtpmap),
13785 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
13786 (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13787 (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
13788 * gst/rtsp/gstrtspsrc.h:
13789 * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13790 * gst/rtsp/rtspdefs.h:
13791 * gst/rtsp/rtspext.h:
13792 * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
13793 (rtsp_ext_wms_get_context):
13794 * gst/rtsp/rtspextwms.h:
13795 * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
13796 (rtsp_transport_parse):
13797 * gst/rtsp/rtsptransport.h:
13798 Factor out extension in separate module.
13799 Fix getcaps to filter against the padtemplate.
13800 Use Content-Base if the server gives one.
13801 Rework the transport parsing a bit for future extensions.
13802 Added some Real Header field definitions.
13804 2006-10-04 Thomas Vander Stichele <thomas at apestaart dot org>
13806 * docs/plugins/Makefile.am:
13807 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13808 * docs/plugins/gst-plugins-good-plugins-sections.txt:
13810 * gst-plugins-good.spec.in:
13813 2006-10-04 Tim-Philipp Müller <tim at centricular dot net>
13815 * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
13816 Extract disc/album/medium number and count and try harder
13817 to extract track number/count.
13819 2006-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
13823 add build stuff for v4l2, needs --enable-experimental until
13824 the last bits are resolved
13826 2006-09-29 Tim-Philipp Müller <tim at centricular dot net>
13828 * tests/check/Makefile.am:
13829 Disable autodetect test temporarily, so that the build bots
13830 update -bad and the ranks of unreliable video sinks in there.
13832 * tests/check/elements/autodetect.c: (GST_START_TEST):
13833 Skip test if no usable videosink is found.
13835 2006-09-29 Wim Taymans <wim@fluendo.com>
13838 Add some more URLs.
13840 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
13841 (gst_rtspsrc_init), (gst_rtspsrc_finalize),
13842 (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
13843 (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
13844 (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
13845 (gst_rtspsrc_loop), (gst_rtspsrc_send),
13846 (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
13847 (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
13848 (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
13849 * gst/rtsp/gstrtspsrc.h:
13850 Add timeout property to control UDP timeouts.
13851 Fix error messages.
13852 Also start a loop function when operating in UDP mode so that we can
13853 do some more stuff async.
13854 Handle element messages from udpsrc to detect timeouts. If a timeout
13855 happens we currently generate an error.
13856 API: rtspsrc::timeout property.
13858 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
13859 (gst_udpsrc_create):
13860 Really implement the timeout in microseconds and not milliseconds.
13862 2006-09-29 Wim Taymans <wim@fluendo.com>
13864 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
13865 (gst_udpsrc_create), (gst_udpsrc_set_property),
13866 (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
13867 * gst/udp/gstudpsrc.h:
13868 Added property to post a message on timeout.
13870 When restarting the select, initialize the fdsets again.
13871 Init control sockets so we don't accidentally close a random socket.
13872 API: GstUDPSrc::timeout property
13874 2006-09-29 Wim Taymans <wim@fluendo.com>
13876 * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13877 Fix flag registration.
13879 * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
13880 Reading 0 also means 'no more commands'
13882 2006-09-29 Wim Taymans <wim@fluendo.com>
13884 Patch by: Antoine Tremblay <hexa00 at gmail dot com>
13886 * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
13887 Fix possible infinite loop when shutting down, a read can also return
13888 0 to indicate no more messages are available. Fixes #358156.
13890 2006-09-25 Wim Taymans <wim@fluendo.com>
13892 * gst/autodetect/gstautoaudiosink.c:
13893 (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
13894 (gst_auto_audio_sink_find_best):
13895 * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
13897 don't try to set "sync" property when it is not available.
13899 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
13901 Patch by: Peter Kjellerstedt <pkj at axis com>
13903 * gst/alpha/gstalpha.c:
13904 * gst/rtp/gstrtpamrdepay.c:
13905 * gst/rtsp/gstrtspsrc.c:
13906 * gst/udp/gstudpsrc.c:
13907 * gst/videomixer/videomixer.c:
13908 Include stdlib.h in some more places, makes things compile
13909 with uClibc and -Werror (#357592).
13911 2006-09-25 Tim-Philipp Müller <tim at centricular dot net>
13913 * ext/jpeg/gstjpegdec.c:
13914 Set minimum height to 8 (from 16), our code should handle
13915 that fine. Some of the buttons on the apple trailer site
13916 are apparently only 15 pixels high (see #357470).
13918 2006-09-23 Wim Taymans <wim@fluendo.com>
13920 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
13921 (gst_rtspsrc_open):
13922 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
13923 (rtsp_connection_connect), (rtsp_connection_read), (read_body),
13924 (rtsp_connection_receive):
13925 * gst/rtsp/rtspdefs.c: (rtsp_strresult):
13926 * gst/rtsp/rtspdefs.h:
13927 Improve error reporting.
13929 2006-09-23 Wim Taymans <wim@fluendo.com>
13931 * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
13932 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
13933 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
13934 * gst/rtp/gstrtpdepay.c:
13935 * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
13936 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
13937 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
13938 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
13939 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
13940 (gst_rtp_mp2t_depay_plugin_init):
13941 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
13942 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
13943 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
13944 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
13945 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
13946 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
13947 * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
13948 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
13950 Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
13952 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
13955 Need -base CVS for gst_base_rtp_depayload_push_ts().
13957 2006-09-22 Wim Taymans <wim@fluendo.com>
13959 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
13960 Don't check for a tag that is never there and check if we read the
13961 correct tag. Fixes seeking again.
13962 We must post an error when all pads are unlinked.
13964 2006-09-22 Wim Taymans <wim@fluendo.com>
13966 * gst/rtp/Makefile.am:
13967 * gst/rtp/gstrtp.c: (plugin_init):
13968 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
13969 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
13970 (gst_rtp_vorbis_pay_reset_packet),
13971 (gst_rtp_vorbis_pay_init_packet),
13972 (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
13973 (gst_rtp_vorbis_pay_handle_buffer):
13974 More fixage, set endoder-params correctly in the payloader.
13976 2006-09-22 Tim-Philipp Müller <tim at centricular dot net>
13978 * gst/autodetect/gstautoaudiosink.c:
13979 (gst_auto_audio_sink_base_init):
13980 * gst/autodetect/gstautovideosink.c:
13981 (gst_auto_video_sink_base_init):
13982 Make static pad templates static to appease valgrind's leak
13985 * tests/check/Makefile.am:
13986 * tests/check/elements/.cvsignore:
13987 * tests/check/elements/autodetect.c: (GST_START_TEST),
13988 (autodetect_suite):
13989 Add simple test for the ghostpad lockup on shutdown fixed in core
13990 CVS (audio bit disabled because it would need dozens of alsa
13991 suppressions and I'm too lazy to add those now).
13993 2006-09-22 Wim Taymans <wim@fluendo.com>
13995 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
13996 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
13999 * gst/rtp/Makefile.am:
14000 * gst/rtp/gstrtp.c: (plugin_init):
14001 * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
14002 (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
14003 (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
14004 (gst_rtp_vorbis_depay_process),
14005 (gst_rtp_vorbis_depay_set_property),
14006 (gst_rtp_vorbis_depay_get_property),
14007 (gst_rtp_vorbis_depay_change_state),
14008 (gst_rtp_vorbis_depay_plugin_init):
14009 * gst/rtp/gstrtpvorbisdepay.h:
14010 * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
14011 (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
14012 (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
14013 (gst_rtp_vorbis_pay_flush_packet),
14014 (gst_rtp_vorbis_pay_append_buffer),
14015 (gst_rtp_vorbis_pay_handle_buffer),
14016 (gst_rtp_vorbis_pay_plugin_init):
14017 * gst/rtp/gstrtpvorbispay.h:
14018 Add experimental vorbis pay and depayloaders.
14020 2006-09-21 Wim Taymans <wim@fluendo.com>
14022 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
14023 Fix profile-level-id parsing and setup.
14025 2006-09-21 Wim Taymans <wim@fluendo.com>
14028 * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
14029 Update README, simple cleanup.
14031 2006-09-21 Wim Taymans <wim@fluendo.com>
14034 Update README with some examples.
14036 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
14037 (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
14038 (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
14039 (gst_rtp_mp4g_pay_setcaps):
14040 * gst/rtp/gstrtpmp4gpay.h:
14041 Make optional RTP parameters of type STRING, as required by the
14042 application/x-rtp caps specification.
14044 2006-09-20 Philippe Kalaf <philippe.kalaf at collabora.co.uk>
14046 * gst/rtp/gstrtph263pdepay.c:
14047 * gst/rtp/gstrtph263ppay.c:
14048 Correctly calculate size of each H263+ RTP buffer taking into account MTU and
14051 2006-09-20 Wim Taymans <wim@fluendo.com>
14053 * gst/rtp/Makefile.am:
14056 2006-09-20 Wim Taymans <wim@fluendo.com>
14058 * gst/rtp/gstrtp.c: (plugin_init):
14059 * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
14060 (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
14061 (decode_base64), (gst_rtp_asf_depay_setcaps),
14062 (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
14063 (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
14064 (gst_rtp_asf_depay_plugin_init):
14065 * gst/rtp/gstrtpasfdepay.h:
14066 Added preliminary ASF depayloader.
14068 * gst/rtp/gstrtph264depay.c: (decode_base64):
14069 Fix base64 decoding.
14071 2006-09-20 Wim Taymans <wim@fluendo.com>
14074 Added some test URLS.
14076 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
14077 (gst_rtspsrc_loop), (gst_rtspsrc_open):
14078 * gst/rtsp/gstrtspsrc.h:
14079 When creating streams, give access to the complete SDP.
14081 Collect and merge global stream properties in stream caps.
14082 Preliminary support for WMServer.
14084 * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
14085 (rtsp_connection_connect), (rtsp_connection_read), (read_body),
14086 (rtsp_connection_receive):
14087 * gst/rtsp/rtspconnection.h:
14088 Make connection interruptable.
14089 Refactor to make it reconnectable.
14090 Don't fail on short reads when reading data packets.
14092 * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
14093 (rtsp_url_get_port):
14094 * gst/rtsp/rtspurl.h:
14095 Add methods for getting/setting the port.
14097 * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
14098 (sdp_message_get_attribute_val), (sdp_media_get_attribute),
14099 (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
14100 (sdp_media_get_format), (sdp_parse_line),
14101 (sdp_message_parse_buffer):
14103 Add methods for getting multiple attributes with the same name.
14104 Increase buffer size when parsing.
14105 Fix parsing of a=foo fields.
14107 * gst/rtsp/test.c: (main):
14108 Update to new connection API.
14110 * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
14111 (rtsp_message_init_response), (rtsp_message_init_data),
14112 (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
14113 * gst/rtsp/rtspmessage.h:
14114 * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
14115 * gst/rtsp/rtsptransport.h:
14117 * gst/rtsp/sdpmessage.h:
14118 * gst/rtsp/gstrtsp.c:
14119 * gst/rtsp/gstrtsp.h:
14120 * gst/rtsp/gstrtpdec.c:
14121 * gst/rtsp/gstrtpdec.h:
14123 * gst/rtsp/rtspdefs.c:
14124 * gst/rtsp/rtspdefs.h:
14125 Dual licensed under MIT and LGPL now.
14127 2006-09-19 Wim Taymans <wim@fluendo.com>
14129 * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
14130 (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
14131 (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14132 (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
14133 (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
14134 (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
14135 (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
14136 * gst/rtsp/gstrtspsrc.h:
14137 Reorganize stream parsing and creation.
14138 Detect container formats in interleaved mode.
14139 Keep more state about the streams.
14140 Assume a server also supports PLAY if it does not say.
14141 Add unicast and interleaved properties to TCP transport requests to make
14142 some servers happy (WMServer).
14144 * gst/rtsp/sdpmessage.h:
14145 Add some defines for the standard Bandwidth types.
14147 2006-09-19 Wim Taymans <wim@fluendo.com>
14149 * gst/rtsp/test.c: (main):
14152 2006-09-19 Wim Taymans <wim@fluendo.com>
14154 * gst/wavparse/gstwavparse.c:
14155 Add ms-gsm to the src template.
14157 2006-09-18 Wim Taymans <wim@fluendo.com>
14159 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14160 (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
14161 (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14162 (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
14163 (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14164 * gst/rtsp/gstrtspsrc.h:
14165 Small cleanups, added documentation.
14166 Try to clean up the requests and responses.
14167 Refactor parsing the supported methods.
14169 * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
14170 (rtsp_connection_create), (rtsp_connection_send),
14171 (parse_response_status), (parse_request_line),
14172 (rtsp_connection_receive), (rtsp_connection_close),
14173 (rtsp_connection_free):
14174 * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
14175 (rtsp_transport_init), (rtsp_transport_parse),
14176 (rtsp_transport_free):
14177 * gst/rtsp/rtspurl.c: (rtsp_url_parse):
14178 * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
14179 (sdp_message_clean), (sdp_message_free), (sdp_media_new),
14180 (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
14181 Use g_return_val some more.
14183 * gst/rtsp/rtspdefs.h:
14184 Add more enum values to track initial states.
14186 * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
14187 (rtsp_message_init_request), (rtsp_message_new_response),
14188 (rtsp_message_init_response), (rtsp_message_init_data),
14189 (rtsp_message_unset), (rtsp_message_free),
14190 (rtsp_message_add_header), (rtsp_message_remove_header),
14191 (rtsp_message_get_header), (rtsp_message_set_body),
14192 (rtsp_message_take_body), (rtsp_message_get_body),
14193 (rtsp_message_steal_body), (rtsp_message_dump):
14194 * gst/rtsp/rtspmessage.h:
14195 Reorder arguments, object goes as the first one.
14196 Use g_return_val some more.
14198 2006-09-18 Wim Taymans <wim@fluendo.com>
14200 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
14201 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
14202 (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
14203 * gst/rtsp/gstrtspsrc.h:
14204 Export sometimes source pad with correct caps on the template, create
14205 the ghostpad from the template.
14206 Remove RTCP template as we never expose RTCP.
14207 Protect against invalid body size.
14208 Avoid memcpy when creating the output buffer.
14209 Properly post an error and send EOS when the loop function is shut down.
14211 2006-09-18 Wim Taymans <wim@fluendo.com>
14213 Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14215 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14216 (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
14217 (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
14218 * gst/rtsp/gstrtspsrc.h:
14219 Make sure we can never set an invalid location.
14221 * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
14222 * gst/rtsp/rtspmessage.h:
14223 Added _steal_body method for future use.
14225 * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
14226 Make freeing of NULL url return immediatly.
14228 2006-09-18 Wim Taymans <wim@fluendo.com>
14230 Based on patch by: Lutz Mueller <lutz at topfrose dot de>
14232 * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
14233 (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
14234 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
14235 (gst_rtspsrc_change_state):
14236 * gst/rtsp/gstrtspsrc.h:
14238 Make rtspsrc subclass GstBin to make state changes easier.
14239 Add Range header field on the PLAY request.
14241 2006-09-18 Wim Taymans <wim@fluendo.com>
14243 Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
14245 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
14246 (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
14247 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
14248 (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
14249 * gst/rtsp/rtspconnection.c: (inet_aton):
14251 when multicast is selected as the transport, create UDP sources and
14252 connect to the multicast group.
14253 Move parsing and setting of caps to a common place.
14256 2006-09-17 Stefan Kost <ensonic@users.sf.net>
14258 * ext/flac/gstflactag.c:
14259 * gst/alpha/gstalpha.c:
14260 * gst/debug/breakmydata.c:
14261 * gst/debug/negotiation.c:
14262 * gst/debug/testplugin.c:
14263 * gst/effectv/gstaging.c:
14264 * gst/effectv/gstdice.c:
14265 * gst/effectv/gstedge.c:
14266 * gst/effectv/gstquark.c:
14267 * gst/effectv/gstrev.c:
14268 * gst/effectv/gstshagadelic.c:
14269 * gst/effectv/gstvertigo.c:
14270 * gst/effectv/gstwarp.c:
14271 * gst/multipart/multipartdemux.c:
14272 * gst/multipart/multipartmux.c:
14273 * gst/videobox/gstvideobox.c:
14274 * gst/videofilter/gstgamma.c:
14275 * gst/videofilter/gstvideotemplate.c:
14276 * gst/videomixer/videomixer.c:
14277 * sys/sunaudio/gstsunaudiosrc.h:
14278 More G_OBJECT macro fixing.
14280 2006-09-16 Wim Taymans <wim@fluendo.com>
14282 Patch by: Yves Lefebvre <ivanohe at abacom dot com>
14284 * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
14285 Correctly set the dwLength in strh.
14286 With this patch, the file duration is now displayed correctly in window
14287 media player and the AVI plays completely. Fixes #356147
14289 2006-09-15 Wim Taymans <wim@fluendo.com>
14291 Patch by: Darren Kenny <darren dot kenny at sun dot com>
14293 * sys/sunaudio/gstsunaudiomixerctrl.c:
14294 (gst_sunaudiomixer_ctrl_build_list):
14295 Set the output track as the MASTER so that the gnome-settings-daemon
14296 keybindings for changing the volume using the keyboard works.
14299 2006-09-15 Wim Taymans <wim@fluendo.com>
14301 * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
14302 Fix documentation, it is not possible to control the framerate of jpegdec
14303 using filtered caps yet. Fixes #355210.
14304 Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
14305 stop when there is an error.
14307 2006-09-14 Tim-Philipp Müller <tim at centricular dot net>
14309 * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
14310 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
14311 Don't interpret a first buffer with an offset of NONE as
14312 'from the middle of the stream', but only a first buffer
14313 that has a valid buffer offset that's non-zero (see #345449).
14315 2006-09-14 Tim-Philipp Müller <tim at centricular dot net>
14317 * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14318 (gst_icydemux_typefind_or_forward):
14319 * gst/icydemux/gsticydemux.h:
14320 When we merge/collect multiple incoming buffers for typefinding
14321 purposes, keep an initial 0 offset on the first outgoing buffer
14322 as well (otherwise id3demux won't work right). Fixes #345449.
14323 Also Make buffer metadata writable before setting buffer caps.
14325 * tests/check/elements/icydemux.c: (typefind_succeed),
14326 (cleanup_icydemux), (push_data), (GST_START_TEST),
14328 Small test case for the above.
14330 2006-09-13 Stefan Kost <ensonic@users.sf.net>
14332 * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
14333 (gst_avi_demux_stream_index), (gst_avi_demux_sync),
14334 (gst_avi_demux_stream_header_push),
14335 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14336 (gst_avi_demux_loop):
14337 More code reuse and better logging in _peek_chunk(). Reintroduce check
14338 for chunk sizes before reading them (avoid oom). Better handling for
14339 invalid chunksizes when streaming.
14341 2006-09-11 Stefan Kost <ensonic@users.sf.net>
14343 * gst/level/gstlevel.c: (gst_level_set_property):
14344 * gst/level/gstlevel.h:
14345 Fix type mixup in level->interval (gdouble<->guint64). Spotted by
14348 2006-09-06 Stefan Kost <ensonic@users.sf.net>
14350 * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14351 (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14352 (gst_avi_demux_stream_data):
14353 Revert one change to fix streaming avi (adapter size != data size).
14355 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
14357 Patch by: Frédéric Riss <frederic.riss at gmail dot com>
14359 * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
14360 (gst_matroska_demux_reset),
14361 (gst_matroska_demux_read_track_encodings),
14362 (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
14363 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14364 (gst_matroska_demux_subtitle_caps):
14365 * gst/matroska/matroska-ids.h:
14366 Add support for VOBSUB subtitle tracks and zlib-compressed
14367 tracks. Make sure we start on a keyframe after a seek. (#343348)
14369 2006-09-04 Tim-Philipp Müller <tim at centricular dot net>
14371 * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
14372 (gst_matroska_demux_push_flac_codec_priv_data),
14373 (gst_matroska_demux_push_xiph_codec_priv_data),
14374 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
14375 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
14376 * gst/matroska/matroska-ids.h:
14377 Add basic FLAC support (#311586), not perfect yet though, needs some
14378 tweaking in flacdec; also, seeking could be better.
14379 Do better bounds checking when deserialising vorbis stream headers
14380 to make sure we don't read beyond the end of the buffer on bad input.
14382 2006-09-04 Wim Taymans <wim@fluendo.com>
14384 Patch by: Alessandro Decina <alessandro at nnva dot org>
14386 * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
14387 Seeking back in a file containing a CMML stream errors out if the seek
14388 goes back up to the CMML headers. This is because after the seek the xml
14389 processing instruction <?xml ...?> is submitted to the xml parser again,
14390 which results in an error. The attached patch fixes the problem.
14393 * ext/annodex/gstcmmlenc.h:
14397 2006-08-28 Andy Wingo <wingo@pobox.com>
14399 * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
14400 New helper function to lessen the ifdefs.
14402 (gst_dv1394src_iso_receive): Use it.
14403 (gst_dv1394src_create): Also use the control sockets in iec61883
14405 (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
14406 handle for AVC operations; fixes #348233.
14408 2006-08-27 Stefan Kost <ensonic@users.sf.net>
14411 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14412 * docs/plugins/inspect/plugin-audiofx.xml:
14413 * docs/plugins/inspect/plugin-audiofxgood.xml:
14414 * gst/audiofx/Makefile.am:
14415 * gst/audiofx/audiofx.c:
14416 * gst/audiofxgood/.cvsignore:
14417 * gst/audiofxgood/Makefile.am:
14418 * gst/audiofxgood/audiofx.c:
14419 * gst/audiofxgood/audiopanorama.c:
14420 * gst/audiofxgood/audiopanorama.h:
14421 Rename again (audiofxgood -> audiofx).
14423 2006-08-27 Stefan Kost <ensonic@users.sf.net>
14425 * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
14426 (gst_avi_demux_stream_scan):
14427 Initialze variables.
14429 2006-08-25 Wim Taymans <wim@fluendo.com>
14431 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14432 (gst_avi_demux_init), (gst_avi_demux_finalize),
14433 (gst_avi_demux_reset), (gst_avi_demux_index_last),
14434 (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
14435 (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
14436 (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14437 (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
14438 (gst_avi_demux_massage_index),
14439 (gst_avi_demux_calculate_durations_from_index),
14440 (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
14441 (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14442 (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
14443 (gst_avi_demux_change_state):
14444 * gst/avi/gstavidemux.h:
14445 More attempts to turn this into readable code.
14446 Don't leak adapters.
14447 Calculate duration according to index more efficiently.
14448 Don't try to act like we drive the pipeline in chain mode.
14450 2006-08-25 Wim Taymans <wim@fluendo.com>
14452 * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
14455 2006-08-25 Wim Taymans <wim@fluendo.com>
14457 Patch by: Alessandro Decina <alessandro at nnva dot org>
14459 * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
14460 Do some extra sanity checks.
14463 * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
14464 (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
14465 (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
14466 Check if clip->start_time is valid before adding the clip to the
14468 Reset enc->preamble going from PAUSED to READY.
14469 Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
14471 Only post an error message if we were the one that created the fatal
14472 GstFlowReturn value.
14474 * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
14475 (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
14476 Parse the seconds field of the npt-sec time format using %llu rather than
14477 %d and check that the value scaled by GST_SECOND doesn't overflow.
14478 Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
14479 Lookup a clip's track with clip->track rather than clip->id which
14481 Identify a clip by its track and start time and not its xml id.
14482 do some more input checking and make sure we don't do undefined shifts.
14484 * tests/check/elements/cmmldec.c: (setup_cmmldec),
14485 (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
14486 (cmml_tag_message_pop), (check_headers), (push_clip_full),
14487 (push_clip), (push_empty_clip), (check_output_clip),
14488 (GST_START_TEST), (cmmldec_suite):
14489 * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
14490 (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
14491 (check_headers), (push_clip), (check_clip_times), (check_clip),
14492 (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
14493 Added some more checks.
14495 2006-08-24 Stefan Kost <ensonic@users.sf.net>
14497 * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
14498 (gst_audio_panorama_set_property),
14499 (gst_audio_panorama_get_property),
14500 (gst_audio_panorama_transform_m2s_int),
14501 (gst_audio_panorama_transform_s2s_int),
14502 (gst_audio_panorama_transform_m2s_float),
14503 (gst_audio_panorama_transform_s2s_float):
14504 * gst/audiofxgood/audiopanorama.h:
14505 * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14506 Make also the pan-property float (saves scaling and yields better
14509 2006-08-24 Stefan Kost <ensonic@users.sf.net>
14511 * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14512 (gst_audio_panorama_transform_m2s_float),
14513 (gst_audio_panorama_transform_s2s_float):
14514 ChangeLog surgery to add cymax's real name
14517 2006-08-24 Stefan Kost <ensonic@users.sf.net>
14519 Patch by: René Stadler <mail@renestadler.de>
14521 * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
14522 (gst_audio_panorama_transform_m2s_int),
14523 (gst_audio_panorama_transform_s2s_int),
14524 (gst_audio_panorama_transform_m2s_float),
14525 (gst_audio_panorama_transform_s2s_float),
14526 (gst_audio_panorama_transform):
14527 * gst/audiofxgood/audiopanorama.h:
14528 Added float support
14530 2006-08-24 Stefan Kost <ensonic@users.sf.net>
14532 * gst/audiofxgood/audiopanorama.c:
14533 (gst_audio_panorama_transform_m2s):
14534 Fix docs & debug category. Add Fixme for volume pan levels.
14536 2006-08-24 Stefan Kost <ensonic@users.sf.net>
14538 * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
14539 (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
14540 (gst_avi_demux_stream_header_pull),
14541 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14542 (gst_avi_demux_chain):
14543 unbreak AVI index handling, some more debug, remove an obsolete
14544 adapter_flush that caused streaming to wander off in the wild
14546 2006-08-24 Wim Taymans <wim@fluendo.com>
14548 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14549 (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
14550 (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
14551 (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14552 (gst_avi_demux_calculate_durations_from_index),
14553 (gst_avi_demux_stream_header_push),
14554 (gst_avi_demux_stream_header_pull):
14555 * gst/avi/gstavidemux.h:
14556 Some more cleanups.
14557 Fix totalFrames parsing in ODML.
14558 Disable use of index for length calculation in case of ODML as this is
14561 2006-08-24 Tim-Philipp Müller <tim at centricular dot net>
14563 * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
14564 Use libgsttag helper function here too.
14566 2006-08-23 Stefan Kost <ensonic@users.sf.net>
14568 * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
14569 (gst_avi_demux_init), (gst_avi_demux_dispose),
14570 (gst_avi_demux_reset), (gst_avi_demux_index_next),
14571 (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
14572 (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14573 (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
14574 (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
14575 (gst_avi_demux_parse_subindex),
14576 (gst_avi_demux_read_subindexes_push),
14577 (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
14578 (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
14579 (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
14580 (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
14581 (gst_avi_demux_stream_header_pull),
14582 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14583 (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
14584 (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
14585 (gst_avi_demux_change_state):
14586 * gst/avi/gstavidemux.h:
14587 Initial streaming support for avidemux (fixes #336465)
14589 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
14591 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14592 There is no taglibmux element ...
14594 * gst/rtsp/gstrtspsrc.c:
14595 Use '%' rather than '&perc;' in gtk-doc blurb, docs build
14596 was complaining about unknown entity here.
14598 2006-08-22 Wim Taymans <wim@fluendo.com>
14600 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14601 (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
14602 (gst_avi_demux_process_next_entry):
14603 * gst/avi/gstavidemux.h:
14605 Remove old unused fields and reorder the struct a bit.
14607 2006-08-22 Wim Taymans <wim@fluendo.com>
14609 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
14610 (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
14611 (gst_rtspsrc_pause):
14612 * gst/rtsp/gstrtspsrc.h:
14613 * sys/oss/gstosssink.c: (gst_oss_sink_open),
14614 (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14615 Small documentation updates.
14617 2006-08-22 Wim Taymans <wim@fluendo.com>
14619 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14620 (gst_avi_demux_index_entry_for_time),
14621 (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
14622 (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
14623 (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
14624 (gst_avi_demux_next_data_buffer),
14625 (gst_avi_demux_calculate_durations_from_index),
14626 (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
14627 (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
14628 (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
14629 (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
14630 * gst/avi/gstavidemux.h:
14631 Precalc most of the duration query for each stream.
14632 Make seeking more correct.
14633 Use GstSegment to track position and duration.
14634 Code cleanups and leak fixes.
14635 Calculate correct total duration based on index length.
14637 2006-08-22 Jan Schmidt <thaytan@mad.scientist.com>
14639 * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
14640 (parse_insert_string_field):
14641 If strings in text fields are marked ISO8859-1, but contain
14642 valid UTF-8 already, then handle them as UTF-8 and ignore
14643 the encoding. (#351794)
14645 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
14647 * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
14648 (gst_flac_dec_write), (gst_flac_dec_loop),
14649 (gst_flac_dec_sink_event), (gst_flac_dec_chain),
14650 (gst_flac_dec_src_query):
14651 * ext/flac/gstflacdec.h:
14652 Make flac-in-ogg work (#352100).
14654 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
14656 * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
14657 Don't unref buffers of which we've already given away
14658 ownership to the adapter.
14660 2006-08-22 Tim-Philipp Müller <tim at centricular dot net>
14662 * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
14663 Make metadata extraction actually work.
14665 * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
14666 (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
14667 (gst_speexenc_chain):
14668 Fix metadata writing: replace old code which wrote completely
14669 broken tags with libgsttag-based code. Plus miscellaneous
14670 code cleanups (use static pad templates etc.) and a bunch
14673 2006-08-21 Stefan Kost <ensonic@users.sf.net>
14675 * gst/audiopanorama/.cvsignore:
14676 * gst/audiopanorama/Makefile.am:
14677 * gst/audiopanorama/audiofx.c:
14678 * gst/audiopanorama/audiopanorama.c:
14679 * gst/audiopanorama/audiopanorama.h:
14680 die! die! die! you should never have been there
14682 2006-08-21 Jan Schmidt <thaytan@mad.scientist.com>
14684 * tests/check/elements/audiopanorama.c: (GST_START_TEST):
14685 Fix invalid memory access in audiopanorama test suite.
14687 2006-08-21 Edward Hervey <edward@fluendo.com>
14689 * tests/check/elements/.cvsignore:
14692 2006-08-21 Wim Taymans <wim@fluendo.com>
14694 * gst/rtp/Makefile.am:
14695 Fix the build again.
14697 2006-08-21 Stefan Kost <ensonic@users.sf.net>
14699 * gst/audiofxgood/.cvsignore:
14700 * gst/audiofxgood/Makefile.am:
14701 * gst/audiofxgood/audiofx.c: (plugin_init):
14702 * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14703 (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14704 (gst_audio_panorama_set_property),
14705 (gst_audio_panorama_get_property),
14706 (gst_audio_panorama_get_unit_size),
14707 (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14708 (gst_audio_panorama_transform_m2s),
14709 (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14710 * gst/audiofxgood/audiopanorama.h:
14711 resubmit with the desired name *again*
14713 2006-08-20 Stefan Kost <ensonic@users.sf.net>
14715 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
14716 * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
14717 use g_assert in _get_unit_size
14719 2006-08-20 Stefan Kost <ensonic@users.sf.net>
14721 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14722 * docs/plugins/gst-plugins-good-plugins-sections.txt:
14723 * docs/plugins/inspect/plugin-audiofxgood.xml:
14724 cleanup -unused.txt to make it useful, add previously missing docs
14727 Quietly (accidentally) enable LADSPA for building by default,
14728 despite the fact that it doesn't meet the plugin checklist.
14729 -- Added by Jan Schmidt 18 Dec 2006
14731 * ext/esd/esdmon.c:
14732 * ext/esd/esdsink.c:
14733 * ext/esd/gstesd.c: (plugin_init):
14734 reflow to get rid of two external symbols
14736 * gst/audiofxgood/audiofx.c: (plugin_init):
14739 2006-08-20 Stefan Kost <ensonic@users.sf.net>
14742 * gst/audiofxgood/.cvsignore:
14743 * gst/audiofxgood/Makefile.am:
14744 * gst/audiofxgood/audiofx.c
14745 * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
14746 (gst_audio_panorama_class_init), (gst_audio_panorama_init),
14747 (gst_audio_panorama_set_property),
14748 (gst_audio_panorama_get_property),
14749 (gst_audio_panorama_get_unit_size),
14750 (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
14751 (gst_audio_panorama_transform_m2s),
14752 (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
14753 * gst/audiofxgood/audiopanorama.h:
14754 * tests/check/Makefile.am:
14755 * tests/check/elements/audiopanorama.c: (setup_panorama_m),
14756 (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
14757 (panorama_suite), (main):
14758 Add audiofxgood plugin with audiopanorama element
14760 2006-08-18 Wim Taymans <wim@fluendo.com>
14762 * docs/plugins/Makefile.am:
14763 More Oss docs fixage.
14765 2006-08-18 Wim Taymans <wim@fluendo.com>
14767 * gst/rtp/Makefile.am:
14768 * gst/rtp/gstrtp.c: (plugin_init):
14769 * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
14770 (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
14771 (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
14772 (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
14773 (gst_rtp_sv3v_depay_get_property),
14774 (gst_rtp_sv3v_depay_change_state),
14775 (gst_rtp_sv3v_depay_plugin_init):
14776 * gst/rtp/gstrtpsv3vdepay.h:
14777 Added experimental SVQ3 depayloader.
14779 2006-08-18 Edward Hervey <edward@fluendo.com>
14781 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
14782 (gst_dvdemux_loop), (gst_dvdemux_change_state):
14783 * ext/dv/gstdvdemux.h:
14784 When handling seek requests, don't send the newsegment event from the
14785 calling thread. Instead save it so it can be sent from the streaming
14788 2006-08-17 Wim Taymans <wim@fluendo.com>
14790 Patch by: Sjoerd Simons <sjoerd at luon dot net>
14792 * gst/multipart/multipartdemux.c: (multipart_parse_header):
14793 Accept leading whitespace before the boundary
14794 This patch makes the demuxer allow some whitespace before the actual
14795 boundary. This makes the demuxer work with the ``old'' gstreamer
14796 multipartmuxer again (which placed an extra \n before the start
14797 of the stream) Fixes #349068.
14799 2006-08-17 Wim Taymans <wim@fluendo.com>
14801 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
14802 Error out on non-implemented stuff.
14804 2006-08-16 Wim Taymans <wim@fluendo.com>
14806 Patch by: Andy Wingo <wingo at pobox dot com>
14808 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
14809 (gst_signal_processor_start), (gst_signal_processor_stop),
14810 (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
14811 (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
14812 (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
14813 (gst_signal_processor_change_state):
14814 Make ladspa elements reusable. Fixes #350006.
14816 2006-08-16 Wim Taymans <wim@fluendo.com>
14818 * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14819 Convert ' ' into '_'. Try to keep as many characters in the padtemplate
14820 names as possible. Fixes #349901.
14822 2006-08-16 Wim Taymans <wim@fluendo.com>
14824 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
14825 (gst_signal_processor_do_pushes):
14826 A push() gives away our refcount so we should not use the buffer on the
14829 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
14831 * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14832 (gst_oss_mixer_element_finalize):
14833 Don't leak device string.
14835 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
14838 Require CVS of GStreamer core and -base (for
14839 GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
14841 * ext/taglib/gstid3v2mux.cc:
14842 Write extended comment tags properly (#348762).
14844 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
14845 (parse_comment_frame):
14846 Extract COMM frames into extended comments, which makes it
14847 easier to properly retain the description bit of the tag
14848 and maintain this information when re-tagging (#348762).
14850 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
14852 * tests/check/Makefile.am:
14853 Don't try to run annodex unit tests if the annodex
14854 plugin has not been built (Fixes #351116).
14856 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
14858 * gst/autodetect/gstautoaudiosink.c:
14859 (gst_auto_audio_sink_find_best):
14860 When we can't find a usable audiosink, don't error out,
14861 but use a fake sink instead and post a warning message
14862 on the bus (#341278).
14864 2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
14866 * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
14867 * sys/oss/gstosssink.c:
14868 * sys/oss/gstosssrc.c:
14869 Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
14870 ossmixer's new device property.
14872 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14873 * docs/plugins/gst-plugins-good-plugins-sections.txt:
14874 Add docs for OSS elements.
14876 * docs/plugins/inspect/plugin-aasink.xml:
14877 * docs/plugins/inspect/plugin-alaw.xml:
14878 * docs/plugins/inspect/plugin-alpha.xml:
14879 * docs/plugins/inspect/plugin-alphacolor.xml:
14880 * docs/plugins/inspect/plugin-annodex.xml:
14881 * docs/plugins/inspect/plugin-apetag.xml:
14882 * docs/plugins/inspect/plugin-auparse.xml:
14883 * docs/plugins/inspect/plugin-autodetect.xml:
14884 * docs/plugins/inspect/plugin-avi.xml:
14885 * docs/plugins/inspect/plugin-cacasink.xml:
14886 * docs/plugins/inspect/plugin-cairo.xml:
14887 * docs/plugins/inspect/plugin-cdio.xml:
14888 * docs/plugins/inspect/plugin-cutter.xml:
14889 * docs/plugins/inspect/plugin-debug.xml:
14890 * docs/plugins/inspect/plugin-dv.xml:
14891 * docs/plugins/inspect/plugin-efence.xml:
14892 * docs/plugins/inspect/plugin-effectv.xml:
14893 * docs/plugins/inspect/plugin-esdsink.xml:
14894 * docs/plugins/inspect/plugin-flac.xml:
14895 * docs/plugins/inspect/plugin-flxdec.xml:
14896 * docs/plugins/inspect/plugin-gconfelements.xml:
14897 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
14898 * docs/plugins/inspect/plugin-goom.xml:
14899 * docs/plugins/inspect/plugin-halelements.xml:
14900 * docs/plugins/inspect/plugin-icydemux.xml:
14901 * docs/plugins/inspect/plugin-id3demux.xml:
14902 * docs/plugins/inspect/plugin-jpeg.xml:
14903 * docs/plugins/inspect/plugin-level.xml:
14904 * docs/plugins/inspect/plugin-matroska.xml:
14905 * docs/plugins/inspect/plugin-mulaw.xml:
14906 * docs/plugins/inspect/plugin-multipart.xml:
14907 * docs/plugins/inspect/plugin-navigationtest.xml:
14908 * docs/plugins/inspect/plugin-ossaudio.xml:
14909 * docs/plugins/inspect/plugin-png.xml:
14910 * docs/plugins/inspect/plugin-rtp.xml:
14911 * docs/plugins/inspect/plugin-rtsp.xml:
14912 * docs/plugins/inspect/plugin-shout2send.xml:
14913 * docs/plugins/inspect/plugin-smpte.xml:
14914 * docs/plugins/inspect/plugin-speex.xml:
14915 * docs/plugins/inspect/plugin-taglib.xml:
14916 * docs/plugins/inspect/plugin-udp.xml:
14917 * docs/plugins/inspect/plugin-videobalance.xml:
14918 * docs/plugins/inspect/plugin-videobox.xml:
14919 * docs/plugins/inspect/plugin-videoflip.xml:
14920 * docs/plugins/inspect/plugin-videomixer.xml:
14921 * docs/plugins/inspect/plugin-wavenc.xml:
14922 * docs/plugins/inspect/plugin-wavparse.xml:
14923 * docs/plugins/inspect/plugin-ximagesrc.xml:
14924 Update to CVS version.
14926 2006-08-16 Wim Taymans <wim@fluendo.com>
14928 * gst/rtp/gstrtpamrdepay.c:
14929 * gst/rtp/gstrtpmp4gdepay.c:
14930 Caps extra properties must be defined as strings for
14931 depayloaders because they are generated from an SDP.
14933 * gst/rtp/Makefile.am:
14934 * gst/rtp/gstrtp.c: (plugin_init):
14935 * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
14936 (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
14937 (gst_rtp_h264_depay_finalize), (decode_base64),
14938 (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
14939 (gst_rtp_h264_depay_set_property),
14940 (gst_rtp_h264_depay_get_property),
14941 (gst_rtp_h264_depay_change_state),
14942 (gst_rtp_h264_depay_plugin_init):
14943 * gst/rtp/gstrtph264depay.h:
14944 Added basic, not completely functional RFC 3984 H264 depayloader.
14946 2006-08-16 Wim Taymans <wim@fluendo.com>
14948 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
14949 Add pads after setting them up.
14951 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
14952 (gst_rtspsrc_init), (gst_rtspsrc_finalize),
14953 (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
14954 (gst_rtspsrc_stream_setup_rtp),
14955 (gst_rtspsrc_stream_configure_transport),
14956 (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
14957 (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
14958 (gst_rtspsrc_pause):
14959 * gst/rtsp/gstrtspsrc.h:
14960 Fix interleaved mode.
14961 - Protect streaming with lock.
14963 - set caps on outgoing buffers.
14964 - strip trailing \0 from data packets.
14965 - Configure RTP/RTCP in stream.
14966 Use DEBUG_OBJECT more.
14968 2006-08-16 Wim Taymans <wim@fluendo.com>
14970 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
14971 Turn a g_print into a DEBUG line.
14973 2006-08-13 Wim Taymans <wim@fluendo.com>
14975 * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
14976 * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
14977 (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
14978 (gst_oss_mixer_element_get_property),
14979 (gst_oss_mixer_element_change_state):
14980 * sys/oss/gstossmixerelement.h:
14981 Small cleanups. Better error reporting.
14982 Add device property for the mixer instead of the hardcoded
14983 /dev/mixer. Fixes #350785.
14984 API: GstOssMixerElement::device property
14986 2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
14988 Patch by: Jens Granseuer <jensgr at gmx net>
14990 * gconf/Makefile.am:
14991 Make --disable-schemas work right (they still need
14992 to be copied to the installation directory, just not
14993 applied). Fixes #351347 (also #344100).
14995 2006-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
14997 * configure.ac: back to HEAD
14999 === release 0.10.4 ===
15001 2006-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
15004 releasing 0.10.4, "Dear Leader"
15006 2006-08-10 Thomas Vander Stichele <thomas at apestaart dot org>
15008 Patch by: Edward Hervey <edward@fluendo.com>
15011 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
15012 (gst_wavparse_stream_data):
15013 Send the newsegment event in the streaming thread.
15016 2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
15018 * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
15019 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
15020 (gst_smokeenc_resync), (gst_smokeenc_chain):
15021 Refuse sink caps in the encoder if width or height is not a
15022 multiple of 16, the encoder does not support that yet (#349939);
15023 along the same lines, check the return value of the encoder
15024 setup function; also remove some debug log clutter.
15026 2006-08-04 Andy Wingo <wingo@pobox.com>
15028 * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
15029 whether a processor can work in place or not, and for keeping
15030 track of its state. Change the FlowReturn instance variable from
15031 "state" to "flow_state", all callers changed.
15033 * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
15034 (gst_signal_processor_start, gst_signal_processor_stop)
15035 (gst_signal_processor_cleanup): New functions to manage the
15037 (gst_signal_processor_setcaps): start() as well as setup() here.
15038 (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
15039 (gst_signal_processor_change_state): Stop and cleanup the
15040 processor as we go to NULL.
15042 * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
15043 INPLACE_BROKEN is not set.
15045 * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
15046 Do the alloc_buffer in bytes, not frames.
15048 2006-08-04 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15050 * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
15051 Fix rgb masks when recording in < 24bpp.
15053 2006-08-04 Andy Wingo <wingo@pobox.com>
15055 * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
15056 (gst_signal_processor_prepare)
15057 (gst_signal_processor_update_inputs)
15058 (gst_signal_processor_process, gst_signal_processor_pen_buffer)
15059 (gst_signal_processor_flush)
15060 (gst_signal_processor_sink_activate_push)
15061 (gst_signal_processor_src_activate_pull)
15062 (gst_signal_processor_change_state): Remove the last of the code
15063 that assumes that we process whole buffers at a time. Fix some
15064 debugging. Seems to work now in some cases.
15065 (gst_signal_processor_src_activate_pull): BPB
15067 2006-08-01 Andy Wingo <wingo@pobox.com>
15069 * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
15070 Fix nframes-choosing.
15071 (gst_signal_processor_init): Init pending_in and pending_out.
15073 * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
15074 more default sample rate, although we never check that the sample
15075 rate actually gets set. Something for the future.
15076 (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
15077 (gst_signal_processor_event): Refcount fixen.
15078 (gst_signal_processor_process): Pull the number of frames to
15079 process from the sizes of the buffers in the input pens.
15080 (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
15081 (gst_signal_processor_do_pulls): Add an nframes argument, and use
15082 it instead of buffer_frames.
15083 (gst_signal_processor_getrange): Refcount fixen, pass nframes on
15085 (gst_signal_processor_chain)
15086 (gst_signal_processor_sink_activate_push)
15087 (gst_signal_processor_src_activate_pull): Refcount fixen.
15089 * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
15091 2006-07-31 Stefan Kost <ensonic@users.sf.net>
15093 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
15094 (gst_signal_processor_process):
15095 don't query buffer-frames from caps, add lots of debug-log,
15096 try fix for assert (#349189)
15098 2006-07-31 Wim Taymans <wim@fluendo.com>
15100 * gst/udp/gstudpsrc.c:
15103 2006-07-29 Stefan Kost <ensonic@users.sf.net>
15105 * ext/ladspa/gstsignalprocessor.c:
15106 (gst_signal_processor_add_pad_from_template),
15107 (gst_signal_processor_init), (gst_signal_processor_setcaps),
15108 (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
15109 (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
15110 (gst_signal_processor_sink_activate_push),
15111 (gst_signal_processor_src_activate_pull),
15112 (gst_signal_processor_change_state):
15113 Add debugs logs here and there, add more error handling, add some
15114 FIXME comments, filed #349189
15116 2006-07-29 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15118 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
15119 (gst_smokeenc_setcaps), (gst_smokeenc_chain):
15120 Set caps on buffer correctly. Fixes bug #349155.
15122 2006-07-28 Wim Taymans <wim@fluendo.com>
15124 Patch by: Sjoerd Simons <sjoerd at luon dot net>
15126 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
15127 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
15128 (gst_multipart_demux_finalize), (get_line_end),
15129 (multipart_parse_header), (multipart_find_boundary),
15130 (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
15131 (gst_multipart_set_property), (gst_multipart_get_property):
15132 Uses GstAdapter instead of own buffering.
15133 Actually parses the mime-type correctly (In tests the mime-type was
15134 always "" with the old version).
15135 Uses the Content-length header if available to speed up things.
15136 Reliably autoscans the boundary name by default.
15139 * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
15140 Don't start the stream with a \n.
15142 2006-07-28 Tim-Philipp Müller <tim at centricular dot net>
15144 Patch by: Brian Cameron <brian dot cameron at sun com>
15146 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
15147 Open source with O_NONBLOCK (#349015).
15149 2006-07-28 Stefan Kost,,, <ensonic@users.sf.net>
15151 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
15152 (gst_avi_demux_massage_index):
15153 * gst/avi/gstavidemux.h:
15154 Whitespace fixes and more debug
15156 2006-07-27 Tim-Philipp Müller <tim at centricular dot net>
15158 * gst/autodetect/gstautoaudiosink.c:
15159 (gst_auto_audio_sink_create_element_with_pretty_name),
15160 (gst_auto_audio_sink_find_best),
15161 (gst_auto_audio_sink_change_state):
15162 Get rid of old and unused magic sound-server properties stuff.
15163 Add suffix to child sink's name that makes it easy to see from
15164 the name alone which type it actually is (alsa, oss, esd, etc.).
15166 2006-07-27 Wim Taymans <wim@fluendo.com>
15168 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15169 (gst_udpsrc_set_property), (gst_udpsrc_get_property),
15170 (gst_udpsrc_start):
15171 * gst/udp/gstudpsrc.h:
15172 Rename "buffer" to "buffer-size" to make clear it is a size we set and
15173 not some sort of feature we enable.
15175 2006-07-27 Tim-Philipp Müller <tim at centricular dot net>
15177 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
15178 Use CLOSE_SOCKET() here instead of close() to maintain
15181 2006-07-27 Wim Taymans <wim@fluendo.com>
15183 Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
15185 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15186 (gst_udpsrc_create), (gst_udpsrc_set_property),
15187 (gst_udpsrc_get_property), (gst_udpsrc_start):
15188 * gst/udp/gstudpsrc.h:
15189 Added "buffer-size" property to control the kernel receive buffer size.
15190 Update documentation.
15191 Small cleanups. Fixes #348752.
15192 API: buffer-size property
15194 2006-07-26 Wim Taymans <wim@fluendo.com>
15196 Patch by: Kai Vehmanen <kv2004 at eca dot cx>
15198 * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
15199 (gst_rtp_pcma_pay_handle_buffer):
15200 * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
15201 (gst_rtp_pcmu_pay_handle_buffer):
15202 Fix timestamp calculation on outgoing RTP packets.
15205 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
15207 * ext/taglib/gstid3v2mux.cc:
15208 Fix writing of comment frames (should be COMM not TCOM),
15209 is still sub-optimal though, since we don't retain or
15210 extract the comment descriptions properly (#334375,
15213 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
15215 * gst/wavparse/gstwavparse.c:
15216 #define 'fact' RIFF chunk if we are not compiling against
15217 -base CVS (we don't want to depend on -base CVS for this
15218 one define only, and also not for release order reasons).
15220 2006-07-26 Tim-Philipp Müller <tim at centricular dot net>
15222 * ext/taglib/gstid3v2mux.cc:
15223 Handle multiple tags of the same type properly. Re-inject
15224 unparsed ID3v2 frames that we get as binary blobs from
15225 id3demux into the tag again so we don't lose information
15226 when retagging (#334375).
15228 2006-07-25 Tim-Philipp Müller <tim at centricular dot net>
15230 * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
15231 Document newly-added properties properly, so that there is a
15232 'Since: 0.10.4' in the plugin docs. Convert some property
15233 names into canonical GObject style (GObject will do that
15234 internally anyway).
15236 2006-07-25 Tim-Philipp Müller <tim at centricular dot net>
15238 * gst/id3demux/id3tags.c:
15239 (id3demux_add_id3v2_frame_blob_to_taglist):
15240 Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
15241 well, and add the version to the blob's buffer caps, since that
15242 information will be needed for deserialisation later on (#348644).
15244 2006-07-25 Stefan Kost <ensonic@users.sf.net>
15246 * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
15247 (gst_avi_demux_parse_stream):
15248 Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
15249 indentation and spacing.
15251 2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
15253 * docs/plugins/Makefile.am:
15254 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15255 * docs/plugins/gst-plugins-good-plugins-sections.txt:
15256 * docs/plugins/gst-plugins-good-plugins.args:
15257 * docs/plugins/inspect/plugin-1394.xml:
15258 * docs/plugins/inspect/plugin-aasink.xml:
15259 * docs/plugins/inspect/plugin-alaw.xml:
15260 * docs/plugins/inspect/plugin-alpha.xml:
15261 * docs/plugins/inspect/plugin-alphacolor.xml:
15262 * docs/plugins/inspect/plugin-annodex.xml:
15263 * docs/plugins/inspect/plugin-apetag.xml:
15264 * docs/plugins/inspect/plugin-auparse.xml:
15265 * docs/plugins/inspect/plugin-autodetect.xml:
15266 * docs/plugins/inspect/plugin-avi.xml:
15267 * docs/plugins/inspect/plugin-cacasink.xml:
15268 * docs/plugins/inspect/plugin-cairo.xml:
15269 * docs/plugins/inspect/plugin-cdio.xml:
15270 * docs/plugins/inspect/plugin-cutter.xml:
15271 * docs/plugins/inspect/plugin-debug.xml:
15272 * docs/plugins/inspect/plugin-dv.xml:
15273 * docs/plugins/inspect/plugin-efence.xml:
15274 * docs/plugins/inspect/plugin-effectv.xml:
15275 * docs/plugins/inspect/plugin-esdsink.xml:
15276 * docs/plugins/inspect/plugin-flac.xml:
15277 * docs/plugins/inspect/plugin-flxdec.xml:
15278 * docs/plugins/inspect/plugin-gconfelements.xml:
15279 * docs/plugins/inspect/plugin-gdkpixbuf.xml:
15280 * docs/plugins/inspect/plugin-goom.xml:
15281 * docs/plugins/inspect/plugin-halelements.xml:
15282 * docs/plugins/inspect/plugin-icydemux.xml:
15283 * docs/plugins/inspect/plugin-id3demux.xml:
15284 * docs/plugins/inspect/plugin-jpeg.xml:
15285 * docs/plugins/inspect/plugin-level.xml:
15286 * docs/plugins/inspect/plugin-matroska.xml:
15287 * docs/plugins/inspect/plugin-mulaw.xml:
15288 * docs/plugins/inspect/plugin-multipart.xml:
15289 * docs/plugins/inspect/plugin-navigationtest.xml:
15290 * docs/plugins/inspect/plugin-ossaudio.xml:
15291 * docs/plugins/inspect/plugin-png.xml:
15292 * docs/plugins/inspect/plugin-rtp.xml:
15293 * docs/plugins/inspect/plugin-rtsp.xml:
15294 * docs/plugins/inspect/plugin-shout2send.xml:
15295 * docs/plugins/inspect/plugin-smpte.xml:
15296 * docs/plugins/inspect/plugin-speex.xml:
15297 * docs/plugins/inspect/plugin-udp.xml:
15298 * docs/plugins/inspect/plugin-videobalance.xml:
15299 * docs/plugins/inspect/plugin-videobox.xml:
15300 * docs/plugins/inspect/plugin-videoflip.xml:
15301 * docs/plugins/inspect/plugin-videomixer.xml:
15302 * docs/plugins/inspect/plugin-wavenc.xml:
15303 * docs/plugins/inspect/plugin-wavparse.xml:
15304 * docs/plugins/inspect/plugin-ximagesrc.xml:
15305 Update files to CVS/Prerelease version, add esdsink docs.
15307 * ext/esd/esdsink.c:
15310 * gst/rtp/gstrtpmp4vpay.c:
15311 Fix typo in element description.
15313 2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
15315 * ext/esd/esdsink.c: (gst_esdsink_open),
15316 (gst_esdsink_factory_init):
15317 Prevent libesd from auto-spawning a sound daemon if it
15318 is not already running. Now that we don't do evil stuff
15319 like that any longer we can give esdsink a rank so that
15320 autoaudiosink will try it as well if all other audio
15321 sinks fail (#343051).
15323 2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
15325 * ext/esd/Makefile.am:
15326 Oops, need to remove README from EXTRA_DIST as well.
15328 2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
15331 Remove, it contains nothing useful anyway.
15333 * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
15334 (gst_esdsink_delay):
15335 Some small clean-ups; use GST_BOILERPLATE etc.
15337 2006-07-24 Wim Taymans <wim@fluendo.com>
15339 * gst/law/alaw-decode.c: (alawdec_getcaps):
15340 * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
15341 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
15342 * gst/law/mulaw-encode.c: (mulawenc_getcaps):
15343 Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
15345 2006-07-24 Stefan Kost <ensonic@users.sf.net>
15347 * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15348 (gst_wavparse_other), (gst_wavparse_perform_seek),
15349 (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
15350 (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
15351 (gst_wavparse_pad_query):
15352 * gst/wavparse/gstwavparse.h:
15353 Use information from 'fact' chunk for length calculation of compressed
15354 samples. Calculate bps if bogus value is found in wav header (embeded
15358 2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
15360 Based on patch by: Joni Valtanen <joni dot valtanen at movial fi>
15363 * gst/udp/Makefile.am:
15364 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
15365 (gst_dynudpsink_finalize), (gst_dynudpsink_close):
15366 * gst/udp/gstdynudpsink.h:
15367 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
15368 (gst_multiudpsink_finalize), (gst_multiudpsink_close):
15369 * gst/udp/gstmultiudpsink.h:
15370 * gst/udp/gstudp.c: (plugin_init):
15371 * gst/udp/gstudpsink.h:
15372 * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
15373 (gst_udpsrc_start), (gst_udpsrc_stop):
15374 * gst/udp/gstudpsrc.h:
15375 * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
15376 (gst_udp_net_utils_win32_wsa_startup):
15377 * gst/udp/gstudpnetutils.h:
15378 Port udp plugin to win32 (#345288).
15380 2006-07-24 Wim Taymans <wim@fluendo.com>
15382 * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
15383 Remove unwanted DEBUG line.
15385 2006-07-23 Tim-Philipp Müller <tim at centricular dot net>
15387 * gst/id3demux/gstid3demux.c: (plugin_init):
15388 * gst/id3demux/id3tags.c:
15389 (id3demux_add_id3v2_frame_blob_to_taglist):
15390 * gst/id3demux/id3tags.h:
15391 On second thought, it might be wiser and more efficient
15392 not to do tag registration from a streaming thread.
15394 2006-07-23 Tim-Philipp Müller <tim at centricular dot net>
15396 * gst/id3demux/id3tags.c:
15397 (id3demux_add_id3v2_frame_blob_to_taglist),
15398 (id3demux_id3v2_frames_to_tag_list):
15399 Put ID3v2 frames we can't parse as binary blobs into private
15400 tags, so that they are not lost when retagging, at least once
15401 id3v2mux has been taught to re-inject those frames again.
15404 2006-07-21 Wim Taymans <wim@fluendo.com>
15406 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
15407 (gst_avi_demux_process_next_entry):
15410 * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15411 Don't use \n in debug lines.
15413 2006-07-20 Stefan Kost <ensonic@users.sf.net>
15415 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15416 * docs/plugins/gst-plugins-good-plugins-sections.txt:
15417 Add annodex and icydemux, cleanup the sections a bit
15419 2006-07-19 Tim-Philipp Müller <tim at centricular dot net>
15421 Patch by: Alex Lancaster <alexl at users sourceforge net>
15423 * ext/taglib/gstid3v2mux.cc:
15424 Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
15425 ID3v2 TSSE frames (#347898).
15427 2006-07-18 Stefan Kost <ensonic@users.sf.net>
15429 * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
15430 Respect mpegversion for "video/mpeg" and give message in case of
15431 unhandled versions.
15433 2006-07-17 Wim Taymans <wim@fluendo.com>
15435 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
15436 (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
15437 (gst_pngdec_chain), (gst_pngdec_sink_event),
15438 (gst_pngdec_libpng_init), (gst_pngdec_change_state),
15439 (gst_pngdec_sink_activate_push):
15440 * ext/libpng/gstpngdec.h:
15441 Use statically allocated segment instead of leaking.
15443 Fix flush and seek handling.
15445 2006-07-16 Wim Taymans <wim@fluendo.com>
15447 * gst/rtp/Makefile.am:
15448 * gst/rtp/gstrtp.c: (plugin_init):
15449 * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
15450 (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
15451 (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
15452 (gst_rtp_mp4g_depay_set_property),
15453 (gst_rtp_mp4g_depay_get_property),
15454 (gst_rtp_mp4g_depay_change_state),
15455 (gst_rtp_mp4g_depay_plugin_init):
15456 * gst/rtp/gstrtpmp4gdepay.h:
15457 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
15458 (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
15459 (gst_rtp_mp4g_pay_flush):
15460 Added simple generic mpeg4 depayloader.
15461 Fix generic mpeg4 payloader.
15463 2006-07-15 Tim-Philipp Müller <tim at centricular dot net>
15465 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
15466 Don't try doing state changes on a NULL pointer.
15468 2006-07-14 Wim Taymans <wim@fluendo.com>
15470 Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
15472 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
15473 (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
15474 (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
15475 * gst/rtp/gstrtpamrdepay.h:
15476 rtpamrdec isn't a subclass of GstBaseRtpDepayload.
15479 2006-07-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15481 * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15482 (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
15483 Fix segfault when moving mouse pointer to the bottom right corner.
15485 2006-07-12 Wim Taymans <wim@fluendo.com>
15487 * gst/rtp/Makefile.am:
15488 * gst/rtp/gstrtp.c: (plugin_init):
15489 * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
15490 (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
15491 (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
15492 (gst_rtp_mp2t_depay_set_property),
15493 (gst_rtp_mp2t_depay_get_property),
15494 (gst_rtp_mp2t_depay_change_state),
15495 (gst_rtp_mp2t_depay_plugin_init):
15496 * gst/rtp/gstrtpmp2tdepay.h:
15497 Added mpeg2 TS depayloader. Closing #347234.
15499 2006-07-11 Tim-Philipp Müller <tim at centricular dot net>
15501 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
15502 Remove g_assert that shouldn't be there and was triggered
15503 after trying to open a device that doesn't exist or can't
15504 be opened for some other reason (#347972).
15506 2006-07-10 Edward Hervey <edward@fluendo.com>
15508 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15509 (gst_avi_demux_stream_header), (push_tag_lists):
15510 * gst/avi/gstavidemux.h:
15511 Don't push tag events found by gst_riff_parse_info() before outputting
15512 GST_EVENT_NEWSEGMENT.
15514 2006-07-10 Wim Taymans <wim@fluendo.com>
15516 * gst/rtsp/Makefile.am:
15517 * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
15518 (rtsp_connection_close):
15519 * gst/rtsp/rtspdefs.h:
15520 replaced closesocket and close in code with one CLOSE_SOCKET.
15521 Some more cleanups. Fixes #345301.
15523 2006-07-10 Tim-Philipp Müller <tim at centricular dot net>
15525 * gst/autodetect/gstautoaudiosink.c:
15526 Fix example pipeline in docs.
15528 2006-07-10 Wim Taymans <wim@fluendo.com>
15530 Patch by: Rob Taylor <robtaylor at floopily dot org>
15532 * gst/udp/gstmultiudpsink.c: (join_multicast),
15533 (gst_multiudpsink_init_send), (gst_multiudpsink_add):
15534 If a destination is added before the stream is set to PAUSED, the
15535 multicast group is not joined as the socket is not created yet.
15536 Also TTL and LOOP should also be set. Fixes #346921.
15538 2006-07-09 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15540 * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15541 (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15542 (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
15543 (gst_ximage_src_init):
15544 * sys/ximage/gstximagesrc.h:
15545 Fix use-damage property to actually work :)
15546 Add startx, starty, endx, endy properties so screencasts other than full
15547 screen ones can work.
15549 2006-07-08 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15551 * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
15552 (gst_ximage_src_set_property), (gst_ximage_src_get_property),
15553 (gst_ximage_src_class_init), (gst_ximage_src_init):
15554 * sys/ximage/gstximagesrc.h:
15555 Add use_damage property to offer ability to choose whether to use
15558 2006-07-07 Wim Taymans <wim@fluendo.com>
15560 * gst/goom/filters.c: (zoomFilterSetResolution):
15561 Avoid goom coredumping by clearing memory.
15564 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
15566 * win32/vs6/libgstid3demux.dsp:
15567 Add a link to libgsttag-0.10.lib.
15569 2006-07-05 Tim-Philipp Müller <tim at centricular dot net>
15571 * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15572 (gst_tag_demux_read_range):
15573 * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15574 (gst_id3demux_read_range):
15575 Don't return FLOW_UNEXPECTED when a buffer is before
15576 the start of the stream (which might happen with
15577 large ID3v2 tags if the tag reading was done pullrange
15578 based and we then switched to push mode later on).
15579 Fixes regression introduced by commit from June 29th.
15581 2006-07-05 Tim-Philipp Müller <tim at centricular dot net>
15583 * ext/taglib/gstid3v2mux.cc:
15584 Make UTF-8 the default encoding when writing string
15585 tags (before, our UTF-8 strings would automatically
15586 be converted to ISO-8859-1 by taglib and written as
15587 ISO-8859-1 fields if that was possible).
15589 * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
15590 (test_taglib_id3mux_check_tag_buffer), (identity_cb),
15591 (test_taglib_id3mux_with_tags):
15592 Add test case that makes sure our UTF-8 strings have
15593 actually been written into the tag as UTF-8.
15595 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
15598 Let's try that again.
15600 2006-07-04 Tim-Philipp Müller <tim at centricular dot net>
15603 Disable monoscope plugin for now until it fulfills
15604 all the requirements.
15606 2006-07-03 Tim-Philipp Müller <tim at centricular dot net>
15609 * gst/monoscope/Makefile.am:
15610 * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
15611 (gst_monoscope_class_init), (gst_monoscope_init),
15612 (gst_monoscope_finalize), (gst_monoscope_reset),
15613 (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
15614 (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
15615 (gst_monoscope_sink_event), (gst_monoscope_src_event),
15616 (gst_monoscope_change_state), (plugin_init):
15617 * gst/monoscope/gstmonoscope.h:
15618 Port monoscope visualisation to 0.10.
15620 2006-07-03 Tim-Philipp Müller <tim at centricular dot net>
15622 * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15623 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15624 Return FLOW_UNEXPECTED when at the end of the file, not
15625 FLOW_ERROR. Fixes 'internal stream error' errors that
15626 would sometimes occur in totem when scrubbing to the
15627 end of an ID3v1 tagged mp3 file.
15629 2006-07-03 Edward Hervey <edward@fluendo.com>
15631 * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
15632 (buffer_clip), (user_end_callback), (gst_pngdec_chain),
15633 (gst_pngdec_sink_event), (gst_pngdec_change_state):
15634 * ext/libpng/gstpngdec.h:
15635 Implement buffer clipping/dropping using GstSegment.
15636 This provides accurate seeking.
15638 2006-07-03 Edward Hervey <edward@fluendo.com>
15640 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15641 (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
15642 (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
15643 (gst_avi_demux_process_next_entry), (push_tag_lists),
15644 (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15645 * gst/avi/gstavidemux.h:
15646 Proper aggregation of each stream's GstFlowReturn in order to figure out
15647 whether the task should stop or not.
15648 Don't send inline events before pushing out a NEW_SEGMENT, more
15649 specifically for GST_TAG_EVENT.
15650 Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
15653 2006-06-30 Tim-Philipp Müller <tim at centricular dot net>
15655 Patch by: Brian Cameron <brian dot cameron at sun dot com>
15657 * sys/sunaudio/gstsunaudiomixerctrl.c:
15658 (gst_sunaudiomixer_ctrl_build_list):
15659 Move "Monitor" slider to input tab so it works more like
15660 sdtaudiocontrol, which is what people on Solaris are used
15661 to using for their mixer program (#346259).
15663 2006-06-29 Thomas Vander Stichele <thomas at apestaart dot org>
15665 * tests/check/elements/level.c: (GST_START_TEST):
15666 fix a leak, clean up at the end
15668 2006-06-29 Tim-Philipp Müller <tim at centricular dot net>
15670 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15671 (gst_matroska_demux_send_event),
15672 (gst_matroska_demux_loop_stream_parse_id):
15673 * gst/matroska/matroska-ids.h:
15674 Send tag event after newsegment event.
15676 2006-06-29 Tim-Philipp Müller <tim at centricular dot net>
15678 * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
15679 (gst_id3demux_read_range):
15680 Make sure we don't return GST_FLOW_OK with a NULL buffer in
15681 certain cases where a read beyond the end of the file is
15682 requested. Fixes #345930.
15684 * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
15685 (gst_tag_demux_read_range):
15686 Fix same issue here as well.
15688 2006-06-29 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15690 * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
15692 Fix hypothetical crash.
15694 2006-06-28 Tim-Philipp Müller <tim at centricular dot net>
15696 Patch by: Brian Cameron <brian dot cameron at sun dot com>
15698 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
15699 Do not modify the ports value. If the user has turned off the
15700 built-in speakers, then we should not reset it in the prepare
15701 function, since this causes the built-in speakers to turn
15702 back on anytime the user changes a track in totem, rhythmbox,
15705 2006-06-23 Wim Taymans <wim@fluendo.com>
15707 * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
15708 Fix double caps unref when negotiation fails.
15710 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
15712 * ext/annodex/gstcmmldec.c:
15713 * ext/annodex/gstcmmlenc.c:
15714 * ext/annodex/gstcmmlparser.c:
15715 * ext/dv/gstdvdec.c:
15716 * ext/dv/gstdvdemux.c:
15717 * ext/gdk_pixbuf/pixbufscale.c:
15718 * ext/jpeg/gstjpegenc.c:
15719 * ext/jpeg/gstsmokedec.c:
15720 * ext/jpeg/gstsmokeenc.c:
15721 * ext/libpng/gstpngdec.c:
15722 * ext/libpng/gstpngenc.c:
15723 * ext/speex/gstspeexenc.c:
15724 * gst/alpha/gstalphacolor.c:
15725 * gst/cutter/gstcutter.c:
15726 * gst/debug/gstnavigationtest.c:
15727 * gst/icydemux/gsticydemux.c:
15728 * gst/level/gstlevel.c:
15729 * gst/multipart/multipart.c:
15730 * gst/rtp/gstrtpamrpay.c:
15731 * gst/rtp/gstrtpdepay.c:
15732 * gst/rtp/gstrtpilbcpay.c:
15733 * gst/rtp/gstrtpmp4gpay.c:
15734 * gst/rtp/gstrtpmp4vpay.c:
15735 * gst/rtsp/gstrtpdec.c:
15736 * gst/rtsp/gstrtspsrc.c:
15737 * gst/udp/gstdynudpsink.c:
15738 * gst/udp/gstmultiudpsink.c:
15739 * gst/udp/gstudpsrc.c:
15740 * gst/videobox/gstvideobox.c:
15741 * gst/videofilter/gstvideoflip.c:
15742 Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
15743 plus two minor macro fixes.
15745 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
15747 * gst/matroska/matroska-demux.c:
15748 (gst_matroska_demux_check_subtitle_buffer),
15749 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15750 (gst_matroska_demux_subtitle_caps):
15751 * gst/matroska/matroska-ids.c:
15752 (gst_matroska_track_init_subtitle_context):
15753 * gst/matroska/matroska-ids.h:
15754 Try to fix up broken matroska files containing subtitle
15755 streams with non-UTF8 character encodings (courtesy of
15756 mkvmerge) using either the encoding specified in the
15757 GST_SUBTITLE_ENCODING environment variable or the
15758 current locale's character set if it is non-UTF8.
15761 2006-06-22 Tim-Philipp Müller <tim at centricular dot net>
15763 * gst/id3demux/id3v2frames.c: (parse_picture_frame):
15764 Set image type from APIC frame as "image-type" field
15765 of GST_TAG_IMAGE buffer caps (#344605).
15767 2006-06-20 Tim-Philipp Müller <tim at centricular dot net>
15769 * ext/flac/Makefile.am:
15770 * ext/flac/gstflacdec.c: (gst_flac_dec_init),
15771 (gst_flac_dec_reset_decoders),
15772 (gst_flac_dec_setup_seekable_decoder),
15773 (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
15774 (gst_flac_dec_metadata_callback),
15775 (gst_flac_dec_metadata_callback_seekable),
15776 (gst_flac_dec_metadata_callback_stream),
15777 (gst_flac_dec_error_callback),
15778 (gst_flac_dec_error_callback_seekable),
15779 (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
15780 (gst_flac_dec_read_stream), (gst_flac_dec_write),
15781 (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
15782 (gst_flac_dec_loop), (gst_flac_dec_sink_event),
15783 (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
15784 (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
15785 (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
15786 (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
15787 (gst_flac_dec_sink_activate_push),
15788 (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
15789 * ext/flac/gstflacdec.h:
15790 Support chain-based operation, should make flac-over-DAAP
15793 2006-06-20 Wim Taymans <wim@fluendo.com>
15795 * docs/plugins/gst-plugins-good-plugins-sections.txt:
15796 Doc updates, merge some unused symbols.
15798 2006-06-20 Wim Taymans <wim@fluendo.com>
15800 * docs/plugins/Makefile.am:
15801 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15802 * docs/plugins/gst-plugins-good-plugins-sections.txt:
15803 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
15804 * gst/rtsp/gstrtspsrc.c:
15805 * gst/rtsp/gstrtspsrc.h:
15806 Added documentation for the rtsp plugin. Fixes #345393.
15808 2006-06-20 Wim Taymans <wim@fluendo.com>
15810 * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15811 (rtsp_connection_close), (rtsp_connection_free):
15812 Use better G_OS_* macros. Fixes #345301 some more.
15814 2006-06-20 Wim Taymans <wim@fluendo.com>
15816 Patch by: Brian Cameron <brian dot cameron at sun dot com>
15818 * sys/sunaudio/Makefile.am:
15819 * sys/sunaudio/gstsunaudio.c: (plugin_init):
15820 * sys/sunaudio/gstsunaudiomixerctrl.c:
15821 (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
15822 (gst_sunaudiomixer_ctrl_list_tracks),
15823 (gst_sunaudiomixer_ctrl_get_volume),
15824 (gst_sunaudiomixer_ctrl_set_volume),
15825 (gst_sunaudiomixer_ctrl_set_mute),
15826 (gst_sunaudiomixer_ctrl_set_record):
15827 * sys/sunaudio/gstsunaudiomixerctrl.h:
15828 * sys/sunaudio/gstsunaudiomixertrack.c:
15829 (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
15830 * sys/sunaudio/gstsunaudiomixertrack.h:
15831 * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
15832 (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
15833 (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
15834 (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
15835 (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
15836 (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
15837 (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
15838 (gst_sunaudiosrc_reset):
15839 * sys/sunaudio/gstsunaudiosrc.h:
15840 Add a SunAudio source plugin.
15841 Support stereo and right/left channel gain in the mixer plugin.
15842 Support the RECORD flag so that you can switch between line-input and
15843 microphone in gnome-volume-control.
15844 Code cleanups like using an enumerator for track number instead of an
15845 integer. Fixes #344923.
15847 2006-06-20 Wim Taymans <wim@fluendo.com>
15849 Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
15851 * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
15852 (rtsp_connection_close):
15853 Make RTSP plugin compile on windows. Fixes #345301.
15854 Some changes to original patch to catch errors better.
15855 use ifdef WIN32 instead of ifndef.
15857 2006-06-19 Zaheer Abbas Merali <zaheerabbas at merali dot org>
15860 If we have libraw1394 >= 1.2.1, then we need libiec61883.
15862 2006-06-18 Edward Hervey <edward@fluendo.com>
15864 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
15865 After a failed buffer alloc, we need to abort the jpeg decoding (it
15866 started when parsing headers to figure out how many bytes we need
15867 to request downstream).
15869 2006-06-18 Tim-Philipp Müller <tim at centricular dot net>
15871 Patch by: Mark Nauwelaerts <manauw at skynet be>
15873 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15874 Make sure we don't read beyond the end of the file (#345232).
15876 2006-06-17 Tim-Philipp Müller <tim at centricular dot net>
15879 Fix --disable-external (can't set conditionals conditionally,
15882 2006-06-16 Tim-Philipp Müller <tim at centricular dot net>
15886 * docs/Makefile.am:
15887 Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
15889 * docs/plugins/Makefile.am:
15890 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15891 * docs/plugins/inspect/plugin-taglib.xml:
15892 Add/fix apev2mux docs.
15894 2006-06-14 Wim Taymans <wim@fluendo.com>
15896 * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15897 (gst_dvdec_finalize), (gst_dvdec_sink_event),
15898 (gst_dvdec_change_state):
15899 Reset segment info on flush.
15900 Alloc segment in _init, free in _finalize.
15902 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
15903 Don't send segments twice.
15905 2006-06-14 Wim Taymans <wim@fluendo.com>
15907 * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15908 Respect segment.stop. Fixes #342592.
15910 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
15912 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
15913 No language specified means the implied language is English
15914 according to the matroska spec (partially fixes #344708);
15915 add some more debug output.
15917 2006-06-14 Tim-Philipp Müller <tim at centricular dot net>
15919 * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
15920 (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
15921 (gst_wavparse_chain):
15922 When operating chain-based, don't make any assumptions about the
15923 chunking of the incoming data and make streaming work on days other
15924 than the second Thursday after a full moon. Also fix up debug
15925 messages here and there and make use of the most excellent new
15926 gst_pad_query_peer_duration() utility function.
15927 Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
15929 * gst/wavparse/gstwavparse.h:
15930 Remove trailing comma after last enum value, some compilers don't
15933 2006-06-13 Wim Taymans <wim@fluendo.com>
15935 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
15936 Handle premature EOS gracefully.
15938 2006-06-13 Tim-Philipp Müller <tim at centricular dot net>
15940 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15941 Prevent out of bounds array access when scrubbing towards
15942 the end of the file between the last index entry and the
15943 end. Fixes occasional 'start <= stop' newsegment event
15944 assertions when scrubbing in MJPEG files.
15946 2006-06-12 Tim-Philipp Müller <tim at centricular dot net>
15948 * tests/check/elements/.cvsignore:
15951 2006-06-11 Tim-Philipp Müller <tim at centricular dot net>
15953 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15954 (scan_encoded_string), (parse_picture_frame):
15955 Extract images from ID3v2 tags (APIC frames). Fixes #339704.
15958 Require core >= 0.10.8 (for GST_TAG_IMAGE and
15959 GST_TAG_PPEVIEW_IMAGE used in the patch above).
15961 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
15963 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
15964 gratuitous comment changes
15965 * tests/check/elements/level.c: (GST_START_TEST):
15966 fix level test leaks
15968 2006-06-11 Tim-Philipp Müller <tim at centricular dot net>
15970 * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
15971 * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
15972 Use gst_pad_query_peer_duration() utility function here.
15974 2006-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
15979 * ext/annodex/Makefile.am:
15980 * ext/cdio/Makefile.am:
15981 * ext/dv/Makefile.am:
15982 * ext/esd/Makefile.am:
15983 * ext/flac/Makefile.am:
15984 * ext/gdk_pixbuf/Makefile.am:
15985 * ext/ladspa/Makefile.am:
15986 * ext/libcaca/Makefile.am:
15987 * ext/speex/Makefile.am:
15988 * ext/taglib/Makefile.am:
15989 * sys/oss/Makefile.am:
15990 * sys/sunaudio/Makefile.am:
15991 * sys/ximage/Makefile.am:
15992 clean up build further
15994 2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
15996 * gconf/Makefile.am:
15997 Honour --disable-schemas-install configure option. Fixes #344100.
15999 2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
16001 * tests/examples/level/Makefile.am:
16002 Add -lm to LIBS for pow() function, don't assume one of our
16003 dependencies (such as libxml-2.0) drags it in automatically
16006 2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
16008 Patch by: Peter Kjellerstedt <pkj at axis dot com>
16011 We should use $SED and not $(SED) in configure.ac (#343678).
16013 2006-06-09 Wim Taymans <wim@fluendo.com>
16015 Patch by: Brian Cameron <brian dot cameron at sun dot com>
16017 * sys/sunaudio/gstsunaudiomixerctrl.c:
16018 (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
16019 (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
16020 (gst_sunaudiomixer_ctrl_set_mute):
16021 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
16022 (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
16023 (gst_sunaudiosink_write):
16024 Attached find a patch that fixes a number of bugs with the SunAudio
16025 mixer plugin and fixes #344101:
16026 1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
16027 tracks onto the tracklist causing gnome-volume-control's preferences
16028 dialog to be messed up and would core dump if you checked/unchecked
16030 2. We weren't previously setting the MUTE flag properly. Fixing this
16031 makes gnome-volume-control work better.
16032 3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
16033 and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
16034 gnome-volume-control look better.
16035 Also some minor cleanup in gstsunaudiosink.c.
16037 2006-06-09 Wim Taymans <wim@fluendo.com>
16039 * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
16040 (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
16041 (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
16042 (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
16043 (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
16044 * ext/jpeg/gstjpegdec.h:
16045 API: Added IDCT method property
16047 Avoid dynamic allocation of trivial fixed structure.
16048 Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
16050 2006-06-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16053 We now require libraw1394 >= 1.1.0 and that version onwards all
16056 2006-06-02 Edward Hervey <edward@fluendo.com>
16058 * gst/law/alaw-decode.c: (alawdec_getcaps):
16059 Trying to get items from an ANY or EMPTY caps is ... stupid.
16061 2006-06-02 Edward Hervey <edward@fluendo.com>
16063 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
16064 (gst_dvdec_chain), (gst_dvdec_change_state):
16065 * ext/dv/gstdvdec.h:
16066 Added GstSegment handling, now implements dropping/clipping.
16068 2006-06-01 Stefan Kost <ensonic@users.sf.net>
16070 * ext/aalib/gstaasink.h:
16071 * ext/annodex/gstcmmldec.h:
16072 * ext/cairo/gsttimeoverlay.h:
16073 * ext/dv/gstdvdec.h:
16074 * ext/dv/gstdvdemux.h:
16075 * ext/esd/esdmon.h:
16076 * ext/esd/esdsink.h:
16077 * ext/flac/gstflacenc.h:
16078 * ext/gconf/gstgconfaudiosink.h:
16079 * ext/gconf/gstgconfaudiosrc.h:
16080 * ext/gconf/gstgconfvideosink.h:
16081 * ext/gconf/gstgconfvideosrc.h:
16082 * ext/gdk_pixbuf/gstgdkanimation.h:
16083 * ext/gdk_pixbuf/pixbufscale.h:
16084 * ext/hal/gsthalaudiosink.h:
16085 * ext/hal/gsthalaudiosrc.h:
16086 * ext/jpeg/gstjpegenc.h:
16087 * ext/jpeg/gstsmokedec.h:
16088 * ext/jpeg/gstsmokeenc.h:
16089 * ext/libcaca/gstcacasink.h:
16090 * ext/libmng/gstmngdec.h:
16091 * ext/libmng/gstmngenc.h:
16092 * ext/libpng/gstpngdec.h:
16093 * ext/libpng/gstpngenc.h:
16094 * ext/raw1394/gstdv1394src.h:
16095 * ext/speex/gstspeexenc.h:
16096 * gst/autodetect/gstautoaudiosink.h:
16097 * gst/autodetect/gstautovideosink.h:
16098 * gst/avi/gstavidemux.h:
16099 * gst/cutter/gstcutter.h:
16100 * gst/debug/efence.h:
16101 * gst/debug/gstnavigationtest.h:
16102 * gst/debug/gstnavseek.h:
16103 * gst/flx/gstflxdec.h:
16104 * gst/goom/gstgoom.h:
16105 * gst/icydemux/gsticydemux.h:
16106 * gst/id3demux/gstid3demux.h:
16107 * gst/law/alaw-decode.h:
16108 * gst/law/alaw-encode.h:
16109 * gst/law/mulaw-decode.h:
16110 * gst/law/mulaw-encode.h:
16111 * gst/matroska/matroska-mux.h:
16112 * gst/median/gstmedian.h:
16113 * gst/oldcore/gstaggregator.h:
16114 * gst/oldcore/gstfdsink.h:
16115 * gst/oldcore/gstmd5sink.h:
16116 * gst/oldcore/gstmultifilesrc.h:
16117 * gst/oldcore/gstpipefilter.h:
16118 * gst/oldcore/gstshaper.h:
16119 * gst/oldcore/gststatistics.h:
16120 * gst/rtp/gstasteriskh263.h:
16121 * gst/rtp/gstrtpL16depay.h:
16122 * gst/rtp/gstrtpL16pay.h:
16123 * gst/rtp/gstrtpamrdepay.h:
16124 * gst/rtp/gstrtpamrpay.h:
16125 * gst/rtp/gstrtpdepay.h:
16126 * gst/rtp/gstrtpgsmdepay.h:
16127 * gst/rtp/gstrtpgsmpay.h:
16128 * gst/rtp/gstrtph263pay.h:
16129 * gst/rtp/gstrtph263pdepay.h:
16130 * gst/rtp/gstrtph263ppay.h:
16131 * gst/rtp/gstrtpmp4gpay.h:
16132 * gst/rtp/gstrtpmp4vdepay.h:
16133 * gst/rtp/gstrtpmp4vpay.h:
16134 * gst/rtp/gstrtpmpadepay.h:
16135 * gst/rtp/gstrtpmpapay.h:
16136 * gst/rtp/gstrtppcmadepay.h:
16137 * gst/rtp/gstrtppcmapay.h:
16138 * gst/rtp/gstrtppcmudepay.h:
16139 * gst/rtp/gstrtppcmupay.h:
16140 * gst/rtp/gstrtpspeexdepay.h:
16141 * gst/rtp/gstrtpspeexpay.h:
16142 * gst/rtsp/gstrtpdec.h:
16143 * gst/rtsp/gstrtspsrc.h:
16144 * gst/smpte/gstsmpte.h:
16145 * gst/udp/gstdynudpsink.h:
16146 * gst/udp/gstmultiudpsink.h:
16147 * gst/udp/gstudpsink.h:
16148 * gst/udp/gstudpsrc.h:
16149 * gst/videofilter/gstvideobalance.h:
16150 * gst/videofilter/gstvideoflip.h:
16151 * sys/oss/gstossdmabuffer.h:
16152 * sys/oss/gstossmixerelement.h:
16153 * sys/oss/gstosssink.h:
16154 * sys/oss/gstosssrc.h:
16155 * sys/osxvideo/osxvideosink.h:
16156 * sys/sunaudio/gstsunaudiomixer.h:
16157 * sys/sunaudio/gstsunaudiosink.h:
16158 * sys/ximage/gstximagesrc.h:
16159 Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
16161 2006-05-31 Wim Taymans <wim@fluendo.com>
16163 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
16164 (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
16165 (gst_goom_src_setcaps), (gst_goom_src_event),
16166 (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
16167 (gst_goom_change_state):
16168 * gst/goom/gstgoom.h:
16170 Handle flushing, discont and events.
16171 Fix timestamps and various other cleanups.
16173 2006-05-31 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16175 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
16176 Fix bus reset when using libiec61883
16178 2006-05-31 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16181 Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
16182 * ext/raw1394/Makefile.am:
16184 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
16185 New method, to receive using libiec61883.
16186 (gst_dv1394src_iso_receive),
16187 #ifdef'd out if libiec61883 is present.
16188 (gst_dv1394src_bus_reset),
16189 Get userdata correctly if using libiec61883.
16190 (gst_dv1394src_create),
16191 When using libiec61883, only poll one fd and no need to read.
16192 (gst_dv1394src_discover_avc_node),
16193 Replace g_warnings.
16194 (gst_dv1394src_start),
16195 Create new handle when we know which dv port. More reliable
16196 than setting port on an existing handle. Initialise libiec61883.
16197 (gst_dv1394src_stop):
16198 If using libiec61883, then cleanup its handle properly.
16199 * ext/raw1394/gstdv1394src.h:
16200 Add libiec61883 handle.
16202 2006-05-30 Sebastien Moutte <sebastien@moutte.net>
16204 * gst/avi/gstavidemux.c:
16205 add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
16208 * win32/vs6/libgstavi.dsp:
16209 add gstavimux.c to the project
16210 * win32/vs6/libgstid3demux.dsp:
16211 add link to zlib library
16212 * win32/vs6/libgstmatroska.dsp:
16213 add matroska-ids.c to the project
16215 2006-05-30 Tim-Philipp Müller <tim at centricular dot net>
16217 Patch by: Sebastian Dröge <mail at slomosnail de >
16219 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16220 * docs/plugins/gst-plugins-good-plugins-sections.txt:
16221 * ext/taglib/Makefile.am:
16222 * ext/taglib/gstapev2mux.cc:
16223 * ext/taglib/gstapev2mux.h:
16224 * ext/taglib/gstid3v2mux.cc:
16225 * ext/taglib/gsttaglibmux.c: (plugin_init):
16226 * ext/taglib/gsttaglibmux.h:
16227 Add apev2mux element (#343122).
16229 * tests/check/Makefile.am:
16230 * tests/check/elements/apev2mux.c:
16231 (test_taglib_apev2mux_create_tags),
16232 (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
16233 (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
16234 (test_taglib_apev2mux_with_tags), (GST_START_TEST),
16235 (apev2mux_suite), (main):
16236 Add unit test for apev2mux element.
16238 2006-05-28 Tim-Philipp Müller <tim at centricular dot net>
16240 * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16241 * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16242 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16243 GST_PTR_FORMAT should be used to print caps in debug statements.
16245 2006-05-28 Tim-Philipp Müller <tim at centricular dot net>
16247 Patch by: Sebastian Dröge <slomo at ubuntu dot com>
16249 * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
16250 (ape_demux_parse_tags):
16251 Some clean-ups and additions: map APE 'file' tag to
16252 GST_TAG_LOCATION (#343123); add support for extracting
16253 the track count and clean up parsing a bit (#343127).
16255 2006-05-28 Edward Hervey <edward@fluendo.com>
16257 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
16258 Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
16260 2006-05-28 Edward Hervey <edward@fluendo.com>
16262 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
16263 (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
16264 (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
16265 * ext/jpeg/gstjpegdec.h:
16266 Clip outgoing buffers according to currently configured segment.
16268 2006-05-28 Tim-Philipp Müller <tim at centricular dot net>
16270 * ext/taglib/gstid3v2mux.cc:
16271 Handle writing of track-count or album-volume-count without
16272 track-number or albume-volume-number (in this case the number
16273 will just be set to 0).
16275 * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
16276 It would be nice if we actually checked the values received for
16277 track/album-volume number/count in _check_tags(), rather than
16278 setting them again ...
16280 2006-05-28 Tim-Philipp Müller <tim at centricular dot net>
16282 * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16283 A track/volume number or count of 0 does not make sense,
16284 just ignore it along with negative numbers (a tag might
16285 only contain a track count without a track number).
16287 2006-05-27 Edward Hervey <edward@fluendo.com>
16289 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
16290 (gst_jpeg_dec_sink_event):
16291 Abort decompression when receiving FLUSH_STOP. This should avoid
16292 issues when interrupting decoding with flushes.
16294 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
16296 * ext/flac/gstflac.c:
16297 Don't #include file we don't dist any longer.
16299 2006-05-27 Tim-Philipp Müller <tim at centricular dot net>
16302 Replace current README (containing the release notes from
16303 some 0.9.x version) with a proper README taken from the core.
16305 2006-05-24 Wim Taymans <wim@fluendo.com>
16307 * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
16308 Implement EOS correctly by either posting
16309 SEGMENT_DONE or pushing an EOS message depending
16310 on the seek type. Fixes #342592
16312 2006-05-24 Wim Taymans <wim@fluendo.com>
16314 * gst/law/alaw-decode.c: (gst_alawdec_chain):
16315 * gst/law/alaw-decode.h:
16316 * gst/law/alaw-encode.c: (gst_alawenc_chain):
16317 * gst/law/alaw-encode.h:
16318 * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
16319 * gst/law/mulaw-decode.h:
16320 * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
16321 * gst/law/mulaw-encode.h:
16322 Some cleanups in the chain functions.
16323 Remove some GStreamer 0.0.2 bits.
16325 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
16327 Patch by: Mark Nauwelaerts <manauw at skynet be>
16329 * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
16330 gst_collect_pads_stop() needs to be called before chaining up
16331 to the parent class (#342734).
16333 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
16335 * ext/flac/Makefile.am:
16336 * ext/flac/flac_compat.h:
16337 * ext/flac/gstflac.c:
16338 * ext/flac/gstflacdec.c: (gst_flac_dec_init):
16339 * ext/flac/gstflacenc.c:
16340 Remove backwards compatibility cruft for dealing with FLAC API
16341 changes in the 1.0.x series - we require 1.1.1 or newer these days.
16343 2006-05-23 Tim-Philipp Müller <tim at centricular dot net>
16345 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
16346 (gst_matroska_demux_push_xiph_codec_priv_data),
16347 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
16348 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
16349 * gst/matroska/matroska-ids.h:
16350 * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
16351 (gst_matroska_mux_video_pad_setcaps),
16352 (xiph3_streamheader_to_codecdata),
16353 (vorbis_streamheader_to_codecdata),
16354 (theora_streamheader_to_codecdata),
16355 (gst_matroska_mux_audio_pad_setcaps),
16356 (gst_matroska_mux_write_data):
16357 Add support for muxing/demuxing theora video (#342448; too bad
16358 none of the usual linux players can actually play this). Playback
16359 in GStreamer will require additional changes to theoradec in -base.
16360 Refactor streamheaders <=> CodecPrivateData code a bit; some small
16363 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
16365 * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
16366 (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
16367 Fix crashes when the horizontal subsampling is 1.
16370 2006-05-22 Tim-Philipp Müller <tim at centricular dot net>
16372 Patch by: Mark Nauwelaerts <manauw at skynet be>
16374 * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
16375 (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16376 (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16377 (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
16378 (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
16379 (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16380 (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
16381 (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16382 (gst_avi_mux_change_state):
16383 * gst/avi/gstavimux.h:
16384 Some enhancements for avimux (#342526):
16385 - add odml (large file) index support
16386 - store codec init data (e.g. huffyuv)
16387 - miscellaneous other fixes/cleanups
16389 2006-05-19 Jan Schmidt <thaytan@mad.scientist.com>
16391 * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16392 Don't output any tag when we encounter a negative track number - the
16393 tag type is uint, so we end up outputting huge positive numbers
16394 instead. (Fixes: #342029)
16396 2006-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
16399 update for new GSTPB_PLUGINS_DIR
16401 2006-05-18 Philippe Kalaf <philippe.kalaf at collabora.co.uk>
16403 * rtp/gst/gstrtph263pay.c:
16404 Properly set static caps for H263 at 34.
16406 2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
16408 Patch by: James "Doc" Livingston <doclivingston gmail com>
16410 * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
16411 Merge event tags and tag setter tags correctly (#339918). Also,
16412 don't leak taglist in case of an error.
16414 2006-05-17 Edward Hervey <edward@fluendo.com>
16416 * gst/law/mulaw-decode.c: (mulawdec_getcaps):
16417 We can only do caps intersection if the othercaps are non-empty and not
16418 ANY. Else we return the pad template (base_caps).
16420 2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
16422 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
16423 Fix crash when outputting debugging information for certain
16424 pictures (always good to use the right struct member for
16425 the number of records in an array).
16427 2006-05-16 Tim-Philipp Müller <tim at centricular dot net>
16429 Patch by: Jindrich Makovicka <jindrich.makivicka at itonis tv>
16431 * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
16432 (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
16433 (gst_ebml_read_element_length), (gst_ebml_read_buffer),
16434 (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
16435 (gst_ebml_read_float), (gst_ebml_read_ascii),
16436 (gst_ebml_read_binary):
16437 Don't create unnecessary sub-buffers all the time. Dramatically
16438 improves performance with multiple concurrently running
16439 matroskademux instances (#341818) (and avoids doing
16440 unnecessarily inefficient things in the general case).
16442 2006-05-16 Edward Hervey <edward@fluendo.com>
16444 * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
16445 In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
16446 return value of gst_pad_push_event().
16448 2006-05-16 Jan Schmidt <thaytan@mad.scientist.com>
16450 * gst/autodetect/gstautoaudiosink.c:
16451 (gst_auto_audio_sink_find_best):
16452 * gst/autodetect/gstautovideosink.c:
16453 (gst_auto_video_sink_find_best):
16454 Make the name of the child element be based on the name of the
16455 parent, so that debug output is more useful.
16457 * gst/id3demux/id3v2frames.c: (find_utf16_bom),
16458 (parse_insert_string_field), (parse_split_strings):
16459 Rework string parsing to always walk over BOM markers in UTF16
16460 strings, using the endianness indicated by the innermost one,
16461 then trying the opposite endianness if that fails to convert
16462 to valid UTF-8. Fixes #341774
16464 2006-05-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16466 Patch from: Matthieu <matthieu at fluendo dot com>
16468 * ext/libpng/Makefile.am:
16471 2006-05-15 Tim-Philipp Müller <tim at centricular dot net>
16473 * ext/taglib/gstid3v2mux.cc:
16474 Add support for writing images (APIC frames) into ID3v2
16475 tags (picture type always set to 'other' for now though).
16477 2006-05-14 Michael Smith <msmith@fluendo.com>
16479 * gst/wavparse/gstwavparse.c:
16480 Update docs; wavparse implements push and pull modes.
16482 2006-05-12 Wim Taymans <wim@fluendo.com>
16484 * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
16485 (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
16486 (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
16487 Ooops, bitten by the copy-and-paste design paradigm, fixes
16490 2006-05-12 Wim Taymans <wim@fluendo.com>
16492 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16493 (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
16494 (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
16495 (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
16496 (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
16497 (gst_avi_demux_massage_index),
16498 (gst_avi_demux_calculate_durations_from_index),
16499 (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
16500 (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
16501 (gst_avi_demux_loop):
16502 * gst/avi/gstavidemux.h:
16503 Some cleanups, prepare to use GstSegment.
16504 Fix error in entry walking code.
16506 Smarter timestamp calculation code.
16507 Uniform error/eos handling.
16509 2006-05-12 Michael Smith <msmith@fluendo.com>
16511 * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16512 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
16513 Fix use of uninitialised values if we're NOT seeking in ready.
16516 2006-05-12 Tim-Philipp Müller <tim at centricular dot net>
16518 * gst/wavparse/Makefile.am:
16519 Add CFLAGS and LIBS for libgstbase, fixes build on
16522 2006-05-10 Tim-Philipp Müller <tim at centricular dot net>
16524 * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
16525 Some more debug info. No need to check whether the string
16526 returned by g_convert() is really UTF-8 - either it is or
16527 we get NULL returned.
16529 2006-05-10 Jan Schmidt <thaytan@mad.scientist.com>
16531 * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
16532 Fix parsing of numeric genre strings some more, by ensuring that
16533 we only try and parse strings that a) Start with '(' and b) Consist
16535 Also, when finding an escaping '((' sequence, bust it back to '(' by
16536 swallowing the first parenthesis
16538 2006-05-10 Tim-Philipp Müller <tim at centricular dot net>
16540 * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
16541 (gst_esdsink_open), (gst_esdsink_close):
16542 * ext/esd/esdsink.h:
16543 Move the esd_get_server_info() into gst_esdsink_open() and fail
16544 with a decent error message on errors.
16546 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
16548 * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
16549 (gst_esdmon_channels_get_type):
16550 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
16551 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
16552 * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
16553 * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
16554 * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
16555 * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
16556 * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
16557 * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
16558 * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
16559 * gst/videomixer/videomixer.c:
16560 (gst_video_mixer_background_get_type):
16561 Const-ify GEnumValue arrays.
16563 2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
16565 Patch by: Mark Nauwelaerts <manauw at skynet bet>
16567 * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
16568 (gst_avi_mux_do_video_buffer):
16569 Work around gst_buffer_make_metadata_writable() bug that
16570 results in avimux marking all frames in the index as
16571 keyframes (#340859).
16573 2006-05-08 Wim Taymans <wim@fluendo.com>
16575 * gst/rtsp/rtspurl.c: (rtsp_url_parse):
16576 Make parsing of urls suck slightly less.
16578 2006-05-08 Edward Hervey <edward@fluendo.com>
16580 * autogen.sh: (CONFIGURE_DEF_OPT):
16581 libtoolize on Darwin/MacOSX is called glibtoolize.
16583 2006-05-08 Wim Taymans <wim@fluendo.com>
16585 Patch by: Jens Granseuer <jensgr at gmx dot net>
16587 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
16588 * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
16589 C89 compliance fixes. Fixes #340980
16591 2006-05-06 Tim-Philipp Müller <tim at centricular dot net>
16593 * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
16594 * ext/flac/gstflacdec.h:
16595 Handle segment seeks that include the end of the file as stop point
16596 properly: when the decoder hits EOS we want to send a SEGMENT_DONE
16597 message instead of an EOS event in case we're in segment seek
16598 mode (fixes #340699).
16600 2006-05-05 Maciej Katafiasz <mathrick@freedesktop.org>
16602 * ext/cairo/gsttextoverlay.c:
16603 * ext/flac/gstflacdec.c:
16604 * ext/gdk_pixbuf/pixbufscale.c:
16605 * gst/apetag/gstapedemux.c:
16606 * gst/debug/breakmydata.c:
16607 * gst/debug/testplugin.c:
16608 * gst/matroska/ebml-write.c:
16609 * gst/multipart/multipartdemux.c:
16610 * sys/osxaudio/gstosxaudiosink.c:
16611 * sys/osxaudio/gstosxaudiosrc.c:
16612 Add semicolons after GST_BOILERPLATE[_FULL] so that
16613 indent doesn't mess up following lines.
16615 2006-05-04 Tim-Philipp Müller <tim at centricular dot net>
16617 Patch by: Michal Benes <michal dot benes at xeris dot cz>
16619 * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
16620 Don't leak caps when freeing the stream context (#340623).
16622 2006-05-04 Jan Schmidt <thaytan@mad.scientist.com>
16627 === release 0.10.3 ===
16629 2006-05-04 Jan Schmidt <thaytan@mad.scientist.com>
16632 releasing 0.10.3, "Desplazado"
16634 2006-05-03 Tim-Philipp Müller <tim at centricular dot net>
16636 * gst/matroska/matroska-mux.c:
16637 (gst_matroska_mux_stream_is_vorbis_header),
16638 (gst_matroska_mux_write_data):
16639 Don't strcmp() NULL strings.
16640 Only start new clusters on video keyframes, not on any
16641 random audio buffer that doesn't have the DELTA_UNIT
16642 flag set (fixes 'make check' again).
16644 2006-05-03 Tim-Philipp Müller <tim at centricular dot net>
16646 Patch by: Mark Nauwelaerts <manauw at skynet be>
16648 * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16649 (gst_matroska_mux_stream_is_vorbis_header),
16650 (gst_matroska_mux_write_data):
16651 Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
16652 value and then dead-lock when muxing vorbis audio streams
16653 (the three vorbis header buffers carry no timestamp, and it
16654 would try to mux these after all video buffers). Fixes #340346.
16656 Improve clustering: start a new cluster also whenever we get
16659 2006-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
16661 * win32/common/config.h:
16663 add the generated file as well
16665 2006-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
16669 * win32/common/config.h.in:
16672 2006-05-03 Michael Smith <msmith@fluendo.com>
16674 * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
16675 Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
16678 2006-05-02 Stefan Kost <ensonic@users.sf.net>
16680 * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
16681 * gst/debug/negotiation.c: (gst_negotiation_update_caps):
16682 * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
16683 don't leak caps-string
16685 2006-05-02 Tim-Philipp Müller <tim at centricular dot net>
16687 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16688 (gst_id3demux_sink_activate):
16689 Let core insert default error message for TYPE_NOT_FOUND
16690 errors, it's just as good as our own and has the added
16691 bonus of being translated.
16693 2006-05-02 Tim-Philipp Müller <tim at centricular dot net>
16695 * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
16696 (gst_tag_demux_sink_event):
16697 * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
16698 (gst_id3demux_sink_event):
16699 Post an error message when we get an EOS event and were not
16700 able to find out the type of stream.
16702 * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
16703 (test_taglib_id3mux_with_tags):
16704 Decrease num-buffers to 16 per iteration again, otherwise the
16705 many memcpy()s and reallocations in the test will hammer slow
16706 CPUs completely and make the test timeout.
16708 2006-05-02 Thomas Vander Stichele <thomas at apestaart dot org>
16711 figure out where plugins-base plugins are
16712 * tests/check/Makefile.am:
16713 use plugins-base plugins, so we have typefind functions
16714 * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
16715 increase num-buffers, this makes sure the test errors out instead
16716 of timing out when no typefind functions are present
16718 2006-05-01 Thomas Vander Stichele <thomas at apestaart dot org>
16720 * docs/plugins/Makefile.am:
16721 also check .cc files for gtk-doc markup
16723 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16724 * docs/plugins/gst-plugins-good-plugins-sections.txt:
16725 * tests/check/Makefile.am:
16726 * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
16728 * ext/taglib/Makefile.am:
16729 * ext/taglib/gstid3v2mux.h:
16730 * ext/taglib/gsttaglibmux.c:
16731 * ext/taglib/gsttaglibmux.h:
16732 move taglib-based id3v2muxer to -good. Fixes #336110.
16734 2006-04-29 Tim-Philipp Müller <tim at centricular dot net>
16736 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
16737 ... and fix multichannel/WAVFORMATEX support again.
16739 2006-04-29 Stefan Kost <ensonic@users.sf.net>
16741 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16742 (gst_wavparse_class_init), (gst_wavparse_dispose),
16743 (gst_wavparse_reset), (gst_wavparse_init),
16744 (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
16745 (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
16746 (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
16747 (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
16748 (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
16749 (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16750 (gst_wavparse_stream_data), (gst_wavparse_loop),
16751 (gst_wavparse_chain), (gst_wavparse_srcpad_event),
16752 (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
16753 (gst_wavparse_change_state), (plugin_init):
16754 * gst/wavparse/gstwavparse.h:
16755 Add push (streaming) mode to wavparse (fixes #337625)
16757 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
16760 * tests/Makefile.am:
16761 add ximagesrc icles test
16763 2006-04-28 Thomas Vander Stichele <thomas at apestaart dot org>
16766 * docs/plugins/Makefile.am:
16767 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16768 * docs/plugins/gst-plugins-good-plugins-sections.txt:
16769 * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
16770 (gst_cmml_enc_push_clip):
16772 * sys/ximage/Makefile.am:
16773 * sys/ximage/gstximagesrc.c:
16774 Move ximagesrc plug-in to good after review. Fixes #336756.
16776 2006-04-28 Michael Smith <msmith@fluendo.com>
16778 * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
16779 (gst_icydemux_init), (gst_icydemux_sink_setcaps),
16780 (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
16781 (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
16782 (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
16783 (gst_icydemux_chain), (gst_icydemux_send_tag_event):
16784 * gst/icydemux/gsticydemux.h:
16785 Fix event handling: cache events when typefinding and forward later.
16787 2006-04-28 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16789 * sys/osxaudio/gstosxaudiosink.c:
16791 Register osxaudiosrc to the plugin.
16792 * sys/osxaudio/gstosxaudiosrc.c:
16793 (gst_osx_audio_src_osxelement_do_init),
16794 (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
16795 (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
16796 (gst_osx_audio_src_get_property),
16797 (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
16798 (gst_osx_audio_src_osxelement_init):
16799 * sys/osxaudio/gstosxaudiosrc.h:
16800 Port of osxaudiosrc to 0.10.
16801 * sys/osxaudio/Makefile.am:
16804 2006-04-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16806 * sys/osxaudio/gstosxringbuffer.c:
16807 * sys/osxaudio/gstosxringbuffer.h:
16808 Forgot to commit earlier, part of the OSX audio plugin port
16810 2006-04-28 Tim-Philipp Müller <tim at centricular dot net>
16812 * gst/id3demux/id3v2frames.c: (has_utf16_bom),
16813 (parse_split_strings):
16814 Recognise and skip any byte order marker (BOM) in
16817 2006-04-27 Tim-Philipp Müller <tim at centricular dot net>
16819 * docs/plugins/Makefile.am:
16820 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16821 * docs/plugins/gst-plugins-good-plugins-sections.txt:
16822 * docs/plugins/gst-plugins-good-plugins.hierarchy:
16823 * docs/plugins/inspect/plugin-avi.xml:
16824 * gst/avi/gstavidemux.c:
16825 * gst/avi/gstavimux.c:
16826 Add docs for both avidemux and avimux.
16828 2006-04-27 Tim-Philipp Müller <tim at centricular dot net>
16830 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
16832 * gst/avi/Makefile.am:
16833 * gst/avi/gstavi.c: (plugin_init):
16834 * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
16835 (gst_avi_mux_base_init), (gst_avi_mux_finalize),
16836 (gst_avi_mux_class_init), (gst_avi_mux_init),
16837 (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
16838 (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
16839 (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
16840 (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
16841 (gst_avi_mux_riff_get_avix_header),
16842 (gst_avi_mux_riff_get_video_header),
16843 (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
16844 (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
16845 (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
16846 (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
16847 (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
16848 (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
16849 (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
16850 (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
16851 (gst_avi_mux_get_property), (gst_avi_mux_set_property),
16852 (gst_avi_mux_change_state):
16853 * gst/avi/gstavimux.h:
16854 Port AVI muxer to GStreamer-0.10 (#332031).
16856 * tests/check/Makefile.am:
16857 * tests/check/elements/avimux.c:
16858 * tests/check/elements/.cvsignore:
16859 Add unit test for AVI muxer.
16861 2006-04-27 Stefan Kost <ensonic@users.sf.net>
16863 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16864 (gst_wavparse_class_init), (gst_wavparse_reset),
16865 (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16866 (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16867 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16868 (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
16869 (gst_wavparse_stream_data), (gst_wavparse_loop),
16870 (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
16871 (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
16873 * gst/wavparse/gstwavparse.h:
16874 reverted patch #337625 for the price of 1 hour sleep
16876 2006-04-26 Stefan Kost <ensonic@users.sf.net>
16878 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
16879 (gst_wavparse_class_init), (gst_wavparse_reset),
16880 (gst_wavparse_init), (gst_wavparse_create_sourcepad),
16881 (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
16882 (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
16883 (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
16884 (gst_wavparse_stream_data), (gst_wavparse_loop),
16885 (gst_wavparse_chain), (plugin_init):
16886 * gst/wavparse/gstwavparse.h:
16887 correct partial implementation of push mode
16888 (from my last commit)
16890 2006-04-26 Wim Taymans <wim@fluendo.com>
16892 * ext/esd/esdsink.c:
16893 Fix compile problem by defining ESD_MAX_WRITE_SIZE if
16896 2006-04-26 Tim-Philipp Müller <tim at centricular dot net>
16898 * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16899 (gst_au_parse_class_init), (gst_au_parse_init),
16900 (gst_au_parse_reset), (gst_au_parse_add_srcpad),
16901 (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
16902 (gst_au_parse_chain), (gst_au_parse_src_convert),
16903 (gst_au_parse_src_query), (gst_au_parse_handle_seek),
16904 (gst_au_parse_sink_event), (gst_au_parse_src_event),
16905 (gst_au_parse_change_state):
16906 * gst/auparse/gstauparse.h:
16907 Rewrite auparse to suck a little bit less: make source pad
16908 dynamic, so decodebin/playbin work with non-raw formats
16909 like alaw/mulaw; add query function for duration/position
16910 queries; check whether we have enough data before attempting
16911 to parse the header (instead of crashing when that is not the
16912 case); work around audioconvert sucking by swapping endianness
16913 to the native endianness ourselves for float formats; send
16914 initial newsegment event. Fixes #161712.
16916 2006-04-26 Zaheer Abbas Merali <zaheerabbas at merali dot org>
16918 * sys/osxaudio/Makefile.am:
16919 * sys/osxaudio/gstosxaudioelement.c:
16920 (gst_osx_audio_element_get_type),
16921 (gst_osx_audio_element_class_init):
16922 * sys/osxaudio/gstosxaudioelement.h:
16923 * sys/osxaudio/gstosxaudiosink.c:
16924 (gst_osx_audio_sink_osxelement_do_init),
16925 (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
16926 (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
16927 (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
16928 (gst_osx_audio_sink_create_ringbuffer),
16929 (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
16931 * sys/osxaudio/gstosxaudiosink.h:
16932 Port of osxaudiosink to 0.10
16934 2006-04-26 Wim Taymans <wim@fluendo.com>
16936 * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
16937 Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
16938 the size of the ringbuffer. This should fix hangs with older
16941 2006-04-26 Stefan Kost <ensonic@users.sf.net>
16943 * ext/aalib/gstaasink.c:
16944 * ext/annodex/gstcmmldec.c:
16945 * ext/annodex/gstcmmlenc.c:
16946 * ext/cairo/gsttextoverlay.c:
16947 * ext/cairo/gsttimeoverlay.c:
16948 * ext/cdio/gstcdiocddasrc.c:
16949 * ext/dv/gstdvdec.c:
16950 * ext/dv/gstdvdemux.c:
16951 * ext/esd/esdmon.c:
16952 * ext/esd/esdsink.c:
16953 * ext/flac/gstflacenc.c:
16954 * ext/flac/gstflactag.c:
16955 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
16956 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
16957 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
16958 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
16959 * ext/gdk_pixbuf/pixbufscale.c:
16960 * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
16961 * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
16962 * ext/jpeg/gstjpegdec.c:
16963 * ext/jpeg/gstjpegenc.c:
16964 * ext/jpeg/gstsmokedec.c:
16965 * ext/jpeg/gstsmokeenc.c:
16966 * ext/libcaca/gstcacasink.c:
16967 * ext/libmng/gstmngdec.c:
16968 * ext/libmng/gstmngenc.c:
16969 * ext/libpng/gstpngdec.c:
16970 * ext/libpng/gstpngenc.c:
16971 * ext/mikmod/gstmikmod.c:
16972 * ext/raw1394/gstdv1394src.c:
16973 * ext/shout2/gstshout2.c: (gst_shout2send_init):
16974 * ext/shout2/gstshout2.h:
16975 * ext/speex/gstspeexdec.c:
16976 * ext/speex/gstspeexenc.c:
16977 * gst/alpha/gstalpha.c:
16978 * gst/alpha/gstalphacolor.c:
16979 * gst/apetag/gstapedemux.c:
16980 * gst/auparse/gstauparse.c:
16981 * gst/autodetect/gstautoaudiosink.c:
16982 (gst_auto_audio_sink_base_init):
16983 * gst/autodetect/gstautovideosink.c:
16984 (gst_auto_video_sink_base_init):
16985 * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
16986 * gst/avi/gstavimux.c: (gst_avimux_base_init):
16987 * gst/cutter/gstcutter.c:
16988 * gst/debug/breakmydata.c:
16989 * gst/debug/efence.c:
16990 * gst/debug/gstnavigationtest.c:
16991 * gst/debug/gstnavseek.c:
16992 * gst/debug/negotiation.c:
16993 * gst/debug/progressreport.c:
16994 * gst/debug/testplugin.c:
16995 * gst/effectv/gstaging.c:
16996 * gst/effectv/gstdice.c:
16997 * gst/effectv/gstedge.c:
16998 * gst/effectv/gstquark.c:
16999 * gst/effectv/gstrev.c:
17000 * gst/effectv/gstshagadelic.c:
17001 * gst/effectv/gstvertigo.c:
17002 * gst/effectv/gstwarp.c:
17003 * gst/flx/gstflxdec.c:
17004 * gst/goom/gstgoom.c:
17005 * gst/icydemux/gsticydemux.c:
17006 * gst/id3demux/gstid3demux.c:
17007 * gst/interleave/deinterleave.c:
17008 * gst/interleave/interleave.c:
17009 * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17010 * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17011 * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17012 * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17013 * gst/level/gstlevel.c:
17014 * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17015 * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17016 * gst/median/gstmedian.c:
17017 * gst/monoscope/gstmonoscope.c:
17018 * gst/multipart/multipartdemux.c:
17019 * gst/multipart/multipartmux.c:
17020 * gst/oldcore/gstaggregator.c:
17021 * gst/oldcore/gstfdsink.c:
17022 * gst/oldcore/gstmd5sink.c:
17023 * gst/oldcore/gstmultifilesrc.c:
17024 * gst/oldcore/gstpipefilter.c:
17025 * gst/oldcore/gstshaper.c:
17026 * gst/oldcore/gststatistics.c:
17027 * gst/rtp/gstasteriskh263.c:
17028 * gst/rtp/gstrtpL16depay.c:
17029 * gst/rtp/gstrtpL16pay.c:
17030 * gst/rtp/gstrtpamrdepay.c:
17031 * gst/rtp/gstrtpamrpay.c:
17032 * gst/rtp/gstrtpdepay.c:
17033 * gst/rtp/gstrtpgsmpay.c:
17034 * gst/rtp/gstrtph263pay.c:
17035 * gst/rtp/gstrtph263pdepay.c:
17036 * gst/rtp/gstrtph263ppay.c:
17037 * gst/rtp/gstrtpilbcdepay.c:
17038 * gst/rtp/gstrtpmp4gpay.c:
17039 * gst/rtp/gstrtpmp4vdepay.c:
17040 * gst/rtp/gstrtpmp4vpay.c:
17041 * gst/rtp/gstrtpmpadepay.c:
17042 * gst/rtp/gstrtpmpapay.c:
17043 * gst/rtp/gstrtppcmadepay.c:
17044 * gst/rtp/gstrtppcmapay.c:
17045 * gst/rtp/gstrtppcmudepay.c:
17046 * gst/rtp/gstrtppcmupay.c:
17047 * gst/rtp/gstrtpspeexdepay.c:
17048 * gst/rtp/gstrtpspeexpay.c:
17049 * gst/rtsp/gstrtpdec.c:
17050 * gst/rtsp/gstrtspsrc.c:
17051 * gst/smpte/gstsmpte.c:
17052 * gst/udp/gstdynudpsink.c:
17053 * gst/udp/gstmultiudpsink.c:
17054 * gst/udp/gstudpsink.c:
17055 * gst/udp/gstudpsrc.c:
17056 * gst/videobox/gstvideobox.c:
17057 * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17058 * gst/videofilter/gstvideobalance.c:
17059 * gst/videofilter/gstvideoflip.c:
17060 * gst/videofilter/gstvideotemplate.c:
17061 (gst_videotemplate_base_init):
17062 * gst/videomixer/videomixer.c:
17063 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
17064 (gst_wavparse_class_init), (gst_wavparse_dispose),
17065 (gst_wavparse_reset), (gst_wavparse_init),
17066 (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
17067 (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
17068 (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
17069 (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
17070 (gst_wavparse_chain), (gst_wavparse_srcpad_event),
17071 (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
17072 (gst_wavparse_change_state):
17073 * gst/wavparse/gstwavparse.h:
17074 * sys/oss/gstossmixerelement.c:
17075 * sys/oss/gstosssink.c:
17076 * sys/oss/gstosssrc.c:
17077 * sys/osxaudio/gstosxaudioelement.c:
17078 * sys/osxaudio/gstosxaudiosink.c:
17079 * sys/osxaudio/gstosxaudiosrc.c:
17080 * sys/sunaudio/gstsunaudiomixer.c:
17081 * sys/sunaudio/gstsunaudiosink.c:
17082 Define GstElementDetails as const and also static (when defined as
17085 2006-04-25 Tim-Philipp Müller <tim at centricular dot net>
17087 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
17088 Source pad has fixed caps. If we don't set this, bad
17089 things happen when the window is resized.
17091 2006-04-25 Tim-Philipp Müller <tim at centricular dot net>
17093 * gst/matroska/Makefile.am:
17094 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17095 (gst_matroska_demux_handle_src_event):
17096 * gst/matroska/matroska-ids.c:
17097 (gst_matroska_track_init_video_context),
17098 (gst_matroska_track_init_audio_context),
17099 (gst_matroska_track_init_subtitle_context),
17100 (gst_matroska_track_init_complex_context):
17101 * gst/matroska/matroska-ids.h:
17102 Handle case where the TrackType ebml chunk does not come before the
17103 TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
17106 2006-04-25 Wim Taymans <wim@fluendo.com>
17108 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
17109 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
17110 It's codec_data, not codec_info.
17112 2006-04-25 Tim-Philipp Müller <tim at centricular dot net>
17114 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
17116 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17117 Handle codec_data for VfW compatibility codec IDs (#339451)
17119 * gst/matroska/matroska-mux.c:
17120 (gst_matroska_mux_video_pad_setcaps):
17121 Same here, handle codec_data and add additional caps we can handle
17122 now to the pad template (huffyuv, dv and h263 video) (#339451)
17124 2006-04-25 Tim-Philipp Müller <tim at centricular dot net>
17126 Patch by: Josef Zlomek <josef dot zlomek at itonis dot tv>
17128 * gst/matroska/matroska-mux.c:
17129 (gst_matroska_mux_create_buffer_header),
17130 (gst_matroska_mux_write_data):
17131 Fix timestamping of B-frames, use signed integers, do
17132 some rounding (#339678).
17134 2006-04-24 Edgard Lima <edgard.lima@indt.org.br>
17136 * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
17137 just make it compile with --disable-gst-debug.
17139 2006-04-23 Sebastien Moutte <sebastien@moutte.net>
17141 * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17142 Fix a bad conversion using gst_guint64_to_gdouble.
17143 fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be
17144 replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
17145 difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) -
17146 gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my
17149 2006-04-21 Sebastien Moutte <sebastien@moutte.net>
17151 * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
17152 Use gst_guint64_to_gdouble for conversions
17153 * win32/vs6/gst_plugins_good.dsw:
17154 * win32/vs6/libgsticydemux.dsp:
17155 Add a project file for icydemux
17157 2006-04-21 Wim Taymans <wim@fluendo.com>
17159 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
17161 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
17162 (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
17163 When splitting audio chunks, the block alignment is not taken in
17164 consideration, so the smaller chunks could be of size which is
17165 not a multiple of the block alignment. Fixes #336904
17167 2006-04-21 Wim Taymans <wim@fluendo.com>
17169 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
17170 Use scale functions
17172 2006-04-21 Tim-Philipp Müller <tim at centricular dot net>
17174 * ext/dv/gstdv.c: (plugin_init):
17177 2006-04-21 Tim-Philipp Müller <tim at centricular dot net>
17179 * gst/debug/progressreport.c: (gst_progress_report_finalize),
17180 (gst_progress_report_class_init), (gst_progress_report_init),
17181 (gst_progress_report_do_query), (gst_progress_report_report),
17182 (gst_progress_report_set_property),
17183 (gst_progress_report_get_property):
17184 Add 'format' property to force querying to a particular format.
17186 2006-04-21 Andy Wingo <wingo@pobox.com>
17188 * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
17189 best, on big endian systems. Drop its rank in that case. OTOH on
17190 x86 it's quite fine. See changes from today in gst-ffmpeg as well.
17192 2006-04-21 Michael Smith <msmith@fluendo.com>
17195 * gst/icydemux/Makefile.am:
17196 * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
17197 (gst_icydemux_base_init), (gst_icydemux_class_init),
17198 (gst_icydemux_reset), (gst_icydemux_init),
17199 (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
17200 (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
17201 (unicodify), (gst_icydemux_unicodify),
17202 (gst_icydemux_parse_and_send_tags),
17203 (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
17204 (gst_icydemux_chain), (gst_icydemux_change_state),
17205 (gst_icydemux_send_tag_event), (plugin_init):
17206 * gst/icydemux/gsticydemux.h:
17207 * tests/check/Makefile.am:
17208 * tests/check/elements/icydemux.c: (typefind_succeed),
17209 (plugin_init), (icydemux_found_pad), (create_icydemux),
17210 (cleanup_icydemux), (push_data), (GST_START_TEST),
17211 (icydemux_suite), (main):
17212 Add icydemux, and tests.
17214 2006-04-20 Tim-Philipp Müller <tim at centricular dot net>
17216 * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
17217 Post SEGMENT_DONE message in TIME format.
17219 2006-04-20 Tim-Philipp Müller <tim at centricular dot net>
17221 Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
17223 * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
17224 (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
17225 Fix index creation when we have to scan the file to create
17226 an index. There may be other types of RIFF 'LIST' chunks than
17227 'movi' and we need to skip them properly as well or we'll end up
17228 reading garbage (#336889). Some other cosmetic changes.
17230 2006-04-20 Tim-Philipp Müller <tim at centricular dot net>
17232 * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
17233 (gst_flac_dec_handle_seek_event):
17234 Add support for segment seeks (fixes #338290). Also demote
17235 some recurring debug message from DEBUG to LOG level.
17237 2006-04-20 Tim-Philipp Müller <tim at centricular dot net>
17239 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
17240 (gst_matroskademux_do_index_seek),
17241 (gst_matroska_demux_handle_seek_event),
17242 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17243 * gst/matroska/matroska-ids.h:
17244 Set DISCONT flag on first buffer after a discontinuity.
17245 Fix newsegment events sent when seeking and honour KEY_UNIT
17246 seek flag. Create pad with bogus caps if we don't recognise
17247 the stream codec id.
17249 * gst/matroska/matroska-demux.h:
17250 Fix GObject macros.
17252 2006-04-20 Tim-Philipp Müller <tim at centricular dot net>
17254 Patch by: Mark Nauwelaerts <manauw at skynet dot be>
17256 * gst/matroska/matroska-demux.c:
17257 (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
17258 Handle end of segment properly when set; don't dead-lock when
17259 posting start of segment message when doing a segment seek.
17262 2006-04-20 Tim-Philipp Müller <tim at centricular dot net>
17264 * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
17265 (gst_matroska_demux_plugin_init):
17266 Make mpeg2 aac audio work: create artificial private codec data
17267 chunk which faad2 seems to require, just as we do for mpeg4 aac.
17268 Also call gst_riff_init(). Partially fixes #338767.
17270 2006-04-19 Tim-Philipp Müller <tim at centricular dot net>
17272 * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
17273 (gst_wavenc_class_init), (gst_wavenc_init),
17274 (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
17275 (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
17276 (gst_wavenc_chain), (gst_wavenc_change_state):
17277 * gst/wavenc/gstwavenc.h:
17278 Set caps on first outgoing buffer, so that it doesn't error out
17279 immediately with a non-negotiated error (#338716). Rewrite and
17280 clean up a bit; fix setcaps function to parse things properly;
17281 fix sink caps (8bit audio is unsigned and doesn't have depth);
17282 use boilerplate macros; remove unused properties stuff.
17284 2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
17286 * ext/gdk_pixbuf/gstgdkpixbuf.c:
17287 Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
17288 handle MJPEG streams and might be autoplugged for those if the
17289 user doesn't have jpegdec installed (resulting in a cryptic error
17290 message about huffman tables). Better to disable JPEG decoding here
17291 and let the user figure out that she needs to install jpegdec.
17293 2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
17295 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17296 (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17297 (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
17298 * ext/gdk_pixbuf/gstgdkpixbuf.h:
17299 Make work with packetised/framed input (e.g. png-in-quicktime). Use
17300 GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
17301 GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
17302 debug messages. Fix boilerplate macros.
17304 2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
17306 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17307 (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
17308 No need to special-case for Gdk-2.0 any longer, we require
17309 Gdk 2.2 or newer; minor clean-ups.
17311 2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
17313 * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
17314 (gst_shout2send_class_init), (gst_shout2send_init),
17315 (set_shout_metadata), (gst_shout2send_set_metadata),
17316 (gst_shout2send_event), (gst_shout2send_start),
17317 (gst_shout2send_connect), (gst_shout2send_stop),
17318 (gst_shout2send_render), (gst_shout2send_set_property),
17319 (gst_shout2send_get_property), (gst_shout2send_setcaps),
17321 * ext/shout2/gstshout2.h:
17323 Rewrite a bit: use GstBaseSink::start and stop instead of a state
17324 change function; use GST_ELEMENT_ERROR for error reporting, not
17325 g_error() or GST_ERROR(); don't unref caps in setcaps function,
17326 will cause crashes or assertion failures; remove (unused) "sync"
17327 property, basesink already has such a property; misc. other
17328 minor fixes and cleanups.
17330 2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
17332 * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
17333 * ext/esd/gstesd.c: (plugin_init):
17335 Add translatable error message for when we cannot
17336 connect to the sound server, as "Cannot open resource
17337 for writing" isn't really an acceptable message to show
17338 to the user in this case.
17340 2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
17342 * sys/oss/gst-i18n-plugin.h:
17343 Remove bogus file that doesn't belong here.
17345 2006-04-17 Tim-Philipp Müller <tim at centricular dot net>
17347 Patch by: Philippe Valembois
17349 * ext/shout2/gstshout2.c: (gst_shout2send_init),
17350 (gst_shout2send_set_metadata), (gst_shout2send_event),
17351 (gst_shout2send_render), (gst_shout2send_change_state):
17352 * ext/shout2/gstshout2.h:
17353 Handle tags being received before the connection to
17354 the server is established properly (see #338636).
17356 2006-04-17 Tim-Philipp Müller <tim at centricular dot net>
17358 * ext/shout2/gstshout2.c: (gst_shout2send_render):
17359 Don't crash in case the connection to the server fails:
17360 don't set pointer to NULL by assigning FALSE; error out
17361 properly by using GST_ELEMENT_ERROR and returning
17362 GST_FLOW_ERROR (fixes #338636). Lastly, free connection
17363 before resetting the pointer.
17365 2006-04-17 Jan Schmidt <thaytan@mad.scientist.com>
17367 * gst/id3demux/id3tags.c:
17368 Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
17371 2006-04-12 Wim Taymans <wim@fluendo.com>
17373 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
17374 (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
17375 (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
17376 (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
17377 (gst_gdk_pixbuf_chain):
17379 Added RGBA as a possible output format.
17380 Correctly free the supported mimetypes.
17381 deprecate silent arg, it's not used.
17382 Return result from _alloc_buffer to peer.
17384 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
17386 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
17387 Don't leak memory allocated by gst_buffer_new_and_alloc() by
17388 overwriting GST_BUFFER_MALLOCDATA.
17390 2006-04-11 Tim-Philipp Müller <tim at centricular dot net>
17392 * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17393 (user_endrow_callback), (user_end_callback),
17394 (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
17395 (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
17396 (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
17397 * ext/libpng/gstpngdec.h:
17398 Handle more than one frame if the content is framed,
17399 like with png-in-quicktime (#331917).
17401 2006-04-10 Thomas Vander Stichele <thomas at apestaart dot org>
17403 * sys/oss/Makefile.am:
17404 * sys/oss/common.h:
17405 * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
17406 (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
17407 * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
17408 (gst_oss_src_unprepare):
17409 - the user-visible error strings were in the wrong category
17410 - and the messages were not marked for translation
17411 - which is actually a good thing, because they were exactly
17412 the kind of message you would never want anyone to see
17413 - the macros were using variables that didn't exist in the macro
17415 - and they were obviously copied from each other and then modified
17416 - so a common header makes sense
17418 2006-04-10 Tim-Philipp Müller <tim at centricular dot net>
17420 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17421 Don't try to modify read-only data.
17423 * gst/matroska/matroska-demux.c:
17424 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
17425 Fix comment (won't crash any longer now).
17427 2006-04-10 Michael Smith <msmith@fluendo.com>
17429 * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
17430 Use copies of header buffers for caps to avoid circular refcounting
17431 problems (as in theoradec, vorbisdec).
17433 * tests/check/elements/cmmldec.c: (GST_START_TEST):
17434 Fix a typo in test that meant it was testing the wrong thing.
17436 * tests/check/elements/cmmlenc.c: (check_headers):
17437 Fix refcount checks now that we use buffer-copies for caps.
17439 2006-04-10 Tim-Philipp Müller <tim at centricular dot net>
17441 * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
17442 (gst_matroska_demux_handle_seek_event),
17443 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
17444 (gst_matroska_demux_subtitle_caps),
17445 (gst_matroska_demux_plugin_init):
17446 Use static pad templates with ANY caps for audio and video
17447 source pads and get rid of a lot of unnecessary (and partially
17448 broken) code for the template caps. Clean up caps finding
17449 functions. Fixes playback of audio files/streams that do not
17450 contain the sample rate and/or number of channels in the audio
17451 context (happens a lot with vorbis/mp3 .mka files it seems).
17453 Also add myself to copyright holders.
17455 2006-04-10 Michael Smith <msmith@fluendo.com>
17457 * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
17458 Use g_list_delete_link () instead of g_list_remove_link () so that
17459 we free the link as well as the contained data.
17461 2006-04-10 Wim Taymans <wim@fluendo.com>
17463 Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
17465 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
17466 (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
17467 (gst_avi_demux_stream_header):
17468 Fix some crashers with empty chunks. (Fixes #337749)
17470 2006-04-09 Sebastien Moutte <sebastien@moutte.net>
17472 * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
17473 use G_GINT64_CONSTANT for INT64 constants
17474 * gst/videofilter/gstvideobalance.c:
17475 define rint for WIN32 #define rint(x) (floor((x)+0.5))
17476 * win32/vs6/libgstavi.dsp:
17477 add missing libraries for the link and remove avimux.c from
17478 the project as it isn't ported to 0.10 yet
17480 2006-04-09 Tim-Philipp Müller <tim at centricular dot net>
17482 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17483 Even better would be if we actually did the right thing
17484 here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
17486 2006-04-08 Tim-Philipp Müller <tim at centricular dot net>
17488 * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
17489 Can't just replace 1LL with 1L here just because MSVC doesn't
17490 support it, as it might lead to incorrect results when doing the
17491 bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
17492 force a 64-bit constant in a way that all compilers are happy with.
17494 2006-04-08 Stefan Kost <ensonic@users.sf.net>
17496 * ext/aalib/gstaasink.c: (gst_aasink_class_init):
17497 * ext/esd/esdsink.c: (gst_esdsink_class_init):
17498 * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
17499 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
17500 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
17501 * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
17502 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
17503 * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
17504 * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
17505 * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
17506 * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
17507 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
17508 * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
17509 * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
17510 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
17511 * gst/alpha/gstalpha.c: (gst_alpha_class_init):
17512 * gst/avi/gstavimux.c: (gst_avimux_class_init):
17513 * gst/debug/efence.c: (gst_efence_class_init):
17514 * gst/debug/negotiation.c: (gst_negotiation_class_init):
17515 * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
17516 * gst/goom/gstgoom.c: (gst_goom_class_init):
17517 * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
17518 * gst/interleave/deinterleave.c: (deinterleave_class_init):
17519 * gst/interleave/interleave.c: (interleave_class_init):
17520 * gst/law/alaw-decode.c: (gst_alawdec_class_init):
17521 * gst/law/alaw-encode.c: (gst_alawenc_class_init):
17522 * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
17523 * gst/median/gstmedian.c: (gst_median_class_init):
17524 * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
17525 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
17526 * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
17527 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
17528 * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
17529 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
17530 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
17531 * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
17532 * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
17533 * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
17534 * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
17535 * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
17536 * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
17537 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
17538 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
17539 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
17540 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
17541 * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
17542 * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
17543 * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
17544 * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
17545 * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
17546 * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
17547 * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
17548 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
17549 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
17550 * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
17551 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
17552 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
17553 * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
17554 * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
17555 * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
17556 * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
17557 * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
17558 * sys/osxaudio/gstosxaudioelement.c:
17559 (gst_osxaudioelement_class_init):
17560 * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
17561 * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
17562 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
17563 Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17565 2006-04-08 Stefan Kost <ensonic@users.sf.net>
17567 * ext/mikmod/gstmikmod.h:
17568 * gst/level/gstlevel.h:
17569 Fix more broken GObject macros
17571 2006-04-08 Stefan Kost <ensonic@users.sf.net>
17573 * ext/annodex/gstcmmldec.h:
17574 * ext/annodex/gstcmmlenc.h:
17575 * ext/annodex/gstcmmltag.h:
17576 * ext/cairo/gsttextoverlay.h:
17577 * ext/ladspa/gstsignalprocessor.h:
17578 * gst/matroska/ebml-read.h:
17579 * gst/matroska/ebml-write.h:
17580 * sys/osxaudio/gstosxaudioelement.h:
17581 Fix broken GObject macros
17583 2006-04-08 Tim-Philipp Müller <tim at centricular dot net>
17585 * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17586 Don't try to seek beyond the end of the file (would
17587 occasionally display error dialogs in totem when seeking
17588 to the end) (#335869). Will still throw an error though
17589 if the file is truncated and the total_samples value in
17590 the stream header is wrong.
17592 2006-04-07 Tim-Philipp Müller <tim at centricular dot net>
17594 * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
17595 (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
17596 (gst_flac_dec_metadata_callback):
17597 * ext/flac/gstflacdec.h:
17598 If the stream header doesn't contain the total number of samples,
17599 search for the last flac frame at the end of the file and calculate
17600 the total duration from that frame's offset (fixes #337609).
17602 2006-04-07 Edward Hervey <edward@fluendo.com>
17604 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
17605 Don't unref the GstPadTemplate returned by
17606 gst_element_class_get_pad_template().
17608 2006-04-06 Tim-Philipp Müller <tim at centricular dot net>
17610 Patch by: Brian Cameron <brian dot cameron at sun dot com>
17612 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
17613 (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
17614 * sys/sunaudio/gstsunaudiosink.h:
17615 Use spec->segsize and spec->segtotal in the prepare function
17616 to initialise the ring buffer instead of using the buffer-time
17617 property (#337421).
17619 2006-04-06 Tim-Philipp Müller <tim at centricular dot net>
17622 Bump core requirements to CVS for gst_pad_query_peer_duration()
17623 which is used by speexdec.
17625 2006-04-05 Tim-Philipp Müller <tim at centricular dot net>
17627 * ext/speex/gstspeex.c: (plugin_init):
17628 * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
17629 (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
17630 (speex_get_sink_query_types), (speex_dec_sink_query),
17631 (speex_get_src_query_types), (speex_dec_src_query),
17632 (speex_dec_src_event), (speex_dec_sink_event),
17633 (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
17634 (speex_dec_chain_parse_data), (speex_dec_chain),
17635 (gst_speex_dec_get_property), (gst_speex_dec_set_property),
17636 (speex_dec_change_state):
17637 * ext/speex/gstspeexdec.h:
17638 Fix seeking and duration queries (#337033); clean up and
17641 2006-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
17643 * ext/raw1394/gstdv1394src.c:
17644 distinguish between device not found and could not open for
17647 2006-04-03 Thomas Vander Stichele <thomas at apestaart dot org>
17651 * pkgconfig/.cvsignore:
17652 * pkgconfig/Makefile.am:
17653 * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
17654 add a .pc file so other modules can use good plugins in tests
17656 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
17659 clean up, use AS_VERSION and AS_NANO
17660 * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
17661 use PACKAGE_VERSION define
17678 2006-03-31 Sebastien Moutte <sebastien@moutte.net>
17680 * ext\jpeg\smokecodec.c:
17681 use of GST_DEBUG instead of DEBUG(a...) for WIN32
17682 * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
17683 move first instruction after all variables declarations
17684 * gst\alpha\gstalpha.c:
17685 * gst\effectv\gstshagadelic.c:
17686 * gst\smpte\paint.c:
17687 * gst\videofilter\gstvideobalance.c:
17688 define M_PI if it's not defined (it's not defined on WIN32)
17689 * gst\cutter\gstcutter.c: (gst_cutter_chain):
17690 * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
17691 * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
17692 * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info),
17693 (gst_matroska_demux_video_caps):
17694 * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
17695 * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
17696 use gst_guint64_to_gdouble for conversions
17697 * gst\goom\filters.c: (setPixelRGB_):
17698 fix a debug which was using undefined variable
17699 * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
17700 * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
17701 replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
17703 add vs6 projects files for most of plugins-good
17705 2006-03-30 j^ <j@bootlab.org>
17707 * ext/aalib/gstaasink.c:
17708 * ext/annodex/gstcmmldec.c:
17709 * ext/annodex/gstcmmlenc.c:
17710 * ext/cairo/gsttextoverlay.c:
17711 * ext/cairo/gsttimeoverlay.c:
17712 * ext/cdio/gstcdiocddasrc.c:
17713 * ext/dv/gstdvdec.c:
17714 * ext/esd/esdmon.c:
17715 * ext/esd/esdsink.c:
17716 * ext/flac/gstflacdec.c:
17717 * ext/flac/gstflacenc.c:
17718 * ext/flac/gstflactag.c:
17719 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
17720 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
17721 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
17722 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
17723 * ext/gdk_pixbuf/gstgdkpixbuf.c:
17724 * ext/gdk_pixbuf/pixbufscale.c:
17725 * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
17726 * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
17727 * ext/jpeg/gstjpegdec.c:
17728 * ext/jpeg/gstjpegenc.c:
17729 * ext/jpeg/gstsmokedec.c:
17730 * ext/jpeg/gstsmokeenc.c:
17731 * ext/libcaca/gstcacasink.c:
17732 * ext/libmng/gstmngdec.c:
17733 * ext/libmng/gstmngenc.c:
17734 * ext/libpng/gstpngdec.c:
17735 * ext/libpng/gstpngenc.c:
17736 * ext/mikmod/gstmikmod.c:
17737 * ext/raw1394/gstdv1394src.c:
17738 * ext/shout2/gstshout2.c:
17739 * ext/speex/gstspeexdec.c:
17740 * ext/speex/gstspeexenc.c:
17741 * gst/alpha/gstalpha.c:
17742 * gst/alpha/gstalphacolor.c:
17743 * gst/auparse/gstauparse.c:
17744 * gst/autodetect/gstautoaudiosink.c:
17745 (gst_auto_audio_sink_base_init):
17746 * gst/autodetect/gstautovideosink.c:
17747 (gst_auto_video_sink_base_init):
17748 * gst/avi/gstavimux.c: (gst_avimux_base_init):
17749 * gst/cutter/gstcutter.c:
17750 * gst/debug/breakmydata.c:
17751 * gst/debug/efence.c:
17752 * gst/debug/gstnavigationtest.c:
17753 * gst/debug/negotiation.c:
17754 * gst/debug/progressreport.c:
17755 * gst/debug/testplugin.c:
17756 * gst/effectv/gstaging.c:
17757 * gst/effectv/gstdice.c:
17758 * gst/effectv/gstedge.c:
17759 * gst/effectv/gstquark.c:
17760 * gst/effectv/gstrev.c:
17761 * gst/effectv/gstvertigo.c:
17762 * gst/effectv/gstwarp.c:
17763 * gst/flx/gstflxdec.c:
17764 * gst/goom/gstgoom.c:
17765 * gst/interleave/deinterleave.c:
17766 * gst/interleave/interleave.c:
17767 * gst/law/alaw-decode.c: (gst_alawdec_base_init):
17768 * gst/law/alaw-encode.c: (gst_alawenc_base_init):
17769 * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
17770 * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
17771 * gst/level/gstlevel.c:
17772 * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
17773 * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
17774 * gst/median/gstmedian.c:
17775 * gst/monoscope/gstmonoscope.c:
17776 * gst/multipart/multipartdemux.c:
17777 * gst/multipart/multipartmux.c:
17778 * gst/oldcore/gstmd5sink.c:
17779 * gst/oldcore/gstmultifilesrc.c:
17780 * gst/oldcore/gstpipefilter.c:
17781 * gst/oldcore/gstshaper.c:
17782 * gst/oldcore/gststatistics.c:
17783 * gst/rtp/gstasteriskh263.c:
17784 * gst/rtp/gstrtpL16depay.c:
17785 * gst/rtp/gstrtpL16pay.c:
17786 * gst/rtp/gstrtpamrdepay.c:
17787 * gst/rtp/gstrtpamrpay.c:
17788 * gst/rtp/gstrtpdepay.c:
17789 * gst/rtp/gstrtpgsmpay.c:
17790 * gst/rtp/gstrtph263pay.c:
17791 * gst/rtp/gstrtph263pdepay.c:
17792 * gst/rtp/gstrtph263ppay.c:
17793 * gst/rtp/gstrtpmp4gpay.c:
17794 * gst/rtp/gstrtpmp4vdepay.c:
17795 * gst/rtp/gstrtpmp4vpay.c:
17796 * gst/rtp/gstrtpmpadepay.c:
17797 * gst/rtp/gstrtpmpapay.c:
17798 * gst/rtp/gstrtppcmadepay.c:
17799 * gst/rtp/gstrtppcmapay.c:
17800 * gst/rtp/gstrtppcmudepay.c:
17801 * gst/rtp/gstrtppcmupay.c:
17802 * gst/rtp/gstrtpspeexdepay.c:
17803 * gst/rtp/gstrtpspeexpay.c:
17804 * gst/rtsp/gstrtpdec.c:
17805 * gst/smpte/gstsmpte.c:
17806 * gst/videobox/gstvideobox.c:
17807 * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
17808 * gst/videofilter/gstvideobalance.c:
17809 * gst/videofilter/gstvideoflip.c:
17810 * gst/videofilter/gstvideotemplate.c:
17811 (gst_videotemplate_base_init):
17812 * gst/videomixer/videomixer.c:
17813 * gst/wavenc/gstwavenc.c:
17814 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
17815 better/unified long descriptions
17817 Some cleanups to auparse, don't send multiple newsegments.
17819 2006-03-29 Wim Taymans <wim@fluendo.com>
17821 From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
17823 * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
17824 (gst_dvdemux_reset), (gst_dvdemux_src_convert),
17825 (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
17826 (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
17827 * ext/dv/gstdvdemux.h:
17828 Seek in READY patch. Only works for pull based mode.
17831 2006-03-27 Tim-Philipp Müller <tim at centricular dot net>
17833 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
17834 (gst_gdk_pixbuf_event):
17835 Fix two crashers: don't unref the same caps twice, and
17836 set pixbuf loader to NULL after freeing it.
17838 2006-03-27 Wim Taymans <wim@fluendo.com>
17840 * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
17841 (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
17842 (gst_speexenc_chain):
17843 * ext/speex/gstspeexenc.h:
17844 Don't leak adapter.
17845 A push *always* takes ownership of the buffer, even on
17849 2006-03-26 Tim-Philipp Müller <tim at centricular dot net>
17851 * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
17852 Create source pad without leaking.
17854 2006-03-24 Wim Taymans <wim@fluendo.com>
17856 * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
17857 * ext/flac/gstflacdec.h:
17858 * ext/flac/gstflacenc.h:
17860 Fix deadly lock order error in seeking code, STREAM_LOCK
17861 cannot be taken within LOCK and the streaming variables are
17862 protected with the STREAM_LOCK anyway.
17864 2006-03-24 Wim Taymans <wim@fluendo.com>
17866 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
17867 (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
17868 (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
17869 this patch combines the global init_frames with the stream
17870 init_frames. Rationale being that the global delay should
17871 be subtracted from any stream delay.
17874 2006-03-24 Stefan Kost <ensonic@users.sf.net>
17876 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
17877 * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
17878 * gst/smpte/gstsmpte.c: (gst_smpte_init):
17879 * gst/videomixer/videomixer.c: (gst_videomixer_init):
17880 use DEBUG_FUNCPTR for collectpads
17882 2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
17884 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
17885 Don't crash when encoding images where the number of rows isn't
17886 a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
17888 2006-03-23 Tim-Philipp Müller <tim at centricular dot net>
17890 * ext/speex/gstspeexdec.c: (speex_dec_change_state):
17891 * gst/interleave/deinterleave.c: (deinterleave_change_state):
17892 * gst/interleave/interleave.c: (interleave_change_state):
17893 * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
17894 More state change function fixes.
17896 2006-03-23 Wim Taymans <wim@fluendo.com>
17898 * ext/esd/esdsink.c: (gst_esdsink_class_init),
17899 (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
17900 (gst_esdsink_prepare), (gst_esdsink_unprepare),
17901 (gst_esdsink_delay), (gst_esdsink_reset):
17902 * ext/esd/esdsink.h:
17903 Fix esd choppy playback by configuring audiosink
17904 correctly. Fixes #325191
17906 2006-03-23 Tim-Philipp Müller <tim at centricular dot net>
17908 * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
17909 Make state change function thread-safe.
17911 2006-03-23 Tim-Philipp Müller <tim at centricular dot net>
17913 * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
17914 (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
17915 Don't try to read beyond the end of the file just because
17916 the header claims a bigger size (like with truncated files).
17918 2006-03-23 Tim-Philipp Müller <tim at centricular dot net>
17920 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
17921 (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
17922 (gst_wavparse_stream_data), (gst_wavparse_loop):
17923 * gst/wavparse/gstwavparse.h:
17924 Delay source pad creation until we have the first chunk of
17925 media data, so the we can examine the data and adjust the
17926 caps accordingly if required. This makes playback of .wav
17927 files with DTS-declared-as-PCM content work (#313266).
17929 2006-03-22 Jan Schmidt <thaytan@mad.scientist.com>
17931 * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
17932 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
17933 Don't attempt typefinding on too-short buffers that have been
17934 completely trimmed away. (Fixes #330239)
17936 * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
17937 Improve the debug output
17939 2006-03-21 Wim Taymans <wim@fluendo.com>
17941 * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
17942 (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
17943 (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
17944 (gst_esdsink_set_property), (gst_esdsink_get_property):
17946 Reset fd to -1 when we close them.
17948 2006-03-21 Wim Taymans <wim@fluendo.com>
17950 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
17951 the OPTIONS request result is optional so don't
17954 2006-03-21 Edward Hervey <edward@fluendo.com>
17956 * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
17957 * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
17958 * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17959 (gst_wavparse_stream_headers), (gst_wavparse_send_event),
17960 (gst_wavparse_change_state):
17961 gcc 4.1 unreferenced pointer fixes.
17963 2006-03-21 Tim-Philipp Müller <tim at centricular dot net>
17965 Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
17967 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
17968 Fix block alignment calculation. Alignment should be done before
17969 adding the byte offset where the data starts (#335231).
17971 2006-03-20 Jan Schmidt <thaytan@mad.scientist.com>
17973 * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
17974 Ensure that we set correct caps on buffers that are transferred
17975 direct from the input.
17977 2006-03-20 Jan Schmidt <thaytan@mad.scientist.com>
17979 * gst/goom/filters.c: (zoomFilterDestroy):
17980 * gst/goom/goom_core.c: (goom_close):
17981 Free filter data when cleaning up. (Fixes: #334995)
17983 2006-03-17 Tim-Philipp Müller <tim at centricular dot net>
17986 Don't compile udp and rtsp plugins on win32 (mingw) or other
17987 systems that don't have <sys/socket.h> for some reason (#316203).
17989 2006-03-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
17991 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
17992 (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
17993 * ext/raw1394/gstdv1394src.h:
17994 Change bus reset handler so it reports useful information such as
17995 whether the device being used connected or disconnected
17997 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
17999 * gst/id3demux/id3v2frames.c:
18000 (parse_relative_volume_adjustment_two):
18001 We only care about gain and peak data for the master volume.
18003 2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
18005 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18006 (parse_id_string), (parse_unique_file_identifier),
18007 (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
18008 Read replay gain tags (#323721).
18010 2006-03-15 Tim-Philipp Müller <tim at centricular dot net>
18013 Bump requirements to gst-plugins-base CVS because
18014 of buggy gst_tag_from_id3_user_tag() in 0.10.5.
18016 2006-03-15 Philippe Kalaf <philippe.kalaf at collabora.co.uk>
18018 * rtp/gst/gstrtppcmadepay.c:
18019 Fixed one of the caps in the code from mulaw to alaw.
18021 2006-03-15 Jan Schmidt <thaytan@mad.scientist.com>
18023 * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
18024 Ensure that we set caps on the buffers we pass.
18026 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
18027 (gst_id3demux_sink_activate):
18028 Ensure that we set caps on the buffers we pass.
18030 Use STREAM, TYPE_NOT_FOUND as the error class when
18033 2006-03-15 Edward Hervey <edward@fluendo.com>
18035 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
18036 * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
18037 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
18038 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
18039 (gst_jpeg_dec_setcaps):
18040 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
18041 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
18042 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
18043 * ext/libmng/gstmngdec.c: (gst_mngdec_init),
18044 (gst_mngdec_src_getcaps):
18045 * ext/libpng/gstpngdec.c: (gst_pngdec_init),
18046 (gst_pngdec_caps_create_and_set):
18047 * ext/libpng/gstpngenc.c: (gst_pngenc_init):
18048 * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
18049 * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
18050 * gst/alpha/gstalpha.c: (gst_alpha_init):
18051 * gst/auparse/gstauparse.c: (gst_au_parse_init):
18052 * gst/avi/gstavidemux.c: (gst_avi_demux_init),
18053 (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
18054 * gst/cutter/gstcutter.c: (gst_cutter_init):
18055 * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
18056 (gst_efence_checkgetrange):
18057 * gst/debug/negotiation.c: (gst_negotiation_init):
18058 * gst/flx/gstflxdec.c: (gst_flxdec_init):
18059 * gst/goom/gstgoom.c: (gst_goom_init):
18060 * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
18061 * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
18062 * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
18063 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
18064 * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
18065 * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
18066 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
18067 * gst/smpte/gstsmpte.c: (gst_smpte_init):
18068 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
18069 (gst_wavparse_create_sourcepad):
18070 Fix memleak with gst_static_pad_template_get().
18071 This uses gst_pad_new_from_static_template() instead.
18074 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
18077 Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
18080 * gst/id3demux/gstid3demux.c: (plugin_init):
18081 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
18082 (parse_user_text_identification_frame),
18083 (parse_unique_file_identifier):
18084 Add support for UFID and TXXX frames and extract musicbrainz tags.
18086 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
18088 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18089 Catch short reads, like they might happen with truncated
18090 files (see #305279); remove unnecessary indentation.
18092 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
18094 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
18095 Fix DIB image inversion for pictures with a
18096 depth != 8 (#305279).
18098 2006-03-14 Tim-Philipp Müller <tim at centricular dot net>
18100 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
18101 (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
18102 * ext/jpeg/gstjpegdec.h:
18103 Fix durations on outgoing buffers after seeking
18104 in MJPEG files (#334083); some minor clean-ups.
18106 2006-03-13 Wim Taymans <wim@fluendo.com>
18108 * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
18109 (gst_wavparse_change_state):
18110 Implement seek in READY (re-fixes #327658)
18112 2006-03-13 Wim Taymans <wim@fluendo.com>
18114 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
18115 * ext/esd/esdmon.c: (gst_esdmon_get):
18116 * ext/flac/gstflactag.c: (gst_flac_tag_chain):
18117 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
18118 (gst_gdk_pixbuf_sink_getcaps):
18119 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
18120 (gst_jpegenc_setcaps):
18121 * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
18122 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
18123 (gst_smokeenc_setcaps):
18124 * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
18125 (gst_mngdec_src_getcaps):
18126 * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
18127 (gst_mngenc_chain):
18128 * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
18129 * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
18130 * ext/speex/gstspeexdec.c: (speex_dec_convert),
18131 (speex_dec_src_event), (speex_dec_chain):
18132 * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
18133 (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
18134 * gst/debug/negotiation.c: (gst_negotiation_getcaps),
18135 (gst_negotiation_pad_link), (gst_negotiation_chain):
18136 * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18137 (gst_flxdec_chain):
18138 * gst/interleave/deinterleave.c: (deinterleave_sink_link),
18139 (deinterleave_chain):
18140 * gst/law/mulaw-encode.c: (mulawenc_setcaps):
18141 * gst/median/gstmedian.c: (gst_median_link):
18142 * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
18143 (gst_monoscope_chain):
18144 * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
18145 * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
18146 * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
18147 * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
18148 close #333784 unref the result of gst_pad_get_parent()
18149 by: Christophe Fergeau.
18151 2006-03-09 Wim Taymans <wim@fluendo.com>
18153 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
18154 (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
18155 Handle events in push mode better, can now do non-flushing
18156 seeks in push mode as well.
18158 2006-03-07 Wim Taymans <wim@fluendo.com>
18160 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
18161 Applied patch from Kai Vehmanen, fixes #333624.
18163 2006-03-06 Julien MOUTTE <julien@moutte.net>
18165 * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
18166 Implement paletted and grayscale png files handling.
18169 2006-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
18171 * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
18172 (gst_speexenc_chain):
18173 fix a tag list assert
18174 follow gst-plugins-base/ext/ogg/README; set OFFSET
18175 and OFFSET_END. Muxes correctly with gst-plugins-base
18178 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
18180 * gst/id3demux/Makefile.am:
18181 * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
18182 (gst_id3demux_chain), (gst_id3demux_sink_activate):
18183 Use new typefind helper functions here as well, and
18184 do typefinding in pull-mode if upstream supports that.
18186 2006-03-04 Tim-Philipp Müller <tim at centricular dot net>
18188 * sys/sunaudio/gstsunaudiomixerctrl.c:
18189 (gst_sunaudiomixer_ctrl_get_volume),
18190 (gst_sunaudiomixer_ctrl_set_volume):
18191 * sys/sunaudio/gstsunaudiomixertrack.c:
18192 (gst_sunaudiomixer_track_new):
18193 Remove unused variables, breaks build from CVS
18194 with -Werror (#333392, patch by: Benjamin Pineau)
18196 2006-03-03 Wim Taymans <wim@fluendo.com>
18198 * docs/plugins/Makefile.am:
18199 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18200 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18201 Added wavparse docs.
18203 * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
18204 (gst_wavparse_reset), (gst_wavparse_init),
18205 (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
18206 (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
18207 (gst_wavparse_stream_headers), (gst_wavparse_send_event),
18208 (gst_wavparse_stream_data), (gst_wavparse_loop),
18209 (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
18210 (gst_wavparse_change_state):
18211 * gst/wavparse/gstwavparse.h:
18212 Implement seek in READY (fixes #327658)
18213 Added docs and did some cleanups.
18215 2006-03-03 Tim-Philipp Müller <tim at centricular dot net>
18217 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
18218 (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
18219 (gst_avi_demux_calculate_durations_from_index),
18220 (gst_avi_demux_stream_header):
18221 * gst/avi/gstavidemux.h:
18222 If we have an index, use a duration based on the index instead
18223 of blindly trusting the information in the stream headers
18226 2006-03-03 Wim Taymans <wim@fluendo.com>
18228 * docs/plugins/Makefile.am:
18229 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18230 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18231 * docs/plugins/gst-plugins-good-plugins.hierarchy:
18232 Added smoke and jpeg to the docs.
18234 * ext/jpeg/Makefile.am:
18235 * ext/jpeg/gstjpeg.c: (plugin_init):
18236 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
18237 * ext/jpeg/gstjpegenc.h:
18238 * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
18239 (gst_smokedec_chain):
18240 * ext/jpeg/gstsmokedec.h:
18241 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
18242 * ext/jpeg/gstsmokeenc.h:
18243 * ext/jpeg/smokecodec.h:
18244 Port smokedec (fixes #331905).
18248 2006-03-03 Wim Taymans <wim@fluendo.com>
18250 * docs/plugins/Makefile.am:
18251 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18252 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18253 * docs/plugins/gst-plugins-good-plugins.hierarchy:
18254 Added videobalance and videoflip to the docs.
18256 * gst/videofilter/Makefile.am:
18257 * gst/videofilter/gstvideobalance.c:
18258 (gst_video_balance_update_tables_planar411),
18259 (gst_video_balance_is_passthrough),
18260 (gst_video_balance_update_properties), (oil_tablelookup_u8),
18261 (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
18262 (gst_video_balance_transform_ip), (gst_video_balance_base_init),
18263 (gst_video_balance_finalize), (gst_video_balance_class_init),
18264 (gst_video_balance_init), (gst_video_balance_interface_supported),
18265 (gst_video_balance_interface_init),
18266 (gst_video_balance_colorbalance_list_channels),
18267 (gst_video_balance_colorbalance_set_value),
18268 (gst_video_balance_colorbalance_get_value),
18269 (gst_video_balance_colorbalance_init),
18270 (gst_video_balance_set_property), (gst_video_balance_get_property),
18271 (gst_video_balance_get_type), (plugin_init):
18272 * gst/videofilter/gstvideobalance.h:
18273 Ported to 0.10. (Fixes #326160)
18276 * gst/videofilter/gstvideoflip.c:
18277 * gst/videofilter/gstvideoflip.h:
18280 2006-03-02 Tim-Philipp Müller <tim at centricular dot net>
18283 Bump requirements to current core and -base CVS
18284 (core for new typefind helper API, and -base for the
18285 WAVFORMATEX support that was added to libgstriff and
18286 is needed by wavparse).
18288 * gst/apetag/Makefile.am:
18289 * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
18290 (gst_tag_demux_sink_activate):
18291 Use new typefind helpers for typefinding instead of our
18292 home-grown stuff; also, do typefinding in pull-mode if
18293 upstream supports that.
18295 2006-02-28 Jürg Billeter <j (at) bitron.ch>
18297 Reviewed by: Christian Schaller <christian@fluendo.com>
18299 This patch fixes bug: 329107
18301 This Changelog entry is for a commit done on February 17
18303 * ext/gconf/gconf.c
18304 * ext/gconf/gconf.h
18305 * ext/gconf/gstgconfaudiosink.c
18306 * ext/gconf/gstgconfaudiosink.h
18307 * gconf/gstreamer.schemas.in
18309 2006-02-28 Wim Taymans <wim@fluendo.com>
18311 * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
18312 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18313 (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
18314 (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
18315 Use DEBUG_OBJECT more.
18317 2006-02-28 Wim Taymans <wim@fluendo.com>
18319 * docs/plugins/Makefile.am:
18320 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18321 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18322 Added dvdec and dvdemux to docs.
18324 * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
18326 Check frame sizes so we don't crash when don't have enough
18328 Send nice error messages on error.
18330 * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
18331 (gst_dvdemux_class_init), (gst_dvdemux_init),
18332 (gst_dvdemux_finalize), (gst_dvdemux_reset),
18333 (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18334 (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18335 (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
18336 (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
18337 (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
18338 (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
18339 (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
18340 (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
18341 (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
18342 (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
18343 (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
18344 * ext/dv/gstdvdemux.h:
18346 Implement pull mode.
18348 Reduce memcpy for the video demuxing.
18350 2006-02-28 Jan Schmidt <thaytan@mad.scientist.com>
18352 * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
18353 (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
18354 (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
18355 * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
18356 Add a little extra debug. Make the decoder not return NOT_LINKED,
18357 as we want to continue decoding all CMML and emitting tags.
18359 2006-02-27 Michael Smith <msmith@fluendo.com>
18361 * ext/annodex/gstskeltag.c:
18362 * ext/annodex/gstskeltag.h:
18363 Deleted; these files aren't used any more either.
18365 2006-02-25 Julien MOUTTE <julien@moutte.net>
18367 * ext/Makefile.am: Fix dist-check.
18369 2006-02-25 Julien MOUTTE <julien@moutte.net>
18371 * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
18374 2006-02-25 Alessandro Decina <alessandro@nnva.org>
18376 * ext/annodex/Makefile.am:
18377 * ext/annodex/gstannodex.c:
18378 * ext/annodex/gstcmmldec.c:
18379 * ext/annodex/gstcmmlenc.c:
18380 * ext/annodex/gstcmmlparser.c:
18381 * ext/annodex/gstcmmlparser.h:
18382 * ext/annodex/gstcmmlutils.c:
18383 * tests/check/elements/cmmldec.c:
18384 * tests/check/elements/cmmlenc.c:
18385 Fix a memleak in gst_cmml_track_list_add_clip.
18386 Handle overflows in clip's start and end times.
18387 Add the "encoded" parameter to cmmldec and cmmlenc caps.
18388 Do not parse junk at the end of a CMML preamble buffer.
18389 Register a libxml error handler to not print stuff on stderr.
18390 Check for bad clip start and end times in the testsuites.
18392 2006-02-25 Julien MOUTTE <julien@moutte.net>
18394 * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
18395 (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
18396 * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
18397 (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
18398 * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
18401 2006-02-25 Julien MOUTTE <julien@moutte.net>
18403 * tests/check/Makefile.am:
18404 * tests/check/elements/cmmldec.c:
18405 * tests/check/elements/cmmlenc.c: Fix tests so that they use
18406 the plugins-base tags.
18408 2006-02-25 Julien MOUTTE <julien@moutte.net>
18410 * ext/Makefile.am: Re-enable module.
18412 2006-02-25 Julien MOUTTE <julien@moutte.net>
18414 * tests/check/Makefile.am: Forgot to remove that test.
18416 2006-02-25 Julien MOUTTE <julien@moutte.net>
18418 * ext/annodex/Makefile.am:
18419 * ext/annodex/gstannodex.c: (plugin_init):
18420 * ext/annodex/gstcmmldec.c:
18421 * ext/annodex/gstskeldec.c:
18422 * ext/annodex/gstskeldec.h:
18423 * tests/check/Makefile.am:
18424 * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
18426 2006-02-25 Julien MOUTTE <julien@moutte.net>
18428 * tests/check/Makefile.am: Disable those checks as well.
18430 2006-02-24 Julien MOUTTE <julien@moutte.net>
18432 * ext/Makefile.am: Disable annodex for now until we figure out
18433 how to make it build.
18434 * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
18435 Add a rule to your checklist : "please try to at least build
18436 what you are going to commit into -good, or if you are too lazy
18437 to do that, please check that the buildbots are not crying because
18440 2006-02-24 Edgard Lima <edgard.lima@indt.org.br>
18444 * ext/gdk_pixbuf/Makefile.am:
18445 * ext/gdk_pixbuf/gstgdkpixbuf.c:
18446 * ext/gdk_pixbuf/gstgdkpixbuf.h:
18447 * ext/gdk_pixbuf/pixbufscale.c:
18448 * ext/gdk_pixbuf/pixbufscale.h:
18449 Gdkpixbuf ported from 0.8 to 0.10 by
18450 Renato Filho <renato.filho@indt.org.br>.
18451 gst_loader and gdkpixbufanimation still need port.
18453 2006-02-24 Michael Smith <msmith@fluendo.com>
18456 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18458 * ext/annodex/Makefile.am:
18459 * ext/annodex/gstannodex.c:
18460 * ext/annodex/gstannodex.h:
18461 * ext/annodex/gstcmmldec.c:
18462 * ext/annodex/gstcmmldec.h:
18463 * ext/annodex/gstcmmlenc.c:
18464 * ext/annodex/gstcmmlenc.h:
18465 * ext/annodex/gstcmmlparser.c:
18466 * ext/annodex/gstcmmlparser.h:
18467 * ext/annodex/gstcmmltag.c:
18468 * ext/annodex/gstcmmltag.h:
18469 * ext/annodex/gstcmmlutils.c:
18470 * ext/annodex/gstcmmlutils.h:
18471 * ext/annodex/gstskeldec.c:
18472 * ext/annodex/gstskeldec.h:
18473 * ext/annodex/gstskeltag.c:
18474 * ext/annodex/gstskeltag.h:
18475 * tests/check/Makefile.am:
18476 * tests/check/elements/cmmldec.c:
18477 * tests/check/elements/cmmlenc.c:
18478 * tests/check/elements/skeldec.c:
18479 Add Annodex elements from Alessendro Decina: skeleton and CMML.
18480 Includes tests & docs, oh my! Passes Thomas's -good checklist
18483 2006-02-24 Michael Smith <msmith@fluendo.com>
18486 Check for automake 1.9 as well.
18488 2006-02-24 Tim-Philipp Müller <tim at centricular dot net>
18490 * ext/flac/gstflacenc.c:
18491 Change min. sample rate to 8kHz to match flacdec's.
18493 2006-02-23 Tim-Philipp Müller <tim at centricular dot net>
18495 * ext/cdio/Makefile.am:
18496 Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
18497 required for Cygwin, see #317048)
18499 * gst/rtp/gstasteriskh263.c:
18500 Cygwin has includes for both the unix network socket API
18501 and the windows API, but only one can be included, so fix
18502 includes to only use one or the other, prefering the unxi
18505 2006-02-23 Philippe Kalaf <philippe.kalaf at collabora.co.uk>
18507 * rtp/gst/gstrtppcmadepay.c:
18508 * rtp/gst/gstrtppcmadepay.h:
18509 * rtp/gst/gstgstrtppcmapay.c:
18510 * rtp/gst/gstgstrtppcmapay.h:
18511 * rtp/gst/gstrtppcmudepay.c:
18512 * rtp/gst/gstrtppcmudepay.h:
18513 * rtp/gst/gstrtppcmupay.c:
18514 * rtp/gst/gstrtppcmupay.h:
18515 * rtp/gst/Makefile.am:
18516 * rtp/gst/gstrtp.c:
18518 Separated the G711 payloaders/depayloaders into separate elements for
18519 mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
18521 2006-02-22 Wim Taymans <wim@fluendo.com>
18523 * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
18524 (gst_dvdec_change_state):
18525 * ext/dv/gstdvdec.h:
18526 * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
18527 (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
18528 (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
18529 (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
18530 (gst_dvdemux_flush), (gst_dvdemux_chain),
18531 (gst_dvdemux_change_state):
18532 * ext/dv/gstdvdemux.h:
18533 Ueber spiffify some more, added debug category.
18535 Use segments, respect playback rate from newsegment.
18536 Fix refcount issue.
18538 2006-02-20 Jan Schmidt <thaytan@mad.scientist.com>
18540 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18541 (gst_signal_processor_process):
18542 Fix compilation of LADPSA. It doesn't seem to work, and isn't
18543 enabled for the build, but it helps me win the feature-count
18544 competitions ooh yeah.
18546 2006-02-19 Wim Taymans <wim@fluendo.com>
18548 * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
18549 (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
18550 (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
18551 (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
18552 (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
18553 (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
18554 Use scaling code for added precission and more correct stop
18555 position in case scale==0.
18557 2006-02-19 Wim Taymans <wim@fluendo.com>
18559 * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
18560 (gst_flxdec_chain):
18561 * gst/flx/gstflxdec.h:
18562 Implement DURATION query.
18564 2006-02-19 Wim Taymans <wim@fluendo.com>
18566 * gst/flx/flx_color.h:
18567 * gst/flx/flx_fmt.h:
18568 * gst/flx/gstflxdec.c: (gst_flxdec_init),
18569 (gst_flxdec_src_query_handler), (flx_decode_color),
18570 (gst_flxdec_chain):
18571 * gst/flx/gstflxdec.h:
18572 Set MALLOCDATA for the temp buffers so we don't leak.
18573 Some debug cleanups.
18574 Consume all data in the adapter before leaving the chain
18575 function. Fixes #330678.
18577 2006-02-18 Jan Schmidt <thaytan@mad.scientist.com>
18579 * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18580 * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
18581 Handle 0 data size in otherwise valid frames.
18582 Handle numeric strings in 2.4.0 even when not in parentheses
18584 2006-02-18 Tim-Philipp Müller <tim at centricular dot net>
18586 * gst/matroska/matroska-demux.c:
18587 (gst_matroska_demux_subtitle_caps),
18588 (gst_matroska_demux_plugin_init):
18589 * gst/matroska/matroska-ids.h:
18590 Recognise SSA/ASS and USF subtitle formats and
18591 set proper caps when they are found.
18593 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
18595 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
18596 (gst_jpeg_dec_chain):
18597 Fix invalid memory access for some odd-sized images
18598 (see image contained in quicktime stream in #327083);
18599 use g_malloc() instead of g_alloca().
18601 2006-02-17 Wim Taymans <wim@fluendo.com>
18603 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18604 Patch from Sebastien Cote, fixes #319884
18606 2006-02-17 Tim-Philipp Müller <tim at centricular dot net>
18608 * ext/cdio/gstcdio.c: (plugin_init):
18609 Init debug category (#331253).
18611 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
18613 * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
18614 Pass extra_data to gst_riff_create_audio_caps(), so that
18615 WAVEFORMATEX stuff works. Post audio codec name and post
18616 it as taglist on the bus. Allow up to 8 channesl for raw
18617 PCM in the source pad template caps.
18619 2006-02-16 Wim Taymans <wim@fluendo.com>
18621 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
18622 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
18623 (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
18624 (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
18625 (gst_multipart_set_property), (gst_multipart_get_property):
18626 Applied #318663. Gives quite a few false positives in
18627 autoscan mode, but it's better than nothing. Not closing yet.
18629 2006-02-16 Wim Taymans <wim@fluendo.com>
18631 * docs/plugins/Makefile.am:
18632 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18633 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18634 * docs/plugins/gst-plugins-good-plugins.args:
18635 * docs/plugins/inspect/plugin-udp.xml:
18636 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
18637 (gst_udpsrc_start):
18638 Update documentation.
18641 2006-02-16 Jan Schmidt <thaytan@mad.scientist.com>
18643 * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
18644 ID3 2.3.0 used synch-safe integers for the tag size, but not for the
18645 frame size. (Fixes #331368)
18647 2006-02-16 Wim Taymans <wim@fluendo.com>
18652 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
18653 (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
18654 (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
18655 * gst/rtsp/gstrtspsrc.h:
18656 Make sure the RTP port is an even port an try to allocate
18658 Added retry property to control max retries for port allocation.
18659 Make sure RTCP port is RTP port+1.
18660 Cleanup when port allocation fails.
18663 2006-02-16 Tim-Philipp Müller <tim at centricular dot net>
18665 * gst/alpha/gstalpha.c: (gst_alpha_change_state):
18666 Don't ignore return value of the parent class's state
18667 change function (#331385, patch by: Wouter Paesen).
18669 2006-02-15 Wim Taymans <wim@fluendo.com>
18672 * docs/plugins/Makefile.am:
18673 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18674 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18675 * docs/plugins/gst-plugins-good-plugins.hierarchy:
18677 * ext/hal/Makefile.am:
18678 * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
18679 (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
18680 (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
18681 (do_toggle_element), (gst_hal_audio_sink_set_property),
18682 (gst_hal_audio_sink_get_property),
18683 (gst_hal_audio_sink_change_state):
18684 * ext/hal/gsthalaudiosink.h:
18685 * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
18686 (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
18687 (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
18688 (do_toggle_element), (gst_hal_audio_src_set_property),
18689 (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
18690 * ext/hal/gsthalaudiosrc.h:
18691 * ext/hal/gsthalelements.c: (plugin_init):
18692 * ext/hal/gsthalelements.h:
18693 * ext/hal/hal.c: (gst_hal_get_string),
18694 (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
18695 (gst_hal_get_audio_src):
18697 Add HAL sound device wrapper plugins. Closes #329106
18699 2006-02-15 Wim Taymans <wim@fluendo.com>
18701 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
18702 Add comment in a fultile attempt to stop the copy-and-paste
18703 paradigm leading to duplication of bad code.
18705 * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
18706 Mime parameters have to be checked case insensitive
18708 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
18710 * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18711 Advance stream time for lagging subtitle streams by sending
18712 newsegment events with the update flag set.
18714 2006-02-14 Edward Hervey <edward@fluendo.com>
18716 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
18717 There can be bogus data before the hdrl LIST tag in the RIFF header.
18718 It's hard to say if it's not respecting the AVI specifications or not,
18719 but since Google Video is producing AVIs like that and the other player
18720 don't seem to complain, I guess we should do the same.
18722 2006-02-13 Jan Schmidt <thaytan@mad.scientist.com>
18724 * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
18725 (parse_split_strings):
18726 Add more validation to ensure that a char encoding conversion
18727 produced a valid UTF-8 string.
18729 2006-02-13 Mark Nauwelaerts <manauw@skynet.be>
18731 Reviewed by: Edward Hervey <edward@fluendo.com>
18733 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
18734 Properly handle end of segment. Closes #330885.
18736 2006-02-13 Wim Taymans <wim@fluendo.com>
18738 * gst/rtp/gstrtpmp4gpay.h:
18739 For got to commit this one.
18741 2006-02-12 Wim Taymans <wim@fluendo.com>
18743 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
18744 (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
18745 (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
18746 (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
18747 * gst/rtp/gstrtpmp4gpay.h:
18748 Make more things work.
18749 Handle ACC config strings.
18751 2006-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
18753 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
18754 set timestamps if no incoming timestamps set
18756 2006-02-11 Tim-Philipp Müller <tim at centricular dot net>
18758 * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
18759 (gst_tag_demux_do_typefind):
18760 ... and fix the very same leaks in GstTagDemux.
18762 2006-02-11 Jan Schmidt <thaytan@mad.scientist.com>
18764 * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
18765 (gst_id3demux_do_typefind):
18766 Fix a couple of mem leaks. (Patch by Jonathan Matthew
18767 <jonathan at kaolin dot wh9 dot net>)
18769 2006-02-10 Wim Taymans <wim@fluendo.com>
18771 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
18772 First set options, then set caps or else the baseclass
18773 will not know about the options, duh.
18775 2006-02-10 Wim Taymans <wim@fluendo.com>
18777 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
18778 (gst_rtp_mp4v_pay_setcaps):
18779 Don't waste time looking for a config string if we have codec_info
18780 on the incomming caps.
18782 2006-02-10 Wim Taymans <wim@fluendo.com>
18785 Say something about case-sensitivity of caps vs mime-attributes.
18787 * gst/rtp/Makefile.am:
18788 * gst/rtp/gstrtp.c: (plugin_init):
18789 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18790 (gst_rtp_amr_pay_handle_buffer):
18791 * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
18792 (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
18793 (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
18794 (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
18795 (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
18796 (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
18797 (gst_rtp_mp4g_pay_plugin_init):
18798 * gst/rtp/gstrtpmp4gpay.h:
18799 Added beginnings of mpeg4-generic payloader (RFC 3640)
18801 2006-02-09 Wim Taymans <wim@fluendo.com>
18803 * gst/rtsp/Makefile.am:
18804 * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
18805 (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
18806 (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
18807 (gst_rtpdec_set_property), (gst_rtpdec_get_property),
18808 (gst_rtpdec_change_state):
18809 * gst/rtsp/gstrtpdec.h:
18810 * gst/rtsp/gstrtsp.c: (plugin_init):
18811 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
18812 * gst/rtsp/rtspconnection.c: (read_body),
18813 (rtsp_connection_receive):
18814 * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
18815 Resurected rtpdec to make rtspsrc happy again.
18816 Skip attributes from the session id.
18817 Don't crash when dumping a message with an empty body.
18820 2006-02-09 Wim Taymans <wim@fluendo.com>
18822 * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
18823 Added more meaningfull warnings when something goes wrong.
18824 Clear F bit on outgoing AMR packets.
18826 * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
18827 (gst_rtp_amr_pay_handle_buffer):
18828 Added debugging category
18829 Support payloading of multiple AMR frames.
18831 * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
18832 Added some debugging.
18834 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
18839 === release 0.10.2 ===
18841 2006-02-09 Jan Schmidt <thaytan@mad.scientist.com>
18844 releasing 0.10.2, "Papa was a rolling stone"
18846 2006-02-08 Jan Schmidt <thaytan@mad.scientist.com>
18849 Bump core and plugins-base requirement to 0.10.2.2
18850 for API additions (and 1 migration of gst_bin_find_unconnected_pad)
18852 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
18854 * ext/flac/gstflac.c: (plugin_init):
18855 * ext/speex/gstspeex.c: (plugin_init):
18856 Register musicbrainz tags.
18858 2006-02-07 Tim-Philipp Müller <tim at centricular dot net>
18860 * ext/gconf/gconf.h:
18861 Remove declaration of function that no longer exists.
18863 2006-02-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
18865 * ext/shout2/gstshout2.c: (gst_shout2send_render),
18866 (gst_shout2send_setcaps), (gst_shout2send_change_state):
18867 Make shout2 work for non ogg streams
18869 2006-02-06 Wim Taymans <wim@fluendo.com>
18871 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18872 (gst_multiudpsink_render), (gst_multiudpsink_get_property),
18873 (gst_multiudpsink_init_send), (gst_multiudpsink_add),
18874 (gst_multiudpsink_remove), (gst_multiudpsink_clear),
18875 (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
18876 * gst/udp/gstmultiudpsink.h:
18878 Added properties bytes-served, bytes_to_serve.
18879 Post proper error messages,
18880 Emit client added signal too.
18882 2006-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
18884 * docs/plugins/Makefile.am:
18885 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18886 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18887 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
18888 (gst_multiudpsink_get_stats):
18889 adding docs for multiudpsink
18891 2006-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
18893 * gst/level/gstlevel.c: (gst_level_transform_ip):
18894 peak below decay is not necessarily an error, so don't ERROR log
18896 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
18898 * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
18899 (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
18900 (gst_ebml_write_seek):
18901 * gst/matroska/ebml-write.h:
18902 Make sure we send a newsegment event in BYTES format
18903 before sending buffers (#328531).
18905 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
18907 * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
18908 (gst_dvdemux_sink_query):
18909 * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
18910 * ext/speex/gstspeexdec.c: (speex_get_query_types),
18911 (speex_dec_src_query):
18912 * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
18913 (gst_speexenc_sink_query):
18914 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18915 * gst/matroska/matroska-demux.c:
18916 (gst_matroska_demux_get_src_query_types),
18917 (gst_matroska_demux_handle_src_query):
18918 * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
18919 (gst_wavparse_pad_query):
18920 Pass unhandled queries upstream instead of just dropping
18921 them (#326446). Update query type arrays here and there.
18923 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
18925 * tests/check/elements/matroskamux.c: (setup_src_pad):
18926 Collectpads in core got changed and now also holds a
18927 reference to any pad that is part of it. Fix refcount
18928 checks in test case accordingly.
18930 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
18932 * gst/apetag/gstapedemux.h:
18933 Fix include, for now GstTagDemux is in the apetag dir.
18935 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
18937 * docs/plugins/Makefile.am:
18938 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18939 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18940 * docs/plugins/inspect/plugin-cdio.xml:
18941 Add cdio plugin to docs.
18943 * ext/cdio/gstcdiocddasrc.c:
18946 * ext/cdio/gstcdio.c:
18947 The plugin is called 'cdio' not 'cddio'.
18949 2006-02-06 Tim-Philipp Müller <tim at centricular dot net>
18952 * docs/plugins/Makefile.am:
18953 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
18954 * docs/plugins/gst-plugins-good-plugins-sections.txt:
18955 * docs/plugins/gst-plugins-good-plugins.hierarchy:
18956 * docs/plugins/inspect/plugin-apetag.xml:
18957 * gst/apetag/Makefile.am:
18958 * gst/apetag/gstapedemux.c:
18959 * gst/apetag/gstapedemux.h:
18960 * gst/apetag/gsttagdemux.c:
18961 * gst/apetag/gsttagdemux.h:
18962 Add APE tag demuxer (#325649).
18964 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
18966 * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
18967 (gst_gconf_get_default_video_sink),
18968 (gst_gconf_get_default_audio_src),
18969 (gst_gconf_get_default_video_src):
18970 * ext/gconf/gconf.h:
18971 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
18972 (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
18973 (do_toggle_element):
18974 * ext/gconf/gstgconfaudiosink.h:
18975 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
18976 (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
18977 (do_toggle_element):
18978 * ext/gconf/gstgconfaudiosrc.h:
18979 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
18980 (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
18981 (do_toggle_element):
18982 * ext/gconf/gstgconfvideosink.h:
18983 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
18984 (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
18985 (do_toggle_element):
18986 * ext/gconf/gstgconfvideosrc.h:
18987 Ignore changing the GConf key to "". Ignore GConf key updates
18988 that don't actually change the string.
18989 For now, ignore the GConf key when the state is > READY, as
18990 it breaks streaming. Sometime it will be nice to bring the
18991 new sink online even mid-stream, by sending NEWSEGMENT info
18992 and possibly prerolling.
18995 2006-02-05 Jan Schmidt <thaytan@mad.scientist.com>
18997 * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
18998 (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
18999 (zoomFilterSetResolution), (zoomFilterDestroy),
19000 (zoomFilterFastRGB), (pointFilter):
19001 * gst/goom/filters.h:
19002 * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
19003 (goom_update), (goom_close):
19004 * gst/goom/goom_core.h:
19005 * gst/goom/goom_tools.h:
19006 * gst/goom/graphic.c:
19007 * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
19008 (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
19009 * gst/goom/gstgoom.h:
19010 * gst/goom/lines.c: (goom_lines):
19011 * gst/goom/lines.h:
19012 Make goom reentrant by moving all important static variables
19013 into instance structures.
19016 2006-02-04 Tim-Philipp Müller <tim at centricular dot net>
19018 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
19019 (gst_avi_demux_all_source_pads_unlinked),
19020 (gst_avi_demux_process_next_entry):
19021 * gst/avi/gstavidemux.h:
19022 Third attempt, use gst_pad_is_linked() this time.
19024 2006-02-04 Jan Schmidt <thaytan@mad.scientist.com>
19026 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19027 (parse_split_strings):
19028 Adjust for data length indicators when parsing (Fixes #329810)
19029 Fix stupid bug parsing UTF-8 tag text.
19030 Output tag strings with multiple fields as multiple tags, so the
19031 app gets all the data.
19033 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
19035 * ext/flac/gstflacenc.c:
19036 Fixed a bug add in last commit, where no event is send. Thanks Tim to
19039 2006-02-03 Edgard Lima <edgard.lima@indt.org.br>
19041 * ext/flac/gstflacenc.c:
19042 * gst/matroska/ebml-read.c:
19043 Just make it compile with --disable-gst-debug.
19045 2006-02-03 Jan Schmidt <thaytan@mad.scientist.com>
19047 * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
19048 (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
19049 (id3v2_genre_fields_to_taglist):
19050 Never output a tag with a null contents string.
19052 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
19054 * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
19055 Only pause if all pads are unlinked AND we've tried to send data
19056 on all of them at least once.
19058 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
19060 * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
19061 (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
19062 Make loop function/task pause itself when all source pads are
19065 2006-02-02 Tim-Philipp Müller <tim at centricular dot net>
19068 * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
19069 Use new functions from core to render a bin from a
19070 string. Fixes build. Up requirements to core CVS.
19072 2006-02-01 Tim-Philipp Müller <tim at centricular dot net>
19074 * gst/auparse/gstauparse.c: (gst_au_parse_chain):
19075 Don't push buffers into the adapter that we are going to
19076 push downstream again without framing anyway. Also, the
19077 adaptor takes ownership of buffers put into it (fixes
19078 auparse pushing invalid buffers for .au files with
19079 ADPCM contents). Finally, set caps on all outgoing buffers.
19081 2006-01-31 Jan Schmidt <thaytan@mad.scientist.com>
19083 * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
19084 (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
19085 (gst_id3demux_send_tag_event):
19086 * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
19087 Someone should kick my butt. Remove ID3v1 tags from the end of the
19090 Improve error messages. Send the TAG message as soon as we complete
19091 typefinding, instead of waiting until we send the first buffer.
19092 Downstream tag event is still sent before the first buffer.
19094 2006-01-27 Jan Gerber <j@bootlab.org>
19096 Reviewed by: Andy Wingo <wingo@pobox.com>
19098 * ext/dv/gstdvdec.c (gst_dvdec_change_state):
19099 * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
19100 Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
19101 to not have warings flooding stderr. this is the suggested way
19102 also used in dvgrab and kino. (#328336)
19104 2006-01-27 Jan Schmidt <thaytan@mad.scientist.com>
19106 * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
19107 (gst_oss_sink_init), (gst_oss_sink_finalise):
19108 Free the device name string when finalised.
19110 2006-01-25 Tim-Philipp Müller <tim at centricular dot net>
19112 * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
19113 Don't put function calls in g_return_if_fail() statements,
19114 or they'll be replaced with NOOPs if someone compiles with
19115 G_DISABLE_CHECKS defined.
19117 2006-01-25 Jan Schmidt <thaytan@mad.scientist.com>
19119 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19120 Never trust ANY information encoded in a media file, especially
19121 when it's giving you sizes. (Fixes #328452)
19123 2006-01-24 Edgard Lima <edgard.lima@indt.org.br>
19125 * gst/rtp/gstrtpg711pay.c:
19126 Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
19129 2006-01-23 Edward Hervey <edward@fluendo.com>
19131 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
19132 (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
19133 * gst/matroska/matroska-ids.h:
19134 Added recognition of Real Audio and Video streams in matroska demuxer.
19136 2006-01-23 Jan Schmidt <thaytan@mad.scientist.com>
19138 * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
19139 Remove errant break statement, and fix compilation with
19142 2006-01-23 Brian Cameron <brian dot cameron at sun dot com>
19144 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
19146 * sys/sunaudio/gstsunaudiomixerctrl.c:
19147 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
19148 Export functions that are needed in other parts of the code,
19149 makes the mixer actually work; adjust magic minimum buffer-time
19150 value from 3ms to 5ms to work around stuttering during mp3
19151 playback (#327765).
19153 2006-01-23 Michal Benes <michal dot benes at xeris dot cz>
19155 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
19157 * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
19158 (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
19159 Fix possible deadlock in matroska muxer (#327825).
19161 2006-01-23 Tim-Philipp Müller <tim at centricular dot net>
19163 * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
19164 * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
19165 * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
19166 * gst/rtsp/sdpmessage.h:
19167 * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
19168 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
19169 C89 fixes: declare variables at the beginning of a block and
19170 make gcc-2.9x happy (#328264; patch by: Jens Granseuer
19171 <jensgr at gmx dot net>).
19173 2006-01-23 Jan Schmidt <thaytan@mad.scientist.com>
19175 * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19176 * gst/id3demux/id3tags.h:
19177 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19178 (parse_comment_frame), (parse_text_identification_frame),
19179 (id3v2_tag_to_taglist), (id3v2_are_digits),
19180 (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
19181 (parse_split_strings), (free_tag_strings):
19182 Rewrite parsing of text tags to handle multiple NULL terminated
19183 strings. Parse numeric genre strings and ID3v2 type
19184 "(3)(6)Alternative" style genre strings.
19185 Parse dates that are only YYYY or YYYY-mm format.
19186 (Fixes #328241 and #322154)
19188 2006-01-20 Tim-Philipp Müller <tim at centricular dot net>
19190 * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
19191 Don't forget to initialize liboil, otherwise our oil functions
19192 will crash (fixes #327871; patch by: Christoph Burghardt
19193 <hawkes at web dot de>).
19195 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
19198 Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
19199 like in the core and gst-plugins-base. Fixes #324367 and #326683;
19200 patch by: Brian Cameron <brian dot cameron at sun dot com>
19202 2006-01-19 Tim-Philipp Müller <tim at centricular dot net>
19204 * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
19205 * ext/cdio/gstcdio.h:
19206 * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
19207 Fix build for libcdio versions >= 76; give slightly lower rank
19210 2006-01-18 Tim-Philipp Müller <tim at centricular dot net>
19214 * ext/cdio/Makefile.am:
19215 * ext/cdio/gstcdio.c:
19216 * ext/cdio/gstcdio.h:
19217 * ext/cdio/gstcdiocddasrc.c:
19218 * ext/cdio/gstcdiocddasrc.h:
19219 Port libcdio cdda source, formerly known as cddasrc, now known as
19220 cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
19221 but that's not tested (fixes #317658).
19223 2006-01-18 Tim-Philipp Müller <tim at centricular dot net>
19225 * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
19226 Fix conversion from TIME to BYTES format (fixes #326864;
19227 patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
19229 2006-01-15 Jan Schmidt <thaytan@mad.scientist.com>
19231 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
19232 Fix compilation of id3demux when zlib is not present.
19233 (Fixes #326602; patch by: Sergey Scobich)
19235 2006-01-15 Tim-Philipp Müller <tim at centricular dot net>
19237 * ext/esd/Makefile.am:
19238 Add $(ESD_CFLAGS), otherwise build will fail for folks
19239 with libesd in a non-standard prefix (#327009).
19241 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
19246 === release 0.10.1 ===
19248 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
19251 releasing 0.10.1, "Li"
19253 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
19255 patch by: Wim Taymans
19257 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19258 fix memleak. Fixes #326618
19260 2006-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
19262 patch by: Mike Smith
19264 * gst/level/gstlevel.c: (gst_level_message_new),
19265 (gst_level_message_append_channel):
19266 Fix memleak. Fixes #326612
19268 2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
19286 update translations
19288 2006-01-10 Michael Smith <msmith@fluendo.com>
19290 * gst/level/gstlevel.c: (gst_level_class_init),
19291 (gst_level_dispose):
19292 Don't leak filter arrays.
19294 2006-01-09 Brian Cameron <brian.cameron@sun.com>
19296 reviewed by: Christian Schaller <uraeus@gnome.org>
19299 * gst-plugins-good.spec.in:
19301 * sys/sunaudio/Makefile.am:
19302 * sys/sunaudio/gstsunaudio.c: (plugin_init):
19303 * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
19304 (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
19305 (gst_sunaudiomixer_change_state):
19306 * sys/sunaudio/gstsunaudiomixer.h:
19307 * sys/sunaudio/gstsunaudiomixerctrl.c:
19308 (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
19309 (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
19310 (gst_sunaudiomixer_ctrl_list_tracks),
19311 (gst_sunaudiomixer_ctrl_get_volume),
19312 (gst_sunaudiomixer_ctrl_set_volume),
19313 (gst_sunaudiomixer_ctrl_set_mute),
19314 (gst_sunaudiomixer_ctrl_set_record):
19315 * sys/sunaudio/gstsunaudiomixerctrl.h:
19316 * sys/sunaudio/gstsunaudiomixertrack.c:
19317 (gst_sunaudiomixer_track_class_init),
19318 (gst_sunaudiomixer_track_init), (fill_labels),
19319 (gst_sunaudiomixer_track_new):
19320 * sys/sunaudio/gstsunaudiomixertrack.h:
19321 * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
19322 (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
19323 (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
19324 (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
19325 (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
19326 (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
19327 (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
19328 * sys/sunaudio/gstsunaudiosink.h:
19330 Add SunAudio plugin - tested to make sure it doesn't break
19331 the build under GNU/Linux.
19333 2005-01-07 Philippe Khalaf <philippe.kalaf@collabora.co.uk>
19335 * gst-plugins-good/gst/udp/gstdynudpsink.c:
19336 * gst-plugins-good/gst/udp/gstudpsrc.c:
19337 Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
19338 overrides the port or multicast parameters. Fixes bugs #323021.
19339 API addition: adds GstUDPSrc::sockfd property
19341 2006-01-06 Tim-Philipp Müller <tim at centricular dot net>
19343 * ext/gconf/Makefile.am:
19344 * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
19345 (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
19346 (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
19347 (do_toggle_element), (cb_toggle_element),
19348 (gst_gconf_audio_src_change_state):
19349 * ext/gconf/gstgconfaudiosrc.h:
19350 * ext/gconf/gstgconfelements.c: (plugin_init):
19351 * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
19352 (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
19353 (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
19354 (do_toggle_element), (cb_toggle_element),
19355 (gst_gconf_video_src_change_state):
19356 * ext/gconf/gstgconfvideosrc.h:
19357 Add new gconfaudiosrc and gconfvideosrc elements
19358 (needed for gnome-sound-recorder).
19360 2006-01-06 Edward Hervey <edward@fluendo.com>
19362 * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
19363 Add gst_element_no_more_pads() for proper decodebin behaviour.
19364 * gst/id3demux/id3v2frames.c: (parse_comment_frame),
19365 (parse_text_identification_frame), (parse_split_strings):
19366 Failure to decode some tags is not a GST_ERROR() but a
19368 When iterating over a chunk of text, check that we haven't gone too
19371 2006-01-05 Stefan Kost <ensonic@users.sf.net>
19373 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
19375 call oil_init() when using liboil
19377 2006-01-04 Wim Taymans <wim@fluendo.com>
19379 * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
19380 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19383 2006-01-02 Alessandro Decina <alessandro at nnva dot org>
19385 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
19387 * ext/flac/gstflacdec.c: (gst_flac_dec_write),
19388 (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
19389 (gst_flac_dec_change_state):
19390 Don't g_assert() where we should just return FALSE; remove
19391 unnecessary g_assert(); initialize some fields properly in
19392 state change function (fixes #325504). Also, use
19393 GST_DEBUG_OBJECT in two more places.
19395 2005-12-30 Stefan Kost <ensonic@users.sf.net>
19398 also remove smoothwave's Makefile.am
19399 * docs/plugins/Makefile.am:
19402 2005-12-30 Stefan Kost <ensonic@users.sf.net>
19404 * tests/examples/Makefile.am:
19405 added missing Makefile.am
19407 2005-12-30 Stefan Kost <ensonic@users.sf.net>
19410 * gst/level/Makefile.am:
19411 * gst/level/level-example.c:
19412 * tests/Makefile.am:
19413 * tests/examples/level/Makefile.am:
19414 * tests/examples/level/level-example.c: (message_handler), (main):
19415 moved level-example to tests/examples/level-example
19416 * tests/old/examples/level/demo.c: (main):
19417 * tests/old/examples/level/plot.c: (main):
19420 2005-12-29 Michael Smith <msmith@fluendo.com>
19422 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19423 (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
19424 * gst/udp/gstmultiudpsink.h:
19425 Track packets sent per client in addition to bytes sent; provide
19426 this info through get-stats signal
19428 2005-12-29 Tim-Philipp Müller <tim at centricular dot net>
19430 * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
19431 Can't use gst_object_unref() on a GstAdapter (#325191).
19433 2005-12-28 Jan Schmidt <thaytan@mad.scientist.com>
19435 * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
19436 If a broken tag has 0 bytes payload, at least still skip
19439 2005-12-22 Philippe Khalaf <burger@speedy.org>
19441 * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
19442 * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19443 * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
19444 * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19445 Making these depayloaders (H263+ and mpeg4 video) inherit from
19446 RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
19448 2005-12-21 Jan Schmidt <thaytan@mad.scientist.com>
19450 * docs/plugins/gst-plugins-good-plugins.args:
19451 * docs/plugins/gst-plugins-good-plugins.hierarchy:
19452 Regenerate the plugin hiearchy.
19454 2005-12-21 Jan Schmidt <thaytan@mad.scientist.com>
19456 * docs/plugins/Makefile.am:
19457 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19458 * docs/plugins/gst-plugins-good-plugins-sections.txt:
19459 * docs/plugins/gst-plugins-good-plugins.args:
19460 * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
19461 (gst_id3demux_base_init), (gst_id3demux_class_init),
19462 (gst_id3demux_chain):
19463 * gst/id3demux/gstid3demux.h:
19464 Add documentation for id3demux.
19465 Don't fail if the first buffer is not at offset 0, just
19466 attempt to typefind and do pass through
19467 Rename the gst_type function from gst_gst_id3demux..
19469 2005-12-20 Michael Smith <msmith@fluendo.com>
19471 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
19472 (gst_multiudpsink_add), (gst_multiudpsink_remove),
19473 (gst_multiudpsink_get_stats):
19474 * gst/udp/gstmultiudpsink.h:
19475 Collect statistics; return them from get_stats.
19477 2005-12-19 Edward Hervey <edward@fluendo.com>
19479 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
19480 Stupid signedness issue...
19482 2005-12-19 Edward Hervey <edward@fluendo.com>
19484 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
19485 (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
19486 (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
19487 (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
19488 (gst_avi_demux_stream_header), (gst_avi_demux_loop):
19489 Construct index for indexless files.
19490 Make sure pad/buffers are correctly reset to NULL once we don't need
19491 them anymore, else we get lovely segfaults/assertions.
19492 * gst/wavparse/gstwavparse.c:
19493 Yes, you can have 96KHz audio and wma in wav :(
19495 2005-12-18 Jan Schmidt <thaytan@mad.scientist.com>
19498 Check for optional dependency on zlib for id3demux
19500 * gst/id3demux/Makefile.am:
19501 * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
19502 (gst_id3demux_base_init), (gst_id3demux_class_init),
19503 (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
19504 (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
19505 (gst_id3demux_trim_buffer), (gst_id3demux_chain),
19506 (gst_id3demux_set_property), (gst_id3demux_get_property),
19507 (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
19508 (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
19509 (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
19510 (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
19511 (gst_id3demux_src_getrange), (gst_id3demux_change_state),
19512 (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
19513 (simple_find_peek), (simple_find_suggest),
19514 (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
19516 * gst/id3demux/gstid3demux.h:
19517 * gst/id3demux/id3tags.c: (read_synch_uint),
19518 (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
19519 (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
19520 (id3demux_id3v2_frames_to_tag_list):
19521 * gst/id3demux/id3tags.h:
19522 * gst/id3demux/id3v2.4.0-frames.txt:
19523 * gst/id3demux/id3v2.4.0-structure.txt:
19524 * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
19525 (parse_comment_frame), (parse_text_identification_frame),
19526 (id3v2_tag_to_taglist), (parse_split_strings):
19527 All new LGPL id3 demuxer. Can use zlib for compressed frames,
19528 otherwise it discards them. Works on my test files.
19530 * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
19531 Don't send EOS to a non-existing srcpad
19532 The debug category can be static
19534 2005-12-16 Stefan Kost <ensonic@users.sf.net>
19536 * ext/esd/esdmon.c: (gst_esdmon_open_audio):
19537 * ext/esd/esdsink.c: (gst_esdsink_prepare):
19538 * gst/multipart/multipartdemux.c:
19539 change some char* into char[]
19541 2005-12-16 Wim Taymans <wim@fluendo.com>
19543 * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19544 (gst_wavparse_other), (gst_wavparse_perform_seek),
19545 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19546 (gst_wavparse_loop), (gst_wavparse_pad_convert),
19547 (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
19548 * gst/wavparse/gstwavparse.h:
19549 Use GstSegment to implement more seeking features.
19551 2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
19553 * gst/rtsp/rtspconnection.c:
19554 Add <netinet/in.h> include and move <arpa/inet.h> include
19555 to make things work on OpenBSD as well (fixes #323717;
19556 patch by: Benjamin Pineau)
19558 2005-12-14 Edgard Lima <edgard.lima@indt.org.br>
19560 * gst/rtp/gstrtpspeexdepay.c:
19561 * gst/rtp/gstrtpspeexpay.c:
19562 Set clock rate to be fixed in 8000. It fixes bug #324012.
19564 2005-12-14 Philippe Khalaf <burger@speedy.org>
19566 * gst-plugins-good/gst/rtp/gstasteriskh263.c:
19567 * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
19568 * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
19569 * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19570 * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
19571 * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
19572 * gst-plugins-good/gst/rtp/gstrtph263pay.c:
19573 * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
19574 * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
19575 * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
19576 * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
19577 * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
19578 * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
19579 * gst-plugins-good/gst/rtp/README:
19580 Fixed payload range in payloder caps. Removed payload range completely
19581 from depayloaders as they don't require payload type in their caps.
19582 In effect, there isn't any specific payload type for any given codec,
19586 2005-12-13 Julien MOUTTE <julien@moutte.net>
19588 * gst/videomixer/videomixer.c: (gst_videomixer_init),
19589 (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
19590 (gst_videomixer_collected): Code cleanup and re-enabling
19591 queued time validity check for correct EOS handling.
19593 2005-12-13 Tim-Philipp Müller <tim at centricular dot net>
19595 * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
19596 (gst_oss_mixer_element_get_property),
19597 (gst_oss_mixer_element_change_state):
19598 Add 'device-name' property and fix state change function.
19600 2005-12-13 Edward Hervey <edward@fluendo.com>
19602 * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19603 If the speed of the file is null in the header, set the frame_time to
19604 the default setting of GST_SECOND / 70. Which is the default
19605 frame_delay for .fli files as stated in this document :
19606 http://www.compuphase.com/flic.htm
19607 Would be nice to have the time conversion done properly too (duration =
19608 flxh->frames * flxdec->frame_time)
19610 2005-12-12 Julien MOUTTE <julien@moutte.net>
19612 * docs/plugins/Makefile.am:
19613 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19614 * docs/plugins/gst-plugins-good-plugins-sections.txt:
19615 * docs/plugins/gst-plugins-good-plugins.hierarchy:
19616 * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19617 (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19618 (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
19619 documentation for videomixer on my way with a funny sample
19622 2005-12-12 Julien MOUTTE <julien@moutte.net>
19624 * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
19625 (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
19626 (gst_videomixer_update_queues), (gst_videomixer_collected):
19627 Fix caps negotiation. (#323896)
19629 2005-12-12 Arwed v. Merkatz <v.merkatz@gmx.net>
19631 * gst/matroska/matroska-demux.c:
19632 (gst_matroska_demux_parse_blockgroup_or_simpleblock):
19633 Set correct timestamps on audio laces, fixes playback of mp3 from
19636 2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
19638 * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
19639 (gst_au_parse_class_init), (gst_au_parse_init),
19640 (gst_au_parse_dispose), (gst_au_parse_chain),
19641 (gst_au_parse_change_state), (plugin_init):
19642 * gst/auparse/gstauparse.h:
19643 Use gst_object_unref() for GstObjects instead of
19644 g_object_unref() and fix a mem leak in a debug
19645 statement; while we're at it, also borgify, use
19646 boilerplate macros and clean up a little bit.
19648 2005-12-11 Edward Hervey <edward@fluendo.com>
19650 * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
19651 (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
19654 2005-12-11 Tim-Philipp Müller <tim at centricular dot net>
19656 * gst/goom/gstgoom.c:
19657 * gst/level/level-example.c: (main):
19658 * gst/smoothwave/demo-osssrc.c: (main):
19659 Use audiotestsrc instead of sinesrc (#323798).
19661 2005-12-11 Stefan Kost <ensonic@users.sf.net>
19663 * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
19664 more debug-func-ptr usage
19666 2005-12-11 Zeeshan Ali <zeenix at gmail dot com>
19668 * gst/flx/flx_color.c: (flx_colorspace_convert):
19669 * gst/flx/flx_color.h:
19670 * gst/flx/flx_fmt.h:
19671 * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
19672 * gst/flx/gstflxdec.h:
19673 Now flxdec works on big-endian machines as well.
19675 2005-12-11 Tim-Philipp Müller <tim at centricular dot net>
19677 * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
19678 (gst_fenced_buffer_copy):
19679 Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
19680 GST_DEBUG crasher where GST_TIME_FORMAT was not used in
19681 conjunction with GST_TIME_ARGS. Also, don't leak pad templates
19682 and use GST_DEBUG_FUNCPTR for pad functions.
19684 2005-12-10 Tim-Philipp Müller <tim at centricular dot net>
19686 * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
19687 (gst_flac_dec_class_init), (gst_flac_dec_init),
19688 (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
19689 (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
19690 (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
19691 (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
19692 (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
19693 (gst_flac_dec_change_state):
19694 * ext/flac/gstflacdec.h:
19695 Rewrite flacdec a bit, so that even seeking might work now. Most
19696 importantly, don't act upon any flow return values we get, just tell
19697 the decoder everything's dandy and act on the flow return values
19698 later on in the loop function. We don't want to mess up the internal
19699 decoder state for non-fatal things like flushing pads etc. Other
19700 than that, use GstSegment (segment seeks don't work yet though, but
19701 should be easy to add), use boilerplate macros, drop the superfluous
19702 'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
19703 lots of other things.
19705 2005-12-10 Tim-Philipp Müller <tim at centricular dot net>
19708 Update comment in OSS includes check.
19710 * sys/oss/gstossdmabuffer.c:
19711 * sys/oss/gstosshelper.c:
19712 * sys/oss/gstossmixer.c:
19713 * sys/oss/gstossmixertrack.c:
19714 * sys/oss/gstosssink.c:
19715 * sys/oss/gstosssrc.c:
19716 * sys/oss/oss_probe.c:
19717 Don't assume the OSS soundcard.h include is always in
19718 the sys/ directory. Instead, use the existing defines
19719 from config.h to include the right file. Fixes
19720 compilation on OpenBSD 3.8 (#323718).
19722 2005-12-09 Thomas Vander Stichele <thomas at apestaart dot org>
19724 * docs/plugins/gst-plugins-good-plugins-sections.txt:
19725 * docs/plugins/gst-plugins-good-plugins.hierarchy:
19726 * docs/plugins/inspect/plugin-1394.xml:
19727 * docs/plugins/inspect/plugin-aasink.xml:
19728 * docs/plugins/inspect/plugin-alaw.xml:
19729 * docs/plugins/inspect/plugin-alpha.xml:
19730 * docs/plugins/inspect/plugin-alphacolor.xml:
19731 * docs/plugins/inspect/plugin-auparse.xml:
19732 * docs/plugins/inspect/plugin-autodetect.xml:
19733 * docs/plugins/inspect/plugin-avi.xml:
19734 * docs/plugins/inspect/plugin-cacasink.xml:
19735 * docs/plugins/inspect/plugin-cairo.xml:
19736 * docs/plugins/inspect/plugin-cutter.xml:
19737 * docs/plugins/inspect/plugin-debug.xml:
19738 * docs/plugins/inspect/plugin-dv.xml:
19739 * docs/plugins/inspect/plugin-efence.xml:
19740 * docs/plugins/inspect/plugin-effectv.xml:
19741 * docs/plugins/inspect/plugin-esdsink.xml:
19742 * docs/plugins/inspect/plugin-flac.xml:
19743 * docs/plugins/inspect/plugin-flxdec.xml:
19744 * docs/plugins/inspect/plugin-gconfelements.xml:
19745 * docs/plugins/inspect/plugin-goom.xml:
19746 * docs/plugins/inspect/plugin-jpeg.xml:
19747 * docs/plugins/inspect/plugin-level.xml:
19748 * docs/plugins/inspect/plugin-matroska.xml:
19749 * docs/plugins/inspect/plugin-mulaw.xml:
19750 * docs/plugins/inspect/plugin-multipart.xml:
19751 * docs/plugins/inspect/plugin-navigationtest.xml:
19752 * docs/plugins/inspect/plugin-ossaudio.xml:
19753 * docs/plugins/inspect/plugin-png.xml:
19754 * docs/plugins/inspect/plugin-rtp.xml:
19755 * docs/plugins/inspect/plugin-rtsp.xml:
19756 * docs/plugins/inspect/plugin-shout2send.xml:
19757 * docs/plugins/inspect/plugin-smpte.xml:
19758 * docs/plugins/inspect/plugin-speex.xml:
19759 * docs/plugins/inspect/plugin-udp.xml:
19760 * docs/plugins/inspect/plugin-videobox.xml:
19761 * docs/plugins/inspect/plugin-videoflip.xml:
19762 * docs/plugins/inspect/plugin-videomixer.xml:
19763 * docs/plugins/inspect/plugin-wavenc.xml:
19764 * docs/plugins/inspect/plugin-wavparse.xml:
19765 * ext/flac/gstflac.c: (plugin_init):
19766 * ext/flac/gstflacdec.c: (flacdec_get_type),
19767 (gst_flac_dec_base_init), (gst_flac_dec_class_init),
19768 (gst_flac_dec_init), (gst_flac_dec_finalize),
19769 (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
19770 (gst_flac_dec_error_callback), (gst_flac_dec_seek),
19771 (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
19772 (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
19773 (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
19774 (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
19775 (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
19776 (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
19777 * ext/flac/gstflacdec.h:
19778 * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
19779 (gst_flac_enc_base_init), (gst_flac_enc_class_init),
19780 (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
19781 (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
19782 (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
19783 (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
19784 (gst_flac_enc_sink_event), (gst_flac_enc_chain),
19785 (gst_flac_enc_set_property), (gst_flac_enc_get_property),
19786 (gst_flac_enc_change_state):
19787 * ext/flac/gstflacenc.h:
19788 borgify and fix up documentation
19790 2005-12-09 Michael Smith <msmith@fluendo.com>
19792 * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
19793 Accept a wider range of flac files, more closely matching flac spec.
19795 2005-12-08 Julien MOUTTE <julien@moutte.net>
19797 * docs/plugins/Makefile.am: Add multipart elements.
19798 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19799 * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
19800 * docs/plugins/gst-plugins-good-plugins.hierarchy:
19801 * gst/multipart/multipartdemux.c:
19802 * gst/multipart/multipartmux.c: Add docs.
19804 2005-12-07 Edward Hervey <edward@fluendo.com>
19806 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
19807 (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
19808 (gst_avi_demux_invert):
19809 Memleak and crasher fixes.
19810 * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19811 (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
19814 2005-12-06 Thomas Vander Stichele <thomas at apestaart dot org>
19816 * ext/aalib/gstaasink.h:
19817 * ext/cairo/gsttextoverlay.h:
19818 * ext/dv/gstdvdec.h:
19819 * ext/dv/gstdvdemux.c:
19820 * ext/dv/gstdvdemux.h:
19821 * ext/esd/esdsink.h:
19822 * ext/flac/flac_compat.h:
19823 * ext/flac/gstflacdec.h:
19824 * ext/flac/gstflacenc.h:
19825 * ext/gconf/gconf.h:
19826 * ext/gconf/gstgconfaudiosink.h:
19827 * ext/gconf/gstgconfvideosink.h:
19828 * ext/gdk_pixbuf/gstgdkanimation.h:
19829 * ext/jpeg/gstjpegdec.h:
19830 * ext/jpeg/smokecodec.h:
19831 * ext/jpeg/smokeformat.h:
19832 * ext/ladspa/gstsignalprocessor.h:
19833 * ext/ladspa/search.c: (LADSPAPluginSearch):
19834 * ext/ladspa/utils.h:
19835 * ext/libmng/gstmng.c:
19836 * ext/libmng/gstmngdec.h:
19837 * ext/libmng/gstmngenc.c:
19838 * ext/libmng/gstmngenc.h:
19839 * ext/libpng/gstpng.c:
19840 * ext/libpng/gstpngenc.c:
19841 * ext/libpng/gstpngenc.h:
19842 * ext/shout2/gstshout2.h:
19843 * ext/speex/gstspeexdec.h:
19844 * ext/speex/gstspeexenc.c:
19845 * ext/speex/gstspeexenc.h:
19846 * gst/auparse/gstauparse.c: (gst_auparse_chain):
19847 * gst/autodetect/gstautoaudiosink.h:
19848 * gst/autodetect/gstautovideosink.h:
19849 * gst/avi/gstavidemux.h:
19850 * gst/cutter/gstcutter.c: (gst_cutter_chain),
19851 (gst_cutter_set_property), (gst_cutter_get_caps):
19852 * gst/cutter/gstcutter.h:
19853 * gst/debug/tests.c: (md5_process_block):
19854 * gst/debug/tests.h:
19855 * gst/effectv/gstwarp.c:
19856 * gst/flx/flx_fmt.h:
19857 * gst/flx/gstflxdec.h:
19858 * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
19859 (zoomFilterFastRGB):
19860 * gst/goom/filters.h:
19861 * gst/goom/goom_tools.h:
19862 * gst/law/alaw-encode.c:
19863 * gst/level/gstlevel.c:
19864 * gst/level/gstlevel.h:
19865 * gst/matroska/ebml-write.h:
19866 * gst/matroska/matroska-demux.h:
19867 * gst/matroska/matroska-ids.h:
19868 * gst/matroska/matroska-mux.h:
19869 * gst/monoscope/convolve.c: (convolve_match):
19870 * gst/monoscope/convolve.h:
19871 * gst/multipart/multipartmux.c:
19872 * gst/oldcore/gstaggregator.c:
19873 * gst/oldcore/gstaggregator.h:
19874 * gst/oldcore/gstmd5sink.c: (md5_process_block):
19875 * gst/oldcore/gstmd5sink.h:
19876 * gst/oldcore/gstmultifilesrc.c:
19877 * gst/oldcore/gstmultifilesrc.h:
19878 * gst/oldcore/gstpipefilter.h:
19879 * gst/oldcore/gstshaper.h:
19880 * gst/rtp/gstrtpL16depay.h:
19881 * gst/rtp/gstrtpL16pay.h:
19882 * gst/rtp/gstrtpdepay.h:
19883 * gst/rtp/gstrtpmp4vpay.c:
19884 * gst/rtp/gstrtpmp4vpay.h:
19885 * gst/rtsp/gstrtspsrc.c:
19886 * gst/rtsp/gstrtspsrc.h:
19887 * gst/rtsp/rtspconnection.h:
19888 * gst/rtsp/rtspdefs.h:
19889 * gst/rtsp/rtspmessage.h:
19890 * gst/rtsp/rtsptransport.h:
19891 * gst/rtsp/rtspurl.c:
19892 * gst/rtsp/rtspurl.h:
19893 * gst/rtsp/sdpmessage.c:
19894 * gst/rtsp/sdpmessage.h:
19895 * gst/smpte/barboxwipes.c:
19896 * gst/smpte/gstmask.h:
19897 * gst/smpte/gstsmpte.h:
19898 * gst/smpte/paint.c:
19899 * gst/smpte/paint.h:
19900 * gst/udp/gstdynudpsink.h:
19901 * gst/udp/gstmultiudpsink.h:
19902 * gst/udp/gstudpsink.c:
19903 * gst/udp/gstudpsink.h:
19904 * gst/udp/gstudpsrc.c:
19905 * gst/videomixer/videomixer.c:
19906 * gst/wavenc/riff.h:
19907 * gst/wavparse/gstwavparse.h:
19908 * sys/oss/gstossdmabuffer.h:
19909 * sys/oss/gstossmixer.h:
19910 * sys/oss/gstossmixerelement.h:
19911 * sys/oss/gstossmixertrack.h:
19912 * sys/oss/gstosssink.c:
19913 * sys/oss/gstosssink.h:
19914 * sys/oss/gstosssrc.c:
19915 * sys/oss/gstosssrc.h:
19916 * sys/osxaudio/gstosxaudioelement.h:
19917 * sys/osxaudio/gstosxaudiosink.h:
19918 * sys/osxaudio/gstosxaudiosrc.h:
19921 === release 0.10.0 ===
19923 2005-12-05 <thomas (at) apestaart (dot) org>
19926 releasing 0.10.0, "Abondance"
19928 2005-12-05 Andy Wingo <wingo@pobox.com>
19930 * ext/dv/gstdvdec.c: (gst_dvdec_chain):
19931 * ext/flac/gstflacdec.c: (gst_flacdec_write):
19932 * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
19933 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
19934 * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
19935 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
19936 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
19937 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
19938 * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
19939 * ext/speex/gstspeexdec.c: (speex_dec_chain):
19940 * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
19941 * gst/auparse/gstauparse.c: (gst_auparse_chain):
19942 * gst/flx/gstflxdec.c: (gst_flxdec_chain):
19943 * gst/goom/gstgoom.c: (gst_goom_chain):
19944 * gst/matroska/matroska-demux.c:
19945 (gst_matroska_demux_push_vorbis_codec_priv_data),
19946 (gst_matroska_demux_add_wvpk_header):
19947 * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
19948 * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
19949 * gst/videomixer/videomixer.c: (gst_videomixer_collected):
19950 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
19951 alloc_buffer changes.
19953 2005-12-05 Michael Smith <msmith@fluendo.com>
19955 * docs/plugins/gst-plugins-good-plugins.args:
19956 Remove args for plugins that aren't in -good.
19958 === release 0.9.7 ===
19960 2005-12-01 <thomas (at) apestaart (dot) org>
19963 releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
19965 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19967 * docs/plugins/.cvsignore:
19968 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19969 * docs/plugins/inspect/plugin-multipart.xml:
19970 * docs/plugins/inspect/plugin-rtp.xml:
19971 add multipart plugin to docs
19973 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19977 * ext/pango/Makefile.am:
19978 * ext/pango/gstclockoverlay.c:
19979 * ext/pango/gstclockoverlay.h:
19980 * ext/pango/gsttextoverlay.c:
19981 * ext/pango/gsttextoverlay.h:
19982 * ext/pango/gsttextrender.c:
19983 * ext/pango/gsttextrender.h:
19984 * ext/pango/gsttimeoverlay.c:
19985 * ext/pango/gsttimeoverlay.h:
19988 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
19990 * gst/rtp/Makefile.am:
19991 * gst/rtp/gstrtpL16depay.c:
19992 * gst/rtp/gstrtpL16depay.h:
19993 * gst/rtp/gstrtpL16parse.c:
19994 * gst/rtp/gstrtpL16parse.h:
19995 * gst/rtp/gstrtpgsmdepay.c:
19996 * gst/rtp/gstrtpgsmdepay.h:
19997 * gst/rtp/gstrtpgsmparse.c:
19998 * gst/rtp/gstrtpgsmparse.h:
19999 parsers are depayers
20001 2005-12-01 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20003 * gst/rtp/Makefile.am:
20004 * gst/rtp/gstasteriskh263.c:
20005 * gst/rtp/gstrtp.c:
20006 * gst/rtp/gstrtpL16enc.c:
20007 * gst/rtp/gstrtpL16enc.h:
20008 * gst/rtp/gstrtpL16parse.c:
20009 * gst/rtp/gstrtpL16parse.h:
20010 * gst/rtp/gstrtpL16pay.c:
20011 * gst/rtp/gstrtpL16pay.h:
20012 * gst/rtp/gstrtpamrdec.c:
20013 * gst/rtp/gstrtpamrdec.h:
20014 * gst/rtp/gstrtpamrdepay.c:
20015 * gst/rtp/gstrtpamrdepay.h:
20016 * gst/rtp/gstrtpamrenc.c:
20017 * gst/rtp/gstrtpamrenc.h:
20018 * gst/rtp/gstrtpamrpay.c:
20019 * gst/rtp/gstrtpamrpay.h:
20020 * gst/rtp/gstrtpdec.c:
20021 * gst/rtp/gstrtpdec.h:
20022 * gst/rtp/gstrtpdepay.c:
20023 * gst/rtp/gstrtpdepay.h:
20024 * gst/rtp/gstrtpg711dec.c:
20025 * gst/rtp/gstrtpg711dec.h:
20026 * gst/rtp/gstrtpg711depay.c:
20027 * gst/rtp/gstrtpg711depay.h:
20028 * gst/rtp/gstrtpg711enc.c:
20029 * gst/rtp/gstrtpg711enc.h:
20030 * gst/rtp/gstrtpg711pay.c:
20031 * gst/rtp/gstrtpg711pay.h:
20032 * gst/rtp/gstrtpgsmenc.c:
20033 * gst/rtp/gstrtpgsmenc.h:
20034 * gst/rtp/gstrtpgsmparse.c:
20035 * gst/rtp/gstrtpgsmparse.h:
20036 * gst/rtp/gstrtpgsmpay.c:
20037 * gst/rtp/gstrtpgsmpay.h:
20038 * gst/rtp/gstrtph263enc.c:
20039 * gst/rtp/gstrtph263enc.h:
20040 * gst/rtp/gstrtph263pay.c:
20041 * gst/rtp/gstrtph263pay.h:
20042 * gst/rtp/gstrtph263pdec.c:
20043 * gst/rtp/gstrtph263pdec.h:
20044 * gst/rtp/gstrtph263pdepay.c:
20045 * gst/rtp/gstrtph263pdepay.h:
20046 * gst/rtp/gstrtph263penc.c:
20047 * gst/rtp/gstrtph263penc.h:
20048 * gst/rtp/gstrtph263ppay.c:
20049 * gst/rtp/gstrtph263ppay.h:
20050 * gst/rtp/gstrtpmp4vdec.c:
20051 * gst/rtp/gstrtpmp4vdec.h:
20052 * gst/rtp/gstrtpmp4vdepay.c:
20053 * gst/rtp/gstrtpmp4vdepay.h:
20054 * gst/rtp/gstrtpmp4venc.c:
20055 * gst/rtp/gstrtpmp4venc.h:
20056 * gst/rtp/gstrtpmp4vpay.c:
20057 * gst/rtp/gstrtpmp4vpay.h:
20058 * gst/rtp/gstrtpmpadec.c:
20059 * gst/rtp/gstrtpmpadec.h:
20060 * gst/rtp/gstrtpmpadepay.c:
20061 * gst/rtp/gstrtpmpadepay.h:
20062 * gst/rtp/gstrtpmpaenc.c:
20063 * gst/rtp/gstrtpmpaenc.h:
20064 * gst/rtp/gstrtpmpapay.c:
20065 * gst/rtp/gstrtpmpapay.h:
20066 * gst/rtp/gstrtpspeexdec.c:
20067 * gst/rtp/gstrtpspeexdec.h:
20068 * gst/rtp/gstrtpspeexdepay.c:
20069 * gst/rtp/gstrtpspeexdepay.h:
20070 * gst/rtp/gstrtpspeexenc.c:
20071 * gst/rtp/gstrtpspeexenc.h:
20072 * gst/rtp/gstrtpspeexpay.c:
20073 * gst/rtp/gstrtpspeexpay.h:
20074 Do burger's rename for rtp payloaders and depayloaders
20076 2005-11-30 Wim Taymans <wim@fluendo.com>
20078 * ext/dv/gstdvdec.c: (gst_dvdec_chain):
20079 * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
20080 * ext/dv/gstdvdemux.h:
20081 Fix seeking in dvdemux again, add some more debug info.
20083 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20088 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20091 * docs/random/PORTED_09:
20093 * tests/Makefile.am:
20098 2005-11-30 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
20101 * check/.cvsignore:
20102 * check/Makefile.am:
20103 * check/elements/.cvsignore:
20104 * check/elements/level.c:
20105 * check/elements/matroskamux.c:
20107 * examples/Makefile.am:
20108 * examples/capsfilter/Makefile.am:
20109 * examples/capsfilter/capsfilter1.c:
20110 * examples/gob/Makefile.am:
20111 * examples/gob/gst-identity2.gob:
20112 * examples/gstplay/.cvsignore:
20113 * examples/gstplay/Makefile.am:
20114 * examples/gstplay/player.c:
20115 * examples/indexing/.cvsignore:
20116 * examples/indexing/Makefile.am:
20117 * examples/indexing/indexmpeg.c:
20118 * examples/level/Makefile.am:
20119 * examples/level/README:
20120 * examples/level/demo.c:
20121 * examples/level/plot.c:
20122 * examples/stats/Makefile.am:
20123 * examples/stats/mp2ogg.c:
20124 * examples/switch/.cvsignore:
20125 * examples/switch/Makefile.am:
20126 * examples/switch/switcher.c:
20129 2005-11-30 Tim-Philipp Müller <tim at centricular dot net>
20131 * ext/pango/gsttextrender.c: (gst_text_render_base_init),
20132 (gst_text_render_class_init), (resize_bitmap),
20133 (gst_text_render_render_text), (gst_text_render_setcaps),
20134 (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
20135 (gst_text_render_chain), (gst_text_render_finalize),
20136 (gst_text_render_init), (gst_text_render_set_property):
20137 * ext/pango/gsttextrender.h:
20140 2005-11-30 Tim-Philipp Müller <tim at centricular dot net>
20144 * ext/pango/Makefile.am:
20145 * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
20146 (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
20147 (gst_clock_overlay_class_init), (gst_clock_overlay_init):
20148 * ext/pango/gstclockoverlay.h:
20149 * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
20150 (gst_text_overlay_get_text), (gst_text_overlay_class_init),
20151 (gst_text_overlay_finalize), (gst_text_overlay_init),
20152 (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
20153 (gst_text_overlay_text_pad_linked),
20154 (gst_text_overlay_text_pad_unlinked),
20155 (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
20156 (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
20157 (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
20158 (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20159 (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20160 (gst_text_overlay_change_state), (plugin_init):
20161 * ext/pango/gsttextoverlay.h:
20162 * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
20163 (gst_time_overlay_render_time), (gst_time_overlay_get_text),
20164 (gst_time_overlay_class_init), (gst_time_overlay_init):
20165 * ext/pango/gsttimeoverlay.h:
20166 Port pango-based textoverlay, timeoverlay and textrender to 0.9
20167 and add background shading and text wrapping modes. Make
20168 timoverlay derive from textoverlay. Also add new clockoverlay
20171 2005-11-30 Julien MOUTTE <julien@moutte.net>
20173 * gst/udp/Makefile.am: Moved to netbuffer.
20175 2005-11-30 Julien MOUTTE <julien@moutte.net>
20179 * gst/multipart/Makefile.am:
20180 * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
20181 (gst_multipart_demux_class_init), (gst_multipart_demux_init),
20182 (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
20183 (gst_multipart_demux_change_state),
20184 (gst_multipart_demux_plugin_init):
20185 * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
20186 (gst_multipart_mux_init), (gst_multipart_mux_finalize),
20187 (gst_multipart_mux_sinkconnect),
20188 (gst_multipart_mux_request_new_pad),
20189 (gst_multipart_mux_handle_src_event),
20190 (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
20191 (gst_multipart_mux_change_state): Ported multipart mux/demux to
20194 2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
20196 * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
20197 * gst/debug/gstnavigationtest.h:
20198 * gst/effectv/gstaging.c: (gst_agingtv_get_type):
20199 * gst/effectv/gstdice.c: (gst_dicetv_get_type):
20200 * gst/effectv/gstedge.c: (gst_edgetv_get_type):
20201 * gst/effectv/gstquark.c: (gst_quarktv_get_type):
20202 * gst/effectv/gstrev.c: (gst_revtv_get_type):
20203 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
20204 * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
20205 * gst/effectv/gstwarp.c: (gst_warptv_get_type):
20206 * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
20207 (gst_video_flip_get_type):
20208 * gst/videofilter/gstvideoflip.h:
20209 update for symbols change
20211 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
20213 * gst/udp/gstdynudpsink.c:
20214 * gst/udp/gstudpsrc.c:
20215 the old gstnet lib was renamed gstnetbuffer (#322257)
20217 2005-11-29 Tim-Philipp Müller <tim at centricular dot net>
20219 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
20220 (gst_text_overlay_collected):
20221 Actually render the text from the text pad.
20223 2005-11-29 Edward Hervey <edward@fluendo.com>
20225 * gst/debug/gstnavseek.c: (gst_navseek_event):
20226 * gst/debug/progressreport.c: (gst_progress_report_event):
20227 Update for GstBaseTransform event virtual method
20229 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
20231 * ext/cairo/Makefile.am:
20232 no need to link to videofilter
20234 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
20236 * gst/debug/Makefile.am:
20237 * gst/debug/gstnavigationtest.h:
20238 * gst/effectv/Makefile.am:
20239 * gst/effectv/gstaging.c:
20240 * gst/effectv/gstdice.c:
20241 * gst/effectv/gstedge.c:
20242 * gst/effectv/gstquark.c:
20243 * gst/effectv/gstrev.c:
20244 * gst/effectv/gstshagadelic.c:
20245 * gst/effectv/gstvertigo.c:
20246 * gst/effectv/gstwarp.c:
20247 * gst/videofilter/Makefile.am:
20248 * gst/videofilter/gstvideofilter.c:
20249 * gst/videofilter/gstvideofilter.h:
20250 * gst/videofilter/gstvideoflip.h:
20251 remove the videofilter library and link to the one in base
20253 2005-11-28 Edward Hervey <edward@fluendo.com>
20255 * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
20256 Useless check now we're setting the current entry correctly.
20258 2005-11-28 Tim-Philipp Müller <tim at centricular dot net>
20260 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
20261 (gst_jpegenc_set_property), (gst_jpegenc_get_property),
20262 (gst_jpegenc_change_state):
20263 Don't leak input buffer in chain function (fixes #322667); make
20264 state change function thread-safe; don't repeat the current function
20265 name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
20266 gst_pad_alloc_buffer(); misc. minor cleanups.
20268 2005-11-28 Jan Schmidt <thaytan@mad.scientist.com>
20270 * gst/matroska/matroska-mux.c:
20271 (gst_matroska_mux_video_pad_setcaps):
20272 Look for pixel-aspect-ratio in caps, not pixel_width and
20273 pixel_height (Fixes: #322645)
20275 2005-11-28 Jan Schmidt <thaytan@mad.scientist.com>
20277 * gst/matroska/matroska-mux.c:
20278 (gst_matroska_mux_video_pad_setcaps):
20280 frame duration should be GST_SECOND / framerate, not
20281 GST_SECOND * framerate. (Fixes: #322643)
20283 2005-11-27 Thomas Vander Stichele <thomas at apestaart dot org>
20286 fix up GST_PLUGIN_LDFLAGS
20287 * gst/rtsp/rtspconnection.c:
20288 fix includes (see #317043)
20289 * gst/videofilter/Makefile.am:
20290 stop installing this library
20292 2005-11-26 Edward Hervey <edward@fluendo.com>
20294 * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
20295 Handle the case where the incoming Video dv stream doesn't have
20296 a pixel aspect ratio set.
20298 2005-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
20300 * docs/plugins/Makefile.am:
20301 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20302 * docs/plugins/gst-plugins-good-plugins-sections.txt:
20303 * ext/flac/gstflacdec.c:
20306 2005-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
20308 * docs/plugins/Makefile.am:
20309 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20310 * docs/plugins/gst-plugins-good-plugins-sections.txt:
20311 * docs/plugins/inspect/plugin-autodetect.xml:
20312 * ext/cairo/gstcairo.c: (plugin_init):
20313 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20314 (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20315 (gst_text_overlay_init), (gst_text_overlay_font_init),
20316 (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20317 (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20318 (gst_text_overlay_text_pad_linked),
20319 (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20320 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20321 (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20322 (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20323 (gst_text_overlay_change_state):
20324 * ext/cairo/gsttextoverlay.h:
20325 * ext/cairo/gsttimeoverlay.c:
20326 (gst_cairo_time_overlay_update_font_height),
20327 (gst_cairo_time_overlay_set_caps),
20328 (gst_cairo_time_overlay_get_unit_size),
20329 (gst_cairo_time_overlay_print_smpte_time),
20330 (gst_cairo_time_overlay_transform),
20331 (gst_cairo_time_overlay_base_init),
20332 (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
20333 (gst_cairo_time_overlay_get_type):
20334 * ext/cairo/gsttimeoverlay.h:
20335 do some name borgifying
20338 2005-11-25 Thomas Vander Stichele <thomas at apestaart dot org>
20340 * docs/plugins/Makefile.am:
20341 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
20342 * docs/plugins/gst-plugins-good-plugins-sections.txt:
20343 * gst/autodetect/gstautoaudiosink.c:
20344 (gst_auto_audio_sink_base_init):
20345 * gst/autodetect/gstautovideosink.c:
20346 (gst_auto_video_sink_base_init),
20347 (gst_auto_video_sink_factory_filter):
20348 documenting auto*sink
20349 using strstr for the video sink lookup, class field is not ordered
20350 * docs/plugins/inspect/plugin-1394.xml:
20351 * docs/plugins/inspect/plugin-aasink.xml:
20352 * docs/plugins/inspect/plugin-alaw.xml:
20353 * docs/plugins/inspect/plugin-alpha.xml:
20354 * docs/plugins/inspect/plugin-alphacolor.xml:
20355 * docs/plugins/inspect/plugin-auparse.xml:
20356 * docs/plugins/inspect/plugin-autodetect.xml:
20357 * docs/plugins/inspect/plugin-avi.xml:
20358 * docs/plugins/inspect/plugin-cacasink.xml:
20359 * docs/plugins/inspect/plugin-cairo.xml:
20360 * docs/plugins/inspect/plugin-cutter.xml:
20361 * docs/plugins/inspect/plugin-debug.xml:
20362 * docs/plugins/inspect/plugin-dv.xml:
20363 * docs/plugins/inspect/plugin-efence.xml:
20364 * docs/plugins/inspect/plugin-effectv.xml:
20365 * docs/plugins/inspect/plugin-esdsink.xml:
20366 * docs/plugins/inspect/plugin-flac.xml:
20367 * docs/plugins/inspect/plugin-flxdec.xml:
20368 * docs/plugins/inspect/plugin-gconfelements.xml:
20369 * docs/plugins/inspect/plugin-goom.xml:
20370 * docs/plugins/inspect/plugin-jpeg.xml:
20371 * docs/plugins/inspect/plugin-level.xml:
20372 * docs/plugins/inspect/plugin-matroska.xml:
20373 * docs/plugins/inspect/plugin-mulaw.xml:
20374 * docs/plugins/inspect/plugin-navigationtest.xml:
20375 * docs/plugins/inspect/plugin-ossaudio.xml:
20376 * docs/plugins/inspect/plugin-png.xml:
20377 * docs/plugins/inspect/plugin-rtp.xml:
20378 * docs/plugins/inspect/plugin-rtsp.xml:
20379 * docs/plugins/inspect/plugin-shout2send.xml:
20380 * docs/plugins/inspect/plugin-smpte.xml:
20381 * docs/plugins/inspect/plugin-speex.xml:
20382 * docs/plugins/inspect/plugin-udp.xml:
20383 * docs/plugins/inspect/plugin-videobox.xml:
20384 * docs/plugins/inspect/plugin-videoflip.xml:
20385 * docs/plugins/inspect/plugin-videomixer.xml:
20386 * docs/plugins/inspect/plugin-wavenc.xml:
20387 * docs/plugins/inspect/plugin-wavparse.xml:
20388 update for HEAD version
20390 2005-11-25 Michael Smith <msmith@fluendo.com>
20392 * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
20393 Patch from Sebastien Cote to close control sockets in udpsrc.
20395 2005-11-24 Julien MOUTTE <julien@moutte.net>
20397 * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20398 (gst_quarktv_get_unit_size), (gst_quarktv_transform),
20399 (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
20400 (gst_quarktv_base_init), (gst_quarktv_class_init),
20401 (gst_quarktv_init): Flush the planes list on reverse caps
20402 negotiation. This was crashing because of differently sized
20405 2005-11-24 Julien MOUTTE <julien@moutte.net>
20407 * gst/debug/gstnavigationtest.c: (draw_box_planar411):
20408 * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
20409 (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
20410 (gst_videoflip_get_unit_size), (gst_videoflip_flip),
20411 (gst_videoflip_transform), (gst_videoflip_handle_src_event),
20412 (gst_videoflip_set_property), (gst_videoflip_base_init),
20413 (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
20414 correctly, fix identity flipping, convert navigation event
20417 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
20419 * configure.ac: back to HEAD
20421 === release 0.9.6 ===
20423 2005-11-23 Thomas Vander Stichele <thomas at apestaart dot org>
20426 releasing 0.9.6, "Everything's Not Lost"
20428 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
20430 * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
20431 Oops, initialise the framerate GValue
20433 2005-11-23 Julien MOUTTE <julien@moutte.net>
20435 * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
20436 (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
20437 (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
20438 (gst_timeoverlay_class_init), (gst_timeoverlay_init),
20439 (gst_timeoverlay_get_type):
20440 * ext/cairo/gsttimeoverlay.h:
20441 * gst/debug/Makefile.am:
20442 * gst/debug/gstnavigationtest.c:
20443 (gst_navigationtest_handle_src_event),
20444 (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
20445 (gst_navigationtest_transform), (gst_navigationtest_change_state),
20446 (gst_navigationtest_base_init), (gst_navigationtest_class_init),
20447 (gst_navigationtest_init), (gst_navigationtest_get_type),
20449 * gst/debug/gstnavigationtest.h:
20450 * gst/effectv/Makefile.am:
20451 * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
20452 (gst_agingtv_get_unit_size), (gst_agingtv_transform),
20453 (gst_agingtv_base_init), (gst_agingtv_class_init),
20454 (gst_agingtv_init), (gst_agingtv_get_type):
20455 * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
20456 (gst_dicetv_get_unit_size), (gst_dicetv_transform),
20457 (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
20458 (gst_dicetv_get_type):
20459 * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
20460 (gst_edgetv_get_unit_size), (gst_edgetv_transform),
20461 (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
20462 (gst_edgetv_get_type):
20463 * gst/effectv/gsteffectv.c:
20464 * gst/effectv/gsteffectv.h:
20465 * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
20466 (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
20467 (gst_quarktv_change_state), (gst_quarktv_base_init),
20468 (gst_quarktv_class_init), (gst_quarktv_init),
20469 (gst_quarktv_get_type):
20470 * gst/effectv/gstrev.c: (gst_revtv_set_caps),
20471 (gst_revtv_get_unit_size), (gst_revtv_transform),
20472 (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
20473 (gst_revtv_get_type):
20474 * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
20475 (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
20476 (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
20477 (gst_shagadelictv_init), (gst_shagadelictv_get_type):
20478 * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
20479 (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
20480 (gst_vertigotv_base_init), (gst_vertigotv_class_init),
20481 (gst_vertigotv_init), (gst_vertigotv_get_type):
20482 * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
20483 (gst_warptv_get_unit_size), (gst_warptv_transform),
20484 (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
20485 (gst_warptv_get_type):
20486 * gst/videofilter/Makefile.am:
20487 * gst/videofilter/gstvideobalance.c:
20488 * gst/videofilter/gstvideobalance.h:
20489 * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
20490 (gst_videofilter_class_init), (gst_videofilter_init):
20491 * gst/videofilter/gstvideofilter.h:
20492 * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
20493 (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
20494 (gst_videoflip_flip), (gst_videoflip_transform),
20495 (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
20496 (gst_videoflip_base_init), (gst_videoflip_class_init),
20497 (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
20498 * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
20499 BaseTransform, it's just a place holder for now and every video
20500 effect plugin has been ported to use BaseTransform features
20501 directly. QuarkTV was fixed too (was broken), navigationtest works
20502 and best for the end, videoflip converts navigation events depending
20503 on flip method ! Fixes #320953
20505 2005-11-23 Jan Schmidt <thaytan@mad.scientist.com>
20507 * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20508 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
20509 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20510 (gst_goom_src_negotiate), (gst_goom_chain):
20511 * gst/matroska/matroska-mux.c:
20512 (gst_matroska_mux_video_pad_setcaps):
20513 * sys/osxvideo/osxvideosink.m:
20514 Fixes for API changes
20516 2005-11-23 Michael Smith <msmith@fluendo.com>
20518 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
20519 (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
20520 * ext/jpeg/gstjpegdec.h:
20521 * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
20522 * ext/jpeg/gstjpegenc.h:
20523 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
20524 (gst_smokeenc_resync):
20525 * ext/jpeg/gstsmokeenc.h:
20526 JPEG fractiony goodness.
20528 2005-11-22 Michael Smith <msmith@fluendo.com>
20530 * gst/goom/filters.c:
20531 * gst/goom/graphic.h:
20532 Fix compilation by making some functions static inline instead of
20533 extern inline, matching the way they're used.
20535 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
20537 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
20538 (gst_text_overlay_setcaps), (gst_text_overlay_collected):
20539 * ext/cairo/gsttextoverlay.h:
20540 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
20541 * ext/gdk_pixbuf/gstgdkpixbuf.h:
20542 * ext/libpng/gstpngdec.c: (gst_pngdec_init),
20543 (gst_pngdec_caps_create_and_set):
20544 * ext/libpng/gstpngdec.h:
20545 * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
20546 * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
20547 * gst/avi/gstavimux.c: (gst_avimux_init),
20548 (gst_avimux_vidsinkconnect):
20549 * gst/flx/gstflxdec.c: (gst_flxdec_chain):
20550 * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
20551 (gst_goom_src_negotiate), (gst_goom_chain):
20552 * gst/goom/gstgoom.h:
20553 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20554 * gst/matroska/matroska-mux.c:
20555 (gst_matroska_mux_video_pad_setcaps):
20556 * sys/osxvideo/osxvideosink.h:
20557 * sys/osxvideo/osxvideosink.m:
20558 More fractional framerate conversions
20560 2005-11-22 Jan Schmidt <thaytan@mad.scientist.com>
20562 * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20563 * gst/debug/gstnavigationtest.c:
20564 (gst_navigationtest_handle_src_event):
20565 * gst/videofilter/gstvideofilter.c:
20566 (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
20567 (gst_videofilter_init):
20568 * gst/videofilter/gstvideofilter.h:
20569 Convert to fractional framerates.
20571 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
20573 * ext/aalib/gstaasink.c:
20574 * ext/dv/gstdvdec.c:
20575 * ext/esd/esdmon.c:
20576 * ext/flac/gstflacenc.c:
20577 * ext/gdk_pixbuf/pixbufscale.c:
20578 * ext/libcaca/gstcacasink.c:
20579 * ext/shout2/gstshout2.c:
20580 * gst/alpha/gstalpha.c:
20581 * gst/oldcore/gstaggregator.c:
20582 * gst/oldcore/gstshaper.c:
20583 * gst/smpte/barboxwipes.c:
20584 * gst/smpte/gstsmpte.c:
20585 * gst/videobox/gstvideobox.c:
20586 * gst/videofilter/gstvideoflip.c:
20587 * gst/videomixer/videomixer.c:
20590 2005-11-22 Michael Smith <msmith@fluendo.com>
20592 * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
20593 (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
20594 (gst_videomixer_update_queues):
20595 Fractional framerates, videomixer.
20597 2005-11-22 Michael Smith <msmith@fluendo.com>
20599 * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
20600 * ext/dv/gstdvdec.h:
20601 * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
20602 (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
20603 (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
20604 (gst_dvdemux_flush):
20605 * ext/dv/gstdvdemux.h:
20606 Fractional framerates for DV.
20608 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
20610 * gst/autodetect/gstautoaudiosink.c:
20611 (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20612 * gst/autodetect/gstautovideosink.c:
20613 (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
20614 Use gst_plugin_feature_list_free() to free feature list and
20615 in the case of autovideosink free the list at all. Also
20616 miscellaneous cosmetic fixes.
20618 2005-11-22 Thomas Vander Stichele <thomas at apestaart dot org>
20620 * gst/cutter/gstcutter.c: (gst_cutter_chain),
20621 (gst_cutter_set_property), (gst_cutter_get_caps):
20622 copy calculation code from level; remove use of some audio
20625 2005-11-22 Andy Wingo <wingo@pobox.com>
20627 * Update for gst_tag_setter API changes.
20629 2005-11-22 Andy Wingo <wingo@pobox.com>
20631 * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
20632 (gst_dvdemux_demux_frame)
20633 * ext/flac/gstflacdec.c (gst_flacdec_write)
20634 * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
20635 (gst_flacenc_sink_event)
20636 * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
20637 * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
20638 * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
20639 * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
20640 * gst/auparse/gstauparse.c (gst_auparse_chain)
20641 * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
20642 * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
20643 * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
20644 (gst_avi_demux_handle_seek)
20645 * gst/goom/gstgoom.c (gst_goom_event)
20646 * gst/matroska/ebml-write.c (gst_ebml_write_seek)
20647 * gst/matroska/matroska-demux.c
20648 (gst_matroska_demux_handle_seek_event)
20649 (gst_matroska_demux_loop_stream_parse_id)
20650 * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
20651 * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
20652 (gst_wavparse_stream_headers): Run update-funcnames.
20654 2005-11-22 Edward Hervey <edward@fluendo.com>
20656 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
20657 (gst_dv1394src_init), (gst_dv1394src_dispose),
20658 (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
20659 (gst_dv1394src_uri_set_uri):
20660 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
20661 (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
20662 (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
20663 URIHandler interface and element properties are now properly
20664 synchronized for DV1394src and UDPSrc
20666 2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
20668 * ext/flac/Makefile.am:
20669 * ext/speex/Makefile.am:
20670 libgsttagedit has been renamed to libgsttag.
20672 2005-11-21 Wim Taymans <wim@fluendo.com>
20674 * gst/rtsp/rtspconnection.c: (read_body):
20675 Apply patch from Sebastien Cote to fix #319184.
20677 2005-11-21 Thomas Vander Stichele <thomas at apestaart dot org>
20680 * gst/cutter/Makefile.am:
20681 * gst/cutter/gstcutter.c: (gst_cutter_class_init),
20682 (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
20683 (gst_cutter_set_property), (gst_cutter_get_property),
20684 (plugin_init), (gst_cutter_get_caps):
20686 * gst/level/gstlevel.c:
20687 fix up plugin details
20689 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
20691 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
20692 * ext/flac/gstflacdec.c: (gst_flacdec_loop),
20693 (gst_flacdec_src_event):
20694 * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
20695 * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
20696 (gst_signal_processor_getrange), (gst_signal_processor_chain):
20697 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
20698 * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
20699 (gst_flxdec_sink_event_handler):
20700 * gst/matroska/matroska-demux.c:
20701 (gst_matroska_demux_handle_seek_event):
20702 * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
20703 Update for stream lock API changes: don't take stream log
20704 in sink event handlers any longer and change GST_STREAM_LOCK
20705 to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
20708 2005-11-21 Michael Smith <msmith@fluendo.com>
20710 * gst/auparse/gstauparse.c: (gst_auparse_dispose):
20711 gst_object_unref, not g_object_unref
20713 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
20715 * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20716 (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
20717 Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
20719 2005-11-21 Michael Smith <msmith@fluendo.com>
20721 * gst/auparse/Makefile.am:
20722 * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20723 (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
20724 (gst_auparse_change_state):
20725 * gst/auparse/gstauparse.h:
20726 Partially fix #161712. playbin still doesn't work on these files,
20727 (on the bug report, Andy says we aren't typefinding it for some
20728 reason?) but at least auparse isn't totally busted like it was before.
20730 2005-11-21 Andy Wingo <wingo@pobox.com>
20733 * *.c: Ran scripts/update-macros. Oh yes.
20735 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
20737 * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
20738 Filler events are gone for now, comment out section generating
20741 2005-11-21 Jan Schmidt <thaytan@mad.scientist.com>
20743 * ext/aalib/gstaasink.c: (gst_aasink_fixate):
20744 * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
20745 * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
20746 * sys/osxvideo/osxvideosink.m:
20747 Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
20750 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
20752 * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
20753 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
20754 (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
20755 (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
20756 (gst_avi_demux_sync), (gst_avi_demux_stream_header),
20757 (gst_avi_demux_stream_data):
20758 * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
20759 * gst/wavenc/gstwavenc.c: (write_metadata):
20760 * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
20761 (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
20762 Fixes for GST_FOURCC_FORMAT API change.
20764 2005-11-21 Tim-Philipp Müller <tim at centricular dot net>
20766 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
20767 (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
20768 (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
20769 (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20770 (gst_text_overlay_change_state):
20771 * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
20772 (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
20773 (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
20774 * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
20775 * gst/videomixer/videomixer.c: (gst_videomixer_init),
20776 (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
20777 (gst_videomixer_change_state):
20778 Fix for collect pads API change. Also fix textoverlay state
20781 2005-11-20 Julien MOUTTE <julien@moutte.net>
20783 * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
20784 GST_PAD_IS_USABLE by something approaching it.
20786 2005-11-20 Julien MOUTTE <julien@moutte.net>
20788 * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
20790 * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
20791 but also fix the code that was not checking return values from
20792 pad_push neither using pad_alloc_buffer.
20794 2005-11-18 Edward Hervey <edward@fluendo.com>
20796 * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
20797 (gst_pngenc_chain):
20798 Added debug category
20799 Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
20802 2005-11-17 Edgard Lima <edgard.lima@indt.org.br>
20804 * gst/rtp/Makefile.am
20806 * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
20807 (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
20808 (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
20809 (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
20810 * gst/rtp/gstrtpg711enc.h:
20811 * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
20812 * gst/rtp/gstrtpspeexenc.c:
20813 * gst/rtp/gstrtpspeexenc.h:
20814 * gst/rtp/gstrtpspeexdec.c:
20815 * gst/rtp/gstrtpspeexdec.h:
20816 Created Speex payloader and depayloader; Optimize G711 payloader to
20817 use adapter and send packets until MTU size.
20819 2005-11-16 Wim Taymans <wim@fluendo.com>
20821 * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
20824 2005-11-16 Wim Taymans <wim@fluendo.com>
20826 * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
20829 2005-11-16 Andy Wingo <wingo@pobox.com>
20831 * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
20832 (gst_udpsrc_create): Move comment.
20834 2005-11-15 Vincent Torri <torri at iecn dot u-nancy dot fr>
20836 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
20838 * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
20839 When seeking, seek to closest index entry at or before the requested
20840 seek position, not just the closest one (#321001).
20842 2005-11-15 Tim-Philipp Müller <tim at centricular dot net>
20844 * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
20845 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
20846 Invert DIB images again (see #132341).
20848 2005-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
20851 rework configure.ac file
20852 * ext/aalib/gstaasink.c:
20853 * ext/cairo/gstcairo.c:
20855 * ext/esd/gstesd.c:
20856 * ext/flac/gstflac.c:
20857 * ext/gconf/gstgconfelements.c:
20858 * ext/gdk_pixbuf/gstgdkpixbuf.c:
20859 * ext/jpeg/gstjpeg.c:
20860 * ext/ladspa/gstladspa.c:
20861 * ext/libcaca/gstcacasink.c:
20862 * ext/libmng/gstmng.c:
20863 * ext/libpng/gstpng.c:
20864 * ext/mikmod/gstmikmod.c:
20865 * ext/pango/gsttextoverlay.c:
20866 * ext/pango/gsttimeoverlay.c:
20867 * ext/raw1394/gst1394.c:
20868 * ext/speex/gstspeex.c:
20869 * gst/alpha/Makefile.am:
20870 * gst/alpha/gstalpha.c:
20871 * gst/alpha/gstalphacolor.c:
20872 * gst/auparse/gstauparse.c:
20873 * gst/autodetect/gstautoaudiosink.c:
20874 (gst_auto_audio_sink_factory_filter),
20875 (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
20876 * gst/autodetect/gstautodetect.c:
20877 * gst/avi/gstavi.c:
20878 * gst/cutter/gstcutter.c:
20879 * gst/debug/efence.c:
20880 * gst/debug/gstdebug.c:
20881 * gst/debug/gstnavigationtest.c:
20882 * gst/effectv/gsteffectv.c:
20883 * gst/flx/gstflxdec.c:
20884 * gst/goom/gstgoom.c:
20885 * gst/interleave/plugin.c:
20888 * gst/level/gstlevel.c:
20889 * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
20890 * gst/matroska/matroska.c:
20891 * gst/median/gstmedian.c:
20892 * gst/monoscope/gstmonoscope.c:
20893 * gst/multipart/multipart.c:
20894 * gst/oldcore/gstelements.c:
20895 * gst/rtp/gstrtp.c:
20896 * gst/rtsp/gstrtsp.c:
20897 * gst/smoothwave/gstsmoothwave.c:
20898 * gst/smpte/gstsmpte.c:
20899 * gst/udp/gstudp.c:
20900 * gst/videobox/gstvideobox.c:
20901 * gst/videofilter/gstgamma.c:
20902 * gst/videofilter/gstvideobalance.c:
20903 * gst/videofilter/gstvideoflip.c:
20904 * gst/videofilter/gstvideotemplate.c:
20905 * gst/videomixer/videomixer.c:
20906 * gst/wavenc/gstwavenc.c:
20907 * gst/wavparse/gstwavparse.c:
20908 * sys/oss/gstossaudio.c:
20909 * sys/osxaudio/gstosxaudio.c:
20910 update GST_PLUGIN_DEFINE
20911 * gst/rtp/Makefile.am:
20912 * gst/rtp/gstasteriskh263.c:
20913 check for htons/htonl headers and possibly link to winsock2 lib
20915 2005-11-12 Edward Hervey <edward@fluendo.com>
20917 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
20918 Only GST_DEBUG() information on the valid components.
20920 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
20922 * configure.ac: back to HEAD
20924 === release 0.9.5 ===
20926 2005-11-11 Thomas Vander Stichele <thomas at apestaart dot org>
20929 releasing 0.9.5, "Phone Alarm"
20931 2005-11-11 Edward Hervey <edward@fluendo.com>
20933 * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
20934 (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
20935 (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
20936 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20937 (gst_avi_demux_loop):
20938 * gst/avi/gstavidemux.h:
20939 Yeah, implement proper seeking. Exact seeking and segment seeking.
20940 Still need to do some checks for segment_stop.
20942 2005-11-10 Josef Zlomek <josef dot zlomek at xeris dot cz>
20944 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
20946 * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
20947 Don't try to ready buffer duration from buffer that we don't
20948 own any longer and that might already have been unreffed.
20951 2005-11-09 Zeeshan Ali <zeenix@gmail.com>
20953 * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
20954 (flx_decode_delta_flc), (gst_flxdec_chain):
20955 Attempting to optimize the code for embedded systems.
20957 2005-11-08 Alessandro Decina <alessandro at nnva dot org>
20959 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
20961 * sys/oss/gstosssink.c: (gst_oss_sink_close):
20962 Don't re-use already closed file descriptor. (#320920)
20964 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
20966 * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
20967 (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
20968 (gst_oss_sink_prepare):
20969 * sys/oss/gstosssink.h:
20970 Cache probed caps; fix debug output for SET_PARAM macros.
20972 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
20974 * ext/cairo/Makefile.am:
20975 * ext/cairo/gstcairo.c: (plugin_init):
20976 * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
20977 (gst_text_overlay_class_init), (gst_text_overlay_finalize),
20978 (gst_text_overlay_init), (gst_text_overlay_font_init),
20979 (gst_text_overlay_set_property), (gst_text_overlay_render_text),
20980 (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
20981 (gst_text_overlay_text_pad_linked),
20982 (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
20983 (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
20984 (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
20985 (gst_text_overlay_pop_text), (gst_text_overlay_collected),
20986 (gst_text_overlay_change_state):
20987 * ext/cairo/gsttextoverlay.h:
20988 Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
20989 property and redo positioning. Doesn't handle upstream renegotiation
20992 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
20994 * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
20995 (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
20996 (gst_avi_demux_loop):
20997 No need to take the STREAM_LOCK in the loop function. Improve
20998 some debug messages. Don't leak pad names in debug messages.
21000 2005-11-07 Tim-Philipp Müller <tim at centricular dot net>
21002 * gst/matroska/matroska-demux.c:
21003 (gst_matroska_demux_push_vorbis_codec_priv_data),
21004 (gst_matroska_demux_add_wvpk_header):
21005 Don't error out when the source pad isn't linked.
21007 2005-11-02 Tim-Philipp Müller <tim at centricular dot net>
21009 * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
21010 (gst_gconf_audio_sink_change_state):
21011 * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
21012 (gst_gconf_video_sink_change_state):
21013 Fix state change functions here as well and set kid
21014 to NULL state before removing it.
21016 2005-11-01 Edward Hervey <edward@fluendo.com>
21018 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
21019 (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
21020 Added proper event handlind,
21021 made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
21023 and don't set a duration of 0 for buffers otherwise they are discarded
21026 GstWavEnc needs some serious loving, after going through the code I'm
21027 really wondering how this can stay in -good ...
21029 2005-11-01 Thomas Vander Stichele <thomas at apestaart dot org>
21031 * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
21032 (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
21033 * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
21034 (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
21035 (gst_matroska_mux_start), (gst_matroska_mux_write_data),
21036 (gst_matroska_mux_collected):
21037 Fix leaks and invalid memory access as reported by valgrind
21039 2005-11-01 Thomas Vander Stichele <thomas at apestaart dot org>
21041 Patch by: Michal Benes <michal.benes@xeris.cz>
21043 * check/Makefile.am:
21044 * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
21045 * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
21046 (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21047 add a unit test for matroskamux
21048 fix the bugs that the unit test exposed
21050 2005-11-01 Tim-Philipp Müller <tim at centricular dot net>
21052 * gst/autodetect/gstautoaudiosink.c:
21053 (gst_auto_audio_sink_class_init),
21054 (gst_auto_audio_sink_change_state):
21055 * gst/autodetect/gstautovideosink.c:
21056 (gst_auto_video_sink_class_init),
21057 (gst_auto_video_sink_change_state):
21058 Fix state change function and use GST_DEBUG_FUNCPTR in
21061 2005-11-01 Josef Zlomek <josef dot zlomek at xeris dot cz>
21063 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
21065 * gst/matroska/ebml-write.c: (gst_ebml_write_new),
21066 (gst_ebml_write_reset), (gst_ebml_write_element_new):
21067 * gst/matroska/ebml-write.h:
21068 * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
21069 Set timestamps on outgoing ebml headers as well, so that the
21070 element after matroskamux can get the timestamp already when
21071 reading the first ebml element and doesn't have to wait for
21072 the actual data buffer for that (#320308).
21074 2005-10-31 Andy Wingo <wingo@pobox.com>
21076 * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
21077 (gst_videomixer_pad_link): Kill some memleaks.
21078 (gst_videomixer_pad_get_property): Style fix.
21079 (gst_videomixer_pad_set_property): Style fix.
21080 (gst_videomixer_pad_init): Style fix.
21081 (gst_videomixer_update_queues): Kill memleak.
21082 (gst_videomixer_loop): Kill memleak.
21083 (gst_videomixer_collected): Kill memleak.
21085 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
21087 * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
21088 gst_auparse_change_state:
21091 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
21093 * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
21094 Add checks to GST_FLOW_NOT_LINKED for values returned
21097 2005-10-31 Zeeshan Ali <zeenix@gmail.com>
21099 * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
21100 (gst_rtpg711dec_process):
21101 * gst/rtp/gstrtpgsmenc.c:
21102 Payloader now sets some default caps on the srcpad if caps on the sinkpad
21103 are never set. This is important for the g711 to work with burger's rtpbin
21106 2005-10-28 Edgard Lima <edgard.lima@cin.ufpe.br>
21108 * ext/speex/gstspeexenc.c: (gst_speexenc_chain),
21109 (gst_speexenc_push_buffer):
21110 Add checks for return values from gst_pad_push and
21111 gst_pad_alloc_buffer.
21113 2005-10-28 Michal Benes <michal dot benes at xeris dot cz>
21115 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
21117 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21118 (gst_matroska_demux_parse_info),
21119 (gst_matroska_demux_parse_blockgroup_or_simpleblock),
21120 (gst_matroska_demux_parse_cluster):
21121 * gst/matroska/matroska-ids.h:
21122 * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
21123 (gst_matroska_mux_init), (gst_matroska_mux_start),
21124 (gst_matroska_mux_create_buffer_header),
21125 (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
21126 (gst_matroska_mux_get_property):
21127 * gst/matroska/matroska-mux.h:
21128 Add SimpleBlock support to matroska demuxer and muxer (part of
21129 Matroska v2). (#319731)
21131 2005-10-28 Wim Taymans <wim@fluendo.com>
21133 * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
21134 (gst_jpeg_dec_change_state):
21135 * ext/jpeg/gstjpegdec.h:
21136 Cleanups. Don't create caps for every chain.
21138 2005-10-27 Edgard Lima Edgard Lima <edgard.lima@indt.org.br>
21140 * gst/law/alaw-encode.c: (gst_alawenc_init),
21141 (alawenc_setcaps), (gst_alawenc_chain)
21142 * gst/law/alaw-encode.h:
21143 * gst/law/mulaw-encode.c: (gst_mulawenc_init),
21144 (mulawenc_setcaps), (gst_mulawenc_chain)
21145 * gst/law/mulaw-encode.h:
21146 Set timestamp on buffer and it allows RTP G711 elements
21149 2005-10-27 Wim Taymans <wim@fluendo.com>
21151 * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21152 Set correct format on oss instead of a silly value.
21154 2005-10-27 Julien MOUTTE <julien@moutte.net>
21156 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21157 (gst_video_box_transform_caps), (gst_video_box_set_caps),
21158 (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
21159 (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
21160 I420 rendering as well, doesn't bring much for my platform.
21161 Might help on some other platforms.
21163 2005-10-27 Zeeshan Ali <zeenix@gmail.com>
21165 * gst/rtp/gstrtpgsmenc.c:
21166 * gst/rtp/gstrtpgsmparse.c:
21167 Declaring the padtemplate correctly.
21169 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
21171 * gst/rtp/gstrtpg711dec.c:
21172 * gst/rtp/gstrtpg711enc.c:
21173 * gst/rtp/gstrtpgsmenc.c:
21174 * gst/rtp/gstrtpgsmparse.c:
21175 Setting the proper copyright notice.
21177 2005-10-26 Julien MOUTTE <julien@moutte.net>
21179 * gst/videobox/Makefile.am: Use liboil.
21180 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21181 (gst_video_box_set_property), (gst_video_box_transform_caps),
21182 (gst_video_box_set_caps), (gst_video_box_get_unit_size),
21183 (gst_video_box_ayuv): Lot of optimization in AYUV rendering
21184 using liboil. Will dot the same to I420 border generation
21187 2005-10-26 Zeeshan Ali <zeenix@gmail.com>
21189 * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
21190 (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
21191 (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
21192 * gst/rtp/gstrtpg711dec.h:
21193 * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
21194 (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
21195 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
21196 (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21197 (gst_rtpgsmenc_handle_buffer):
21198 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
21199 (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
21200 (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
21201 * gst/rtp/gstrtpgsmparse.h:
21202 Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
21203 inherits from the basertpdepayloader.
21205 2005-10-26 Julien MOUTTE <julien@moutte.net>
21207 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21208 (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21209 (gst_video_box_ayuv): Removing this forgotten debug.
21211 2005-10-26 Julien MOUTTE <julien@moutte.net>
21213 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21214 (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
21215 (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
21217 2005-10-26 Tim-Philipp Müller <tim at centricular dot net>
21219 * sys/oss/gstossaudio.c:
21220 * sys/oss/gstossdmabuffer.c:
21221 * sys/oss/gstosshelper.c:
21222 * sys/oss/gstossmixer.c:
21223 * sys/oss/gstossmixerelement.c:
21224 * sys/oss/gstossmixertrack.c:
21225 * sys/oss/gstosssink.c:
21226 * sys/oss/gstosssrc.c:
21227 Actually use the 'oss' debug category we register.
21229 2005-10-26 Julien MOUTTE <julien@moutte.net>
21231 * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
21232 (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
21233 Use gst_pad_get_parent and drop the ref that was added through
21236 2005-10-26 Thomas Vander Stichele <thomas at apestaart dot org>
21238 * gst/rtp/gstrtpgsmenc.c:
21241 2005-10-25 Edgard Lima <edgard.lima@indt.org.br>
21243 * gst/rtp/gstrtpg711dec.c
21244 Just removed a couple of lines of weird code used during
21245 development/test time.
21247 2005-10-25 Edgard Lima <edgard.lima@indt.org.br>
21249 * gst/rtp/Makefile.am
21251 * gst/rtp/gstrtpg711enc.c
21252 * gst/rtp/gstrtpg711enc.h
21253 * gst/rtp/gstrtpg711dec.c
21254 * gst/rtp/gstrtpg711dec.h
21255 Created G711 payloader and depayloader (it supports mulaw and alaw
21258 2005-10-25 Julien MOUTTE <julien@moutte.net>
21260 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21261 (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21262 Doh ! I introduced wingo's bug again ! Sorry...
21264 2005-10-25 Christian Schaller <christian@fluendo.com>
21266 * gst/rtp/Makefile.am: add missing header files for disting
21268 2005-10-25 Zeeshan Ali <zeenix@gmail.com>
21270 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
21271 (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
21272 (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
21273 (gst_rtpgsmenc_handle_buffer):
21274 * gst/rtp/gstrtpgsmenc.h:
21275 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
21276 (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
21277 (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
21278 (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
21279 * gst/rtp/gstrtpgsmparse.h:
21280 Getting the GSM (de)payloader working and compatible with our plans for RTP.
21282 2005-10-25 Julien MOUTTE <julien@moutte.net>
21284 * ext/libpng/gstpngdec.c: (user_info_callback),
21285 (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
21286 a newsegment event, move some redundant code in a single place.
21288 2005-10-25 Julien MOUTTE <julien@moutte.net>
21290 * ext/libpng/gstpngdec.c: (user_info_callback),
21291 (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
21292 hack to get correct colors order when we have a png image with
21295 2005-10-24 Edward Hervey <edward@fluendo.com>
21297 * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads):
21298 Call gst_element_no_more_pads when there will be no more pads.
21300 2005-10-24 Wim Taymans <wim@fluendo.com>
21302 * gst/rtp/Makefile.am:
21303 * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
21304 (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
21305 (gst_asteriskh263_init), (gst_asteriskh263_finalize),
21306 (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
21307 (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
21308 (gst_asteriskh263_plugin_init):
21309 * gst/rtp/gstasteriskh263.h:
21310 * gst/rtp/gstrtp.c: (plugin_init):
21311 * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
21312 (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
21313 (gst_rtph263enc_init), (gst_rtph263enc_finalize),
21314 (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
21315 (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
21316 (gst_rtph263enc_plugin_init):
21317 * gst/rtp/gstrtph263enc.h:
21318 Added two new payloaders, an RFC 2190 payloader for h263 and
21319 a payload convertor for an asterisk server.
21321 2005-10-24 Tim-Philipp Müller <tim at centricular dot net>
21323 * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
21324 Set bytes_per_sample correctly (is not always 4, but
21325 depends on width and number of channels).
21327 2005-10-24 Tim-Philipp Müller <tim at centricular dot net>
21329 * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
21330 (gst_flacenc_init), (gst_flacenc_sink_setcaps),
21331 (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
21332 (gst_flacenc_sink_event), (gst_flacenc_chain),
21333 (gst_flacenc_set_property), (gst_flacenc_get_property),
21334 (gst_flacenc_change_state):
21335 * ext/flac/gstflacenc.h:
21336 Fix seeking, so that flacenc can rewrite the header with the
21337 correct duration and amount of samples and all that at EOS;
21338 also set timestamps and granulepos on outgoing buffers; add
21339 debug category; fix state change function.
21341 2005-10-24 Julien MOUTTE <julien@moutte.net>
21343 * gst/videomixer/videomixer.c: Don't restrict video geometry
21346 2005-10-24 Julien MOUTTE <julien@moutte.net>
21348 * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
21349 (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
21350 Fix caps negotiation correctly, add debugging category.
21352 2005-10-24 Christian Schaller <christian@fluendo.com>
21354 * configure.ac: Port over Thomas's change from base listing all plugins
21356 2005-10-24 Julien MOUTTE <julien@moutte.net>
21358 * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
21361 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
21367 === release 0.9.4 ===
21369 2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
21372 Releasing 0.9.4, "Dromiceiomimus"
21374 2005-10-21 Tim-Philipp Müller <tim at centricular dot net>
21376 * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
21377 (gst_speexenc_src_query):
21378 Add position and duration query, fix query type function.
21380 * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
21381 (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
21382 Let's not set non-fixed caps on source pads.
21384 2005-10-21 Wim Taymans <wim@fluendo.com>
21386 * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
21387 * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
21388 (gst_avi_demux_handle_seek):
21389 Set correct stream_time in newsegment event.
21390 avi can also handle a duration query now.
21392 2005-10-20 Tim-Philipp Müller <tim at centricular dot net>
21394 * gst/matroska/matroska-demux.c:
21395 (gst_matroska_demux_handle_src_query),
21396 (gst_matroska_demux_handle_seek_event),
21397 (gst_matroska_demux_loop_stream_parse_id):
21398 Fix duration query; fix basetime in newsegment event after
21399 seek; fix duration in initial newsegment event.
21401 * gst/matroska/matroska-mux.c:
21402 (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
21403 Extract number of channels and samplerate from vorbis headers;
21404 add some debug messages when querying the durations of the
21407 2005-10-20 Wim Taymans <wim@fluendo.com>
21409 * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21410 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21411 (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21412 Set stream time correctly in newsegment.
21414 2005-10-20 Wim Taymans <wim@fluendo.com>
21416 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
21417 Correctly fill in the stream time.
21419 2005-10-19 Thomas Vander Stichele <thomas at apestaart dot org>
21421 * check/elements/level.c: (GST_START_TEST):
21422 * gst/level/gstlevel.c: (gst_level_message_new):
21423 * gst/level/level-example.c: (message_handler):
21424 use ELEMENT messages instead
21426 2005-10-19 Wim Taymans <wim@fluendo.com>
21428 * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
21429 (gst_dvdemux_src_query):
21430 * ext/flac/gstflacdec.c: (gst_flacdec_length),
21431 (gst_flacdec_src_query):
21432 * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
21433 * ext/speex/gstspeexdec.c: (speex_dec_src_query):
21434 * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
21435 * gst/debug/gstnavseek.c: (gst_navseek_seek):
21436 * gst/debug/progressreport.c: (gst_progress_report_report):
21437 * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
21438 * gst/matroska/matroska-demux.c:
21439 (gst_matroska_demux_handle_src_query):
21440 * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
21441 * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21442 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21443 (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
21444 (gst_wavparse_srcpad_event):
21447 2005-10-19 Tim-Philipp Müller <tim at centricular dot net>
21449 * gst/goom/filters.c:
21450 * gst/goom/graphic.h:
21451 * gst/goom/lines.c:
21452 Make inline functions either 'static inline' or 'extern inline',
21453 otherwise the Forte compiler apparently won't inline them (#317300).
21455 2005-10-19 Julien MOUTTE <julien@moutte.net>
21457 * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21458 (gst_pngdec_init), (user_error_fn), (user_warning_fn),
21459 (user_info_callback), (user_endrow_callback), (user_end_callback),
21460 (user_read_data), (gst_pngdec_caps_create_and_set),
21461 (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
21462 (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
21463 (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
21464 (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
21465 * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
21466 very nice and handle push/pull based model. if you have filesrc
21467 connected to it, it will do random access to load the png file.
21468 If you have a network source that can't do _getrange, it does
21469 progressive loading through the chain function.
21470 * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21471 (transform_rgb), (transform_bgr): Fix caps negotiation correctly
21472 thanks to Master Wim Taymans ;-)
21474 2005-10-18 Tim-Philipp Müller <tim at centricular dot net>
21476 * gst/matroska/Makefile.am:
21477 * gst/matroska/ebml-read.c:
21478 * gst/matroska/ebml-read.h:
21479 * gst/matroska/matroska-demux.c:
21480 * gst/matroska/matroska-demux.h:
21481 * gst/matroska/matroska.c: (plugin_init):
21482 Ported matroska demuxer to 0.9.
21484 2005-10-18 Michal Benes <michal dot benes at xeris dot cz>
21486 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
21488 * gst/matroska/matroska-mux.c:
21489 (gst_matroska_mux_video_pad_setcaps),
21490 (gst_matroska_mux_audio_pad_setcaps):
21491 Fix mpeg4 input handling (#318847); also, while we're at it,
21492 fix media type for Motion-JPEG: should be image/jpeg.
21494 2005-10-18 Wim Taymans <wim@fluendo.com>
21496 * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21497 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21498 (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
21499 Fix for segment-start/stop API change.
21501 2005-10-17 Julien MOUTTE <julien@moutte.net>
21503 * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
21504 (transform_rgb), (transform_bgr): Handle caps negotiation in a better
21507 2005-10-17 Julien MOUTTE <julien@moutte.net>
21509 * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21510 (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
21511 output declared in transform_caps.
21513 2005-10-17 Julien MOUTTE <julien@moutte.net>
21515 * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
21517 2005-10-17 Julien MOUTTE <julien@moutte.net>
21519 * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
21520 (gst_video_box_get_unit_size): Fix wrong size calculations and
21521 implement get_unit_size correctly.
21523 2005-10-17 Tim-Philipp Müller <tim at centricular dot net>
21528 * gst/flx/gstflxdec.c: (flx_decode_chunks):
21529 Fix gcc4 signedness issue.
21531 2005-10-17 Julien MOUTTE <julien@moutte.net>
21533 * configure.ac: Adding videomixer.
21534 * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21535 (user_read_data), (gst_pngdec_chain): More debugging.
21536 * gst/alpha/Makefile.am: Adding alphacolor
21537 * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
21538 (gst_alpha_color_class_init), (gst_alpha_color_init),
21539 (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
21540 (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
21541 (plugin_init): Ported to 0.9 using in place base tranform.
21542 * gst/videomixer/Makefile.am:
21543 * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
21544 (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
21545 (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
21546 (gst_videomixer_pad_init), (gst_videomixer_class_init),
21547 (gst_videomixer_init), (gst_videomixer_getcaps),
21548 (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
21549 (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
21550 (gst_videomixer_collected), (gst_videomixer_change_state): Ported
21551 to 0.9 using collectpads.
21553 2005-10-17 Zeeshan Ali <zeenix at gmail dot com>
21556 * gst/flx/Makefile.am:
21557 * gst/flx/gstflxdec.c: (gst_flxdec_init),
21558 (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
21559 (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
21560 * gst/flx/gstflxdec.h:
21561 flx plugin ported to 0.9
21563 2005-10-16 Thomas Vander Stichele <thomas at apestaart dot org>
21565 * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
21566 use new gst_version_string()
21568 2005-10-16 Andy Wingo <wingo@pobox.com>
21570 * configure.ac: GLIB_CHECK.
21572 2005-10-15 Julien MOUTTE <julien@moutte.net>
21574 * ext/libpng/Makefile.am:
21575 * ext/libpng/gstpng.c: (plugin_init):
21576 * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
21577 (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
21578 * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
21580 2005-10-14 Michal Benes <michal dot benes at xeris dot cz>
21582 Reviewed by: Tim-Philipp Müller <tim at centricular dot net>
21585 * gst/matroska/Makefile.am:
21586 * gst/matroska/ebml-ids.h:
21587 * gst/matroska/ebml-write.c:
21588 * gst/matroska/ebml-write.h:
21589 * gst/matroska/matroska-ids.h:
21590 * gst/matroska/matroska-mux.c:
21591 * gst/matroska/matroska-mux.h:
21592 * gst/matroska/matroska.c: (plugin_init):
21593 Port matroska muxer to 0.9 (#318847).
21595 2005-10-13 Tim-Philipp Müller <tim at centricular dot net>
21597 * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
21598 (comment_init), (comment_add):
21599 Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
21600 use GST_READ_UINT32_LE() and friends rather than the private
21601 implementation of those same macros.
21603 2005-10-13 Stefan Kost <ensonic@users.sf.net>
21605 * examples/stats/mp2ogg.c:
21608 2005-10-12 Stefan Kost <ensonic@users.sf.net>
21610 * examples/indexing/indexmpeg.c: (main):
21611 * ext/esd/esdmon.c: (gst_esdmon_open_audio),
21612 (gst_esdmon_close_audio), (gst_esdmon_change_state):
21613 * ext/esd/esdmon.h:
21614 * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
21615 * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
21616 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21617 * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21618 * gst/avi/gstavimux.c: (gst_avimux_init):
21619 * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
21620 * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
21621 * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
21622 * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
21623 (gst_multifilesrc_get), (gst_multifilesrc_open_file),
21624 (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
21625 * gst/oldcore/gstmultifilesrc.h:
21626 * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
21627 (gst_pipefilter_open_file), (gst_pipefilter_close_file),
21628 (gst_pipefilter_change_state):
21629 * gst/oldcore/gstpipefilter.h:
21630 * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
21631 * gst/videomixer/videomixer.c: (gst_videomixer_init):
21632 * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
21633 * sys/osxaudio/gstosxaudiosink.h:
21634 * sys/osxaudio/gstosxaudiosrc.h:
21635 renamed GST_FLAGS macros to GST_OBJECT_FLAGS
21636 moved bitshift from macro to enum definition
21638 2005-10-12 Thomas Vander Stichele <thomas at apestaart dot org>
21641 * ext/cairo/Makefile.am:
21642 * ext/cairo/gstcairo.c: (plugin_init):
21643 * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
21644 * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
21645 (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
21646 * ext/cairo/gsttimeoverlay.h:
21647 update of cairo-based timeoverlay to 1.0 Cairo API
21648 doesn't work yet for resizing of output sink
21650 2005-10-11 Wim Taymans <wim@fluendo.com>
21652 * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
21653 newsegment API fix.
21655 2005-10-11 Wim Taymans <wim@fluendo.com>
21657 * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
21658 (gst_dvdemux_demux_frame):
21659 * ext/flac/gstflacdec.c: (gst_flacdec_write):
21660 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21661 * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
21662 (gst_avi_demux_handle_seek):
21663 * gst/goom/gstgoom.c: (gst_goom_event):
21664 * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
21665 * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
21666 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
21667 (gst_wavparse_loop), (gst_wavparse_pad_convert),
21668 (gst_wavparse_srcpad_event):
21669 newsegment API update.
21671 2005-10-11 Andy Wingo <wingo@pobox.com>
21673 * ext/speex/gstspeexenc.c: Signedness cleanups.
21675 2005-10-10 Edgard Lima <edgard.lima@indt.org.br>
21678 * ext/speex/Makefile.am:
21679 * ext/speex/gstspeex.c:
21680 * ext/speex/gstspeexenc.c:
21681 Speexenc ported to 0.9
21683 2005-10-10 Wim Taymans <wim@fluendo.com>
21685 * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
21686 (gst_oss_sink_init), (gst_oss_sink_set_property),
21687 (gst_oss_sink_get_property), (gst_oss_sink_open),
21688 (gst_oss_sink_prepare), (gst_oss_sink_reset):
21689 * sys/oss/gstosssink.h:
21690 * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
21691 (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
21692 (gst_oss_src_prepare):
21693 Cleanups, make device configurable in the sink, handle and report
21696 2005-10-10 Wim Taymans <wim@fluendo.com>
21698 * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
21699 * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
21700 Make sure element is NULL before removing from the bin.
21702 2005-10-07 Andy Wingo <wingo@pobox.com>
21704 * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
21705 block forever in a read().
21706 (gst_dv1394src_bus_reset): Post a message when the cable is
21708 (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
21709 (gst_dv1394src_bus_reset): Don't unref the message.
21711 * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
21712 hacking. The only change should be that the state change stuff was
21713 put into basesrc's start() and stop() routines, which coalesces
21716 2005-10-07 Tim-Philipp Müller <tim at centricular dot net>
21721 * gst/debug/Makefile.am:
21722 Only compile efence plugin on systems that have mmap.
21724 2005-10-05 Tim-Philipp Müller <tim at centricular dot net>
21726 * gst/debug/Makefile.am:
21727 * gst/debug/breakmydata.c:
21728 * gst/debug/gstdebug.c:
21729 * gst/debug/gstnavigationtest.c:
21730 * gst/debug/gstnavseek.c:
21731 * gst/debug/gstnavseek.h:
21732 * gst/debug/progressreport.c:
21733 * gst/debug/testplugin.c:
21734 Port progressreport, navseek, navigationtest, testsink and
21737 2005-10-05 Edward Hervey <edward@fluendo.com>
21739 * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
21740 (gst_dvdemux_src_query):
21741 Fixes for better conversion
21743 2005-10-04 Michael Smith <msmith@fluendo.com>
21745 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
21746 (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
21747 * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
21748 (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
21749 Set state of elements to NULL before removing from bins.
21750 Set state of test element to NULL if we failed to move it to READY
21752 2005-10-04 Edward Hervey <edward@fluendo.com>
21754 * ext/dv/Makefile.am:
21755 * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver):
21756 Added DEFAULT <==> BYTES, TIME conversions on srcpad,
21757 Corrected the query function for position so it doesn't forget what
21758 format was asked, and calls the conversion functions on the correct pad.
21760 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
21763 back to development
21765 === release 0.9.3 ===
21767 2005-10-03 Thomas Vander Stichele <thomas at apestaart dot org>
21770 Releasing 0.9.3, "Aramis"
21772 2005-10-03 Andy Wingo <wingo@pobox.com>
21774 * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
21777 2005-10-02 Andy Wingo <wingo@pobox.com>
21779 * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
21781 * ext/flac/gstflacenc.c: Ported to 0.9.
21783 * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
21785 * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
21786 and link to gsttagedit. Enable flacenc.
21788 * ext/flac/gstflacdec.c: Re-enable tag reading.
21790 2005-09-30 Wim Taymans <wim@fluendo.com>
21792 * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
21793 * gst/rtp/gstrtpgsmparse.c:
21794 * gst/rtp/gstrtph263penc.c:
21795 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21796 (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21797 (gst_rtpmp4venc_set_property):
21798 * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21799 Various class and caps fixes from Andre Magalhaes (andrunko)
21801 2005-09-29 Wim Taymans <wim@fluendo.com>
21803 * gst/level/level-example.c: (main):
21804 Update for new bus API.
21806 2005-09-28 Tim-Philipp Müller <tim at centricular dot net>
21809 Fix unexpanded autoconf macro GST_DOC, which has been renamed
21810 to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
21812 2005-09-27 Tim-Philipp Müller <tim at centricular dot net>
21814 * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
21815 Fix playback of mono streams (bytes_per_sample should be set
21816 from the sample width and the number of channels negotiated,
21817 and not just be set to 4) (#317338)
21819 2005-09-26 Wim Taymans <wim@fluendo.com>
21821 * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
21822 (gst_rtpmpaenc_handle_buffer):
21823 Set buffer duration correctly.
21825 2005-09-26 Tim-Philipp Müller <tim at centricular dot net>
21827 * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
21828 (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
21829 (gst_avi_demux_change_state):
21830 Don't crash when encountering a stream with an unknown fourcc or
21831 codec id. Instead, create a pad of type video/x-avi-unknown or
21832 audio/x-avi-unknown, which as a side-effect also results in less
21833 confusing error messages in players ('no decoder' vs. 'no streams');
21834 minor fixes to state change function and class_init function.
21836 2005-09-24 Wim Taymans <wim@fluendo.com>
21838 * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
21839 * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
21842 2005-09-24 Thomas Vander Stichele <thomas at apestaart dot org>
21844 * check/elements/level.c: (GST_START_TEST):
21845 fix test for new GstClockTime use
21846 * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
21847 (gst_level_transform_ip):
21848 * gst/level/gstlevel.h:
21849 fix up the decay peak, ensuring the decay peak is never lower
21850 than the peak for that interval
21852 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
21854 * docs/plugins/gst-plugins-good-plugins.args:
21855 * docs/plugins/inspect/plugin-alpha.xml:
21856 * docs/plugins/inspect/plugin-rtp.xml:
21857 * gst/level/gstlevel.c: (gst_level_set_caps),
21858 (gst_level_transform_ip):
21861 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
21864 * check/elements/level.c: (GST_START_TEST):
21865 * gst/level/Makefile.am:
21866 * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
21867 (gst_level_set_property), (gst_level_get_property),
21868 (gst_level_set_caps), (gst_level_message_new),
21869 (gst_level_transform_ip):
21870 * gst/level/gstlevel.h:
21871 * gst/level/level-example.c: (message_handler), (main):
21872 convert to using GstClockTime for all time values, finally.
21874 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
21876 * gst/auparse/Makefile.am:
21877 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21880 * ext/cairo/Makefile.am:
21881 * ext/dv/Makefile.am:
21882 * ext/esd/Makefile.am:
21883 * ext/flac/Makefile.am:
21884 * ext/gconf/Makefile.am:
21885 * ext/gdk_pixbuf/Makefile.am:
21886 * ext/jpeg/Makefile.am:
21887 * ext/ladspa/Makefile.am:
21888 * ext/libcaca/Makefile.am:
21889 * ext/libmng/Makefile.am:
21890 * ext/libpng/Makefile.am:
21891 * ext/mikmod/Makefile.am:
21892 * ext/pango/Makefile.am:
21893 * ext/raw1394/Makefile.am:
21894 * ext/shout2/Makefile.am:
21895 * ext/speex/Makefile.am:
21896 * gst/alpha/Makefile.am:
21897 * gst/autodetect/Makefile.am:
21898 * gst/avi/Makefile.am:
21899 * gst/cutter/Makefile.am:
21900 * gst/debug/Makefile.am:
21901 * gst/effectv/Makefile.am:
21902 * gst/flx/Makefile.am:
21903 * gst/goom/Makefile.am:
21904 * gst/interleave/Makefile.am:
21905 * gst/law/Makefile.am:
21906 * gst/matroska/Makefile.am:
21907 * gst/median/Makefile.am:
21908 * gst/monoscope/Makefile.am:
21909 * gst/multipart/Makefile.am:
21910 * gst/oldcore/Makefile.am:
21911 * gst/rtp/Makefile.am:
21912 * gst/rtsp/Makefile.am:
21913 * gst/smoothwave/Makefile.am:
21914 * gst/smpte/Makefile.am:
21915 * gst/videobox/Makefile.am:
21916 * gst/videofilter/Makefile.am:
21917 * gst/videomixer/Makefile.am:
21918 * gst/wavenc/Makefile.am:
21919 * gst/wavparse/Makefile.am:
21920 * sys/oss/Makefile.am:
21921 * sys/osxaudio/Makefile.am:
21922 * sys/osxvideo/Makefile.am:
21923 fix up GST_LIBS use
21925 2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
21927 * gst/auparse/Makefile.am:
21928 * gst/auparse/gstauparse.c: (gst_auparse_chain):
21929 fix build of auparse
21931 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
21935 * gst/auparse/gstauparse.c:
21936 * gst/auparse/gstauparse.h:
21937 Auparse ported to 0.9.
21939 2005-09-22 Wim Taymans <wim@fluendo.com>
21942 * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
21943 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21944 (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21945 (gst_rtpmp4venc_set_property):
21946 * gst/rtp/gstrtpmp4venc.h:
21947 * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
21948 * gst/rtp/gstrtpmpaenc.h:
21949 Use is_filled to both check MTU and max-ptime of base class.
21951 2005-09-22 Wim Taymans <wim@fluendo.com>
21953 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21954 (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
21955 (gst_rtpmp4venc_set_property):
21956 Don't fragment packets with multiple frames.
21958 2005-09-22 Wim Taymans <wim@fluendo.com>
21961 * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
21962 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
21963 (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
21964 (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
21965 (gst_rtpmp4venc_get_property):
21966 * gst/rtp/gstrtpmp4venc.h:
21969 Make payload encoder a bit smarter and more correct with
21971 Added option in payloader to include config string in-band.
21973 2005-09-21 Wim Taymans <wim@fluendo.com>
21975 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21976 (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21977 (gst_rtspsrc_send):
21978 Strip spaces for key/value pairs.
21980 2005-09-21 Wim Taymans <wim@fluendo.com>
21982 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
21983 (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
21984 (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
21985 (gst_rtspsrc_change_state):
21986 More SDP parsing and caps setting.
21987 Do NO_PREROLL differently.
21988 add pads only after negotiated.
21990 * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
21991 (gst_udpsrc_getcaps):
21992 Implement the getcaps function.
21994 2005-09-21 Wim Taymans <wim@fluendo.com>
21996 * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
21997 (gst_rtpamrdec_chain):
21998 Handle multiple AMr packets per payload. Handle CRC and
22001 * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
22002 Make caps params strings for easy SDP mapping.
22004 * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
22005 Handle capsnego better.
22007 * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
22008 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
22009 Generate and parse config string in the caps.
22011 2005-09-21 Wim Taymans <wim@fluendo.com>
22016 * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
22017 Make extra params as strings.
22019 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
22020 (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
22021 (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
22022 Make state change return NO_PREROLL as this is a live
22025 * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
22026 Don't unref old caps when NULL.
22028 2005-09-20 Wim Taymans <wim@fluendo.com>
22030 * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
22031 (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
22032 (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
22033 (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
22034 (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
22035 (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
22036 * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
22037 * gst/rtsp/sdpmessage.h:
22039 Parse SDP and create caps.
22041 2005-09-20 Stefan Kost <ensonic@users.sf.net>
22043 * gst/alpha/gstalpha.c:
22044 fix element description
22046 2005-09-19 Wim Taymans <wim@fluendo.com>
22048 * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
22049 Don't check payload for now.
22051 2005-09-19 Wim Taymans <wim@fluendo.com>
22053 * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
22054 (gst_wavparse_init), (gst_wavparse_parse_file_header),
22055 (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
22056 (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
22057 (gst_wavparse_loop), (gst_wavparse_pad_convert),
22058 (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
22059 (gst_wavparse_change_state):
22060 * gst/wavparse/gstwavparse.h:
22061 Fix wavparse some more.
22063 2005-09-19 Wim Taymans <wim@fluendo.com>
22065 * check/elements/level.c: (GST_START_TEST):
22066 Fix for bus API change.
22068 2005-09-19 Wim Taymans <wim@fluendo.com>
22070 * gst/level/level-example.c: (main):
22071 Fix for new bus API.
22073 * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
22076 2005-09-15 Wim Taymans <wim@fluendo.com>
22078 * gst/rtp/Makefile.am:
22080 * gst/rtp/gstrtp.c: (plugin_init):
22081 * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
22082 (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
22083 (gst_rtpamrdec_change_state):
22084 * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
22085 (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
22086 (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
22087 * gst/rtp/gstrtpamrenc.h:
22088 * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
22089 (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
22090 (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
22091 * gst/rtp/gstrtpgsmenc.h:
22092 * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
22093 (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
22094 (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
22095 (gst_rtpgsmparse_change_state):
22096 * gst/rtp/gstrtpgsmparse.h:
22097 * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
22098 (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
22099 * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
22100 (gst_rtph263penc_class_init), (gst_rtph263penc_init),
22101 (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
22102 (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
22103 * gst/rtp/gstrtph263penc.h:
22104 * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
22105 (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
22106 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22107 (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
22108 (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
22109 (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
22110 (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
22111 * gst/rtp/gstrtpmp4venc.h:
22112 * gst/rtp/gstrtpmpadec.c:
22113 * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
22114 (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
22115 (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
22116 (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
22117 * gst/rtp/gstrtpmpaenc.h:
22118 Updates to payloader/depayloaders, make payloaders use
22120 Updated README with suggested RTP caps and how to convert
22122 Added config descriptor in mp4v payloader.
22124 2005-09-15 Andy Wingo <wingo@pobox.com>
22126 * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best):
22127 * gst/autodetect/gstautovideosink.c
22128 (gst_auto_video_sink_find_best): Update for new registry API.
22130 2005-09-14 Thomas Vander Stichele <thomas at apestaart dot org>
22132 * common/c-to-xml.py:
22133 * common/gtk-doc-plugins.mak:
22134 a simple py script to generate valid xml from a C example
22135 probably also need to strip an MIT license when we decide
22136 * docs/plugins/Makefile.am:
22137 * gst/level/Makefile.am:
22138 * gst/level/gstlevel.c: (gst_level_init):
22139 * gst/level/level-example.c: (message_handler), (main):
22140 add an example to level that will show up in the docs
22142 add a note for the future
22144 2005-09-14 Michael Smith <msmith@fluendo.com>
22146 * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
22147 Actually define the debug object being used in wavenc. Fixes #316205
22149 2005-09-14 Michael Smith <msmith@fluendo.com>
22151 * gst/smpte/Makefile.am:
22152 Link against GST_BASE_LIBS, to get it linked against libgstbase;
22153 needed to build on windows (bug 316204)
22155 2005-09-12 Andy Wingo <wingo@pobox.com>
22157 * autogen.sh (package): Now type 'make' to build gst-plugins-good.
22159 2005-09-09 Jan Schmidt <thaytan@mad.scientist.com>
22162 * gst/fdsrc/Makefile.am:
22163 * gst/fdsrc/gstfdsrc.c:
22164 * gst/fdsrc/gstfdsrc.h:
22165 Move fdsrc back into gstreamer core elements.
22167 * gst/level/gstlevel.c: (gst_level_class_init),
22168 (gst_level_transform_ip):
22169 * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
22170 Basetransform changes.
22172 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
22174 * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
22175 * ext/jpeg/smokecodec.c: (find_best_size):
22176 fix compiler warnings
22178 2005-09-09 Thomas Vander Stichele <thomas at apestaart dot org>
22180 * gst-plugins-good.spec.in:
22182 * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
22183 (gst_multiudpsink_render), (gst_multiudpsink_add),
22184 (gst_multiudpsink_clear):
22185 it actually helps to actually stream if we hook up the
22186 "add" signal to an actual implementation
22187 * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
22190 2005-09-08 Flavio Oliveira <flavio.oliveira@indt.org.br>
22192 * ext/jpeg/Makefile.am:
22193 * ext/jpeg/gstjpeg.c
22194 * ext/jpeg/gstjpegenc.c:
22195 * ext/jpeg/gstsmokeenc.c:
22197 2005-09-07 Stefan Kost <ensonic@users.sf.net>
22199 * ext/flac/gstflacdec.c:
22200 * ext/flac/gstflacenc.c:
22201 * ext/flac/gstflactag.c:
22202 * ext/speex/gstspeexenc.c:
22203 gsttaginterface.h -> gsttagsetter.h
22205 2005-09-07 Jan Schmidt <thaytan@mad.scientist.com>
22208 * gst/debug/Makefile.am:
22209 * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
22210 (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
22211 (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
22212 (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
22213 (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
22214 Port to 0.9 and re-enable efence plugin.
22216 2005-09-06 Tim-Philipp Müller <tim at centricular dot net>
22218 * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
22219 (gst_flacdec_write), (gst_flacdec_convert_src):
22220 * ext/flac/gstflacdec.h:
22221 Add support for flac files with 24/32 bits per sample; and misc.
22222 minor clean-ups. Seeking is still partly broken (for me at least).
22224 2005-09-06 Wim Taymans <wim@fluendo.com>
22226 * gst/rtp/Makefile.am:
22227 * gst/rtp/gstrtp.c: (plugin_init):
22228 * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
22229 (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
22230 (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
22231 (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
22232 (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
22233 (gst_rtpmp4vdec_plugin_init):
22234 * gst/rtp/gstrtpmp4vdec.h:
22235 * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
22236 (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
22237 (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
22238 (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
22239 (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
22240 (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
22241 * gst/rtp/gstrtpmp4venc.h:
22242 * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
22243 * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
22244 Added mpeg4 video payload encoder/decoder.
22245 Added some docs in mpa payloader.
22247 === release 0.9.1 ===
22249 2005-09-06 Thomas Vander Stichele <thomas at apestaart dot org>
22256 releasing 0.9.1, "Blondie"
22258 2005-09-05 Andy Wingo <wingo@pobox.com>
22260 * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
22261 here from the state change handler, so we fire signals without
22262 holding the state lock.
22264 2005-09-02 Andy Wingo <wingo@pobox.com>
22266 * All plugins updated for element state changes.
22268 2005-09-01 Thomas Vander Stichele <thomas at apestaart dot org>
22271 * check/.cvsignore:
22272 * check/Makefile.am:
22273 * check/elements/.cvsignore:
22274 * check/elements/level.c: (setup_level), (cleanup_level),
22275 (GST_START_TEST), (level_suite), (main):
22276 add a test for level
22277 * common/release.mak:
22278 move the enum checking to release.mak
22280 add valgrind and check checking
22281 * gst/level/gstlevel.c: (gst_level_transform):
22282 * gst/level/gstlevel.h:
22283 fix Andy's cast bug
22284 convert a field to int
22285 fix the arithmetic to int when checking for emit so that a
22286 100-sample buffer of a 1000Hz stream triggers after 0.1 sec
22288 2005-09-01 Thomas Vander Stichele <thomas at apestaart dot org>
22293 * common/plugins.xsl:
22294 wrap Description into a refsect2
22295 * docs/Makefile.am:
22296 * docs/plugins/Makefile.am:
22297 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22298 * docs/plugins/gst-plugins-good-plugins-sections.txt:
22299 * gst/goom/Makefile.am:
22300 * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
22301 (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
22302 (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
22303 (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
22304 (gst_goom_change_state):
22305 * gst/goom/gstgoom.h:
22307 add an example launch line
22308 * gst/level/gstlevel.h:
22309 * gst/monoscope/gstmonoscope.c:
22312 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
22315 * docs/plugins/Makefile.am:
22316 * docs/plugins/gst-plugins-good-plugins-docs.sgml:
22317 * docs/plugins/gst-plugins-good-plugins-sections.txt:
22318 * docs/plugins/gst-plugins-good-plugins.types:
22319 document elements and plugins. Shazam !
22321 2005-08-30 Thomas Vander Stichele <thomas at apestaart dot org>
22323 * split off gst-plugins-good from gst-plugins. Old ChangeLog can
22324 be found under doc/random/ChangeLog-0.8