gst/matroska/matroska-demux.*: Close the current segment if we're doing a non-flushin...
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
4         (gst_matroska_demux_element_send_event),
5         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
6         * gst/matroska/matroska-demux.h:
7         Close the current segment if we're doing a non-flushing seek and send
8         the close-segment and the new segment of the seek from the streaming
9         thread.
10
11 2008-08-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
12
13         * ext/flac/gstflacenc.c: (gst_flac_enc_write_callback),
14         (gst_flac_enc_check_discont), (gst_flac_enc_chain),
15         (gst_flac_enc_change_state):
16         * ext/flac/gstflacenc.h:
17         Handle non-zero start timestamps correctly, mark header packets as
18         IN_CAPS and print a warning and suggest using audiorate if stream
19         discontinuities are detected. When FLAC supports flushing the encoder
20         somehow this should be done for discontinuities instead.
21
22         Remove some unused variables from the instance struct.
23
24 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
25
26         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback):
27         If seeking failed return the appropiate return value to FLAC.
28         Otherwise it thinks seeking was successfull and tries to rewrite
29         parts of the headers which then get appended to the output.
30
31 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
32
33         Patch by: Frederic Crozat <fcrozat@mandriva.org>
34
35         * ext/esd/gstesd.c: (plugin_init):
36         * ext/flac/gstflac.c: (plugin_init):
37         * ext/shout2/gstshout2.c: (plugin_init):
38         * ext/wavpack/gstwavpack.c: (plugin_init):
39         * sys/oss/gstossaudio.c: (plugin_init):
40         * sys/v4l2/gstv4l2.c: (plugin_init):
41         Make sure gettext returns translations in UTF-8 encoding rather
42         than in the current locale encoding (#546822).
43
44 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
45
46         * ext/flac/gstflacdec.c:
47         Add FIXME for 0.11 to simply output everything with width=32 as given
48         by FLAC and let audioconvert handle the conversions instead of doing
49         them in flacdec.
50
51 2008-08-07  Jan Schmidt  <Jan.Schmidt@sun.com>
52
53         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
54         When outputting a pad template range for the size, include a framerate
55         range too, to avoid 'not a real subset of template caps' errors.
56
57 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
58
59         Based on a patch by: Jonathan Matthew <notverysmart at gmail dot com>
60
61         * ext/flac/Makefile.am:
62         * ext/flac/gstflac.c: (plugin_init):
63         * ext/flac/gstflactag.c: (gst_flac_tag_setup_interfaces),
64         (gst_flac_tag_base_init), (gst_flac_tag_class_init),
65         (gst_flac_tag_dispose), (gst_flac_tag_init),
66         (gst_flac_tag_sink_setcaps), (gst_flac_tag_chain),
67         (gst_flac_tag_change_state):
68         * ext/flac/gstflactag.h:
69         Port flactag to 0.10, add documentation for it and clean it up a bit.
70         Fixes bug #413841.
71
72         * docs/plugins/Makefile.am:
73         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
74         * docs/plugins/gst-plugins-good-plugins-sections.txt:
75         * docs/plugins/gst-plugins-good-plugins.hierarchy:
76         * docs/plugins/gst-plugins-good-plugins.interfaces:
77         * docs/plugins/gst-plugins-good-plugins.prerequisites:
78         * docs/plugins/inspect/plugin-flac.xml:
79         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init):
80         * ext/flac/gstflacdec.h:
81         * ext/flac/gstflacenc.c: (gst_flac_enc_base_init):
82         * ext/flac/gstflacenc.h:
83         Add flactag and flacenc to the documentation and mark
84         the private parts of the flacdec instance structure as private.
85
86         Also use gst_element_class_set_details_simple() in flacdec and
87         flacenc.
88
89 2008-08-06  Stefan Kost  <ensonic@users.sf.net>
90
91         * gst/qtdemux/qtdemux.c:
92           Use audio/x-qdm for caps. Collect some info - mplayer has a decoder
93           for it but ffmpeg does not.
94
95 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
96
97         * gst/wavparse/gstwavparse.c:
98           Handle the list chunk and use gst_riff_parse_info() to parse the info
99           sub-chunk.
100
101 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
102
103         * gst/wavparse/gstwavparse.c:
104           Handle the acid chunk and send tempo as part of tags. Other fields are
105           interesting too, but need more tag-definitions. Fixes #545433.
106
107 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
108
109         * gst/wavparse/gstwavparse.c:
110           Refactor wavparse. Call _reset() from dispose() and move old code from
111           dispose into reset. This way we don't leak taglists when we abort
112           parsing. Fix some comments. Move code for skipping a chunk into extra
113           function. Replace chunk sizes with a const to ease readability.         
114
115 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
116
117         Patch by: Aurelien Grimaud <gstelzz at yahoo dot fr>
118
119         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_alloc_udp_ports):
120         Improve udp port setup. Fixes #545710.
121
122 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
123
124         * gst/rtp/Makefile.am:
125         * gst/rtp/gstrtp.c: (plugin_init):
126         * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init),
127         (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init),
128         (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process),
129         (gst_rtp_mp1s_depay_set_property),
130         (gst_rtp_mp1s_depay_get_property),
131         (gst_rtp_mp1s_depay_change_state),
132         (gst_rtp_mp1s_depay_plugin_init):
133         * gst/rtp/gstrtpmp1sdepay.h:
134         Add MP1S depayloader.
135
136         * gst/rtsp/URLS:
137         Some more sample rtsp streams.
138
139 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
140
141         * gst/rtsp/URLS:
142         Add another URL.
143
144         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
145         * tests/check/elements/rglimiter.c: (GST_START_TEST):
146         Add some more debug info.
147
148 2008-08-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
149
150         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
151         Provide cbSize field for audio extra_data size, and take care to
152         pad extra_data.
153
154 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
155
156         * gst/qtdemux/qtdemux.c:
157           Return the result of gst_pad_{start,stop}_task instead of hard-coded
158           TRUE.
159
160 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
161
162         * gst/qtdemux/qtdemux.c:
163         * gst/qtdemux/qtdemux_fourcc.h:
164           Add keyword tag support. Fixes #520694 for qtdemux.
165
166 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
167
168         * gst/qtdemux/qtdemux.c:
169           Add support for tmpo tag (BPM).
170
171 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
172
173         * ext/flac/gstflacenc.c: (gst_flac_enc_query_peer_total_samples),
174         (gst_flac_enc_sink_setcaps), (gst_flac_enc_write_callback):
175         Set an estimate for the total number of samples that will be encoded
176         if possible to help decoders if the streaminfo can't be rewritten
177         later (like when muxing into Ogg containers).
178
179         Add a warning if we get header packets after data packets as those
180         will get lost when muxing into Ogg, i.e. rewriting the headers doesn't
181         work.
182
183 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
184
185         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
186         (gst_flac_dec_write):
187         Support decoding of all depths between 4 and 32 bits and read the
188         depth from the streaminfo header if needed. Also support all sampling
189         rates between 1 and 655350 Hz.
190
191         * ext/flac/gstflacenc.c:
192         (gst_flac_enc_caps_append_structure_with_widths),
193         (gst_flac_enc_sink_getcaps), (gst_flac_enc_sink_setcaps),
194         (gst_flac_enc_chain):
195         * ext/flac/gstflacenc.h:
196         Support encoding in all bit depths supported by the streamable
197         subformat (i.e. 8, 12, 16, 20 and 24 bits) and all sampling rates
198         between 1 Hz and 655350 Hz.
199
200 2008-08-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
201
202         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
203         (gst_flac_enc_sink_getcaps):
204         Support encoding of up to 8 channels.
205
206 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
207
208         * ext/soup/gstsouphttpsrc.c:
209         * ext/soup/gstsouphttpsrc.h:
210         Fix seeking race condition in #540300
211         Patch By: Wouter Cloetens  <wouter at mind be>
212
213 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
214
215         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek),
216         (gst_matroska_demux_element_send_event),
217         (gst_matroska_demux_handle_seek_event),
218         (gst_matroska_demux_handle_src_event):
219         When receiving a SEEK event on a specific pad first search for a seek
220         table entry for the stream of the pad and then fall back to an entry
221         for a different stream.
222
223 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
224
225         * configure.ac:
226         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
227         * gst/matroska/matroska-ids.h:
228         Build depend on core CVS for the attachment tag.
229
230 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
231
232         * configure.ac:
233         * gst/matroska/Makefile.am:
234         * gst/matroska/lzo.c: (get_byte), (get_len), (copy),
235         (copy_backptr), (lzo1x_decode), (main):
236         * gst/matroska/lzo.h:
237         * gst/matroska/matroska-demux.c:
238         (gst_matroska_demux_read_track_encoding),
239         (gst_matroska_decompress_data), (gst_matroska_decode_data),
240         (gst_matroska_decode_buffer),
241         (gst_matroska_decode_content_encodings),
242         (gst_matroska_demux_read_track_encodings),
243         (gst_matroska_demux_add_stream),
244         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
245         * gst/matroska/matroska-ids.h:
246         Decode the codec private data and following ContentEncoding if
247         necessary.
248
249         Support bzip2, lzo and header stripped compression. For lzo use the
250         ffmpeg lzo implementation as liblzo is GPL licensed.
251         
252         Fix zlib decompression.
253
254 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
255
256         * gst/matroska/matroska-mux.c:
257         (gst_matroska_mux_audio_pad_setcaps):
258         Fix muxing of MP3/MP2 with different MPEG versions by calculating the
259         duration of a frame with the new mpegaudioversion caps field.
260
261 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
262
263         * gst/matroska/matroska-demux.c: (gst_matroska_demux_finalize),
264         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
265         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
266         (gst_matroska_demux_stream_from_num),
267         (gst_matroska_demux_tracknumber_unique),
268         (gst_matroska_demux_add_stream), (gst_matroska_demux_send_event),
269         (gst_matroska_demux_handle_seek_event),
270         (gst_matroska_demux_sync_streams),
271         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
272         (gst_matroska_demux_loop):
273         * gst/matroska/matroska-demux.h:
274         Allow an infinite number of stream inside Matroska containers and use
275         a GPtrArray for storing them instead of allowing "only" 127 streams.
276
277 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
278
279         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
280         (gst_ebml_read_change_state), (gst_ebml_read_element_level_up),
281         (gst_ebml_read_peek_bytes), (gst_ebml_read_element_id),
282         (gst_ebml_read_element_length), (gst_ebml_peek_id),
283         (gst_ebml_read_get_length), (gst_ebml_read_skip),
284         (gst_ebml_read_buffer), (gst_ebml_read_bytes),
285         (gst_ebml_read_uint), (gst_ebml_read_sint), (_ext2dbl),
286         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_date),
287         (gst_ebml_read_master), (gst_ebml_read_binary),
288         (gst_ebml_read_header):
289         * gst/matroska/ebml-write.c: (gst_ebml_write_element_id),
290         (gst_ebml_write_element_size), (gst_ebml_write_uint),
291         (gst_ebml_write_sint), (gst_ebml_write_ascii),
292         (gst_ebml_write_master_start), (gst_ebml_write_master_finish),
293         (gst_ebml_replace_uint):
294         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
295         (gst_matroska_demux_read_track_encoding),
296         (gst_matroska_demux_read_track_encodings),
297         (gst_matroska_demux_add_stream), (gst_matroskademux_do_index_seek),
298         (gst_matroska_demux_send_event),
299         (gst_matroska_demux_element_send_event),
300         (gst_matroska_demux_handle_seek_event),
301         (gst_matroska_demux_handle_src_event),
302         (gst_matroska_demux_init_stream),
303         (gst_matroska_demux_parse_tracks),
304         (gst_matroska_demux_parse_index_cuetrack),
305         (gst_matroska_demux_parse_index_pointentry),
306         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
307         (gst_matroska_demux_parse_metadata_id_simple_tag),
308         (gst_matroska_demux_parse_metadata_id_tag),
309         (gst_matroska_demux_parse_metadata),
310         (gst_matroska_demux_parse_attached_file),
311         (gst_matroska_demux_parse_attachments),
312         (gst_matroska_demux_parse_chapters), (gst_matroska_ebmlnum_uint),
313         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_push_hdr_buf),
314         (gst_matroska_demux_push_flac_codec_priv_data),
315         (gst_matroska_demux_push_xiph_codec_priv_data),
316         (gst_matroska_demux_push_dvd_clut_change_event),
317         (gst_matroska_demux_add_mpeg_seq_header),
318         (gst_matroska_demux_add_wvpk_header),
319         (gst_matroska_demux_check_subtitle_buffer),
320         (gst_matroska_decode_buffer),
321         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
322         (gst_matroska_demux_parse_cluster),
323         (gst_matroska_demux_parse_contents_seekentry),
324         (gst_matroska_demux_parse_contents),
325         (gst_matroska_demux_loop_stream_parse_id),
326         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop),
327         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
328         (gst_matroska_demux_subtitle_caps),
329         (gst_matroska_demux_change_state):
330         * gst/matroska/matroska-ids.c:
331         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
332         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
333         (gst_matroska_mux_video_pad_setcaps),
334         (xiph3_streamheader_to_codecdata),
335         (vorbis_streamheader_to_codecdata),
336         (theora_streamheader_to_codecdata),
337         (gst_matroska_mux_audio_pad_setcaps),
338         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
339         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
340         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
341         (gst_matroska_mux_best_pad), (gst_matroska_mux_write_data),
342         (gst_matroska_mux_collected), (gst_matroska_mux_change_state):
343         Fix indention everywhere. A broken indent version has added newlines
344         after every single declaration some time ago.
345
346 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
347
348         * gst/matroska/matroska-demux.c:
349         (gst_matroska_demux_loop_stream_parse_id):
350         If no Tracks are found error out instead of trying it again until the
351         end of time.
352
353 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
354
355         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
356         Fix demuxing of raw integer audio. The samples are unsigned only for 8
357         bit and signed otherwise, not the other way around.
358
359 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
360
361         * gst/matroska/matroska-mux.c:
362         Add more raw YUV formats to the list of supported formats.
363
364 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
365
366         * gst/matroska/matroska-mux.c:
367         (gst_matroska_mux_audio_pad_setcaps):
368         Add support for muxing raw float audio now that the spec defines the
369         endianness and add support for muxing raw integer audio with 24 and
370         32 bits.
371
372         Allow muxing of more than 8 audio channels.
373
374 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
375
376         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
377         (gst_matroska_mux_reset), (gst_matroska_mux_start):
378         Add locking to the global array of used track UIDs to prevent random
379         crashes if more than a single matrosmux instance is used.
380
381         Use 64 bit values for the track UIDs.
382
383         Use the global GRandom of GLib instead of creating our own one
384         for the few random numbers we need every single time.
385
386 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
387
388         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
389         (gst_flac_dec_setup_stream_decoder),
390         (gst_flac_dec_update_metadata):
391         Always post the audio-codec tag, not only if other tags are present.
392
393 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
394
395         * configure.ac:
396         Back to development -> 0.10.9.1
397
398 === release 0.10.9 ===
399
400 2008-07-31  Jan Schmidt <jan.schmidt@sun.com>
401
402         * configure.ac:
403           releasing 0.10.9, "Steam Train Rolling"
404
405 2008-07-31  Jan Schmidt  <jan.schmidt@sun.com>
406
407         * ext/soup/gstsouphttpsrc.c:
408         Don't throw an error when soup completes a msg with status
409         'cancelled', as that indicates we cancelled a request while
410         shutting down or seeking, and it's not an error.
411         Fixes: #540300 again.
412
413 2008-07-28  Jan Schmidt  <jan.schmidt@sun.com>
414
415         * configure.ac:
416         0.10.8.4 pre-release
417
418 2008-07-25  Edward Hervey  <edward.hervey@collabora.co.uk>
419
420         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment):
421         Fix segment-stop regression.
422         Add documentation regarding segments in quicktime files by Wim Taymans.
423         Fixes #544509
424
425 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
426
427         * configure.ac:
428         0.10.8.3 pre-release
429
430         * po/LINGUAS:
431         * po/pt_BR.po:
432         Add pt_BR translation
433
434 2008-07-23  Michael Smith <msmith@songbirdnest.com>
435
436         * gst/goom/convolve_fx.c:
437         * gst/goom/filters.c:
438         * gst/goom/goom_config.h:
439         * gst/goom/goom_core.c:
440         * gst/goom/goom_tools.h:
441           Fix build with MSVC: include glib.h to define inline appropriately,
442           use header guards where needed.
443         * gst/udp/gstudpnetutils.c:
444         * gst/udp/gstudpsrc.c:
445           Fix build with MSVC: use WSA* constants/functions where appropriate, use
446           g_snprintf rather than snprintf.
447           Fixes #544433.
448
449 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
450
451         * gst/debug/gsttaginject.c:
452         * gst/debug/gsttaginject.h:
453           Sent tags in _transform_ip() instead of _start(). Fixes #543404
454           partially.
455
456 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
457
458         * configure.ac:
459         0.10.8.2 pre-release
460
461 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
462
463         * ext/Makefile.am:
464         Finish hooking up pulseaudio plugin to the build.
465
466         * ext/pulse/pulsemixerctrl.c:
467         Fix compilation error.
468
469 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
470
471         * po/LINGUAS:
472         * po/lt.po:
473         Add new lithunian translation, and add french to the LINGUAS
474         file.
475
476 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
477
478         * ext/soup/gstsouphttpsrc.c:
479         Fix Soup HTTP source seeking.
480         Patch By: Wouter Cloetens  <wouter at mind be>
481         Fixes: #540300
482
483         * tests/check/elements/.cvsignore:
484         Ignore new check programs.
485
486 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
487
488         * configure.ac:
489         * docs/plugins/Makefile.am:
490         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
491         * docs/plugins/gst-plugins-good-plugins-sections.txt:
492         * docs/plugins/gst-plugins-good-plugins.args:
493         * docs/plugins/gst-plugins-good-plugins.hierarchy:
494         * docs/plugins/gst-plugins-good-plugins.interfaces:
495         * docs/plugins/gst-plugins-good-plugins.prerequisites:
496         * docs/plugins/inspect/plugin-interleave.xml:
497         * docs/plugins/inspect/plugin-replaygain.xml:
498         * tests/check/Makefile.am:
499
500         Move replaygain and interleave plugins from -bad.
501         Fixes: #543406
502         Fixes: #536228
503
504 2008-07-18  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
505
506         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
507         (qtdemux_parse_trak):
508         Revert ISO base media spec based pixel-aspect-ratio calculation.
509         Fixes #543300.
510
511 2008-07-17  Edward Hervey  <edward.hervey@collabora.co.uk>
512
513         * sys/osxvideo/osxvideosink.m:
514         Fix minor build issues on macosx.
515         Fixes #543054
516
517 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
518
519         * configure.ac::
520         * ext/taglib/Makefile.am::
521           Only use -Wno-attributes (which is there to work around a
522           bug in the taglib 1.5 headers) if the c++ compiler actually
523           supports it (#543255).
524
525 2008-07-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
526
527         Patch by: Benoit Fouet <benoit.fouet purplelabs com>
528
529         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
530           Avoid compiler warning by initialising variable to NULL (#543259).
531
532 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
533
534         * gst/debug/gsttaginject.c: (gst_tag_inject_start):
535         Don't pass NULL taglists to gst_tag_list_is_empty().
536
537 2008-07-14  Sebastian Dröge  <slomo@circular-chaos.org>
538
539         * tests/check/elements/cmmldec.c: (GST_START_TEST):
540         * tests/check/elements/rtp-payloading.c: (rtp_pipeline_create),
541         (rtp_pipeline_run):
542         * tests/check/elements/souphttpsrc.c: (souphttpsrc_suite):
543         Don't use declarations after statements.
544
545 2008-07-14  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
546
547         * ext/jpeg/gstjpegdec.c:
548         Align documentation with reality.
549
550 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
551
552         * gst/udp/gstudpnetutils.c:
553         EAI_ADDRFAMILY was obsoleted in BSD at some point. Define it to the
554         old value (1) if it's not defined which should not cause any problems
555         as we're using it internal only anyway.
556
557 2008-07-14  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
558
559         Patch by: Alessandro Decina <alessandro at nnva dot org>
560
561         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp):
562         Fix build of avidemux on big endian architectures.
563
564 2008-07-10  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
565
566         Patch by: Thiago Sousa Santos <thiagoss at lcc dot ufcg dot edu dot br>
567
568         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
569         Correctly distinguish 8bit vs 16bit raw audio.  Fixes #542410.
570
571 2008-07-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
572
573         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
574         (qtdemux_parse_trak):
575         Set pixel-aspect-ratio in caps using display width and height
576         provided in track.
577
578 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
579
580         * configure.ac:
581         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
582         flags that are invalid for C++. Fixes bug #516509.
583
584 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
585
586         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
587         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps):
588         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
589         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
590         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
591         * tests/examples/equalizer/demo.c: (message_handler):
592         * tests/examples/spectrum/demo-audiotest.c: (message_handler):
593         * tests/examples/spectrum/demo-osssrc.c: (message_handler):
594         Don't use declarations after statements and variable length arrays.
595
596 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
597
598         Patch by: Daniel Drake <dsd at gentoo dot org>
599
600         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture),
601         (gst_v4l2src_get_nearest_size):
602         Try progressive video if interlaced fails. Fixes bug #541956
603         and the usage of v4l2src on OLPC.
604
605 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
606
607         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
608         (gst_rtp_speex_depay_process):
609         * gst/rtp/gstrtpspeexdepay.h:
610         Revert last change: Only the jitterbuffer is able to convert RTP to
611         Gstreamer timestamps and normal (de)payloaders should simply copy it.
612         Reopens bug #541787.
613
614 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
615
616         * gst/rtp/gstrtpvrawdepay.c:
617           Include stdlib.h for atoi().
618
619         * gst/rtsp/gstrtspsrc.c:
620           Use floating point math for latencies < 0 sec in log output.
621
622 2008-07-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
623
624         Patch by: Tomasz Grobelny <tomasz at grobelny dot oswiecenia dot net>
625
626         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_init),
627         (gst_rtp_speex_depay_process):
628         * gst/rtp/gstrtpspeexdepay.h:
629         Take timestamp from the RTP packet as a first step to fix problems
630         with transmission over RTP when the network is not reliable.
631         Fixes bug #541787.
632
633 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
634
635         Patch by: Tero Saarni <tero dot saarni at gmail dot com>
636
637         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_uri):
638         Fix parsing of udp:// URIs containing IPv6 addresses.
639         Fixes bug #541650.
640
641 2008-07-04  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
642
643         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
644         Do not leak incoming buffers.
645
646 2008-07-03  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
647
648         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
649
650         * configure.ac:
651         Fix build of the RTP plugin with mingw32 by linking to ws2_32
652         for htons() and htonl(). Fixes bug #541412.
653
654 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
655
656         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
657         (gst_matroska_demux_add_stream), (gst_matroska_demux_query),
658         (gst_matroska_demux_element_query),
659         (gst_matroska_demux_handle_src_query),
660         (gst_matroska_demux_handle_seek_event):
661         Handle position and duration query in DEFAULT format if the
662         pad's track has a default frame duration set.
663
664         Fix seeking now that the segment's duration doesn't contain the
665         (possibly wrong or inaccurate) duration of the Matroska file.
666
667 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
668
669         * gst/matroska/ebml-read.c: (_ext2dbl):
670         Use NAN constant instead of 0.0/0.0 if possible. NAN is defined
671         in math.h except on MSVC where it is defined in xmath.h.
672         Fixes compilation with MSVC.
673
674 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
675
676         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
677         (gst_matroska_demux_handle_src_query),
678         (gst_matroska_demux_parse_info),
679         (gst_matroska_demux_loop_stream_parse_id):
680         * gst/matroska/matroska-demux.h:
681         Don't set the segment duration to the duration from the Matroska
682         header as this value could be wrong and is just informational.
683
684 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
685
686         * gst/matroska/matroska-demux.c:
687         (gst_matroska_demux_loop_stream_parse_id):
688         If no Tracks element is found until the first Cluster is found
689         search it and error out if none is found in the complete file.
690
691 2008-07-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
692
693         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
694         Resync non-subtitle tracks too if a too large gap compared to other
695         tracks is detected.
696
697 2008-07-01  Wim Taymans  <wim.taymans@collabora.co.uk>
698
699         * gst/rtp/Makefile.am:
700         * gst/rtp/gstrtp.c: (plugin_init):
701         * gst/rtp/gstrtpvrawdepay.c: (gst_rtp_vraw_depay_base_init),
702         (gst_rtp_vraw_depay_class_init), (gst_rtp_vraw_depay_init),
703         (gst_rtp_vraw_depay_setcaps), (gst_rtp_vraw_depay_process),
704         (gst_rtp_vraw_depay_change_state),
705         (gst_rtp_vraw_depay_plugin_init):
706         * gst/rtp/gstrtpvrawdepay.h:
707         * gst/rtp/gstrtpvrawpay.c: (gst_rtp_vraw_pay_get_type),
708         (gst_rtp_vraw_pay_base_init), (gst_rtp_vraw_pay_class_init),
709         (gst_rtp_vraw_pay_init), (gst_rtp_vraw_pay_finalize),
710         (gst_rtp_vraw_pay_setcaps), (gst_rtp_vraw_pay_handle_buffer),
711         (gst_rtp_vraw_pay_plugin_init):
712         * gst/rtp/gstrtpvrawpay.h:
713         Add raw video pay and depayloaders, see RFC4175.
714
715 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
716
717         * ext/libpng/gstpngdec.c:
718         Don't return GST_FLOW_ERROR when buffer_alloc fails - return
719         whatever it returned.
720
721 2008-06-29  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
722
723         * gst/avi/avi-ids.h:
724         Add vprp chunk related structures.
725         * gst/avi/gstavidemux.c: (gst_avi_demux_riff_parse_vprp),
726         (gst_avi_demux_parse_stream):
727         Parse optional vprp chunk and add calculated pixel-aspect-ratio
728         to caps.  Fixes #539482.
729         * gst/avi/gstavimux.h:
730         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset),
731         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_riff_get_avi_header):
732         Add a vprp chunk if non-trival pixel-aspect-ratio provided in caps.
733
734 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
735
736         * tests/check/elements/avimux.c: (check_avimux_pad):
737         Adjust avimux unit test according to increased streamheader size.
738
739 2008-06-27  David Schleef  <ds@schleef.org>
740
741         * gst/qtdemux/qtdemux.c: Add Dirac stream type
742
743 2008-06-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
744
745         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
746         * gst/avi/gstavimux.h:
747         Add 8 bytes to current streamheader to make for a complete one
748         and to make more players happy.  Fixes #519460.
749
750 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
751
752         * sys/v4l2/v4l2_calls.c::
753           Don't include unused gstv4l2xoverlay.h. Fixes build
754           in case where X11 headers are not installed.
755
756 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
757
758         * ext/dv/gstdv.c: (plugin_init):
759         Fix compilation.
760
761 2008-06-26  Edward Hervey  <edward.hervey@collabora.co.uk>
762
763         * ext/dv/gstdv.c: (plugin_init):
764         Marking rank of dvdec as GST_RANK_MARGINAL since it's the slowest
765         DV decoder available.
766         Fixes #532393
767
768 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
769
770         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
771         Call getsockname() after the call to bind() to get updated values
772         for the port, etc. This fixes the usage of udpsrc on anonymous
773         binding and it's usage by rtspsrc. Fixes bugs #539372, #539548.
774         Thanks to Aurelien Grimaud for pointing out the obvious fix.
775
776 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
777
778         * tests/check/pipelines/wavpack.c: (bus_handler):
779         Remove workaround for a bug in identity that is fixed in 0.10.20.
780
781 2008-06-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
782
783         Patch by: Jason Donenfeld <BugZilla at zx2c4 dot com>
784
785         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb):
786         Fix HTTP auth support with user/password passed via the URI.
787         Fixes bug #540067.
788
789 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
790
791         * configure.ac:
792           Depend on released versions of core and -base.
793
794 2008-06-23  Julien Moutte  <julien@fluendo.com>
795
796         * gst/matroska/matroska-demux.c:
797         (gst_matroska_demux_read_track_encoding),
798         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Fix buggy
799         format strings in macros. (makes it build on OS X again...)
800
801 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
802
803         * gst/rtp/gstrtptheorapay.c:
804         * gst/udp/gstmultiudpsink.c:
805           Added debug.
806
807 2008-06-20  Christian Schaller <christian.schaller@collabora.co.uk>
808
809         * configure.ac: switch v4l2src over to the normal build instead of
810         being 'experimental'. Fixes bug #536831.
811
812 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
813
814         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
815         Remove unused variable so that we can compile again.
816
817 2008-06-19  Peter Kjellerstedt  <pkj@axis.com>
818
819         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_setcaps):
820         No need to check for audio/G723 and audio/32KADPCM here as they are
821         no longer supported.
822
823 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
824
825         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
826         (gst_wavpack_parse_src_query), (gst_wavpack_parse_create_src_pad):
827         Use G_GINT64_CONSTANT, this fixes the duration query on files without
828         known length.
829
830 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
831
832         * gst/matroska/matroska-demux.c:
833         (gst_matroska_demux_add_wvpk_header),
834         (gst_matroska_demux_audio_caps):
835         * gst/matroska/matroska-ids.h:
836         Fix demuxing of WavPack files. Muxing is still broken.
837
838 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
839
840         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
841         (gst_matroska_demux_add_mpeg_seq_header),
842         (gst_matroska_demux_add_wvpk_header),
843         (gst_matroska_demux_check_subtitle_buffer),
844         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
845         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
846         (gst_matroska_demux_subtitle_caps):
847         * gst/matroska/matroska-ids.h:
848         Add a "vfunc" to the track context for postprocessing frames and
849         convert the wavpack and subtitle postprocessing to this vfunc.
850         Copy buffer flags in those functions to the new buffers too.
851
852         Parse CodecState elements of Blocks.
853
854         Add a postprocessing function for MPEG video that adds the sequence
855         header from the codec private data or codec state to the frames if
856         it's not already there.
857
858 2008-06-19  Sebastian Dröge  <slomo@circular-chaos.org>
859
860         * gst/matroska/matroska-demux.c:
861         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
862         If a gap of more than 1/2 second is found in one stream send a
863         NEWSEGMENT event to not stall the pipeline if the gap is too large.
864         This also fixes Matroska files where the first buffer doesn't start
865         at timestamp 0. Fixes bug #429322.
866
867         The duration of a block is the default duration multiplied with the
868         number of laces. Every lace is one frame and the default duration
869         is the duration of one frame. This fixes playback of files that use
870         lacing for some tracks.
871
872 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
873
874         * gst/matroska/matroska-demux.c:
875         (gst_matroska_demux_parse_contents_seekentry):
876         Update FIXME/TODOs and only ignore EOS at the central, important place
877         instead of several places.
878
879 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
880
881         * gst/rtp/gstrtpg726pay.c:
882         Fix caps, See #538891.
883
884 2008-06-18  Sebastian Dröge  <slomo@circular-chaos.org>
885
886         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
887         (gst_matroska_demux_stream_from_num),
888         (gst_matroska_demux_encoding_cmp),
889         (gst_matroska_demux_encoding_order_unique),
890         (gst_matroska_demux_read_track_encoding),
891         (gst_matroska_demux_read_track_encodings),
892         (gst_matroska_demux_tracknumber_unique),
893         (gst_matroska_demux_add_stream), (gst_matroska_demux_init_stream),
894         (gst_matroska_demux_parse_tracks),
895         (gst_matroska_demux_parse_index_cuetrack),
896         (gst_matroska_demux_parse_index_pointentry),
897         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
898         (gst_matroska_demux_parse_metadata_id_simple_tag),
899         (gst_matroska_demux_parse_metadata_id_tag),
900         (gst_matroska_demux_parse_metadata),
901         (gst_matroska_demux_parse_attached_file),
902         (gst_matroska_demux_parse_attachments),
903         (gst_matroska_demux_parse_chapters),
904         (gst_matroska_demux_sync_streams), (gst_matroska_decode_buffer),
905         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
906         (gst_matroska_demux_parse_cluster),
907         (gst_matroska_demux_parse_contents_seekentry),
908         (gst_matroska_demux_parse_contents),
909         (gst_matroska_demux_loop_stream_parse_id),
910         (gst_matroska_demux_loop):
911         Improve debug output everywhere and fix the EOS logic.
912
913         Check the values of the ContentEncoding elements more strictly and
914         don't use tracks for which it's invalid.
915
916         Check that the track number is unique for this stream.
917
918         Check that seek positions are below G_MAXINT64 as our seeks are
919         int64-based and overflows will fail badly.
920
921         After seeks also don't push SimpleBlocks until the first one
922         containing a keyframe is found. Before this was done only for normal
923         Blocks.
924
925         Update some FIXME/TODOs.
926         
927         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
928         (gst_ebml_read_utf8), (gst_ebml_read_header):
929         Improve debug output.
930
931         * gst/matroska/matroska-ids.c:
932         (gst_matroska_track_init_video_context):
933         * gst/matroska/matroska-ids.h:
934         * gst/matroska/matroska-mux.c:
935         (gst_matroska_mux_video_pad_setcaps):
936         Remove eye mode and don't parse it anymore. We can't use that
937         information in GStreamer yet so it's useless.
938
939
940 2008-06-18  Wim Taymans  <wim.taymans@collabora.co.uk>
941
942         Patch by: Mersad Jelacic <mersad at axis dot com>
943
944         * gst/rtp/Makefile.am:
945         * gst/rtp/gstrtp.c: (plugin_init):
946         * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init),
947         (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init),
948         (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process),
949         (gst_rtp_g726_depay_plugin_init):
950         * gst/rtp/gstrtpg726depay.h:
951         * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init),
952         (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init),
953         (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init):
954         * gst/rtp/gstrtpg726pay.h:
955         Added G726 pay/depayloaders. Fixes #538891.
956
957 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
958
959         * gst/rtsp/URLS:
960         Some more urls.
961
962         * gst/smpte/barboxwipes.c:
963         Add a comment
964
965         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
966         Fix typo, add audioresample to the pipeline.
967
968 2008-06-17  Wim Taymans  <wim.taymans@collabora.co.uk>
969
970         * ext/libmng/Makefile.am:
971         * ext/libmng/gstmng.c: (plugin_init):
972         * ext/libmng/gstmngdec.c: (gst_mng_dec_base_init),
973         (gst_mng_dec_class_init), (gst_mng_dec_sink_setcaps),
974         (gst_mng_dec_init), (gst_mng_dec_src_getcaps), (gst_mng_dec_loop),
975         (gst_mng_dec_get_property), (gst_mng_dec_set_property),
976         (mngdec_error), (mngdec_openstream), (mngdec_closestream),
977         (gst_mng_dec_sink_event), (mngdec_readdata), (mngdec_settimer),
978         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
979         (gst_mng_dec_change_state):
980         * ext/libmng/gstmngdec.h:
981         * ext/libmng/gstmngenc.c: (gst_mng_enc_base_init),
982         (gst_mng_enc_class_init), (gst_mng_enc_sink_setcaps),
983         (gst_mng_enc_init), (gst_mng_enc_chain),
984         (gst_mng_enc_get_property), (gst_mng_enc_set_property):
985         * ext/libmng/gstmngenc.h:
986         Somewhat port mngenc and mngdec to 0.10. Does not work yet and has many
987         bits ifdeffed out still.
988
989 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
990
991         * gst/matroska/matroska-demux.c: (gst_matroska_index_compare):
992         When comparing index elements with the same time compare their
993         block number.
994
995 2008-06-16  Tim-Philipp Müller  <tim.muller at collabora co uk>
996
997         * gst/matroska/matroska-demux.c:
998           (gst_matroska_demux_parse_attached_file)
999           Init variable to NULL to avoid compiler warning.
1000
1001 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
1002
1003         * gst/matroska/Makefile.am:
1004         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
1005         (gst_matroska_demux_parse_attached_file),
1006         (gst_matroska_demux_parse_attachments),
1007         (gst_matroska_demux_parse_contents_seekentry),
1008         (gst_matroska_demux_loop_stream_parse_id):
1009         * gst/matroska/matroska-demux.h:
1010         * gst/matroska/matroska-ids.c: (gst_matroska_register_tags):
1011         * gst/matroska/matroska-ids.h:
1012         * gst/matroska/matroska.c: (plugin_init):
1013         Parse Attachments and post them as GST_TAG_IMAGE if we detect
1014         it as image and otherwise as GST_TAG_ATTACHMENT. Include filename
1015         and description of the attachments in the caps. Fixes bug #537622.
1016
1017 2008-06-16  Wim Taymans  <wim.taymans@collabora.co.uk>
1018
1019         * ext/speex/gstspeexenc.c: (gst_speex_enc_mode_get_type),
1020         (gst_speex_enc_class_init), (gst_speex_enc_sink_getcaps),
1021         (gst_speex_enc_get_latency), (gst_speex_enc_get_query_types),
1022         (gst_speex_enc_src_query), (gst_speex_enc_init),
1023         (gst_speex_enc_setup), (gst_speex_enc_push_buffer),
1024         (gst_speex_enc_chain), (gst_speex_enc_get_property),
1025         (gst_speex_enc_set_property):
1026         Add mode property.
1027         Some cleanups, add more debug info.
1028         Add latency query.
1029
1030 2008-06-16  Sebastian Dröge  <slomo@circular-chaos.org>
1031
1032         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes):
1033         Return GST_FLOW_UNEXPECTED instead of GST_FLOW_ERROR on short reads.
1034         If we get less bytes than requested we can't do anything except doing
1035         our EOS logic.
1036
1037 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
1038
1039         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
1040         (gst_matroskademux_do_index_seek),
1041         (gst_matroska_demux_parse_index_cuetrack),
1042         (gst_matroska_demux_parse_index_pointentry),
1043         (gst_matroska_index_compare), (gst_matroska_demux_parse_index),
1044         (gst_matroska_demux_parse_metadata):
1045         * gst/matroska/matroska-demux.h:
1046         * gst/matroska/matroska-ids.h:
1047         Use a GArray for storing the Cue (i.e. seek) information, store
1048         the CueTrackPositions for every track, store the block number
1049         and optimize searching in the array by sorting it after the last
1050         element was added.
1051
1052         Fix a small memory leak when trying to parse a tags element that was
1053         already parsed.
1054
1055 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
1056
1057         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
1058         (gst_matroska_mux_start), (gst_matroska_mux_finish),
1059         (gst_matroska_mux_write_data):
1060         * gst/matroska/matroska-mux.h:
1061         Don't write another SeekHead which indexes all Clusters to the end of
1062         the file. This isn't useful for anything and just increases filesize.
1063
1064 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
1065
1066         * gst/matroska/ebml-read.c: (_ext2dbl), (gst_ebml_read_float):
1067         Prevent unaligned memory access when reading floats.
1068
1069 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
1070
1071         * gst/matroska/ebml-read.c:
1072         * gst/matroska/ebml-read.h:
1073         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
1074         (gst_matroska_demux_parse_metadata):
1075         * gst/matroska/matroska-demux.h:
1076         Make sure that every Tags element is only parsed once and it's
1077         containing tags are only posted once.
1078
1079 2008-06-15  Sebastian Dröge  <slomo@circular-chaos.org>
1080
1081         * gst/matroska/ebml-read.c: (gst_ebml_peek_id),
1082         (gst_ebml_read_header):
1083         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
1084         (gst_matroska_demux_parse_tracks),
1085         (gst_matroska_demux_parse_index_cuetrack),
1086         (gst_matroska_demux_parse_index_pointentry),
1087         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
1088         (gst_matroska_demux_parse_metadata_id_simple_tag),
1089         (gst_matroska_demux_parse_metadata_id_tag),
1090         (gst_matroska_demux_parse_metadata),
1091         (gst_matroska_demux_parse_attachments),
1092         (gst_matroska_demux_parse_chapters),
1093         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
1094         (gst_matroska_demux_parse_cluster),
1095         (gst_matroska_demux_parse_contents_seekentry),
1096         (gst_matroska_demux_parse_contents),
1097         (gst_matroska_demux_loop_stream_parse_id):
1098         Handle EBML elements like Void or CRC32 in the EbmlRead base class
1099         already. They're not useful in the matroska parser and only cause
1100         additional code.
1101
1102 2008-06-14  Sebastian Dröge  <slomo@circular-chaos.org>
1103
1104         * gst/matroska/ebml-read.c: (gst_ebml_level_free),
1105         (gst_ebml_finalize), (gst_ebml_read_change_state),
1106         (gst_ebml_read_element_level_up), (gst_ebml_read_master):
1107         * gst/matroska/matroska-demux.c:
1108         (gst_matroska_demux_parse_contents_seekentry):
1109         Reverse the level list as we usually are only interested in the
1110         first element or want to add a new first element. Having the
1111         first element stored at the end and calling g_list_last() and
1112         g_list_append() is more expensive.
1113
1114         Also use GSlice for allocating the GstEbmlLevel structs.
1115
1116 2008-06-13  Tim-Philipp Müller  <tim.muller at collabora co uk>
1117
1118         * gst/debug/gsttaginject.c: (gst_tag_inject_finalize),
1119           (gst_tag_inject_class_init), (gst_tag_inject_init):
1120           Don't unref NULL taglist in finalize. Don't use c++ style
1121           comments.
1122
1123 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
1124
1125         * gst/matroska/matroska-demux.c:
1126         (gst_matroska_demux_parse_metadata_id_simple_tag):
1127         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag),
1128         (gst_matroska_mux_write_data):
1129         Use gst_value_serialize() and gst_value_deserialize() for transforming
1130         tags from some GType to a string and the other way around. The default
1131         transformations in GLib don't include transformations from string to
1132         number types.
1133
1134 2008-06-13  Sebastian Dröge  <slomo@circular-chaos.org>
1135
1136         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset),
1137         (gst_matroska_demux_parse_tracks),
1138         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
1139         (gst_matroska_demux_parse_attachments),
1140         (gst_matroska_demux_parse_chapters),
1141         (gst_matroska_demux_parse_contents_seekentry),
1142         (gst_matroska_demux_loop_stream_parse_id):
1143         * gst/matroska/matroska-demux.h:
1144         Only parse Tracks, SeekHead and SegmentInfo elements once but allow
1145         Tags multiple times. The first ones can appear more than once but must
1146         contain the same content as the first for backup purposes so we ignore
1147         all but the first one. Tags can appear multiple times with different
1148         content.
1149
1150         Jump to all elements except Clusters that are available from a
1151         SeekHead to make it more likely to have all required informations
1152         before getting to the first Clusters.
1153
1154         Add dummy functions for parsing Attachments and Chapters.
1155
1156 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1157
1158         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
1159         (gst_udpsrc_create), (gst_udpsrc_set_property),
1160         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
1161         * gst/udp/gstudpsrc.h:
1162         Add property to control automatic join/leave of multicast groups.
1163         Add G_LIKELY.
1164         Remove setting caps on buffers explicitly, basesrc does that for us now.
1165         Improve debug info.
1166         Convert some non-fatal error into warnings.
1167         Use g_ntohs for better portability.
1168         Leave multicast groups when stopping.
1169         When using external sockets, use getsockname() on them to fill up the
1170         addr structure before calling methods that use the structure.
1171         Should all fix #536903.
1172         API: GstUDPSrc::auto-multicast property
1173
1174 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1175
1176         * gst/udp/gstudpnetutils.c: (gst_udp_is_multicast):
1177         Use g_ntohl for better portability.
1178
1179 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1180
1181         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
1182         (gst_multiudpsink_remove):
1183         Fix a typo and do some small cleanups.
1184
1185 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1186
1187         Patch by: Olivier Crete <tester at tester dot ca>
1188
1189         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
1190         Make the delivery-method mandatory on the caps and only accept inline
1191         for now.
1192         Reverse strcmp checks for delivery-method.
1193
1194         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
1195         Make delivery method optional when parsing caps and note this in the
1196         caps.
1197         Reverse strcmp checks for delivery-method.
1198
1199         * gst/rtp/gstrtpvorbispay.c:
1200         Update a comment to note that the delivery-method is optional, 
1201         Fixes #537675.
1202
1203 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
1204
1205         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_mcast):
1206         Set udpsrc for receiving data from multicast groups to PAUSED instead of
1207         leaving them in READY. Fixes #537832.
1208
1209 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
1210
1211         * gst/avi/gstavimux.c:
1212           Simplify code. gst_tag_list_merge() does the NULL checks. Add a FIXME
1213           for a random constant in tagmuxing code.
1214
1215 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
1216
1217         * gst/debug/gsttaginject.c:
1218         * gst/debug/gsttaginject.h:
1219           Now actually adding the new element.
1220
1221 2008-06-11  Stefan Kost  <ensonic@users.sf.net>
1222
1223         * docs/plugins/Makefile.am:
1224         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1225         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1226         * docs/plugins/gst-plugins-good-plugins.args:
1227         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1228         * docs/plugins/gst-plugins-good-plugins.interfaces:
1229         * docs/plugins/gst-plugins-good-plugins.prerequisites:
1230         * docs/plugins/inspect/plugin-aasink.xml:
1231         * docs/plugins/inspect/plugin-alaw.xml:
1232         * docs/plugins/inspect/plugin-alpha.xml:
1233         * docs/plugins/inspect/plugin-alphacolor.xml:
1234         * docs/plugins/inspect/plugin-annodex.xml:
1235         * docs/plugins/inspect/plugin-apetag.xml:
1236         * docs/plugins/inspect/plugin-audiofx.xml:
1237         * docs/plugins/inspect/plugin-auparse.xml:
1238         * docs/plugins/inspect/plugin-autodetect.xml:
1239         * docs/plugins/inspect/plugin-avi.xml:
1240         * docs/plugins/inspect/plugin-cacasink.xml:
1241         * docs/plugins/inspect/plugin-cairo.xml:
1242         * docs/plugins/inspect/plugin-cdio.xml:
1243         * docs/plugins/inspect/plugin-cutter.xml:
1244         * docs/plugins/inspect/plugin-debug.xml:
1245         * docs/plugins/inspect/plugin-dv.xml:
1246         * docs/plugins/inspect/plugin-efence.xml:
1247         * docs/plugins/inspect/plugin-effectv.xml:
1248         * docs/plugins/inspect/plugin-equalizer.xml:
1249         * docs/plugins/inspect/plugin-esdsink.xml:
1250         * docs/plugins/inspect/plugin-flac.xml:
1251         * docs/plugins/inspect/plugin-flxdec.xml:
1252         * docs/plugins/inspect/plugin-gamma.xml:
1253         * docs/plugins/inspect/plugin-gconfelements.xml:
1254         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
1255         * docs/plugins/inspect/plugin-goom.xml:
1256         * docs/plugins/inspect/plugin-goom2k1.xml:
1257         * docs/plugins/inspect/plugin-halelements.xml:
1258         * docs/plugins/inspect/plugin-icydemux.xml:
1259         * docs/plugins/inspect/plugin-id3demux.xml:
1260         * docs/plugins/inspect/plugin-jpeg.xml:
1261         * docs/plugins/inspect/plugin-level.xml:
1262         * docs/plugins/inspect/plugin-matroska.xml:
1263         * docs/plugins/inspect/plugin-monoscope.xml:
1264         * docs/plugins/inspect/plugin-mulaw.xml:
1265         * docs/plugins/inspect/plugin-multifile.xml:
1266         * docs/plugins/inspect/plugin-multipart.xml:
1267         * docs/plugins/inspect/plugin-navigationtest.xml:
1268         * docs/plugins/inspect/plugin-ossaudio.xml:
1269         * docs/plugins/inspect/plugin-png.xml:
1270         * docs/plugins/inspect/plugin-quicktime.xml:
1271         * docs/plugins/inspect/plugin-rtp.xml:
1272         * docs/plugins/inspect/plugin-rtsp.xml:
1273         * docs/plugins/inspect/plugin-smpte.xml:
1274         * docs/plugins/inspect/plugin-soup.xml:
1275         * docs/plugins/inspect/plugin-spectrum.xml:
1276         * docs/plugins/inspect/plugin-speex.xml:
1277         * docs/plugins/inspect/plugin-taglib.xml:
1278         * docs/plugins/inspect/plugin-udp.xml:
1279         * docs/plugins/inspect/plugin-video4linux2.xml:
1280         * docs/plugins/inspect/plugin-videobalance.xml:
1281         * docs/plugins/inspect/plugin-videobox.xml:
1282         * docs/plugins/inspect/plugin-videocrop.xml:
1283         * docs/plugins/inspect/plugin-videoflip.xml:
1284         * docs/plugins/inspect/plugin-videomixer.xml:
1285         * docs/plugins/inspect/plugin-wavenc.xml:
1286         * docs/plugins/inspect/plugin-wavpack.xml:
1287         * docs/plugins/inspect/plugin-wavparse.xml:
1288         * docs/plugins/inspect/plugin-ximagesrc.xml:
1289         * gst/debug/Makefile.am:
1290         * gst/debug/breakmydata.c:
1291         * gst/debug/efence.c:
1292         * gst/debug/gstdebug.c:
1293         * gst/debug/gstnavseek.c:
1294         * gst/debug/gstpushfilesrc.c:
1295         * gst/debug/gstpushfilesrc.h:
1296         * gst/debug/negotiation.c:
1297         * gst/debug/progressreport.c:
1298         * gst/debug/progressreport.h:
1299         * gst/debug/rndbuffersize.c:
1300         * gst/debug/testplugin.c:
1301           Remove dummy plugin_init. Remove some undefined entries from doc-
1302           section file. Add taginject element and rebuild docs for it.
1303
1304 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
1305
1306         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
1307         (gst_matroska_mux_release_pad), (gst_matroska_mux_write_data):
1308         Update the counter for the number of streams when pads are added or
1309         removed. This will make sure that a seek table is generated for
1310         files with just one audio stream.
1311
1312 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
1313
1314         * gst/matroska/matroska-demux.c:
1315         (gst_matroska_demux_parse_metadata_id_simple_tag):
1316         * gst/matroska/matroska-ids.h:
1317         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag):
1318         Add some more tags, improve debugging a bit and make sure that
1319         GValue transformation has succeeded before using the result
1320         as a tag.
1321
1322 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
1323
1324         Patch by: Olivier Crete <tester at tester dot ca>
1325
1326         * gst/rtp/gstrtptheorapay.c:
1327         The Theora RTP payloader only supports the "inline" delievery method
1328         so let's declare this on the caps of the static pad template.
1329         Fixes bug #537675.
1330
1331 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1332
1333         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1334         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues):
1335         Remove bogus check.
1336
1337 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1338
1339         * gst/videomixer/videomixer.c: (gst_videomixer_fill_queues),
1340         (gst_videomixer_blend_buffers):
1341         Use stream_time to synchronize the object properties.
1342         Use running_time of the master pad to timestamp outgoing buffers.
1343         Fix the initial segment event to extend an unknown amount of time.
1344         Fixes #537361.
1345
1346 2008-06-10  Wim Taymans  <wim.taymans@collabora.co.uk>
1347
1348         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
1349         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
1350         (gst_avi_demux_calculate_durations_from_index),
1351         (gst_avi_demux_stream_header_push),
1352         (gst_avi_demux_stream_header_pull):
1353         Try to ignore unparsable/unknown streams and give a warning instead of
1354         erroring out. Fixes #537377.
1355
1356 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
1357
1358         * gst/matroska/ebml-write.c: (gst_ebml_write_float):
1359         Use GDOUBLE_TO_BE() instead of (probably slower) custom code.
1360
1361         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
1362         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
1363         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
1364         (gst_matroska_demux_read_track_encodings),
1365         (gst_matroska_demux_add_stream),
1366         (gst_matroska_demux_handle_src_query),
1367         (gst_matroska_demux_init_stream),
1368         (gst_matroska_demux_parse_index_cuetrack),
1369         (gst_matroska_demux_parse_index_pointentry),
1370         (gst_matroska_demux_parse_info),
1371         (gst_matroska_demux_parse_metadata_id_simple_tag),
1372         (gst_matroska_demux_parse_metadata),
1373         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
1374         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
1375         (gst_matroska_demux_parse_cluster),
1376         (gst_matroska_demux_parse_contents_seekentry),
1377         (gst_matroska_demux_loop_stream_parse_id),
1378         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
1379         (gst_matroska_demux_audio_caps),
1380         (gst_matroska_demux_subtitle_caps):
1381         * gst/matroska/matroska-demux.h:
1382         * gst/matroska/matroska-ids.c:
1383         (gst_matroska_track_init_subtitle_context):
1384         * gst/matroska/matroska-ids.h:
1385         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
1386         (gst_matroska_mux_class_init), (gst_matroska_mux_init),
1387         (gst_matroska_mux_create_uid), (gst_matroska_mux_reset),
1388         (gst_matroska_mux_video_pad_setcaps),
1389         (gst_matroska_mux_audio_pad_setcaps),
1390         (gst_matroska_mux_subtitle_pad_setcaps),
1391         (gst_matroska_mux_request_new_pad),
1392         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
1393         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish),
1394         (gst_matroska_mux_write_data), (gst_matroska_mux_collected),
1395         (gst_matroska_mux_set_property):
1396         Add many FIXMEs/TODOs all over the matroska muxer and demuxer
1397         elements, do some checks for valid values in the demuxer, handle
1398         tracktimecodescale in the demuxer, set correct default values for all
1399         settings in the demuxer, review and add all missing matroska
1400         IDs and some more raw YUV formats, and some trivial cleanup.
1401
1402 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
1403
1404         * ext/pulse/pulsemixer.c: (gst_pulsemixer_base_init),
1405         (gst_pulsemixer_class_init):
1406         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
1407         (gst_pulsesink_class_init), (gst_pulsesink_prepare):
1408         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
1409         (gst_pulsesrc_base_init), (gst_pulsesrc_class_init),
1410         (gst_pulsesrc_prepare):
1411         Some smaller cleanup. Use G_PARAM_STATIC_STRINGS,
1412         gst_element_class_set_details_simple() and fix coding style a bit
1413         more.
1414
1415 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
1416
1417         * docs/plugins/Makefile.am:
1418         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1419         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1420         * docs/plugins/gst-plugins-good-plugins.args:
1421         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1422         * docs/plugins/gst-plugins-good-plugins.interfaces:
1423         * docs/plugins/gst-plugins-good-plugins.prerequisites:
1424         * docs/plugins/inspect/plugin-aasink.xml:
1425         * docs/plugins/inspect/plugin-alaw.xml:
1426         * docs/plugins/inspect/plugin-alpha.xml:
1427         * docs/plugins/inspect/plugin-alphacolor.xml:
1428         * docs/plugins/inspect/plugin-annodex.xml:
1429         * docs/plugins/inspect/plugin-apetag.xml:
1430         * docs/plugins/inspect/plugin-audiofx.xml:
1431         * docs/plugins/inspect/plugin-auparse.xml:
1432         * docs/plugins/inspect/plugin-autodetect.xml:
1433         * docs/plugins/inspect/plugin-avi.xml:
1434         * docs/plugins/inspect/plugin-cacasink.xml:
1435         * docs/plugins/inspect/plugin-cairo.xml:
1436         * docs/plugins/inspect/plugin-cdio.xml:
1437         * docs/plugins/inspect/plugin-cutter.xml:
1438         * docs/plugins/inspect/plugin-debug.xml:
1439         * docs/plugins/inspect/plugin-dv.xml:
1440         * docs/plugins/inspect/plugin-efence.xml:
1441         * docs/plugins/inspect/plugin-effectv.xml:
1442         * docs/plugins/inspect/plugin-equalizer.xml:
1443         * docs/plugins/inspect/plugin-esdsink.xml:
1444         * docs/plugins/inspect/plugin-flac.xml:
1445         * docs/plugins/inspect/plugin-flxdec.xml:
1446         * docs/plugins/inspect/plugin-gamma.xml:
1447         * docs/plugins/inspect/plugin-gconfelements.xml:
1448         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
1449         * docs/plugins/inspect/plugin-goom.xml:
1450         * docs/plugins/inspect/plugin-goom2k1.xml:
1451         * docs/plugins/inspect/plugin-halelements.xml:
1452         * docs/plugins/inspect/plugin-icydemux.xml:
1453         * docs/plugins/inspect/plugin-id3demux.xml:
1454         * docs/plugins/inspect/plugin-jpeg.xml:
1455         * docs/plugins/inspect/plugin-level.xml:
1456         * docs/plugins/inspect/plugin-matroska.xml:
1457         * docs/plugins/inspect/plugin-monoscope.xml:
1458         * docs/plugins/inspect/plugin-mulaw.xml:
1459         * docs/plugins/inspect/plugin-multifile.xml:
1460         * docs/plugins/inspect/plugin-multipart.xml:
1461         * docs/plugins/inspect/plugin-navigationtest.xml:
1462         * docs/plugins/inspect/plugin-ossaudio.xml:
1463         * docs/plugins/inspect/plugin-png.xml:
1464         * docs/plugins/inspect/plugin-pulseaudio.xml:
1465         * docs/plugins/inspect/plugin-quicktime.xml:
1466         * docs/plugins/inspect/plugin-rtp.xml:
1467         * docs/plugins/inspect/plugin-rtsp.xml:
1468         * docs/plugins/inspect/plugin-smpte.xml:
1469         * docs/plugins/inspect/plugin-soup.xml:
1470         * docs/plugins/inspect/plugin-spectrum.xml:
1471         * docs/plugins/inspect/plugin-speex.xml:
1472         * docs/plugins/inspect/plugin-taglib.xml:
1473         * docs/plugins/inspect/plugin-udp.xml:
1474         * docs/plugins/inspect/plugin-video4linux2.xml:
1475         * docs/plugins/inspect/plugin-videobalance.xml:
1476         * docs/plugins/inspect/plugin-videobox.xml:
1477         * docs/plugins/inspect/plugin-videocrop.xml:
1478         * docs/plugins/inspect/plugin-videoflip.xml:
1479         * docs/plugins/inspect/plugin-videomixer.xml:
1480         * docs/plugins/inspect/plugin-wavenc.xml:
1481         * docs/plugins/inspect/plugin-wavpack.xml:
1482         * docs/plugins/inspect/plugin-wavparse.xml:
1483         * docs/plugins/inspect/plugin-ximagesrc.xml:
1484         * ext/pulse/plugin.c:
1485         * ext/pulse/pulsemixer.c:
1486         * ext/pulse/pulsesink.c:
1487         * ext/pulse/pulsesrc.c:
1488         Add documentation to the pulseaudio plugin and run make update
1489         in docs/plugins.
1490
1491 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
1492
1493         Patch by: Brian Cameron <brian.cameron at sun dot com>
1494
1495         * sys/sunaudio/gstsunaudiomixerctrl.c:
1496         (gst_sunaudiomixer_ctrl_get_volume),
1497         (gst_sunaudiomixer_ctrl_set_volume):
1498         Improvements for the SunAudio mixer by handling mute as no gain
1499         for tracks that have a gain property but no mute property.
1500         Fixes bug #536067.
1501
1502 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
1503
1504         * configure.ac:
1505         * ext/pulse/Makefile.am:
1506         * ext/pulse/plugin.c: (plugin_init):
1507         * ext/pulse/pulsemixer.c: (gst_pulsemixer_interface_supported),
1508         (gst_pulsemixer_implements_interface_init),
1509         (gst_pulsemixer_init_interfaces), (gst_pulsemixer_base_init),
1510         (gst_pulsemixer_class_init), (gst_pulsemixer_init),
1511         (gst_pulsemixer_finalize), (gst_pulsemixer_set_property),
1512         (gst_pulsemixer_get_property), (gst_pulsemixer_change_state):
1513         * ext/pulse/pulsemixer.h:
1514         * ext/pulse/pulsemixerctrl.c:
1515         (gst_pulsemixer_ctrl_context_state_cb),
1516         (gst_pulsemixer_ctrl_sink_info_cb),
1517         (gst_pulsemixer_ctrl_source_info_cb),
1518         (gst_pulsemixer_ctrl_subscribe_cb),
1519         (gst_pulsemixer_ctrl_success_cb), (gst_pulsemixer_ctrl_open),
1520         (gst_pulsemixer_ctrl_close), (gst_pulsemixer_ctrl_new),
1521         (gst_pulsemixer_ctrl_free), (gst_pulsemixer_ctrl_list_tracks),
1522         (gst_pulsemixer_ctrl_timeout_event), (restart_time_event),
1523         (gst_pulsemixer_ctrl_set_volume), (gst_pulsemixer_ctrl_get_volume),
1524         (gst_pulsemixer_ctrl_set_record), (gst_pulsemixer_ctrl_set_mute):
1525         * ext/pulse/pulsemixerctrl.h:
1526         * ext/pulse/pulsemixertrack.c: (gst_pulsemixer_track_class_init),
1527         (gst_pulsemixer_track_init), (gst_pulsemixer_track_new):
1528         * ext/pulse/pulsemixertrack.h:
1529         * ext/pulse/pulseprobe.c: (gst_pulseprobe_context_state_cb),
1530         (gst_pulseprobe_sink_info_cb), (gst_pulseprobe_source_info_cb),
1531         (gst_pulseprobe_invalidate), (gst_pulseprobe_open),
1532         (gst_pulseprobe_enumerate), (gst_pulseprobe_close),
1533         (gst_pulseprobe_new), (gst_pulseprobe_free),
1534         (gst_pulseprobe_get_properties), (gst_pulseprobe_needs_probe),
1535         (gst_pulseprobe_probe_property), (gst_pulseprobe_get_values),
1536         (gst_pulseprobe_set_server):
1537         * ext/pulse/pulseprobe.h:
1538         * ext/pulse/pulsesink.c: (gst_pulsesink_base_init),
1539         (gst_pulsesink_class_init), (gst_pulsesink_init),
1540         (gst_pulsesink_destroy_stream), (gst_pulsesink_destroy_context),
1541         (gst_pulsesink_finalize), (gst_pulsesink_dispose),
1542         (gst_pulsesink_set_property), (gst_pulsesink_get_property),
1543         (gst_pulsesink_context_state_cb), (gst_pulsesink_stream_state_cb),
1544         (gst_pulsesink_stream_request_cb),
1545         (gst_pulsesink_stream_latency_update_cb), (gst_pulsesink_open),
1546         (gst_pulsesink_close), (gst_pulsesink_prepare),
1547         (gst_pulsesink_unprepare), (gst_pulsesink_write),
1548         (gst_pulsesink_delay), (gst_pulsesink_success_cb),
1549         (gst_pulsesink_reset), (gst_pulsesink_change_title),
1550         (gst_pulsesink_event), (gst_pulsesink_get_type):
1551         * ext/pulse/pulsesink.h:
1552         * ext/pulse/pulsesrc.c: (gst_pulsesrc_interface_supported),
1553         (gst_pulsesrc_implements_interface_init),
1554         (gst_pulsesrc_init_interfaces), (gst_pulsesrc_base_init),
1555         (gst_pulsesrc_class_init), (gst_pulsesrc_init),
1556         (gst_pulsesrc_destroy_stream), (gst_pulsesrc_destroy_context),
1557         (gst_pulsesrc_finalize), (gst_pulsesrc_dispose),
1558         (gst_pulsesrc_set_property), (gst_pulsesrc_get_property),
1559         (gst_pulsesrc_context_state_cb), (gst_pulsesrc_stream_state_cb),
1560         (gst_pulsesrc_stream_request_cb), (gst_pulsesrc_open),
1561         (gst_pulsesrc_close), (gst_pulsesrc_prepare),
1562         (gst_pulsesrc_unprepare), (gst_pulsesrc_read),
1563         (gst_pulsesrc_delay), (gst_pulsesrc_change_state),
1564         (gst_pulsesrc_get_type):
1565         * ext/pulse/pulsesrc.h:
1566         * ext/pulse/pulseutil.c: (gst_pulse_fill_sample_spec),
1567         (gst_pulse_client_name), (gst_pulse_gst_to_channel_map):
1568         * ext/pulse/pulseutil.h:
1569         Add pulseaudio GStreamer element from gst-pulse. Development will
1570         continue here instead of pulseaudio SVN. Fixes bug #400679.
1571         Only changes over gst-pulse SVN are added copyright to the top of
1572         files and coding style changes.
1573
1574 2008-06-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
1575
1576         Patch by: Benjamin Kampmann  <benjamin at fluendo dot com>
1577
1578         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext),
1579           (gst_cdio_add_cdtext_album_tags):
1580         * ext/cdio/gstcdio.h:
1581         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
1582           Also extract album title and album genre from CD-TEXT if
1583           available (#537021).
1584
1585 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
1586
1587         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1588
1589         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_negotiate):
1590         Improve negotiation a bit more by picking the smallest possible
1591         resolution that is larger than the resolution specified in the
1592         first caps entry of the peer caps. Fixes bug #536994.
1593
1594 2008-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
1595
1596         Patch by: Bastien Nocera <hadess at hadess dot net>
1597
1598         * sys/v4l2/gstv4l2vidorient.c:
1599         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
1600         Fix compilation with newer GIT kernels that deprecated
1601         V4L2_CID_HCENTER and V4L2_CID_VCENTER. Fixes bug #536317.
1602
1603 2008-06-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1604
1605         * configure.ac:
1606         * ext/cdio/gstcdio.c:
1607         * ext/cdio/gstcdio.h:
1608         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
1609           Require libcdio >= 0.76.
1610
1611 2008-06-05  Thijs Vermeir  <thijsvermeir@gmail.com>
1612
1613         * gst/avi/gstavidemux.c:
1614         Catch UNEXPECTED when downstream has reached end of
1615         segment in reverse mode.
1616
1617 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
1618
1619         * gst/avi/gstavidemux.c:
1620         Fix typo in comment
1621
1622 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
1623
1624         * gst/avi/gstavidemux.c:
1625         Because we don't know the frame order we need to push till
1626         the next keyframe
1627
1628 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1629
1630         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1631
1632         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
1633         (gst_v4l2src_fixate), (gst_v4l2src_negotiate):
1634         Provide a custom negotiation function to make sure to pick the highest
1635         possible framerate and resolution. Fixes bug #536646.
1636
1637 2008-06-04  Thijs Vermeir  <thijsvermeir@gmail.com>
1638
1639         * gst/avi/gstavidemux.c:
1640         Set EOS when going out of the segment in reverse playback
1641
1642 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1643
1644         * ext/taglib/Makefile.am::
1645           Add -Wno-attributes to CXXFLAGS to suppress warning caused by
1646           taglib headers (with gcc 4.3.1).
1647
1648 2008-06-04  Peter Kjellerstedt  <pkj@axis.com>
1649
1650         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink):
1651         Use the new gst_rtsp_connection_get_ip() to access the IP address
1652         of a GstRTSPConnection since it is a private member.
1653
1654 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
1655
1656         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
1657         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
1658           Use new utility functions in libgsttag to process coverart (#512333).
1659
1660 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1661
1662         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
1663         We actually support left/side, right/side and mid/side files. The
1664         conversion to normal, interleaved stereo is done by libflac.
1665
1666 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
1667
1668         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
1669         (gst_ebml_write_set_cache):
1670         Unref the write cache in finalize if it was set and add add "FIXME"
1671         to a comment that needs it.
1672
1673 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1674
1675         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
1676
1677         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
1678         (gst_avi_demux_index_prev), (gst_avi_demux_index_entry_for_time),
1679         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
1680         (gst_avi_demux_process_next_entry):
1681         * gst/avi/gstavidemux.h:
1682         Implement reverse playback. Fixes #535300.
1683         Small cleanups.
1684
1685 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
1686
1687         * gst/videomixer/videomixer.c: (gst_videomixer_query_duration),
1688         (gst_videomixer_query_latency):
1689         When using gst_element_iterate_pads() one has to unref every pad
1690         after usage.
1691
1692 2008-05-31  Edward Hervey  <edward.hervey@collabora.co.uk>
1693
1694         Patch by: Bastien Nocera <hadess at hadess dot net>
1695         * gst/qtdemux/qtdemux.c: (qtdemux_tag_add_str),
1696         (qtdemux_parse_udta):
1697         * gst/qtdemux/qtdemux_fourcc.h:
1698         Improve meta-data handling, add 'comment', 'description' and
1699         'copyright' tag handling.
1700         Fixes #535935
1701
1702 2008-05-31  Julien Moutte  <julien@fluendo.com>
1703
1704         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_keyframe),
1705         (gst_qtdemux_find_segment), (gst_qtdemux_perform_seek),
1706         (gst_qtdemux_seek_to_previous_keyframe),
1707         (gst_qtdemux_activate_segment), (gst_qtdemux_loop): Make sure we
1708         we don't clip the segment's stop using the main segment duration as
1709         that could crop quite some video frames. Make reverse playback support
1710         more robust and support edit lists. Support seeking to the last frame,
1711         and fix reverse looping playback. Add some debugging.
1712         * win32/common/config.h: Updated.
1713
1714 2008-05-31  Sebastian Dröge  <slomo@circular-chaos.org>
1715
1716         * gst/equalizer/gstiirequalizer.c:
1717         (gst_iir_equalizer_transform_ip):
1718         Don't clip float/double samples, correctly unset passthrough mode
1719         and use better rounding for integer samples.
1720
1721 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
1722
1723         * gst/equalizer/gstiirequalizer.c:
1724         (gst_iir_equalizer_band_set_property), (gst_iir_equalizer_init),
1725         (setup_filter), (set_passthrough), (update_coefficients),
1726         (gst_iir_equalizer_compute_frequencies),
1727         (gst_iir_equalizer_transform_ip):
1728         * gst/equalizer/gstiirequalizer.h:
1729         Update the filter coefficients only when needed in the transform_ip
1730         function and correctly set the element into passthrough mode if the
1731         gain of all bands is 0.
1732
1733 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1734
1735         Based on patch by: Sebastian Keller <sebastian-keller at gmx dot de>
1736
1737         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
1738         (gst_alpha_set_property), (gst_alpha_get_property),
1739         (gst_alpha_chroma_key_ayuv), (gst_alpha_chromakey_row_i420):
1740         Try to skip pixels or areas that are too dark or too bright for us to do
1741         meaningfull color detection.
1742         Added properties to control the sensitivity to light and darkness.
1743         Added some small cleanups. Fixes #512345.
1744
1745 2008-05-28  Jan Schmidt  <jan.schmidt@sun.com>
1746
1747         * docs/plugins/.cvsignore:
1748         * tests/check/elements/.cvsignore:
1749         Ignore some more generated things
1750
1751         * tests/check/Makefile.am:
1752         Ignore OSS elements in the state changes test too.
1753
1754 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1755
1756         * docs/plugins/Makefile.am:
1757         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1758         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1759         Add SMPTE effect elements to docs.
1760
1761 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
1762
1763         * docs/plugins/Makefile.am:
1764         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1765         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1766         * ext/raw1394/gstdv1394src.c:
1767           Document whats first shown on the fdo plugin docs page :)
1768
1769 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
1770
1771         * docs/plugins/Makefile.am:
1772         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1773         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1774         * docs/plugins/gst-plugins-good-plugins.args:
1775         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1776         * docs/plugins/inspect/plugin-audiofx.xml:
1777         * gst/audiofx/Makefile.am:
1778         * gst/audiofx/audiofx.c:
1779         * gst/audiofx/audiokaraoke.c:
1780         * gst/audiofx/audiokaraoke.h:
1781         * gst/audiofx/audiovoice.c:
1782         * gst/audiofx/audiovoice.h:
1783           Rename audiovoice to audiokaraoke and add it to the docs.
1784
1785 2008-05-28  Stefan Kost  <ensonic@users.sf.net>
1786
1787         * REQUIREMENTS:
1788         * docs/plugins/Makefile.am:
1789         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
1790         * docs/plugins/gst-plugins-good-plugins-sections.txt:
1791         * docs/plugins/gst-plugins-good-plugins.args:
1792         * docs/plugins/gst-plugins-good-plugins.hierarchy:
1793         * docs/plugins/gst-plugins-good-plugins.interfaces:
1794         * docs/plugins/gst-plugins-good-plugins.prerequisites:
1795         * docs/plugins/inspect/plugin-aasink.xml:
1796         * docs/plugins/inspect/plugin-alaw.xml:
1797         * docs/plugins/inspect/plugin-alpha.xml:
1798         * docs/plugins/inspect/plugin-alphacolor.xml:
1799         * docs/plugins/inspect/plugin-annodex.xml:
1800         * docs/plugins/inspect/plugin-apetag.xml:
1801         * docs/plugins/inspect/plugin-audiofx.xml:
1802         * docs/plugins/inspect/plugin-auparse.xml:
1803         * docs/plugins/inspect/plugin-autodetect.xml:
1804         * docs/plugins/inspect/plugin-avi.xml:
1805         * docs/plugins/inspect/plugin-cacasink.xml:
1806         * docs/plugins/inspect/plugin-cairo.xml:
1807         * docs/plugins/inspect/plugin-cdio.xml:
1808         * docs/plugins/inspect/plugin-cutter.xml:
1809         * docs/plugins/inspect/plugin-debug.xml:
1810         * docs/plugins/inspect/plugin-dv.xml:
1811         * docs/plugins/inspect/plugin-efence.xml:
1812         * docs/plugins/inspect/plugin-effectv.xml:
1813         * docs/plugins/inspect/plugin-equalizer.xml:
1814         * docs/plugins/inspect/plugin-esdsink.xml:
1815         * docs/plugins/inspect/plugin-flac.xml:
1816         * docs/plugins/inspect/plugin-flxdec.xml:
1817         * docs/plugins/inspect/plugin-gamma.xml:
1818         * docs/plugins/inspect/plugin-gconfelements.xml:
1819         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
1820         * docs/plugins/inspect/plugin-goom.xml:
1821         * docs/plugins/inspect/plugin-goom2k1.xml:
1822         * docs/plugins/inspect/plugin-halelements.xml:
1823         * docs/plugins/inspect/plugin-icydemux.xml:
1824         * docs/plugins/inspect/plugin-id3demux.xml:
1825         * docs/plugins/inspect/plugin-jpeg.xml:
1826         * docs/plugins/inspect/plugin-level.xml:
1827         * docs/plugins/inspect/plugin-matroska.xml:
1828         * docs/plugins/inspect/plugin-monoscope.xml:
1829         * docs/plugins/inspect/plugin-mulaw.xml:
1830         * docs/plugins/inspect/plugin-multifile.xml:
1831         * docs/plugins/inspect/plugin-multipart.xml:
1832         * docs/plugins/inspect/plugin-navigationtest.xml:
1833         * docs/plugins/inspect/plugin-ossaudio.xml:
1834         * docs/plugins/inspect/plugin-png.xml:
1835         * docs/plugins/inspect/plugin-quicktime.xml:
1836         * docs/plugins/inspect/plugin-rtp.xml:
1837         * docs/plugins/inspect/plugin-rtsp.xml:
1838         * docs/plugins/inspect/plugin-smpte.xml:
1839         * docs/plugins/inspect/plugin-soup.xml:
1840         * docs/plugins/inspect/plugin-spectrum.xml:
1841         * docs/plugins/inspect/plugin-speex.xml:
1842         * docs/plugins/inspect/plugin-taglib.xml:
1843         * docs/plugins/inspect/plugin-udp.xml:
1844         * docs/plugins/inspect/plugin-video4linux2.xml:
1845         * docs/plugins/inspect/plugin-videobalance.xml:
1846         * docs/plugins/inspect/plugin-videobox.xml:
1847         * docs/plugins/inspect/plugin-videocrop.xml:
1848         * docs/plugins/inspect/plugin-videoflip.xml:
1849         * docs/plugins/inspect/plugin-videomixer.xml:
1850         * docs/plugins/inspect/plugin-wavenc.xml:
1851         * docs/plugins/inspect/plugin-wavpack.xml:
1852         * docs/plugins/inspect/plugin-wavparse.xml:
1853         * docs/plugins/inspect/plugin-ximagesrc.xml:
1854         * ext/aalib/gstaasink.c:
1855         * ext/libcaca/gstcacasink.c:
1856           Document aasink and cacasink.
1857
1858 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
1859
1860         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
1861         (gst_videomixer_init), (gst_videomixer_query_duration),
1862         (gst_videomixer_query_latency), (gst_videomixer_query),
1863         (gst_videomixer_blend_buffers):
1864         * gst/videomixer/videomixer.h:
1865         Implement position (in time), duration and latency queries.
1866
1867 2008-05-27  Edward Hervey  <edward.hervey@collabora.co.uk>
1868
1869         * gst/videomixer/videomixer.c: (gst_videomixer_reset),
1870         (gst_videomixer_init), (gst_videomixer_request_new_pad),
1871         (gst_videomixer_fill_queues), (forward_event_func),
1872         (forward_event), (gst_videomixer_src_event),
1873         (gst_videomixer_sink_event):
1874         * gst/videomixer/videomixer.h:
1875         Implement proper seek/newsegment handling.
1876         Based on adder's implementation.
1877         Fixes #535121
1878
1879 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1880
1881         Patch by: Jan Gerber <j at oil21 dot org>
1882
1883         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
1884         Add caps for DVCPRO50 and DVCPRO HD PAL/NTSC. See #526481.
1885
1886 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1887
1888         * gst/audiofx/Makefile.am:
1889         * gst/audiofx/audiofx.c: (plugin_init):
1890         * gst/audiofx/audiovoice.c: (gst_audio_voice_base_init),
1891         (gst_audio_voice_class_init), (gst_audio_voice_init),
1892         (update_filter), (gst_audio_voice_set_property),
1893         (gst_audio_voice_get_property), (gst_audio_voice_setup),
1894         (gst_audio_voice_transform_int), (gst_audio_voice_transform_float),
1895         (gst_audio_voice_transform_ip):
1896         * gst/audiofx/audiovoice.h:
1897         Add simple voice removal element. Yay karaoke.
1898
1899 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1900
1901         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
1902
1903         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
1904         Fix potential caps leak.
1905         If we can't get the framerate with an ioctl, try to get it with the
1906         current norm. Fixes #520092.
1907
1908 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1909
1910         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
1911
1912         * sys/v4l2/v4l2src_calls.c:
1913         (gst_v4l2src_probe_caps_for_format_and_size):
1914         If we fail to get the frame intervals, simply don't touch the framerates
1915         on the template caps instead of discarding the format. See #520092.
1916
1917 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1918
1919         Patch by: William M. Brack <wbrack at mmm dot com dot hk>
1920
1921         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_structure),
1922         (gst_v4l2_get_caps_info):
1923         Add NV12, NV21 and bayer support. See #520092.
1924
1925 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1926
1927         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
1928         (gst_qtdemux_activate_segment):
1929         Unbreak segment activation again. Fixes #531672.
1930
1931 2008-05-25  Sebastian Dröge  <slomo@circular-chaos.org>
1932
1933         * ext/flac/Makefile.am:
1934         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
1935         Set the channel layout when decoding FLAC files with more than 2
1936         channels as defined by the FLAC spec. Fixes bug #534570.
1937
1938         Also don't try to decode left/side, right/side and mid/side files
1939         as we don't support this at all.
1940
1941 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
1942
1943         * configure.ac:
1944           We need -base CVS (rtsp).
1945
1946 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
1947
1948         * gst/udp/Makefile.am:
1949           Add -D_GNU_SOURCE to CFLAGS so we get things like EAI_ADDRFAMILY
1950           when including netdb.h when building against glibc >= 2.8.
1951
1952 2008-05-22  Julien Moutte  <julien@fluendo.com>
1953
1954         * gst/smpte/gstsmptealpha.c: (gst_smpte_alpha_setcaps): Fix
1955         debug statement arguments.
1956         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_setup_qos_dscp):
1957         * gst/udp/gstudpnetutils.c: (gst_udp_join_group),
1958         (gst_udp_leave_group): Fix IP and IPV6 options to make it work
1959         on more platforms.
1960
1961 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1962
1963         * tests/check/elements/avimux.c: (setup_src_pad),
1964         (teardown_src_pad):
1965         * tests/check/elements/icydemux.c: (icydemux_found_pad),
1966         (GST_START_TEST):
1967         * tests/check/elements/matroskamux.c: (setup_src_pad),
1968         (teardown_src_pad), (setup_sink_pad), (teardown_sink_pad):
1969         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
1970         (GST_START_TEST):
1971         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
1972         (setup_wavpackparse), (cleanup_wavpackparse):
1973         Don't use gst_element_get_pad(), it's a bad, bad method.
1974
1975 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1976
1977         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
1978         (do_toggle_element):
1979         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
1980         (do_toggle_element):
1981         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
1982         (do_toggle_element):
1983         * ext/gconf/gstswitchsink.c: (gst_switch_commit_new_kid):
1984         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_reset),
1985         (do_toggle_element):
1986         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_reset),
1987         (do_toggle_element):
1988         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
1989         (gst_auto_audio_sink_detect):
1990         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
1991         (gst_auto_video_sink_detect):
1992         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
1993         (gst_rtspsrc_stream_free), (gst_rtspsrc_stream_configure_udp),
1994         (gst_rtspsrc_stream_configure_udp_sink), (gst_rtspsrc_skip_lws),
1995         (gst_rtspsrc_unskip_lws), (gst_rtspsrc_skip_commas),
1996         (gst_rtspsrc_skip_item), (gst_rtsp_decode_quoted_string),
1997         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr):
1998         * tests/icles/videocrop-test.c: (test_with_caps),
1999         (video_crop_get_test_caps):
2000         Don't use gst_element_get_pad(), it's a bad method.
2001
2002 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2003
2004         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send),
2005         (gst_multiudpsink_add_internal):
2006         * gst/udp/gstudpnetutils.c: (gst_udp_set_loop_ttl),
2007         (gst_udp_join_group):
2008         * gst/udp/gstudpnetutils.h:
2009         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
2010         Joining a multicast group and setting the loop/ttl properties are
2011         totally unrelated tasks are must be separated.
2012
2013 2008-05-21  Stefan Kost  <ensonic@users.sf.net>
2014
2015         * gst/avi/gstavimux.c:
2016           Also support alaw/mulaw.
2017
2018 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2019
2020         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
2021         (gst_multiudpsink_setup_qos_dscp), (gst_multiudpsink_add_internal):
2022         * gst/udp/gstmultiudpsink.h:
2023         Add a fixme for the auto-multicast property.
2024         Fix some confusing debug messages.
2025         Disable setting a qos value by default.
2026
2027 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2028
2029         Patch by: Gustaf Räntilä <g dot rantila at gmail dot com>
2030
2031         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render):
2032         Ignore EPERM errors from sendto. Fixes #533619.
2033
2034 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2035
2036         Patch by: Henrik Eriksson <henriken at axis dot com>
2037
2038         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
2039         (gst_multiudpsink_init), (gst_multiudpsink_setup_qos_dscp),
2040         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
2041         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal):
2042         * gst/udp/gstmultiudpsink.h:
2043         Add qos-dscp property to manage the Quality of service. Fixes #469917.
2044
2045 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2046
2047         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process):
2048         Improve debugging of the ident.
2049
2050 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2051
2052         Patch by: Bruno Santos <brunof at ua dot pt>
2053
2054         * gst/udp/gstudpnetutils.c: (gst_udp_get_addr),
2055         (gst_udp_join_group), (gst_udp_leave_group),
2056         (gst_udp_is_multicast):
2057         * gst/udp/gstudpnetutils.h:
2058         Provide a bunch of helper methods to deal with IPv4 and IPv6
2059         transparently.
2060
2061         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
2062         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
2063         (gst_multiudpsink_get_property), (join_multicast),
2064         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
2065         (gst_multiudpsink_remove):
2066         * gst/udp/gstmultiudpsink.h:
2067         Add multicast TTL and loopback properties.
2068         Use the helper methods to implement ip4 and ip6.
2069
2070         * gst/udp/gstudpsrc.c: (gst_udpsrc_create), (gst_udpsrc_start):
2071         * gst/udp/gstudpsrc.h:
2072         Use the helper methods to implement ip4 and ip6.
2073         Fixes #515962.
2074
2075 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2076
2077         Patch by: Patrick Radizi <patrick dot radizi at axis dot com>
2078
2079         * gst/multipart/multipartdemux.c: (gst_multipart_demux_class_init),
2080         (gst_multipart_demux_get_gstname),
2081         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain):
2082         * gst/multipart/multipartdemux.h:
2083         Don't blindly copy the mime-type as the caps name because they not
2084         always map directly. Instead use a hashtable with common mappings.
2085         Fixes #533287.
2086
2087 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2088
2089         * ext/esd/esdsink.c: (gst_esdsink_write):
2090         When we post an error, we must return -1 to let the parent know that we
2091         cannot write the segment else it will loop and continue to call us again
2092         forever. Patch by Michael Meeks.
2093
2094 2008-05-20  Stefan Kost  <ensonic@users.sf.net>
2095
2096         * gst/videomixer/videomixer.c:
2097           Add missing incudes.
2098
2099 2008-05-20  Peter Kjellerstedt  <pkj@axis.com>
2100
2101         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
2102         (gst_rtp_h264_pay_handle_buffer):
2103         * gst/rtp/gstrtph264pay.h:
2104         Correct a typo (sinle -> single).
2105
2106 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2107
2108         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
2109         (gst_rtp_h264_depay_init), (gst_rtp_h264_depay_set_property),
2110         (gst_rtp_h264_depay_get_property), (gst_rtp_h264_depay_setcaps),
2111         (gst_rtp_h264_depay_process):
2112         * gst/rtp/gstrtph264depay.h:
2113         Add experimental support for outputting quicktime-like AVC output in
2114         addition to the existing bytestream output.
2115
2116         * gst/rtp/gstrtph264pay.c: (gst_h264_scan_mode_get_type),
2117         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
2118         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_payload_nal),
2119         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
2120         (gst_rtp_h264_pay_get_property):
2121         * gst/rtp/gstrtph264pay.h:
2122         Make the parsing mode configurable, for some inputs we don't need to
2123         scan every byte for start codes.
2124         Only set the marker bit on ACCESS units.
2125
2126 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
2127
2128         * gst/equalizer/gstiirequalizer.c:
2129         Use a bigger type in integer mode for the intermediate results to
2130         prevent overflows. This fixes the crippled sound when using the
2131         equalizer in integer mode. Fixes bug #510865.
2132
2133 2008-05-20  Jan Schmidt  <jan.schmidt@sun.com>
2134
2135         * gst/videomixer/videomixer.c:
2136         * gst/videomixer/videomixer.h:
2137         Instead of a random number for the request pad id's,
2138         use a counter.
2139
2140         Register the videomixerpad class from the element's class_init
2141         where it's safer, and allows the docs generator to scan it.
2142
2143 2008-05-20  Wim Taymans  <wim.taymans@collabora.co.uk>
2144
2145         * gst/smpte/Makefile.am:
2146         * gst/smpte/gstsmpte.c: (gst_smpte_plugin_init):
2147         * gst/smpte/gstsmpte.h:
2148         * gst/smpte/gstsmptealpha.c:
2149         (gst_smpte_alpha_transition_type_get_type),
2150         (gst_smpte_alpha_get_type), (gst_smpte_alpha_base_init),
2151         (gst_smpte_alpha_class_init), (gst_smpte_alpha_update_mask),
2152         (gst_smpte_alpha_setcaps), (gst_smpte_alpha_get_unit_size),
2153         (gst_smpte_alpha_init), (gst_smpte_alpha_finalize),
2154         (gst_smpte_alpha_do_ayuv), (gst_smpte_alpha_do_i420),
2155         (gst_smpte_alpha_transform), (gst_smpte_alpha_set_property),
2156         (gst_smpte_alpha_get_property), (gst_smpte_alpha_plugin_init):
2157         * gst/smpte/gstsmptealpha.h:
2158         * gst/smpte/plugin.c: (plugin_init):
2159         Add new plugin that adds the SMPTE transition in the alpha channel of
2160         I420 and AYUV frames so that they can be blended with videomixer later
2161         on. Uses all niceties such as using base transform for efficient alloc
2162         and negotiation. It currently requires GstController to control the
2163         position in the transition effect.
2164
2165 2008-05-19  Stefan Kost  <ensonic@users.sf.net>
2166
2167         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2168         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2169         * docs/plugins/gst-plugins-good-plugins.args:
2170         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2171         * docs/plugins/gst-plugins-good-plugins.interfaces:
2172         * docs/plugins/gst-plugins-good-plugins.types:
2173         * gst/videomixer/videomixer.c:
2174           Try using thaytans new mechanism to get extra classes into plugin
2175           docs. Aparently works for the Eq. For VideoMixer the GObject stuff is
2176           missing still.
2177
2178 2008-05-18  Mark Nauwelaerts  <mnauw@users.sf.net>
2179
2180         * gst/avi/gstavimux.c: (gst_avi_mux_audsink_set_caps):
2181         Set proper rate in avi stream header for PCM audio, and also do some
2182         more sanity checks on caps in this case.  Fixes #511489.
2183
2184 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
2185
2186         * sys/v4l2/gstv4l2src.c:
2187         Don't include the gstv4l2xoverlay.h header as the XOverlay support
2188         isn't implemented at all yet and this requires X headers to be
2189         installed. Fixes bug #533264.
2190
2191 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
2192
2193         reviewed by: <delete if not using a buddy>
2194
2195         * gst/matroska/ebml-write.c: (gst_ebml_write_finalize),
2196         (gst_ebml_write_set_cache):
2197         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
2198         (gst_matroska_demux_class_init), (gst_matroska_demux_init),
2199         (gst_matroska_track_free), (gst_matroska_demux_encoding_cmp),
2200         (gst_matroska_demux_read_track_encodings),
2201         (gst_matroska_demux_add_stream),
2202         (gst_matroska_demux_handle_src_query),
2203         (gst_matroska_demux_init_stream),
2204         (gst_matroska_demux_parse_index_cuetrack),
2205         (gst_matroska_demux_parse_index_pointentry),
2206         (gst_matroska_demux_parse_info),
2207         (gst_matroska_demux_parse_metadata_id_simple_tag),
2208         (gst_matroska_demux_parse_metadata),
2209         (gst_matroska_demux_add_wvpk_header), (gst_matroska_decode_buffer),
2210         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
2211         (gst_matroska_demux_parse_cluster),
2212         (gst_matroska_demux_parse_contents_seekentry),
2213         (gst_matroska_demux_loop_stream_parse_id),
2214         (gst_matroska_demux_loop), (gst_matroska_demux_video_caps),
2215         (gst_matroska_demux_audio_caps),
2216         (gst_matroska_demux_subtitle_caps):
2217         * gst/matroska/matroska-demux.h:
2218         * gst/matroska/matroska-ids.c:
2219         (gst_matroska_track_init_subtitle_context):
2220         * gst/matroska/matroska-ids.h:
2221         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
2222         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start),
2223         (gst_matroska_mux_finish), (gst_matroska_mux_collected):
2224         * sys/v4l2/gstv4l2src.c:
2225         * tests/check/pipelines/wavpack.c: (bus_handler):
2226         * win32/common/config.h:
2227
2228 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
2229
2230         * ext/wavpack/gstwavpackstreamreader.c:
2231         * tests/examples/spectrum/demo-audiotest.c:
2232         * tests/examples/spectrum/demo-osssrc.c:
2233         Fix some compiler warnings.
2234
2235 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2236
2237         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
2238         Small comment added.
2239
2240         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
2241         (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps),
2242         (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer):
2243         Debug string cleanups (remove trailing \n)
2244         Refactor and clean up the payloader a bit and make sure that we only
2245         put one NAL unit in an RTP packet even if the input buffer contains
2246         multiple NAL units.
2247         Add suport for AVC format input.
2248
2249 2008-05-14  Peter Kjellerstedt  <pkj@axis.com>
2250
2251         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init),
2252         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_handle_buffer),
2253         (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property):
2254         * gst/rtp/gstrtph264pay.h:
2255         Make it possible to specify profile-level-id and sprop-parameter-sets
2256         using properties in case they are not available in-stream.
2257
2258 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
2259
2260         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2261         * docs/plugins/gst-plugins-good-plugins.args:
2262         * docs/plugins/inspect/plugin-ladspa.xml:
2263           Remove ladspa fro plugin-docs, its in gst-plugins-bad.
2264
2265 2008-05-13  Mark Nauwelaerts  <mnauw@users.sf.net>
2266
2267         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
2268         Send an initial BYTE segment to inform downstream of later seeking,
2269         and to forego sync attempts.
2270
2271 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2272
2273         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_setcaps):
2274         Fix wrong caps string.
2275
2276 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2277
2278         Based on patch by: Olivier Crete <tester at tester dot ca>
2279
2280         * gst/rtp/Makefile.am:
2281         * gst/rtp/gstrtp.c: (plugin_init):
2282         * gst/rtp/gstrtpg729depay.c: (gst_rtp_g729_depay_base_init),
2283         (gst_rtp_g729_depay_class_init), (gst_rtp_g729_depay_init),
2284         (gst_rtp_g729_depay_setcaps), (gst_rtp_g729_depay_process),
2285         (gst_rtp_g729_depay_plugin_init):
2286         * gst/rtp/gstrtpg729depay.h:
2287         * gst/rtp/gstrtpg729pay.c: (gst_rtpg729pay_base_init),
2288         (gst_rtpg729pay_class_init), (gst_rtpg729pay_init),
2289         (gst_rtpg729pay_setcaps), (gst_rtp_g729_pay_plugin_init):
2290         * gst/rtp/gstrtpg729pay.h:
2291         Added G729 pay and depayloaders. Fixes #532409.
2292
2293 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2294
2295         * ext/speex/gstspeexdec.c: (speex_dec_sink_event):
2296         Fix the calculation of the duration of the concealment packets.
2297
2298 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
2299
2300         Based on patch by: Olivier Crete <tester at tester dot ca>
2301
2302         * gst/rtp/Makefile.am:
2303         * gst/rtp/gstrtp.c: (plugin_init):
2304         * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init),
2305         (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init),
2306         (parse_encode), (gst_rtp_dv_depay_setcaps),
2307         (calculate_difblock_location), (gst_rtp_dv_depay_process),
2308         (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state),
2309         (gst_rtp_dv_depay_plugin_init):
2310         * gst/rtp/gstrtpdvdepay.h:
2311         * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type),
2312         (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init),
2313         (gst_rtp_dv_pay_init), (gst_dv_pay_set_property),
2314         (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps),
2315         (gst_dv_pay_negotiate), (include_dif),
2316         (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init):
2317         * gst/rtp/gstrtpdvpay.h:
2318         Add DV pay and depayloaders. Fixes #532423.
2319
2320 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
2321
2322         * gst/matroska/matroska-demux.c:
2323         (gst_matroska_demux_push_dvd_clut_change_event):
2324         Convert subtitle palette info in VobSub private data from VobSub's
2325         (buggy) RGB to YUV.
2326
2327 2008-05-12  Mark Nauwelaerts  <mnauw@users.sf.net>
2328
2329         * gst/avi/gstavimux.c: (gst_avi_mux_pad_reset):
2330         Do not leave fourcc stream header field empty upon reset.
2331         Fixes #519301.
2332
2333 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
2334
2335         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2336         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2337         * docs/plugins/inspect/plugin-goom.xml:
2338         * docs/plugins/inspect/plugin-goom2k1.xml:
2339         * gst/goom/gstgoom.c:
2340         * gst/goom2k1/gstgoom.c:
2341         Add goom2k1 into the docs.
2342
2343 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2344
2345         Based on patch by: Wouter Cloetens  <wouter at mind be>
2346
2347         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
2348         (gst_rtspsrc_skip_lws), (gst_rtspsrc_unskip_lws),
2349         (gst_rtspsrc_skip_commas), (gst_rtspsrc_skip_item),
2350         (gst_rtsp_decode_quoted_string),
2351         (gst_rtspsrc_parse_digest_challenge), (gst_rtspsrc_parse_auth_hdr),
2352         (gst_rtspsrc_setup_auth):
2353         Support Digest authentication. Fixes #532065.
2354
2355 2008-05-08  Stefan Kost  <ensonic@users.sf.net>
2356
2357         * gst/level/gstlevel.c:
2358           Also support 32bit (e.g. whe having it after 'mad'). Add more notes
2359           about whats needed for liboil acceleration. Simplify docs a bit.
2360
2361 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2362
2363         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2364
2365         * gst/matroska/matroska-mux.c: (gst_matroska_mux_collected):
2366         Update the track duration if the old one was invalid.
2367         Fixes bug #532117.
2368
2369 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2370
2371         * gst/rtp/gstrtph264pay.c (gst_rtp_h264_pay_parse_sps_pps):
2372           Use GST_STR_NULL when trying to print sps and pps strings that could
2373           be NULL, as this might crash on some platforms.
2374
2375 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2376
2377         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
2378
2379         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_setup_ddraw):
2380           Do IDirectDrawClipper_SetHWnd() if the window ID has already been
2381           set after creating the clipper.
2382
2383 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2384
2385         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
2386
2387         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame):
2388           Added checking of surface lost case after an unsuccessful
2389           IDirectDrawSurface7_Lock() call.
2390           If surface is lost, return GST_FLOW_OK.
2391
2392 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2393
2394         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
2395
2396         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_show_frame,
2397           WndProc, gst_directdraw_sink_window_thread):
2398           Improved Windows message loop and fixed window destruction issue.
2399           When the window which DirectDraw is rendering to is destroyed, the
2400           render/show_frame function will return GST_FLOW_ERROR.
2401           Partially fixes #520885.
2402
2403 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2404
2405         patch by: Haakon Sporsheim <haakon.sporsheim at tandberg com>
2406
2407         * sys/directdraw/gstdirectdrawsink.c (gst_directdraw_sink_set_caps):
2408           Fixed mid stream resolution change bug, the offscreen surface is now
2409           released when set_caps is called.
2410           Partially fixes #520885.
2411
2412 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2413
2414         * sys/directdraw/gstdirectdrawsink.c
2415           (gst_directdraw_sink_buffer_alloc):
2416           Make it so that gst_directdraw_sink_buffer_alloc uses the right
2417           width/height.
2418
2419           Especially when looking through the pool of buffers, make sure that
2420           the width/height of caps is used instead of the already negotiated
2421           dimensions.
2422           For example if a buffer with different caps is requested, i.e.
2423           higher resolution, the caller would get a buffer with the old
2424           dimensions and thus corrupt the heap.
2425
2426 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2427
2428         * sys/directdraw/gstdirectdrawsink.c
2429           (gst_directdraw_sink_buffer_alloc):
2430           Clear the flags on recycled buffers from buffer_alloc.
2431           Partially fixes #520885.
2432
2433 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2434
2435         * gst/rtp/gstrtpilbcpay.c:
2436           Added missing stdlib.h include for strtol(), and made include ordering and
2437           style consistent with the corresponding depayloader.
2438
2439 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
2440
2441         * configure.ac:
2442           Error out if we don't have the required core/base versions.
2443
2444 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2445
2446         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
2447
2448         * sys/osxvideo/cocoawindow.m:
2449         Fix compiler warnings on PPC64. Fixes bug #499318.
2450
2451 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
2452
2453         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2454
2455         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (gst_rtspsrc_open):
2456         Don't leak file descriptors on error. Fixes #531532.
2457
2458 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
2459
2460         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
2461         (gst_gconf_audio_src_change_state):
2462         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
2463         (gst_gconf_video_sink_change_state):
2464         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
2465         (gst_gconf_video_src_change_state):
2466         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
2467         (gst_switch_commit_new_kid), (gst_switch_sink_change_state):
2468         When we can't create a fakesink/fakesrc complain instead of unreffing
2469         NULL pointers and crashing later. See bug #530535.
2470
2471 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2472
2473         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
2474         Add some more debug info and guard against small payloads.
2475
2476         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
2477         Set duration on outgoing buffers because we can.
2478
2479 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2480
2481         Patch by: Olivier Crete <tester at tester dot ca>
2482
2483         * ext/speex/gstspeexenc.c: (gst_speex_enc_sink_getcaps),
2484         (gst_speex_enc_init), (gst_speex_enc_chain):
2485         Add negotiation for the speex channels and rate. Fixes #465146.
2486
2487 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2488
2489         Patch by: Olivier Crete <tester at tester dot ca>
2490
2491         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init),
2492         (gst_rtp_speex_pay_getcaps):
2493         Add negotiation for the speex channels and rate. See #465146.
2494
2495 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2496
2497         Patch by: Olivier Crete <tester at tester dot ca>
2498
2499         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_class_init),
2500         (gst_rtpilbcpay_sink_setcaps), (gst_rtpilbcpay_sink_getcaps):
2501         Add negotiation for the ILBC mode. See #465146.
2502
2503 2008-05-02  Stefan Kost  <ensonic@users.sf.net>
2504
2505         * ext/soup/gstsouphttpsrc.c:
2506           Include stdlib to fix the build. Use g_free instead of free, libsoup
2507           uses glib.
2508
2509 2008-05-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2510
2511         Patch by: j^ <j@bootlab.org>
2512
2513         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
2514         Add more mpeg2 variants. Fixes #530886.
2515
2516 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
2517
2518         Patch by: Youness Alaoui <youness.alaoui at collabora co uk>
2519
2520         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
2521           Don't error out if we get an ICMP destination-unreachable
2522           message when trying to read packets on win32 (#529454).
2523
2524 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2525
2526         * configure.ac:
2527         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
2528           Use new error code for encrypted streams (which requires core CVS).
2529
2530 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2531
2532         * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
2533           (gst_qtdemux_audiosrc_template):
2534           Fix swapped pad template names, spotted by Thiago Sousa Santos.
2535
2536 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
2537
2538         * ext/speex/gstspeexdec.c: (speex_dec_sink_event),
2539         (speex_dec_chain_parse_data):
2540         Produce concealment data when time progresses in a segment update.
2541
2542 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
2543
2544         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data),
2545         (speex_dec_chain):
2546         Try to preserve input timestamps when we can.
2547         Do beginnings of error concealment.
2548
2549 2008-04-28  Michael Smith <msmith@songbirdnest.com>
2550
2551         * gst/debug/gstnavigationtest.c:
2552           MSVC doesn't provide rint(), define an adequate replacement locally as
2553           elsewhere.
2554
2555 2008-04-28  Julien Moutte  <julien@fluendo.com>
2556
2557         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop): Fix printf
2558         format to pacify Mac OSX's gcc.
2559
2560 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
2561
2562         * gst/debug/rndbuffersize.c: (DEFAULT_SEED), (DEFAULT_MIN),
2563           (DEFAULT_MAX), (src_template), (sink_template),
2564           (gst_rnd_buffer_size_base_init), (gst_rnd_buffer_size_class_init),
2565           (gst_rnd_buffer_size_init), (gst_rnd_buffer_size_activate),
2566           (gst_rnd_buffer_size_loop), (gst_rnd_buffer_size_plugin_init):
2567           Bring rndbuffersize element into a state that doesn't require us
2568           to move it to -bad immediately. For one, fix up default min/max
2569           values so that the element actuall works using the default values.
2570           Also, don't ignore flow return values and do some kind of minimal
2571           eos logic. Allow min=max to pull fixed-sized buffers. Bunch of
2572           other gratuitious clean-ups.
2573
2574 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
2575
2576         * docs/plugins/Makefile.am:
2577         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2578         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2579         * docs/plugins/gst-plugins-good-plugins.args:
2580         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2581         * docs/plugins/gst-plugins-good-plugins.interfaces:
2582         * docs/plugins/gst-plugins-good-plugins.prerequisites:
2583         * docs/plugins/inspect/plugin-1394.xml:
2584         * docs/plugins/inspect/plugin-aasink.xml:
2585         * docs/plugins/inspect/plugin-alaw.xml:
2586         * docs/plugins/inspect/plugin-alpha.xml:
2587         * docs/plugins/inspect/plugin-alphacolor.xml:
2588         * docs/plugins/inspect/plugin-annodex.xml:
2589         * docs/plugins/inspect/plugin-apetag.xml:
2590         * docs/plugins/inspect/plugin-audiofx.xml:
2591         * docs/plugins/inspect/plugin-auparse.xml:
2592         * docs/plugins/inspect/plugin-autodetect.xml:
2593         * docs/plugins/inspect/plugin-avi.xml:
2594         * docs/plugins/inspect/plugin-cacasink.xml:
2595         * docs/plugins/inspect/plugin-cairo.xml:
2596         * docs/plugins/inspect/plugin-cdio.xml:
2597         * docs/plugins/inspect/plugin-cutter.xml:
2598         * docs/plugins/inspect/plugin-debug.xml:
2599         * docs/plugins/inspect/plugin-dv.xml:
2600         * docs/plugins/inspect/plugin-efence.xml:
2601         * docs/plugins/inspect/plugin-effectv.xml:
2602         * docs/plugins/inspect/plugin-equalizer.xml:
2603         * docs/plugins/inspect/plugin-esdsink.xml:
2604         * docs/plugins/inspect/plugin-flac.xml:
2605         * docs/plugins/inspect/plugin-flxdec.xml:
2606         * docs/plugins/inspect/plugin-gamma.xml:
2607         * docs/plugins/inspect/plugin-gconfelements.xml:
2608         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
2609         * docs/plugins/inspect/plugin-goom.xml:
2610         * docs/plugins/inspect/plugin-halelements.xml:
2611         * docs/plugins/inspect/plugin-icydemux.xml:
2612         * docs/plugins/inspect/plugin-id3demux.xml:
2613         * docs/plugins/inspect/plugin-jpeg.xml:
2614         * docs/plugins/inspect/plugin-level.xml:
2615         * docs/plugins/inspect/plugin-matroska.xml:
2616         * docs/plugins/inspect/plugin-monoscope.xml:
2617         * docs/plugins/inspect/plugin-mulaw.xml:
2618         * docs/plugins/inspect/plugin-multifile.xml:
2619         * docs/plugins/inspect/plugin-multipart.xml:
2620         * docs/plugins/inspect/plugin-navigationtest.xml:
2621         * docs/plugins/inspect/plugin-ossaudio.xml:
2622         * docs/plugins/inspect/plugin-png.xml:
2623         * docs/plugins/inspect/plugin-quicktime.xml:
2624         * docs/plugins/inspect/plugin-rtp.xml:
2625         * docs/plugins/inspect/plugin-rtsp.xml:
2626         * docs/plugins/inspect/plugin-shout2send.xml:
2627         * docs/plugins/inspect/plugin-smpte.xml:
2628         * docs/plugins/inspect/plugin-spectrum.xml:
2629         * docs/plugins/inspect/plugin-speex.xml:
2630         * docs/plugins/inspect/plugin-taglib.xml:
2631         * docs/plugins/inspect/plugin-udp.xml:
2632         * docs/plugins/inspect/plugin-video4linux2.xml:
2633         * docs/plugins/inspect/plugin-videobalance.xml:
2634         * docs/plugins/inspect/plugin-videobox.xml:
2635         * docs/plugins/inspect/plugin-videocrop.xml:
2636         * docs/plugins/inspect/plugin-videoflip.xml:
2637         * docs/plugins/inspect/plugin-videomixer.xml:
2638         * docs/plugins/inspect/plugin-wavenc.xml:
2639         * docs/plugins/inspect/plugin-wavpack.xml:
2640         * docs/plugins/inspect/plugin-wavparse.xml:
2641         * docs/plugins/inspect/plugin-ximagesrc.xml:
2642           Add docs for gdkpixbufsink; update docs to CVS version.
2643
2644 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2645
2646         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
2647         Remove test sync-offset by default.
2648
2649 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
2650
2651         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_chain):
2652         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add_internal):
2653         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
2654           Use GLib versions of htonl, htons, ntohl and ntohs in order
2655           to avoid problems on win32 (#529707).
2656
2657 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
2658
2659         Patch by: Jesús Corrius <jesus at softcatala org>
2660
2661         * gst/goom/filters.c: (zoomVector):
2662         * gst/goom/goom_core.c: (init_buffers):
2663           Fix build with mingw32: use rand() instead of random() and
2664           replace bzero() with memset(). Fixes #529692.
2665
2666 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2667
2668         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows):
2669         Fix typo in comments.
2670
2671         * tests/examples/rtp/client-H263p-PCMA.sdp:
2672         * tests/examples/rtp/client-H263p-PCMA.sh:
2673         * tests/examples/rtp/client-H264-PCMA.sdp:
2674         * tests/examples/rtp/client-H264-PCMA.sh:
2675         * tests/examples/rtp/client-H264.sdp:
2676         * tests/examples/rtp/client-H264.sh:
2677         * tests/examples/rtp/client-PCMA.sdp:
2678         * tests/examples/rtp/client-PCMA.sh:
2679         * tests/examples/rtp/server-alsasrc-PCMA.sh:
2680         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
2681         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
2682         Add some more docs and fix examples.
2683
2684 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
2685
2686         * tests/check/elements/multifile.c:
2687         Include stdlib.h and unistd.h for mkdtemp. Some platforms have it
2688         declared in the former, some have it declared in the latter.
2689
2690 2008-04-24  Sebastian Dröge  <slomo@circular-chaos.org>
2691
2692         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_set_property):
2693         * gst/debug/tests.c: (md5_get_value):
2694         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
2695         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
2696         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
2697         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_setcaps):
2698         Stop using deprecated GLib functions.
2699
2700 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
2701
2702         * configure.ac:
2703         Back to development -> 0.10.8.1
2704
2705 === release 0.10.8 ===
2706
2707 2008-04-23  Jan Schmidt <jan.schmidt@sun.com>
2708
2709         * configure.ac:
2710           releasing 0.10.8, "One For The Money"
2711
2712 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
2713
2714         * configure.ac:
2715         0.10.7.4 pre-release
2716
2717 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
2718
2719         * gst/goom/config_param.c: (goom_plugin_parameters_free):
2720         * gst/goom/convolve_fx.c: (convolve_init), (convolve_free):
2721         * gst/goom/filters.c: (zoomFilterVisualFXWrapper_free):
2722         * gst/goom/flying_stars_fx.c: (fs_free):
2723         * gst/goom/goom_config_param.h:
2724         * gst/goom/goom_core.c: (goom_init), (goom_close):
2725         * gst/goom/goom_plugin_info.h:
2726         * gst/goom/gstgoom.c: (gst_goom_finalize):
2727         * gst/goom/lines.c: (goom_lines_free):
2728         * gst/goom/plugin_info.c: (plugin_info_init), (plugin_info_free):
2729         * gst/goom/surf3d.c: (grid3d_free):
2730         * gst/goom/surf3d.h:
2731         * gst/goom/tentacle3d.c: (tentacle_free):
2732         Free a bunch of stuff, and initialise things to fix leaks
2733         and valgrind warnings in the testsuite.
2734
2735         Fixes: #529268
2736
2737 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2738
2739         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init), (request_pt_map),
2740         (gst_rtspsrc_configure_caps):
2741         Ref caps as the return value for the request_pt_map signal.
2742         Remove some caps weirdness when configuring a stream. See #528245.
2743
2744 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
2745
2746         * tests/icles/gdkpixbufsink-test.c:
2747           Add cast to placate gcc 4.1.2.
2748
2749 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
2750
2751         * configure.ac:
2752         0.10.7.3 pre-release
2753
2754 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
2755
2756         * tests/check/Makefile.am:
2757         Disable some more elements in the state test.
2758         Add a define so the soup test can find the test files
2759         it needs at runtime.
2760
2761         * tests/check/elements/souphttpsrc.c: (run_server):
2762
2763         Add a define so the soup test can find the test files
2764         it needs at runtime.
2765
2766 2008-04-17  Jan Schmidt  <Jan.Schmidt@sun.com>
2767
2768         * gst/goom/convolve_fx.c: (convolve_apply):
2769         Don't ever draw the GOOM logo.
2770         Fixes: #528615
2771
2772 2008-04-17  Edward Hervey  <edward.hervey@collabora.co.uk>
2773
2774         * ext/cdio/gstcdiocddasrc.c:
2775         * ext/dv/gstdvdemux.c: 
2776         gst_atomic_int_set ==> g_atomic_int_set
2777
2778 2008-04-16  Tim-Philipp Müller  <tim at centricular dot net>
2779
2780         * configure.ac:
2781         * gst/goom/Makefile.am:
2782         * gst/goom/convolve_fx.c:
2783         * gst/goom/default_scripts.h:
2784         * gst/goom/goom.h:
2785         * gst/goom/goom_core.c: (choose_a_goom_line):
2786         * gst/goom/goom_plugin_info.h:
2787         * gst/goom/goomsl.c:
2788         * gst/goom/goomsl.h:
2789         * gst/goom/goomsl_hash.c:
2790         * gst/goom/goomsl_hash.h:
2791         * gst/goom/goomsl_heap.c:
2792         * gst/goom/goomsl_heap.h:
2793         * gst/goom/goomsl_private.h:
2794         * gst/goom/plugin_info.c:
2795           Strip out the config/script parsing stuff, we don't need it.
2796           Fixes #527999.
2797
2798 2008-04-15  Tim-Philipp Müller  <tim at centricular dot net>
2799
2800         * gst/goom/plugin_info.c: (setOptimizedMethods):
2801           Disable altivec optimisations for 32-bit PPC as well to make
2802           things build properly on all PPC systems. Fixes #528143
2803
2804 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
2805
2806         * gst-plugins-good.spec.in:
2807           Update for souphttpsrc plugin which has moved to -good.
2808
2809 2008-04-14  Jan Schmidt  <Jan.Schmidt@sun.com>
2810
2811         * gst/matroska/matroska-demux.c:
2812         (gst_matroska_demux_handle_seek_event):
2813         Fix open-ended seeks in matroskademux
2814         Patch by: Mark Nauwelaerts <manauw skynet be>
2815         Fixes: #526557
2816
2817 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
2818
2819         * tests/check/Makefile.am:
2820         Add soup test certificates to the dist.
2821
2822 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
2823
2824         * ext/Makefile.am:
2825         Remove LADSPA reference I missed.
2826
2827 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
2828
2829         * ext/soup/gstsouphttpsrc.c: (plugin_init):
2830         Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source
2831         over gnome-vfs and everything else. Fixes bug #527848.
2832
2833 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
2834
2835         * configure.ac:
2836         * ext/Makefile.am:
2837         Remove LADSPA plugin. Fixes: #515978
2838
2839 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
2840
2841         * configure.ac:
2842         * docs/plugins/Makefile.am:
2843         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2844         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2845         * docs/plugins/gst-plugins-good-plugins.args:
2846         * docs/plugins/inspect/plugin-soup.xml:
2847         * ext/Makefile.am:
2848         * tests/check/Makefile.am:
2849         Move soup plugin from -bad (Fixes: #523124)
2850
2851 2008-04-11  Jan Schmidt  <Jan.Schmidt@sun.com>
2852
2853         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_header):
2854         Fix bounds checking of mode in Speex header, which may
2855         produce negative numbers in speex <= 1.1.12
2856
2857 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
2858
2859         * gst/goom/Makefile.am:
2860         * gst/goom/gfontlib.c:
2861         * gst/goom/gfontlib.h:
2862         * gst/goom/gfontrle.c:
2863         * gst/goom/gfontrle.h:
2864         * gst/goom/goom.h:
2865         * gst/goom/goom_core.c: (goom_update):
2866         * gst/goom/goom_plugin_info.h:
2867         * gst/goom/gstgoom.c: (gst_goom_chain):
2868         * gst/goom/plugin_info.c:
2869           Remove a bunch of font/text related code that we don't need.
2870
2871 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
2872
2873         * gst/goom/ppc_drawings.s:
2874         * gst/goom/ppc_zoom_ultimate.s:
2875           Change license of these files to LGPL, as permitted by the
2876           author, Guillaume Borios. See #515073.
2877
2878 2008-04-09  Stefan Kost  <ensonic@users.sf.net>
2879
2880         * gst/goom/convolve_fx.c:
2881         * gst/goom/motif_goom1.h:
2882         * gst/goom/motif_goom2.h:
2883           As hinted in Bug #518213, revert one change and fix warnings properly.
2884           This fixes both #518213 and #520073 for me.     
2885
2886 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
2887
2888         * gst/matroska/ebml-read.c: (gst_ebml_read_seek):
2889         * gst/matroska/matroska-demux.c:
2890         (gst_matroska_demux_handle_seek_event),
2891         (gst_matroska_demux_parse_contents_seekentry),
2892         (gst_matroska_demux_loop):
2893         Fix the Forte build by making function declaration signatures
2894         match the implementations.
2895
2896 2008-04-08  Tim-Philipp Müller  <tim at centricular dot net>
2897
2898         * sys/oss/gstosshelper.c: (gst_oss_helper_rate_check_rate):
2899         * sys/oss/gstosssink.c: (gst_oss_sink_reset):
2900         * sys/oss/gstosssrc.c: (gst_oss_src_reset):
2901           More logging when probing (see #518474), some comments in _reset().
2902
2903 2008-04-07  Julien Moutte  <julien@fluendo.com>
2904
2905         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_setcaps): Fix build
2906         because of a bad argument number.
2907
2908 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
2909
2910         * tests/icles/.cvsignore:
2911         * tests/icles/Makefile.am:
2912         * tests/icles/gdkpixbufsink-test.c:
2913           Interactive test app for gdkpixbufsink.
2914
2915 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
2916
2917         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2918
2919         * configure.ac:
2920         Actually build dlls when cross-compiling with mingw32.
2921         Fixes bug #526247.
2922
2923 2008-04-05  Tim-Philipp Müller  <tim at centricular dot net>
2924
2925         * ext/hal/hal.c: (gst_hal_get_alsa_element):
2926           Don't munge device string to 'default:x' for capture devices.
2927           Fixes #525833.
2928
2929 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
2930
2931         * ext/wavpack/gstwavpackparse.c:
2932         (gst_wavpack_parse_index_entry_free):
2933         Always use GSlice as we actually depend on GLib 2.12 already.
2934
2935 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
2936
2937         * configure.ac:
2938           Require core/base 0.10.18 for ARGB caps parsing fixes in libgstvideo.
2939           Also bump the GLib requirement to the current de-facto requirement
2940           (ie. 2.12).
2941
2942 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
2943
2944         * gst/rtp/gstrtph264pay.c: (encode_base64),
2945         (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
2946         * gst/rtp/gstrtph264pay.h:
2947         Parse codec_data for future AVC compatibility.
2948         Fail when we encounter AVC data for now.
2949
2950 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
2951
2952         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
2953           (gst_spectrum_init), (gst_spectrum_set_property),
2954           (gst_spectrum_get_property), (gst_spectrum_message_new):
2955           Rename property enums and default defines for the properties to match
2956           the property names and rephrase property descriptions to make them a
2957           bit clearer (hopefully). See #518188.
2958
2959 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
2960
2961         * tests/check/Makefile.am:
2962         * tests/check/elements/.cvsignore:
2963         * tests/check/elements/gdkpixbufsink.c:
2964           Add unit test for gdkpixbufsink element.
2965
2966 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
2967
2968         * ext/gdk_pixbuf/Makefile.am:
2969         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
2970         * ext/gdk_pixbuf/gstgdkpixbufsink.c:
2971           (gst_gdk_pixbuf_sink_base_init),
2972           (gst_gdk_pixbuf_sink_class_init), (gst_gdk_pixbuf_sink_init),
2973           (gst_gdk_pixbuf_sink_start), (gst_gdk_pixbuf_sink_stop),
2974           (gst_gdk_pixbuf_sink_set_caps),
2975           (gst_gdk_pixbuf_sink_pixbuf_destroy_notify),
2976           (gst_gdk_pixbuf_sink_get_pixbuf_from_buffer),
2977           (gst_gdk_pixbuf_sink_handle_buffer), (gst_gdk_pixbuf_sink_preroll),
2978           (gst_gdk_pixbuf_sink_render), (gst_gdk_pixbuf_sink_set_property),
2979           (gst_gdk_pixbuf_sink_get_property):
2980         * ext/gdk_pixbuf/gstgdkpixbufsink.h:
2981           Add gdkpixbufsink element for easy snapshotting (#525946).
2982
2983 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
2984
2985         * tests/check/pipelines/wavpack.c: (wavpack_suite):
2986         Bump timeout from 3 to 60 seconds.
2987
2988 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
2989
2990         * tests/check/pipelines/.cvignore:
2991         Remove useless file.
2992
2993         * tests/check/pipelines/.cvsignore:
2994         Add new test to .cvsignore.
2995
2996 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
2997
2998         * tests/check/Makefile.am:
2999         * tests/check/pipelines/wavpack.c: (bus_handler),
3000         (identity_handoff), (fakesink_handoff), (GST_START_TEST),
3001         (wavpack_suite), (main):
3002         Add unit test that encodes and decodes some data, checks that it
3003         is still the same and that all timestamps/offsets are perfect.
3004
3005 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
3006
3007         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
3008         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init):
3009         * ext/wavpack/gstwavpackparse.c:
3010         (gst_wavpack_parse_index_entry_new),
3011         (gst_wavpack_parse_index_entry_free),
3012         (gst_wavpack_parse_base_init),
3013         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset):
3014         Use GSlice for allocating index entries and use
3015         gst_element_class_set_details_simple().
3016
3017 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
3018
3019         Patch by: Brian Cameron <brian.cameron at sun dot com>
3020
3021         * sys/sunaudio/gstsunaudio.c:
3022         * sys/sunaudio/gstsunaudiomixer.c:
3023         * sys/sunaudio/gstsunaudiomixer.h:
3024         * sys/sunaudio/gstsunaudiomixerctrl.c:
3025         * sys/sunaudio/gstsunaudiomixerctrl.h:
3026         * sys/sunaudio/gstsunaudiomixertrack.c:
3027         * sys/sunaudio/gstsunaudiomixertrack.h:
3028         * sys/sunaudio/gstsunaudiosink.c:
3029         * sys/sunaudio/gstsunaudiosink.h:
3030         * sys/sunaudio/gstsunaudiosrc.c:
3031         * sys/sunaudio/gstsunaudiosrc.h:
3032           Fix up copyrights (#525860).
3033
3034 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
3035
3036         * gst/goom/goomsl.c: (gsl_read_file):
3037           Check return value of fread() to avoid compiler warnings.
3038
3039 2008-04-01  Wim Taymans  <wim.taymans@collabora.co.uk>
3040
3041         Based on patch by: Mersad Jelacic <mersad at axis dot com>
3042
3043         * gst/law/alaw-decode.c: (gst_alaw_dec_sink_setcaps),
3044         (gst_alaw_dec_chain), (gst_alaw_dec_change_state):
3045         * gst/law/alaw-decode.h:
3046         * gst/law/alaw-encode.c: (gst_alaw_enc_chain):
3047         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
3048         (gst_mulawdec_chain), (gst_mulawdec_change_state):
3049         * gst/law/mulaw-decode.h:
3050         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
3051         Make negotiation a bit modern.
3052         Use pad_alloc. Fixes #525359.
3053
3054 2008-03-31  David Schleef  <ds@schleef.org>
3055
3056         * gst/goom/xmmx.c: Fix constraints on asm code so that it
3057           compiles consistently.  Fixes #522278.
3058
3059 2008-03-27  Tim-Philipp Müller  <tim at centricular dot net>
3060
3061         Patch by: Brian Cameron <brian.cameron at sun dot com>
3062
3063         * sys/sunaudio/gstsunaudiomixerctrl.c:
3064           (gst_sunaudiomixer_ctrl_get_volume),
3065           (gst_sunaudiomixer_ctrl_set_volume):
3066         * sys/sunaudio/gstsunaudiomixertrack.c: (gst_sunaudiomixer_track_new):
3067           Fix up the mixer tracks to use a volume range of 0-255, which is what
3068           the sun audio API uses. This simplifies the code and avoids rounding
3069           errors. Fixes #524593.
3070
3071 2008-03-26  Edgard Lima  <edgard.lima@indt.org.br>
3072
3073         * sys/v4l2/gstv4l2object.c:
3074         * sys/v4l2/gstv4l2object.h:
3075         Add device-fd property to make it possible to apps to call ioctl's.
3076
3077 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
3078
3079         * gst/qtdemux/qtdemux.c: (next_entry_size):
3080         Unbreak streaming mode again.
3081
3082 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
3083
3084         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
3085           Remove superfluous DEBUG macro.
3086
3087 2008-03-25  Tim-Philipp Müller  <tim at centricular dot net>
3088
3089         Based on patch by: William M. Brack <wbrack at mmm com hk>
3090
3091         * sys/v4l2/v4l2src_calls.c: (fractions_are_equal),
3092           (gst_v4l2src_set_capture):
3093           Check whether the device supports setting the framerate before
3094           trying to set it and then posting a warning or error if it doesn't
3095           work (#516649, #520092). Also compare fractions more correctly.
3096
3097 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
3098
3099         * gst/goom/Makefile.am:
3100           Remove ppc assembler optimisations from the build until they
3101           actually build (they also seem to have GPL headers).
3102
3103 2008-03-23  Tim-Philipp Müller  <tim at centricular dot net>
3104
3105         * m4/Makefile.am:
3106           Better not dist files that don't exist any longer (lrint*m4).
3107
3108 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3109
3110         * configure.ac:
3111         * m4/lrint.m4:
3112         * m4/lrintf.m4:
3113         Remove lrint/lrintf checks. We don't use it anywhere.
3114
3115 2008-03-18  Andy Wingo  <wingo@pobox.com>
3116
3117         * sys/osxvideo/osxvideosink.m
3118         (gst_osx_video_sink_osxwindow_destroy)
3119         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
3120         task, whoopdee.
3121         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
3122         2 ms.
3123
3124 2008-03-18  Andy Wingo  <wingo@pobox.com>
3125
3126         * sys/osxvideo/osxvideosink.m
3127         (gst_osx_video_sink_osxwindow_destroy)
3128         (gst_osx_video_sink_osxwindow_new): Actually set a lock on the
3129         task, whoopdee.
3130         (cocoa_event_loop): Pacify the taymans by upping the usleepage to
3131         2 ms.
3132         
3133 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
3134
3135         Patch by: William M. Brack <wbrack at mmm com hk>
3136
3137         * sys/v4l2/v4l2src_calls.c:
3138           (gst_v4l2src_probe_caps_for_format_and_size),
3139           (gst_v4l2src_probe_caps_for_format):
3140           Make sure the probed frame sizes are reversed in the resulting
3141           caps also when using V4L2_FRMSIZE_STEPWISE (so they end up
3142           highest resolution first); also remove unused variable.
3143           (Partly fixes #520092)
3144
3145 2008-03-17  Wim Taymans  <wim.taymans@collabora.co.uk>
3146
3147         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3148
3149         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
3150         (gst_rtspsrc_finalize):
3151         Call WSAStartup() and WSACleanup before using the Winsock API.
3152         See #520808.
3153
3154 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
3155
3156         * gst/avi/gstavidemux.c:
3157           Erm, the buffer-size is just guint, no need for the special format
3158           specifier.
3159
3160 2008-03-16  Tim-Philipp Müller  <tim at centricular dot net>
3161
3162         * gst/goom/plugin_info.c:
3163         * gst/goom/ppc_zoom_ultimate.h:
3164           Small fixes to build more on PPC: ifdef out code that uses unknown
3165           define; add newline at end of header file to avoid compiler warning.
3166           Assembler code still doesn't build though.
3167
3168 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
3169
3170         * gst/avi/gstavidemux.c:
3171           Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
3172           Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
3173
3174 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
3175
3176         * gst/avi/gstavidemux.c:
3177           Chunksize is uint32. Fix format specifier.
3178
3179 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
3180
3181         * gst/rtsp/COPYING.MIT: Remove extra line that got copied over by
3182         mistake. Return file to pure MIT text.
3183
3184 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
3185
3186         * gst/audiofx/audiofx.c:
3187         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
3188         of hardcoding values.
3189
3190 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
3191
3192         Patch by: Mark Nauwelaerts <manauw skynet be>
3193
3194         * sys/oss/gstosssrc.c: (gst_oss_src_init), (gst_oss_src_getcaps),
3195           (gst_oss_src_close):
3196         * sys/oss/gstosssrc.h:
3197           Cache probed caps, so _get_caps() during recording doesn't cause
3198           ioctl calls which may disrupt the recording (fixes #521875).
3199
3200 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
3201
3202         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
3203         (gst_qtdemux_activate_segment),
3204         (gst_qtdemux_prepare_current_sample),
3205         (gst_qtdemux_loop_state_movie), (qtdemux_parse_trak):
3206         Make sure we always send a DISCONT after a seek by setting the sample
3207         index to an undefined value after a seek.
3208
3209 2008-03-11  Tim-Philipp Müller  <tim at centricular dot net>
3210
3211         * gst/avi/gstavisubtitle.h: (GST_IS_AVI_SUBTITLE),
3212           (GST_IS_AVI_SUBTITLE_CLASS):
3213           Fix up IS_FOO macros, which makes gtk-doc much happier.
3214
3215 2008-03-08  Tim-Philipp Müller  <tim at centricular dot net>
3216
3217         * tests/icles/Makefile.am:
3218           Move the -lgstfoo where it belongs.
3219
3220 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
3221
3222         * gst/matroska/ebml-ids.h:
3223         Add ID for EBML CRC32 elements.
3224
3225         * gst/matroska/Makefile.am:
3226         * gst/matroska/ebml-read.c: (gst_ebml_finalize),
3227         (gst_ebml_read_class_init), (gst_ebml_read_peek_bytes),
3228         (gst_ebml_read_get_length), (_ext2dbl), (gst_ebml_read_float),
3229         (gst_ebml_read_header):
3230         Support reading 80bit floats, add finalize method to clean up
3231         in any case, support reading length/id elements with any length
3232         as long as it's smaller than our supported maximum, don't leak
3233         buffers if reading as much data as we wanted failed and some
3234         smaller cleanup.
3235
3236 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
3237
3238         Patch by: Olivier Crete <tester at tester dot ca>
3239
3240         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process):
3241         Check that a buffer is large enough before reading from it.
3242         Fixes bug #521102.
3243         
3244 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3245
3246         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
3247         Fix compilation after removing the GstPollMode from the
3248         constructor.
3249
3250 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
3251
3252         * configure.ac:
3253         * gst/audiofx/Makefile.am:
3254         * gst/audiofx/audiochebband.c:
3255         * gst/audiofx/audiocheblimit.c:
3256         * gst/audiofx/math_compat.h:
3257         Check for sinh(), cosh() and asinh() and define our own
3258         implementations if they're not available. Fixes bug #520880.
3259
3260 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
3261
3262         Patch by: Olivier Crete <tester at tester dot ca>
3263
3264         * ext/speex/gstspeexenc.c: (gst_speex_enc_chain):
3265         Unref the buffers only once when handling not-negotiated errors.
3266         Fixes bug #520764.
3267
3268 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3269
3270         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
3271
3272         * gst/udp/gstudpsrc.c: (gst_udpsrc_finalize), (gst_udpsrc_start),
3273         (gst_udpsrc_stop):
3274         Properly balance WSA_Cleanup with WSA_Startup.
3275         Also make the poll controllable on windows. Fixes #520888.
3276
3277 2008-03-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3278
3279         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
3280         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
3281         (gst_ebml_read_element_length), (gst_ebml_peek_id),
3282         (gst_ebml_read_skip), (gst_ebml_read_buffer),
3283         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
3284         (gst_ebml_read_float), (gst_ebml_read_ascii), (gst_ebml_read_utf8),
3285         (gst_ebml_read_date), (gst_ebml_read_master),
3286         (gst_ebml_read_binary), (gst_ebml_read_header):
3287         * gst/matroska/ebml-read.h:
3288         * gst/matroska/matroska-demux.c:
3289         (gst_matroska_demux_combine_flows), (gst_matroska_demux_reset),
3290         (gst_matroska_demux_read_track_encodings),
3291         (gst_matroska_demux_add_stream),
3292         (gst_matroska_demux_handle_src_query),
3293         (gst_matroska_demux_handle_seek_event),
3294         (gst_matroska_demux_init_stream),
3295         (gst_matroska_demux_parse_tracks),
3296         (gst_matroska_demux_parse_index_cuetrack),
3297         (gst_matroska_demux_parse_index_pointentry),
3298         (gst_matroska_demux_parse_index), (gst_matroska_demux_parse_info),
3299         (gst_matroska_demux_parse_metadata_id_simple_tag),
3300         (gst_matroska_demux_parse_metadata_id_tag),
3301         (gst_matroska_demux_parse_metadata),
3302         (gst_matroska_demux_sync_streams),
3303         (gst_matroska_demux_push_hdr_buf),
3304         (gst_matroska_demux_push_flac_codec_priv_data),
3305         (gst_matroska_demux_push_xiph_codec_priv_data),
3306         (gst_matroska_demux_add_wvpk_header),
3307         (gst_matroska_demux_check_subtitle_buffer),
3308         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
3309         (gst_matroska_demux_parse_cluster),
3310         (gst_matroska_demux_parse_contents_seekentry),
3311         (gst_matroska_demux_parse_contents),
3312         (gst_matroska_demux_loop_stream_parse_id),
3313         (gst_matroska_demux_loop_stream), (gst_matroska_demux_loop):
3314         * gst/matroska/matroska-demux.h:
3315         * gst/matroska/matroska-ids.h:
3316         Handle return values from pull_range in a more granular way to properly
3317         shut down on seeks.
3318         Combine return values from push.
3319         Implement proper error handling.
3320         Prepare for handling seeking correctly.
3321
3322 2008-03-03  Jan Schmidt  <jan.schmidt@sun.com>
3323
3324         * gst/matroska/ebml-read.c:
3325         Use GINT64 formatting constants from GLIB.
3326
3327         * gst/matroska/matroska-demux.c:
3328         Add some guards to avoid a possible division by 0 and crashing
3329         with NULL events on some systems.
3330         Use gst_gdouble_to_guint64 somewhere instead of an implicit
3331         conversion. 
3332
3333         * gst/matroska/matroska-mux.c:
3334         Check for invalid timestamps in a bunch of places to avoid
3335         writing bogus durations into the output file.
3336         Fix some double<->gint64 conversions that weren't using
3337         gst_guint64_to_gdouble
3338
3339 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
3340
3341         * configure.ac:
3342         Move the checks for bison, flex and as to the program section and the
3343         check for gcc inline asm to the compiler characteristics section.
3344
3345 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
3346
3347         * configure.ac:
3348         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
3349         plug-ins are included/excluded. (#498222)
3350
3351 2008-02-29  Michael Smith <msmith@fluendo.com>
3352
3353         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
3354           Don't call gst_object_sync_values() unless we have a valid timestamp.
3355
3356 2008-02-28  David Schleef  <ds@schleef.org>
3357
3358         * gst/matroska/matroska-demux.c:
3359         * gst/matroska/matroska-ids.h:
3360         * gst/matroska/matroska-mux.c:
3361           Fix Dirac mapping.  I had previously added a VfW-type
3362           mapping, but it looks like Dirac will get a native Matroska
3363           mapping, and this is the most likely method.
3364
3365 2008-02-28  David Schleef  <ds@schleef.org>
3366
3367         * gst/avi/gstavimux.c: Add Dirac encoding
3368
3369 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3370
3371         Patch by: Peter Kjellerstedt <pkj at axis com>
3372
3373         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
3374         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
3375         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
3376         * gst/udp/gstudpsrc.h:
3377         Port to GstPoll. See #505417.
3378
3379 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
3380
3381         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
3382         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
3383         yet on the srcpad. We need rate and channels before we
3384         can do any processing. Fixes bug #519088.
3385
3386 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
3387
3388         * configure.ac:
3389         Detect and indicate if GCC inline assembly syntax is
3390         available.
3391
3392         * gst/goom/Makefile.am:
3393         * gst/goom/convolve_fx.c:
3394         * gst/goom/flying_stars_fx.c:
3395         * gst/goom/goom_config.h:
3396         * gst/goom/goom_core.c:
3397         * gst/goom/goomsl.c:
3398         * gst/goom/ifs.c:
3399         * gst/goom/mmx.c:
3400         * gst/goom/plugin_info.c:
3401         * gst/goom/xmmx.c:
3402         Fix various GCC-isms, and only build the inline assembly
3403         with compilers that support GCC inline assembly.
3404
3405         Fix a couple of other warnings shown with Forte.
3406
3407 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
3408
3409         * gst/goom/xmmx.c:
3410           Use 'emms' instead of 'femms' to not crash on cpus that do not
3411           implement this 3dnow specific instruction.
3412
3413 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3414
3415         * gst/goom/plugin_info.c: (setOptimizedMethods):
3416         Use extended MMX for draw_line() too if available, not only
3417         normal MMX.
3418
3419 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
3420
3421         * ext/jpeg/gstjpeg.c: (plugin_init):
3422         Remove (commented out) smoke typefinder. This is in base now.
3423
3424 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
3425
3426         * gst/goom2k1/Makefile.am:
3427         * gst/goom2k1/gstgoom.c:
3428
3429         Rename the installed library, and don't register the same 
3430         GType name as the new goom.
3431
3432 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
3433
3434         * configure.ac:
3435         * ext/taglib/Makefile.am:
3436           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
3437           when building C++ code (#516509).
3438
3439 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
3440
3441         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
3442         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
3443           (setOptimizedMethods):
3444           Call oil_init(), otherwise oil_get_cpu_flags() won't return
3445           anything useful. Export goom debug category so we can get
3446           rid of the VERBOSE define and the printfs.
3447
3448 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
3449
3450         * gst/goom/goomsl_heap.c: (align_it):
3451         * gst/goom/plugin_info.c: (setOptimizedMethods):
3452           Compile fixes for x86-64.
3453
3454 2008-02-23  Bastien Nocera  <hadess@hadess.net>
3455
3456         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
3457         with warnings, but add other CFLAGS
3458
3459         * gst/goom/goomsl.c (gsl_instr_set_namespace),
3460         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
3461         (calculate_labels), (gsl_read_file):
3462         * gst/goom/goomsl_lex.l:
3463         * gst/goom/goomsl_yacc.y:
3464         * gst/goom/plugin_info.c: Remove a few live printf, and
3465         fprintf, replace exit() calls with g_assert_not_reached()
3466         if it not optimal for a library
3467
3468 2008-02-23  Bastien Nocera  <hadess@hadess.net>
3469
3470         * gst/goom/Makefile.am: Remove the warnings being disabled,
3471         fix linkage on x86, spotted by Sebastian Dröge
3472         <slomo@circular-chaos.org>
3473
3474         * gst/goom/convolve_fx.c (convolve_init),
3475         (create_output_with_brightness), (convolve_apply):
3476         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
3477         * gst/goom/goomsl.c:
3478         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
3479         * gst/goom/plugin_info.c:
3480         * gst/goom/tentacle3d.c (tentacle_fx_create):
3481         Fix warnings, and disable the motifs in the convolve_fx
3482         plugin (they were causing warnings, and they were just
3483         "Goom" in funny letterring)
3484
3485 2008-02-23  Bastien Nocera  <hadess@hadess.net>
3486
3487         * configure.ac: Add checks for Flex/Yacc/Bison and other
3488         furry animals, for the new goom 2k4 based plugin
3489
3490         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
3491         CPU optimisations (not working yet), move the old plugin to...
3492
3493         * gst/goom2k1/*: ... here, in case somebody is sick enough
3494
3495         Fixes #515073
3496
3497 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
3498
3499         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
3500         Post the server response code in an error message instead of a generic
3501         'error' message. Fixes #517237.
3502
3503 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
3504
3505         * tests/check/Makefile.am:
3506         Ignore gconfaudiosrc for the states unit test too. It will fallback
3507         to alsasrc if the gconf settings can't be read and not everybody has
3508         alsa.
3509
3510 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
3511
3512         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
3513         (gst_wavpack_parse_create_src_pad):
3514         * ext/wavpack/gstwavpackparse.h:
3515         Always report the duration if we know it in push mode and don't
3516         return 0 just to make totem believe we can't seek in push mode.
3517         Newer totem version use the SEEKING query which properly reports
3518         if we can seek or not.
3519
3520 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
3521
3522         Patch by: Jens Granseuer <jensgr at gmx dot net>
3523
3524         * tests/examples/equalizer/demo.c: (main):
3525         C89 fix, moving variable declarations to the beginning of
3526         the block. Fixes bug #517933.
3527
3528 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
3529
3530         * configure.ac:
3531         Back to development...
3532
3533 === release 0.10.7 ===
3534
3535 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
3536
3537         * configure.ac:
3538           releasing 0.10.7, "Red Door Black"
3539
3540 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
3541
3542         * gst/alpha/Makefile.am:
3543         Link alpha plugin with libgstbase. Fixes bug #517386.
3544
3545 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3546
3547         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
3548         Init values to -1 instead of the default 0 value.
3549         Fixes #516524.
3550
3551 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
3552
3553         * tests/examples/spectrum/spectrum-example.c:
3554         Add missing include to fix compilation when libxml usage is disabled.
3555         Fixes: #516371
3556
3557 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
3558
3559         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
3560         fixes: #514889
3561
3562         * gst/rtp/gstrtph264pay.c:
3563         * gst/rtp/gstrtpmp4gdepay.c:
3564         * gst/rtp/gstrtpmp4gpay.c:
3565         * gst/rtp/gstrtpmp4gpay.h:
3566         * gst/rtp/gstrtptheorapay.c:
3567         * gst/rtp/gstrtpvorbispay.c:
3568
3569         Fix various leaks shown up in valgrind
3570         - free sprops and buffer in error cases in H264 payloader
3571         - fix leak in mp4g depayloader when construction the caps
3572         - don't leak config string in the mp4g payloader
3573         - don't leak buffers and headers in theora and vorbis payloaders
3574
3575         * tests/check/elements/rtp-payloading.c:
3576
3577         Fix the RTP data test
3578         - Actually send valid amr data to the payloader instead of 20
3579         zero-bytes
3580         - The mp4g payloader expects codec_data on the caps
3581
3582 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
3583
3584         * win32/MANIFEST:
3585         Add libgstpng.dsp to MANIFEST.
3586         * win32/vs6/libgstaudiofx.dsp:
3587         Add new source files to VS project file.
3588
3589 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
3590
3591         * sys/ximage/gstximagesrc.c:
3592         Initialise variables when opening the X display rather
3593         than in _start(), as the display can be opened before that.
3594
3595         Fixes: #515985
3596
3597 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3598
3599         * sys/directdraw/gstdirectdrawsink.c:
3600         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
3601         (gst_directdraw_sink_finalize):
3602         Properly chain up finalize functions. Fixes bug #515980.
3603
3604 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3605
3606         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
3607         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
3608         (gst_v4l2_buffer_pool_class_init):
3609         Chain up the finalize functions. Fixes bug #515984.
3610
3611 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
3612
3613         * sys/ximage/ximageutil.c:
3614         Chain up in the finalize function for our custom
3615         buffer sub-class.
3616         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
3617         Fixes: #515706
3618
3619 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3620
3621         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
3622         (gst_fenced_buffer_class_init):
3623         Properly chain up finalize method. Fixes bug #515979.
3624
3625 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
3626
3627         * sys/ximage/gstximagesrc.c:
3628         Free allocated Damage memory before closing our connection to the
3629         X server. Partially fixes: #515706
3630
3631 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3632
3633         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
3634         * tests/check/Makefile.am:
3635         * tests/check/gst-plugins-good.supp:
3636         Add a few libjpeg suppressions and initialize a variable to
3637         make smokeenc valgrind clean. Fixes bug #515701.
3638
3639 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
3640
3641         * gst/avi/gstavidemux.c:
3642         Revert patch which sends timestamps only on keyframes, as it
3643         breaks playback with current gst-ffmpeg.
3644
3645         Fixes: #515562
3646
3647 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
3648
3649         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
3650         * tests/check/elements/multifile.c: (GST_START_TEST):
3651         Close some memory leaks spotted by the unit test. Fixes bug #515697.
3652
3653 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
3654
3655         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
3656         Use and unset the GError when pipeline creation fails instead of
3657         simply leaking it. Fixes bug #515704.
3658
3659 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
3660
3661         * gst/audiofx/audioamplify.c:
3662         * gst/audiofx/audiochebband.c:
3663         * gst/audiofx/audiocheblimit.c:
3664         * gst/audiofx/audiodynamic.c:
3665         * gst/audiofx/audioinvert.c:
3666         * gst/audiofx/audiopanorama.c:
3667         * gst/audiofx/audiowsincband.c:
3668         * gst/audiofx/audiowsinclimit.c:
3669         Fix long description of audiofx elements. Fixes bug #515457.
3670
3671 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
3672
3673         * docs/plugins/Makefile.am:
3674         * gst/spectrum/gstspectrum.c:
3675         * tests/examples/spectrum/.cvsignore:
3676         * tests/examples/spectrum/Makefile.am:
3677         * tests/examples/spectrum/spectrum-example.c:
3678
3679         Add a simple example application for the spectrum element, include it
3680         in the docs, and fix some documentation ambiguities.
3681
3682         Fixes: #348085
3683
3684 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
3685
3686         * gst/equalizer/Makefile.am:
3687         * gst/spectrum/Makefile.am:
3688         Fix includes order
3689
3690         * tests/check/Makefile.am:
3691         Exclude v4l2src from the states test - it takes too long to start.
3692
3693         * tests/check/elements/spectrum.c:
3694         Make the test run properly with CK_FORK=no
3695
3696 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
3697
3698         * gst/audiofix/Makefile.am: add missing header files 
3699
3700 2008-02-08  Julien Moutte  <julien@fluendo.com>
3701
3702         * gst/matroska/matroska-demux.c:
3703         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
3704         keyframe and delta units correctly when dealign with a BlockGroup.
3705         Fixes: #514397
3706
3707 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
3708
3709         * tests/check/elements/.cvsignore:
3710         Spell the new tests correctly in .cvsignore
3711
3712 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
3713
3714         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
3715           Need to use gsize here for the size, fixes compiler warning.
3716
3717         * tests/examples/equalizer/.cvsignore:
3718         * tests/examples/equalizer/Makefile.am:
3719         * tests/examples/spectrum/.cvsignore:
3720         * tests/examples/spectrum/Makefile.am:
3721           Add missing files to fix the build.
3722
3723 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
3724
3725         * configure.ac:
3726         * docs/plugins/Makefile.am:
3727         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3728         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3729         * docs/plugins/gst-plugins-good-plugins.args:
3730         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3731         * docs/plugins/inspect/plugin-multifile.xml:
3732         * tests/check/Makefile.am:
3733         * tests/check/elements/.cvsignore:
3734
3735         Move multifile plugin from -bad.
3736         Fixes: #490283
3737
3738 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
3739
3740         * configure.ac:
3741         * docs/plugins/Makefile.am:
3742         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3743         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3744         * docs/plugins/gst-plugins-good-plugins.args:
3745         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3746         * docs/plugins/inspect/plugin-spectrum.xml:
3747         * gst/spectrum/Makefile.am:
3748         * tests/check/Makefile.am:
3749         * tests/check/elements/.cvsignore:
3750         * tests/examples/Makefile.am:
3751
3752         Move spectrum plugin from -bad.
3753         Move examples into tests/examples/spectrum.
3754
3755 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
3756
3757         * configure.ac:
3758         * docs/plugins/Makefile.am:
3759         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3760         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3761         * docs/plugins/gst-plugins-good-plugins.args:
3762         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3763         * docs/plugins/gst-plugins-good-plugins.interfaces:
3764         * docs/plugins/inspect/plugin-equalizer.xml:
3765         * gst/equalizer/Makefile.am:
3766         * tests/check/Makefile.am:
3767         * tests/examples/Makefile.am:
3768         Move the equalizer plugin across from -bad
3769
3770         * tests/check/elements/.cvsignore:
3771         Add equalizer, audiosincwband and audiosincwlimit
3772
3773         * tests/check/elements/equalizer.c:
3774         Fix compiler warnings
3775
3776         Fixes: #415627
3777
3778 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
3779
3780         * configure.ac:
3781         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
3782         are treated like releases and build without it.
3783
3784 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
3785
3786         * docs/plugins/Makefile.am:
3787         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3788         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3789         * docs/plugins/gst-plugins-good-plugins.args:
3790         * docs/plugins/inspect/plugin-audiofx.xml:
3791         * gst/audiofx/Makefile.am:
3792         * gst/audiofx/audiofx.c:
3793         * gst/audiofx/audiowsincband.c:
3794         * gst/audiofx/audiowsincband.h:
3795         * gst/audiofx/audiowsinclimit.c:
3796         * gst/audiofx/audiowsinclimit.h:
3797         * tests/check/Makefile.am:
3798         * tests/check/elements/audiowsincband.c:
3799         * tests/check/elements/audiowsinclimit.c:
3800
3801         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
3802         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
3803         respectively.
3804
3805         Fixes: #467666
3806
3807 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
3808
3809         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
3810         * tests/check/elements/icydemux.c:
3811           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
3812           caps, and add a somewhat useful debug message. Plus test.
3813
3814 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
3815
3816         * gst/rtsp/gstrtspsrc.c:
3817         Include unistd.h only if HAVE_UNISTD_H is defined
3818         * win32/common/config.h.in:
3819         * win32/common/config.h:
3820         Define socklen_t as it seems it's not defined in default 
3821         Visual Studio headers.
3822         * win32/vs6/libgstalpha.dsp:
3823         * win32/vs6/libgstapetag.dsp:
3824         * win32/vs6/libgstavi.dsp:
3825         * win32/vs6/libgstrtp.dsp:
3826         * win32/vs6/libgstrtsp.dsp:
3827         * win32/vs6/libgstvideomixer.dsp:
3828         Update project file dependencies and add new source files       
3829
3830 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
3831
3832         Patch by: Bjarne Rosengren <bjarne at axis dot com>
3833
3834         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
3835         Don't leak buffers when we don't push them downstream.
3836         Fixes bug #514965.
3837
3838 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
3839
3840         * configure.ac:
3841           Bump requirements to (good) released versions to avoid
3842           confusion and make implicit core requirement explicit.
3843
3844 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
3845
3846         * docs/plugins/Makefile.am:
3847         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3848         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3849         * docs/plugins/gst-plugins-good-plugins.args:
3850         * docs/plugins/inspect/plugin-audiofx.xml:
3851         * gst/audiofx/Makefile.am:
3852         * gst/audiofx/audiochebband.c:
3853         * gst/audiofx/audiochebband.h:
3854         * gst/audiofx/audiocheblimit.c:
3855         * gst/audiofx/audiocheblimit.h:
3856         * gst/audiofx/audiochebyshevfreqband.c:
3857         * gst/audiofx/audiochebyshevfreqband.h:
3858         * gst/audiofx/audiochebyshevfreqlimit.c:
3859         * gst/audiofx/audiochebyshevfreqlimit.h:
3860         * gst/audiofx/audiofx.c:
3861         * tests/check/Makefile.am:
3862         * tests/check/elements/.cvsignore:
3863         * tests/check/elements/audiochebband.c:
3864         * tests/check/elements/audiocheblimit.c:
3865         * tests/check/elements/audiochebyshevfreqband.c:
3866         * tests/check/elements/audiochebyshevfreqlimit.c:
3867
3868         Rename audiochebyshevfreqband -> audiochebband and
3869         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
3870         surgery.
3871
3872         Closes: #491811
3873
3874 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
3875
3876         Patch by: Orjan Friberg <orjanf at axis dot com>
3877
3878         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
3879         Fix caps memory leak. Fixes #514573.
3880
3881 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
3882
3883         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
3884         If there's no entries in the subindex, don't try to do anything stupid,
3885         just return.
3886
3887 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
3888
3889         Patch by: John Millikin <jmillikin at gmail dot com>
3890
3891         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
3892           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
3893           Fix extraction of picture blocks with newer libflac versions again:
3894           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
3895
3896 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
3897
3898         * tests/check/Makefile.am:
3899           Add rtp-payloading test to VALGRIND_TO_FIX.
3900
3901         * tests/check/elements/rtp-payloading.c:
3902           Add semicolons after GST_TEST_END so gst-indent gets the
3903           formatting right; make test less verbose in general, but
3904           more verbose in the error case (which should probably
3905           make the test fail anyway).
3906
3907 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
3908
3909         * docs/plugins/Makefile.am:
3910         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3911         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3912         * gst/avi/gstavisubtitle.c:
3913         Add documentation for avisubtitle and change class to
3914         Codec/Parser/Subtitle
3915
3916 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
3917
3918         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
3919         Treat ENOTTY (driver does not implement ioctl) the same as
3920         EINVAL since it implies there are no available standards.
3921
3922         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
3923         (gst_v4l2src_get_nearest_size):
3924         Replace gst_v4l2src_get_size_limits with 2 calls to new function
3925         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
3926         probe if the driver does not support VIDIOC_TRY_FMT for whatever
3927         reason, and if we aren't yet actively capturing.
3928
3929         * sys/v4l2/v4l2src_calls.h:
3930         Remove replaced function declaration.
3931
3932 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
3933
3934         * configure.ac:
3935         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
3936         API.
3937
3938 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
3939
3940         * configure.ac:
3941         Fix typo.
3942
3943 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
3944
3945         * gst/alpha/Makefile.am:
3946         * gst/alpha/gstalpha.c:
3947
3948         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
3949         some stuff, and making buffer-alloc and resizing work automatically.
3950         No longer crashes on odd frame widths and heights, although there
3951         seems to be a disagreement with ffmpegcolorspace about what size
3952         an AYUV frame with odd height should be.
3953
3954 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3955
3956         Patch by: Alessandro Decina <alessandro at nnva dot org>
3957
3958         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
3959         * ext/libpng/gstpngenc.h:
3960         Preallocate the output buffer so that g_memdup() and
3961         gst_buffer_merge() aren't needed anymore. This greatly improves
3962         performances and fixes #512544.
3963
3964 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3965
3966         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
3967         (gst_avi_demux_stream_data):
3968         GStreamer timestamps are PTS values while AVI only knows about DTS
3969         timestamps. Make sure we only copy the DTS as the buffer timestamp when
3970         we are dealing with a key frame.
3971
3972 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
3973
3974         * tests/check/Makefile.am:
3975         * tests/check/elements/.cvsignore:
3976         * tests/check/elements/rtp-payloading.c:
3977           Add add testsuite for the rtp-payloader that tries simulating
3978           dataflow. Needs more test data.
3979
3980 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
3981
3982         * tests/check/elements/alphacolor.c:
3983           Remove two unused variables.
3984
3985 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
3986
3987         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
3988           Use g_ascii_strtoll() instead of atoll, which is only
3989           available in C99.
3990
3991 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
3992
3993         * gst/rtp/Makefile.am:
3994         * gst/rtp/gstrtp.c:
3995         * gst/rtp/gstrtpmpvpay.c:
3996         * gst/rtp/gstrtpmpvpay.h:
3997         Add MPEG2 video payloader
3998
3999 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
4000
4001         * gst/level/gstlevel.c:
4002         Use #include <math.h> instead of #include "math.h".
4003
4004 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
4005
4006         * tests/check/Makefile.am:
4007         Fix up some CFLAGS sets.
4008         Don't include gconfvideosrc in the states test.
4009
4010         * tests/check/elements/autodetect.c: (GST_START_TEST):
4011         Add some error strings to fail_unless arguments to fix some weird
4012         compiler errors on Solaris.
4013
4014 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
4015
4016         * configure.ac:
4017         Detect video4linux headers on Solaris too.
4018         * sys/v4l2/gstv4l2colorbalance.h:
4019         * sys/v4l2/gstv4l2object.h:
4020         * sys/v4l2/v4l2_calls.c:
4021         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
4022         (gst_v4l2_buffer_new):
4023
4024         Make v4l2 build on Solaris.
4025         Patch by: Brian Cameron  <brian.cameron at sun dot com>
4026         Fixes: #510505
4027
4028 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
4029
4030         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4031           Update list from (still local) scanning script.
4032
4033 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
4034
4035         Based on a patch by:
4036             Victor STINNER <victor dot stinner at haypocalc dot com>
4037
4038         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
4039         Set variable to NULL after freeing it to prevent double frees
4040         or make failures by another use of it afterwards more obvious
4041         and fix use of it after the freeing. Fixes bug #510592.
4042
4043 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
4044
4045         * gst/udp/gstmultiudpsink.c:
4046         use GST_WARNING for logging
4047
4048 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
4049
4050         * gst/udp/gstmultiudpsink.c:
4051         Don't try to leave a multicast group with an invalid socket
4052
4053 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
4054
4055         * ext/flac/gstflacdec.c:
4056           Fix compilation against flac 1.1.2 (as on debian stable), where
4057           the picture metadata defines and structs don't exist yet.
4058           Fixes #509301.
4059
4060 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
4061
4062         Patch by: Olivier Crete <tester at tester dot ca>
4063
4064         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
4065         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
4066         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
4067         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
4068         * gst/udp/gstmultiudpsink.h:
4069         Add property to automatically join a multicast group or not. This can be
4070         useful when sharing a socket between multiple elements.
4071         Fixes #509531.
4072
4073 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
4074
4075         * gst/videomixer/Makefile.am:
4076           Add controller flags.
4077
4078 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
4079
4080         * gst/videomixer/videomixer.c:
4081           Also commit the missing gst_object_sync_values().
4082
4083 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
4084
4085         * docs/plugins/Makefile.am:
4086           Remove duplicate entry.
4087
4088 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
4089
4090         * docs/plugins/Makefile.am:
4091         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4092         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4093         * docs/plugins/inspect/plugin-gamma.xml:
4094         * docs/plugins/inspect/plugin-monoscope.xml:
4095         * docs/plugins/inspect/plugin-video4linux2.xml:
4096           Add 3 more plugins to docs.
4097
4098 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
4099
4100         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4101         * sys/osxvideo/osxvideosink.h:
4102           Revert previous change caused by a file that got stuck on an old
4103           revision.
4104
4105 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
4106
4107         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4108         * gst/multipart/Makefile.am:
4109         * gst/multipart/multipartdemux.c:
4110         * gst/multipart/multipartdemux.h:
4111         * gst/multipart/multipartmux.c:
4112         * gst/multipart/multipartmux.h:
4113           Re-add multipartdemux to the docs. Last round of section cleanup.
4114
4115 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
4116
4117         * docs/plugins/Makefile.am:
4118         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4119         * sys/osxaudio/gstosxaudiosink.h:
4120         * sys/osxvideo/osxvideosink.h:
4121           Managed to resolve most unused declarations. Filed a bug for one left.          
4122
4123 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
4124
4125         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4126           Cleanup section file.
4127
4128 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
4129
4130         * docs/plugins/Makefile.am:
4131         * docs/plugins/gst-plugins-good-plugins.args:
4132         * docs/plugins/gst-plugins-good-plugins.signals:
4133         * docs/plugins/inspect/plugin-alaw.xml:
4134         * docs/plugins/inspect/plugin-alpha.xml:
4135         * docs/plugins/inspect/plugin-alphacolor.xml:
4136         * docs/plugins/inspect/plugin-annodex.xml:
4137         * docs/plugins/inspect/plugin-apetag.xml:
4138         * docs/plugins/inspect/plugin-audiofx.xml:
4139         * docs/plugins/inspect/plugin-auparse.xml:
4140         * docs/plugins/inspect/plugin-autodetect.xml:
4141         * docs/plugins/inspect/plugin-avi.xml:
4142         * docs/plugins/inspect/plugin-cairo.xml:
4143         * docs/plugins/inspect/plugin-cdio.xml:
4144         * docs/plugins/inspect/plugin-cutter.xml:
4145         * docs/plugins/inspect/plugin-debug.xml:
4146         * docs/plugins/inspect/plugin-dv.xml:
4147         * docs/plugins/inspect/plugin-efence.xml:
4148         * docs/plugins/inspect/plugin-effectv.xml:
4149         * docs/plugins/inspect/plugin-flac.xml:
4150         * docs/plugins/inspect/plugin-flxdec.xml:
4151         * docs/plugins/inspect/plugin-gconfelements.xml:
4152         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
4153         * docs/plugins/inspect/plugin-goom.xml:
4154         * docs/plugins/inspect/plugin-halelements.xml:
4155         * docs/plugins/inspect/plugin-icydemux.xml:
4156         * docs/plugins/inspect/plugin-id3demux.xml:
4157         * docs/plugins/inspect/plugin-jpeg.xml:
4158         * docs/plugins/inspect/plugin-ladspa.xml:
4159         * docs/plugins/inspect/plugin-level.xml:
4160         * docs/plugins/inspect/plugin-matroska.xml:
4161         * docs/plugins/inspect/plugin-mulaw.xml:
4162         * docs/plugins/inspect/plugin-multipart.xml:
4163         * docs/plugins/inspect/plugin-navigationtest.xml:
4164         * docs/plugins/inspect/plugin-png.xml:
4165         * docs/plugins/inspect/plugin-quicktime.xml:
4166         * docs/plugins/inspect/plugin-rtp.xml:
4167         * docs/plugins/inspect/plugin-rtsp.xml:
4168         * docs/plugins/inspect/plugin-shout2send.xml:
4169         * docs/plugins/inspect/plugin-smpte.xml:
4170         * docs/plugins/inspect/plugin-speex.xml:
4171         * docs/plugins/inspect/plugin-taglib.xml:
4172         * docs/plugins/inspect/plugin-udp.xml:
4173         * docs/plugins/inspect/plugin-videobalance.xml:
4174         * docs/plugins/inspect/plugin-videobox.xml:
4175         * docs/plugins/inspect/plugin-videocrop.xml:
4176         * docs/plugins/inspect/plugin-videoflip.xml:
4177         * docs/plugins/inspect/plugin-videomixer.xml:
4178         * docs/plugins/inspect/plugin-wavenc.xml:
4179         * docs/plugins/inspect/plugin-wavpack.xml:
4180         * docs/plugins/inspect/plugin-wavparse.xml:
4181           Update plugin docs.
4182
4183         * gst/videomixer/Makefile.am:
4184         * gst/videomixer/videomixer.c:
4185         * gst/videomixer/videomixer.h:
4186         * gst/videomixer/videomixerpad.h:
4187           Split out header to fix warnings from the doc-build.
4188
4189 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4190
4191         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
4192
4193         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
4194         Use atoll to parse the rtptime with enough precision. Fixes #509329.
4195
4196 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
4197
4198         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
4199         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
4200           Initialise variables to work around (false) 'foo might be used
4201           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
4202
4203 2008-01-11  David Schleef  <ds@schleef.org>
4204
4205         * docs/plugins/.cvsignore:
4206         * tests/check/pipelines/.cvsignore:
4207           Ignore more files for the buildbot.
4208
4209 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
4210
4211         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
4212         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
4213         Generate the image-type values correctly. Leave them out of the caps
4214         when outputting a "preview image" tag, since it only makes sense
4215         to have one of those - the type is irrelevant.
4216
4217         * sys/sunaudio/gstsunaudiomixerctrl.c:
4218         (gst_sunaudiomixer_ctrl_open):
4219         If we can, mark the mixer multiple open when we use it, in case
4220         (for some reason) the process wants to open it again elsewhere.
4221
4222 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4223
4224         Patch by: Olivier Crete <tester at tester dot ca>
4225
4226         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
4227         * gst/rtp/gstrtptheorapay.c:
4228         Fix the clock rate to 90000 as required by the RFC.
4229         Fixes #508644.
4230
4231 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
4232
4233         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
4234           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
4235
4236 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
4237
4238         * autogen.sh:
4239           Add -Wno-portability to the automake parameters to stop warnings
4240           about GNU make extensions being used. We require GNU make in almost
4241           every Makefile anyway.
4242           
4243         * configure.ac:
4244           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
4245           at the same time is required for per target flags.
4246
4247 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
4248
4249         * gst/videomixer/videomixer.c: (gst_videomixer_init):
4250         Fix error from my last commit.
4251
4252 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
4253
4254         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
4255
4256         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
4257           Make sure the ISO 639-X language code in ID3v2 COMM frames
4258           is actually valid UTF-8 (or rather: ASCII), so we don't end
4259           up with non-UTF8 strings in tags if there's garbage in the
4260           language field. Also make sure the language code is always
4261           lower case. Fixes: #508291.
4262
4263 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
4264
4265         * ChangeLog:
4266           Fix ChangeLog typo.
4267
4268 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
4269
4270         * Makefile.am:
4271           Include lcov.mak to allow building coverage reports. Guard
4272           check-torture target like in the other packages.
4273
4274 2008-01-09  Sameer Naik  <sameer@damagehead.com>
4275
4276         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
4277
4278         * gst/videomixer/videomixer.c:
4279         (gst_videomixer_set_master_geometry), (_do_init),
4280         (gst_videomixer_child_proxy_get_child_by_index),
4281         (gst_videomixer_child_proxy_get_children_count),
4282         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
4283         (gst_videomixer_init), (gst_videomixer_request_new_pad),
4284         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
4285         Implement GstChildProxy interface.
4286         Send newsegment at the right moment
4287         Fixes #488879
4288
4289 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
4290
4291         * gst/alpha/Makefile.am:
4292         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
4293         (gst_alpha_sink_event), (gst_alpha_chain),
4294         (gst_alpha_change_state), (plugin_init):
4295         Make the various properties of 'alpha' controllable. This allows doing
4296         niceties like fade-in/fade-out.
4297
4298 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
4299
4300         * gst/rtp/gstasteriskh263.c:
4301         * gst/rtp/gstrtpL16depay.c:
4302         * gst/rtp/gstrtpac3depay.c:
4303         * gst/rtp/gstrtpamrpay.c:
4304         * gst/rtp/gstrtpdepay.c:
4305         * gst/rtp/gstrtpgsmdepay.c:
4306         * gst/rtp/gstrtph263depay.c:
4307         * gst/rtp/gstrtph263pdepay.c:
4308         * gst/rtp/gstrtph263ppay.c:
4309         * gst/rtp/gstrtph264depay.c:
4310         * gst/rtp/gstrtph264pay.c:
4311         * gst/rtp/gstrtpmp2tdepay.c:
4312         * gst/rtp/gstrtpmp4adepay.c:
4313         * gst/rtp/gstrtpmp4gdepay.c:
4314         * gst/rtp/gstrtpmp4gpay.c:
4315         * gst/rtp/gstrtpmp4vdepay.c:
4316         * gst/rtp/gstrtpmpadepay.c:
4317         * gst/rtp/gstrtpmpvdepay.c:
4318         * gst/rtp/gstrtpsv3vdepay.c:
4319         * gst/rtp/gstrtptheoradepay.c:
4320         * gst/rtp/gstrtptheorapay.c:
4321         * gst/rtp/gstrtpvorbisdepay.c:
4322         * gst/rtp/gstrtpvorbispay.c:
4323           Remove copy/paste unused code (property setters and getter) found by
4324           the coverage suite (yay, saves ~20k on disk).
4325
4326 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4327
4328         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
4329           (videosink_templ):
4330           Also fix up pad templates to indicate that image/jpeg doesn't
4331           absolutely require the framerate property to be set (#504081).
4332
4333 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4334
4335         Based on patch by: Wouter Cloetens  <wouter at mind be>
4336
4337         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
4338           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
4339           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
4340         * gst/matroska/matroska-mux.h:
4341           Keep track of first and last timestamps for each incoming stream,
4342           so we can calculate the total duration for live sources and other
4343           input where we can't query the duration from the start or where
4344           there's no constant framerate from which we can deduce the
4345           duration; also use calculated/observed duration if it is bigger
4346           than the previously queried duration. Furthermore, use
4347           gst_pad_query_peer_duration() and take into account that it may
4348           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
4349           screws up comparisons when using unsigned integers. Fixes #504081.
4350
4351 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
4352
4353         * configure.ac:
4354         * gst/audiofx/audioamplify.c:
4355         (gst_audio_amplify_clipping_method_get_type),
4356         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
4357         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
4358         (gst_audio_dynamic_transform_ip):
4359         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
4360         (gst_audio_invert_transform_ip):
4361         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
4362         (gst_audio_panorama_transform):
4363         * gst/level/gstlevel.c: (gst_level_init):
4364         Make elements GST_BUFFER_FLAG_GAP aware and call
4365         gst_base_transform_set_gap_aware for this.
4366         Bump core requirement to CVS.
4367         
4368         * gst/audiofx/audiochebyshevfreqband.c:
4369         (gst_audio_chebyshev_freq_band_transform_ip):
4370         * gst/audiofx/audiochebyshevfreqlimit.c:
4371         (gst_audio_chebyshev_freq_limit_transform_ip):
4372         Also sync GObject properties to the controller if operating
4373         in passthrough mode.
4374
4375 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
4376
4377         * sys/directdraw/gstdirectdrawsink.c:
4378           (gst_directdraw_sink_window_thread):
4379           FALSE is not a gpointer.
4380
4381 2008-01-05  Julien Moutte  <julien@fluendo.com>
4382
4383         * sys/directdraw/gstdirectdrawsink.c:
4384         (gst_directdraw_sink_set_window_id),
4385         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
4386         (gst_directdraw_sink_buffer_alloc),
4387         (gst_directdraw_sink_draw_borders),
4388         (gst_directdraw_sink_show_frame),
4389         (gst_directdraw_sink_setup_ddraw),
4390         (gst_directdraw_sink_window_thread),
4391         (gst_directdraw_sink_get_ddrawcaps),
4392         (gst_directdraw_sink_surface_create): Make sure we create our
4393         internal window only when we need it. That will give a chance to
4394         the application to get the prepare-xwindow-id bus message. Draw
4395         black borders when keeping aspect ratio. Handle the case where our
4396         rendering window disappears (closed or errors) like other sinks
4397         do. Various 80 columns fixes, improve state change order. That
4398         element could need some more love.
4399
4400 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
4401
4402         * ext/taglib/gstapev2mux.h:
4403         * ext/taglib/gstid3v2mux.h:
4404         Remove useless typedefs without new type name. Fixes a warning with
4405         gcc 4.3.
4406
4407 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
4408
4409         Patch by: John Millikin <jmillikin at gmail dot com>
4410
4411         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
4412         (gst_flac_dec_setup_stream_decoder),
4413         (gst_flac_normalize_picture_mime_type),
4414         (gst_flac_extract_picture_buffer),
4415         (gst_flac_dec_metadata_callback):
4416         Emit metadata messages when a PICTURE block is encountered.
4417         Fixes #506715.
4418
4419 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
4420
4421         * gst/avi/gstavi.c:
4422         increase rank because no known issues anymore ...
4423         * gst/avi/gstavisubtitle.c:
4424         send subtitle name to the srcpad
4425
4426 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
4427
4428         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
4429         * gst/rtsp/gstrtspsrc.h:
4430         Implement redirect for the DESCRIBE reply. Fixes #506025.
4431
4432 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
4433
4434         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
4435         Fix 'xyz may be used uninitialized' compiler warnings caused
4436         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
4437         abort() in any case but properly report the error.
4438
4439 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
4440
4441         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
4442         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
4443         * sys/ximage/gstximagesrc.c: (composite_pixel):
4444           Fix 'xyz may be used uninitialized' compiler warnings caused
4445           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
4446           not really nice to abort in any case). Fixes #505745.
4447
4448 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
4449
4450         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
4451           Small unit test fix (has no practical impact at the moment,
4452           since we're only feeding utf8 and hence just create a sub-
4453           buffer for the output).
4454
4455 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
4456
4457         * gst/avi/gstavisubtitle.c:
4458         * tests/check/elements/avisubtitle.c:
4459         Add seeking support for avi subtitle
4460
4461 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
4462
4463         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
4464         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
4465         (gst_flac_dec_write):
4466         * ext/flac/gstflacdec.h:
4467         Remove some unused vars.
4468         Do more cleanup of leftover events and tags.
4469         Output tags after the segment event. Fixes #504018.
4470
4471 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
4472
4473         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
4474           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
4475           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
4476           Detect other UTF byte order markers and convert to UTF-8 as
4477           appropriate.
4478
4479 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
4480
4481         * gst/avi/gstavisubtitle.c: (src_template),
4482           (gst_avi_subtitle_extract_utf8_file),
4483           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
4484           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
4485           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
4486         * gst/avi/gstavisubtitle.h:
4487           Refactor a bit; fix name extraction; don't assume all the data
4488           in the chunk is actually subtitle data, there may be padding at
4489           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
4490           file so it's there to send again after a seek (for future use).
4491
4492 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
4493
4494         * gst/avi/Makefile.am:
4495         * gst/avi/gstavi.c:
4496         * gst/avi/gstavisubtitle.c:
4497         * gst/avi/gstavisubtitle.h:
4498         * tests/check/Makefile.am:
4499         * tests/check/elements/avisubtitle.c:
4500         * win32/common/config.h:
4501                 Add avi subtitle element for bug #442034. Need seeking support
4502                 and more support for character conversion.
4503
4504 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
4505
4506         * Makefile.am:
4507           Include common/win32.mak for CRLF check of win32 project
4508           files (see #393626).
4509
4510         * win32/vs6/libgstpng.dsp:
4511           Fix line endings and do cvs admin -kb.
4512
4513 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
4514
4515         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
4516         Actually drop the buffers which are outside the currently configured
4517         segment instead of just emitting a WARNING.
4518
4519 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4520
4521         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
4522         (gst_flac_dec_write):
4523         * ext/flac/gstflacdec.h:
4524         Send segments from the streaming thread. Fixes #502187.
4525         Fix segment seeking and a bunch of other seeking cases.
4526
4527 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
4528
4529         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
4530           Parse WOAF frames and put the result into GST_TAG_CONTACT,
4531           which is where it would end up if the same information was
4532           put in a vorbis comment (don't think it's worth adding a
4533           new URI tag for this). Fixes #488112.
4534
4535 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
4536
4537         * configure.ac:
4538           We need core/base 0.10.15 or later.
4539
4540 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4541
4542         Patch by: Mark Nauwelaerts <manauw skynet be>
4543
4544         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
4545         Fix regression in stream numbering. Fixes #502655.
4546
4547 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4548
4549         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
4550
4551         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
4552         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
4553         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
4554         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
4555         (gst_rtp_h264_pay_handle_buffer):
4556         * gst/rtp/gstrtph264pay.h:
4557         Use higher performance start-code searching.
4558         Parse NALs and store SPS, PPS and profile in the caps so that they can
4559         be used in the SDP. Fixes #502814.
4560
4561 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
4562
4563         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
4564         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
4565           Init some structs to zero before we pass them to ioctl, which
4566           avoids valgrind warnings.  Also fix a small memory leak.
4567
4568 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4569
4570         Patch by: Wouter Cloetens <wouter at mind dot be>
4571
4572         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
4573         Copy timestamp from input to output. Not very perfect yet but better
4574         than nothing. Fixes #503023.
4575
4576 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4577
4578         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
4579           Also print a useful error message with the old Wavpack API
4580           if possible.
4581
4582 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
4583
4584         * ext/wavpack/gstwavpackdec.c:
4585           More build fixes for old libwavpack versions: include config.h so
4586           that WAVPACK_OLD_API is actually defined as detected; only use
4587           WavpackGetErrorMessage if it is available. This fixes the build
4588           on debian stable for me.
4589
4590 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4591
4592         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
4593         * ext/wavpack/gstwavpackparse.c:
4594           (gst_wavpack_parse_create_src_pad):
4595           Workaround the non-existance of WavpackGetChannelMask in Wavpack
4596           versions below 4.40.0.
4597
4598 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4599
4600         * configure.ac:
4601           And now do it right for real...
4602
4603 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4604
4605         * configure.ac:
4606           Correctly reset $LIBS to not contain -lm.
4607
4608 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4609
4610         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
4611
4612         * configure.ac:
4613         * ext/cairo/gsttimeoverlay.c:
4614           (gst_cairo_time_overlay_print_smpte_time):
4615           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
4616           and checking for rint() and implementing it ourself if it doesn't
4617           exist. Fixes #497293.
4618
4619 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4620
4621         * configure.ac:
4622           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
4623
4624 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
4625
4626         * sys/oss/gstosshelper.c:
4627         Verify that the format returned after the ioctl is the one
4628         we requested. It is valid for the ioctl to succeed while
4629         substituting an alternate 'supported' sample format.
4630
4631 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
4632
4633         * sys/oss/gstossaudio.c: (plugin_init):
4634         * sys/oss/gstosssink.c: (gst_oss_sink_open):
4635         * sys/oss/gstosssrc.c: (gst_oss_src_open):
4636           Post decent (and translated) error message when we can't
4637           open the audio device for some reason.
4638
4639 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
4640
4641         * sys/oss/gstosssink.c:
4642         * sys/oss/gstosssrc.c:
4643         Allow the AUDIODEV environment variable to redirect us
4644         to a different default OSS device, like sunaudiosink does
4645         on Solaris (makes audio play automatically on SunRays).
4646
4647 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
4648
4649         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
4650         * gst/audiofx/audiochebyshevfreqband.c:
4651         (gst_audio_chebyshev_freq_band_transform_ip):
4652         * gst/audiofx/audiochebyshevfreqlimit.c:
4653         (gst_audio_chebyshev_freq_limit_transform_ip):
4654         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
4655         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
4656         The transform_ip() methods should do nothing if in passthrough mode.
4657         It might get non-writable buffers in that case but the buffer might
4658         as well be writable.
4659
4660         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
4661         The transform() methods won't be called in passthrough mode and
4662         otherwise the buffer is always writable so don't check here.
4663
4664 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
4665
4666         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
4667           Fix seeking in .wav files again (#501775).  Some people seem to think
4668           they don't need to test their changes when they're just 'reflowing'
4669           some code.
4670
4671 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
4672
4673         * gst/autodetect/gstautovideosink.c:
4674         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
4675         (gst_auto_video_sink_init),
4676         (gst_auto_video_sink_create_element_with_pretty_name),
4677         (gst_auto_video_sink_find_best),
4678         (gst_auto_video_sink_set_property),
4679         (gst_auto_video_sink_get_property):
4680         * gst/autodetect/gstautovideosink.h:
4681         Fix docs.
4682         Use same error reporting code as autoaudiosink.
4683         Add property to filter sinks based on caps. Only select raw video sinks
4684         by default for backwards compat.
4685         API: GstAutoVideoSink::filter-caps
4686
4687 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
4688
4689         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
4690
4691         * gst/autodetect/gstautoaudiosink.c:
4692         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
4693         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
4694         (gst_auto_audio_sink_set_property),
4695         (gst_auto_audio_sink_get_property):
4696         * gst/autodetect/gstautoaudiosink.h:
4697         Add property to filter sinks based on caps. Only select raw audio sinks
4698         by default for backwards compat.  Fixes #417420.
4699         API: GstAutoAudioSink::filter-caps
4700
4701 2007-11-29  Michael Smith <msmith@fluendo.com>
4702
4703         Patch by: Arek Korbik <arkadini@gmail.com>
4704
4705         * gst/videobox/gstvideobox.c: (plugin_init):
4706           Initialise liboil in plugin_init()
4707
4708 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
4709
4710         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
4711         Post error before sending EOS. Fixes #499178.
4712
4713 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
4714
4715         * win32/vs6/gst_plugins_good.dsw:
4716         * win32/vs6/libgstpng.dsp:
4717         Add a project file for libgstpng
4718
4719 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
4720
4721         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
4722         (gst_rtp_h263_depay_process):
4723         Code beautification.
4724         Added debug statements.
4725         Don't bit-shift everything, just do operations on last/first byte
4726         instead.
4727
4728 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
4729
4730         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
4731
4732         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
4733         Fix wrong comparison in overrun check. Fixes #499239 some more.
4734
4735 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
4736
4737         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
4738         (gst_rtp_h263_depay_process):
4739         * gst/rtp/gstrtph263depay.h:
4740         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
4741         stream.
4742
4743 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
4744
4745         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
4746
4747         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
4748         (gst_rtp_mp4a_depay_process):
4749         * gst/rtp/gstrtpmp4adepay.h:
4750         Fix depayloading when multiple frames are inside one RTP packet.
4751         Fixes #499239.
4752
4753 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
4754
4755         * gst/level/gstlevel.c:
4756           Add GAP-flag support.
4757
4758 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
4759
4760         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
4761         Read the I flag for Mode A h263 rtp stream and set the
4762         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
4763         Fixes #499383
4764
4765 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
4766
4767         * gst/level/gstlevel.c:
4768           Remove some dead code and do cleanups.
4769
4770 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
4771
4772         * tests/check/pipelines/simple-launch-lines.c:
4773           Improve the tests by allowing to set a target state.
4774
4775 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
4776
4777         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
4778         Don't check the caps of the output buffer if they're equal some
4779         other caps. The caps can change in a backward compatible way
4780         and did at this point.
4781
4782 2007-11-24  Julien MOUTTE  <julien@moutte.net>
4783
4784         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
4785         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
4786         (gst_qtdemux_seek_to_previous_keyframe),
4787         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
4788         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
4789         reverse playback support.
4790
4791 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
4792
4793         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
4794         Also set the channel layout on the Wavpack caps if we're having
4795         a mono layout. Of course only do it for "audio/x-wavpack".
4796
4797 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
4798
4799         * ext/wavpack/gstwavpackcommon.c:
4800         (gst_wavpack_get_default_channel_mask),
4801         (gst_wavpack_set_channel_layout),
4802         (gst_wavpack_get_default_channel_positions),
4803         (gst_wavpack_get_channel_mask_from_positions),
4804         (gst_wavpack_set_channel_mapping):
4805         * ext/wavpack/gstwavpackcommon.h:
4806         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
4807         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
4808         * ext/wavpack/gstwavpackdec.h:
4809         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
4810         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
4811         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
4812         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
4813         (gst_wavpack_enc_rewrite_first_block),
4814         (gst_wavpack_enc_sink_event):
4815         * ext/wavpack/gstwavpackenc.h:
4816         * ext/wavpack/gstwavpackparse.c:
4817         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
4818         (gst_wavpack_parse_scan_to_find_sample),
4819         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
4820         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
4821         * ext/wavpack/gstwavpackparse.h:
4822         Add support for encoding, parsing and decoding multichannel
4823         files with up to 8 channels. This also improves the robustness
4824         of parsing quite a bit.
4825
4826         * ext/wavpack/gstwavpackstreamreader.c:
4827         (gst_wavpack_stream_reader_read_bytes),
4828         (gst_wavpack_stream_reader_get_pos),
4829         (gst_wavpack_stream_reader_set_pos_abs),
4830         (gst_wavpack_stream_reader_set_pos_rel),
4831         (gst_wavpack_stream_reader_push_back_byte),
4832         (gst_wavpack_stream_reader_get_length),
4833         (gst_wavpack_stream_reader_can_seek),
4834         (gst_wavpack_stream_reader_write_bytes):
4835         Improve debugging.
4836
4837 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
4838
4839         * ext/libpng/gstpngdec.c:
4840         * ext/libpng/gstpngdec.h:
4841           Don't release the png-memory from within the callback.
4842
4843 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
4844
4845         Patch by: René Stadler <mail at renestadler dot de>
4846
4847         * ext/libpng/gstpngenc.c:
4848           Don't leak buffer data memory. Fixes #498395.
4849
4850 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
4851
4852         Patch by: René Stadler <mail at renestadler dot de>
4853
4854         * tests/check/pipelines/simple-launch-lines.c:
4855           Tests for #498395.
4856
4857 2007-11-20  Julien MOUTTE  <julien@moutte.net>
4858
4859         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
4860         (gst_tag_lib_mux_adjust_event_offsets):
4861         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
4862         * sys/osxaudio/Makefile.am:
4863         * sys/osxvideo/cocoawindow.h:
4864         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
4865
4866 2007-11-15  David Schleef  <ds@schleef.org>
4867
4868         * ext/cairo/gsttextoverlay.c:
4869           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
4870
4871 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
4872
4873         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
4874
4875         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
4876         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
4877         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
4878         * gst/rtp/gstrtpmp2tpay.h:
4879         Fill the MTU with as many packets as possible. Fixes #491323.
4880
4881 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
4882
4883         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
4884
4885         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
4886         Fix some more leaks. Fixes #497007.
4887
4888 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
4889
4890         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
4891
4892         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
4893         (gst_rtspsrc_stream_configure_tcp):
4894         Fix 3 pad leaks. Fixes #496983.
4895
4896 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
4897
4898         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
4899
4900         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
4901         Fix small leak. Fixes #497017.
4902
4903 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
4904
4905         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
4906         (gst_qtdemux_prepare_current_sample),
4907         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
4908         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
4909         * gst/qtdemux/qtdemux_fourcc.h:
4910         * gst/qtdemux/qtdemux_types.c:
4911         Add suppport for theora in quicktime according to XiphQT.
4912
4913 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
4914
4915         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
4916         (gst_v4l2src_init), (gst_v4l2src_set_property),
4917         (gst_v4l2src_get_property):
4918         * sys/v4l2/gstv4l2src.h:
4919         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
4920           Always copy buffers by default (handle safer with bugged drivers)
4921           and added a property to make it possible to use mmap effectively (no
4922           copy if possible) when application wants to. Fixes: #480557.
4923
4924 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
4925
4926         * gst/id3demux/id3tags.c:
4927         * gst/id3demux/id3tags.h:
4928         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
4929           We don't want the same string multiple times in a tag list for the
4930           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
4931           this doesn't happen and remove special-case code for GST_TAG_GENRE.
4932
4933 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
4934
4935         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
4936           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
4937           into ID3v2 TXXX frames (fixes #347848).
4938
4939 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
4940
4941         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
4942           Don't leak sdp message contents (fixes #496773).
4943
4944         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
4945           Don't leak URI string.
4946
4947 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
4948
4949         Patch by: Julien Puydt <julien dot puydt at laposte net>
4950
4951         * ext/raw1394/Makefile.am:
4952         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
4953           (gst_1394_property_probe_get_properties),
4954           (gst_1394_property_probe_probe_property),
4955           (gst_1394_property_probe_needs_probe),
4956           (gst_1394_property_probe_get_values),
4957           (gst_1394_property_probe_interface_init),
4958           (gst_1394_type_add_property_probe_interface):
4959         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
4960         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
4961           (gst_dv1394src_init), (gst_dv1394src_dispose),
4962           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
4963           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
4964           (gst_dv1394src_update_device_name):
4965         * ext/raw1394/gstdv1394src.h:
4966           Implement GstPropertyProbe interface and add "device-name" property,
4967           so applications can use this to probe for available devices in the
4968           same way they can already with v4lsrc and v4l2src (however horrible
4969           this property probe interface may be). Fixes #358841.
4970
4971 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
4972
4973         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
4974
4975         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
4976           (gst_rtspsrc_parse_range):
4977           Don't leak event, don't leak range (fixes #496752).
4978
4979 2007-11-14  Michael Smith <msmith@fluendo.com>
4980
4981         Patch by: Arek Korbik <arkadini@gmail.com>
4982
4983         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
4984           Detect RGBA/BGRA correctly on little endian systems.
4985
4986 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
4987
4988         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
4989           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
4990           corresponding ioctl() call fails even though the driver claims to
4991           support this format, just fall back to the pre-2.6.19 kernel
4992           routine that creates caps with suitable height and width ranges
4993           (see #448278).
4994
4995 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
4996
4997         Patch by: Mark Nauwelaerts <manauw skynet be>
4998
4999         * gst/matroska/matroska-demux.c:
5000           (gst_matroska_demux_push_dvd_clut_change_event),
5001           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
5002           (gst_matroska_demux_subtitle_caps):
5003         * gst/matroska/matroska-ids.h:
5004           Extract palette data for dvd subpicture streams and send it
5005           downstream as custom gstreamer dvd event (fixes #453417).
5006
5007 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
5008
5009         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
5010           Implement minimal parsing of the passed pango font description
5011           string, so passing a font size works the same as with the
5012           pango textoverlay plugin; fixes #455086.
5013           (Maybe we could just use pangocairo here at some point).
5014
5015 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
5016
5017         * gst/avi/gstavidemux.c:
5018         * gst/wavparse/gstwavparse.c:
5019           Return the result in _activate_pull(). Don't ref element there.
5020
5021 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
5022
5023         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
5024         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
5025         (gst_wavparse_srcpad_event):
5026           Ref the element when we should, but not when we its not needed. Reflow
5027           the event_handling to not leak the event.       
5028
5029 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
5030
5031         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
5032         (qtdemux_parse_samples):
5033         Properly free QTDemuxSamples array.
5034         Protect table write with a sensible check, some files apparently DO contain
5035         stts values starting with 0 :(
5036
5037 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
5038
5039         * gst/avi/gstavidemux.c:
5040         * gst/qtdemux/qtdemux.c:
5041           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
5042           previous commit messed up.
5043
5044 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
5045
5046         * gst/avi/gstavidemux.c:
5047         * gst/qtdemux/qtdemux.c:
5048           Sync _handle_src_event() with oggdemux. In avidemux also ref the
5049           element when we should, but not when we its not needed.
5050
5051 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
5052
5053         * gst/wavparse/gstwavparse.c:
5054           Return FALSE if we can't handle a query instead of changing the
5055           format. Ignore fact when dealing with mpeg audio.
5056
5057 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5058
5059         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5060
5061         * configure.ac:
5062         * gst/udp/gstdynudpsink.c:
5063         * gst/udp/gstdynudpsink.h:
5064         * gst/udp/gstmultiudpsink.c:
5065         * gst/udp/gstmultiudpsink.h:
5066         * gst/udp/gstudpsink.c:
5067         * gst/udp/gstudpsink.h:
5068           Fix includes for MSVC and GLib-2.14.0 (#492388).
5069
5070         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
5071           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
5072
5073 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
5074
5075         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
5076         (gst_mulawdec_chain):
5077         * gst/law/mulaw-decode.h:
5078         Calculate outgoing buffer duration if incoming buffer didn't have a
5079         valid duration.
5080
5081 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
5082
5083         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
5084         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
5085         Smarter combine_flow code that also deals with downstream elements
5086         returning UNEXPECTED when they receive data out of the segment
5087         boundaries. Fixes #491305.
5088
5089 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
5090
5091         * sys/v4l2/v4l2src_calls.c:
5092           Fix 'unused variable' compiler warning when compiling against
5093           older kernel headers.
5094
5095 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
5096
5097         * ext/taglib/gstid3v2mux.cc (add_funcs):
5098           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
5099
5100 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
5101
5102         * tests/check/pipelines/simple-launch-lines.c:
5103            Improve the tests a little more.
5104
5105 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
5106
5107         patch by: Yun Zheng Hu
5108
5109         * sys/osxaudio/gstosxaudiosrc.c:
5110         Use default input device instead of default output device and
5111         only memcpy actual available bytes.
5112
5113 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
5114
5115         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
5116           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
5117           early. It is temporary until we find something better.
5118
5119 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
5120
5121         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
5122
5123         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
5124         Fix race when pausing a RTSP stream in interleaved.
5125         Fixes #475784.
5126
5127 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
5128
5129         Patch by: Peter Kjellerstedt <pkj at axis com>
5130
5131         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
5132         Use correct unref function for buffers. #488844.
5133
5134 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
5135
5136         * gst/avi/gstavimux.c:
5137         * tests/check/elements/avimux.c:
5138           Add some debug and sync tests with the fix.     
5139
5140 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
5141
5142         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
5143
5144         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5145         When the socket is used by the app for other purposes, don't generate an
5146         error if there is activaty on the socket that is not data related.
5147         Fixes #487488.
5148
5149 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
5150
5151         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
5152         (gst_v4l2src_grab_frame):
5153         Add some more debug info. Generate an error when we run out of buffers
5154         for some reason. See #480557.
5155
5156 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
5157
5158         Patch by: Anders Skargren <anders dot skargren at axis dot com>
5159
5160         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
5161         Set marker bit correctly.
5162
5163 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
5164
5165         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
5166         Use allowed name for the GstStructure.
5167
5168 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
5169
5170         * ext/gconf/gstswitchsink.c:
5171         * gst/autodetect/gstautoaudiosink.c:
5172           Use new gst_bus_pop_filtered().
5173
5174 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
5175
5176         * sys/v4l2/gstv4l2src.c:
5177         * sys/v4l2/v4l2src_calls.c:
5178           When probing the formats and sizes a camera supports, make
5179           sure the best ones (highest resolution, prefered format)
5180           end up at the beginning of the probed caps and the less
5181           desirable ones at the end.  This is important because the
5182           order within the caps matters for things like fixation and
5183           negotiation, ie. what format is chosen in the end.
5184           With recent kernels, the current probing code will end up
5185           querying the supported sizes from lowest resolution to
5186           highest resolution, adding them to the probed caps in that
5187           order, resulting to v4l2src fixating to the lowest possible
5188           resolution if downstream does not express a size preference.
5189           Also make up a somewhat random ranking of prefered output
5190           formats for the same reason. Fixes #485828.
5191         
5192 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
5193
5194         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
5195
5196         * gst/id3demux/id3v2frames.c:
5197           Extract license/copyright URIs from ID3v2 WCOP frames
5198           (Fixes #447000).
5199
5200         * tests/check/elements/id3demux.c:
5201         * tests/files/Makefile.am:
5202         * tests/files/id3-447000-wcop.tag:
5203           Add simple unit test.
5204
5205 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
5206
5207         * ext/taglib/gstid3v2mux.cc:
5208           Add support for license/copyright URI tags (ID3v2 WCOP frame).
5209           Prerequisite for #447000.
5210
5211 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
5212
5213         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
5214         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
5215         a GstClockTime.
5216
5217 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5218
5219         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
5220         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
5221         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
5222         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
5223         (gst_rtspsrc_change_state):
5224         More seeking fixes, mostly passing around the new playback segment in
5225         order to configure it properly.
5226         Also reset base_time of udp sources when setting them back to PLAYING as
5227         a temporary hack until core supports seek in live sources properly.
5228
5229 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5230
5231         * gst/rtp/gstrtpmp4adepay.c:
5232         Fix caps as to not confuse autopluggers.
5233
5234 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
5235
5236         * gst/id3demux/gstid3demux.c:
5237         * gst/id3demux/gstid3demux.h:
5238         * gst/id3demux/id3tags.c:
5239         * gst/id3demux/id3tags.h:
5240         * gst/id3demux/id3v2frames.c:
5241           Port ID3 tag demuxer over to the new GstTagDemux in -base
5242           (now would be a good time to test re-importing your music
5243           collection).
5244
5245 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
5246
5247         * gst/apetag/Makefile.am:
5248         * gst/apetag/gstapedemux.c:
5249         * gst/apetag/gstapedemux.h:
5250         * gst/apetag/gsttagdemux.c:
5251         * gst/apetag/gsttagdemux.h:
5252           Port APE tag demuxer over to the new GstTagDemux in -base.
5253
5254 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
5255
5256         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
5257         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
5258         (gst_rtspsrc_handle_internal_src_query),
5259         (gst_rtspsrc_handle_src_query), (new_session_pad),
5260         (gst_rtspsrc_stream_configure_tcp),
5261         (gst_rtspsrc_stream_configure_transport),
5262         (gst_rtspsrc_loop_send_cmd):
5263         Improve flushing behaviour.
5264         Set state of the udp sources to PAUSE/PLAYING correctly.
5265         Handle events and queries for UDP and TCP transport now.
5266
5267 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
5268
5269         * gst/rtp/gstrtpgsmdepay.c:
5270         * gst/rtp/gstrtpgsmpay.c:
5271           Add log category.
5272
5273 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
5274
5275         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
5276
5277         * tests/check/Makefile.am:
5278         * tests/check/pipelines/simple-launch-lines.c:
5279           Add unit tests for payloaders/depayloaders.
5280
5281 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
5282
5283         * gst/avi/gstavimux.c:
5284         * gst/avi/gstavimux.h:
5285           Also save codec data for audio streams. Fixes #482495.
5286
5287 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
5288
5289         * gst/avi/gstavimux.c:
5290           Fix "Index entry has invalid stream nr 1".
5291           Add support for muxing aac - work in progress (see #482495).
5292
5293 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5294
5295         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
5296         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
5297         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
5298         * gst/rtsp/gstrtspsrc.h:
5299         Parse bandwidth modifiers, they are not yet configured in the session
5300         manager because we don't have an API for that yet.
5301
5302 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5303
5304         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
5305         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
5306         Use shiny new function in -base to get the default clock-rate.
5307         Update some docs.
5308
5309 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
5310
5311         * win32/MANIFEST:
5312         Add files to win32 manifest.
5313         * win32/vs6/libgstaudiofx.dsp:
5314         * win32/vs6/libgstqtdemux.dsp:
5315         * win32/vs6/libgstrtp.dsp:
5316         * win32/vs6/libgstrtsp.dsp:
5317         Update project files.
5318
5319 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
5320
5321         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
5322         (gst_rtspsrc_play):
5323         * gst/rtsp/gstrtspsrc.h:
5324         In TCP mode, only timestamp the first buffer. TCP is not real time and
5325         it does not make sense to try to skew compensate, also some servers send
5326         the first batch of data in a burst.
5327
5328 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
5329
5330         * gst/matroska/matroska-demux.c:
5331           Fix setting the discont flag on the first buffer
5332           pushed downstream for formats with private codec
5333           data that needs to be deserialised into buffers
5334           (such as vorbis and FLAC when in a matroska container).
5335
5336 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
5337
5338         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
5339
5340         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
5341         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
5342         (gst_rtp_mp4v_pay_handle_buffer):
5343         * gst/rtp/gstrtpmp4vpay.h:
5344         Free the config string. Fixes #480707.
5345         Clean up the timestamp code a little.
5346
5347 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
5348
5349         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
5350         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
5351         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
5352         * gst/rtsp/gstrtspsrc.h:
5353         Set timestamps on RTP buffers in interleaved mode.
5354         Mark first buffers with a DISCONT.
5355         Remove flush hack now that sync for live sources has been figured out.
5356
5357 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
5358
5359         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5360         Update documentation.
5361
5362 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
5363
5364         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
5365         (gst_rtp_xqt_depay_change_state):
5366         * gst/qtdemux/gstrtpxqtdepay.h:
5367         Fail if we don't know the quicktime format.
5368
5369 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
5370
5371         * ext/flac/gstflacenc.c:
5372         * ext/flac/gstflacenc.h:
5373           Save the flow return from the last gst_pad_push() and
5374           make sure we pass the right flow return value upstream
5375           in the case of failure; minor clean-ups.
5376
5377 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
5378
5379         * ext/taglib/gstapev2mux.cc:
5380         * ext/taglib/gstid3v2mux.cc:
5381         * gst/apetag/gstapedemux.c:
5382           Add support for the new GST_TAG_COMPOSER (#459809).
5383
5384 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
5385
5386         * gst/law/alaw-decode.c:
5387         * gst/law/alaw-decode.h:
5388         * gst/law/alaw-encode.c:
5389         * gst/law/alaw-encode.h:
5390         * gst/law/alaw.c:
5391         * gst/law/mulaw-conversion.h:
5392           Compulsive clean-ups: use boilerplate macros, add debug
5393           categories, fix up things to conform to symbol nomenklatura,
5394           etc.
5395
5396 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
5397
5398         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
5399
5400         * gst/law/alaw-decode.c:
5401         * gst/law/alaw-encode.c:
5402           Use static tables for A-Law decoding and encoding; this makes
5403           A-Law decoding and encoding less CPU-intensive, but increases
5404           the binary size a bit. Leaving old code around for now,
5405           selectable by a define in the code. Fixes #435435.
5406
5407 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
5408
5409         * configure.ac:
5410         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
5411         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
5412         in configure.ac.
5413
5414 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
5415
5416         Patch by: Jan Gerber <j at bootlab dot org>
5417
5418         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
5419         Add fourccs for MPEG2 HDV streams. Fixes #479960.
5420
5421 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
5422
5423         * sys/oss/gstosshelper.c:
5424           Use GST_WARNING instead of a g_critical. This situation is not caused
5425           by the application.
5426
5427 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5428
5429         * po/LINGUAS:
5430         * po/nl.po:
5431           Updated translations.
5432
5433 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5434
5435         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
5436
5437         * po/eu.po:
5438           Added Basque translation.
5439
5440 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5441
5442         translated by: Abel Cheung <abelcheung@gmail.com>
5443
5444         * po/zh_HK.po:
5445         * po/zh_TW.po:
5446           Added Chinese (traditional and Hong Kong) translation.
5447
5448 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5449
5450         translated by: Jakub Bogusz <qboosh@pld-linux.org>
5451
5452         * po/pl.po:
5453           Added Polish translation.
5454
5455 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5456
5457         translated by: Ilkka Tuohela <hile@iki.fi>
5458
5459         * po/fi.po:
5460           Added Finnish translation.
5461
5462 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5463
5464         translated by: Jorge González González <aloriel@gmail.com>
5465
5466         * po/es.po:
5467           Added Spanish translation.
5468
5469 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5470
5471         translated by: Mogens Jaeger <mogens@jaeger.tf>
5472
5473         * po/da.po:
5474           Added Danish translation.
5475
5476 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5477
5478         translated by: Funda Wang <fundawang@linux.net.cn>
5479
5480         * po/zh_CN.po:
5481           Added Chinese (simplified) translation.
5482
5483 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5484
5485         translated by: Alexander Shopov <ash@contact.bg>
5486
5487         * po/bg.po:
5488           Added Bulgarian translation.
5489
5490 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
5491
5492         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
5493         Set outgoing packet duration because we can. Fixes #478244 some more.
5494
5495 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
5496
5497         * ext/cairo/gsttextoverlay.c:
5498           Add info about static leak.
5499         
5500         * tests/check/Makefile.am:
5501         * tests/check/generic/states.c:
5502           Improved state change unit test.
5503
5504 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
5505
5506         * docs/plugins/.cvsignore:
5507         * tests/check/.cvsignore:
5508           Ignore registries in any format.
5509
5510 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
5511
5512         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
5513         Removed some unused code.
5514
5515         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
5516         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
5517         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
5518         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
5519         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
5520         (gst_rtp_theora_pay_flush_packet):
5521         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
5522         Try to preserve the incomming buffer duration on the outgoing
5523         packets. Fixes #478244.
5524
5525 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
5526
5527         * ext/taglib/gstapev2mux.cc:
5528         * ext/taglib/gstid3v2mux.cc:
5529           Work around compiler warnings with g++-4.2 when assigning a
5530           string constant to a gchar * (partially fixes #478092).
5531
5532 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
5533
5534         * configure.ac:
5535           We require core CVS now for gst_base_src_set_do_timestamp().
5536
5537 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
5538
5539         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
5540         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
5541         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
5542         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
5543         (gst_rtspsrc_handle_message):
5544         Fix compiler warnings shown with Forte.
5545
5546 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
5547
5548         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
5549         (gst_rtspsrc_dup_printf):
5550         Give meaningfull error when all streams failed to configure for some
5551         reason.
5552
5553 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
5554
5555         * gst/rtp/README:
5556         Update README with the design for synchronisation rules of RTP on
5557         sender and receiver.
5558
5559 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
5560
5561         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
5562         (gst_wavparse_chain):
5563         Don't push EOS from the chain function, the element
5564         driving the pipeline is responsible for this. The bug
5565         this was meant to fix seems to be queue not forwarding
5566         EOS in all cases (see #476514).
5567
5568 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
5569
5570         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
5571         (gst_level_transform_ip):
5572         * gst/level/gstlevel.h:
5573         Use basetransform segment so that it is correctly managed on flushes and
5574         start/stop.
5575         Report message timestamp as stream time, which is what an application
5576         can understand.
5577
5578 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
5579
5580         * ext/taglib/gstapev2mux.cc:
5581         * ext/taglib/gstapev2mux.h:
5582         * ext/taglib/gsttaglibmux.c:
5583         * tests/check/elements/apev2mux.c:
5584         Update my mail address.
5585
5586 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
5587
5588         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
5589         (gst_wavparse_loop), (gst_wavparse_chain):
5590         Add EOS logic for the push-based mode too. Fixes #476514.
5591
5592 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
5593
5594         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
5595         * gst/law/alaw-encode.h:
5596         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
5597         (gst_mulawenc_chain):
5598         * gst/law/mulaw-encode.h:
5599         Fix law encoder timestamps.
5600
5601 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
5602
5603         * ext/gconf/gstgconfaudiosink.c:
5604           Fix warning when building without debug.
5605
5606         * sys/oss/gstossmixertrack.c:
5607           Use const like in alsamixertrack.c (fixes warnings).
5608
5609 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
5610
5611         * sys/v4l2/v4l2src_calls.c:
5612         (gst_v4l2src_probe_caps_for_format_and_size):
5613         Fix framerate detection code some more.
5614         Handle the case where there is a weird step in the stepwise framerates.
5615         Don't overwrite the min interval with the framerate, use a temp variable
5616         instead.
5617         Use max in the Continuous framerate intervals instead of step, which is
5618         1 according to the docs. Fixes #475424.
5619
5620 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
5621
5622         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
5623         Make udpsrc timestamp outgoing buffers based on when they were received.
5624         Also make it output a segment in time.
5625
5626 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
5627
5628         * gst/avi/gstavidemux.c:
5629           Plug a little leak. Little code cleanups.
5630
5631 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
5632
5633         * configure.ac:
5634           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
5635           flac versions, 's good for cross-compilation karma.
5636
5637 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
5638
5639         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
5640
5641         * gst/rtp/gstrtph263pay.c:
5642           Fix up header structure so that compilers don't add padding
5643           between the structure fields, since that would lead to us
5644           sending RTP packets with broken headers (as is currently the
5645           case when compiling with MSVC). Also see similar fixes in
5646           libgstrtp in gst-plugins-base. (#474616; #471194)
5647
5648 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
5649
5650         * sys/v4l2/v4l2src_calls.c:
5651         (gst_v4l2src_probe_caps_for_format_and_size):
5652         Don't overwrite our GValue with 0 but instead use the previously
5653         computed value. Fixes #471823 some more.
5654
5655 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
5656
5657         * docs/plugins/gst-plugins-good-plugins.hierarchy:
5658           No tabs in this file please, or gtk-doc will end up documenting
5659           rather absurd class hierarchies.
5660
5661 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
5662
5663         * ext/gconf/gstswitchsink.c:
5664           If the new kid element fails to change state for some reason
5665           (e.g. esdsink not being able to connect to the sound server),
5666           forward the error message it posted on the bus instead of just
5667           posting a generic 'Internal state change error: please file a
5668           bug' error message. Fixes #471364.
5669
5670 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
5671
5672         * gst/qtdemux/Makefile.am:
5673         * gst/qtdemux/qtdemux.c:
5674           Don't assume tags are encoded as UTF-8 (#473670).
5675
5676 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
5677
5678         * sys/v4l2/gstv4l2src.c:
5679         * sys/v4l2/gstv4l2src.h:
5680         * sys/v4l2/v4l2src_calls.c:
5681           Implement LATENCY queries in the crudest way possible so I don't
5682           have to use sync=false any longer when testing with videosinks.
5683
5684 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
5685
5686         * configure.ac:
5687           Fix build.
5688
5689 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
5690
5691         * sys/v4l2/v4l2src_calls.c:
5692         (gst_v4l2src_probe_caps_for_format_and_size):
5693         Add some more debugging in the framerate function.
5694         Iterate stepwise framerate up to and _including_ the max and if nothing
5695         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
5696         don't end up with an empty list. Fixes #471823
5697
5698 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
5699
5700         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
5701         (gst_multiudpsink_set_clients_string),
5702         (gst_multiudpsink_get_clients_string),
5703         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
5704         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
5705         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
5706         (gst_multiudpsink_clear):
5707         Add property do configure destination address/port pairs
5708         API:GstMultiUDPSink::clients
5709
5710 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
5711
5712         * tests/examples/Makefile.am:
5713         * tests/examples/rtp/Makefile.am:
5714         * tests/examples/rtp/client-H263p-AMR.sh:
5715         * tests/examples/rtp/client-H263p-PCMA.sdp:
5716         * tests/examples/rtp/client-H263p-PCMA.sh:
5717         * tests/examples/rtp/client-H264-PCMA.sdp:
5718         * tests/examples/rtp/client-H264-PCMA.sh:
5719         * tests/examples/rtp/client-PCMA.sh:
5720         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
5721         * tests/examples/rtp/server-alsasrc-PCMA.sh:
5722         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
5723         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
5724         Added some RTP example scripts for sending and receiving RTP streams.
5725
5726 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
5727
5728         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
5729         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
5730         Restructure the setcaps function so that we can also compute the
5731         expected GStreamer output size of the video frames.
5732         Set frame_byte_size correctly so that read-based devices have a chance
5733         of working correctly.
5734         When grabbing a frame, discard frames that are not of the expected size.
5735         Some cameras don't output the right framesize for the first buffer.
5736         Try only a couple of times to get a valid frame, else error out.
5737
5738         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
5739         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
5740         Add some more debug info when scanning the device.
5741
5742         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
5743         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
5744         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
5745         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
5746         Add some more debug info when dequeing a frame.
5747
5748 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
5749
5750         * gst/wavparse/gstwavparse.c:
5751           More code cleanups. Add some more comment and improve debugs logs.
5752
5753 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
5754
5755         * gst/wavparse/gstwavparse.c:
5756         * gst/wavparse/gstwavparse.h:
5757           Implement seek-query. Refactor duration calculations. Appropriate use
5758           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
5759           out of loops.
5760
5761 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
5762
5763         * gst/avi/gstavidemux.c:
5764           Implement seek-query.
5765
5766 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
5767
5768         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
5769         (gst_rtspsrc_dup_printf):
5770         Use new basesink async property to make sparse RTCP packet not wait for
5771         preroll.
5772
5773 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
5774
5775         * gst/audiofx/Makefile.am:
5776         Dist the right file.
5777
5778 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
5779
5780         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
5781         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
5782         Make sure we generate and parse floating point values in the POSIX
5783         locale instead of the current locale. 
5784
5785 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
5786
5787         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
5788         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
5789         (gst_rtspsrc_play):
5790         * gst/rtsp/gstrtspsrc.h:
5791         Fix method detection again.
5792         Keep track of when we must send a Range header.
5793         Use segment values for Range, Speed and Scale headers.
5794         Parse Speed and Scale headers to update the segment values.
5795
5796 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
5797
5798         patch by: Mark Nauwelaerts <manauw@skynet.be>
5799
5800         * sys/v4l2/v4l2src_calls.c:
5801           Handle optional v4l2 ioctls gracefully.
5802
5803 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
5804
5805         * gst/rtp/Makefile.am:
5806         * gst/rtp/gstrtp.c: (plugin_init):
5807         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
5808         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
5809         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
5810         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
5811         (gst_rtp_h263_depay_get_property),
5812         (gst_rtp_h263_depay_change_state),
5813         (gst_rtp_h263_depay_plugin_init):
5814         * gst/rtp/gstrtph263depay.h:
5815         Added an H263 depayloader. Fixes #369392.
5816
5817         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
5818         (gst_rtp_h263p_depay_process):
5819         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
5820         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
5821         Make the H263+ pay/depayloader support H263-1998 and H263-2000
5822         payloads.
5823         Also alow plain H263 on the h263p payloaders. Fixes #465040.
5824
5825 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
5826
5827         * gst/audiofx/audiochebyshevfreqband.c:
5828         * gst/audiofx/audiochebyshevfreqlimit.c:
5829         Add small comparision with the windowed sinc filters in the docs.
5830
5831 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
5832
5833         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
5834         (audiochebyshevfreqband_suite):
5835         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
5836         (audiochebyshevfreqlimit_suite):
5837         Also test 32 bit float mode and the type 2 variants of the filters.
5838
5839 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
5840
5841         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
5842         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
5843         (gst_rtspsrc_loop):
5844         Refactor the udp and interleaved loop function a bit.
5845
5846 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
5847
5848         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5849         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
5850         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
5851         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
5852         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
5853         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
5854         * gst/rtsp/gstrtspsrc.h:
5855         Protect connection activity with a new lock, avoids deadlocks when going
5856         to PAUSED. Fixes #455808.
5857
5858 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
5859
5860         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
5861         Fix debug statement.
5862
5863 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
5864
5865         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
5866         Fix stray %u in debug line as spotted by Saur on IRC.
5867
5868 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
5869
5870         * gst/audiofx/audiochebyshevfreqband.c:
5871         (gst_audio_chebyshev_freq_band_class_init):
5872         * gst/audiofx/audiochebyshevfreqlimit.c:
5873         (gst_audio_chebyshev_freq_limit_class_init):
5874         Use generator macros for the process functions for the different
5875         sample types, add lower upper boundaries for the GObject properties
5876         so automatically generated UIs can use sliders and add a note about
5877         the number of poles as a too high number of poles combined with
5878         very low or very high frequencies will produce only noise.
5879         * docs/plugins/gst-plugins-good-plugins.args:
5880         Regenerated for the property changes.
5881
5882 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
5883
5884         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
5885         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
5886         (gst_rtspsrc_stream_configure_udp_sink),
5887         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
5888         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
5889         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
5890         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
5891         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
5892         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
5893         * gst/rtsp/gstrtspsrc.h:
5894         Improve timeout handling.
5895         Use the same socket for sending and receiving RTCP packets so that some
5896         servers can track clients better.
5897         Improve connection closed handling. Try to reconnect.
5898         Don't overwrite our content base with NULL.
5899         Improve debugging.
5900         Improve range parsing and handling.
5901         Remove flushing hack now that core does the right thing.
5902
5903 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
5904
5905         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
5906         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
5907         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
5908         (gst_multiudpsink_close), (gst_multiudpsink_add):
5909         * gst/udp/gstmultiudpsink.h:
5910         Add support for getting and setting the socket to use.
5911
5912         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
5913         (gst_udpsrc_create), (gst_udpsrc_get_property):
5914         Add support for getting the currently used socket.
5915
5916 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
5917
5918         reviewed by: Stefan Kost  <ensonic@users.sf.net>
5919
5920         * gst/audiofx/Makefile.am:
5921         * gst/audiofx/audiochebyshevfreqband.c:
5922         (gst_audio_chebyshev_freq_band_mode_get_type),
5923         (gst_audio_chebyshev_freq_band_base_init),
5924         (gst_audio_chebyshev_freq_band_dispose),
5925         (gst_audio_chebyshev_freq_band_class_init),
5926         (gst_audio_chebyshev_freq_band_init),
5927         (generate_biquad_coefficients), (calculate_gain),
5928         (generate_coefficients),
5929         (gst_audio_chebyshev_freq_band_set_property),
5930         (gst_audio_chebyshev_freq_band_get_property),
5931         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
5932         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
5933         (gst_audio_chebyshev_freq_band_start):
5934         * gst/audiofx/audiochebyshevfreqband.h:
5935         * gst/audiofx/audiochebyshevfreqlimit.c:
5936         (gst_audio_chebyshev_freq_limit_mode_get_type),
5937         (gst_audio_chebyshev_freq_limit_base_init),
5938         (gst_audio_chebyshev_freq_limit_dispose),
5939         (gst_audio_chebyshev_freq_limit_class_init),
5940         (gst_audio_chebyshev_freq_limit_init),
5941         (generate_biquad_coefficients), (calculate_gain),
5942         (generate_coefficients),
5943         (gst_audio_chebyshev_freq_limit_set_property),
5944         (gst_audio_chebyshev_freq_limit_get_property),
5945         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
5946         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
5947         (gst_audio_chebyshev_freq_limit_start):
5948         * gst/audiofx/audiochebyshevfreqlimit.h:
5949         * gst/audiofx/audiofx.c: (plugin_init):
5950         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
5951         Fixes #464800.
5952
5953         * tests/check/Makefile.am:
5954         * tests/check/elements/.cvsignore:
5955         * tests/check/elements/audiochebyshevfreqband.c:
5956         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
5957         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
5958         * tests/check/elements/audiochebyshevfreqlimit.c:
5959         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
5960         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
5961         Add unit tests for the chebyshev filters.
5962
5963         * docs/plugins/Makefile.am:
5964         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5965         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5966         * docs/plugins/gst-plugins-good-plugins.args:
5967         * docs/plugins/inspect/plugin-1394.xml:
5968         * docs/plugins/inspect/plugin-audiofx.xml:
5969         * docs/plugins/inspect/plugin-dv.xml:
5970         * docs/plugins/inspect/plugin-flac.xml:
5971         * docs/plugins/inspect/plugin-jpeg.xml:
5972         * docs/plugins/inspect/plugin-png.xml:
5973         * docs/plugins/inspect/plugin-rtp.xml:
5974         * docs/plugins/inspect/plugin-shout2send.xml:
5975         * docs/plugins/inspect/plugin-wavpack.xml:
5976         And add docs for the chebyshev filters. While doing
5977         that also run make update in docs/plugins.
5978
5979 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
5980
5981         * ext/annodex/gstcmmltag.c:
5982         * gst/rtp/gstrtpvorbispay.c:
5983           Make ro memory to share.
5984
5985 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
5986
5987         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
5988         Improve UDP performance by avoiding a select() when we have data
5989         available immediatly.
5990
5991 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
5992
5993         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
5994         (gst_rtp_dec_class_init):
5995         * gst/rtsp/gstrtpdec.h:
5996         Add (dummy) SSRC management signals.
5997
5998         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
5999         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
6000         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
6001         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
6002         (on_timeout), (gst_rtspsrc_stream_configure_manager),
6003         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
6004         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
6005         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
6006         * gst/rtsp/gstrtspsrc.h:
6007         Add connection-speed property.
6008         Add find_stream helper functions.
6009         Handle stream EOS based on BYE messages or SSRC timeout.
6010         Returns SUCCESS from the state change function as we hide our async
6011         elements from the parent.
6012
6013 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
6014
6015         * gst/debug/rndbuffersize.c:
6016           Fix da leak.
6017
6018 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
6019
6020         * gst/debug/Makefile.am:
6021         * gst/debug/breakmydata.c:
6022         * gst/debug/gstdebug.c:
6023         * gst/debug/negotiation.c:
6024         * gst/debug/progressreport.c:
6025         * gst/debug/rndbuffersize.c:
6026         * gst/debug/testplugin.c:
6027           Add new test element and clean-up the others a little.
6028
6029 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
6030
6031         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
6032         Fix parsing of mp4a version 0 atoms. Fixes #465774.
6033
6034 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
6035
6036         * gst/rtp/gstrtpilbcdepay.c:
6037           Include stdlib.
6038
6039 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
6040
6041         * gst/rtp/gstrtpmpvdepay.c:
6042         Set the mpegversion in the caps so that autoplugging does not get
6043         confused.
6044
6045 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6046
6047         * po/hu.po:
6048         * po/uk.po:
6049         * po/vi.po:
6050           Updated translations.
6051
6052 2007-08-08  Michael Smith <msmith@fluendo.com>
6053
6054         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
6055           Render right border in the correct location.
6056
6057 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
6058
6059         Patch by: Olivier Crete <tester at tester dot ca>
6060
6061         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
6062         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
6063         Make mode property a string. Fixes #464475.
6064
6065 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
6066
6067         * ext/flac/gstflacenc.c:
6068           Widen caps to match decoder a bit and add more FIXMEs.
6069
6070 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
6071
6072         patch by: Mark Nauwelaerts <manauw@skynet.be>
6073
6074         * gst/avi/gstavimux.c:
6075           Fix ODML index tag numbering. Fixes #463624.
6076
6077 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
6078
6079         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
6080         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
6081         (gst_rtspsrc_stream_configure_tcp),
6082         (gst_rtspsrc_stream_configure_udp_sink):
6083         Fix default clock-rate for realmedia.
6084         Fix parsing of transport.
6085         Don't try to link NULL pads.
6086
6087 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
6088
6089         * po/POTFILES.skip:
6090           Add POTFILES.skip with list of source files that aren't disted at the
6091           moment but contain translatable strings. Should hopefully pacify
6092           broken tools and make it clearer that these files are left out
6093           intentionally (#461600).
6094
6095 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
6096
6097         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
6098         If the buffer was entirely clipped ... don't try sending it :)
6099
6100 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
6101
6102         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
6103         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
6104         (gst_rtspsrc_create_transports_string),
6105         (gst_rtspsrc_prepare_transports):
6106         If we don't hav a session manager, set the caps on outgoing buffers
6107         ourselves.
6108         Force PAUSE/PLAY methods for now until the extensions can overwrite.
6109         Append final bit of the transport string even when it does not contain a
6110         placeholder.
6111
6112 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
6113
6114         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
6115         (gst_rtsp_ext_list_connect):
6116         * gst/rtsp/gstrtspext.h:
6117         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
6118         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
6119         Clean up the interface list.
6120         Allow connecting to interface signals for the extensions.
6121         Remove old extension code.
6122         Free list on cleanup.
6123         Allow extensions to send additional RTSP messages.
6124
6125 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
6126
6127         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
6128         Handle a NULL gconf key gracefully by rendering the default element.
6129
6130 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
6131
6132         * gst/rtsp/gstrtspext.h:
6133         Fix include path for extension interface.
6134
6135 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
6136
6137         * gst/audiofx/audioamplify.h:
6138         Also remove a now unecessary variable here.
6139
6140 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
6141
6142         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
6143         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
6144         * gst/audiofx/audiodynamic.c:
6145         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
6146         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
6147         * gst/audiofx/audiodynamic.h:
6148         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
6149         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
6150         * gst/audiofx/audioinvert.h:
6151         Don't save format information ourselves, this is already saved in
6152         GstAudioFilter.
6153
6154 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
6155
6156         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
6157         (gst_rtsp_ext_list_stream_select):
6158         * gst/rtsp/gstrtspext.h:
6159         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
6160         Use rank to filter out extensions.
6161         Add url to stream_select interface call.
6162
6163 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
6164
6165         * gst/rtsp/Makefile.am:
6166         * gst/rtsp/base64.c:
6167         * gst/rtsp/base64.h:
6168         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
6169         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
6170         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
6171         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
6172         (gst_rtsp_ext_list_setup_media),
6173         (gst_rtsp_ext_list_configure_stream),
6174         (gst_rtsp_ext_list_get_transports),
6175         (gst_rtsp_ext_list_stream_select):
6176         * gst/rtsp/gstrtspext.h:
6177         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
6178         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
6179         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
6180         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
6181         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
6182         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
6183         (gst_rtspsrc_stream_configure_tcp),
6184         (gst_rtspsrc_stream_configure_mcast),
6185         (gst_rtspsrc_stream_configure_udp),
6186         (gst_rtspsrc_stream_configure_udp_sink),
6187         (gst_rtspsrc_stream_configure_transport),
6188         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
6189         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
6190         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
6191         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
6192         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
6193         (gst_rtspsrc_parse_methods),
6194         (gst_rtspsrc_create_transports_string),
6195         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
6196         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
6197         (gst_rtspsrc_play), (gst_rtspsrc_pause),
6198         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
6199         * gst/rtsp/gstrtspsrc.h:
6200         * gst/rtsp/rtsp.h:
6201         * gst/rtsp/rtspconnection.c:
6202         * gst/rtsp/rtspconnection.h:
6203         * gst/rtsp/rtspdefs.c:
6204         * gst/rtsp/rtspdefs.h:
6205         * gst/rtsp/rtspext.h:
6206         * gst/rtsp/rtspextwms.c:
6207         * gst/rtsp/rtspextwms.h:
6208         * gst/rtsp/rtspmessage.c:
6209         * gst/rtsp/rtspmessage.h:
6210         * gst/rtsp/rtsprange.c:
6211         * gst/rtsp/rtsprange.h:
6212         * gst/rtsp/rtsptransport.c:
6213         * gst/rtsp/rtsptransport.h:
6214         * gst/rtsp/rtspurl.c:
6215         * gst/rtsp/rtspurl.h:
6216         * gst/rtsp/sdp.h:
6217         * gst/rtsp/sdpmessage.c:
6218         * gst/rtsp/sdpmessage.h:
6219         * gst/rtsp/test.c:
6220         Use shiny new RTSP and SDP library.
6221         Implement RTSP extensions using the new interface.
6222         Remove a lot of old code.
6223
6224 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
6225
6226         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
6227         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
6228
6229 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
6230
6231         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
6232         Don't unref the outgoing buffer twice when dropping it because it's
6233         outside of the segment.
6234
6235 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
6236
6237         * configure.ac:
6238         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
6239         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
6240         Use the new buffer clipping function from gstaudio here and
6241         require gst-plugins-base CVS.
6242         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
6243         For framed Wavpack buffers we require a valid timestamp.
6244
6245 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
6246
6247         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
6248         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
6249         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
6250         Clip raw audio and video when we can, keep track of current output
6251         segment.
6252         Don't leak buffers and events when there is no output pad.
6253         Improve debugging here and there.
6254
6255 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
6256
6257         * configure.ac:
6258           Sync liboil check with plugins-base.
6259
6260 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
6261
6262         * ext/annodex/Makefile.am:
6263           Fix CFLAGS/LIBS.
6264
6265         * ext/cdio/gstcdiocddasrc.c:
6266         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
6267           Include stdlib
6268
6269         * ext/cairo/Makefile.am:
6270         * gst/videofilter/Makefile.am:
6271         * tests/examples/level/Makefile.am:
6272           Use $(LIBM) instead of -lm
6273
6274 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
6275
6276         * sys/v4l2/gstv4l2src.c:
6277           Add another example pipeline.
6278
6279 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
6280
6281         Patch by: Alexander Eichner <alexeichi@yahoo.de>
6282
6283         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
6284           Use define here.
6285
6286         * sys/v4l2/gstv4l2tuner.c:
6287         (gst_v4l2_tuner_set_frequency_and_notify):
6288           Don't touch the property - its still disabled.
6289
6290         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
6291         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
6292         * sys/v4l2/v4l2src_calls.h:
6293           Improve fallback format negotionation. Fixes #451388
6294
6295 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
6296
6297         * tests/check/elements/videocrop.c: (GST_START_TEST):
6298           Fix the test.
6299
6300 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
6301
6302         * docs/plugins/Makefile.am:
6303         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6304         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6305         * docs/plugins/inspect/plugin-jpeg.xml:
6306         * docs/plugins/inspect/plugin-png.xml:
6307         * ext/jpeg/gstjpegdec.c:
6308         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
6309         (gst_pngdec_sink_setcaps):
6310           More docs. More logs in pngdec.
6311
6312 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
6313
6314         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
6315           Initialize num_buffers with minimum value.
6316
6317         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
6318         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
6319           Handle frame-size query failure gracefully.
6320
6321 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
6322
6323         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
6324         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
6325         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
6326         of qt/aac files.
6327
6328 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
6329
6330         * ext/wavpack/gstwavpackdec.c:
6331         (gst_wavpack_dec_clip_outgoing_buffer):
6332         Fix buffer clipping to correctly clip to the segment stop.
6333
6334 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
6335
6336         * configure.ac:
6337         * tests/Makefile.am:
6338         Remove bogus check for libcheck, since we check for
6339         gstreamer-check and it pulls in the required info from there,
6340         and we weren't actually _using_ the information for libcheck
6341         ourselves anyway.
6342
6343 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
6344
6345         * configure.ac:
6346           Use pkg-config to locate check.
6347
6348 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
6349
6350         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
6351         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
6352         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
6353         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
6354         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
6355         * gst/effectv/gstaging.c: (gst_agingtv_transform):
6356         * gst/effectv/gstdice.c: (gst_dicetv_transform):
6357         * gst/effectv/gstedge.c: (gst_edgetv_transform):
6358         * gst/effectv/gstquark.c: (gst_quarktv_transform):
6359         * gst/effectv/gstrev.c: (gst_revtv_transform):
6360         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
6361         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
6362         * gst/effectv/gstwarp.c: (gst_warptv_transform):
6363         * gst/matroska/matroska-demux.c:
6364         (gst_matroska_demux_add_wvpk_header),
6365         (gst_matroska_demux_check_subtitle_buffer),
6366         (gst_matroska_decode_buffer):
6367         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
6368           Fix build against core CVS.
6369
6370 2007-07-10  Edward Hervey  <bilboed@gmail.com>
6371
6372         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
6373         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
6374         don't have enough granularity to convert that boolean into a
6375         GstFlowReturn.
6376
6377 2007-07-06  Michael Smith <msmith@fluendo.com>
6378
6379         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
6380         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
6381         (gst_alawdec_change_state):
6382         * gst/law/alaw-decode.h:
6383         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
6384         (gst_mulawdec_class_init), (gst_mulawdec_init),
6385         (gst_mulawdec_chain), (gst_mulawdec_change_state):
6386         * gst/law/mulaw-decode.h:
6387           Fix capsnego bogosity in *law decoders. 
6388
6389 2007-07-06  Michael Smith <msmith@fluendo.com>
6390
6391         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
6392         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
6393         (gst_smokeenc_change_state):
6394         * ext/jpeg/gstsmokeenc.h:
6395           Remove stupidity in get/set caps functions.
6396           Fix some refcounting problems.
6397
6398 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
6399
6400         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
6401         Remove endianness-flipping hack that seems to have been required
6402         only because of a bug in ffmpegcolorspace.
6403         Partially Fixes: #451908
6404
6405 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
6406
6407         * docs/plugins/Makefile.am:
6408           Simplify --extra-dir as gtkdoc scans recursively.
6409
6410 2007-07-03  Wim Taymans  <wim@fluendo.com>
6411
6412         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6413
6414         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
6415         Set the encoding-name in the rtp caps to all uppercase, as required by
6416         the caps spec.
6417         Some small cleanups in the error paths. Fixes #453037.
6418
6419 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
6420
6421         * ext/wavpack/gstwavpackparse.c:
6422         (gst_wavpack_parse_index_get_last_entry),
6423         (gst_wavpack_parse_index_get_entry_from_sample),
6424         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
6425         (gst_wavpack_parse_scan_to_find_sample):
6426         * ext/wavpack/gstwavpackparse.h:
6427         Use a GSList for the GArray that is used like a list anyway.
6428
6429 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
6430
6431         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
6432         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
6433         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
6434           Add state change function where we set 0/1 as default framerate in
6435           case our setcaps function isn't called, like it might not in a
6436           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
6437           gdkpixbufdec trying to create caps with a 0/0 framerate.
6438           Also post an error message on the bus if gst_pad_push() fails when
6439           called from our sink event handler (+1 for flow returns for event
6440           functions in 0.11) instead of failing silently.
6441
6442 2007-06-27  Wim Taymans  <wim@fluendo.com>
6443
6444         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
6445         Cast stack args to the proper types. Fixes #451249.
6446
6447 2007-06-27  Wim Taymans  <wim@fluendo.com>
6448
6449         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
6450         (new_session_pad), (gst_rtspsrc_setup_streams):
6451         * gst/rtsp/gstrtspsrc.h:
6452         For container formats we only need to activate one of the streams so
6453         that we correctly signal no-more-pads. Fixes #451015.
6454
6455 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
6456
6457         * docs/plugins/gst-plugins-good-plugins.args:
6458         * docs/plugins/inspect/plugin-aasink.xml:
6459         * docs/plugins/inspect/plugin-alaw.xml:
6460         * docs/plugins/inspect/plugin-alpha.xml:
6461         * docs/plugins/inspect/plugin-alphacolor.xml:
6462         * docs/plugins/inspect/plugin-annodex.xml:
6463         * docs/plugins/inspect/plugin-apetag.xml:
6464         * docs/plugins/inspect/plugin-audiofx.xml:
6465         * docs/plugins/inspect/plugin-auparse.xml:
6466         * docs/plugins/inspect/plugin-autodetect.xml:
6467         * docs/plugins/inspect/plugin-avi.xml:
6468         * docs/plugins/inspect/plugin-cacasink.xml:
6469         * docs/plugins/inspect/plugin-cairo.xml:
6470         * docs/plugins/inspect/plugin-cdio.xml:
6471         * docs/plugins/inspect/plugin-cutter.xml:
6472         * docs/plugins/inspect/plugin-debug.xml:
6473         * docs/plugins/inspect/plugin-efence.xml:
6474         * docs/plugins/inspect/plugin-effectv.xml:
6475         * docs/plugins/inspect/plugin-esdsink.xml:
6476         * docs/plugins/inspect/plugin-flac.xml:
6477         * docs/plugins/inspect/plugin-flxdec.xml:
6478         * docs/plugins/inspect/plugin-gconfelements.xml:
6479         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6480         * docs/plugins/inspect/plugin-goom.xml:
6481         * docs/plugins/inspect/plugin-halelements.xml:
6482         * docs/plugins/inspect/plugin-icydemux.xml:
6483         * docs/plugins/inspect/plugin-id3demux.xml:
6484         * docs/plugins/inspect/plugin-jpeg.xml:
6485         * docs/plugins/inspect/plugin-ladspa.xml:
6486         * docs/plugins/inspect/plugin-level.xml:
6487         * docs/plugins/inspect/plugin-matroska.xml:
6488         * docs/plugins/inspect/plugin-mulaw.xml:
6489         * docs/plugins/inspect/plugin-multipart.xml:
6490         * docs/plugins/inspect/plugin-navigationtest.xml:
6491         * docs/plugins/inspect/plugin-ossaudio.xml:
6492         * docs/plugins/inspect/plugin-png.xml:
6493         * docs/plugins/inspect/plugin-quicktime.xml:
6494         * docs/plugins/inspect/plugin-rtp.xml:
6495         * docs/plugins/inspect/plugin-rtsp.xml:
6496         * docs/plugins/inspect/plugin-smpte.xml:
6497         * docs/plugins/inspect/plugin-speex.xml:
6498         * docs/plugins/inspect/plugin-taglib.xml:
6499         * docs/plugins/inspect/plugin-udp.xml:
6500         * docs/plugins/inspect/plugin-videobalance.xml:
6501         * docs/plugins/inspect/plugin-videobox.xml:
6502         * docs/plugins/inspect/plugin-videocrop.xml:
6503         * docs/plugins/inspect/plugin-videoflip.xml:
6504         * docs/plugins/inspect/plugin-videomixer.xml:
6505         * docs/plugins/inspect/plugin-wavenc.xml:
6506         * docs/plugins/inspect/plugin-wavparse.xml:
6507         * docs/plugins/inspect/plugin-ximagesrc.xml:
6508           Update docs with caps info.
6509
6510 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
6511
6512         * po/POTFILES.in:
6513           Add more files with translatable strings (#450878).
6514
6515 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
6516
6517         * MAINTAINERS:
6518         Updating all the maintainers files
6519
6520 2007-06-22  Edward Hervey  <edward@fluendo.com>
6521
6522         * ext/flac/gstflactag.c: (gst_flac_tag_init):
6523         * gst/interleave/deinterleave.c: (deinterleave_init),
6524         (deinterleave_sink_link):
6525         * gst/interleave/interleave.c: (interleave_init):
6526         * gst/median/gstmedian.c: (gst_median_init):
6527         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
6528         Fix memory leaks.
6529         * tests/check/elements/id3demux.c: (pad_added_cb):
6530         Remove unused variable.
6531
6532 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
6533
6534         * ext/gconf/gconf.h:
6535         Make the prototype of gst_gconf_get_key_for_sink_profile
6536         match the implementation.
6537         Patch by: Damien Carbery <damien dot carbery at sun dot com>
6538         Fixes: #449747
6539
6540 2007-06-20  Michael Smith <msmith@fluendo.com>
6541
6542         * gst/rtp/gstrtpdepay.c:
6543           Fix description - rtpdepay is not a payloader.
6544
6545 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
6546
6547         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
6548         (qtdemux_video_caps):
6549         * gst/qtdemux/qtdemux_fourcc.h:
6550           Add MJPG to the variants of motion jpeg.
6551
6552 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
6553
6554         * tests/check/Makefile.am:
6555         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
6556         * tests/check/elements/videocrop.c: (GST_START_TEST):
6557         * tests/check/elements/videofilter.c:
6558         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
6559         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
6560           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
6561           error flags are included and it errors out on compiler warnings
6562           for CVS builds; remove unused variables in various unit tests.
6563
6564 2007-06-19  Wim Taymans  <wim@fluendo.com>
6565
6566         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
6567         (rtsp_connection_close), (rtsp_connection_free):
6568         Use threadsafe inet_ntop to convert an ip number to a string. 
6569         Fixes #447961.
6570         Don't leak fd (and ip) when freeing a connection without first closing
6571         it.
6572
6573 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
6574
6575         * configure.ac:
6576         Back to CVS
6577
6578         * gst-plugins-good.doap:
6579         Add 0.10.6 to the doap file.
6580
6581 === release 0.10.6 ===
6582
6583 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
6584
6585         * configure.ac:
6586           releasing 0.10.6, "Wobble Board"
6587
6588 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
6589
6590         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
6591         (rtsp_connection_free):
6592           Revert previous commit again, since we are frozen (sorry).
6593
6594 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
6595
6596         Patch by: Peter Kjellerstedt <pkj at axis com>
6597
6598         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
6599         (rtsp_connection_free):
6600           inet_ntoa() uses a static buffer internally, so we need to copy the
6601           returned string if we want to store it for later (#447961).
6602
6603 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
6604
6605         * win32/vs6/autogen.dsp:
6606         * win32/vs6/gst_plugins_good.dsw:
6607         * win32/vs6/libgstalaw.dsp:
6608         * win32/vs6/libgstalpha.dsp:
6609         * win32/vs6/libgstalphacolor.dsp:
6610         * win32/vs6/libgstapetag.dsp:
6611         * win32/vs6/libgstaudiofx.dsp:
6612         * win32/vs6/libgstauparse.dsp:
6613         * win32/vs6/libgstautodetect.dsp:
6614         * win32/vs6/libgstavi.dsp:
6615         * win32/vs6/libgstcutter.dsp:
6616         * win32/vs6/libgstdirectdraw.dsp:
6617         * win32/vs6/libgstdirectsound.dsp:
6618         * win32/vs6/libgsteffectv.dsp:
6619         * win32/vs6/libgstflx.dsp:
6620         * win32/vs6/libgstgoom.dsp:
6621         * win32/vs6/libgsticydemux.dsp:
6622         * win32/vs6/libgstid3demux.dsp:
6623         * win32/vs6/libgstinterleave.dsp:
6624         * win32/vs6/libgstjpeg.dsp:
6625         * win32/vs6/libgstlevel.dsp:
6626         * win32/vs6/libgstmatroska.dsp:
6627         * win32/vs6/libgstmedian.dsp:
6628         * win32/vs6/libgstmonoscope.dsp:
6629         * win32/vs6/libgstmulaw.dsp:
6630         * win32/vs6/libgstmultipart.dsp:
6631         * win32/vs6/libgstqtdemux.dsp:
6632         * win32/vs6/libgstrtp.dsp:
6633         * win32/vs6/libgstrtsp.dsp:
6634         * win32/vs6/libgstsmpte.dsp:
6635         * win32/vs6/libgstspeex.dsp:
6636         * win32/vs6/libgstudp.dsp:
6637         * win32/vs6/libgstvideobalance.dsp:
6638         * win32/vs6/libgstvideobox.dsp:
6639         * win32/vs6/libgstvideocrop.dsp:
6640         * win32/vs6/libgstvideoflip.dsp:
6641         * win32/vs6/libgstvideomixer.dsp:
6642         * win32/vs6/libgstwaveform.dsp:
6643         * win32/vs6/libgstwavenc.dsp:
6644         * win32/vs6/libgstwavparse.dsp:
6645         Mark *.dsp & *.dsw as binary files and convert to DOS line
6646         endings, as they don't load into VS6 correctly otherwise.
6647
6648 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
6649
6650         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
6651         (rtsp_connection_connect):
6652         Fix the MingW build. 
6653         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
6654         Fixes: #446981
6655
6656 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
6657
6658         * tests/check/elements/.cvsignore:
6659         * tests/icles/.cvsignore:
6660         Hush the buildbots up
6661
6662 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
6663
6664         * configure.ac:
6665         * sys/Makefile.am:
6666         * sys/directdraw/Makefile.am:
6667         * sys/directsound/Makefile.am:
6668         * sys/waveform/Makefile.am:
6669         Make sure to dist everything needed for win32 builds.
6670
6671 2007-06-14  Edward Hervey  <edward@fluendo.com>
6672
6673         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
6674         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
6675         caps.
6676         Fixes #447458
6677
6678 2007-06-13  Wim Taymans  <wim@fluendo.com>
6679
6680         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
6681         Make sure we allocate enough memory for the codec_data.
6682         Fixes #447210.
6683
6684 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
6685
6686         * win32/MANIFEST:
6687         Add videocrop project file to the win32 manifest.
6688         * win32/vs6/gst_plugins_good.dsw:
6689         Add qtdemux,videocrop and waveform projects to the workspace.
6690         * win32/vs6/libgstqtdemux.dsp:
6691         Add zlib to the link list of qtdemux.
6692         * win32/vs6/libgstvideocrop.dsp:
6693         Add a project file for videocrop.
6694
6695 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
6696
6697         * po/POTFILES.in:
6698         Add qtdemux for translation
6699
6700 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
6701
6702         * configure.ac:
6703         * docs/plugins/Makefile.am:
6704         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6705         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6706         * docs/plugins/inspect/plugin-videocrop.xml:
6707         * gst-plugins-good.spec.in:
6708         * sys/Makefile.am:
6709         * tests/check/Makefile.am:
6710         * tests/icles/Makefile.am:
6711         * tests/icles/videocrop-test.c:
6712         Move videocrop and osxvideo from -bad.
6713
6714 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
6715
6716         * configure.ac:
6717         * docs/plugins/Makefile.am:
6718         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6719         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6720         * docs/plugins/gst-plugins-good-plugins.args:
6721         * docs/plugins/inspect/plugin-qtdemux.xml:
6722         * docs/plugins/inspect/plugin-quicktime.xml:
6723         * win32/MANIFEST:
6724         Move qtdemux from -bad.
6725
6726         * gst-plugins-good.spec.in:
6727         Update spec file to reflect moving of qtdemux and wavpack
6728
6729 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
6730         
6731         * win32/MANIFEST:
6732         * docs/plugins/Makefile.am:
6733         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6734         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6735         * docs/plugins/inspect/plugin-directdraw.xml:
6736         * docs/plugins/inspect/plugin-directsound.xml:
6737         * docs/plugins/inspect/plugin-waveform.xml:
6738         Move the waveform plugin from -bad too. Update the inspect xml
6739         files to mention Plugins Good instead of Plugins Bad.
6740
6741 2007-06-12  Andy Wingo  <wingo@pobox.com>
6742
6743         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
6744         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
6745         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
6746         finalization and resuscitation. No longer public.
6747         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
6748         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
6749         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
6750         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
6751         miniobject semantics, and be threadsafe.
6752         (gst_v4l2src_queue_frame): Remove this function, as we just call
6753         the ioctls directly in the two places where we queue buffers.
6754         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
6755         directly.
6756         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
6757         to allocate the pool, which also preallocates the GstBuffers.
6758         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
6759         queueing the frames directly.
6760         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
6761         mmap buffers have been dequeued.
6762
6763         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
6764         real MiniObject instead of rolling our own refcounting and
6765         finalizing. Give it a lock.
6766         (struct _GstV4l2Buffer): Remove one intermediary object, having
6767         the buffers hold the struct v4l2_buffer directly.
6768
6769         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
6770         capture_init so that it can set them on the buffers that it will
6771         create.
6772         (gst_v4l2src_get_read): For better or for worse, include the
6773         timestamping and offsetting code here; really we should be using
6774         bufferalloc though.
6775         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
6776         preallocated, mmap'd buffers.
6777
6778 2007-06-11  Wim Taymans  <wim@fluendo.com>
6779
6780         Patch by: daniel fischer <dan at f3c dot com>
6781
6782         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
6783         (gst_ximage_src_get_caps):
6784         Actually use the display_name property so that we can dump any
6785         available X display. Fixes #445905.
6786
6787 2007-06-11  Wim Taymans  <wim@fluendo.com>
6788
6789         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
6790
6791         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
6792         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
6793         Add missing rate fields to caps. Fixes #441118.
6794
6795 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
6796
6797         * win32/vs6/gst_plugins_good.dsw:
6798         * win32/vs8/gst-plugins-good.sln:
6799         Add DirectSound and DirectDraw sinks project files to
6800         workspace and solution files.
6801
6802 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
6803
6804         Patch by: Josh Coalson <xflac at yahoo dot com>,
6805         updated by Alexis Ballier <aballier at gentoo dot org>:
6806
6807         * configure.ac:
6808         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
6809         (gst_flac_dec_setup_seekable_decoder),
6810         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
6811         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
6812         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
6813         * ext/flac/gstflacdec.h:
6814         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
6815         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
6816         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
6817         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
6818         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
6819         (gst_flac_enc_chain), (gst_flac_enc_set_property),
6820         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
6821         * ext/flac/gstflacenc.h:
6822         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
6823         
6824 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
6825
6826         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
6827         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
6828         not necessary anymore as we need at least that core version. 
6829
6830 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
6831
6832         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
6833         (gst_wavpack_dec_chain):
6834         * ext/wavpack/gstwavpackdec.h:
6835         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
6836         (gst_wavpack_parse_push_buffer):
6837         * ext/wavpack/gstwavpackparse.h:
6838         Improve discont handling by checking if the next Wavpack block has
6839         the expected, following block index.
6840
6841 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
6842
6843         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
6844           Fix element description.
6845
6846 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
6847
6848         * configure.ac:
6849         * docs/plugins/Makefile.am:
6850         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6851         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6852         * docs/plugins/gst-plugins-good-plugins.args:
6853         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6854         * docs/plugins/gst-plugins-good-plugins.signals:
6855         * docs/plugins/inspect/plugin-autodetect.xml:
6856         * docs/plugins/inspect/plugin-gconfelements.xml:
6857         * docs/plugins/inspect/plugin-ladspa.xml:
6858         * docs/plugins/inspect/plugin-rtp.xml:
6859         * docs/plugins/inspect/plugin-wavpack.xml:
6860         * ext/Makefile.am:
6861         * tests/check/Makefile.am:
6862           move wavpack plugin.  See #352605.
6863
6864 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
6865
6866         * configure.ac:
6867         * docs/plugins/Makefile.am:
6868         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6869         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6870         * docs/plugins/gst-plugins-good-plugins.args:
6871         * sys/Makefile.am:
6872         * win32/MANIFEST:
6873         Add DirectDraw & DirectSound plugins to the build and docs.
6874
6875 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
6876
6877         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
6878         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
6879           When operating in pull mode, error out correct on not-linked.
6880
6881 2007-06-06  Andy Wingo  <wingo@pobox.com>
6882
6883         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
6884         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
6885         format and size if the ioctls are defined; should fix compilation
6886         on Linux < 2.16.19.
6887
6888 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
6889
6890         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
6891           Printf fixes in debug statements; use LOG level for debug statements
6892           that are printed for each and every frame; convert c++ comments to
6893           C-style comments; not much point using g_try_malloc() if we then not
6894           even check the return value.
6895
6896 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
6897
6898         * configure.ac:
6899           Bump requirements to released versions (core and base 0.10.13).
6900
6901         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
6902           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
6903           own implementation.
6904
6905 2007-06-05  Andy Wingo  <wingo@pobox.com>
6906
6907         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
6908         some useless comments.
6909
6910         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
6911         frames before calling STREAMON, that might leave them in a state
6912         where they can't be dequeued if we go back to NULL without calling
6913         STREAMON, according to the docs.
6914         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
6915         before we call STREAMON.
6916         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
6917         failures. (For me this code hung.) The pool refcounting is still
6918         crack; added a note to that effect.
6919
6920 2007-06-05  Wim Taymans  <wim@fluendo.com>
6921
6922         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
6923         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
6924         Add support for mapping gst structure names to the MIME type equivalent.
6925         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
6926
6927 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
6928
6929         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
6930         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
6931         (gst_wavenc_chain), (gst_wavenc_change_state):
6932         * gst/wavenc/gstwavenc.h:
6933         Properly write wav files with width!=depth by having the depth most
6934         significant bytes set and all others zero. Fixes #442535.
6935
6936 2007-06-01  Wim Taymans  <wim@fluendo.com>
6937
6938         * gst/rtsp/rtspconnection.c:
6939         Add include to make buildbot happy.
6940
6941 2007-06-01  Wim Taymans  <wim@fluendo.com>
6942
6943         Patch by: Peter Kjellerstedt  <pkj at axis com>
6944
6945         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
6946         (rtsp_connection_connect), (add_date_header),
6947         (rtsp_connection_send), (parse_response_status),
6948         (parse_request_line), (parse_line), (rtsp_connection_receive):
6949         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
6950         * gst/rtsp/rtspdefs.h:
6951         * gst/rtsp/rtspmessage.c: (key_value_foreach),
6952         (rtsp_message_init_request), (rtsp_message_init_response),
6953         (rtsp_message_remove_header), (rtsp_message_append_headers),
6954         (rtsp_message_dump):
6955         * gst/rtsp/rtspmessage.h:
6956         Improves version checking, allowing an RTSP server to reply with "505
6957         RTSP Version not supported.
6958         Adds a Date header to all messages.
6959         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
6960         want to be able to send a response even if something in the request was
6961         invalid. EINVAL is only used when passing wrong arguments to functions.
6962         Do not handle an invalid method in parse_request_line(). Defer this to
6963         the caller so it can respond with "405 Method Not Allowed".
6964         Improves parsing of the timeout parameter to the Session header,
6965         allowing whitespace after the semicolon. 
6966         Avoids a compiler warning due to variables shadowing a function argument.
6967
6968 2007-06-01  Wim Taymans  <wim@fluendo.com>
6969
6970         Based on Patch by: Daniel Charles <dcharles at ti dot com>
6971
6972         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
6973         (gst_rtp_amr_depay_process):
6974         * gst/rtp/gstrtpamrdepay.h:
6975         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
6976         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
6977         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
6978         * gst/rtp/gstrtpamrpay.h:
6979         Add support for AMR-WB.
6980         Small cleanups such as using BOILERPLATE.
6981
6982 2007-05-31  Wim Taymans  <wim@fluendo.com>
6983
6984         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
6985         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
6986
6987 2007-05-30  Andy Wingo  <wingo@pobox.com>
6988
6989         * sys/v4l2/gstv4l2object.h: 
6990         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
6991         unintended changes.
6992
6993         * sys/v4l2/v4l2src_calls.h: 
6994         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
6995         the format list in the order that the driver gives it to us.
6996         (gst_v4l2src_probe_caps_for_format_and_size)
6997         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
6998         based on the capabilities of the device.
6999         (gst_v4l2src_grab_frame): Update for object variable renaming.
7000         (gst_v4l2src_set_capture): Update to be strict in its parameters,
7001         as in the set_caps below.
7002         (gst_v4l2src_capture_init): Update for object variable renaming,
7003         and reflow.
7004         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
7005         (gst_v4l2src_capture_deinit): Update for object variable renaming.
7006         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
7007         (gst_v4l2src_get_fps): Remove; these functions don't have much
7008         meaning outside of an atomic set_caps method.
7009         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
7010         known.
7011
7012         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
7013         call to update_fps; not sure about this change.
7014         (gst_v4l2_tuner_set_norm): Work around the fact that for the
7015         moment we don't have an update_fps_func.
7016
7017         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
7018         structures in the object, just store what we need. Do store the
7019         probed caps of the device. Don't store the current frame rate.
7020
7021         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
7022         update_fps_function, for now. Update for new object variable
7023         naming.
7024         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
7025         new object variable naming.
7026         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
7027         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
7028         (gst_v4l2src_get_caps): Rework to probe the device for supported
7029         frame sizes and frame rates.
7030         (gst_v4l2src_set_caps): Rework to be strict in the given
7031         parameters: if someone asks us to have a certain size and rate,
7032         that is what we configure.
7033         (gst_v4l2src_get_read): Update for object variable naming. Don't
7034         leak buffers on short reads.
7035         (gst_v4l2src_get_mmap): Update for object variable naming, and add
7036         comments.
7037         (gst_v4l2src_create): Update for object variable naming.
7038
7039 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
7040
7041         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
7042         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
7043         * gst/avi/gstavidemux.h:
7044           Parse subtitle text streams instead of erroring out (#442034). Still
7045           needs a parser for the subtitles to actually show up.
7046
7047 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
7048
7049         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
7050         (gst_avi_demux_loop):
7051           Make _push_event() return TRUE if the event could be pushed on at
7052           least one pad and not only if it could be pushed on all pads,
7053           otherwise we'll end up posting an error message on EOS if one or
7054           more source pads are not connected.
7055
7056 2007-05-28  Wim Taymans  <wim@fluendo.com>
7057
7058         * gst/rtsp/rtsptransport.c:
7059         Use renamed RTP bin.
7060
7061 2007-05-28  Wim Taymans  <wim@fluendo.com>
7062
7063         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
7064
7065         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
7066         (gst_video_box_set_property), (gst_video_box_transform_caps),
7067         (video_box_recalc_transform), (gst_video_box_set_caps),
7068         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
7069         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
7070         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
7071         (gst_video_box_i420_i420), (gst_video_box_transform),
7072         (plugin_init):
7073         Add AYUV->AYUV and AYUV->I420 formats. 
7074         Fix negotiation and I420->AYUV conversion.
7075         Fixes #429329.
7076
7077 2007-05-26  Wim Taymans  <wim@fluendo.com>
7078
7079         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
7080         Use different variables for nested for loops so that the outer loop
7081         functions properly and speex files with multiple frames per buffer work
7082         properly.
7083         Fixes #441408.
7084
7085 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
7086
7087         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
7088           Don't leak newsegment events.
7089
7090 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
7091
7092         * gst/wavparse/Makefile.am:
7093           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
7094           drags it in.
7095
7096 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
7097
7098         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
7099         (notgst_value_array_append_buffer),
7100         (gst_flac_enc_process_stream_headers),
7101         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
7102         (gst_flac_enc_change_state):
7103         * ext/flac/gstflacenc.h:
7104           Collect headers, add "streamheader" field to output caps and set
7105           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
7106           produces output according to the official FLAC-to-Ogg mapping
7107           instead of completely broken files. Fixes #426044.
7108
7109 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
7110
7111         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
7112         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
7113         (gst_id3demux_sink_event):
7114         * gst/id3demux/gstid3demux.h:
7115         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
7116         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
7117         (gst_tag_demux_send_new_segment):
7118         Handle and adjust new-segment events so that downstream really
7119         sees a stream with the tag pieces stripped off the front and back.
7120         Fixes strangeness in seeking when mp3 decoders use the new-segment
7121         byte position to estimate their current playback position timestamp
7122         and then the arriving buffers don't match up.
7123
7124 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
7125
7126         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
7127           Don't unnecessarily perform a READY->NULL->READY transition on the
7128           detected audio sink when starting up. Fixes: #440127
7129
7130 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
7131
7132         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
7133         (gst_flac_enc_chain):
7134           Don't crash in chain function if setcaps hasn't been called.
7135
7136 2007-05-24  Wim Taymans  <wim@fluendo.com>
7137
7138         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
7139         Init value to avoid infinte loops.
7140
7141 2007-05-24  Wim Taymans  <wim@fluendo.com>
7142
7143         Patch by: Peter Kjellerstedt  <pkj at axis com>
7144
7145         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
7146         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
7147         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
7148         (gst_rtspsrc_play):
7149         (rtsp_connection_send), (rtsp_connection_receive):
7150         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
7151         Fix for new API.
7152
7153         * gst/rtsp/rtspconnection.c: (add_auth_header),
7154         Only add authorisation and session headers when sending messages.
7155
7156         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
7157         (rtsp_message_init_request), (rtsp_message_init_response),
7158         (rtsp_message_unset), (rtsp_message_add_header),
7159         (rtsp_message_remove_header), (rtsp_message_get_header),
7160         (rtsp_message_append_headers), (dump_key_value),
7161         (rtsp_message_dump):
7162         * gst/rtsp/rtspmessage.h:
7163         Add support for multiple headers of the same type by storing the parsed
7164         headers in a GArray instaed of a hashtable.
7165
7166 2007-05-21  Wim Taymans  <wim@fluendo.com>
7167
7168         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
7169         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
7170         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
7171         safer shutdown.
7172
7173 2007-05-21  Wim Taymans  <wim@fluendo.com>
7174
7175         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
7176         * gst/rtsp/gstrtpdec.h:
7177         Added signal for backwards compat.
7178
7179 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
7180         
7181         Patch by: René Stadler <mail at renestadler dot de>
7182
7183         * configure.ac:
7184         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
7185         (gst_au_parse_parse_header), (gst_au_parse_chain):
7186         * gst/auparse/gstauparse.h:
7187         Use audioconvert for converting from non-native endianness floats
7188         in auparse instead of doing it ourself. Fixes #424527.
7189         This needs the audioconvert from plugins-base CVS.
7190         
7191 2007-05-21  Wim Taymans  <wim@fluendo.com>
7192
7193         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
7194         (gst_rtp_h263p_pay_flush):
7195         Fix enum registration.
7196
7197 2007-05-21  Wim Taymans  <wim@fluendo.com>
7198
7199         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
7200
7201         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
7202         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
7203         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
7204         (gst_rtp_h263p_pay_flush):
7205         * gst/rtp/gstrtph263ppay.h:
7206         Add new fragmentation mode base on GOB headers. Fixes #438940.
7207
7208 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
7209
7210         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
7211           Printf format fix.
7212
7213 2007-05-18  Wim Taymans  <wim@fluendo.com>
7214
7215         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
7216         Don't crash when an unsupported transport error was returned by the
7217         server, just try to configure the next stream. Fixes #439255.
7218
7219 2007-05-18  Wim Taymans  <wim@fluendo.com>
7220
7221         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
7222         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
7223         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
7224         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
7225         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
7226         * gst/rtsp/gstrtspsrc.h:
7227         Add TCP timeout property and use it for all TCP connection.
7228
7229         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
7230         (rtsp_connection_write), (rtsp_connection_next_timeout),
7231         (rtsp_connection_reset_timeout):
7232         Make connect and writes cancelable and make them use the timeout.
7233
7234 2007-05-18  Wim Taymans  <wim@fluendo.com>
7235
7236         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
7237         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
7238         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
7239         (gst_rtspsrc_setup_streams):
7240         Refactor timeout handling.
7241         Also send keep-alive when dealing with TCP transport.
7242
7243         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
7244         (rtsp_connection_free), (rtsp_connection_next_timeout),
7245         (rtsp_connection_reset_timeout):
7246         * gst/rtsp/rtspconnection.h:
7247         Use a timer to handle the session timeouts, add some methods to deal
7248         with timeouts.
7249
7250 2007-05-17  Wim Taymans  <wim@fluendo.com>
7251
7252         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
7253         (gst_rtspsrc_setup_streams):
7254         Ignore streams that fail the setup command, we will retry with a
7255         different transport later on.
7256
7257         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
7258         (rtsp_ext_wms_configure_stream):
7259         Fix encoding name case.
7260
7261 2007-05-16  Edward Hervey  <edward@fluendo.com>
7262
7263         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
7264         Fix build on macosx.
7265
7266 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
7267
7268         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
7269         Replace direct comparison of a string with the string literal "" with
7270         a comparison of the first character with '\0'. Fixes #438926.
7271
7272 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
7273
7274         * gst/debug/breakmydata.c (gst_break_my_data_init):
7275           One more try. This should be the proper fix now.
7276
7277 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
7278
7279         * gst/debug/breakmydata.c:
7280           Ooops, no // comments please.
7281
7282 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
7283
7284         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
7285         (gst_break_my_data_init):
7286           Fix gst_buffer_is_writable() assertion.
7287
7288 2007-05-14  David Schleef  <ds@schleef.org>
7289
7290         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
7291           video/x-raw-bayer.  Fixes #314160.
7292
7293 2007-05-14  Wim Taymans  <wim@fluendo.com>
7294
7295         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
7296         (gst_rtp_theora_depay_parse_configuration):
7297         * gst/rtp/gstrtptheorapay.c: (encode_base64),
7298         (gst_rtp_theora_pay_finish_headers),
7299         (gst_rtp_theora_pay_handle_buffer):
7300         Update theora pay/depayloader in a similar to vorbis.
7301
7302         * gst/rtp/gstrtpvorbisdepay.c:
7303         (gst_rtp_vorbis_depay_parse_configuration):
7304         Update docs.
7305
7306 2007-05-14  Wim Taymans  <wim@fluendo.com>
7307
7308         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
7309         When we try to execute a method that is not supported by the server,
7310         don't error out but remove the method from the accepted methods so that
7311         we never try to perform this method again.
7312
7313 2007-05-14  Wim Taymans  <wim@fluendo.com>
7314
7315         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
7316         Remove annoying _dump_mem.
7317
7318 2007-05-14  Wim Taymans  <wim@fluendo.com>
7319
7320         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
7321         Parse range correctly.
7322
7323         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
7324         The baseurl now always has a '/' at the start.
7325
7326 2007-05-14  Wim Taymans  <wim@fluendo.com>
7327
7328         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
7329         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
7330         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
7331         Factor out caps configuration and configure more stuff such as the time
7332         ranges and speed/scale values.
7333
7334         * gst/rtsp/rtsptransport.c:
7335         Add Copyright after non-trival fixes.
7336
7337 2007-05-12  Wim Taymans  <wim@fluendo.com>
7338
7339         Patch by: Peter Kjellerstedt  <pkj at axis com>
7340
7341         * gst/rtsp/gstrtspsrc.h:
7342         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
7343         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
7344         (rtsp_message_get_header):
7345         * gst/rtsp/rtspmessage.h:
7346         Make channel guint8 where possible.
7347         Make rtsp_message_init_data() take the channel as a guint8.
7348
7349         * gst/rtsp/rtspdefs.c:
7350         Fixed a typo: Timout -> Timeout
7351
7352         * gst/rtsp/rtspdefs.h:
7353         Make RTSP_CHECK() behave as a statement.
7354
7355         * gst/rtsp/sdpmessage.c:
7356         Avoid a compiler warning in INIT_ARRAY().
7357         Fixes #437692.
7358
7359 2007-05-12  Wim Taymans  <wim@fluendo.com>
7360
7361         Patch by: Peter Kjellerstedt  <pkj at axis com>
7362
7363         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
7364         (rtsp_url_get_request_uri):
7365         * gst/rtsp/rtspurl.h:
7366         Add support for query parameters to RTSP URLs.
7367
7368 2007-05-12  Wim Taymans  <wim@fluendo.com>
7369
7370         Patch by: Peter Kjellerstedt  <pkj at axis com>
7371
7372         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
7373         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
7374         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
7375         (rtsp_transport_parse), (rtsp_transport_as_text):
7376         * gst/rtsp/rtsptransport.h:
7377         Add validation to rtsp_transport_parse().
7378         Add rtsp_transport_as_text() to generate an RTSP header from an
7379         RTSPTransport.
7380         Change ssrc to guint (was a string) since that is what it is, even
7381         though it is sent as a hex string.
7382         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
7383         incorrect, which can be seen when looking at the examples in the RFC).
7384         Fixes #437670.
7385
7386 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
7387
7388         Patch by: Eric Anholt
7389
7390         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
7391           gst_ximage_src_ximage_get):
7392         Use union of all damage between frames to make it faster.
7393         Fixes bug #342463.
7394         Also fix crasher when cursor is at bottom right of window.
7395
7396 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
7397
7398         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
7399           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
7400           streaming mode regression for file from #343837 with 'bext' chunk
7401           before the 'fmt' chunk.
7402
7403 2007-05-11  Wim Taymans  <wim@fluendo.com>
7404
7405         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
7406         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
7407         (gst_rtspsrc_handle_src_event),
7408         (gst_rtspsrc_stream_configure_manager),
7409         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
7410         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
7411         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
7412         * gst/rtsp/gstrtspsrc.h:
7413         * gst/rtsp/rtspdefs.h:
7414         Preliminary seek support.
7415         Activate internal pads so that we can receive events on them.
7416         Don't try to parse a range string when it's NULL.
7417
7418 2007-05-11  Wim Taymans  <wim@fluendo.com>
7419
7420         * gst/rtp/README:
7421         Update README with new RTP variables that will be used for
7422         synchronisation.
7423
7424         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
7425         (gst_rtp_vorbis_depay_parse_configuration),
7426         (gst_rtp_vorbis_depay_process):
7427         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
7428         (gst_rtp_vorbis_pay_finish_headers),
7429         (gst_rtp_vorbis_pay_handle_buffer):
7430         Update vorbis pay and depayloader to draft-04.
7431
7432 2007-05-11  Wim Taymans  <wim@fluendo.com>
7433
7434         * gst/rtsp/rtsptransport.c:
7435         UDP MCAST is actually the default for RTP/AVP.
7436 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
7437
7438         * gst/level/gstlevel.c: (gst_level_transform_ip):
7439         Use guint8 * instead of gpointer then vs6 can build 
7440         in_data += (filter->width / 8).
7441
7442 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
7443
7444         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
7445           gst_ximage_src_ximage_get):
7446         * sys/ximage/gstximagesrc.h (last_ximage):
7447         When using Damage actually keep the last frame, and not assume
7448         that the buffer we get already has the last frame on it.
7449         Copy the cursor over if we specify a non-zero start x and
7450         start y.
7451
7452 2007-05-11  Wim Taymans  <wim@fluendo.com>
7453
7454         * gst/rtsp/rtsptransport.c:
7455         Make UDP the default transport when not specified.
7456
7457 2007-05-09  David Schleef  <ds@schleef.org>
7458
7459         * gst/level/gstlevel.c:
7460           Revert last change.
7461
7462 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
7463
7464         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
7465         (gst_level_transform_ip):
7466         Use guint8 * instead of gpointer then vs6 know the size of data
7467         pointed when moving the pointer.
7468         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
7469         Move instructions after variables declaration.
7470         * win32/vs6/autogen.dsp:
7471         * win32/vs6/libgstrtp.dsp:
7472         * win32/vs6/libgstrtsp.dsp:
7473         Update vs6 project files.
7474
7475 2007-05-09  Wim Taymans  <wim@fluendo.com>
7476
7477         * gst/rtsp/Makefile.am:
7478         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
7479         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
7480         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
7481         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
7482         (rtsp_range_free):
7483         * gst/rtsp/rtsprange.h:
7484         Add code to parse time ranges.
7485         Report DURATION on the stream when possible.
7486
7487 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
7488
7489         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
7490         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
7491         (gst_videomixer_collected):
7492           Fix strides calculation for AYUV (it's just width*4) (#436910).
7493
7494 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
7495
7496         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
7497         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
7498         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
7499         Sync the GObject properties before each processing step to properly
7500         work with the controller.
7501
7502 2007-05-04  Wim Taymans  <wim@fluendo.com>
7503
7504         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
7505         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
7506         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
7507         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
7508         (gst_rtspsrc_change_state):
7509         Let more error state trickle down so that we can catch more error
7510         cases.
7511         Handle keep-alive a little smarter by selecting a method the server
7512         actually supports.
7513         Fix a race in UDP streaming shutdown.
7514
7515 2007-05-04  Wim Taymans  <wim@fluendo.com>
7516
7517         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
7518         Ignore errors when trying to use the keep-alive messages.
7519
7520 2007-05-04  Wim Taymans  <wim@fluendo.com>
7521
7522         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
7523         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
7524         (gst_rtspsrc_stream_configure_manager),
7525         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
7526         (gst_rtspsrc_stream_configure_mcast),
7527         (gst_rtspsrc_stream_configure_udp),
7528         (gst_rtspsrc_stream_configure_udp_sink),
7529         (gst_rtspsrc_stream_configure_transport):
7530         Send RTCP messages back to the server over the TCP connection.
7531
7532         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
7533         (rtsp_connection_send), (rtsp_connection_read), (read_body),
7534         (rtsp_connection_receive):
7535         * gst/rtsp/rtspconnection.h:
7536         Factor out and expose lowlevel _write and _read methods.
7537         Implement sending data messages to the server.
7538
7539 2007-05-03  Wim Taymans  <wim@fluendo.com>
7540
7541         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
7542         (gst_multipart_mux_collected):
7543         Fix timestamps on outgoing buffers.
7544
7545 2007-05-03  Wim Taymans  <wim@fluendo.com>
7546
7547         * gst/multipart/multipartmux.c:
7548         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
7549         (gst_multipart_mux_change_state):
7550         Emit NEWSEGMENT events before pushing the first buffer.
7551
7552 2007-05-03  Wim Taymans  <wim@fluendo.com>
7553
7554         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
7555         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
7556         (gst_rtspsrc_handle_src_query),
7557         (gst_rtspsrc_stream_configure_manager),
7558         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
7559         (gst_rtspsrc_stream_configure_mcast),
7560         (gst_rtspsrc_stream_configure_udp),
7561         (gst_rtspsrc_stream_configure_udp_sink),
7562         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
7563         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
7564         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
7565         (gst_rtspsrc_pause):
7566         Refactor transport configuration code.
7567         Create internal pads for TCP transport so that we can implement events
7568         and queries.
7569         Handle events and queries.
7570         Parse range from the SDP.
7571         Fix race in pause handler where the connection could still be flushing.
7572
7573 2007-05-02  Wim Taymans  <wim@fluendo.com>
7574
7575         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
7576         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
7577         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
7578         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
7579         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
7580         (gst_rtspsrc_change_state):
7581         * gst/rtsp/gstrtspsrc.h:
7582         Fix race when multiple udp sources post timeouts, just act on the first
7583         received timeout.
7584         Protect stream list with a recursive lock to fix some races.
7585         Flush connection when we need to do a reconnect or stop.
7586         Make state lock recursive.
7587
7588         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
7589         (rtsp_connection_close):
7590         Some small cleanups.
7591
7592 2007-05-02  Wim Taymans  <wim@fluendo.com>
7593
7594         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
7595         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
7596         Only set DISCONT when there actually is a discont or when we just
7597         started.
7598
7599 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
7600
7601         * ext/flac/gstflac.c: (plugin_init):
7602         Call bindtextdomain() to get localized strings.
7603
7604 2007-05-02  Wim Taymans  <wim@fluendo.com>
7605
7606         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
7607         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
7608         (gst_wavparse_stream_data):
7609         * gst/wavparse/gstwavparse.h:
7610         Be a bit more clever when dealing with VBR files with FACT tags, we
7611         don't want to timestamp buffers in that case but the estimated BPS can
7612         be used for seeking.
7613         Only send close segment in the streaming thread.
7614
7615 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
7616
7617         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
7618         Correctly post an error on the bus if something went wrong in the loop
7619         function. This fixes a few cases where the task was paused and nothing
7620         happened anymore.
7621
7622 2007-05-02  Wim Taymans  <wim@fluendo.com>
7623
7624         * gst/rtsp/test.c: (main):
7625         Fix compilation of deprecated test just because I'm too lazy to delete
7626         it.
7627
7628 2007-05-02  Wim Taymans  <wim@fluendo.com>
7629
7630         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
7631         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
7632         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
7633         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
7634         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
7635         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
7636         * gst/rtsp/gstrtspsrc.h:
7637         Fix sending RTCP to the right place.
7638         Fix bug in reffing the wrong UDP element.
7639         Use new pad names for the session manager.
7640         Implement handling server requests in interleaved and UDP modes.
7641         Handle session keep-alive in UDP modes.
7642         Remove GCond for handling UDP timeouts.
7643
7644         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
7645         (rtsp_connection_send), (rtsp_connection_read), (read_body),
7646         (rtsp_connection_receive), (rtsp_connection_close):
7647         * gst/rtsp/rtspconnection.h:
7648         Store connection IP address for later.
7649         Add timeout args to all operations that might block forever.
7650         Parse session timeout.
7651         Only close sockets when not already closed.
7652
7653         * gst/rtsp/rtspdefs.c:
7654         * gst/rtsp/rtspdefs.h:
7655         Add timeout return value and error string.
7656
7657         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
7658         Add small comment.
7659
7660 2007-05-01  Wim Taymans  <wim@fluendo.com>
7661
7662         Patch by: Sjoerd Simons <sjoerd at luon dot net>
7663
7664         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
7665         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
7666         * gst/rtp/gstrtpmp4vpay.h:
7667         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
7668
7669 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
7670
7671         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7672           Remove v4l2src from docs, since it breaks the docs build, and the
7673           plugin is only built if --enable-experimental is used anyway.
7674
7675         * docs/plugins/Makefile.am:
7676           Spaces => tab.
7677
7678 2007-04-29  Wim Taymans  <wim@fluendo.com>
7679
7680         * gst/udp/gstmultiudpsink.c: (leave_multicast),
7681         (gst_multiudpsink_add), (gst_multiudpsink_remove):
7682         Add code to drop membership of a multicast group.
7683
7684         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
7685         (gst_udpsink_set_uri):
7686         Implement URI handler.
7687
7688         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
7689         (gst_rtspsrc_parse_rtpinfo):
7690         Use URI handler to make udpsink instace.
7691         Improve code to configure port and destination.
7692
7693 2007-04-29  Wim Taymans  <wim@fluendo.com>
7694
7695         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
7696         Fix multicast detection.
7697         Don't try to join a multicast group if the address is not multicast.
7698
7699         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
7700         Small debug improvement.
7701
7702 2007-04-27  Wim Taymans  <wim@fluendo.com>
7703
7704         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
7705         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
7706         (gst_rtspsrc_handle_message):
7707         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
7708         parent.
7709
7710 2007-04-27  Wim Taymans  <wim@fluendo.com>
7711
7712         * gst/rtp/gstrtpilbcdepay.h:
7713         Fix mode property when specified as an arg.
7714
7715 2007-04-26  Edward Hervey  <edward@fluendo.com>
7716
7717         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7718         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7719         * docs/plugins/gst-plugins-good-plugins.hierarchy:
7720         * docs/plugins/inspect/plugin-osxaudio.xml:
7721         Add documentation for osxaudio plugin.
7722
7723 2007-04-26  Wim Taymans  <wim@fluendo.com>
7724
7725         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
7726         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
7727         (gst_rtspsrc_open), (gst_rtspsrc_close),
7728         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
7729         (gst_rtspsrc_pause):
7730         * gst/rtsp/gstrtspsrc.h:
7731         Protect state changes with a lock.
7732
7733         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
7734         (parse_line):
7735         * gst/rtsp/rtspconnection.h:
7736         Remove some unused stuff.
7737
7738 2007-04-26  Wim Taymans  <wim@fluendo.com>
7739
7740         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7741         Handle the case where there are exactly 0 bytes to read and the ioctl
7742         did not report an error. Fixes #433530.
7743
7744 2007-04-26  Wim Taymans  <wim@fluendo.com>
7745
7746         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
7747         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
7748         * gst/wavparse/gstwavparse.h:
7749         Apply DISCONT to buffers.
7750         Only apply timestamp to the first sample after a DISCONT, too many VBR
7751         files cause random jitter in the timestamps. Fixes #433119.
7752
7753 2007-04-25  Wim Taymans  <wim@fluendo.com>
7754
7755         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
7756         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
7757         (gst_rtp_dec_get_property):
7758         * gst/rtsp/gstrtpdec.h:
7759         Add dummy latency property to be backwards compat with rtpbin.
7760
7761         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
7762         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
7763         (gst_rtspsrc_stream_configure_transport),
7764         (gst_rtspsrc_parse_rtpinfo):
7765         * gst/rtsp/gstrtspsrc.h:
7766         Add latency property and configure in the session manager.
7767         Don't set invalid clock-base and seqnum-base on caps, some servers
7768         sometimes don't send them.
7769
7770 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
7771
7772         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
7773         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
7774           Double-check that RGB input caps are really RGBA caps (apparently
7775           the core doesn't always catch it if those caps aren't a subset of
7776           our template caps, also see #421543). Fixes #429319 in a way.
7777           Also, don't leak the pad template in the transform_caps function.
7778
7779         * tests/check/Makefile.am:
7780         * tests/check/elements/.cvsignore:
7781         * tests/check/elements/alphacolor.c: (setup_alphacolor),
7782         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
7783         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
7784         (GST_START_TEST), (alphacolor_suite):
7785           Add some basic unit tests for alphacolor.
7786
7787 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
7788
7789         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
7790           If we get a fatal flow return in the loop function, first post the
7791           error message and only then send the EOS event downstream, otherwise
7792           applications might get an eos message before the error message and
7793           think everything was ok (related to #429319).
7794
7795 2007-04-25  Wim Taymans  <wim@fluendo.com>
7796
7797         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
7798         Read the channel byte as an unsigned byte.
7799
7800 2007-04-25  Wim Taymans  <wim@fluendo.com>
7801
7802         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
7803         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
7804         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
7805         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
7806         (gst_rtp_gsm_depay_setcaps):
7807         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
7808         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
7809         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
7810         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
7811         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
7812         (gst_ilbc_depay_get_property):
7813         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
7814         * gst/rtp/gstrtpmp4adepay.c:
7815         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
7816         (gst_rtp_pcma_depay_setcaps):
7817         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
7818         (gst_rtp_pcmu_depay_setcaps):
7819         Make sure we configure the clock_rate in the baseclass in the setcaps
7820         function. Fixes #431282.
7821
7822 2007-04-25  Wim Taymans  <wim@fluendo.com>
7823
7824         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
7825         (gst_rtspsrc_stream_free), (request_pt_map),
7826         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
7827         * gst/rtsp/gstrtspsrc.h:
7828         Parse server address from SDP.
7829         Hook up a udpsink to send RTCP back to the server.
7830
7831         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7832         * gst/rtsp/rtsptransport.h:
7833         Add some docs.
7834
7835 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
7836
7837         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
7838           Make header field check conditional. Fixes #433135
7839
7840 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
7841
7842         * docs/plugins/Makefile.am:
7843         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7844         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7845         * docs/plugins/inspect/plugin-alphacolor.xml:
7846         * gst/alpha/Makefile.am:
7847         * gst/alpha/gstalphacolor.c:
7848         * gst/alpha/gstalphacolor.h:
7849           Add minimal docs blurb to alphacolor; split out headers into
7850           separate header file for gtk-doc.
7851
7852 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
7853
7854         * gst/debug/progressreport.c: (gst_progress_report_report):
7855           Don't try to post NULL message (in case we can't query upstream
7856           position or duration).
7857
7858 2007-04-18  Michael Smith  <msmith@fluendo.com>
7859
7860         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
7861         (gst_cutter_get_caps):
7862         * gst/cutter/gstcutter.h:
7863           Fix some of the most obvious bugs in cutter. Now doesn't leak
7864           everything if input is silent.
7865
7866 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
7867
7868         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
7869         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
7870         * gst/wavenc/gstwavenc.h:
7871         Wav apparently only supports width==GST_ROUND_UP(depth), everything
7872         else results in a invalid block align and invalid files.
7873
7874 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
7875
7876         Patch by: Snaik <snaik32 gmail com>
7877
7878         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
7879           Add missing break statement for BOX_HORIZONTAL case.
7880
7881 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
7882
7883         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
7884
7885         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
7886         Use correct format strings for integer types.
7887
7888 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
7889
7890         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
7891         (gst_wavparse_create_sourcepad):
7892         Use gst_riff_create_audio_template_caps () instead of the local caps.
7893         This makes updates of the local caps unecessary whenever libgstriff
7894         gets support for new formats.
7895
7896 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
7897
7898         Patch by: Brian Cameron  <brian.cameron at sun dot com>
7899
7900         * sys/sunaudio/gstsunaudio.c:
7901         * sys/sunaudio/gstsunaudiomixer.c:
7902         * sys/sunaudio/gstsunaudiomixer.h:
7903         * sys/sunaudio/gstsunaudiomixerctrl.c:
7904         * sys/sunaudio/gstsunaudiomixerctrl.h:
7905         * sys/sunaudio/gstsunaudiomixertrack.h:
7906         * sys/sunaudio/gstsunaudiosink.c:
7907         * sys/sunaudio/gstsunaudiosink.h:
7908         * sys/sunaudio/gstsunaudiosrc.c:
7909         * sys/sunaudio/gstsunaudiosrc.h:
7910           Fix and/or update copyright attributions (#430228).
7911
7912 2007-04-13  Wim Taymans  <wim@fluendo.com>
7913
7914         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7915         Fix docs.
7916
7917         * gst/rtsp/URLS:
7918         Add some more example urls.
7919
7920         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
7921         (gst_rtp_dec_chain_rtp):
7922         Better debugging.
7923
7924         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
7925         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
7926         (gst_rtspsrc_parse_rtpinfo):
7927         Remove unused code.
7928
7929 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
7930
7931         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
7932         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
7933         (gst_wavparse_stream_data):
7934           Relax the audio/mpeg caps again and add FIXME: comment.
7935
7936 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
7937
7938         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
7939         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
7940         (gst_wavparse_stream_data):
7941         * gst/wavparse/gstwavparse.h:
7942           More sanity check for the header fields. Fix type for 'rate' header
7943           field.
7944
7945 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
7946
7947         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
7948         (gst_icydemux_unicodify):
7949           If the metadata strings we get in the stream are not UTF-8, try to
7950           interpret them according to the character encodings specified in the
7951           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
7952           only fall back to locale/ISO-8859-1 if those aren't set or don't
7953           work. Should fix #428901.
7954
7955 2007-04-12  Wim Taymans  <wim@fluendo.com>
7956
7957         * gst/rtp/gstrtph264depay.c:
7958         Use the proper sync word for SPS and PPS.
7959
7960 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
7961
7962         * gst/rtp/Makefile.am:
7963         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
7964           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
7965         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
7966           Add a simple hashing implementation that we can use to generate
7967           a 24-bit ident value based on the codebooks for vorbis and theora.
7968         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
7969           gst_rtp_theora_pay_handle_buffer):
7970         * gst/rtp/gstrtpvorbisdepay.c
7971           (gst_rtp_vorbis_depay_parse_configuration,
7972           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
7973         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
7974           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
7975           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
7976           Use the hashing function, ensuring that the same codebooks result
7977           in the same ident and thus the same SDP description.
7978           Various log fixes/changes.
7979
7980 2007-04-12  Wim Taymans  <wim@fluendo.com>
7981
7982         Patch by: jerry tan <jerry dot tan at sun dot com>
7983
7984         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
7985         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
7986         application's responsibility to make sure it open the device once.
7987         Remove a careless error if AUDIODEV is set. Fixes #392620.
7988
7989 2007-04-12  Wim Taymans  <wim@fluendo.com>
7990
7991         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
7992         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
7993         * gst/rtsp/gstrtpdec.h:
7994         Make backward compat with rtpbin by adding the request-pt-map signals.
7995
7996         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
7997         (new_session_pad), (request_pt_map),
7998         (gst_rtspsrc_stream_configure_transport),
7999         (gst_rtspsrc_stream_configure_caps),
8000         (gst_rtspsrc_activate_streams):
8001         * gst/rtsp/gstrtspsrc.h:
8002         Implement request-pt-map signals instead of setting caps on the buffers
8003         for the session manager.
8004
8005 2007-04-11  Wim Taymans  <wim@fluendo.com>
8006
8007         * gst/udp/gstudp.c: (plugin_init):
8008         Register GstNetBuffer in plugin_init so that the type can be used from
8009         multiple threads without races.
8010
8011 2007-04-10  Wim Taymans  <wim@fluendo.com>
8012
8013         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
8014         (gst_rtp_amr_depay_process):
8015         Fix depayloader clock_rate and some cleanups.
8016
8017         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
8018         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
8019         * gst/rtp/gstrtph264depay.h:
8020         Don't push codec_data in the adapter because it might get flushed when
8021         we get a discont.
8022
8023         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
8024         Handle multiple AU per packet.
8025
8026         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
8027         (gst_rtp_sv3v_depay_plugin_init):
8028         Disable rank, this one does not work.
8029         Remove timestamping, base class does that.
8030
8031 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
8032
8033         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
8034           limit caps to the formats we announce in the template
8035
8036         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
8037         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
8038         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
8039           fix some crashers/asserts when dealing with broken files
8040
8041 2007-04-10  Wim Taymans  <wim@fluendo.com>
8042
8043         Patch by: Peter Kjellerstedt  <pkj at axis com>
8044
8045         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
8046         * gst/rtp/gstrtpL16depay.c:
8047         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
8048         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
8049         (gst_rtp_speex_depay_setcaps):
8050         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
8051         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
8052         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
8053         Fix some compiler warnings. Fixes #428182.
8054
8055 2007-04-06  Wim Taymans  <wim@fluendo.com>
8056
8057         * gst/rtsp/Makefile.am:
8058         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
8059         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
8060         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
8061         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
8062         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
8063         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
8064         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
8065         (create_rtcp), (gst_rtp_dec_request_new_pad),
8066         (gst_rtp_dec_release_pad):
8067         * gst/rtsp/gstrtpdec.h:
8068         * gst/rtsp/gstrtsp.c: (plugin_init):
8069         Morph RTPDec into something compatible with RTPBin as a fallback.
8070         Various other style fixes.
8071
8072         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
8073         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
8074         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
8075         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
8076         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
8077         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
8078         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
8079         * gst/rtsp/gstrtspsrc.h:
8080         Implement RTPBin session manager handling.
8081         Don't try to add empty properties to caps.
8082         Implement fallback session manager, handling.
8083         Don't combine errors from RTCP streams, just ignore them.
8084
8085         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
8086         * gst/rtsp/rtsptransport.h:
8087         Implement fallback session manager.
8088         Make RTPBin the default one when available.
8089
8090 2007-04-05  Wim Taymans  <wim@fluendo.com>
8091
8092         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
8093         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
8094         This element is ready to be autoplugged.
8095
8096 2007-04-05  Julien MOUTTE  <julien@moutte.net>
8097
8098         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
8099         Don't leave the offsets defined by upstream element on the
8100         compressed data buffer we are pushing downstream. Make them
8101         GST_BUFFER_OFFSET_NONE.
8102
8103 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
8104
8105         * gst/avi/README:
8106         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
8107         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
8108         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
8109         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
8110         (gst_avi_demux_calculate_durations_from_index),
8111         (gst_avi_demux_stream_header_push),
8112         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
8113         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
8114           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
8115
8116 2007-04-03  Wim Taymans  <wim@fluendo.com>
8117
8118         * gst/smpte/barboxwipes.c:
8119         Fix error as spotted by Snaik <snaik32 at gmail dot com>
8120
8121 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
8122
8123         * gst/wavparse/gstwavparse.c:
8124         Support audio/x-raw-float in wav files. This only works with
8125         plugins-base CVS, using an older version doesn't have any
8126         disadvantages though.
8127
8128 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
8129
8130         * configure.ac:
8131         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
8132         (gst_au_parse_parse_header), (gst_au_parse_chain):
8133         * gst/auparse/gstauparse.h:
8134         Revert last change as we don't want plugins-good to depend on
8135         plugins-base CVS now.
8136
8137 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
8138
8139         * configure.ac:
8140         Require gst-plugins-base CVS for audioconvert with non-native
8141         float support and width/depth fix in libgstriff.
8142
8143         Patch by: René Stadler <mail at renestadler dot de>
8144
8145         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
8146         (gst_au_parse_parse_header), (gst_au_parse_chain):
8147         * gst/auparse/gstauparse.h:
8148         Don't swap the floats ourself if they're not in native endianness.
8149         Instead let audioconvert handle this. Fixes #339838.
8150
8151 2007-03-29  Wim Taymans  <wim@fluendo.com>
8152
8153         * gst/rtp/gstasteriskh263.h:
8154         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
8155         (gst_rtp_h263p_depay_change_state):
8156         * gst/rtp/gstrtph263pdepay.h:
8157         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
8158         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
8159         (gst_rtp_h264_depay_change_state):
8160         * gst/rtp/gstrtph264depay.h:
8161         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
8162         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
8163         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
8164         Flush adapter on disconts.
8165
8166 2007-03-29  Wim Taymans  <wim@fluendo.com>
8167
8168         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
8169         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
8170         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
8171         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
8172         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
8173         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
8174         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
8175         (gst_rtp_mp4v_depay_process):
8176         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
8177         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
8178         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
8179         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
8180         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
8181         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
8182         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
8183         Use more efficient adapter and rtpbuffer methods when possible.
8184
8185 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
8186
8187         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
8188         (gst_wavenc_sink_setcaps):
8189         Correctly handle width!=depth input.
8190         * gst/wavparse/gstwavparse.c:
8191         Already export in the caps that width==8 uses unsigned samples and
8192         everything else uses signed samples.
8193
8194 2007-03-29  Wim Taymans  <wim@fluendo.com>
8195
8196         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
8197
8198         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
8199         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
8200         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
8201         (gst_dynudpsink_close):
8202         * gst/udp/gstdynudpsink.h:
8203         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8204         (gst_udpsrc_create), (gst_udpsrc_set_property),
8205         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
8206         * gst/udp/gstudpsrc.h:
8207         Rework the socket allocation a bit based on the sockfd argument so that
8208         it becomes usable.
8209         Add a closefd property to instruct the udp elements to close the custom
8210         file descriptors when going to READY. Fixes #423304.
8211         API:GstUDPSrc::closefd property
8212         API:GstDynUDPSink::closefd property
8213
8214 2007-03-29  Wim Taymans  <wim@fluendo.com>
8215
8216         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
8217
8218         * gst/rtp/Makefile.am:
8219         * gst/rtp/gstrtp.c: (plugin_init):
8220         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
8221         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
8222         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
8223         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
8224         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
8225         (gst_rtp_h264_pay_plugin_init):
8226         * gst/rtp/gstrtph264pay.h:
8227         Added H264 payloader. Fixes #423782.
8228
8229         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
8230         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
8231         Small fixes.
8232
8233 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
8234
8235         * gst/wavparse/gstwavparse.c:
8236         Actually support depths from 1 to 32, not only 8 to 32.
8237
8238 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
8239
8240         * gst/wavparse/gstwavparse.c:
8241         Add support for wav files containing audio/x-raw-int with random
8242         depths between 1 and 32 bits.
8243
8244 2007-03-28  Wim Taymans  <wim@fluendo.com>
8245
8246         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
8247
8248         * gst/rtp/Makefile.am:
8249         * gst/rtp/gstrtp.c: (plugin_init):
8250         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
8251         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
8252         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
8253         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
8254         (gst_rtp_mp4a_depay_get_property),
8255         (gst_rtp_mp4a_depay_change_state),
8256         (gst_rtp_mp4a_depay_plugin_init):
8257         * gst/rtp/gstrtpmp4adepay.h:
8258         Added MP4A-LATM depayloader. Fixes #417792.
8259
8260         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
8261         (gst_rtp_mp4v_depay_process):
8262         Fixup depayloader, setting codec_data, using more efficient adaptor and
8263         rtpbuffer handling.
8264
8265         * gst/rtsp/URLS:
8266         Add url to test above.
8267
8268 2007-03-25  Wim Taymans  <wim@fluendo.com>
8269
8270         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
8271         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
8272         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
8273         (gst_rtspsrc_media_to_caps),
8274         (gst_rtspsrc_stream_configure_transport),
8275         (gst_rtspsrc_stream_configure_caps),
8276         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
8277         * gst/rtsp/gstrtspsrc.h:
8278         Handle default clock-rates for static payload types, rearrange stuff so
8279         that the rtpmap field in the sdp can override the defaults.
8280         Parse RTP-Info field to get the seqnum and timebase fields that should
8281         go in the caps.
8282         Delay configuring caps after we got the RTP-Info from the PLAY reply from
8283         the server. 
8284
8285 2007-03-22  Wim Taymans  <wim@fluendo.com>
8286
8287         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
8288
8289         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
8290         Accept complex pipeline descriptions as an audio profile instead of just
8291         a single element. Fixes #420658.
8292
8293 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8294
8295         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
8296           Rename registered type in preparation of GstTagDemux moving to
8297           -base at some point in the future.
8298
8299 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
8300
8301         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
8302           Streaming mode fixes: don't unref buffer we don't own any longer;
8303           remove bogus adapter flush. Fixes #419338.
8304
8305 2007-03-17  David Schleef  <ds@schleef.org>
8306
8307         * REQUIREMENTS: Change the format to key/value, add a bunch of
8308           information, remove a bunch of requirements that are for
8309           other GStreamer packages.
8310
8311 2007-03-17  David Schleef  <ds@schleef.org>
8312
8313         * REQUIREMENTS: Fix a few things.  This file really needs a
8314         good once-over.
8315
8316 2007-03-15  Edward Hervey  <edward@fluendo.com>
8317
8318         * sys/Makefile.am:
8319         Don't forget to distribute the sys/osxaudio/ directory.
8320
8321 2007-03-15  Edward Hervey  <edward@fluendo.com>
8322
8323         * configure.ac:
8324         * sys/Makefile.am:
8325         * sys/osxaudio/Makefile.am:
8326         * sys/osxaudio/gstosxaudio.c:
8327         * sys/osxaudio/gstosxaudiosink.c:
8328         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
8329         (gst_osx_audio_sink_getcaps),
8330         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
8331         * sys/osxaudio/gstosxaudiosrc.c:
8332         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
8333         (gst_osx_audio_src_create_ringbuffer):
8334         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
8335         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
8336         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
8337         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
8338         * sys/osxaudio/gstosxringbuffer.h:
8339         Activate osxaudio in gst-plugins-good with proper build setup.
8340         Add inlined documentation.
8341         Fix debug statements
8342         Fix ringbuffer when pausing.
8343         Fixes #323471
8344
8345 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
8346         * gst/rtp/gstrtppcmapay.c:
8347         * gst/rtp/gstrtppcmapay.h:
8348         * gst/rtp/gstrtppcmupay.c:
8349         * gst/rtp/gstrtppcmupay.h:
8350         Ported mulaw and alaw payloaders to use new base class
8351
8352 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8353
8354         * po/af.po:
8355         * po/az.po:
8356         * po/cs.po:
8357         * po/en_GB.po:
8358         * po/it.po:
8359         * po/nl.po:
8360         * po/or.po:
8361         * po/sq.po:
8362         * po/sr.po:
8363         * po/sv.po:
8364         * po/uk.po:
8365         * po/vi.po:
8366           Update translations.
8367
8368 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
8369
8370         * configure.ac:
8371           Fix string replace error (AG_AG_GST_* => AG_GST_*).
8372
8373 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
8374
8375         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
8376           Fix handling of -1 values for start and stop values when seeking,
8377           and SEEK_CUR+SEEK_END here as well.
8378
8379 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
8380
8381         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
8382           Fix handling of -1 values for start and stop values when seeking, 
8383           and SEEK_CUR+SEEK_END.
8384
8385 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
8386
8387         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
8388           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
8389           the image format a variable-length NUL-terminated string; in
8390           versions before that the image format is a fixed-length string of
8391           3 characters (see #348644 for a sample tag).
8392           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
8393
8394 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
8395
8396         * win32/MANIFEST:
8397         Add new project files to MANIFEST.
8398         * win32/vs6/libgstaudiofx.dsp:
8399         * win32/vs6/libgstrtp.dsp:
8400         * win32/vs6/libgstrtsp.dsp:
8401         Update project files.
8402         
8403 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
8404
8405         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
8406         (gst_avi_demux_parse_index):
8407         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
8408         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
8409           Printf format fixes; also add some missing quotes in translated
8410           strings. Fixes #416728 and #416727.
8411
8412 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
8413
8414         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
8415           Tim and I can't think of any reason the child audio sink needs to 
8416           be set back to NULL after successfully determining that it can 
8417           reach READY - it gets immediately set back to READY by the caller
8418           anyway, causing an unnecessary close/open of any audio devices
8419           involved.
8420
8421 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
8422
8423         * po/LINGUAS:
8424         * po/ja.po:
8425           Add ja.po file from #377306.
8426
8427 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
8428
8429         * sys/sunaudio/gstsunaudio.c: (plugin_init):
8430         * sys/sunaudio/gstsunaudiomixertrack.c:
8431         (gst_sunaudiomixer_track_new):
8432           Actually translate sunaudio mixer track labels instead of just
8433           marking the strings as translatable (#377306); clean up weird
8434           label string mapping code that serves no apparent purpose. Also
8435           set the 'untranslated-label' property when creating mixer tracks
8436           if the GstMixerTrack base class supports this.
8437
8438         * tests/check/Makefile.am:
8439         * tests/check/elements/.cvsignore:
8440         * tests/check/elements/sunaudio.c: (GST_START_TEST),
8441         (sunaudio_suite):
8442           Very minimalistic unit test for sunaudiomixer element (compiles, but not
8443           actually tested on a system where sunaudiomixer is available).
8444
8445 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
8446
8447         * tests/check/Makefile.am:
8448         Re-enable the states test and see if it works on the buildbots.
8449
8450 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
8451
8452         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
8453         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
8454         (gst_dvdec_change_state):
8455         * ext/dv/gstdvdec.h:
8456         Infer pixel-aspect-ratio from the video frame format if it isn't
8457         provided by the container, as happens when playing DV from AVI
8458         or Quicktime containers.
8459
8460         Patch by: Wim Taymans <wim@fluendo.com>
8461         Fixes #380944
8462
8463 2007-03-09  Wim Taymans  <wim@fluendo.com>
8464
8465         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
8466         When activated, remove the udpsrc timeout, we have dataflow and timeouts
8467         will later be handled by the jitterbuffer.
8468
8469 2007-03-09  Wim Taymans  <wim@fluendo.com>
8470
8471         * ext/taglib/gstid3v2mux.cc:
8472         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
8473         Fixes #414496.
8474         
8475         Patch by: Alex Lancaster <alexl at users sourceforge net>
8476
8477 2007-03-09  Wim Taymans  <wim@fluendo.com>
8478
8479         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
8480         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
8481         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
8482         (gst_avi_demux_chain):
8483         Fix stream position reporting after a seek. Fixes #416445.
8484
8485 2007-03-08  Wim Taymans  <wim@fluendo.com>
8486
8487         Patch by: René Stadler <mail at renestadler dot de>
8488
8489         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
8490         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
8491         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
8492         Make avidemux accept optional header chunks in any order.
8493         Fixes #415446.
8494
8495 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
8496
8497         * tests/check/Makefile.am:
8498         Disable the states check until the remaining Valgrind errors
8499         are fixed or suppressed.
8500
8501 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
8502
8503         * tests/check/elements/.cvsignore:
8504           Add audiodynamic check to .cvsignore
8505
8506 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
8507
8508         reviewed by: Stefan Kost  <ensonic@users.sf.net>
8509
8510         * gst/audiofx/Makefile.am:
8511         * gst/audiofx/audiodynamic.c:
8512         (gst_audio_dynamic_characteristics_get_type),
8513         (gst_audio_dynamic_mode_get_type),
8514         (gst_audio_dynamic_set_process_function),
8515         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
8516         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
8517         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
8518         (gst_audio_dynamic_transform_hard_knee_compressor_int),
8519         (gst_audio_dynamic_transform_hard_knee_compressor_float),
8520         (gst_audio_dynamic_transform_soft_knee_compressor_int),
8521         (gst_audio_dynamic_transform_soft_knee_compressor_float),
8522         (gst_audio_dynamic_transform_hard_knee_expander_int),
8523         (gst_audio_dynamic_transform_hard_knee_expander_float),
8524         (gst_audio_dynamic_transform_soft_knee_expander_int),
8525         (gst_audio_dynamic_transform_soft_knee_expander_float),
8526         (gst_audio_dynamic_transform_ip):
8527         * gst/audiofx/audiodynamic.h:
8528         * gst/audiofx/audiofx.c: (plugin_init):
8529         Add new audiodynamic element which can act as a compressor or
8530         expander. Supported are hard-knee and soft-knee operation modes with
8531         user-specified ratio and threshold.
8532         Attack and release parameters are not yet implemented but will follow.
8533         * docs/plugins/Makefile.am:
8534         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8535         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8536         * docs/plugins/gst-plugins-good-plugins.args:
8537         * docs/plugins/inspect/plugin-audiofx.xml:
8538         Integrate audiodynamic into the docs.
8539         * tests/check/Makefile.am:
8540         * tests/check/elements/audiodynamic.c: (setup_dynamic),
8541         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
8542         Add unit test for audiodynamic.
8543
8544 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
8545
8546         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
8547         Free handles that we allocated when exiting via the error paths.
8548
8549 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
8550
8551         * gst/level/gstlevel.c: (gst_level_class_init),
8552         (gst_level_set_caps), (gst_level_start), (gst_level_event),
8553         (gst_level_transform_ip):
8554         * gst/level/gstlevel.h:
8555           Resolve message timestamps against the playback segment.
8556
8557 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
8558
8559         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
8560         (gst_id3demux_sink_activate):
8561           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
8562           caps passed to it (previously one code path assumed it took ownership
8563           while another one assumed it didn't, while in fact it sometimes did and
8564           sometimes didn't ...).
8565
8566         * configure.ac:
8567         * tests/files/Makefile.am:
8568         * tests/files/id3-407349-1.tag:
8569         * tests/files/id3-407349-2.tag:
8570           Add directory where data for unit tests can be stored.
8571
8572         * tests/Makefile.am:
8573         * tests/check/Makefile.am:
8574         * tests/check/elements/.cvsignore:
8575         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
8576         (read_tags_from_file), (run_check_for_file),
8577         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
8578           Add unit test for id3demux, and in particular for bug #407349. Only
8579           testing pull-mode for now; push mode doesn't work yet because the test
8580           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
8581
8582 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
8583
8584         * tests/check/Makefile.am:
8585           Add missing backslash at end of line.
8586
8587 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
8588
8589         Trigger rebuild.
8590
8591 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
8592
8593         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
8594         * gst/id3demux/id3tags.h:
8595         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
8596         (parse_obsolete_tdat_frame):
8597           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
8598           the four-digit number will be interpreted as a year, whereas it is
8599           month and day in DDMM format. Instead, parse TDAT frames and fix up
8600           the date in the GST_TAG_DATE tag later if we also extracted a year.
8601           Fixes #407349.
8602
8603 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
8604
8605         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
8606         (gst_switch_commit_new_kid):
8607         Fix up the dispose logic so it doesn't leak, and fix setting of 
8608         the child state so that we don't set a child to our current state 
8609         just as we are changing it to something else.
8610
8611 2007-03-06  Wim Taymans  <wim@fluendo.com>
8612
8613         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
8614         (gst_goom_chain):
8615         * gst/goom/gstgoom.h:
8616         Document, fix and improve goom adapter behaviour.
8617         Fixes #407006.
8618
8619 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
8620
8621         * ext/esd/esdsink.c: (gst_esdsink_open):
8622         Unref static pad template after using it.
8623
8624 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
8625
8626         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
8627         (gst_switch_commit_new_kid):
8628         Fix up the reference counting of the child elements.
8629
8630 2007-03-05  Wim Taymans  <wim@fluendo.com>
8631
8632         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
8633         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
8634         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
8635         Fix encoding-name case.
8636
8637 2007-03-05  Wim Taymans  <wim@fluendo.com>
8638
8639         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
8640         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
8641         (gst_rtp_speex_depay_process):
8642         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
8643         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
8644         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
8645         (gst_rtp_speex_pay_change_state):
8646         * gst/rtp/gstrtpspeexpay.h:
8647         Fix speex (de)payloader. Fixes #358040.
8648
8649 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
8650
8651         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
8652         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
8653         Install fakesink in NULL by fixing some broken logic. This obviates
8654         the need to manually set _IS_SINK.
8655         Add some comments and remove a little cruft while I'm at it.
8656
8657 2007-03-05  Wim Taymans  <wim@fluendo.com>
8658
8659         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
8660         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
8661
8662 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
8663
8664         * po/POTFILES.in:
8665           Update.
8666
8667 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8668
8669         * tests/check/Makefile.am:
8670         Gah! Also disable gconfvideosink from the tests, otherwise
8671         it will instantiate autovideosink, and dfbvideosink and
8672         leak on the buildbots.
8673
8674 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8675
8676         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
8677         (gst_cdio_cdda_src_finalize):
8678         Make sure we always destroy our libcdio handle.
8679
8680 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8681
8682         * tests/check/Makefile.am:
8683         Disable autovideosink so the buildbots don't barf over memory
8684         leaked in the directfb sink.
8685
8686 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8687
8688         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
8689         Chain up in dispose
8690
8691 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8692
8693         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
8694         (gst_multipart_find_pad_by_mime):
8695         Use gst_pad_new_from_static_template instead of
8696         static_pad_template_get+pad_new.
8697
8698 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8699
8700         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
8701         Catch the case where no clock has been set.
8702
8703 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8704
8705         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
8706         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
8707         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
8708         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
8709         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
8710         (gst_gconf_audio_src_finalize), (do_toggle_element):
8711         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
8712         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
8713         (do_toggle_element):
8714         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
8715         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
8716         (gst_gconf_video_src_finalize), (do_toggle_element):
8717         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
8718         (gst_switch_sink_reset), (gst_switch_sink_set_child):
8719         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
8720         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
8721         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
8722         (gst_shout2send_init), (gst_shout2send_finalize):
8723         * gst/debug/testplugin.c: (gst_test_class_init),
8724         (gst_test_finalize):
8725         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
8726         (gst_flxdec_dispose):
8727         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
8728         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
8729         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
8730         (gst_rtspsrc_finalize):
8731         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
8732         * gst/rtsp/rtspextwms.h:
8733         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
8734         (gst_smpte_finalize):
8735         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
8736         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
8737         (gst_udpsink_finalize):
8738         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
8739         (gst_wavparse_sink_activate):
8740         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
8741         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
8742         (gst_oss_src_finalize):
8743         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
8744         * sys/v4l2/gstv4l2object.h:
8745         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
8746         (gst_v4l2src_finalize):
8747         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
8748
8749         Fix a bunch of leaks shown by the newly-added states test.
8750
8751 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
8752
8753         * ext/dv/gstdvdec.c: (gst_dvdec_init):
8754         Use gst_pad_new_from_static_template instead of 
8755         static_pad_template_get+pad_new.
8756
8757 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
8758
8759         Patch by: Loïc Minier <lool+gnome at via ecp fr>
8760
8761         * ext/libcaca/Makefile.am:
8762         * gst/debug/Makefile.am:
8763           Don't mix tabs and spaces (#414168).
8764
8765 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
8766
8767         * tests/check/generic/.cvsignore:
8768           Ignore files to please buildbot.
8769
8770 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
8771
8772         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
8773         (gst_wavparse_stream_data):
8774           Unbreak my previous commit (swapped nominator & denominator). Tim,
8775           thanks for spotting.
8776
8777 2007-03-02  Wim Taymans  <wim@fluendo.com>
8778
8779         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
8780         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
8781         (gst_cdio_cdda_src_finalize):
8782         Small code cleanups.
8783         Don't use pad_alloc as the base class cannot deal with the error codes.
8784
8785 2007-03-02  Wim Taymans  <wim@fluendo.com>
8786
8787         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
8788         (gst_udpsrc_create):
8789         Fix doc.
8790
8791 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
8792
8793         Patch by: René Stadler <mail@renestadler.de>
8794
8795         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
8796         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
8797         (gst_wavparse_stream_data):
8798           Handle rounding better to not drop last sample frame. Fixes #356692
8799
8800 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
8801
8802         * tests/check/Makefile.am:
8803         Disable cacasink from the states check too - it also calls exit(1)
8804         on us when it can't find a terminal to talk to.
8805
8806 2007-03-02  Wim Taymans  <wim@fluendo.com>
8807
8808         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
8809
8810         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
8811         (gst_udpsrc_create), (gst_udpsrc_set_property),
8812         (gst_udpsrc_get_property):
8813         * gst/udp/gstudpsrc.h:
8814         Add support to strip proprietary headers. Fixes #350296.
8815
8816 2007-03-02  Wim Taymans  <wim@fluendo.com>
8817
8818         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
8819         Fix compilation.
8820
8821 2007-03-02  Wim Taymans  <wim@fluendo.com>
8822
8823         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
8824
8825         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
8826         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
8827         (gst_rtp_mp2t_depay_set_property),
8828         (gst_rtp_mp2t_depay_get_property):
8829         * gst/rtp/gstrtpmp2tdepay.h:
8830         Add support to strip off proprietary headers. Fixes #350278.
8831
8832 2007-03-02  Wim Taymans  <wim@fluendo.com>
8833
8834         * ext/hal/hal.c:
8835         Fix compilation.
8836
8837 2007-03-02  Wim Taymans  <wim@fluendo.com>
8838
8839         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
8840         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
8841         (gst_sunaudiosrc_open):
8842         * sys/sunaudio/gstsunaudiosrc.h:
8843         Remove device-name from GstSunAudioSrc. Fixes #412597.
8844
8845 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
8846
8847         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
8848         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
8849         Having NULL as UDI previously selected the default sink/src. Change
8850         this back but mention it in the debug output.
8851         * ext/hal/hal.c: (gst_hal_get_alsa_element),
8852         (gst_hal_get_oss_element), (gst_hal_get_string),
8853         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
8854         (gst_hal_get_audio_src):
8855         * ext/hal/hal.h:
8856         Refactor a bit, check all error conditions, greatly improve debugging
8857         and fix some possible memory leaks. Also implement OSS support
8858         and allow specifying an UDI that points to a real device. For this the
8859         child device which supports ALSA (preferred) or OSS is used.
8860         As a side effect this makes it impossible now to get a alsasink in
8861         halaudiosrc and a alsasrc in halaudiosink.
8862
8863 2007-03-01  Wim Taymans  <wim@fluendo.com>
8864
8865         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
8866         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
8867         Errors from the udp sources are not fatal unless all of them are in
8868         error.
8869
8870 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
8871
8872         * tests/check/Makefile.am:
8873         Disable aasink in the states test. I suspect this is the element that
8874         is calling exit(1) when it can't proceed.
8875
8876 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
8877
8878         * tests/check/Makefile.am:
8879         Draw plugins in from the build tree sys/ dir, rather than picking
8880         up the already installed versions.
8881
8882 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8883
8884         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
8885         Error out correctly when getting xcontext fails.
8886
8887 2007-03-01  Wim Taymans  <wim@fluendo.com>
8888
8889         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
8890         Make state change to PAUSED NO_PREROLL because that's what it will be in
8891         the future and rtspsrc relies on it.
8892
8893         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
8894         (gst_rtspsrc_change_state):
8895         Don't error out when we don't get an error from the state change
8896         function.
8897
8898 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
8899
8900         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
8901         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
8902           Check if the device UDI is set before trying to query HAL
8903           about it and give a useful error message if it wasn't set.
8904         * ext/hal/hal.c: (gst_hal_get_string):
8905           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
8906           gives an assertion failure in D-Bus when running with
8907           DBUS_FATAL_WARNINGS=1.
8908
8909 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8910
8911         * configure.ac:
8912           Convert to new AG_GST style.
8913
8914 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8915
8916         * tests/check/Makefile.am:
8917         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
8918           add test for states
8919
8920 2007-02-28  Wim Taymans  <wim@fluendo.com>
8921
8922         * tests/check/elements/.cvsignore:
8923         Add new videofilter check to .cvsignore.
8924
8925 2007-02-28  Wim Taymans  <wim@fluendo.com>
8926
8927         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
8928         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
8929         (gst_avi_demux_loop), (gst_avi_demux_chain):
8930         Fix combined flow return. Fixes #412608.
8931
8932 2007-02-28  Wim Taymans  <wim@fluendo.com>
8933
8934         * gst/videofilter/Makefile.am:
8935         Dist header..
8936
8937 2007-02-28  Wim Taymans  <wim@fluendo.com>
8938
8939         * gst/videofilter/gstgamma.h:
8940         Add header too.
8941
8942 2007-02-28  Wim Taymans  <wim@fluendo.com>
8943
8944         Patch by: Mark Nauwelaerts <manauw at skynet be>
8945
8946         * gst/videofilter/Makefile.am:
8947         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
8948         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
8949         (gst_gamma_get_property), (gst_gamma_calculate_tables),
8950         (oil_tablelookup_u8), (gst_gamma_set_caps),
8951         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
8952         Port gamma filter to 0.10. Fixes #412704.
8953
8954         * tests/check/Makefile.am:
8955         * tests/check/elements/videofilter.c: (setup_filter),
8956         (cleanup_filter), (check_filter), (GST_START_TEST),
8957         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
8958         Add unit tests for videofilters.
8959
8960 2007-02-28  Wim Taymans  <wim@fluendo.com>
8961
8962         * gst/rtsp/URLS:
8963         Add another interesting test url.
8964
8965         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
8966         Don't allow getting header fields from data packets.
8967
8968 2007-02-28  Michael Smith  <msmith@fluendo.com>
8969
8970         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
8971         (gst_shout2send_init), (gst_shout2send_start),
8972         (gst_shout2send_set_property), (gst_shout2send_get_property):
8973         * ext/shout2/gstshout2.h:
8974           Add a property for username.
8975
8976 2007-02-27  Christian Schallerr <christian@fluendo.com>
8977
8978         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
8979
8980 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
8981
8982         * gst/rtsp/Makefile.am:
8983         Fix make check too.
8984
8985 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
8986
8987         * gst/rtsp/base64.c: (util_base64_encode):
8988         * gst/rtsp/base64.h:
8989         Commit missing files for base64 encoding.
8990
8991 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
8992
8993         Patch by: Loïc Minier <lool+gnome at via ecp fr>
8994
8995         * configure.ac:
8996         * ext/annodex/Makefile.am:
8997         * ext/jpeg/Makefile.am:
8998         * ext/speex/Makefile.am:
8999         * gst/alpha/Makefile.am:
9000         * gst/cutter/Makefile.am:
9001         * gst/debug/Makefile.am:
9002         * gst/effectv/Makefile.am:
9003         * gst/goom/Makefile.am:
9004         * gst/level/Makefile.am:
9005         * gst/smpte/Makefile.am:
9006         * gst/videofilter/Makefile.am:
9007           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
9008
9009 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
9010
9011         * gst/rtsp/Makefile.am:
9012         * gst/rtsp/rtspconnection.c: (append_auth_header),
9013         (rtsp_connection_send), (rtsp_connection_set_auth):
9014         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
9015         from icecast to replace it. Relicensed from GPL courtesy of Mike
9016         Smith.
9017
9018 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
9019
9020         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
9021         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
9022         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
9023         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
9024         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
9025         (gst_rtspsrc_uri_set_uri):
9026         * gst/rtsp/gstrtspsrc.h:
9027         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9028         (append_auth_header), (rtsp_connection_send),
9029         (rtsp_connection_free), (rtsp_connection_set_auth):
9030         * gst/rtsp/rtspconnection.h:
9031         * gst/rtsp/rtspdefs.h:
9032         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
9033         * gst/rtsp/rtspurl.h:
9034
9035         Implement simple Basic Authentication support so that urls like
9036         rtsp://user:pass@hostname/rtspstream work on hosts that require
9037         authentication.
9038
9039 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
9040
9041         * sys/v4l2/gstv4l2object.c:
9042         * sys/v4l2/gstv4l2tuner.c:
9043         * sys/v4l2/v4l2_calls.c:
9044         Fix segfault when oppening a radio device.
9045         
9046 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
9047
9048         * gst/level/gstlevel.c: (gst_level_set_caps),
9049         (gst_level_transform_ip):
9050         * sys/v4l2/README:
9051         * tests/check/elements/level.c: (GST_START_TEST):
9052           Fix level for multi-channel case.
9053
9054 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
9055
9056         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
9057         (gst_level_transform_ip):
9058         * gst/level/gstlevel.h:
9059           Use function pointer for process function and add process functions
9060           for float audio.
9061
9062 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
9063
9064         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
9065         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
9066         (gst_v4l2src_capture_init):
9067           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
9068           fixes #407369
9069
9070 2007-02-18  Wim Taymans  <wim@fluendo.com>
9071
9072         * gst/rtp/Makefile.am:
9073         * gst/rtp/gstrtp.c: (plugin_init):
9074         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
9075         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
9076         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
9077         (gst_rtp_mp2t_pay_plugin_init):
9078         * gst/rtp/gstrtpmp2tpay.h:
9079         Added simple mpeg transport stream payloader.
9080
9081 2007-02-16  Wim Taymans  <wim@fluendo.com>
9082
9083         * gst/rtsp/URLS:
9084         Add example H264 rtsp url.
9085
9086         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
9087         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
9088         Don't convert values to lowercase or we might mess up base64 encoded
9089         properties.
9090
9091 2007-02-16  Wim Taymans  <wim@fluendo.com>
9092
9093         * gst/rtp/README:
9094         Fix case of string params.
9095
9096         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
9097         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
9098         Fix depayloader, support more packet types.
9099         Add sync codes to make sure the packetizer can do its job.
9100
9101         * gst/rtp/gstrtpmp4gdepay.c:
9102         * gst/rtp/gstrtpmp4gpay.c:
9103         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
9104         Fix caps case again.
9105
9106 2007-02-15  Wim Taymans  <wim@fluendo.com>
9107
9108         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
9109         Set right caps on output buffers.
9110
9111 2007-02-14  Wim Taymans  <wim@fluendo.com>
9112
9113         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
9114         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
9115         Clear stack allocated SDPMedia struct before calling _init() on it.
9116         Clarify this in the docs as well.
9117
9118 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
9119
9120         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
9121         (do_change_child):
9122         Don't reset the profile when going switching states, as it makes
9123         the element non-reusable.
9124
9125 2007-02-14  Wim Taymans  <wim@fluendo.com>
9126
9127         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
9128         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
9129         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
9130         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
9131         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
9132         (sdp_parse_line):
9133         * gst/rtsp/sdpmessage.h:
9134         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
9135         Fix memory management of SDP messages. Fixes #407793.
9136
9137 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
9138
9139         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
9140
9141         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
9142         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
9143
9144 2007-02-14  Wim Taymans  <wim@fluendo.com>
9145
9146         Patch by: jp.liu <jp_liu at astrocom dot cn>
9147
9148         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
9149         Fix parsing of password field in url. Fixes #407797.
9150
9151 2007-02-14  Wim Taymans  <wim@fluendo.com>
9152
9153         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
9154         (gst_wavparse_reset), (gst_wavparse_init),
9155         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
9156         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
9157         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
9158         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
9159         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
9160         (gst_wavparse_loop), (gst_wavparse_chain),
9161         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
9162         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
9163         (plugin_init):
9164         * gst/wavparse/gstwavparse.h:
9165         Update docs.
9166         Use boilerplate.
9167         Various code cleanups.
9168         When the bitrate is not known (bps == 0 or compressed formats) let
9169         downstream element guestimate the duration and position and don't
9170         generate timestamps or durations. Fixes #405213.
9171         Fix EOS and ERROR conditions in chain mode, we just need to forward the
9172         error flowreturn upstream.
9173
9174 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
9175
9176         * ext/gconf/Makefile.am:
9177         * ext/gconf/gconf.c: (gst_gconf_get_string),
9178         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
9179         (gst_gconf_render_bin_with_default):
9180         * ext/gconf/gconf.h:
9181         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
9182         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
9183         (gst_gconf_audio_sink_dispose), (do_change_child),
9184         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
9185         (cb_change_child), (gst_gconf_audio_sink_change_state):
9186         * ext/gconf/gstgconfaudiosink.h:
9187         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
9188         (gst_switch_sink_class_init), (gst_switch_sink_reset),
9189         (gst_switch_sink_init), (gst_switch_sink_dispose),
9190         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
9191         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
9192         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
9193         * ext/gconf/gstswitchsink.h:
9194         * gst/autodetect/gstautoaudiosink.c:
9195         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
9196         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
9197         (gst_auto_audio_sink_detect):
9198         * gst/autodetect/gstautovideosink.c:
9199         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
9200         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
9201         (gst_auto_video_sink_detect):
9202         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
9203         and a child that implements the GConf key monitoring. The end goal of
9204         this is an audio sink that can be changed on the fly, but at the 
9205         moment it still only changes on the next READY transition.
9206
9207 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
9208
9209         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
9210         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
9211         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
9212         (gst_avi_demux_calculate_durations_from_index),
9213         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
9214         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
9215         (gst_avi_demux_loop):
9216           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
9217
9218 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
9219
9220         * configure.ac:
9221         * docs/plugins/Makefile.am:
9222           Add crossreferences to glib/gobject/gstream docs.
9223
9224 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
9225
9226         * gst/monoscope/Makefile.am:
9227         * gst/monoscope/gstmonoscope.c:
9228           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
9229           (but no LIBS, since we only use defines from the headers).
9230
9231 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
9232
9233         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
9234
9235         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
9236         (gst_wavparse_stream_data):
9237           Fix massive memory leak when operating in streaming mode due to
9238           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
9239           Fixes #407057.
9240
9241 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
9242
9243         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
9244         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
9245         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
9246         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
9247         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
9248         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
9249         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
9250         (gst_avi_demux_calculate_durations_from_index),
9251         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
9252         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
9253         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
9254         * gst/avi/gstavidemux.h:
9255           Save some memory (8%) by repacking the index entry structure (more to
9256           come). Add more FIXMEs to questionable parts.
9257
9258 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
9259
9260         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
9261         (gst_v4l2src_get_caps):
9262         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
9263         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
9264         (gst_v4l2src_capture_init):
9265           More FIXME comments and messaging changes.
9266
9267 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
9268
9269         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
9270         (gst_goom_change_state):
9271         * gst/goom/gstgoom.h:
9272           Improved docs and use GST_DEBUG_FUNCPTR.
9273
9274         * gst/level/gstlevel.c: (gst_level_class_init):
9275           Use GST_DEBUG_FUNCPTR.
9276
9277         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
9278         (gst_monoscope_chain), (gst_monoscope_change_state):
9279           Improved docs source cleanups.
9280
9281 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
9282
9283         * gst/debug/Makefile.am:
9284         * gst/debug/gstdebug.c: (plugin_init):
9285         * gst/debug/gstpushfilesrc.c:
9286         * gst/debug/gstpushfilesrc.h:
9287           Add code for a pushfilesrc element that implements a pushfile:// URI
9288           handler, to make debugging push-mode operation of demuxer/decoders
9289           that support both easier in connection with seek/playbin/etc.
9290           The element isn't registered at the moment.
9291
9292 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
9293
9294         * gst/avi/gstavimux.c:
9295           Comment a #if 0 in caps template definition as VS6 seems to 
9296         do not support it.
9297         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
9298           Use gst_guint64_to_gdouble for conversion.
9299         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
9300           Move variables declaration before the first instruction.
9301         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
9302           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
9303           And don't include netdb.h for G_OS_WIN32
9304         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
9305           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
9306           by VS6 then use an other way to initialize SDPMedia structure.
9307         * gst/udp/gstdynudpsink.h:
9308         * gst/udp/gstdynudpnetutils.h:
9309           Do not include <sys/time.h> for G_OS_WIN32
9310         * gst/udp/gstudpsrc.c:
9311           Define socklen_t as int for G_OS_WIN32
9312         * win/common/config.h.in:
9313           Undef HAVE_NETINET_IN_H
9314         * win32/vs6/gst_plugins_good.dsw:
9315         * win32/vs6/libgstrtp.dsp:
9316         * win32/vs6/libgstrtsp.dsp:
9317         * win32/vs6/libgstautogen.dsp:
9318         * win32/vs6/libgstaudiofx.dsp:
9319         * win32/vs6/libgstudp.dsp:
9320           Add and update project files.
9321         * win32/common/gstudp-enumtypes.c:
9322         * win32/common/gstudp-enumtypes.h:
9323           Add a copy of udp enumtypes to win32/common as in core 
9324           and base.
9325         
9326 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
9327
9328         * configure.ac:
9329           Activate monoscope when building with --enable-experimental. Fix
9330           --enable-external configure switch description.
9331
9332         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
9333         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
9334           Help gst-indent.
9335
9336 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
9337
9338         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
9339           Explicitly cast result of pointer arithmetic to integer in order to
9340           avoid compiler warnings on some 64-bit systems. Should fix #406018.
9341
9342 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
9343
9344         * gst/debug/progressreport.c:
9345           Some more docs.
9346
9347 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
9348
9349         * docs/plugins/inspect/plugin-rtp.xml:
9350           Update for new elements.
9351
9352         * gst/debug/progressreport.h:
9353           Commit newly-created header file as well.
9354
9355 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
9356
9357         * docs/plugins/Makefile.am:
9358         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9359         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9360         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9361         * gst/debug/Makefile.am:
9362         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
9363         (gst_progress_report_do_query), (gst_progress_report_report):
9364           Make progressreport element post messages with the current progress
9365           on the bus. Also add some basic docs for it.
9366
9367 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
9368
9369         * ext/hal/hal.c: (gst_hal_get_string):
9370         * ext/hal/hal.h:
9371           Some small cleanups; deal with errors when parsing the HAL ALSA
9372           capabilities a bit better.
9373
9374 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
9375
9376         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
9377           Let's try this again and use the right cast this time.
9378
9379 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
9380
9381         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
9382           Add cast to avoid compiler warnings with older GLib versions
9383           where the nick/name members in GEnumValue are not declared as
9384           constant strings.
9385
9386 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
9387
9388         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
9389         (gst_gconf_render_bin_from_key),
9390         (gst_gconf_get_default_audio_sink):
9391         * ext/gconf/gconf.h:
9392         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
9393         (do_toggle_element), (gst_gconf_audio_sink_set_property),
9394         (gst_gconf_audio_sink_get_property):
9395           In gconfaudiosink, get the right key as the old key in do_toggle
9396           (ie. one dependent on the profile selected). Log some more stuff so
9397           we can see what's actually going on.
9398
9399 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
9400
9401         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
9402         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
9403         (gst_audio_amplify_set_process_function),
9404         (gst_audio_amplify_setup):
9405         * gst/audiofx/audioamplify.h:
9406         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
9407         (gst_audio_invert_class_init), (gst_audio_invert_setup):
9408         * gst/audiofx/audioinvert.h:
9409         Some small cleanups and port both elements to the new GstAudioFilter
9410         base class to save a few lines of common code.
9411         * gst/audiofx/Makefile.am:
9412         Link against libgstaudio for the above changes
9413
9414 2007-01-29  Wim Taymans  <wim@fluendo.com>
9415
9416         * tests/check/elements/.cvsignore:
9417         Some more ignores.
9418
9419 2007-01-26  Wim Taymans  <wim@fluendo.com>
9420
9421         Patch by: charles <charlesg3 at gmail dot com>
9422
9423         * ext/shout2/gstshout2.c: (gst_shout2send_init),
9424         (set_shout_metadata), (gst_shout2send_event):
9425         * ext/shout2/gstshout2.h:
9426         Properly handle tags in shout2send. Fixes #399825.
9427
9428 2007-01-25  Wim Taymans  <wim@fluendo.com>
9429
9430         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
9431         (gst_rtspsrc_activate_streams):
9432         Convert SDP fields to upper/lowercase following the rules in the SDP to
9433         caps document. 
9434
9435 2007-01-25  Wim Taymans  <wim@fluendo.com>
9436
9437         * gst/rtp/README:
9438         * gst/rtp/gstrtpilbcdepay.c:
9439         * gst/rtp/gstrtpilbcpay.c:
9440         * gst/rtp/gstrtpmp4gdepay.c:
9441         * gst/rtp/gstrtpmp4gpay.c:
9442         * gst/rtp/gstrtpspeexdepay.c:
9443         * gst/rtp/gstrtpspeexpay.c:
9444         * gst/rtp/gstrtpsv3vdepay.c:
9445         * gst/rtp/gstrtptheoradepay.c:
9446         * gst/rtp/gstrtptheorapay.c:
9447         * gst/rtp/gstrtpvorbisdepay.c:
9448         * gst/rtp/gstrtpvorbispay.c:
9449         Fix case of encoding-name and key/value pairs to match the document.
9450         This is to make interoperation with SDP case-insensitive as required by
9451         the relevant RFCs.
9452
9453 2007-01-25  Wim Taymans  <wim@fluendo.com>
9454
9455         * configure.ac:
9456         Bump required -core/-base to CVS
9457
9458 2007-01-25  Wim Taymans  <wim@fluendo.com>
9459
9460         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
9461         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
9462         * gst/rtp/gstrtpL16pay.h:
9463         Fill up to MTU using adapter.
9464         Timestamp rtp packets.
9465
9466 2007-01-25  Edward Hervey  <edward@fluendo.com>
9467
9468         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
9469         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
9470         Use G_GSIZE_FORMAT in print statements for portability.
9471         Fixes build on macosx.
9472
9473 2007-01-24  Wim Taymans  <wim@fluendo.com>
9474
9475         * gst/rtp/Makefile.am:
9476         * gst/rtp/gstrtp.c: (plugin_init):
9477         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
9478         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
9479         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
9480         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
9481         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
9482         (gst_rtp_L16_depay_plugin_init):
9483         * gst/rtp/gstrtpL16depay.h:
9484         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
9485         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
9486         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
9487         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
9488         (gst_rtp_L16_pay_plugin_init):
9489         * gst/rtp/gstrtpL16pay.h:
9490         Port and enable raw audio payloader/depayloader. Needs a bit more work
9491         on the payloader side.
9492
9493 2007-01-24  Wim Taymans  <wim@fluendo.com>
9494
9495         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
9496         (gst_rtspsrc_stream_configure_transport),
9497         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
9498         * gst/rtsp/gstrtspsrc.h:
9499         Only unblock the udp pads when we linked and activated them all.
9500         Fixes #395688.
9501
9502 2007-01-24  Wim Taymans  <wim@fluendo.com>
9503
9504         * gst/rtp/Makefile.am:
9505         * gst/rtp/gstrtp.c: (plugin_init):
9506         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
9507         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
9508         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
9509         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
9510         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
9511         * gst/rtp/gstrtpac3depay.h:
9512         Added simple AC3 depayloader (RFC 4184).
9513
9514         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
9515         Fix a leak.
9516
9517 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
9518
9519         reviewed by: Stefan Kost  <ensonic@users.sf.net>
9520
9521         * gst/audiofx/Makefile.am:
9522         * gst/audiofx/audioamplify.c:
9523         (gst_audio_amplify_clipping_method_get_type),
9524         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
9525         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
9526         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
9527         (gst_audio_amplify_set_caps),
9528         (gst_audio_amplify_transform_int_clip),
9529         (gst_audio_amplify_transform_int_wrap_negative),
9530         (gst_audio_amplify_transform_int_wrap_positive),
9531         (gst_audio_amplify_transform_float_clip),
9532         (gst_audio_amplify_transform_float_wrap_negative),
9533         (gst_audio_amplify_transform_float_wrap_positive),
9534         (gst_audio_amplify_transform_ip):
9535         * gst/audiofx/audioamplify.h:
9536         * gst/audiofx/audiofx.c: (plugin_init):
9537         Add new element "audioamplify". This allows scaling of raw audio
9538         samples, similar to the "volume" element, but provides different modes
9539         for clipping and allows unlimited amplification. It's mainly targeted
9540         for creative sound design and not as a replacement of the "volume"
9541         element. Fixes #397162
9542         * docs/plugins/Makefile.am:
9543         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9544         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9545         * docs/plugins/gst-plugins-good-plugins.args:
9546         * docs/plugins/inspect/plugin-audiofx.xml:
9547         Add docs for audioamplify and integrate them into the build system
9548         * tests/check/Makefile.am:
9549         * tests/check/elements/audioamplify.c: (setup_amplify),
9550         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
9551         Add fairly extensive unit test suite for audioamplify
9552
9553 2007-01-24  Wim Taymans  <wim@fluendo.com>
9554
9555         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
9556         Unblock pads after adding the pads to the element so that autopluggers
9557         get a change to link something. Possibly fixes #395688.
9558
9559 2007-01-24  Wim Taymans  <wim@fluendo.com>
9560
9561         * gst/rtp/gstrtpamrdepay.c:
9562         * gst/rtp/gstrtpgsmdepay.c:
9563         * gst/rtp/gstrtph263pdepay.c:
9564         * gst/rtp/gstrtph263ppay.c:
9565         * gst/rtp/gstrtph264depay.c:
9566         * gst/rtp/gstrtpilbcdepay.c:
9567         * gst/rtp/gstrtpmp2tdepay.c:
9568         * gst/rtp/gstrtpmp4gdepay.c:
9569         * gst/rtp/gstrtpmp4gpay.c:
9570         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
9571         * gst/rtp/gstrtpmp4vpay.c:
9572         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
9573         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
9574         (gst_rtp_mpa_depay_process):
9575         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
9576         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
9577         * gst/rtp/gstrtppcmadepay.c:
9578         * gst/rtp/gstrtppcmudepay.c:
9579         * gst/rtp/gstrtpspeexdepay.c:
9580         * gst/rtp/gstrtpspeexpay.c:
9581         * gst/rtp/gstrtpsv3vdepay.c:
9582         * gst/rtp/gstrtptheoradepay.c:
9583         * gst/rtp/gstrtptheorapay.c:
9584         * gst/rtp/gstrtpvorbisdepay.c:
9585         * gst/rtp/gstrtpvorbispay.c:
9586         Fix caps with payload numbers.
9587         Add some fixed payload numbers to caps when possible.
9588
9589 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
9590
9591         reviewed by: Stefan Kost  <ensonic@users.sf.net>
9592
9593         * gst/audiofx/Makefile.am:
9594         * gst/audiofx/audiofx.c: (plugin_init):
9595         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
9596         (gst_audio_invert_class_init), (gst_audio_invert_init),
9597         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
9598         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
9599         (gst_audio_invert_transform_float),
9600         (gst_audio_invert_transform_ip):
9601         * gst/audiofx/audioinvert.h:
9602         Add new audiofx element "audioinvert". This element swaps the upper
9603         and lower half of samples and can be used for example for a
9604         wide-stereo effect. Fixes #396057
9605         * docs/plugins/Makefile.am:
9606         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9607         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9608         * docs/plugins/gst-plugins-good-plugins.args:
9609         * docs/plugins/inspect/plugin-audiofx.xml:
9610         Add docs for the audioinvert element and add them to the build system.
9611         * tests/check/Makefile.am:
9612         * tests/check/elements/audioinvert.c: (setup_invert),
9613         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
9614         Add unit test suite for the audioinvert element.
9615
9616 2007-01-23  Wim Taymans  <wim@fluendo.com>
9617
9618         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
9619         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
9620         Parse config params as string and int.
9621         Parse and use AU header length
9622
9623 2007-01-23  Wim Taymans  <wim@fluendo.com>
9624
9625         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
9626         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
9627         * gst/smpte/gstmask.c: (_gst_mask_register):
9628         * gst/smpte/gstmask.h:
9629         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
9630         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
9631         (gst_smpte_paint_triangle_clock):
9632         constify some static structs.
9633         Don't update the mask if nothing changed to the params.
9634         Make sure we never draw outside of the picture. Fixes #398325.
9635
9636 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
9637
9638         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
9639           Error out properly when pull_range fails while we're reading the
9640           headers, instead of just pausing the task silently. Fixes #399338.
9641
9642 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
9643
9644         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
9645           Some more sanity checks to make sure the input formats match and the
9646           input pads are actually negotiated, in case someone tries to feed
9647           buffers from fakesrc or filesrc. Fixes #398299.
9648           Also const-ify an array, just because we can.
9649
9650 2007-01-19  Edward Hervey  <edward@fluendo.com>
9651
9652         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
9653         Ignore previous commit, that was only valid for widths and heights
9654         that are multiples of 4.
9655         Copy over size/stride macros from jpegdec. This allows the element
9656         to work with any width,height...
9657         ... but puts in evidence that the actual transformations only work
9658         with width/height that are multiples of 4.
9659
9660 2007-01-19  Edward Hervey  <edward@fluendo.com>
9661
9662         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
9663         Allocate buffers of the right size.
9664         The proper size of a I420 buffer in bytes is:
9665         
9666             width * height * 3
9667             ------------------
9668                     2
9669
9670 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
9671
9672         * gst/smpte/gstsmpte.c: (gst_smpte_init):
9673           Proxy getcaps on sink pads too, so that we either end up with the
9674           same dimensions on all pads or error out if that's not possible
9675           (seems to work even!). Fixes #398086, I think.
9676
9677 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
9678
9679         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9680         * docs/plugins/gst-plugins-good-plugins.args:
9681         * docs/plugins/gst-plugins-good-plugins.hierarchy:
9682           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
9683           fix integer properties with -1 as minimum value.
9684
9685         * docs/plugins/inspect/plugin-1394.xml:
9686         * docs/plugins/inspect/plugin-aasink.xml:
9687         * docs/plugins/inspect/plugin-alaw.xml:
9688         * docs/plugins/inspect/plugin-alpha.xml:
9689         * docs/plugins/inspect/plugin-alphacolor.xml:
9690         * docs/plugins/inspect/plugin-annodex.xml:
9691         * docs/plugins/inspect/plugin-apetag.xml:
9692         * docs/plugins/inspect/plugin-audiofx.xml:
9693         * docs/plugins/inspect/plugin-auparse.xml:
9694         * docs/plugins/inspect/plugin-autodetect.xml:
9695         * docs/plugins/inspect/plugin-avi.xml:
9696         * docs/plugins/inspect/plugin-cacasink.xml:
9697         * docs/plugins/inspect/plugin-cairo.xml:
9698         * docs/plugins/inspect/plugin-cdio.xml:
9699         * docs/plugins/inspect/plugin-cutter.xml:
9700         * docs/plugins/inspect/plugin-debug.xml:
9701         * docs/plugins/inspect/plugin-dv.xml:
9702         * docs/plugins/inspect/plugin-efence.xml:
9703         * docs/plugins/inspect/plugin-effectv.xml:
9704         * docs/plugins/inspect/plugin-esdsink.xml:
9705         * docs/plugins/inspect/plugin-flac.xml:
9706         * docs/plugins/inspect/plugin-flxdec.xml:
9707         * docs/plugins/inspect/plugin-gconfelements.xml:
9708         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9709         * docs/plugins/inspect/plugin-goom.xml:
9710         * docs/plugins/inspect/plugin-halelements.xml:
9711         * docs/plugins/inspect/plugin-icydemux.xml:
9712         * docs/plugins/inspect/plugin-id3demux.xml:
9713         * docs/plugins/inspect/plugin-jpeg.xml:
9714         * docs/plugins/inspect/plugin-level.xml:
9715         * docs/plugins/inspect/plugin-matroska.xml:
9716         * docs/plugins/inspect/plugin-mulaw.xml:
9717         * docs/plugins/inspect/plugin-multipart.xml:
9718         * docs/plugins/inspect/plugin-navigationtest.xml:
9719         * docs/plugins/inspect/plugin-ossaudio.xml:
9720         * docs/plugins/inspect/plugin-png.xml:
9721         * docs/plugins/inspect/plugin-rtp.xml:
9722         * docs/plugins/inspect/plugin-rtsp.xml:
9723         * docs/plugins/inspect/plugin-shout2send.xml:
9724         * docs/plugins/inspect/plugin-smpte.xml:
9725         * docs/plugins/inspect/plugin-speex.xml:
9726         * docs/plugins/inspect/plugin-taglib.xml:
9727         * docs/plugins/inspect/plugin-udp.xml:
9728         * docs/plugins/inspect/plugin-videobalance.xml:
9729         * docs/plugins/inspect/plugin-videobox.xml:
9730         * docs/plugins/inspect/plugin-videoflip.xml:
9731         * docs/plugins/inspect/plugin-videomixer.xml:
9732         * docs/plugins/inspect/plugin-wavenc.xml:
9733         * docs/plugins/inspect/plugin-wavparse.xml:
9734         * docs/plugins/inspect/plugin-ximagesrc.xml:
9735           Update to CVS.
9736
9737 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
9738
9739         Patch by: Sebastian Dröge <slomo circular-chaos org>
9740
9741         * gst/audiofx/audiopanorama.c:
9742           Fix doc section name (Fixes #397946)
9743
9744 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
9745
9746         * sys/v4l2/gstv4l2object.c:
9747         (gst_v4l2_object_install_properties_helper),
9748         (gst_v4l2_object_set_property_helper),
9749         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
9750         * sys/v4l2/gstv4l2object.h:
9751         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
9752         (gst_v4l2src_init), (gst_v4l2src_set_property),
9753         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
9754         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
9755         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
9756         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
9757         (gst_v4l2src_capture_deinit):
9758           Fix EIO handing when capturing. Add new property to specify the number of
9759           buffers to enque (and remove the borked num-buffers usage).
9760
9761 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
9762
9763         Patch by: Sebastian Dröge <slomo circular-chaos org>
9764
9765         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
9766         (gst_audio_panorama_set_process_function):
9767           Use a function array for process methods, add more docs and define the
9768           startindex of enums.
9769
9770 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
9771
9772         Patch by: Mark Nauwelaerts <manauw at skynet be>
9773
9774         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
9775         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
9776         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
9777         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
9778         (gst_avi_mux_riff_get_avi_header),
9779         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
9780         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
9781         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
9782         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
9783         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
9784         (gst_avi_mux_change_state):
9785         * gst/avi/gstavimux.h:
9786         * tests/check/elements/avimux.c: (teardown_src_pad):
9787           Add support for more than one audio stream; write better AVIX
9788           header; refactor code a bit; don't announce vorbis caps on our audio
9789           sink pads since we don't support it anyway. Closes #379298.
9790
9791 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
9792
9793         Patch by: Sebastian Dröge <slomo circular-chaos org>
9794
9795         * gst/audiofx/audiopanorama.c:
9796         (gst_audio_panorama_method_get_type),
9797         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
9798         (gst_audio_panorama_set_process_function),
9799         (gst_audio_panorama_set_property),
9800         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
9801         (gst_audio_panorama_transform_m2s_int_simple),
9802         (gst_audio_panorama_transform_s2s_int_simple),
9803         (gst_audio_panorama_transform_m2s_float_simple),
9804         (gst_audio_panorama_transform_s2s_float_simple):
9805         * gst/audiofx/audiopanorama.h:
9806           Add 'method' property and provide a simple (non-psychoacustic)
9807           processing method (#394859).
9808
9809         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
9810         (panorama_suite):
9811           Tests for new method.
9812
9813 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
9814
9815         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
9816         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
9817           Set correct caps on outgoing pulled buffers, or things blow up
9818           after recent core changes.
9819
9820 2007-01-11  Wim Taymans  <wim@fluendo.com>
9821
9822         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
9823
9824         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
9825         (gst_multipart_mux_request_new_pad),
9826         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
9827         (gst_multipart_mux_change_state):
9828         Return FLOW errors ASAP. Fixes #394977.
9829         Misc cleanups.
9830
9831 2007-01-11  Wim Taymans  <wim@fluendo.com>
9832
9833         Patch by: Lutz Mueller <lutz at topfrose dot de>
9834
9835         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
9836         Check for stream pad before activating. 
9837
9838 2007-01-10  Wim Taymans  <wim@fluendo.com>
9839
9840         Patch by: Peter Kjellerstedt  <pkj at axis com>
9841
9842         * gst/rtsp/COPYING.MIT:
9843         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
9844         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
9845         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
9846         (gst_rtspsrc_stream_configure_transport),
9847         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
9848         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
9849         (gst_rtspsrc_parse_methods),
9850         (gst_rtspsrc_create_transports_string),
9851         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
9852         (gst_rtspsrc_open), (gst_rtspsrc_close):
9853         * gst/rtsp/gstrtspsrc.h:
9854         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
9855         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
9856         (parse_request_line), (parse_line), (rtsp_connection_read),
9857         (rtsp_connection_close):
9858         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
9859         (rtsp_method_as_text), (rtsp_header_as_text),
9860         (rtsp_status_as_text), (rtsp_find_header_field),
9861         (rtsp_find_method):
9862         * gst/rtsp/rtspdefs.h:
9863         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
9864         (rtsp_ext_wms_configure_stream):
9865         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
9866         (rtsp_message_new_request), (rtsp_message_init_request),
9867         (rtsp_message_new_response), (rtsp_message_init_response),
9868         (rtsp_message_init_data), (rtsp_message_unset),
9869         (rtsp_message_free), (rtsp_message_add_header),
9870         (rtsp_message_get_header), (rtsp_message_set_body),
9871         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
9872         * gst/rtsp/rtspmessage.h:
9873         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
9874         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
9875         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
9876         (sdp_message_dump):
9877         Allow url to be NULL to be able to use it for server connections.
9878         Can now send responses as well as requests.
9879         No longer hangs in an endless loop if EOF is received.
9880         Can now convert a status code to a text string.
9881         Return RTSP_HDR_INVALID for unknown headers.
9882         Return RTSP_INVALID for unknown methods.
9883         Copy CSeq and Session headers from the request.
9884         Only free memory corresponding to the currently set message type.
9885         Added const to function arguments as appropriate.
9886         Avoid a compiler warning when initializing nmedia.
9887         Use guint rather than gint to avoid compiler warnings.
9888         Fix crasher in wms extension.
9889         Factor out stream setup from open_connection.
9890         Delay activation of streams when actual data is received from the
9891         server, this prepares us to do proper protocol switching.
9892         Added new license.
9893         Fixes #380895.
9894
9895
9896 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9897
9898         Patch by: Sebastian Dröge <slomo ubuntu com>
9899
9900         * docs/plugins/Makefile.am:
9901         * gst/audiofx/audiopanorama.c:
9902           Some small docs fixes (#394851).
9903
9904 2007-01-09  Wim Taymans  <wim@fluendo.com>
9905
9906         * gst/avi/gstavidemux.c:
9907         Fix docs.
9908
9909 2007-01-09  Wim Taymans  <wim@fluendo.com>
9910
9911         * gst/rtp/Makefile.am:
9912         * gst/rtp/gstrtp.c: (plugin_init):
9913         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
9914         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
9915         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
9916         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
9917         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
9918         * gst/rtp/gstrtpmpvdepay.h:
9919           Added RFC 2250 MPEG Video Depayloader.
9920
9921         * gst/rtp/gstrtpL16depay.h:
9922         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
9923         (gst_rtp_h263p_depay_process):
9924         Fix Header file. Small cleanups.
9925
9926         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
9927         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
9928         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
9929         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
9930         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
9931         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
9932         (gst_rtp_mp4v_depay_change_state):
9933         Remove usused code. Remove Adapter from state Change. Added debug.
9934
9935         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
9936         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
9937         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
9938         * gst/rtp/gstrtpmpadepay.h:
9939         Subclass base depayloader.
9940         Added debug.
9941         Support static payload type assignment as well.
9942
9943         * gst/rtp/gstrtpmpapay.c:
9944         Fix caps.
9945
9946 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
9947
9948         Patch by: Vincent Torri  <vtorri at univ-evry fr>
9949
9950         * ext/jpeg/gstjpegdec.c:
9951         * ext/jpeg/gstjpegenc.c:
9952         * ext/jpeg/smokecodec.c:
9953           These libjpeg callbacks should return a 'boolean' (unsigned char
9954           apparently) and not a 'gboolean' (which maps to gint). Fixes
9955           warnings when compiling with MingW (#393427).
9956
9957         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
9958           Use ioctlsocket on win32.
9959
9960         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
9961           Some printf format fixes for win32.
9962
9963 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
9964
9965         * gst/cutter/gstcutter.c: (gst_cutter_chain):
9966           Use gst_guint64_to_gdouble for conversion.
9967         * win32/vs6/libgstmatroska.dsp:
9968           Add zlib to the link.
9969         * win32/vs6/libgstvideobox.dsp:
9970           Update liboil library name (project is linked to 
9971           liboil-0.3-0.lib now).
9972           
9973 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
9974
9975         * gst/matroska/Makefile.am:
9976           If zlib is available and used, we must link it explicitly for
9977           things to work on MingW (fixes #392855).
9978
9979 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
9980
9981         * ext/esd/esdsink.c: (gst_esdsink_delay):
9982           Don't return bogus values when esd_get_delay() fails for some
9983           reason (#392189).
9984
9985 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
9986
9987         * sys/ximage/gstximagesrc.c: (composite_pixel):
9988           Fix presumably copy'n'pasto for 16bpp depth.
9989
9990 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
9991
9992         * gst/matroska/matroska-mux.c:
9993         (gst_matroska_mux_audio_pad_setcaps):
9994           The "signed" field in audio caps is of boolean type, trying to use
9995           gst_structure_get_int() to extract it will fail. Fixing this makes
9996           matroskamux accept raw audio input (#387121) (use at your own risk
9997           though, due to the matroska spec being not entirely useful in this
9998           respect).
9999           Also fix up raw audio structures in template caps so that they
10000           represent what our setcaps function will actually accept, so that
10001           converters know what to convert to.
10002           Finally, don't fail if there isn't an "endianness" field in 8-bit
10003           PCM caps.
10004
10005 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
10006
10007         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
10008         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
10009         * tests/check/elements/cmmldec.c: (setup_cmmldec),
10010         (teardown_cmmldec):
10011         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
10012         (teardown_cmmlenc):
10013         * tests/check/elements/level.c: (setup_level), (cleanup_level):
10014           reapply consistent pad (de)activation
10015
10016 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
10017
10018         * configure.ac:
10019         Back to CVS
10020
10021         * gst-plugins-good.doap:
10022         Add 0.10.5 doap entry
10023
10024 === release 0.10.5 ===
10025
10026 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
10027
10028         * configure.ac:
10029           releasing 0.10.5, "The Path of Thorns"
10030
10031 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10032
10033         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
10034         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
10035         * tests/check/elements/cmmldec.c: (setup_cmmldec),
10036         (teardown_cmmldec):
10037         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
10038         (teardown_cmmlenc):
10039         * tests/check/elements/level.c: (setup_level), (cleanup_level):
10040           revert my freeze breakage
10041
10042 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10043
10044         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
10045         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
10046         * tests/check/elements/cmmldec.c: (setup_cmmldec),
10047         (teardown_cmmldec):
10048         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
10049         (teardown_cmmlenc):
10050         * tests/check/elements/level.c: (setup_level), (cleanup_level):
10051           consistent pad (de)activation
10052
10053 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
10054
10055         * configure.ac:
10056         * ext/Makefile.am:
10057         Disable LADPSA, as it has moved to the -bad module for the duration.
10058
10059 2006-12-18  Wim Taymans  <wim@fluendo.com>
10060
10061         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
10062         (gst_signal_processor_event):
10063         Reset flow_state back to _OK after a flush stop so that we exit our
10064         error state after the flush. Fixes #374213
10065
10066 2006-12-16  David Schleef  <ds@schleef.org>
10067
10068         * sys/osxvideo/osxvideosink.h:
10069         * sys/osxvideo/osxvideosink.m:
10070           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
10071
10072 2006-12-16  David Schleef  <ds@schleef.org>
10073
10074         Patch by: Vijay Santhanam <vijay santhanam gmail com>
10075
10076         * sys/osxvideo/Makefile.am:
10077         * sys/osxvideo/osxvideosink.h:
10078         * sys/osxvideo/osxvideosink.m:
10079           Preliminary patch for porting osxvideosink
10080
10081 2006-12-16  Wim Taymans  <wim@fluendo.com>
10082
10083         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10084
10085         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
10086         (gst_videomixer_set_master_geometry),
10087         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
10088         (gst_videomixer_reset), (gst_videomixer_init),
10089         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
10090         (gst_videomixer_release_pad), (gst_videomixer_collected),
10091         (gst_videomixer_change_state):
10092         Introduce some locking around the videomixer state so that it does not
10093         crash when adding/removing pads. Fixes #383043.
10094
10095 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
10096
10097         * configure.ac:
10098           Make sure libcaca can actually be used instead of just checking for
10099           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
10100           cross-compiling (fixes #384587).
10101
10102 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
10103
10104         * Makefile.am:
10105         * gst-plugins-good.doap:
10106         * gst-plugins-good.spec.in:
10107           adding doap file
10108
10109 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
10110
10111         * configure.ac:
10112           libflac-1.1.3 changed API again, but we can't build against it yet,
10113           so make sure our check doesn't use libflac-1.1.3 and add a comment
10114           to this effect.
10115
10116 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
10117
10118         * gst/effectv/gstquark.c: (gst_quarktv_transform),
10119         (gst_quarktv_planetable_clear):
10120           Add some NULL pointer checks (possibly related to #385623).
10121
10122 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
10123
10124         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
10125         (gst_tag_demux_chain):
10126         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
10127           In streaming mode, if the first buffer we get doesn't have an
10128           offset, fix it up to be 0, otherwise trimming won't work later on
10129           and we'll be typefinding application/x-id3, which may result in
10130           decodebin plugging an endless number of id3demux elements as a
10131           consequence. Fixes #385031.
10132           
10133 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
10134
10135         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
10136           Ignore the buffer_time the sound device reports. Turns out it is 
10137           sometimes completely bogus and we're better off without it.
10138
10139 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
10140
10141         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
10142         (gst_matroska_demux_video_caps):
10143         * gst/matroska/matroska-ids.c:
10144         (gst_matroska_track_init_video_context):
10145         * gst/matroska/matroska-ids.h:
10146           Try harder to extract the framerate for video tracks correctly and
10147           save it directly instead of converting it back and forth a few
10148           times. Mostly makes a difference for very small framerates (<1).
10149           Fixes #380199.
10150
10151 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
10152
10153         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
10154         (gst_gconf_audio_src_dispose), (do_toggle_element):
10155         * ext/gconf/gstgconfaudiosrc.h:
10156           Remove gconf notify hook when the gconfaudiosrc element is
10157           destroyed, otherwise the callback may be called on an
10158           already-destroyed instance and bad things happen. Should fix
10159           #378184.
10160           Also ignore gconf key changes when the source is already running.
10161
10162 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
10163
10164         Patch by: Sebastian Dröge  <mail at slomosnail de>
10165
10166         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
10167           We need to be able to read and parse any possible floating point string
10168           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
10169           will parse the former only in certain locales though, so we really need
10170           to canonicalise the separator to '.' and then use g_ascii_strtod() to
10171           make sure we can parse either version at all times.
10172           Fixes #382982 for real.
10173
10174 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
10175
10176         * sys/sunaudio/gstsunaudiomixerctrl.c:
10177         * sys/sunaudio/gstsunaudiosrc.c:
10178
10179         Use the sunaudio debug category.
10180
10181         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
10182         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
10183         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
10184         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
10185         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
10186         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
10187         (gst_sunaudiosink_reset):
10188         * sys/sunaudio/gstsunaudiosink.h:
10189
10190         Uses the sunaudio debug category for all debug output
10191         Implements the _delay() callback to synchronise video playback better
10192         Change the segtotal and segsize values back to the parent class 
10193           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
10194           respectively)
10195         Measure the samples written to the device vs. played.
10196         Keep track of segments in the device by writing empty eof frames, and
10197         sleep using a GCond when we get too far ahead and risk overrunning the
10198         sink's ringbuffer.
10199
10200         Fixes: #360673
10201
10202 2006-12-08  Wim Taymans  <wim@fluendo.com>
10203
10204         Patch by: Sebastian Dröge  <mail at slomosnail de >
10205
10206         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
10207         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
10208         * gst/audiofx/audiopanorama.h:
10209         Fix audiopanorame with float samples. Fixes #383726.
10210
10211 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
10212
10213         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
10214         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
10215         (gst_sunaudiosrc_reset):
10216
10217         Implement reset functions to unblock the src/sink more quickly on 
10218         state change requests.
10219         Patch by: Brian Cameron <brian dot cameron at sun com>
10220
10221 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
10222
10223         * sys/sunaudio/gstsunaudiomixer.c:
10224         (gst_sunaudiomixer_change_state):
10225         Construct the correct mixer device name when the AUDIODEV env var
10226         is set.
10227
10228         Patch by: Jerry Tan <jerry.tan at sun dot com>
10229         Fixes: #383596
10230
10231 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
10232
10233         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
10234         Apply patch to open the mixer control and set the MULTIPLE_OPEN
10235         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
10236         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
10237         Patch by: Jerry Tan <jerry.tan at sun dot com>
10238         Fixes: #349015
10239
10240 2006-12-07  Wim Taymans  <wim@fluendo.com>
10241
10242         * gst/smpte/gstmask.h:
10243         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
10244         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
10245         (gst_smpte_collected), (gst_smpte_set_property),
10246         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
10247         * gst/smpte/gstsmpte.h:
10248         Port to 0.10 some more. 
10249         Added duration property to specify the duration of the transition.
10250         Make framerate a fraction.
10251         Deprecate fps property, we only use negotiated fps.
10252         Added docs.
10253         Fix collectpad usage.
10254         Reset state in READY.
10255         Send NEWSEGMENT event.
10256         Fix racy updates of object properties.
10257         Added debug category.
10258         Fixes #383323.
10259
10260 2006-12-06  Wim Taymans  <wim@fluendo.com>
10261
10262         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10263
10264         * gst/videomixer/videomixer.c:
10265         (gst_videomixer_set_master_geometry),
10266         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
10267         Don't reset xpos and ypos in the setcaps function because causes
10268         unexpected behaviour.
10269         Fixes #382179.
10270
10271 2006-12-06  Wim Taymans  <wim@fluendo.com>
10272
10273         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
10274         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
10275         Keep track of the buffer timestamp in the collectdata member instead
10276         of modifying the buffer without making the metadata writable first.
10277         Fixes #382277.
10278
10279 2006-12-06  Wim Taymans  <wim@fluendo.com>
10280
10281         Patch by: Rob Taylor <robtaylor at floopily dot org>
10282
10283         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
10284         If using multicast in udpsrc, bind to the multicast address rather than
10285         IN_ADDR_ANY.
10286         This allows the simultanous use of multiple udpsrcs listening on
10287         different multicat addresses. Without this all udpsrcs will receive all
10288         packets from all subscribed multicast addresses.
10289         Fixes #383001.
10290
10291 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
10292
10293         * ext/taglib/gstid3v2mux.cc:
10294         Don't attempt to write a NULL frame into the ID3 tag set when the 
10295         createFrame method returned NULL.
10296         Fixes: #381857
10297         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
10298
10299 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
10300
10301         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
10302         Use g_strtod() instead of sscanf to parse doubles, so that it will
10303         try parsing in the C locale if the current locale fails.
10304         Fixes: #382982
10305         Patch by: Sebastian Dröge  <mail at slomosnail de >
10306
10307 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
10308
10309         * win32/MANIFEST:
10310         Fix compilation on win32 under VS8
10311         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
10312         Partially fixes #381175
10313
10314 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
10315
10316         * gst/avi/gstavimux.c:
10317           accept all mpegversions,fixes #380825
10318           spotted by: Jerome Alet  
10319
10320 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
10321
10322         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
10323         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
10324         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
10325         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
10326           cleanup the error message a bit more
10327
10328 2006-11-28  Wim Taymans  <wim@fluendo.com>
10329
10330         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
10331         Fix width and height properties.
10332
10333         * ext/libcaca/gstcacasink.h:
10334         Fix compilation on newer libcaca that require us to include a new
10335         header. Fixes #379918.
10336
10337 2006-11-28  Wim Taymans  <wim@fluendo.com>
10338
10339         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
10340         * gst/rtsp/gstrtspsrc.h:
10341         * gst/rtsp/rtspext.h:
10342         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
10343         (rtsp_ext_wms_get_context):
10344         Add method so that extensions can choose to disable the setup of
10345         a stream.
10346         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
10347
10348 2006-11-27  Wim Taymans  <wim@fluendo.com>
10349
10350         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
10351
10352         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
10353         Push header in a separate buffer instead of memcpy:ing all data.
10354         Change LF => CRLF in headers.
10355         Move trailing LF to header. Fixes #379792.
10356
10357 2006-11-27  Wim Taymans  <wim@fluendo.com>
10358
10359         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
10360         Small buffer overflow fix and improve debugging.
10361
10362 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
10363
10364         * ext/esd/esdmon.h:
10365         * ext/esd/esdsink.h:
10366           remove obsolete _factory_init protos
10367
10368 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
10369
10370         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
10371         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
10372         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
10373         (gst_avi_demux_read_subindexes_push),
10374         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
10375         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
10376         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
10377         (gst_avi_demux_massage_index),
10378         (gst_avi_demux_calculate_durations_from_index),
10379         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
10380         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
10381         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
10382           remove dead code, tweak debugs statements, add comments, use
10383           _uint64_scale instead _uint64_scale_int when using guint64 values,
10384           small optimizations, reflow some error handling
10385
10386 2006-11-22  Edward Hervey  <edward@fluendo.com>
10387
10388         * po/.cvsignore:
10389         We never put .pot files in cvs. Let's ignore them all.
10390
10391 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
10392
10393         * po/POTFILES.in:
10394           ... but better exclude files that aren't disted.
10395
10396 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
10397
10398         * po/POTFILES.in:
10399           Add v4l2 source files to list of files with translations, so the
10400           strings are actually extracted (however bad they still may be).
10401
10402 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
10403
10404         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
10405           Minor clean-ups: const-ify static array, remove trailing comma from
10406           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
10407
10408 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
10409
10410         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
10411         Make sure that g_free always gets called on the same pointer that was 
10412         returned by g_malloc.  Fixes #376594.
10413         Do not leak memory if decompressed size is wrong.
10414         Remove unneeded check of return value of g_malloc.
10415         Patch by: René Stadler <mail@renestadler.de>
10416
10417 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
10418
10419         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
10420           Add missing curly brackets.
10421
10422 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
10423
10424         * sys/v4l2/v4l2src_calls.c:
10425         Fix capture_deinit.
10426
10427 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
10428
10429         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
10430         (gst_matroska_mux_request_new_pad):
10431           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
10432
10433         * tests/check/elements/matroskamux.c: (setup_src_pad),
10434         (setup_sink_pad), (GST_START_TEST):
10435         Activate pads before using them.
10436
10437 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
10438
10439         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
10440           Initialise variable to get rid of bogus compiler warning.
10441
10442 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
10443
10444         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
10445
10446         * gst/rtp/gstrtph263pay.c:
10447         * gst/rtp/gstrtph263pdepay.c:
10448         * gst/rtp/gstrtph263ppay.c:
10449           Specify H.263 variant and version in the caps (fixes #361637)
10450
10451 2006-11-15  Wim Taymans  <wim@fluendo.com>
10452
10453         * gst/rtsp/rtspconnection.c: (read_body):
10454         Don't set a data pointer to NULL and a size > 0 when we deal
10455         with empty packets.
10456
10457         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
10458         (rtsp_message_init_response), (rtsp_message_init_data),
10459         (rtsp_message_unset), (rtsp_message_free),
10460         (rtsp_message_take_body):
10461         Check that we can't create invalid empty packets. 
10462
10463 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
10464
10465         Patch by: Mark Nauwelaerts  <manauw at skynet be>
10466
10467         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
10468         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
10469         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
10470         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
10471         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
10472         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
10473         * gst/matroska/matroska-mux.h:
10474           Add basic tag writing support; implement releasing pads (#374658).
10475
10476 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
10477
10478         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
10479         (gst_matroska_demux_audio_caps):
10480           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
10481
10482 2006-11-14  David Schleef  <ds@schleef.org>
10483
10484         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
10485
10486 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
10487
10488         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
10489
10490         * win32/vs8/gst-plugins-good.sln:
10491         * win32/vs8/libgst1394.vcproj:
10492         * win32/vs8/libgstaasink.vcproj:
10493         * win32/vs8/libgstalaw.vcproj:
10494         * win32/vs8/libgstalpha.vcproj:
10495         * win32/vs8/libgstalphacolor.vcproj:
10496         * win32/vs8/libgstannodex.vcproj:
10497         * win32/vs8/libgstapetag.vcproj:
10498         * win32/vs8/libgstaudiofx.vcproj:
10499         * win32/vs8/libgstauparse.vcproj:
10500         * win32/vs8/libgstautodetect.vcproj:
10501         * win32/vs8/libgstavi.vcproj:
10502         * win32/vs8/libgstcacasink.vcproj:
10503         * win32/vs8/libgstcdio.vcproj:
10504         * win32/vs8/libgstcutter.vcproj:
10505         * win32/vs8/libgstdv.vcproj:
10506         * win32/vs8/libgsteffectv.vcproj:
10507         * win32/vs8/libgstflac.vcproj:
10508         * win32/vs8/libgstflxdec.vcproj:
10509         * win32/vs8/libgstgoom.vcproj:
10510         * win32/vs8/libgsticydemux.vcproj:
10511         * win32/vs8/libgstid3demux.vcproj:
10512         * win32/vs8/libgstjpeg.vcproj:
10513         * win32/vs8/libgstladspa.vcproj:
10514         * win32/vs8/libgstlevel.vcproj:
10515         * win32/vs8/libgstmatroska.vcproj:
10516         * win32/vs8/libgstmikmod.vcproj:
10517         * win32/vs8/libgstmng.vcproj:
10518         * win32/vs8/libgstmonoscope.vcproj:
10519         * win32/vs8/libgstmulaw.vcproj:
10520         * win32/vs8/libgstmultipart.vcproj:
10521         * win32/vs8/libgstpng.vcproj:
10522         * win32/vs8/libgstrtp.vcproj:
10523         * win32/vs8/libgstrtsp.vcproj:
10524         * win32/vs8/libgstshout2.vcproj:
10525         * win32/vs8/libgstsmpte.vcproj:
10526         * win32/vs8/libgstspeex.vcproj:
10527         * win32/vs8/libgsttaglib.vcproj:
10528         * win32/vs8/libgstudp.vcproj:
10529         * win32/vs8/libgstvideobalance.vcproj:
10530         * win32/vs8/libgstvideobox.vcproj:
10531         * win32/vs8/libgstvideoflip.vcproj:
10532         * win32/vs8/libgstvideomixer.vcproj:
10533         * win32/vs8/libgstwavenc.vcproj:
10534         * win32/vs8/libgstwavparse.vcproj:
10535           Make end-of-line returns unixy, so that when the files are checked
10536           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
10537           Hopefully fixes #366492.
10538
10539 2006-11-14  Wim Taymans  <wim@fluendo.com>
10540
10541         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
10542         Disable init_frames delay timestamp adjustment, it does not
10543         seem to be needed at all. Fixes #369621.
10544
10545 2006-11-13  Wim Taymans  <wim@fluendo.com>
10546
10547         Patch by: Mark Nauwelaerts  <manauw at skynet be>
10548
10549         * gst/videomixer/videomixer.c:
10550         (gst_videomixer_set_master_geometry),
10551         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
10552         (gst_videomixer_collect_free), (gst_videomixer_reset),
10553         (gst_videomixer_init), (gst_videomixer_finalize),
10554         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
10555         (gst_videomixer_collected), (gst_videomixer_change_state):
10556         Fix memleak by unref'ing collectpads instance (when finalizing)
10557         Implement releasing a request pad. Fixes #374479.
10558
10559 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
10560
10561         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
10562
10563         * win32/vs8/gst-plugins-good.sln:
10564         * win32/vs8/libgst1394.vcproj:
10565         * win32/vs8/libgstaasink.vcproj:
10566         * win32/vs8/libgstalaw.vcproj:
10567         * win32/vs8/libgstalpha.vcproj:
10568         * win32/vs8/libgstalphacolor.vcproj:
10569         * win32/vs8/libgstannodex.vcproj:
10570         * win32/vs8/libgstapetag.vcproj:
10571         * win32/vs8/libgstaudiofx.vcproj:
10572         * win32/vs8/libgstauparse.vcproj:
10573         * win32/vs8/libgstautodetect.vcproj:
10574         * win32/vs8/libgstavi.vcproj:
10575         * win32/vs8/libgstcacasink.vcproj:
10576         * win32/vs8/libgstcdio.vcproj:
10577         * win32/vs8/libgstcutter.vcproj:
10578         * win32/vs8/libgstdv.vcproj:
10579         * win32/vs8/libgsteffectv.vcproj:
10580         * win32/vs8/libgstflac.vcproj:
10581         * win32/vs8/libgstflxdec.vcproj:
10582         * win32/vs8/libgstgoom.vcproj:
10583         * win32/vs8/libgsticydemux.vcproj:
10584         * win32/vs8/libgstid3demux.vcproj:
10585         * win32/vs8/libgstjpeg.vcproj:
10586         * win32/vs8/libgstladspa.vcproj:
10587         * win32/vs8/libgstlevel.vcproj:
10588         * win32/vs8/libgstmatroska.vcproj:
10589         * win32/vs8/libgstmikmod.vcproj:
10590         * win32/vs8/libgstmng.vcproj:
10591         * win32/vs8/libgstmonoscope.vcproj:
10592         * win32/vs8/libgstmulaw.vcproj:
10593         * win32/vs8/libgstmultipart.vcproj:
10594         * win32/vs8/libgstpng.vcproj:
10595         * win32/vs8/libgstrtp.vcproj:
10596         * win32/vs8/libgstrtsp.vcproj:
10597         * win32/vs8/libgstshout2.vcproj:
10598         * win32/vs8/libgstsmpte.vcproj:
10599         * win32/vs8/libgstspeex.vcproj:
10600         * win32/vs8/libgsttaglib.vcproj:
10601         * win32/vs8/libgstudp.vcproj:
10602         * win32/vs8/libgstvideobalance.vcproj:
10603         * win32/vs8/libgstvideobox.vcproj:
10604         * win32/vs8/libgstvideoflip.vcproj:
10605         * win32/vs8/libgstvideomixer.vcproj:
10606         * win32/vs8/libgstwavenc.vcproj:
10607         * win32/vs8/libgstwavparse.vcproj:
10608           Add VS8 project files (note that many of the plugins in ext are
10609           disabled by default). Fixes #366492.
10610
10611 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
10612
10613         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
10614           we do not translate debug messages
10615
10616 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
10617
10618         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
10619           fix categorisation, make short desc more explicit, remove unused code
10620           Fixes #372021
10621
10622 2006-11-08  Wim Taymans  <wim@fluendo.com>
10623
10624         * gst/rtp/gstrtpL16depay.c:
10625         * gst/rtp/gstrtpamrdepay.c:
10626         * gst/rtp/gstrtpamrpay.c:
10627         * gst/rtp/gstrtpgsmdepay.c:
10628         * gst/rtp/gstrtph263pay.c:
10629         * gst/rtp/gstrtph263pdepay.c:
10630         * gst/rtp/gstrtph263ppay.c:
10631         * gst/rtp/gstrtph264depay.c:
10632         * gst/rtp/gstrtpmp2tdepay.c:
10633         * gst/rtp/gstrtpmp4gdepay.c:
10634         * gst/rtp/gstrtpmp4gpay.c:
10635         * gst/rtp/gstrtpmp4vdepay.c:
10636         * gst/rtp/gstrtpmp4vpay.c:
10637         * gst/rtp/gstrtpmpadepay.c:
10638         * gst/rtp/gstrtpmpapay.c:
10639         * gst/rtp/gstrtppcmadepay.c:
10640         * gst/rtp/gstrtppcmapay.c:
10641         * gst/rtp/gstrtppcmudepay.c:
10642         * gst/rtp/gstrtppcmupay.c:
10643         * gst/rtp/gstrtpspeexdepay.c:
10644         * gst/rtp/gstrtpspeexpay.c:
10645         * gst/rtp/gstrtpsv3vdepay.c:
10646         Fix element descriptions.
10647
10648 2006-11-08  Wim Taymans  <wim@fluendo.com>
10649
10650         * gst/rtp/gstrtpvorbisdepay.c:
10651         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
10652         Fix description.
10653         Small cleanup in the payloader.
10654
10655 2006-11-08  Wim Taymans  <wim@fluendo.com>
10656
10657         * gst/rtp/Makefile.am:
10658         * gst/rtp/gstrtp.c: (plugin_init):
10659         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
10660         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
10661         (gst_rtp_theora_depay_finalize),
10662         (gst_rtp_theora_depay_parse_configuration),
10663         (gst_rtp_theora_depay_setcaps),
10664         (gst_rtp_theora_depay_switch_codebook),
10665         (gst_rtp_theora_depay_process),
10666         (gst_rtp_theora_depay_set_property),
10667         (gst_rtp_theora_depay_get_property),
10668         (gst_rtp_theora_depay_change_state),
10669         (gst_rtp_theora_depay_plugin_init):
10670         * gst/rtp/gstrtptheoradepay.h:
10671         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
10672         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
10673         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
10674         (gst_rtp_theora_pay_init_packet),
10675         (gst_rtp_theora_pay_flush_packet),
10676         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
10677         (gst_rtp_theora_pay_handle_buffer),
10678         (gst_rtp_theora_pay_plugin_init):
10679         * gst/rtp/gstrtptheorapay.h:
10680         Add theora pay/depayloaders.
10681
10682 2006-11-06  Wim Taymans  <wim@fluendo.com>
10683
10684         * gst/rtp/Makefile.am:
10685         We depend on gsttag to generate the vorbis comments.
10686
10687         * gst/rtp/gstrtpvorbisdepay.c:
10688         (gst_rtp_vorbis_depay_parse_configuration),
10689         (gst_rtp_vorbis_depay_setcaps),
10690         (gst_rtp_vorbis_depay_switch_codebook),
10691         (gst_rtp_vorbis_depay_process):
10692         * gst/rtp/gstrtpvorbisdepay.h:
10693         Parse configuration string in the depayloader.
10694         Implement selecting and switching to a new codebook.
10695         Receiving vorbis over RTP now works.
10696
10697         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
10698         (gst_rtp_vorbis_pay_init_packet),
10699         (gst_rtp_vorbis_pay_finish_headers),
10700         (gst_rtp_vorbis_pay_handle_buffer):
10701         * gst/rtp/gstrtpvorbispay.h:
10702         Set timestamps on outgoing buffers and RTP packets.
10703         Fix configuration string, prepend number of Packet headers.
10704         Fix encoding of ident string.
10705         Add delivery-method to caps.
10706         Streaming vorbis over RTP now works.
10707
10708 2006-11-06  Wim Taymans  <wim@fluendo.com>
10709
10710         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
10711         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
10712         (gst_rtp_vorbis_pay_handle_buffer):
10713         * gst/rtp/gstrtpvorbispay.h:
10714         Generate a valid configuration string in the caps based on the
10715         vorbis headers.
10716
10717 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
10718
10719         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
10720         * ext/cdio/gstcdio.h:
10721         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
10722           Move CD-TEXT utility function into common file so it can also be
10723           used by a future cdioparanoiasrc.
10724
10725 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
10726         
10727         * sys/v4l2/Makefile.am:
10728         * sys/v4l2/gstv4l2object.c:
10729         * sys/v4l2/gstv4l2src.c:
10730         * sys/v4l2/gstv4l2xoverlay.c:
10731         * sys/v4l2/v4l2_calls.c:
10732         * sys/v4l2/v4l2src_calls.c:
10733         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
10734         xoverlay code that is still not implemented.
10735
10736 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
10737
10738         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
10739           We require a -base more recent than 0.10.9, so it's safe to use
10740           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
10741
10742         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
10743         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
10744           Use _newsegment_full() now that we depend on a recent enough core.
10745
10746         * gst/wavparse/gstwavparse.c:
10747           Remove cruft that we don't need any longer now that we depend on
10748           a recent enough -base.
10749
10750 2006-10-31  Wim Taymans  <wim@fluendo.com>
10751
10752         * gst/rtp/Makefile.am:
10753         * gst/rtp/gstrtp.c: (plugin_init):
10754         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
10755         (gst_rtpilbcpay_setcaps):
10756         Fix and activate ILBC pay and depayloaders. Fixes #368162.
10757
10758 2006-10-31  Wim Taymans  <wim@fluendo.com>
10759
10760         * ext/speex/gstspeexdec.c: (speex_dec_convert),
10761         (speex_dec_sink_event), (speex_dec_chain_parse_header):
10762         Some small cleanups, use _scale.
10763
10764 2006-10-31  Wim Taymans  <wim@fluendo.com>
10765
10766         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
10767         Use higher precision scale function.
10768
10769 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
10770
10771         Patch by: Michal Benes  <michal dot benes at itonis tv>
10772
10773         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
10774         (gst_matroska_demux_read_track_encodings),
10775         (gst_matroska_decode_buffer):
10776           Fix several issues with encoded/compressed/encrypted/signed tracks;
10777           also, remove superfluous newline characters from some debug
10778           statements. (#366155)
10779
10780 2006-10-30  Wim Taymans  <wim@fluendo.com>
10781
10782         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
10783         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
10784         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
10785         (gst_smokedec_change_state):
10786         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
10787         (gst_smokeenc_init), (gst_smokeenc_finalize),
10788         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
10789         (gst_smokeenc_resync), (gst_smokeenc_chain),
10790         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
10791         (gst_smokeenc_change_state):
10792         Various cleanups, capsnego and leak fixes.
10793
10794 2006-10-30  Wim Taymans  <wim@fluendo.com>
10795
10796         Patch by: Mark Nauwelaerts  <manauw at skynet be>
10797
10798         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
10799         Fix videomixer so that it can handle any combination of framerates.
10800         Fixes #367221.
10801
10802 2006-10-28  Wim Taymans  <wim@fluendo.com>
10803
10804         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
10805         (gst_avi_demux_parse_file_header),
10806         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
10807         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
10808         (gst_avi_demux_chain):
10809         Fix position query for audio. also fixes timestamps in streaming
10810         mode and bug #364958.
10811         Small cleanups.
10812
10813 2006-10-27  Wim Taymans  <wim@fluendo.com>
10814
10815         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
10816         * ext/libpng/gstpngenc.h:
10817         Fix strides. Fixes #364856.
10818         Cleanup capsnego.
10819         Set caps on outgoing buffers.
10820
10821 2006-10-18  Wim Taymans  <wim@fluendo.com>
10822
10823         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
10824
10825         * gst/rtp/gstrtpgsmpay.c:
10826         * gst/rtp/gstrtph263pay.c:
10827         * gst/rtp/gstrtpmpapay.c:
10828         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
10829         (gst_rtp_pcma_pay_handle_buffer):
10830         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
10831         Add static payload numbers in addition to the dynamic ones.
10832         Fixes #361639.
10833
10834 2006-10-18  Wim Taymans  <wim@fluendo.com>
10835
10836         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
10837         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
10838         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
10839         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
10840         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
10841         * gst/rtsp/rtspdefs.h:
10842         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
10843         * gst/rtsp/rtspurl.h:
10844         Reuse already existing enum for lower transport.
10845         Add rtspt and rtspu protocols.
10846         Send redirect to rtspt when udp times out.
10847
10848 2006-10-18  Wim Taymans  <wim@fluendo.com>
10849
10850         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
10851         (gst_wavparse_stream_data):
10852         Fix seeking some more, mostly for speed changes.
10853
10854 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
10855
10856         Patch by: Fredrik Persson  <frepe at bredband net>
10857
10858         * sys/v4l2/gstv4l2tuner.c:
10859         * sys/v4l2/gstv4l2tuner.h:
10860           Fix _set_channel(): remove useless g_object_notify() for "channel"
10861           property that doesn't exist any longer and therefore now also
10862           useless redirect (#338818).
10863
10864 2006-10-17  Wim Taymans  <wim@fluendo.com>
10865
10866         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
10867         Some drivers do not support unsetting the non-blocking flag once the
10868         device is opened. In those cases, close/open the device in
10869         non-blocking mode. Fixes #362673.
10870
10871 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
10872
10873         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
10874         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
10875         (gst_v4l2src_get_fps):
10876           dear stefan, framespersecond is not frameperiod, reverting but adding
10877           comment
10878
10879 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
10880
10881         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
10882         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
10883         (gst_v4l2src_get_fps):
10884           Numerator is numerator and denominator is denominator. Say that aloud
10885           5 times and retry after next beer.
10886
10887 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
10888
10889         Patch by: Josep Torra Valles  <josep at fluendo com>
10890
10891         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
10892         * ext/esd/esdsink.c: (gst_esdsink_write):
10893         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
10894         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
10895         (gst_flac_dec_send_newsegment):
10896         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
10897         (gst_flac_enc_tell_callback):
10898         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
10899         (smokecodec_parse_header), (smokecodec_decode):
10900         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
10901         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
10902         * gst/goom/Makefile.am:
10903         * gst/goom/gstgoom.c:
10904         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
10905         * gst/rtsp/gstrtspsrc.c:
10906         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
10907         * gst/udp/gstudpsink.c:
10908         * gst/udp/gstudpsrc.c:
10909         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
10910         * sys/sunaudio/gstsunaudiomixertrack.h:
10911           Fix a bunch of problems discovered by the Forte compiler, mostly type
10912           mixups and pointer arithmetics with void pointers. Fixes #362603.
10913
10914 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
10915
10916         * ext/speex/gstspeex.c: (plugin_init):
10917         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
10918         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
10919         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
10920         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
10921         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
10922         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
10923         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
10924         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
10925         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
10926         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
10927         (gst_speex_enc_chain), (gst_speex_enc_get_property),
10928         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
10929         * ext/speex/gstspeexenc.h:
10930           Miscellaneous clean-ups, among other things: speexenc => enc to
10931           enhance code readability; change speexenc => speex_enc; in chain
10932           function unref input buffer in case of error; take reference in
10933           event function; use boilerplate macro; use gst_pad_query_peer_*
10934           convenience functions.
10935
10936 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
10937
10938         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
10939         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
10940         (gst_speexenc_set_header_on_caps):
10941           Fix some mem leaks.
10942
10943 2006-10-11  Wim Taymans  <wim@fluendo.com>
10944
10945         * gst/rtsp/URLS:
10946         Added some other URL.
10947
10948         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
10949         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
10950         (gst_rtspsrc_open), (gst_rtspsrc_play),
10951         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
10952         * gst/rtsp/gstrtspsrc.h:
10953         Work on fallback to TCP connection when the UDP socket times out.
10954         Handler server requests, just reply with OK for now.
10955
10956         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
10957         * gst/rtsp/rtspdefs.h:
10958         Added some more Real extension headers.
10959
10960         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
10961         Fix parsing of urls with a ':' that is not part of the hostname:port
10962         part of the url.
10963
10964 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
10965
10966         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
10967         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
10968         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
10969           Activate pad before adding it to the already-running element.
10970
10971         * tests/check/elements/icydemux.c: (icydemux_found_pad):
10972           Activate newly-created pad too.
10973
10974 2006-10-11  Wim Taymans  <wim@fluendo.com>
10975
10976         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
10977
10978         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
10979         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
10980         (gst_udpsrc_start):
10981         Fix some leaks in caps and uris. Fixes #361252.
10982
10983 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
10984
10985         * gst/wavparse/Makefile.am:
10986           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
10987
10988 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
10989
10990         * sys/v4l2/gstv4l2xoverlay.c:
10991         * sys/v4l2/gstv4l2xoverlay.h:
10992         Fix build as per the patch in #338818 comment 36.
10993
10994 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
10995
10996         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
10997           Activate pads before adding them to the source.
10998
10999 2006-10-06  Wim Taymans  <wim@fluendo.com>
11000
11001         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
11002         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
11003         Activate pads before adding.
11004
11005 2006-10-06  Wim Taymans  <wim@fluendo.com>
11006
11007         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
11008         (gst_multipart_find_pad_by_mime):
11009         Activate pads before adding.
11010
11011         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
11012         BOILERPLATE sets parent_class for us.
11013
11014 2006-10-06  Wim Taymans  <wim@fluendo.com>
11015
11016         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
11017         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
11018         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
11019         (gst_rtspsrc_alloc_udp_ports),
11020         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
11021         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
11022         (gst_rtspsrc_create_transports_string),
11023         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
11024         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11025         * gst/rtsp/gstrtspsrc.h:
11026         Rework how the transport string is constructed, try to share channels
11027         and udp ports.
11028         Make most of the stuff less dependant on RTP as we are also going to use
11029         it for RDT.
11030         Add support for transport specific session managers.
11031
11032         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
11033         Implement _flush().
11034
11035         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
11036         * gst/rtsp/rtspdefs.h:
11037         Add generic error return code.
11038
11039         * gst/rtsp/rtspext.h:
11040         Add support for pluggable tranport strings.
11041
11042         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
11043         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
11044         (rtsp_ext_wms_get_context):
11045         Detect WMServer and activate the extension.
11046
11047         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
11048         (rtsp_transport_get_manager), (rtsp_transport_parse):
11049         * gst/rtsp/rtsptransport.h:
11050         Added methods to get mime/manager for certain transports.
11051
11052 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
11053
11054         * ext/cairo/gsttimeoverlay.c:
11055         (gst_cairo_time_overlay_update_font_height):
11056         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
11057         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
11058         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
11059         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
11060         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
11061         * ext/libpng/gstpngdec.c: (user_endrow_callback):
11062         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
11063         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
11064         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
11065         (gst_avi_demux_stream_data):
11066         * gst/cutter/gstcutter.c: (gst_cutter_chain):
11067         * gst/debug/efence.c: (gst_efence_buffer_alloc),
11068         (gst_fenced_buffer_copy):
11069         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
11070         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
11071         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
11072         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
11073         (gst_rtspsrc_handle_message):
11074         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
11075         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
11076           Printf format fixes.
11077
11078 2006-10-04  Wim Taymans  <wim@fluendo.com>
11079
11080         * gst/rtsp/Makefile.am:
11081         Dist new .h file too.
11082
11083 2006-10-04  Wim Taymans  <wim@fluendo.com>
11084
11085         * gst/rtsp/Makefile.am:
11086         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
11087         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
11088         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
11089         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
11090         (gst_rtspsrc_parse_rtpmap),
11091         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
11092         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
11093         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
11094         * gst/rtsp/gstrtspsrc.h:
11095         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
11096         * gst/rtsp/rtspdefs.h:
11097         * gst/rtsp/rtspext.h:
11098         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
11099         (rtsp_ext_wms_get_context):
11100         * gst/rtsp/rtspextwms.h:
11101         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
11102         (rtsp_transport_parse):
11103         * gst/rtsp/rtsptransport.h:
11104         Factor out extension in separate module.
11105         Fix getcaps to filter against the padtemplate.
11106         Use Content-Base if the server gives one.
11107         Rework the transport parsing a bit for future extensions.
11108         Added some Real Header field definitions.
11109
11110 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11111
11112         * docs/plugins/Makefile.am:
11113         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11114         * docs/plugins/gst-plugins-good-plugins-sections.txt:
11115           added v4l2 stubs
11116         * gst-plugins-good.spec.in:
11117           add v4l2
11118
11119 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
11120
11121         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
11122           Extract disc/album/medium number and count and try harder
11123           to extract track number/count.
11124
11125 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
11126
11127         * configure.ac:
11128         * sys/Makefile.am:
11129           add build stuff for v4l2, needs --enable-experimental until
11130           the last bits are resolved
11131
11132 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
11133
11134         * tests/check/Makefile.am:
11135           Disable autodetect test temporarily, so that the build bots
11136           update -bad and the ranks of unreliable video sinks in there.
11137
11138         * tests/check/elements/autodetect.c: (GST_START_TEST):
11139           Skip test if no usable videosink is found.
11140
11141 2006-09-29  Wim Taymans  <wim@fluendo.com>
11142
11143         * gst/rtsp/URLS:
11144         Add some more URLs.
11145
11146         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
11147         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
11148         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
11149         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
11150         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
11151         (gst_rtspsrc_loop), (gst_rtspsrc_send),
11152         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
11153         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
11154         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
11155         * gst/rtsp/gstrtspsrc.h:
11156         Add timeout property to control UDP timeouts.
11157         Fix error messages.
11158         Also start a loop function when operating in UDP mode so that we can
11159         do some more stuff async.
11160         Handle element messages from udpsrc to detect timeouts. If a timeout
11161         happens we currently generate an error.
11162         API: rtspsrc::timeout property.
11163
11164         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
11165         (gst_udpsrc_create):
11166         Really implement the timeout in microseconds and not milliseconds.
11167
11168 2006-09-29  Wim Taymans  <wim@fluendo.com>
11169
11170         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
11171         (gst_udpsrc_create), (gst_udpsrc_set_property),
11172         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
11173         * gst/udp/gstudpsrc.h:
11174         Added property to post a message on timeout.
11175         Updated docs.
11176         When restarting the select, initialize the fdsets again.
11177         Init control sockets so we don't accidentally close a random socket.
11178         API: GstUDPSrc::timeout property
11179
11180 2006-09-29  Wim Taymans  <wim@fluendo.com>
11181
11182         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
11183         Fix flag registration.
11184
11185         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
11186         Reading 0 also means 'no more commands'
11187
11188 2006-09-29  Wim Taymans  <wim@fluendo.com>
11189
11190         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
11191
11192         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
11193         Fix possible infinite loop when shutting down, a read can also return
11194         0 to indicate no more messages are available. Fixes #358156.
11195
11196 2006-09-25  Wim Taymans  <wim@fluendo.com>
11197
11198         * gst/autodetect/gstautoaudiosink.c:
11199         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
11200         (gst_auto_audio_sink_find_best):
11201         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
11202         Small cleanups.
11203         don't try to set "sync" property when it is not available.
11204
11205 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11206
11207         Patch by: Peter Kjellerstedt  <pkj at axis com>
11208
11209         * gst/alpha/gstalpha.c:
11210         * gst/rtp/gstrtpamrdepay.c:
11211         * gst/rtsp/gstrtspsrc.c:
11212         * gst/udp/gstudpsrc.c:
11213         * gst/videomixer/videomixer.c:
11214           Include stdlib.h in some more places, makes things compile
11215           with uClibc and -Werror (#357592).
11216
11217 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11218
11219         * ext/jpeg/gstjpegdec.c:
11220           Set minimum height to 8 (from 16), our code should handle
11221           that fine. Some of the buttons on the apple trailer site
11222           are apparently only 15 pixels high (see #357470).
11223
11224 2006-09-23  Wim Taymans  <wim@fluendo.com>
11225
11226         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
11227         (gst_rtspsrc_open):
11228         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11229         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
11230         (rtsp_connection_receive):
11231         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
11232         * gst/rtsp/rtspdefs.h:
11233         Improve error reporting.
11234
11235 2006-09-23  Wim Taymans  <wim@fluendo.com>
11236
11237         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
11238         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
11239         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
11240         * gst/rtp/gstrtpdepay.c:
11241         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
11242         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
11243         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
11244         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
11245         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
11246         (gst_rtp_mp2t_depay_plugin_init):
11247         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
11248         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
11249         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
11250         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
11251         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
11252         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
11253         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
11254         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
11255         Fix klass typos.
11256         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
11257
11258 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
11259
11260         * configure.ac:
11261           Need  -base CVS for gst_base_rtp_depayload_push_ts().
11262
11263 2006-09-22  Wim Taymans  <wim@fluendo.com>
11264
11265         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
11266         Don't check for a tag that is never there and check if we read the
11267         correct tag. Fixes seeking again.
11268         We must post an error when all pads are unlinked.
11269
11270 2006-09-22  Wim Taymans  <wim@fluendo.com>
11271
11272         * gst/rtp/Makefile.am:
11273         * gst/rtp/gstrtp.c: (plugin_init):
11274         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
11275         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
11276         (gst_rtp_vorbis_pay_reset_packet),
11277         (gst_rtp_vorbis_pay_init_packet),
11278         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
11279         (gst_rtp_vorbis_pay_handle_buffer):
11280         More fixage, set endoder-params correctly in the payloader.
11281
11282 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
11283
11284         * gst/autodetect/gstautoaudiosink.c:
11285         (gst_auto_audio_sink_base_init):
11286         * gst/autodetect/gstautovideosink.c:
11287         (gst_auto_video_sink_base_init):
11288           Make static pad templates static to appease valgrind's leak
11289           detector.
11290
11291         * tests/check/Makefile.am:
11292         * tests/check/elements/.cvsignore:
11293         * tests/check/elements/autodetect.c: (GST_START_TEST),
11294         (autodetect_suite):
11295           Add simple test for the ghostpad lockup on shutdown fixed in core
11296           CVS (audio bit disabled because it would need dozens of alsa
11297           suppressions and I'm too lazy to add those now).
11298
11299 2006-09-22  Wim Taymans  <wim@fluendo.com>
11300
11301         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
11302         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
11303         Small cleanups.
11304
11305         * gst/rtp/Makefile.am:
11306         * gst/rtp/gstrtp.c: (plugin_init):
11307         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
11308         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
11309         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
11310         (gst_rtp_vorbis_depay_process),
11311         (gst_rtp_vorbis_depay_set_property),
11312         (gst_rtp_vorbis_depay_get_property),
11313         (gst_rtp_vorbis_depay_change_state),
11314         (gst_rtp_vorbis_depay_plugin_init):
11315         * gst/rtp/gstrtpvorbisdepay.h:
11316         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
11317         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
11318         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
11319         (gst_rtp_vorbis_pay_flush_packet),
11320         (gst_rtp_vorbis_pay_append_buffer),
11321         (gst_rtp_vorbis_pay_handle_buffer),
11322         (gst_rtp_vorbis_pay_plugin_init):
11323         * gst/rtp/gstrtpvorbispay.h:
11324         Add experimental vorbis pay and depayloaders.
11325
11326 2006-09-21  Wim Taymans  <wim@fluendo.com>
11327
11328         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
11329         Fix profile-level-id parsing and setup.
11330
11331 2006-09-21  Wim Taymans  <wim@fluendo.com>
11332
11333         * gst/udp/README:
11334         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
11335         Update README, simple cleanup.
11336
11337 2006-09-21  Wim Taymans  <wim@fluendo.com>
11338
11339         * gst/rtp/README:
11340         Update README with some examples.
11341
11342         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
11343         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
11344         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
11345         (gst_rtp_mp4g_pay_setcaps):
11346         * gst/rtp/gstrtpmp4gpay.h:
11347         Make optional RTP parameters of type STRING, as required by the
11348         application/x-rtp caps specification.
11349
11350 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
11351
11352         * gst/rtp/gstrtph263pdepay.c:
11353         * gst/rtp/gstrtph263ppay.c:
11354         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
11355         RTP header.
11356
11357 2006-09-20  Wim Taymans  <wim@fluendo.com>
11358
11359         * gst/rtp/Makefile.am:
11360         And makefile too.
11361
11362 2006-09-20  Wim Taymans  <wim@fluendo.com>
11363
11364         * gst/rtp/gstrtp.c: (plugin_init):
11365         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
11366         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
11367         (decode_base64), (gst_rtp_asf_depay_setcaps),
11368         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
11369         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
11370         (gst_rtp_asf_depay_plugin_init):
11371         * gst/rtp/gstrtpasfdepay.h:
11372         Added preliminary ASF depayloader.
11373
11374         * gst/rtp/gstrtph264depay.c: (decode_base64):
11375         Fix base64 decoding.
11376
11377 2006-09-20  Wim Taymans  <wim@fluendo.com>
11378
11379         * gst/rtsp/URLS:
11380         Added some test URLS.
11381
11382         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
11383         (gst_rtspsrc_loop), (gst_rtspsrc_open):
11384         * gst/rtsp/gstrtspsrc.h:
11385         When creating streams, give access to the complete SDP.
11386         Fix some leaks.
11387         Collect and merge global stream properties in stream caps.
11388         Preliminary support for WMServer.
11389
11390         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
11391         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
11392         (rtsp_connection_receive):
11393         * gst/rtsp/rtspconnection.h:
11394         Make connection interruptable.
11395         Refactor to make it reconnectable.
11396         Don't fail on short reads when reading data packets.
11397
11398         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
11399         (rtsp_url_get_port):
11400         * gst/rtsp/rtspurl.h:
11401         Add methods for getting/setting the port.
11402
11403         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
11404         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
11405         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
11406         (sdp_media_get_format), (sdp_parse_line),
11407         (sdp_message_parse_buffer):
11408         Fix headers. 
11409         Add methods for getting multiple attributes with the same name.
11410         Increase buffer size when parsing.
11411         Fix parsing of a=foo fields.
11412
11413         * gst/rtsp/test.c: (main):
11414         Update to new connection API.
11415
11416         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
11417         (rtsp_message_init_response), (rtsp_message_init_data),
11418         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
11419         * gst/rtsp/rtspmessage.h:
11420         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
11421         * gst/rtsp/rtsptransport.h:
11422         * gst/rtsp/sdp.h:
11423         * gst/rtsp/sdpmessage.h:
11424         * gst/rtsp/gstrtsp.c:
11425         * gst/rtsp/gstrtsp.h:
11426         * gst/rtsp/gstrtpdec.c:
11427         * gst/rtsp/gstrtpdec.h:
11428         * gst/rtsp/rtsp.h:
11429         * gst/rtsp/rtspdefs.c:
11430         * gst/rtsp/rtspdefs.h:
11431         Dual licensed under MIT and LGPL now.
11432
11433 2006-09-19  Wim Taymans  <wim@fluendo.com>
11434
11435         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
11436         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
11437         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
11438         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
11439         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
11440         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
11441         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
11442         * gst/rtsp/gstrtspsrc.h:
11443         Reorganize stream parsing and creation.
11444         Detect container formats in interleaved mode.
11445         Keep more state about the streams.
11446         Assume a server also supports PLAY if it does not say.
11447         Add unicast and interleaved properties to TCP transport requests to make
11448         some servers happy (WMServer).
11449
11450         * gst/rtsp/sdpmessage.h:
11451         Add some defines for the standard Bandwidth types.
11452
11453 2006-09-19  Wim Taymans  <wim@fluendo.com>
11454
11455         * gst/rtsp/test.c: (main):
11456         Fix build.
11457
11458 2006-09-19  Wim Taymans  <wim@fluendo.com>
11459
11460         * gst/wavparse/gstwavparse.c:
11461         Add ms-gsm to the src template.
11462
11463 2006-09-18  Wim Taymans  <wim@fluendo.com>
11464
11465         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11466         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
11467         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
11468         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
11469         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
11470         * gst/rtsp/gstrtspsrc.h:
11471         Small cleanups, added documentation.
11472         Try to clean up the requests and responses.
11473         Refactor parsing the supported methods.
11474
11475         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
11476         (rtsp_connection_create), (rtsp_connection_send),
11477         (parse_response_status), (parse_request_line),
11478         (rtsp_connection_receive), (rtsp_connection_close),
11479         (rtsp_connection_free):
11480         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
11481         (rtsp_transport_init), (rtsp_transport_parse),
11482         (rtsp_transport_free):
11483         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
11484         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
11485         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
11486         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
11487         Use g_return_val some more.
11488
11489         * gst/rtsp/rtspdefs.h:
11490         Add more enum values to track initial states.
11491
11492         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
11493         (rtsp_message_init_request), (rtsp_message_new_response),
11494         (rtsp_message_init_response), (rtsp_message_init_data),
11495         (rtsp_message_unset), (rtsp_message_free),
11496         (rtsp_message_add_header), (rtsp_message_remove_header),
11497         (rtsp_message_get_header), (rtsp_message_set_body),
11498         (rtsp_message_take_body), (rtsp_message_get_body),
11499         (rtsp_message_steal_body), (rtsp_message_dump):
11500         * gst/rtsp/rtspmessage.h:
11501         Reorder arguments, object goes as the first one.
11502         Use g_return_val some more.
11503
11504 2006-09-18  Wim Taymans  <wim@fluendo.com>
11505
11506         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
11507         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
11508         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
11509         * gst/rtsp/gstrtspsrc.h:
11510         Export sometimes source pad with correct caps on the template, create
11511         the ghostpad from the template.
11512         Remove RTCP template as we never expose RTCP.
11513         Protect against invalid body size.
11514         Avoid memcpy when creating the output buffer.
11515         Properly post an error and send EOS when the loop function is shut down.
11516
11517 2006-09-18  Wim Taymans  <wim@fluendo.com>
11518
11519         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
11520
11521         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
11522         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
11523         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
11524         * gst/rtsp/gstrtspsrc.h:
11525         Make sure we can never set an invalid location.
11526
11527         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
11528         * gst/rtsp/rtspmessage.h:
11529         Added _steal_body method for future use.
11530
11531         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
11532         Make freeing of NULL url return immediatly.
11533
11534 2006-09-18  Wim Taymans  <wim@fluendo.com>
11535
11536         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
11537
11538         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
11539         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
11540         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
11541         (gst_rtspsrc_change_state):
11542         * gst/rtsp/gstrtspsrc.h:
11543         Use boilerplate.
11544         Make rtspsrc subclass GstBin to make state changes easier.
11545         Add Range header field on the PLAY request.
11546
11547 2006-09-18  Wim Taymans  <wim@fluendo.com>
11548
11549         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
11550
11551         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
11552         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
11553         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
11554         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
11555         * gst/rtsp/rtspconnection.c: (inet_aton):
11556         Small cleanups.
11557         when multicast is selected as the transport, create UDP sources and
11558         connect to the multicast group.
11559         Move parsing and setting of caps to a common place.
11560         Fixes #349894.
11561
11562 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
11563
11564         * ext/flac/gstflactag.c:
11565         * gst/alpha/gstalpha.c:
11566         * gst/debug/breakmydata.c:
11567         * gst/debug/negotiation.c:
11568         * gst/debug/testplugin.c:
11569         * gst/effectv/gstaging.c:
11570         * gst/effectv/gstdice.c:
11571         * gst/effectv/gstedge.c:
11572         * gst/effectv/gstquark.c:
11573         * gst/effectv/gstrev.c:
11574         * gst/effectv/gstshagadelic.c:
11575         * gst/effectv/gstvertigo.c:
11576         * gst/effectv/gstwarp.c:
11577         * gst/multipart/multipartdemux.c:
11578         * gst/multipart/multipartmux.c:
11579         * gst/videobox/gstvideobox.c:
11580         * gst/videofilter/gstgamma.c:
11581         * gst/videofilter/gstvideotemplate.c:
11582         * gst/videomixer/videomixer.c:
11583         * sys/sunaudio/gstsunaudiosrc.h:
11584         More G_OBJECT macro fixing.
11585
11586 2006-09-16  Wim Taymans  <wim@fluendo.com>
11587
11588         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
11589
11590         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
11591         Correctly set the dwLength in strh.
11592         With this patch, the file duration is now displayed correctly in window
11593         media player and the AVI plays completely. Fixes #356147
11594
11595 2006-09-15  Wim Taymans  <wim@fluendo.com>
11596
11597         Patch by: Darren Kenny <darren dot kenny at sun dot com>
11598
11599         * sys/sunaudio/gstsunaudiomixerctrl.c:
11600         (gst_sunaudiomixer_ctrl_build_list):
11601         Set the output track as the MASTER so that the gnome-settings-daemon
11602         keybindings for changing the volume using the keyboard works.
11603         Fixes #356142.
11604
11605 2006-09-15  Wim Taymans  <wim@fluendo.com>
11606
11607         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
11608         Fix documentation, it is not possible to control the framerate of jpegdec
11609         using filtered caps yet. Fixes #355210.
11610         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
11611         stop when there is an error.
11612
11613 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
11614
11615         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
11616         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
11617           Don't interpret a first buffer with an offset of NONE as
11618           'from the middle of the stream', but only a first buffer
11619           that has a valid buffer offset that's non-zero (see #345449).
11620
11621 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
11622
11623         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
11624         (gst_icydemux_typefind_or_forward):
11625         * gst/icydemux/gsticydemux.h:
11626           When we merge/collect multiple incoming buffers for typefinding
11627           purposes, keep an initial 0 offset on the first outgoing buffer
11628           as well (otherwise id3demux won't work right). Fixes #345449.
11629           Also Make buffer metadata writable before setting buffer caps.
11630
11631         * tests/check/elements/icydemux.c: (typefind_succeed),
11632         (cleanup_icydemux), (push_data), (GST_START_TEST),
11633         (icydemux_suite):
11634           Small test case for the above.
11635
11636 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
11637
11638         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
11639         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
11640         (gst_avi_demux_stream_header_push),
11641         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11642         (gst_avi_demux_loop):
11643           More code reuse and better logging in _peek_chunk(). Reintroduce check
11644           for chunk sizes before reading them (avoid oom). Better handling for 
11645           invalid chunksizes when streaming.
11646
11647 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
11648
11649         * gst/level/gstlevel.c: (gst_level_set_property):
11650         * gst/level/gstlevel.h:
11651           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
11652           René Stadler
11653
11654 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
11655
11656         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
11657         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
11658         (gst_avi_demux_stream_data):
11659           Revert one change to fix streaming avi (adapter size != data size).
11660
11661 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
11662
11663         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
11664
11665         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
11666         (gst_matroska_demux_reset),
11667         (gst_matroska_demux_read_track_encodings),
11668         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
11669         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
11670         (gst_matroska_demux_subtitle_caps):
11671         * gst/matroska/matroska-ids.h:
11672           Add support for VOBSUB subtitle tracks and zlib-compressed
11673           tracks. Make sure we start on a keyframe after a seek. (#343348)
11674
11675 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
11676
11677         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
11678         (gst_matroska_demux_push_flac_codec_priv_data),
11679         (gst_matroska_demux_push_xiph_codec_priv_data),
11680         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
11681         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
11682         * gst/matroska/matroska-ids.h:
11683           Add basic FLAC support (#311586), not perfect yet though, needs some
11684           tweaking in flacdec; also, seeking could be better.
11685           Do better bounds checking when deserialising vorbis stream headers
11686           to make sure we don't read beyond the end of the buffer on bad input.
11687
11688 2006-09-04  Wim Taymans  <wim@fluendo.com>
11689
11690         Patch by: Alessandro Decina <alessandro at nnva dot org>
11691
11692         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
11693         Seeking back in a file containing a CMML stream errors out if the seek
11694         goes back up to the CMML headers. This is because after the seek the xml
11695         processing instruction <?xml ...?> is submitted to the xml parser again, 
11696         which results in an error. The attached patch fixes the problem. 
11697         Fixes #353908.
11698
11699         * ext/annodex/gstcmmlenc.h:
11700         Fix authors name.
11701
11702
11703 2006-08-28  Andy Wingo  <wingo@pobox.com>
11704
11705         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
11706         New helper function to lessen the ifdefs.
11707         (GST_INFO_OBJECT): 
11708         (gst_dv1394src_iso_receive): Use it.
11709         (gst_dv1394src_create): Also use the control sockets in iec61883
11710         mode.
11711         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
11712         handle for AVC operations; fixes #348233.
11713
11714 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
11715
11716         * configure.ac:
11717         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11718         * docs/plugins/inspect/plugin-audiofx.xml:
11719         * docs/plugins/inspect/plugin-audiofxgood.xml:
11720         * gst/audiofx/Makefile.am:
11721         * gst/audiofx/audiofx.c:
11722         * gst/audiofxgood/.cvsignore:
11723         * gst/audiofxgood/Makefile.am:
11724         * gst/audiofxgood/audiofx.c:
11725         * gst/audiofxgood/audiopanorama.c:
11726         * gst/audiofxgood/audiopanorama.h:
11727           Rename again (audiofxgood -> audiofx).
11728
11729 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
11730
11731         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
11732         (gst_avi_demux_stream_scan):
11733           Initialze variables.
11734
11735 2006-08-25  Wim Taymans  <wim@fluendo.com>
11736
11737         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11738         (gst_avi_demux_init), (gst_avi_demux_finalize),
11739         (gst_avi_demux_reset), (gst_avi_demux_index_last),
11740         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
11741         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
11742         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
11743         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
11744         (gst_avi_demux_massage_index),
11745         (gst_avi_demux_calculate_durations_from_index),
11746         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
11747         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
11748         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
11749         (gst_avi_demux_change_state):
11750         * gst/avi/gstavidemux.h:
11751         More attempts to turn this into readable code.
11752         Don't leak adapters.
11753         Calculate duration according to index more efficiently.
11754         Don't try to act like we drive the pipeline in chain mode.
11755
11756 2006-08-25  Wim Taymans  <wim@fluendo.com>
11757
11758         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
11759         Fix build.
11760
11761 2006-08-25  Wim Taymans  <wim@fluendo.com>
11762
11763         Patch by: Alessandro Decina <alessandro at nnva dot org>
11764
11765         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
11766         Do some extra sanity checks.
11767         Fixes #350340.
11768
11769         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
11770         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
11771         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
11772         Check if clip->start_time is valid before adding the clip to the
11773         track list.
11774         Reset enc->preamble going from PAUSED to READY.
11775         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
11776         only used for EOS.
11777         Only post an error message if we were the one that created the fatal
11778         GstFlowReturn value.
11779
11780         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
11781         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
11782         Parse the seconds field of the npt-sec time format using %llu rather than
11783         %d and check that the value scaled by GST_SECOND doesn't overflow.
11784         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
11785         Lookup a clip's track with clip->track rather than clip->id which
11786         makes no sense.
11787         Identify a clip by its track and start time and not its xml id.
11788         do some more input checking and make sure we don't do undefined shifts.
11789
11790         * tests/check/elements/cmmldec.c: (setup_cmmldec),
11791         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
11792         (cmml_tag_message_pop), (check_headers), (push_clip_full),
11793         (push_clip), (push_empty_clip), (check_output_clip),
11794         (GST_START_TEST), (cmmldec_suite):
11795         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
11796         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
11797         (check_headers), (push_clip), (check_clip_times), (check_clip),
11798         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
11799         Added some more checks.
11800
11801 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
11802
11803         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
11804         (gst_audio_panorama_set_property),
11805         (gst_audio_panorama_get_property),
11806         (gst_audio_panorama_transform_m2s_int),
11807         (gst_audio_panorama_transform_s2s_int),
11808         (gst_audio_panorama_transform_m2s_float),
11809         (gst_audio_panorama_transform_s2s_float):
11810         * gst/audiofxgood/audiopanorama.h:
11811         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
11812           Make also the pan-property float (saves scaling and yields better
11813           resolution)
11814
11815 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
11816
11817         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
11818         (gst_audio_panorama_transform_m2s_float),
11819         (gst_audio_panorama_transform_s2s_float):
11820           ChangeLog surgery to add cymax's real name
11821
11822
11823 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
11824
11825         Patch by: René Stadler <mail@renestadler.de>
11826
11827         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
11828         (gst_audio_panorama_transform_m2s_int),
11829         (gst_audio_panorama_transform_s2s_int),
11830         (gst_audio_panorama_transform_m2s_float),
11831         (gst_audio_panorama_transform_s2s_float),
11832         (gst_audio_panorama_transform):
11833         * gst/audiofxgood/audiopanorama.h:
11834           Added float support
11835
11836 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
11837
11838         * gst/audiofxgood/audiopanorama.c:
11839         (gst_audio_panorama_transform_m2s):
11840           Fix docs & debug category. Add Fixme for volume pan levels.
11841
11842 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
11843
11844         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
11845         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
11846         (gst_avi_demux_stream_header_pull),
11847         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11848         (gst_avi_demux_chain):
11849           unbreak AVI index handling, some more debug, remove an obsolete
11850           adapter_flush that caused streaming to wander off in the wild
11851
11852 2006-08-24  Wim Taymans  <wim@fluendo.com>
11853
11854         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
11855         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
11856         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
11857         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11858         (gst_avi_demux_calculate_durations_from_index),
11859         (gst_avi_demux_stream_header_push),
11860         (gst_avi_demux_stream_header_pull):
11861         * gst/avi/gstavidemux.h:
11862         Some more cleanups. 
11863         Fix totalFrames parsing in ODML.
11864         Disable use of index for length calculation in case of ODML as this is
11865         broken now.
11866
11867 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
11868
11869         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
11870           Use libgsttag helper function here too.
11871
11872 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
11873
11874         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
11875         (gst_avi_demux_init), (gst_avi_demux_dispose),
11876         (gst_avi_demux_reset), (gst_avi_demux_index_next),
11877         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
11878         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
11879         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
11880         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
11881         (gst_avi_demux_parse_subindex),
11882         (gst_avi_demux_read_subindexes_push),
11883         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
11884         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
11885         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
11886         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
11887         (gst_avi_demux_stream_header_pull),
11888         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
11889         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
11890         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
11891         (gst_avi_demux_change_state):
11892         * gst/avi/gstavidemux.h:
11893           Initial streaming support for avidemux (fixes #336465)
11894
11895 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
11896
11897         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
11898           There is no taglibmux element ...
11899
11900         * gst/rtsp/gstrtspsrc.c:
11901           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
11902           was complaining about unknown entity here.
11903
11904 2006-08-22  Wim Taymans  <wim@fluendo.com>
11905
11906         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11907         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
11908         (gst_avi_demux_process_next_entry):
11909         * gst/avi/gstavidemux.h:
11910         Mark DISCONT.
11911         Remove old unused fields and reorder the struct a bit.
11912
11913 2006-08-22  Wim Taymans  <wim@fluendo.com>
11914
11915         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
11916         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
11917         (gst_rtspsrc_pause):
11918         * gst/rtsp/gstrtspsrc.h:
11919         * sys/oss/gstosssink.c: (gst_oss_sink_open),
11920         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
11921         Small documentation updates.
11922
11923 2006-08-22  Wim Taymans  <wim@fluendo.com>
11924
11925         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
11926         (gst_avi_demux_index_entry_for_time),
11927         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
11928         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
11929         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
11930         (gst_avi_demux_next_data_buffer),
11931         (gst_avi_demux_calculate_durations_from_index),
11932         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
11933         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
11934         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
11935         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
11936         * gst/avi/gstavidemux.h:
11937         Precalc most of the duration query for each stream.
11938         Make seeking more correct.
11939         Use GstSegment to track position and duration.
11940         Code cleanups and leak fixes.
11941         Calculate correct total duration based on index length.
11942
11943 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
11944
11945         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
11946         (parse_insert_string_field):
11947           If strings in text fields are marked ISO8859-1, but contain
11948           valid UTF-8 already, then handle them as UTF-8 and ignore
11949           the encoding. (#351794)
11950
11951 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
11952
11953         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
11954         (gst_flac_dec_write), (gst_flac_dec_loop),
11955         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
11956         (gst_flac_dec_src_query):
11957         * ext/flac/gstflacdec.h:
11958           Make flac-in-ogg work (#352100).
11959
11960 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
11961
11962         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
11963           Don't unref buffers of which we've already given away
11964           ownership to the adapter.
11965
11966 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
11967
11968         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
11969           Make metadata extraction actually work.
11970
11971         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
11972         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
11973         (gst_speexenc_chain):
11974           Fix metadata writing: replace old code which wrote completely
11975           broken tags with libgsttag-based code. Plus miscellaneous
11976           code cleanups (use static pad templates etc.) and a bunch
11977           of leak fixes.
11978
11979 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
11980
11981         * gst/audiopanorama/.cvsignore:
11982         * gst/audiopanorama/Makefile.am:
11983         * gst/audiopanorama/audiofx.c:
11984         * gst/audiopanorama/audiopanorama.c:
11985         * gst/audiopanorama/audiopanorama.h:
11986           die! die! die! you should never have been there
11987
11988 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
11989
11990         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
11991         Fix invalid memory access in audiopanorama test suite.
11992
11993 2006-08-21  Edward Hervey  <edward@fluendo.com>
11994
11995         * tests/check/elements/.cvsignore:
11996         ignore built file
11997
11998 2006-08-21  Wim Taymans  <wim@fluendo.com>
11999
12000         * gst/rtp/Makefile.am:
12001         Fix the build again.
12002
12003 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
12004
12005         * gst/audiofxgood/.cvsignore:
12006         * gst/audiofxgood/Makefile.am:
12007         * gst/audiofxgood/audiofx.c: (plugin_init):
12008         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
12009         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12010         (gst_audio_panorama_set_property),
12011         (gst_audio_panorama_get_property),
12012         (gst_audio_panorama_get_unit_size),
12013         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
12014         (gst_audio_panorama_transform_m2s),
12015         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
12016         * gst/audiofxgood/audiopanorama.h:
12017           resubmit with the desired name *again*
12018
12019 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12020
12021         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
12022         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
12023           use g_assert in _get_unit_size
12024
12025 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12026
12027         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12028         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12029         * docs/plugins/inspect/plugin-audiofxgood.xml:
12030           cleanup -unused.txt to make it useful, add previously missing docs
12031
12032         * ext/Makefile.am:
12033           Quietly (accidentally) enable LADSPA for building by default, 
12034           despite the fact that it doesn't meet the plugin checklist.
12035             -- Added by Jan Schmidt 18 Dec 2006
12036
12037         * ext/esd/esdmon.c:
12038         * ext/esd/esdsink.c:
12039         * ext/esd/gstesd.c: (plugin_init):
12040           reflow to get rid of two external symbols
12041
12042         * gst/audiofxgood/audiofx.c: (plugin_init):
12043           re-add
12044
12045 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12046
12047         * configure.ac:
12048         * gst/audiofxgood/.cvsignore:
12049         * gst/audiofxgood/Makefile.am:
12050         * gst/audiofxgood/audiofx.c
12051         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
12052         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
12053         (gst_audio_panorama_set_property),
12054         (gst_audio_panorama_get_property),
12055         (gst_audio_panorama_get_unit_size),
12056         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
12057         (gst_audio_panorama_transform_m2s),
12058         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
12059         * gst/audiofxgood/audiopanorama.h:
12060         * tests/check/Makefile.am:
12061         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
12062         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
12063         (panorama_suite), (main):
12064         Add audiofxgood plugin with audiopanorama element
12065
12066 2006-08-18  Wim Taymans  <wim@fluendo.com>
12067
12068         * docs/plugins/Makefile.am:
12069         More Oss docs fixage. 
12070
12071 2006-08-18  Wim Taymans  <wim@fluendo.com>
12072
12073         * gst/rtp/Makefile.am:
12074         * gst/rtp/gstrtp.c: (plugin_init):
12075         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
12076         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
12077         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
12078         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
12079         (gst_rtp_sv3v_depay_get_property),
12080         (gst_rtp_sv3v_depay_change_state),
12081         (gst_rtp_sv3v_depay_plugin_init):
12082         * gst/rtp/gstrtpsv3vdepay.h:
12083         Added experimental SVQ3 depayloader.
12084
12085 2006-08-18  Edward Hervey  <edward@fluendo.com>
12086
12087         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
12088         (gst_dvdemux_loop), (gst_dvdemux_change_state):
12089         * ext/dv/gstdvdemux.h:
12090         When handling seek requests, don't send the newsegment event from the
12091         calling thread. Instead save it so it can be sent from the streaming
12092         thread.
12093
12094 2006-08-17  Wim Taymans  <wim@fluendo.com>
12095
12096         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12097
12098         * gst/multipart/multipartdemux.c: (multipart_parse_header):
12099         Accept leading whitespace before the boundary
12100         This patch makes the demuxer allow some whitespace before the actual
12101         boundary. This makes the demuxer work with the ``old'' gstreamer
12102         multipartmuxer again (which placed an extra \n before the start
12103         of the stream) Fixes #349068.
12104
12105 2006-08-17  Wim Taymans  <wim@fluendo.com>
12106
12107         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
12108         Error out on non-implemented stuff.
12109
12110 2006-08-16  Wim Taymans  <wim@fluendo.com>
12111
12112         Patch by: Andy Wingo <wingo at pobox dot com>
12113
12114         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
12115         (gst_signal_processor_start), (gst_signal_processor_stop),
12116         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
12117         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
12118         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
12119         (gst_signal_processor_change_state):
12120         Make ladspa elements reusable. Fixes #350006.
12121
12122 2006-08-16  Wim Taymans  <wim@fluendo.com>
12123
12124         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
12125         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
12126         names as possible. Fixes #349901.
12127
12128 2006-08-16  Wim Taymans  <wim@fluendo.com>
12129
12130         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
12131         (gst_signal_processor_do_pushes):
12132         A push() gives away our refcount so we should not use the buffer on the
12133         pen anymore.
12134
12135 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
12136
12137         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
12138         (gst_oss_mixer_element_finalize):
12139           Don't leak device string.
12140
12141 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
12142
12143         * configure.ac:
12144           Require CVS of GStreamer core and -base (for
12145           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
12146
12147         * ext/taglib/gstid3v2mux.cc:
12148           Write extended comment tags properly (#348762).
12149
12150         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
12151         (parse_comment_frame):
12152           Extract COMM frames into extended comments, which makes it
12153           easier to properly retain the description bit of the tag
12154           and maintain this information when re-tagging (#348762).
12155
12156 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
12157
12158         * tests/check/Makefile.am:
12159           Don't try to run annodex unit tests if the annodex
12160           plugin has not been built (Fixes #351116).
12161
12162 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
12163
12164         * gst/autodetect/gstautoaudiosink.c:
12165         (gst_auto_audio_sink_find_best):
12166           When we can't find a usable audiosink, don't error out,
12167           but use a fake sink instead and post a warning message
12168           on the bus (#341278).
12169
12170 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
12171
12172         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
12173         * sys/oss/gstosssink.c:
12174         * sys/oss/gstosssrc.c:
12175           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
12176           ossmixer's new device property.
12177
12178         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12179         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12180           Add docs for OSS elements.
12181
12182         * docs/plugins/inspect/plugin-aasink.xml:
12183         * docs/plugins/inspect/plugin-alaw.xml:
12184         * docs/plugins/inspect/plugin-alpha.xml:
12185         * docs/plugins/inspect/plugin-alphacolor.xml:
12186         * docs/plugins/inspect/plugin-annodex.xml:
12187         * docs/plugins/inspect/plugin-apetag.xml:
12188         * docs/plugins/inspect/plugin-auparse.xml:
12189         * docs/plugins/inspect/plugin-autodetect.xml:
12190         * docs/plugins/inspect/plugin-avi.xml:
12191         * docs/plugins/inspect/plugin-cacasink.xml:
12192         * docs/plugins/inspect/plugin-cairo.xml:
12193         * docs/plugins/inspect/plugin-cdio.xml:
12194         * docs/plugins/inspect/plugin-cutter.xml:
12195         * docs/plugins/inspect/plugin-debug.xml:
12196         * docs/plugins/inspect/plugin-dv.xml:
12197         * docs/plugins/inspect/plugin-efence.xml:
12198         * docs/plugins/inspect/plugin-effectv.xml:
12199         * docs/plugins/inspect/plugin-esdsink.xml:
12200         * docs/plugins/inspect/plugin-flac.xml:
12201         * docs/plugins/inspect/plugin-flxdec.xml:
12202         * docs/plugins/inspect/plugin-gconfelements.xml:
12203         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12204         * docs/plugins/inspect/plugin-goom.xml:
12205         * docs/plugins/inspect/plugin-halelements.xml:
12206         * docs/plugins/inspect/plugin-icydemux.xml:
12207         * docs/plugins/inspect/plugin-id3demux.xml:
12208         * docs/plugins/inspect/plugin-jpeg.xml:
12209         * docs/plugins/inspect/plugin-level.xml:
12210         * docs/plugins/inspect/plugin-matroska.xml:
12211         * docs/plugins/inspect/plugin-mulaw.xml:
12212         * docs/plugins/inspect/plugin-multipart.xml:
12213         * docs/plugins/inspect/plugin-navigationtest.xml:
12214         * docs/plugins/inspect/plugin-ossaudio.xml:
12215         * docs/plugins/inspect/plugin-png.xml:
12216         * docs/plugins/inspect/plugin-rtp.xml:
12217         * docs/plugins/inspect/plugin-rtsp.xml:
12218         * docs/plugins/inspect/plugin-shout2send.xml:
12219         * docs/plugins/inspect/plugin-smpte.xml:
12220         * docs/plugins/inspect/plugin-speex.xml:
12221         * docs/plugins/inspect/plugin-taglib.xml:
12222         * docs/plugins/inspect/plugin-udp.xml:
12223         * docs/plugins/inspect/plugin-videobalance.xml:
12224         * docs/plugins/inspect/plugin-videobox.xml:
12225         * docs/plugins/inspect/plugin-videoflip.xml:
12226         * docs/plugins/inspect/plugin-videomixer.xml:
12227         * docs/plugins/inspect/plugin-wavenc.xml:
12228         * docs/plugins/inspect/plugin-wavparse.xml:
12229         * docs/plugins/inspect/plugin-ximagesrc.xml:
12230           Update to CVS version.
12231           
12232 2006-08-16  Wim Taymans  <wim@fluendo.com>
12233
12234         * gst/rtp/gstrtpamrdepay.c:
12235         * gst/rtp/gstrtpmp4gdepay.c:
12236         Caps extra properties must be defined as strings for
12237         depayloaders because they are generated from an SDP.
12238
12239         * gst/rtp/Makefile.am:
12240         * gst/rtp/gstrtp.c: (plugin_init):
12241         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
12242         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
12243         (gst_rtp_h264_depay_finalize), (decode_base64),
12244         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
12245         (gst_rtp_h264_depay_set_property),
12246         (gst_rtp_h264_depay_get_property),
12247         (gst_rtp_h264_depay_change_state),
12248         (gst_rtp_h264_depay_plugin_init):
12249         * gst/rtp/gstrtph264depay.h:
12250         Added basic, not completely functional RFC 3984 H264 depayloader.
12251
12252 2006-08-16  Wim Taymans  <wim@fluendo.com>
12253
12254         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
12255         Add pads after setting them up.
12256
12257         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
12258         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
12259         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
12260         (gst_rtspsrc_stream_setup_rtp),
12261         (gst_rtspsrc_stream_configure_transport),
12262         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
12263         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
12264         (gst_rtspsrc_pause):
12265         * gst/rtsp/gstrtspsrc.h:
12266         Fix interleaved mode.
12267          - Protect streaming with lock.
12268          - Combine flows
12269          - set caps on outgoing buffers.
12270          - strip trailing \0 from data packets.
12271          - Configure RTP/RTCP in stream.
12272         Use DEBUG_OBJECT more.
12273
12274 2006-08-16  Wim Taymans  <wim@fluendo.com>
12275
12276         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
12277         Turn a g_print into a DEBUG line.
12278
12279 2006-08-13  Wim Taymans  <wim@fluendo.com>
12280
12281         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
12282         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
12283         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
12284         (gst_oss_mixer_element_get_property),
12285         (gst_oss_mixer_element_change_state):
12286         * sys/oss/gstossmixerelement.h:
12287         Small cleanups. Better error reporting.
12288         Add device property for the mixer instead of the hardcoded
12289         /dev/mixer. Fixes #350785.
12290         API: GstOssMixerElement::device property
12291
12292 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12293
12294         Patch by: Jens Granseuer <jensgr at gmx net>
12295
12296         * gconf/Makefile.am:
12297           Make --disable-schemas work right (they still need
12298           to be copied to the installation directory, just not
12299           applied). Fixes #351347 (also #344100).
12300           
12301 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
12302
12303         * configure.ac: back to HEAD
12304
12305 === release 0.10.4 ===
12306
12307 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
12308
12309         * configure.ac:
12310           releasing 0.10.4, "Dear Leader"
12311
12312 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
12313
12314         Patch by: Edward Hervey <edward@fluendo.com>
12315
12316         * configure.ac:
12317         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
12318         (gst_wavparse_stream_data):
12319         Send the newsegment event in the streaming thread.
12320         Fixes #347529
12321
12322 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
12323
12324         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
12325         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
12326         (gst_smokeenc_resync), (gst_smokeenc_chain):
12327           Refuse sink caps in the encoder if width or height is not a
12328           multiple of 16, the encoder does not support that yet (#349939);
12329           along the same lines, check the return value of the encoder
12330           setup function; also remove some debug log clutter.
12331
12332 2006-08-04  Andy Wingo  <wingo@pobox.com>
12333
12334         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
12335         whether a processor can work in place or not, and for keeping
12336         track of its state. Change the FlowReturn instance variable from
12337         "state" to "flow_state", all callers changed.
12338
12339         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
12340         (gst_signal_processor_start, gst_signal_processor_stop)
12341         (gst_signal_processor_cleanup): New functions to manage the
12342         processor's state.
12343         (gst_signal_processor_setcaps): start() as well as setup() here.
12344         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
12345         (gst_signal_processor_change_state): Stop and cleanup the
12346         processor as we go to NULL.
12347
12348         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
12349         INPLACE_BROKEN is not set.
12350
12351         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
12352         Do the alloc_buffer in bytes, not frames.
12353         
12354 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12355
12356         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
12357         Fix rgb masks when recording in < 24bpp.
12358
12359 2006-08-04  Andy Wingo  <wingo@pobox.com>
12360
12361         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
12362         (gst_signal_processor_prepare)
12363         (gst_signal_processor_update_inputs)
12364         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
12365         (gst_signal_processor_flush)
12366         (gst_signal_processor_sink_activate_push)
12367         (gst_signal_processor_src_activate_pull)
12368         (gst_signal_processor_change_state): Remove the last of the code
12369         that assumes that we process whole buffers at a time. Fix some
12370         debugging. Seems to work now in some cases.
12371         (gst_signal_processor_src_activate_pull): BPB
12372
12373 2006-08-01  Andy Wingo  <wingo@pobox.com>
12374
12375         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
12376         Fix nframes-choosing.
12377         (gst_signal_processor_init): Init pending_in and pending_out.
12378
12379         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
12380         more default sample rate, although we never check that the sample
12381         rate actually gets set. Something for the future.
12382         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
12383         (gst_signal_processor_event): Refcount fixen.
12384         (gst_signal_processor_process): Pull the number of frames to
12385         process from the sizes of the buffers in the input pens.
12386         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
12387         (gst_signal_processor_do_pulls): Add an nframes argument, and use
12388         it instead of buffer_frames.
12389         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
12390         to do_pulls.
12391         (gst_signal_processor_chain)
12392         (gst_signal_processor_sink_activate_push)
12393         (gst_signal_processor_src_activate_pull):  Refcount fixen.
12394
12395         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
12396
12397 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
12398
12399         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
12400         (gst_signal_processor_process):
12401           don't query buffer-frames from caps, add lots of debug-log,
12402           try fix for assert (#349189)
12403
12404 2006-07-31  Wim Taymans  <wim@fluendo.com>
12405
12406         * gst/udp/gstudpsrc.c:
12407         Fix docs.
12408
12409 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
12410
12411         * ext/ladspa/gstsignalprocessor.c:
12412         (gst_signal_processor_add_pad_from_template),
12413         (gst_signal_processor_init), (gst_signal_processor_setcaps),
12414         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
12415         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
12416         (gst_signal_processor_sink_activate_push),
12417         (gst_signal_processor_src_activate_pull),
12418         (gst_signal_processor_change_state):
12419          Add debugs logs here and there, add more error handling, add some
12420          FIXME comments, filed #349189
12421
12422 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12423
12424         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
12425         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
12426         Set caps on buffer correctly.  Fixes bug #349155.
12427
12428 2006-07-28  Wim Taymans  <wim@fluendo.com>
12429
12430         Patch by: Sjoerd Simons <sjoerd at luon dot net>
12431
12432         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
12433         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
12434         (gst_multipart_demux_finalize), (get_line_end),
12435         (multipart_parse_header), (multipart_find_boundary),
12436         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
12437         (gst_multipart_set_property), (gst_multipart_get_property):
12438         Uses GstAdapter instead of own buffering.
12439         Actually parses the mime-type correctly (In tests the mime-type was
12440         always "" with the old version).
12441         Uses the Content-length header if available to speed up things.
12442         Reliably autoscans the boundary name by default.
12443         Fixes #349068.
12444
12445         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
12446         Don't start the stream with a \n.
12447
12448 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
12449
12450         Patch by: Brian Cameron <brian dot cameron at sun com>
12451
12452         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
12453           Open source with O_NONBLOCK (#349015).
12454
12455 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
12456
12457         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
12458         (gst_avi_demux_massage_index):
12459         * gst/avi/gstavidemux.h:
12460           Whitespace fixes and more debug
12461
12462 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
12463
12464         * gst/autodetect/gstautoaudiosink.c:
12465         (gst_auto_audio_sink_create_element_with_pretty_name),
12466         (gst_auto_audio_sink_find_best),
12467         (gst_auto_audio_sink_change_state):
12468           Get rid of old and unused magic sound-server properties stuff.
12469           Add suffix to child sink's name that makes it easy to see from
12470           the name alone which type it actually is (alsa, oss, esd, etc.).
12471
12472 2006-07-27  Wim Taymans  <wim@fluendo.com>
12473
12474         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
12475         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
12476         (gst_udpsrc_start):
12477         * gst/udp/gstudpsrc.h:
12478         Rename "buffer" to "buffer-size" to make clear it is a size we set and
12479         not some sort of feature we enable.
12480
12481 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
12482
12483         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
12484           Use CLOSE_SOCKET() here instead of close() to maintain
12485           win32 workiness.
12486
12487 2006-07-27  Wim Taymans  <wim@fluendo.com>
12488
12489         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
12490
12491         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
12492         (gst_udpsrc_create), (gst_udpsrc_set_property),
12493         (gst_udpsrc_get_property), (gst_udpsrc_start):
12494         * gst/udp/gstudpsrc.h:
12495         Added "buffer-size" property to control the kernel receive buffer size.
12496         Update documentation.
12497         Small cleanups. Fixes #348752.
12498         API: buffer-size property
12499
12500 2006-07-26  Wim Taymans  <wim@fluendo.com>
12501
12502         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
12503
12504         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
12505         (gst_rtp_pcma_pay_handle_buffer):
12506         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
12507         (gst_rtp_pcmu_pay_handle_buffer):
12508         Fix timestamp calculation on outgoing RTP packets.
12509         Fixes #348675.
12510
12511 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
12512
12513         * ext/taglib/gstid3v2mux.cc:
12514           Fix writing of comment frames (should be COMM not TCOM),
12515           is still sub-optimal though, since we don't retain or
12516           extract the comment descriptions properly (#334375,
12517           also see #334375).
12518
12519 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
12520
12521         * gst/wavparse/gstwavparse.c:
12522           #define 'fact' RIFF chunk if we are not compiling against
12523           -base CVS (we don't want to depend on -base CVS for this
12524           one define only, and also not for release order reasons).
12525
12526 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
12527
12528         * ext/taglib/gstid3v2mux.cc:
12529           Handle multiple tags of the same type properly. Re-inject
12530           unparsed ID3v2 frames that we get as binary blobs from
12531           id3demux into the tag again so we don't lose information
12532           when retagging (#334375).
12533
12534 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
12535
12536         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
12537           Document newly-added properties properly, so that there is a
12538           'Since: 0.10.4' in the plugin docs. Convert some property
12539           names into canonical GObject style (GObject will do that
12540           internally anyway).
12541
12542 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
12543
12544         * gst/id3demux/id3tags.c:
12545         (id3demux_add_id3v2_frame_blob_to_taglist):
12546           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
12547           well, and add the version to the blob's buffer caps, since that
12548           information will be needed for deserialisation later on (#348644).
12549
12550 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
12551
12552         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
12553         (gst_avi_demux_parse_stream):
12554          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
12555          indentation and spacing.
12556
12557 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
12558
12559         * docs/plugins/Makefile.am:
12560         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12561         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12562         * docs/plugins/gst-plugins-good-plugins.args:
12563         * docs/plugins/inspect/plugin-1394.xml:
12564         * docs/plugins/inspect/plugin-aasink.xml:
12565         * docs/plugins/inspect/plugin-alaw.xml:
12566         * docs/plugins/inspect/plugin-alpha.xml:
12567         * docs/plugins/inspect/plugin-alphacolor.xml:
12568         * docs/plugins/inspect/plugin-annodex.xml:
12569         * docs/plugins/inspect/plugin-apetag.xml:
12570         * docs/plugins/inspect/plugin-auparse.xml:
12571         * docs/plugins/inspect/plugin-autodetect.xml:
12572         * docs/plugins/inspect/plugin-avi.xml:
12573         * docs/plugins/inspect/plugin-cacasink.xml:
12574         * docs/plugins/inspect/plugin-cairo.xml:
12575         * docs/plugins/inspect/plugin-cdio.xml:
12576         * docs/plugins/inspect/plugin-cutter.xml:
12577         * docs/plugins/inspect/plugin-debug.xml:
12578         * docs/plugins/inspect/plugin-dv.xml:
12579         * docs/plugins/inspect/plugin-efence.xml:
12580         * docs/plugins/inspect/plugin-effectv.xml:
12581         * docs/plugins/inspect/plugin-esdsink.xml:
12582         * docs/plugins/inspect/plugin-flac.xml:
12583         * docs/plugins/inspect/plugin-flxdec.xml:
12584         * docs/plugins/inspect/plugin-gconfelements.xml:
12585         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
12586         * docs/plugins/inspect/plugin-goom.xml:
12587         * docs/plugins/inspect/plugin-halelements.xml:
12588         * docs/plugins/inspect/plugin-icydemux.xml:
12589         * docs/plugins/inspect/plugin-id3demux.xml:
12590         * docs/plugins/inspect/plugin-jpeg.xml:
12591         * docs/plugins/inspect/plugin-level.xml:
12592         * docs/plugins/inspect/plugin-matroska.xml:
12593         * docs/plugins/inspect/plugin-mulaw.xml:
12594         * docs/plugins/inspect/plugin-multipart.xml:
12595         * docs/plugins/inspect/plugin-navigationtest.xml:
12596         * docs/plugins/inspect/plugin-ossaudio.xml:
12597         * docs/plugins/inspect/plugin-png.xml:
12598         * docs/plugins/inspect/plugin-rtp.xml:
12599         * docs/plugins/inspect/plugin-rtsp.xml:
12600         * docs/plugins/inspect/plugin-shout2send.xml:
12601         * docs/plugins/inspect/plugin-smpte.xml:
12602         * docs/plugins/inspect/plugin-speex.xml:
12603         * docs/plugins/inspect/plugin-udp.xml:
12604         * docs/plugins/inspect/plugin-videobalance.xml:
12605         * docs/plugins/inspect/plugin-videobox.xml:
12606         * docs/plugins/inspect/plugin-videoflip.xml:
12607         * docs/plugins/inspect/plugin-videomixer.xml:
12608         * docs/plugins/inspect/plugin-wavenc.xml:
12609         * docs/plugins/inspect/plugin-wavparse.xml:
12610         * docs/plugins/inspect/plugin-ximagesrc.xml:
12611           Update files to CVS/Prerelease version, add esdsink docs.
12612
12613         * ext/esd/esdsink.c:
12614           Add gtk-doc blurb.
12615
12616         * gst/rtp/gstrtpmp4vpay.c:
12617           Fix typo in element description.
12618
12619 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
12620
12621         * ext/esd/esdsink.c: (gst_esdsink_open),
12622         (gst_esdsink_factory_init):
12623           Prevent libesd from auto-spawning a sound daemon if it
12624           is not already running. Now that we don't do evil stuff
12625           like that any longer we can give esdsink a rank so that
12626           autoaudiosink will try it as well if all other audio
12627           sinks fail (#343051).
12628
12629 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
12630
12631         * ext/esd/Makefile.am:
12632           Oops, need to remove README from EXTRA_DIST as well.
12633
12634 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
12635
12636         * ext/esd/README:
12637           Remove, it contains nothing useful anyway.
12638
12639         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
12640         (gst_esdsink_delay):
12641           Some small clean-ups; use GST_BOILERPLATE etc.
12642
12643 2006-07-24  Wim Taymans  <wim@fluendo.com>
12644
12645         * gst/law/alaw-decode.c: (alawdec_getcaps):
12646         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
12647         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
12648         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
12649         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
12650
12651 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
12652
12653         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
12654         (gst_wavparse_other), (gst_wavparse_perform_seek),
12655         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
12656         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
12657         (gst_wavparse_pad_query):
12658         * gst/wavparse/gstwavparse.h:
12659           Use information from 'fact' chunk for length calculation of compressed
12660           samples. Calculate bps if bogus value is found in wav header (embeded
12661           mp2/mp3).
12662           
12663
12664 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
12665
12666         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
12667
12668         * configure.ac:
12669         * gst/udp/Makefile.am:
12670         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
12671         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
12672         * gst/udp/gstdynudpsink.h:
12673         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
12674         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
12675         * gst/udp/gstmultiudpsink.h:
12676         * gst/udp/gstudp.c: (plugin_init):
12677         * gst/udp/gstudpsink.h:
12678         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
12679         (gst_udpsrc_start), (gst_udpsrc_stop):
12680         * gst/udp/gstudpsrc.h:
12681         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
12682         (gst_udp_net_utils_win32_wsa_startup):
12683         * gst/udp/gstudpnetutils.h:
12684           Port udp plugin to win32 (#345288).
12685
12686 2006-07-24  Wim Taymans  <wim@fluendo.com>
12687
12688         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
12689         Remove unwanted DEBUG line.
12690
12691 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
12692
12693         * gst/id3demux/gstid3demux.c: (plugin_init):
12694         * gst/id3demux/id3tags.c:
12695         (id3demux_add_id3v2_frame_blob_to_taglist):
12696         * gst/id3demux/id3tags.h:
12697           On second thought, it might be wiser and more efficient
12698           not to do tag registration from a streaming thread.
12699
12700 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
12701
12702         * gst/id3demux/id3tags.c:
12703         (id3demux_add_id3v2_frame_blob_to_taglist),
12704         (id3demux_id3v2_frames_to_tag_list):
12705           Put ID3v2 frames we can't parse as binary blobs into private
12706           tags, so that they are not lost when retagging, at least once
12707           id3v2mux has been taught to re-inject those frames again.
12708           See bug #334375.
12709
12710 2006-07-21  Wim Taymans  <wim@fluendo.com>
12711
12712         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
12713         (gst_avi_demux_process_next_entry):
12714         Fix some leaks.
12715
12716         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
12717         Don't use \n in debug lines.
12718
12719 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
12720
12721         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12722         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12723           Add annodex and icydemux, cleanup the sections a bit
12724
12725 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
12726
12727         Patch by: Alex Lancaster <alexl at users sourceforge net>
12728
12729         * ext/taglib/gstid3v2mux.cc:
12730           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
12731           ID3v2 TSSE frames (#347898).
12732
12733 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
12734
12735         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
12736           Respect mpegversion for "video/mpeg" and give message in case of
12737           unhandled versions.
12738
12739 2006-07-17  Wim Taymans  <wim@fluendo.com>
12740
12741         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
12742         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
12743         (gst_pngdec_chain), (gst_pngdec_sink_event),
12744         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
12745         (gst_pngdec_sink_activate_push):
12746         * ext/libpng/gstpngdec.h:
12747         Use statically allocated segment instead of leaking.
12748         Various cleanups.
12749         Fix flush and seek handling.
12750
12751 2006-07-16  Wim Taymans  <wim@fluendo.com>
12752
12753         * gst/rtp/Makefile.am:
12754         * gst/rtp/gstrtp.c: (plugin_init):
12755         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
12756         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
12757         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
12758         (gst_rtp_mp4g_depay_set_property),
12759         (gst_rtp_mp4g_depay_get_property),
12760         (gst_rtp_mp4g_depay_change_state),
12761         (gst_rtp_mp4g_depay_plugin_init):
12762         * gst/rtp/gstrtpmp4gdepay.h:
12763         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
12764         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
12765         (gst_rtp_mp4g_pay_flush):
12766         Added simple generic mpeg4 depayloader.
12767         Fix generic mpeg4 payloader.
12768
12769 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
12770
12771         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
12772           Don't try doing state changes on a NULL pointer.
12773
12774 2006-07-14  Wim Taymans  <wim@fluendo.com>
12775
12776         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
12777
12778         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
12779         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
12780         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
12781         * gst/rtp/gstrtpamrdepay.h:
12782         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
12783         Fixes #321191
12784
12785 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12786
12787         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
12788         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
12789         Fix segfault when moving mouse pointer to the bottom right corner.
12790
12791 2006-07-12  Wim Taymans  <wim@fluendo.com>
12792
12793         * gst/rtp/Makefile.am:
12794         * gst/rtp/gstrtp.c: (plugin_init):
12795         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
12796         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
12797         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
12798         (gst_rtp_mp2t_depay_set_property),
12799         (gst_rtp_mp2t_depay_get_property),
12800         (gst_rtp_mp2t_depay_change_state),
12801         (gst_rtp_mp2t_depay_plugin_init):
12802         * gst/rtp/gstrtpmp2tdepay.h:
12803         Added mpeg2 TS depayloader. Closing #347234.
12804
12805 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
12806
12807         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
12808           Remove g_assert that shouldn't be there and was triggered
12809           after trying to open a device that doesn't exist or can't
12810           be opened for some other reason (#347972).
12811
12812 2006-07-10  Edward Hervey  <edward@fluendo.com>
12813
12814         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
12815         (gst_avi_demux_stream_header), (push_tag_lists):
12816         * gst/avi/gstavidemux.h:
12817         Don't push tag events found by gst_riff_parse_info() before outputting
12818         GST_EVENT_NEWSEGMENT.
12819
12820 2006-07-10  Wim Taymans  <wim@fluendo.com>
12821
12822         * gst/rtsp/Makefile.am:
12823         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
12824         (rtsp_connection_close):
12825         * gst/rtsp/rtspdefs.h:
12826         replaced closesocket and close in code with one CLOSE_SOCKET. 
12827         Some more cleanups. Fixes #345301.
12828
12829 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
12830
12831         * gst/autodetect/gstautoaudiosink.c:
12832           Fix example pipeline in docs.
12833
12834 2006-07-10  Wim Taymans  <wim@fluendo.com>
12835
12836         Patch by: Rob Taylor <robtaylor at floopily dot org>
12837
12838         * gst/udp/gstmultiudpsink.c: (join_multicast),
12839         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
12840         If a destination is added before the stream is set to PAUSED, the
12841         multicast group is not joined as the socket is not created yet. 
12842         Also TTL and LOOP should also be set. Fixes #346921.
12843
12844 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12845
12846         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
12847         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
12848         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
12849         (gst_ximage_src_init):
12850         * sys/ximage/gstximagesrc.h:
12851         Fix use-damage property to actually work :)
12852         Add startx, starty, endx, endy properties so screencasts other than full
12853         screen ones can work.
12854
12855 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12856
12857         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
12858         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
12859         (gst_ximage_src_class_init), (gst_ximage_src_init):
12860         * sys/ximage/gstximagesrc.h:
12861         Add use_damage property to offer ability to choose whether to use
12862         XDamage or not.
12863
12864 2006-07-07  Wim Taymans  <wim@fluendo.com>
12865
12866         * gst/goom/filters.c: (zoomFilterSetResolution):
12867         Avoid goom coredumping by clearing memory. 
12868         Fixes 345679.
12869
12870 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
12871
12872         * win32/vs6/libgstid3demux.dsp:
12873         Add a link to libgsttag-0.10.lib.
12874
12875 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
12876
12877         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
12878         (gst_tag_demux_read_range):
12879         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
12880         (gst_id3demux_read_range):
12881           Don't return FLOW_UNEXPECTED when a buffer is before
12882           the start of the stream (which might happen with
12883           large ID3v2 tags if the tag reading was done pullrange
12884           based and we then switched to push mode later on).
12885           Fixes regression introduced by commit from June 29th.
12886
12887 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
12888
12889         * ext/taglib/gstid3v2mux.cc:
12890           Make UTF-8 the default encoding when writing string
12891           tags (before, our UTF-8 strings would automatically
12892           be converted to ISO-8859-1 by taglib and written as
12893           ISO-8859-1 fields if that was possible).
12894
12895         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
12896         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
12897         (test_taglib_id3mux_with_tags):
12898           Add test case that makes sure our UTF-8 strings have
12899           actually been written into the tag as UTF-8.
12900
12901 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
12902
12903         * configure.ac:
12904           Let's try that again.
12905
12906 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
12907
12908         * configure.ac:
12909           Disable monoscope plugin for now until it fulfills
12910           all the requirements.
12911
12912 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
12913
12914         * configure.ac:
12915         * gst/monoscope/Makefile.am:
12916         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
12917         (gst_monoscope_class_init), (gst_monoscope_init),
12918         (gst_monoscope_finalize), (gst_monoscope_reset),
12919         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
12920         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
12921         (gst_monoscope_sink_event), (gst_monoscope_src_event),
12922         (gst_monoscope_change_state), (plugin_init):
12923         * gst/monoscope/gstmonoscope.h:
12924           Port monoscope visualisation to 0.10.
12925
12926 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
12927
12928         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
12929         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
12930           Return FLOW_UNEXPECTED when at the end of the file, not
12931           FLOW_ERROR. Fixes 'internal stream error' errors that
12932           would sometimes occur in totem when scrubbing to the
12933           end of an ID3v1 tagged mp3 file.
12934
12935 2006-07-03  Edward Hervey  <edward@fluendo.com>
12936
12937         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
12938         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
12939         (gst_pngdec_sink_event), (gst_pngdec_change_state):
12940         * ext/libpng/gstpngdec.h:
12941         Implement buffer clipping/dropping using GstSegment.
12942         This provides accurate seeking.
12943
12944 2006-07-03  Edward Hervey  <edward@fluendo.com>
12945
12946         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
12947         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
12948         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
12949         (gst_avi_demux_process_next_entry), (push_tag_lists),
12950         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
12951         * gst/avi/gstavidemux.h:
12952         Proper aggregation of each stream's GstFlowReturn in order to figure out
12953         whether the task should stop or not.
12954         Don't send inline events before pushing out a NEW_SEGMENT, more
12955         specifically for GST_TAG_EVENT.
12956         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
12957         sub-indexes.
12958
12959 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
12960
12961         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
12962
12963         * sys/sunaudio/gstsunaudiomixerctrl.c:
12964         (gst_sunaudiomixer_ctrl_build_list):
12965           Move "Monitor" slider to input tab so it works more like
12966           sdtaudiocontrol, which is what people on Solaris are used
12967           to using for their mixer program (#346259).
12968
12969 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12970
12971         * tests/check/elements/level.c: (GST_START_TEST):
12972           fix a leak, clean up at the end
12973
12974 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
12975
12976         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12977         (gst_matroska_demux_send_event),
12978         (gst_matroska_demux_loop_stream_parse_id):
12979         * gst/matroska/matroska-ids.h:
12980           Send tag event after newsegment event.
12981
12982 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
12983
12984         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
12985         (gst_id3demux_read_range):
12986           Make sure we don't return GST_FLOW_OK with a NULL buffer in
12987           certain cases where a read beyond the end of the file is
12988           requested. Fixes #345930.
12989
12990         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
12991         (gst_tag_demux_read_range):
12992           Fix same issue here as well.
12993
12994 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12995
12996         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
12997         
12998         Fix hypothetical crash.
12999
13000 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
13001
13002         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
13003
13004         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
13005           Do not modify the ports value. If the user has turned off the
13006           built-in speakers, then we should not reset it in the prepare
13007           function, since this causes the built-in speakers to turn
13008           back on anytime the user changes a track in totem, rhythmbox,
13009           etc. (#346066).
13010
13011 2006-06-23  Wim Taymans  <wim@fluendo.com>
13012
13013         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
13014         Fix double caps unref when negotiation fails.
13015
13016 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13017
13018         * ext/annodex/gstcmmldec.c:
13019         * ext/annodex/gstcmmlenc.c:
13020         * ext/annodex/gstcmmlparser.c:
13021         * ext/dv/gstdvdec.c:
13022         * ext/dv/gstdvdemux.c:
13023         * ext/gdk_pixbuf/pixbufscale.c:
13024         * ext/jpeg/gstjpegenc.c:
13025         * ext/jpeg/gstsmokedec.c:
13026         * ext/jpeg/gstsmokeenc.c:
13027         * ext/libpng/gstpngdec.c:
13028         * ext/libpng/gstpngenc.c:
13029         * ext/speex/gstspeexenc.c:
13030         * gst/alpha/gstalphacolor.c:
13031         * gst/cutter/gstcutter.c:
13032         * gst/debug/gstnavigationtest.c:
13033         * gst/icydemux/gsticydemux.c:
13034         * gst/level/gstlevel.c:
13035         * gst/multipart/multipart.c:
13036         * gst/rtp/gstrtpamrpay.c:
13037         * gst/rtp/gstrtpdepay.c:
13038         * gst/rtp/gstrtpilbcpay.c:
13039         * gst/rtp/gstrtpmp4gpay.c:
13040         * gst/rtp/gstrtpmp4vpay.c:
13041         * gst/rtsp/gstrtpdec.c:
13042         * gst/rtsp/gstrtspsrc.c:
13043         * gst/udp/gstdynudpsink.c:
13044         * gst/udp/gstmultiudpsink.c:
13045         * gst/udp/gstudpsrc.c:
13046         * gst/videobox/gstvideobox.c:
13047         * gst/videofilter/gstvideoflip.c:
13048           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
13049           plus two minor macro fixes.
13050
13051 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13052
13053         * gst/matroska/matroska-demux.c:
13054         (gst_matroska_demux_check_subtitle_buffer),
13055         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
13056         (gst_matroska_demux_subtitle_caps):
13057         * gst/matroska/matroska-ids.c:
13058         (gst_matroska_track_init_subtitle_context):
13059         * gst/matroska/matroska-ids.h:
13060           Try to fix up broken matroska files containing subtitle
13061           streams with non-UTF8 character encodings (courtesy of
13062           mkvmerge) using either the encoding specified in the
13063           GST_SUBTITLE_ENCODING environment variable or the
13064           current locale's character set if it is non-UTF8.
13065           Fixes #337076.
13066
13067 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13068
13069         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
13070           Set image type from APIC frame as "image-type" field
13071           of GST_TAG_IMAGE buffer caps (#344605).
13072
13073 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
13074
13075         * ext/flac/Makefile.am:
13076         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
13077         (gst_flac_dec_reset_decoders),
13078         (gst_flac_dec_setup_seekable_decoder),
13079         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
13080         (gst_flac_dec_metadata_callback),
13081         (gst_flac_dec_metadata_callback_seekable),
13082         (gst_flac_dec_metadata_callback_stream),
13083         (gst_flac_dec_error_callback),
13084         (gst_flac_dec_error_callback_seekable),
13085         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
13086         (gst_flac_dec_read_stream), (gst_flac_dec_write),
13087         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
13088         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
13089         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
13090         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
13091         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
13092         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
13093         (gst_flac_dec_sink_activate_push),
13094         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
13095         * ext/flac/gstflacdec.h:
13096           Support chain-based operation, should make flac-over-DAAP
13097           work (#340492).
13098
13099 2006-06-20  Wim Taymans  <wim@fluendo.com>
13100
13101         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13102         Doc updates, merge some unused symbols.
13103
13104 2006-06-20  Wim Taymans  <wim@fluendo.com>
13105
13106         * docs/plugins/Makefile.am:
13107         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13108         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13109         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
13110         * gst/rtsp/gstrtspsrc.c:
13111         * gst/rtsp/gstrtspsrc.h:
13112         Added documentation for the rtsp plugin. Fixes #345393.
13113
13114 2006-06-20  Wim Taymans  <wim@fluendo.com>
13115
13116         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
13117         (rtsp_connection_close), (rtsp_connection_free):
13118         Use better G_OS_* macros. Fixes #345301 some more.
13119
13120 2006-06-20  Wim Taymans  <wim@fluendo.com>
13121
13122         Patch by: Brian Cameron <brian dot cameron at sun dot com>
13123
13124         * sys/sunaudio/Makefile.am:
13125         * sys/sunaudio/gstsunaudio.c: (plugin_init):
13126         * sys/sunaudio/gstsunaudiomixerctrl.c:
13127         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
13128         (gst_sunaudiomixer_ctrl_list_tracks),
13129         (gst_sunaudiomixer_ctrl_get_volume),
13130         (gst_sunaudiomixer_ctrl_set_volume),
13131         (gst_sunaudiomixer_ctrl_set_mute),
13132         (gst_sunaudiomixer_ctrl_set_record):
13133         * sys/sunaudio/gstsunaudiomixerctrl.h:
13134         * sys/sunaudio/gstsunaudiomixertrack.c:
13135         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
13136         * sys/sunaudio/gstsunaudiomixertrack.h:
13137         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
13138         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
13139         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
13140         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
13141         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
13142         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
13143         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
13144         (gst_sunaudiosrc_reset):
13145         * sys/sunaudio/gstsunaudiosrc.h:
13146         Add a SunAudio source plugin.
13147         Support stereo and right/left channel gain in the mixer plugin.
13148         Support the RECORD flag so that you can switch between line-input and
13149         microphone in gnome-volume-control.
13150         Code cleanups like using an enumerator for track number instead of an 
13151         integer. Fixes #344923.
13152
13153 2006-06-20  Wim Taymans  <wim@fluendo.com>
13154
13155         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
13156
13157         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
13158         (rtsp_connection_close):
13159         Make RTSP plugin compile on windows. Fixes #345301.
13160         Some changes to original patch to catch errors better.
13161         use ifdef WIN32 instead of ifndef.
13162
13163 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13164
13165         * configure.ac:
13166         If we have libraw1394 >= 1.2.1, then we need libiec61883.
13167
13168 2006-06-18  Edward Hervey  <edward@fluendo.com>
13169
13170         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
13171         After a failed buffer alloc, we need to abort the jpeg decoding (it
13172         started when parsing headers to figure out how many bytes we need
13173         to request downstream).
13174
13175 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
13176
13177         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13178
13179         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
13180           Make sure we don't read beyond the end of the file (#345232).
13181
13182 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
13183
13184         * configure.ac:
13185           Fix --disable-external (can't set conditionals conditionally,
13186           #343602).
13187
13188 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13189
13190         * autogen.sh:
13191         * configure.ac:
13192         * docs/Makefile.am:
13193           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
13194
13195         * docs/plugins/Makefile.am:
13196         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13197         * docs/plugins/inspect/plugin-taglib.xml:
13198           Add/fix apev2mux docs.
13199
13200 2006-06-14  Wim Taymans  <wim@fluendo.com>
13201
13202         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
13203         (gst_dvdec_finalize), (gst_dvdec_sink_event),
13204         (gst_dvdec_change_state):
13205         Reset segment info on flush.
13206         Alloc segment in _init, free in _finalize.
13207
13208         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
13209         Don't send segments twice.
13210
13211 2006-06-14  Wim Taymans  <wim@fluendo.com>
13212
13213         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
13214         Respect segment.stop. Fixes #342592.
13215
13216 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
13217
13218         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
13219           No language specified means the implied language is English
13220           according to the matroska spec (partially fixes #344708);
13221           add some more debug output.
13222
13223 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
13224
13225         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
13226         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
13227         (gst_wavparse_chain):
13228           When operating chain-based, don't make any assumptions about the
13229           chunking of the incoming data and make streaming work on days other
13230           than the second Thursday after a full moon. Also fix up debug
13231           messages here and there and make use of the most excellent new
13232           gst_pad_query_peer_duration() utility function.
13233           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
13234
13235         * gst/wavparse/gstwavparse.h:
13236           Remove trailing comma after last enum value, some compilers don't
13237           like that.
13238
13239 2006-06-13  Wim Taymans  <wim@fluendo.com>
13240
13241         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
13242         Handle premature EOS gracefully.
13243
13244 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
13245
13246         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
13247           Prevent out of bounds array access when scrubbing towards
13248           the end of the file between the last index entry and the
13249           end. Fixes occasional 'start <= stop' newsegment event
13250           assertions when scrubbing in MJPEG files.
13251
13252 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
13253
13254         * tests/check/elements/.cvsignore:
13255           And another one.
13256
13257 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
13258
13259         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
13260         (scan_encoded_string), (parse_picture_frame):
13261           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
13262
13263         * configure.ac:
13264           Require core >= 0.10.8 (for GST_TAG_IMAGE and
13265           GST_TAG_PPEVIEW_IMAGE used in the patch above).
13266
13267 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13268
13269         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
13270           gratuitous comment changes
13271         * tests/check/elements/level.c: (GST_START_TEST):
13272           fix level test leaks
13273
13274 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
13275
13276         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
13277         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
13278           Use gst_pad_query_peer_duration() utility function here.
13279
13280 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13281
13282         * autogen.sh:
13283           require am17
13284         * configure.ac:
13285         * ext/annodex/Makefile.am:
13286         * ext/cdio/Makefile.am:
13287         * ext/dv/Makefile.am:
13288         * ext/esd/Makefile.am:
13289         * ext/flac/Makefile.am:
13290         * ext/gdk_pixbuf/Makefile.am:
13291         * ext/ladspa/Makefile.am:
13292         * ext/libcaca/Makefile.am:
13293         * ext/speex/Makefile.am:
13294         * ext/taglib/Makefile.am:
13295         * sys/oss/Makefile.am:
13296         * sys/sunaudio/Makefile.am:
13297         * sys/ximage/Makefile.am:
13298           clean up build further
13299
13300 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
13301
13302         * gconf/Makefile.am:
13303           Honour --disable-schemas-install configure option. Fixes #344100.
13304
13305 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
13306
13307         * tests/examples/level/Makefile.am:
13308           Add -lm to LIBS for pow() function, don't assume one of our
13309           dependencies (such as libxml-2.0) drags it in automatically
13310           (#343603).
13311
13312 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
13313
13314         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
13315
13316         * configure.ac:
13317           We should use $SED and not $(SED) in configure.ac (#343678).
13318
13319 2006-06-09  Wim Taymans  <wim@fluendo.com>
13320
13321         Patch by: Brian Cameron <brian dot cameron at sun dot com>
13322
13323         * sys/sunaudio/gstsunaudiomixerctrl.c:
13324         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
13325         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
13326         (gst_sunaudiomixer_ctrl_set_mute):
13327         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
13328         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
13329         (gst_sunaudiosink_write):
13330         Attached find a patch that fixes a number of bugs with the SunAudio
13331         mixer plugin and fixes #344101:
13332         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
13333            tracks onto the tracklist causing gnome-volume-control's preferences
13334            dialog to be messed up and would core dump if you checked/unchecked
13335            any item.
13336         2. We weren't previously setting the MUTE flag properly.  Fixing this
13337            makes gnome-volume-control work better.
13338         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
13339            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
13340            gnome-volume-control look better.
13341         Also some minor cleanup in gstsunaudiosink.c.
13342
13343 2006-06-09  Wim Taymans  <wim@fluendo.com>
13344
13345         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
13346         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
13347         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
13348         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
13349         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
13350         * ext/jpeg/gstjpegdec.h:
13351         API: Added IDCT method property
13352         Small cleanups.
13353         Avoid dynamic allocation of trivial fixed structure.
13354         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
13355
13356 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13357
13358         * configure.ac:
13359         We now require libraw1394 >= 1.1.0 and that version onwards all
13360         have .pc files.
13361
13362 2006-06-02  Edward Hervey  <edward@fluendo.com>
13363
13364         * gst/law/alaw-decode.c: (alawdec_getcaps): 
13365         Trying to get items from an ANY or EMPTY caps is ... stupid.
13366
13367 2006-06-02  Edward Hervey  <edward@fluendo.com>
13368
13369         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
13370         (gst_dvdec_chain), (gst_dvdec_change_state):
13371         * ext/dv/gstdvdec.h:
13372         Added GstSegment handling, now implements dropping/clipping.
13373
13374 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
13375
13376         * ext/aalib/gstaasink.h:
13377         * ext/annodex/gstcmmldec.h:
13378         * ext/cairo/gsttimeoverlay.h:
13379         * ext/dv/gstdvdec.h:
13380         * ext/dv/gstdvdemux.h:
13381         * ext/esd/esdmon.h:
13382         * ext/esd/esdsink.h:
13383         * ext/flac/gstflacenc.h:
13384         * ext/gconf/gstgconfaudiosink.h:
13385         * ext/gconf/gstgconfaudiosrc.h:
13386         * ext/gconf/gstgconfvideosink.h:
13387         * ext/gconf/gstgconfvideosrc.h:
13388         * ext/gdk_pixbuf/gstgdkanimation.h:
13389         * ext/gdk_pixbuf/pixbufscale.h:
13390         * ext/hal/gsthalaudiosink.h:
13391         * ext/hal/gsthalaudiosrc.h:
13392         * ext/jpeg/gstjpegenc.h:
13393         * ext/jpeg/gstsmokedec.h:
13394         * ext/jpeg/gstsmokeenc.h:
13395         * ext/libcaca/gstcacasink.h:
13396         * ext/libmng/gstmngdec.h:
13397         * ext/libmng/gstmngenc.h:
13398         * ext/libpng/gstpngdec.h:
13399         * ext/libpng/gstpngenc.h:
13400         * ext/raw1394/gstdv1394src.h:
13401         * ext/speex/gstspeexenc.h:
13402         * gst/autodetect/gstautoaudiosink.h:
13403         * gst/autodetect/gstautovideosink.h:
13404         * gst/avi/gstavidemux.h:
13405         * gst/cutter/gstcutter.h:
13406         * gst/debug/efence.h:
13407         * gst/debug/gstnavigationtest.h:
13408         * gst/debug/gstnavseek.h:
13409         * gst/flx/gstflxdec.h:
13410         * gst/goom/gstgoom.h:
13411         * gst/icydemux/gsticydemux.h:
13412         * gst/id3demux/gstid3demux.h:
13413         * gst/law/alaw-decode.h:
13414         * gst/law/alaw-encode.h:
13415         * gst/law/mulaw-decode.h:
13416         * gst/law/mulaw-encode.h:
13417         * gst/matroska/matroska-mux.h:
13418         * gst/median/gstmedian.h:
13419         * gst/oldcore/gstaggregator.h:
13420         * gst/oldcore/gstfdsink.h:
13421         * gst/oldcore/gstmd5sink.h:
13422         * gst/oldcore/gstmultifilesrc.h:
13423         * gst/oldcore/gstpipefilter.h:
13424         * gst/oldcore/gstshaper.h:
13425         * gst/oldcore/gststatistics.h:
13426         * gst/rtp/gstasteriskh263.h:
13427         * gst/rtp/gstrtpL16depay.h:
13428         * gst/rtp/gstrtpL16pay.h:
13429         * gst/rtp/gstrtpamrdepay.h:
13430         * gst/rtp/gstrtpamrpay.h:
13431         * gst/rtp/gstrtpdepay.h:
13432         * gst/rtp/gstrtpgsmdepay.h:
13433         * gst/rtp/gstrtpgsmpay.h:
13434         * gst/rtp/gstrtph263pay.h:
13435         * gst/rtp/gstrtph263pdepay.h:
13436         * gst/rtp/gstrtph263ppay.h:
13437         * gst/rtp/gstrtpmp4gpay.h:
13438         * gst/rtp/gstrtpmp4vdepay.h:
13439         * gst/rtp/gstrtpmp4vpay.h:
13440         * gst/rtp/gstrtpmpadepay.h:
13441         * gst/rtp/gstrtpmpapay.h:
13442         * gst/rtp/gstrtppcmadepay.h:
13443         * gst/rtp/gstrtppcmapay.h:
13444         * gst/rtp/gstrtppcmudepay.h:
13445         * gst/rtp/gstrtppcmupay.h:
13446         * gst/rtp/gstrtpspeexdepay.h:
13447         * gst/rtp/gstrtpspeexpay.h:
13448         * gst/rtsp/gstrtpdec.h:
13449         * gst/rtsp/gstrtspsrc.h:
13450         * gst/smpte/gstsmpte.h:
13451         * gst/udp/gstdynudpsink.h:
13452         * gst/udp/gstmultiudpsink.h:
13453         * gst/udp/gstudpsink.h:
13454         * gst/udp/gstudpsrc.h:
13455         * gst/videofilter/gstvideobalance.h:
13456         * gst/videofilter/gstvideoflip.h:
13457         * sys/oss/gstossdmabuffer.h:
13458         * sys/oss/gstossmixerelement.h:
13459         * sys/oss/gstosssink.h:
13460         * sys/oss/gstosssrc.h:
13461         * sys/osxvideo/osxvideosink.h:
13462         * sys/sunaudio/gstsunaudiomixer.h:
13463         * sys/sunaudio/gstsunaudiosink.h:
13464         * sys/ximage/gstximagesrc.h:
13465         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
13466
13467 2006-05-31  Wim Taymans  <wim@fluendo.com>
13468
13469         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
13470         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
13471         (gst_goom_src_setcaps), (gst_goom_src_event),
13472         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
13473         (gst_goom_change_state):
13474         * gst/goom/gstgoom.h:
13475         Handle QoS.
13476         Handle flushing, discont and events.
13477         Fix timestamps and various other cleanups.
13478
13479 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13480
13481         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
13482         Fix bus reset when using libiec61883
13483
13484 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13485
13486         * configure.ac:
13487         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
13488         * ext/raw1394/Makefile.am:
13489         Add CFLAGS.
13490         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
13491         New method, to receive using libiec61883.
13492         (gst_dv1394src_iso_receive),
13493         #ifdef'd out if libiec61883 is present.
13494         (gst_dv1394src_bus_reset),
13495         Get userdata correctly if using libiec61883. 
13496         (gst_dv1394src_create),
13497         When using libiec61883, only poll one fd and no need to read.
13498         (gst_dv1394src_discover_avc_node),
13499         Replace g_warnings.
13500         (gst_dv1394src_start),
13501         Create new handle when we know which dv port.  More reliable
13502         than setting port on an existing handle.  Initialise libiec61883.
13503         (gst_dv1394src_stop):
13504         If using libiec61883, then cleanup its handle properly.
13505         * ext/raw1394/gstdv1394src.h:
13506         Add libiec61883 handle.
13507
13508 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
13509
13510         * gst/avi/gstavidemux.c:
13511           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
13512         * win32/MANIFEST:
13513           sort file listing
13514         * win32/vs6/libgstavi.dsp:
13515           add gstavimux.c to the project
13516         * win32/vs6/libgstid3demux.dsp:
13517           add link to zlib library
13518         * win32/vs6/libgstmatroska.dsp:
13519           add matroska-ids.c to the project
13520
13521 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
13522
13523         Patch by: Sebastian Dröge  <mail at slomosnail de >
13524
13525         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13526         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13527         * ext/taglib/Makefile.am:
13528         * ext/taglib/gstapev2mux.cc:
13529         * ext/taglib/gstapev2mux.h:
13530         * ext/taglib/gstid3v2mux.cc:
13531         * ext/taglib/gsttaglibmux.c: (plugin_init):
13532         * ext/taglib/gsttaglibmux.h:
13533           Add apev2mux element (#343122).
13534         
13535         * tests/check/Makefile.am:
13536         * tests/check/elements/apev2mux.c:
13537         (test_taglib_apev2mux_create_tags),
13538         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
13539         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
13540         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
13541         (apev2mux_suite), (main):
13542           Add unit test for apev2mux element.
13543
13544 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
13545
13546         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
13547         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
13548         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
13549           GST_PTR_FORMAT should be used to print caps in debug statements.
13550
13551 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
13552
13553         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
13554
13555         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
13556         (ape_demux_parse_tags):
13557           Some clean-ups and additions: map APE 'file' tag to
13558           GST_TAG_LOCATION (#343123); add support for extracting
13559           the track count and clean up parsing a bit (#343127).
13560
13561 2006-05-28  Edward Hervey  <edward@fluendo.com>
13562
13563         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
13564         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
13565
13566 2006-05-28  Edward Hervey  <edward@fluendo.com>
13567
13568         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
13569         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
13570         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
13571         * ext/jpeg/gstjpegdec.h:
13572         Clip outgoing buffers according to currently configured segment.
13573
13574 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
13575
13576         * ext/taglib/gstid3v2mux.cc:
13577           Handle  writing of track-count or album-volume-count without
13578           track-number or albume-volume-number (in this case the number
13579           will just be set to 0).
13580
13581         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
13582           It would be nice if we actually checked the values received for
13583           track/album-volume number/count in  _check_tags(), rather than
13584           setting them again ...
13585
13586 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
13587
13588         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
13589           A track/volume number or count of 0 does not make sense,
13590           just ignore it along with negative numbers (a tag might
13591           only contain a track count without a track number).
13592
13593 2006-05-27  Edward Hervey  <edward@fluendo.com>
13594
13595         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
13596         (gst_jpeg_dec_sink_event):
13597         Abort decompression when receiving FLUSH_STOP. This should avoid
13598         issues when interrupting decoding with flushes.
13599
13600 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
13601
13602         * ext/flac/gstflac.c:
13603           Don't #include file we don't dist any longer.
13604
13605 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
13606
13607         * README:
13608           Replace current README (containing the release notes from
13609           some 0.9.x version) with a proper README taken from the core.
13610
13611 2006-05-24  Wim Taymans  <wim@fluendo.com>
13612
13613         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
13614         Implement EOS correctly by either posting
13615         SEGMENT_DONE or pushing an EOS message depending
13616         on the seek type. Fixes #342592
13617
13618 2006-05-24  Wim Taymans  <wim@fluendo.com>
13619
13620         * gst/law/alaw-decode.c: (gst_alawdec_chain):
13621         * gst/law/alaw-decode.h:
13622         * gst/law/alaw-encode.c: (gst_alawenc_chain):
13623         * gst/law/alaw-encode.h:
13624         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
13625         * gst/law/mulaw-decode.h:
13626         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
13627         * gst/law/mulaw-encode.h:
13628         Some cleanups in the chain functions.
13629         Remove some GStreamer 0.0.2 bits.
13630
13631 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
13632
13633         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13634
13635         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
13636           gst_collect_pads_stop() needs to be called before chaining up
13637           to the parent class (#342734).
13638
13639 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
13640
13641         * ext/flac/Makefile.am:
13642         * ext/flac/flac_compat.h:
13643         * ext/flac/gstflac.c:
13644         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
13645         * ext/flac/gstflacenc.c:
13646           Remove backwards compatibility cruft for dealing with FLAC API
13647           changes in the 1.0.x series - we require 1.1.1 or newer these days.
13648
13649 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
13650
13651         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
13652         (gst_matroska_demux_push_xiph_codec_priv_data),
13653         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
13654         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
13655         * gst/matroska/matroska-ids.h:
13656         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
13657         (gst_matroska_mux_video_pad_setcaps),
13658         (xiph3_streamheader_to_codecdata),
13659         (vorbis_streamheader_to_codecdata),
13660         (theora_streamheader_to_codecdata),
13661         (gst_matroska_mux_audio_pad_setcaps),
13662         (gst_matroska_mux_write_data):
13663           Add support for muxing/demuxing theora video (#342448; too bad
13664           none of the usual linux players can actually play this). Playback
13665           in GStreamer will require additional changes to theoradec in -base.
13666           Refactor streamheaders <=> CodecPrivateData code a bit; some small
13667           cleanups.
13668
13669 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
13670
13671         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
13672         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
13673           Fix crashes when the horizontal subsampling is 1.
13674           Fixes #342097.
13675
13676 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
13677
13678         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13679
13680         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
13681         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
13682         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
13683         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
13684         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
13685         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
13686         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
13687         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
13688         (gst_avi_mux_change_state):
13689         * gst/avi/gstavimux.h:
13690           Some enhancements for avimux (#342526):
13691            - add odml (large file) index support
13692            - store codec init data (e.g. huffyuv)
13693            - miscellaneous other fixes/cleanups
13694
13695 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
13696
13697         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
13698         Don't output any tag when we encounter a negative track number - the
13699         tag type is uint, so we end up outputting huge positive numbers
13700         instead. (Fixes: #342029)
13701
13702 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
13703
13704         * configure.ac:
13705           update for new GSTPB_PLUGINS_DIR
13706
13707 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
13708
13709         * rtp/gst/gstrtph263pay.c:
13710         Properly set static caps for H263 at 34.
13711
13712 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
13713
13714         Patch by: James "Doc" Livingston  <doclivingston gmail com>
13715
13716         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
13717           Merge event tags and tag setter tags correctly (#339918). Also,
13718           don't leak taglist in case of an error.
13719           
13720 2006-05-17  Edward Hervey  <edward@fluendo.com>
13721
13722         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
13723         We can only do caps intersection if the othercaps are non-empty and not
13724         ANY. Else we return the pad template (base_caps).
13725
13726 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
13727
13728         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
13729           Fix crash when outputting debugging information for certain
13730           pictures (always good to use the right struct member for
13731           the number of records in an array).
13732
13733 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
13734
13735         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
13736
13737         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
13738         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
13739         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
13740         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
13741         (gst_ebml_read_float), (gst_ebml_read_ascii),
13742         (gst_ebml_read_binary):
13743           Don't create unnecessary sub-buffers all the time. Dramatically
13744           improves performance with multiple concurrently running
13745           matroskademux instances (#341818) (and avoids doing
13746           unnecessarily inefficient things in the general case).
13747
13748 2006-05-16  Edward Hervey  <edward@fluendo.com>
13749
13750         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
13751         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
13752         return value of gst_pad_push_event().
13753
13754 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
13755
13756         * gst/autodetect/gstautoaudiosink.c:
13757         (gst_auto_audio_sink_find_best):
13758         * gst/autodetect/gstautovideosink.c:
13759         (gst_auto_video_sink_find_best):
13760         Make the name of the child element be based on the name of the
13761         parent, so that debug output is more useful.
13762         
13763         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
13764         (parse_insert_string_field), (parse_split_strings):
13765         Rework string parsing to always walk over BOM markers in UTF16
13766         strings, using the endianness indicated by the innermost one,
13767         then trying the opposite endianness if that fails to convert
13768         to valid UTF-8. Fixes #341774
13769
13770 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13771
13772         Patch from: Matthieu <matthieu at fluendo dot com>
13773
13774         * ext/libpng/Makefile.am:
13775         Add LIBPNG_CFLAGS.
13776
13777 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
13778
13779         * ext/taglib/gstid3v2mux.cc:
13780           Add support for writing images (APIC frames) into ID3v2
13781           tags (picture type always set to 'other' for now though).
13782
13783 2006-05-14  Michael Smith  <msmith@fluendo.com>
13784
13785         * gst/wavparse/gstwavparse.c:
13786           Update docs; wavparse implements push and pull modes.
13787
13788 2006-05-12  Wim Taymans  <wim@fluendo.com>
13789
13790         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
13791         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
13792         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
13793         Ooops, bitten by the copy-and-paste design paradigm, fixes
13794         seek again.
13795
13796 2006-05-12  Wim Taymans  <wim@fluendo.com>
13797
13798         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13799         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
13800         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
13801         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
13802         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
13803         (gst_avi_demux_massage_index),
13804         (gst_avi_demux_calculate_durations_from_index),
13805         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
13806         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
13807         (gst_avi_demux_loop):
13808         * gst/avi/gstavidemux.h:
13809         Some cleanups, prepare to use GstSegment.
13810         Fix error in entry walking code.
13811         Fix VBR detection.
13812         Smarter timestamp calculation code.
13813         Uniform error/eos handling.
13814
13815 2006-05-12  Michael Smith  <msmith@fluendo.com>
13816
13817         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
13818         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
13819           Fix use of uninitialised values if we're NOT seeking in ready.
13820           Fix typos.
13821
13822 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
13823
13824         * gst/wavparse/Makefile.am:
13825           Add CFLAGS and LIBS for libgstbase, fixes build on
13826           Cygwin (#341489).
13827
13828 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
13829
13830         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
13831           Some more debug info. No need to check whether the string
13832           returned by g_convert() is really UTF-8 - either it is or
13833           we get NULL returned.
13834
13835 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
13836
13837         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
13838           Fix parsing of numeric genre strings some more, by ensuring that
13839           we only try and parse strings that a) Start with '(' and b) Consist
13840           only of digits.
13841           Also, when finding an escaping '((' sequence, bust it back to '(' by
13842           swallowing the first parenthesis
13843
13844 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
13845
13846         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
13847         (gst_esdsink_open), (gst_esdsink_close):
13848         * ext/esd/esdsink.h:
13849           Move the esd_get_server_info() into gst_esdsink_open() and fail
13850           with a decent error message on errors.
13851
13852 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
13853
13854         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
13855         (gst_esdmon_channels_get_type):
13856         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
13857         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
13858         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
13859         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
13860         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
13861         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
13862         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
13863         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
13864         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
13865         * gst/videomixer/videomixer.c:
13866         (gst_video_mixer_background_get_type):
13867           Const-ify GEnumValue arrays.
13868
13869 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
13870
13871         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
13872
13873         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
13874         (gst_avi_mux_do_video_buffer):
13875           Work around gst_buffer_make_metadata_writable() bug that
13876           results in avimux marking all frames in the index as
13877           keyframes (#340859).
13878           
13879 2006-05-08  Wim Taymans  <wim@fluendo.com>
13880
13881         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
13882         Make parsing of urls suck slightly less.
13883
13884 2006-05-08  Edward Hervey  <edward@fluendo.com>
13885
13886         * autogen.sh: (CONFIGURE_DEF_OPT): 
13887         libtoolize on Darwin/MacOSX is called glibtoolize.
13888
13889 2006-05-08  Wim Taymans  <wim@fluendo.com>
13890
13891         Patch by: Jens Granseuer <jensgr at gmx dot net>
13892
13893         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
13894         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
13895         C89 compliance fixes. Fixes #340980
13896
13897 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
13898
13899         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
13900         * ext/flac/gstflacdec.h:
13901           Handle segment seeks that include the end of the file as stop point
13902           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
13903           message instead of an EOS event in case we're in segment seek
13904           mode (fixes #340699).
13905           
13906 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
13907
13908         * ext/cairo/gsttextoverlay.c:
13909         * ext/flac/gstflacdec.c:
13910         * ext/gdk_pixbuf/pixbufscale.c:
13911         * gst/apetag/gstapedemux.c:
13912         * gst/debug/breakmydata.c:
13913         * gst/debug/testplugin.c:
13914         * gst/matroska/ebml-write.c:
13915         * gst/multipart/multipartdemux.c:
13916         * sys/osxaudio/gstosxaudiosink.c:
13917         * sys/osxaudio/gstosxaudiosrc.c:
13918         Add semicolons after GST_BOILERPLATE[_FULL] so that
13919         indent doesn't mess up following lines.
13920
13921 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
13922
13923         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
13924
13925         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
13926           Don't leak caps when freeing the stream context (#340623).
13927
13928 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
13929
13930         * configure.ac:
13931           Back to CVS
13932
13933 === release 0.10.3 ===
13934
13935 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
13936
13937         * configure.ac:
13938           releasing 0.10.3, "Desplazado"
13939
13940 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
13941
13942         * gst/matroska/matroska-mux.c:
13943         (gst_matroska_mux_stream_is_vorbis_header),
13944         (gst_matroska_mux_write_data):
13945           Don't strcmp() NULL strings.
13946           Only start new clusters on video keyframes, not on any
13947           random audio buffer that doesn't have the DELTA_UNIT
13948           flag set (fixes 'make check' again).
13949
13950 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
13951
13952         Patch by: Mark Nauwelaerts  <manauw at skynet be>
13953
13954         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
13955         (gst_matroska_mux_stream_is_vorbis_header),
13956         (gst_matroska_mux_write_data):
13957           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
13958           value and then dead-lock when muxing vorbis audio streams
13959           (the three vorbis header buffers carry no timestamp, and it
13960           would try to mux these after all video buffers). Fixes #340346.
13961
13962           Improve clustering: start a new cluster also whenever we get
13963           a keyframe.     
13964
13965 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13966
13967         * win32/common/config.h:
13968         * win32/MANIFEST
13969           add the generated file as well
13970
13971 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13972
13973         * Makefile.am:
13974         * configure.ac:
13975         * win32/common/config.h.in:
13976           add win32 stuff
13977
13978 2006-05-03  Michael Smith  <msmith@fluendo.com>
13979
13980         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
13981           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
13982           SUCKS.
13983
13984 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
13985
13986         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
13987         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
13988         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
13989           don't leak caps-string
13990
13991 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
13992
13993         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
13994         (gst_id3demux_sink_activate):
13995           Let core insert default error message for TYPE_NOT_FOUND
13996           errors, it's just as good as our own and has the added
13997           bonus of being translated.
13998
13999 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
14000
14001         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
14002         (gst_tag_demux_sink_event):
14003         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
14004         (gst_id3demux_sink_event):
14005           Post an error message when we get an EOS event and were not
14006           able to find out the type of stream.
14007
14008         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
14009         (test_taglib_id3mux_with_tags):
14010           Decrease num-buffers to 16 per iteration again, otherwise the
14011           many memcpy()s and reallocations in the test will hammer slow
14012           CPUs completely and make the test timeout.
14013
14014 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14015
14016         * configure.ac:
14017           figure out where plugins-base plugins are
14018         * tests/check/Makefile.am:
14019           use plugins-base plugins, so we have typefind functions
14020         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
14021           increase num-buffers, this makes sure the test errors out instead
14022           of timing out when no typefind functions are present
14023
14024 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14025
14026         * docs/plugins/Makefile.am:
14027           also check .cc files for gtk-doc markup
14028         * configure.ac:
14029         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14030         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14031         * tests/check/Makefile.am:
14032         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
14033         * ext/Makefile.am:
14034         * ext/taglib/Makefile.am:
14035         * ext/taglib/gstid3v2mux.h:
14036         * ext/taglib/gsttaglibmux.c:
14037         * ext/taglib/gsttaglibmux.h:
14038           move taglib-based id3v2muxer to -good.  Fixes #336110.
14039
14040 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
14041
14042         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
14043           ... and fix multichannel/WAVFORMATEX support again.
14044
14045 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
14046
14047         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
14048         (gst_wavparse_class_init), (gst_wavparse_dispose),
14049         (gst_wavparse_reset), (gst_wavparse_init),
14050         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
14051         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
14052         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
14053         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
14054         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
14055         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
14056         (gst_wavparse_stream_data), (gst_wavparse_loop),
14057         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
14058         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
14059         (gst_wavparse_change_state), (plugin_init):
14060         * gst/wavparse/gstwavparse.h:
14061           Add push (streaming) mode to wavparse (fixes #337625)
14062
14063 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14064
14065         * configure.ac:
14066         * tests/Makefile.am:
14067           add ximagesrc icles test
14068
14069 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14070
14071         * configure.ac:
14072         * docs/plugins/Makefile.am:
14073         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14074         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14075         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
14076         (gst_cmml_enc_push_clip):
14077         * sys/Makefile.am:
14078         * sys/ximage/Makefile.am:
14079         * sys/ximage/gstximagesrc.c:
14080           Move ximagesrc plug-in to good after review.  Fixes #336756.
14081
14082 2006-04-28  Michael Smith  <msmith@fluendo.com>
14083
14084         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
14085         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
14086         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
14087         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
14088         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
14089         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
14090         * gst/icydemux/gsticydemux.h:
14091           Fix event handling: cache events when typefinding and forward later.
14092
14093 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14094
14095         * sys/osxaudio/gstosxaudiosink.c:
14096         (plugin_init):
14097          Register osxaudiosrc to the plugin.
14098         * sys/osxaudio/gstosxaudiosrc.c:
14099         (gst_osx_audio_src_osxelement_do_init),
14100         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
14101         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
14102         (gst_osx_audio_src_get_property),
14103         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
14104         (gst_osx_audio_src_osxelement_init):
14105         * sys/osxaudio/gstosxaudiosrc.h:
14106           Port of osxaudiosrc to 0.10.
14107         * sys/osxaudio/Makefile.am:
14108           Add osxaudiosrc
14109
14110 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14111
14112         * sys/osxaudio/gstosxringbuffer.c:
14113         * sys/osxaudio/gstosxringbuffer.h:
14114           Forgot to commit earlier, part of the OSX audio plugin port
14115
14116 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
14117
14118         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
14119         (parse_split_strings):
14120           Recognise and skip any byte order marker (BOM) in
14121           UTF-16 strings.
14122
14123 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
14124
14125         * docs/plugins/Makefile.am:
14126         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14127         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14128         * docs/plugins/gst-plugins-good-plugins.hierarchy:
14129         * docs/plugins/inspect/plugin-avi.xml:
14130         * gst/avi/gstavidemux.c:
14131         * gst/avi/gstavimux.c:
14132           Add docs for both avidemux and avimux.
14133
14134 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
14135
14136         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
14137
14138         * gst/avi/Makefile.am:
14139         * gst/avi/gstavi.c: (plugin_init):
14140         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
14141         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
14142         (gst_avi_mux_class_init), (gst_avi_mux_init),
14143         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
14144         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
14145         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
14146         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
14147         (gst_avi_mux_riff_get_avix_header),
14148         (gst_avi_mux_riff_get_video_header),
14149         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
14150         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
14151         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
14152         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
14153         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
14154         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
14155         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
14156         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
14157         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
14158         (gst_avi_mux_change_state):
14159         * gst/avi/gstavimux.h:
14160           Port AVI muxer to GStreamer-0.10 (#332031).
14161
14162         * tests/check/Makefile.am:
14163         * tests/check/elements/avimux.c:
14164         * tests/check/elements/.cvsignore:
14165           Add unit test for AVI muxer.
14166
14167 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
14168
14169         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
14170         (gst_wavparse_class_init), (gst_wavparse_reset),
14171         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
14172         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
14173         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
14174         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
14175         (gst_wavparse_stream_data), (gst_wavparse_loop),
14176         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
14177         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
14178         (plugin_init):
14179         * gst/wavparse/gstwavparse.h:
14180           reverted patch #337625 for the price of 1 hour sleep
14181
14182 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
14183
14184         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
14185         (gst_wavparse_class_init), (gst_wavparse_reset),
14186         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
14187         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
14188         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
14189         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
14190         (gst_wavparse_stream_data), (gst_wavparse_loop),
14191         (gst_wavparse_chain), (plugin_init):
14192         * gst/wavparse/gstwavparse.h:
14193           correct partial implementation of push mode
14194           (from my last commit)
14195
14196 2006-04-26  Wim Taymans  <wim@fluendo.com>
14197
14198         * ext/esd/esdsink.c:
14199         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
14200         it is not in esd.h
14201
14202 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
14203
14204         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
14205         (gst_au_parse_class_init), (gst_au_parse_init),
14206         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
14207         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
14208         (gst_au_parse_chain), (gst_au_parse_src_convert),
14209         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
14210         (gst_au_parse_sink_event), (gst_au_parse_src_event),
14211         (gst_au_parse_change_state):
14212         * gst/auparse/gstauparse.h:
14213           Rewrite auparse to suck a little bit less: make source pad
14214           dynamic, so decodebin/playbin work with non-raw formats
14215           like alaw/mulaw; add query function for duration/position
14216           queries; check whether we have enough data before attempting
14217           to parse the header (instead of crashing when that is not the
14218           case); work around audioconvert sucking by swapping endianness
14219           to the native endianness ourselves for float formats; send
14220           initial newsegment event. Fixes #161712.
14221
14222 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14223
14224         * sys/osxaudio/Makefile.am:
14225         * sys/osxaudio/gstosxaudioelement.c:
14226         (gst_osx_audio_element_get_type),
14227         (gst_osx_audio_element_class_init):
14228         * sys/osxaudio/gstosxaudioelement.h:
14229         * sys/osxaudio/gstosxaudiosink.c:
14230         (gst_osx_audio_sink_osxelement_do_init),
14231         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
14232         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
14233         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
14234         (gst_osx_audio_sink_create_ringbuffer),
14235         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
14236         (plugin_init):
14237         * sys/osxaudio/gstosxaudiosink.h:
14238         Port of osxaudiosink to 0.10
14239
14240 2006-04-26  Wim Taymans  <wim@fluendo.com>
14241
14242         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
14243         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
14244         the size of the ringbuffer. This should fix hangs with older 
14245         esd sound servers.
14246
14247 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
14248
14249         * ext/aalib/gstaasink.c:
14250         * ext/annodex/gstcmmldec.c:
14251         * ext/annodex/gstcmmlenc.c:
14252         * ext/cairo/gsttextoverlay.c:
14253         * ext/cairo/gsttimeoverlay.c:
14254         * ext/cdio/gstcdiocddasrc.c:
14255         * ext/dv/gstdvdec.c:
14256         * ext/dv/gstdvdemux.c:
14257         * ext/esd/esdmon.c:
14258         * ext/esd/esdsink.c:
14259         * ext/flac/gstflacenc.c:
14260         * ext/flac/gstflactag.c:
14261         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
14262         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
14263         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
14264         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
14265         * ext/gdk_pixbuf/pixbufscale.c:
14266         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
14267         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
14268         * ext/jpeg/gstjpegdec.c:
14269         * ext/jpeg/gstjpegenc.c:
14270         * ext/jpeg/gstsmokedec.c:
14271         * ext/jpeg/gstsmokeenc.c:
14272         * ext/libcaca/gstcacasink.c:
14273         * ext/libmng/gstmngdec.c:
14274         * ext/libmng/gstmngenc.c:
14275         * ext/libpng/gstpngdec.c:
14276         * ext/libpng/gstpngenc.c:
14277         * ext/mikmod/gstmikmod.c:
14278         * ext/raw1394/gstdv1394src.c:
14279         * ext/shout2/gstshout2.c: (gst_shout2send_init):
14280         * ext/shout2/gstshout2.h:
14281         * ext/speex/gstspeexdec.c:
14282         * ext/speex/gstspeexenc.c:
14283         * gst/alpha/gstalpha.c:
14284         * gst/alpha/gstalphacolor.c:
14285         * gst/apetag/gstapedemux.c:
14286         * gst/auparse/gstauparse.c:
14287         * gst/autodetect/gstautoaudiosink.c:
14288         (gst_auto_audio_sink_base_init):
14289         * gst/autodetect/gstautovideosink.c:
14290         (gst_auto_video_sink_base_init):
14291         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
14292         * gst/avi/gstavimux.c: (gst_avimux_base_init):
14293         * gst/cutter/gstcutter.c:
14294         * gst/debug/breakmydata.c:
14295         * gst/debug/efence.c:
14296         * gst/debug/gstnavigationtest.c:
14297         * gst/debug/gstnavseek.c:
14298         * gst/debug/negotiation.c:
14299         * gst/debug/progressreport.c:
14300         * gst/debug/testplugin.c:
14301         * gst/effectv/gstaging.c:
14302         * gst/effectv/gstdice.c:
14303         * gst/effectv/gstedge.c:
14304         * gst/effectv/gstquark.c:
14305         * gst/effectv/gstrev.c:
14306         * gst/effectv/gstshagadelic.c:
14307         * gst/effectv/gstvertigo.c:
14308         * gst/effectv/gstwarp.c:
14309         * gst/flx/gstflxdec.c:
14310         * gst/goom/gstgoom.c:
14311         * gst/icydemux/gsticydemux.c:
14312         * gst/id3demux/gstid3demux.c:
14313         * gst/interleave/deinterleave.c:
14314         * gst/interleave/interleave.c:
14315         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
14316         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
14317         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
14318         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
14319         * gst/level/gstlevel.c:
14320         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
14321         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
14322         * gst/median/gstmedian.c:
14323         * gst/monoscope/gstmonoscope.c:
14324         * gst/multipart/multipartdemux.c:
14325         * gst/multipart/multipartmux.c:
14326         * gst/oldcore/gstaggregator.c:
14327         * gst/oldcore/gstfdsink.c:
14328         * gst/oldcore/gstmd5sink.c:
14329         * gst/oldcore/gstmultifilesrc.c:
14330         * gst/oldcore/gstpipefilter.c:
14331         * gst/oldcore/gstshaper.c:
14332         * gst/oldcore/gststatistics.c:
14333         * gst/rtp/gstasteriskh263.c:
14334         * gst/rtp/gstrtpL16depay.c:
14335         * gst/rtp/gstrtpL16pay.c:
14336         * gst/rtp/gstrtpamrdepay.c:
14337         * gst/rtp/gstrtpamrpay.c:
14338         * gst/rtp/gstrtpdepay.c:
14339         * gst/rtp/gstrtpgsmpay.c:
14340         * gst/rtp/gstrtph263pay.c:
14341         * gst/rtp/gstrtph263pdepay.c:
14342         * gst/rtp/gstrtph263ppay.c:
14343         * gst/rtp/gstrtpilbcdepay.c:
14344         * gst/rtp/gstrtpmp4gpay.c:
14345         * gst/rtp/gstrtpmp4vdepay.c:
14346         * gst/rtp/gstrtpmp4vpay.c:
14347         * gst/rtp/gstrtpmpadepay.c:
14348         * gst/rtp/gstrtpmpapay.c:
14349         * gst/rtp/gstrtppcmadepay.c:
14350         * gst/rtp/gstrtppcmapay.c:
14351         * gst/rtp/gstrtppcmudepay.c:
14352         * gst/rtp/gstrtppcmupay.c:
14353         * gst/rtp/gstrtpspeexdepay.c:
14354         * gst/rtp/gstrtpspeexpay.c:
14355         * gst/rtsp/gstrtpdec.c:
14356         * gst/rtsp/gstrtspsrc.c:
14357         * gst/smpte/gstsmpte.c:
14358         * gst/udp/gstdynudpsink.c:
14359         * gst/udp/gstmultiudpsink.c:
14360         * gst/udp/gstudpsink.c:
14361         * gst/udp/gstudpsrc.c:
14362         * gst/videobox/gstvideobox.c:
14363         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
14364         * gst/videofilter/gstvideobalance.c:
14365         * gst/videofilter/gstvideoflip.c:
14366         * gst/videofilter/gstvideotemplate.c:
14367         (gst_videotemplate_base_init):
14368         * gst/videomixer/videomixer.c:
14369         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
14370         (gst_wavparse_class_init), (gst_wavparse_dispose),
14371         (gst_wavparse_reset), (gst_wavparse_init),
14372         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
14373         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
14374         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
14375         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
14376         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
14377         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
14378         (gst_wavparse_change_state):
14379         * gst/wavparse/gstwavparse.h:
14380         * sys/oss/gstossmixerelement.c:
14381         * sys/oss/gstosssink.c:
14382         * sys/oss/gstosssrc.c:
14383         * sys/osxaudio/gstosxaudioelement.c:
14384         * sys/osxaudio/gstosxaudiosink.c:
14385         * sys/osxaudio/gstosxaudiosrc.c:
14386         * sys/sunaudio/gstsunaudiomixer.c:
14387         * sys/sunaudio/gstsunaudiosink.c:
14388           Define GstElementDetails as const and also static (when defined as
14389           global)
14390
14391 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
14392
14393         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
14394           Source pad has fixed caps. If we don't set this, bad
14395           things happen when the window is resized.
14396
14397 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
14398
14399         * gst/matroska/Makefile.am:
14400         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
14401         (gst_matroska_demux_handle_src_event):
14402         * gst/matroska/matroska-ids.c:
14403         (gst_matroska_track_init_video_context),
14404         (gst_matroska_track_init_audio_context),
14405         (gst_matroska_track_init_subtitle_context),
14406         (gst_matroska_track_init_complex_context):
14407         * gst/matroska/matroska-ids.h:
14408           Handle case where the TrackType ebml chunk does not come before the
14409           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
14410           events.
14411
14412 2006-04-25  Wim Taymans  <wim@fluendo.com>
14413
14414         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
14415         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
14416         It's codec_data, not codec_info.
14417
14418 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
14419
14420         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
14421
14422         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
14423           Handle codec_data for VfW compatibility codec IDs (#339451)
14424
14425         * gst/matroska/matroska-mux.c:
14426         (gst_matroska_mux_video_pad_setcaps):
14427           Same here, handle codec_data and add additional caps we can handle
14428           now to the pad template (huffyuv, dv and h263 video) (#339451)
14429
14430 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
14431
14432         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
14433
14434         * gst/matroska/matroska-mux.c:
14435         (gst_matroska_mux_create_buffer_header),
14436         (gst_matroska_mux_write_data):
14437           Fix timestamping of B-frames, use signed integers, do
14438           some rounding (#339678).
14439
14440 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
14441
14442         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
14443         just make it compile with --disable-gst-debug.
14444
14445 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
14446
14447         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
14448         Fix a bad conversion using gst_guint64_to_gdouble.
14449         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
14450         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
14451         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
14452     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
14453         mistake.
14454
14455 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
14456
14457         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
14458         Use gst_guint64_to_gdouble for conversions
14459         * win32/vs6/gst_plugins_good.dsw:
14460         * win32/vs6/libgsticydemux.dsp:
14461         Add a project file for icydemux
14462
14463 2006-04-21  Wim Taymans  <wim@fluendo.com>
14464
14465         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
14466
14467         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14468         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
14469         When splitting audio chunks, the block alignment is not taken in
14470         consideration, so the smaller chunks could be of size which is 
14471         not a multiple of the block alignment. Fixes #336904
14472
14473 2006-04-21  Wim Taymans  <wim@fluendo.com>
14474
14475         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
14476         Use scale functions
14477
14478 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
14479
14480         * ext/dv/gstdv.c: (plugin_init):
14481           Fix build.
14482
14483 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
14484
14485         * gst/debug/progressreport.c: (gst_progress_report_finalize),
14486         (gst_progress_report_class_init), (gst_progress_report_init),
14487         (gst_progress_report_do_query), (gst_progress_report_report),
14488         (gst_progress_report_set_property),
14489         (gst_progress_report_get_property):
14490           Add 'format' property to force querying to a particular format.
14491
14492 2006-04-21  Andy Wingo  <wingo@pobox.com>
14493
14494         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
14495         best, on big endian systems. Drop its rank in that case. OTOH on
14496         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
14497
14498 2006-04-21  Michael Smith  <msmith@fluendo.com>
14499
14500         * configure.ac:
14501         * gst/icydemux/Makefile.am:
14502         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
14503         (gst_icydemux_base_init), (gst_icydemux_class_init),
14504         (gst_icydemux_reset), (gst_icydemux_init),
14505         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
14506         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
14507         (unicodify), (gst_icydemux_unicodify),
14508         (gst_icydemux_parse_and_send_tags),
14509         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
14510         (gst_icydemux_chain), (gst_icydemux_change_state),
14511         (gst_icydemux_send_tag_event), (plugin_init):
14512         * gst/icydemux/gsticydemux.h:
14513         * tests/check/Makefile.am:
14514         * tests/check/elements/icydemux.c: (typefind_succeed),
14515         (plugin_init), (icydemux_found_pad), (create_icydemux),
14516         (cleanup_icydemux), (push_data), (GST_START_TEST),
14517         (icydemux_suite), (main):
14518           Add icydemux, and tests.
14519
14520 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
14521
14522         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
14523           Post SEGMENT_DONE message in TIME format.
14524
14525 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
14526
14527         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
14528
14529         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
14530         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
14531           Fix index creation when we have to scan the file to create
14532           an index. There may be other types of RIFF 'LIST' chunks than
14533           'movi' and we need to skip them properly as well or we'll end up
14534           reading garbage (#336889). Some other cosmetic changes.
14535           
14536 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
14537
14538         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
14539         (gst_flac_dec_handle_seek_event):
14540           Add support for segment seeks (fixes #338290). Also demote
14541           some recurring debug message from DEBUG to LOG level.
14542
14543 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
14544
14545         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
14546         (gst_matroskademux_do_index_seek),
14547         (gst_matroska_demux_handle_seek_event),
14548         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
14549         * gst/matroska/matroska-ids.h:
14550           Set DISCONT flag on first buffer after a discontinuity.
14551           Fix newsegment events sent when seeking and honour KEY_UNIT
14552           seek flag. Create pad with bogus caps if we don't recognise
14553           the stream codec id.
14554
14555         * gst/matroska/matroska-demux.h:
14556           Fix GObject macros.
14557
14558 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
14559
14560         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
14561
14562         * gst/matroska/matroska-demux.c:
14563         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
14564           Handle end of segment properly when set; don't dead-lock when
14565           posting start of segment message when doing a segment seek.
14566           Fixes #338810.
14567
14568 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
14569
14570         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
14571         (gst_matroska_demux_plugin_init):
14572           Make mpeg2 aac audio work: create artificial private codec data
14573           chunk which faad2 seems to require, just as we do for mpeg4 aac.
14574           Also call gst_riff_init(). Partially fixes #338767.
14575
14576 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
14577
14578         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
14579         (gst_wavenc_class_init), (gst_wavenc_init),
14580         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
14581         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
14582         (gst_wavenc_chain), (gst_wavenc_change_state):
14583         * gst/wavenc/gstwavenc.h:
14584           Set caps on first outgoing buffer, so that it doesn't error out
14585           immediately with a non-negotiated error (#338716). Rewrite and
14586           clean up a bit; fix setcaps function to parse things properly;
14587           fix sink caps (8bit audio is unsigned and doesn't have depth);
14588           use boilerplate macros; remove unused properties stuff.
14589
14590 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
14591
14592         * ext/gdk_pixbuf/gstgdkpixbuf.c:
14593           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
14594           handle MJPEG streams and might be autoplugged for those if the
14595           user doesn't have jpegdec installed (resulting in a cryptic error
14596           message about huffman tables). Better to disable JPEG decoding here
14597           and let the user figure out that she needs to install jpegdec.
14598
14599 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
14600
14601         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
14602         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
14603         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
14604         * ext/gdk_pixbuf/gstgdkpixbuf.h:
14605           Make work with packetised/framed input (e.g. png-in-quicktime). Use
14606           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
14607           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
14608           debug messages. Fix boilerplate macros.
14609
14610 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
14611
14612         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
14613         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
14614           No need to special-case for Gdk-2.0 any longer, we require
14615           Gdk 2.2 or newer; minor clean-ups.
14616
14617 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
14618
14619         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
14620         (gst_shout2send_class_init), (gst_shout2send_init),
14621         (set_shout_metadata), (gst_shout2send_set_metadata),
14622         (gst_shout2send_event), (gst_shout2send_start),
14623         (gst_shout2send_connect), (gst_shout2send_stop),
14624         (gst_shout2send_render), (gst_shout2send_set_property),
14625         (gst_shout2send_get_property), (gst_shout2send_setcaps),
14626         (plugin_init):
14627         * ext/shout2/gstshout2.h:
14628         * po/POTFILES.in:
14629           Rewrite a bit: use GstBaseSink::start and stop instead of a state
14630           change function; use GST_ELEMENT_ERROR for error reporting, not
14631           g_error() or GST_ERROR(); don't unref caps in setcaps function,
14632           will cause crashes or assertion failures; remove (unused) "sync"
14633           property, basesink already has such a property; misc. other
14634           minor fixes and cleanups.
14635
14636 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
14637
14638         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
14639         * ext/esd/gstesd.c: (plugin_init):
14640         * po/POTFILES.in:
14641           Add translatable error message for when we cannot
14642           connect to the sound server, as "Cannot open resource
14643           for writing" isn't really an acceptable message to show
14644           to the user in this case.
14645
14646 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
14647
14648         * sys/oss/gst-i18n-plugin.h:
14649           Remove bogus file that doesn't belong here.
14650
14651 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
14652
14653         Patch by: Philippe Valembois
14654
14655         * ext/shout2/gstshout2.c: (gst_shout2send_init),
14656         (gst_shout2send_set_metadata), (gst_shout2send_event),
14657         (gst_shout2send_render), (gst_shout2send_change_state):
14658         * ext/shout2/gstshout2.h:
14659           Handle tags being received before the connection to
14660           the server is established properly (see #338636).
14661
14662 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
14663
14664         * ext/shout2/gstshout2.c: (gst_shout2send_render):
14665           Don't crash in case the connection to the server fails:
14666           don't set pointer to NULL by assigning FALSE; error out
14667           properly by using GST_ELEMENT_ERROR and returning
14668           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
14669           before resetting the pointer.
14670
14671 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
14672
14673         * gst/id3demux/id3tags.c:
14674         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
14675         (Fixes #338713)
14676
14677 2006-04-12  Wim Taymans  <wim@fluendo.com>
14678
14679         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
14680         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
14681         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
14682         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
14683         (gst_gdk_pixbuf_chain):
14684         Some cleanups.
14685         Added RGBA as a possible output format.
14686         Correctly free the supported mimetypes.
14687         deprecate silent arg, it's not used.
14688         Return result from _alloc_buffer to peer.
14689
14690 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
14691
14692         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
14693           Don't leak memory allocated by gst_buffer_new_and_alloc() by
14694           overwriting GST_BUFFER_MALLOCDATA.
14695
14696 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
14697
14698         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
14699         (user_endrow_callback), (user_end_callback),
14700         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
14701         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
14702         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
14703         * ext/libpng/gstpngdec.h:
14704           Handle more than one frame if the content is framed,
14705           like with png-in-quicktime (#331917).
14706
14707 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14708
14709         * sys/oss/Makefile.am:
14710         * sys/oss/common.h:
14711         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
14712         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
14713         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
14714         (gst_oss_src_unprepare):
14715           - the user-visible error strings were in the wrong category
14716           - and the messages were not marked for translation
14717           - which is actually a good thing, because they were exactly
14718             the kind of message you would never want anyone to see
14719           - the macros were using variables that didn't exist in the macro
14720             arguments
14721           - and they were obviously copied from each other and then modified
14722           - so a common header makes sense
14723
14724 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
14725
14726         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
14727           Don't try to modify read-only data.
14728
14729         * gst/matroska/matroska-demux.c:
14730         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
14731           Fix comment (won't crash any longer now).
14732
14733 2006-04-10  Michael Smith  <msmith@fluendo.com>
14734
14735         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
14736           Use copies of header buffers for caps to avoid circular refcounting
14737           problems (as in theoradec, vorbisdec).
14738
14739         * tests/check/elements/cmmldec.c: (GST_START_TEST):
14740           Fix a typo in test that meant it was testing the wrong thing.
14741
14742         * tests/check/elements/cmmlenc.c: (check_headers):
14743           Fix refcount checks now that we use buffer-copies for caps.
14744
14745 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
14746
14747         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
14748         (gst_matroska_demux_handle_seek_event),
14749         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
14750         (gst_matroska_demux_subtitle_caps),
14751         (gst_matroska_demux_plugin_init):
14752           Use static pad templates with ANY caps for audio and video
14753           source pads and get rid of a lot of unnecessary (and partially
14754           broken) code for the template caps. Clean up caps finding
14755           functions. Fixes playback of audio files/streams that do not
14756           contain the sample rate and/or number of channels in the audio
14757           context (happens a lot with vorbis/mp3 .mka files it seems).
14758           Fixes #337183.
14759           Also add myself to copyright holders.
14760
14761 2006-04-10  Michael Smith  <msmith@fluendo.com>
14762
14763         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
14764           Use g_list_delete_link () instead of g_list_remove_link () so that
14765           we free the link as well as the contained data.
14766
14767 2006-04-10  Wim Taymans  <wim@fluendo.com>
14768
14769         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
14770
14771         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
14772         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
14773         (gst_avi_demux_stream_header):
14774         Fix some crashers with empty chunks. (Fixes #337749)
14775
14776 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
14777
14778         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
14779           use G_GINT64_CONSTANT for INT64 constants
14780         * gst/videofilter/gstvideobalance.c:
14781           define rint for WIN32 #define rint(x) (floor((x)+0.5))
14782         * win32/vs6/libgstavi.dsp:
14783          add missing libraries for the link and remove avimux.c from
14784          the project as it isn't ported to 0.10 yet
14785         
14786 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
14787
14788         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
14789           Even better would be if we actually did the right thing
14790           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
14791
14792 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
14793
14794         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
14795           Can't just replace 1LL with 1L here just because MSVC doesn't
14796           support it, as it might lead to incorrect results when doing the
14797           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
14798           force a 64-bit constant in a way that all compilers are happy with.
14799
14800 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
14801
14802         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
14803         * ext/esd/esdsink.c: (gst_esdsink_class_init):
14804         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
14805         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
14806         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
14807         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
14808         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
14809         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
14810         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
14811         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
14812         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
14813         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
14814         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
14815         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
14816         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
14817         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
14818         * gst/avi/gstavimux.c: (gst_avimux_class_init):
14819         * gst/debug/efence.c: (gst_efence_class_init):
14820         * gst/debug/negotiation.c: (gst_negotiation_class_init):
14821         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
14822         * gst/goom/gstgoom.c: (gst_goom_class_init):
14823         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
14824         * gst/interleave/deinterleave.c: (deinterleave_class_init):
14825         * gst/interleave/interleave.c: (interleave_class_init):
14826         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
14827         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
14828         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
14829         * gst/median/gstmedian.c: (gst_median_class_init):
14830         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
14831         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
14832         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
14833         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
14834         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
14835         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
14836         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
14837         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
14838         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
14839         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
14840         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
14841         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
14842         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
14843         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
14844         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
14845         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
14846         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
14847         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
14848         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
14849         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
14850         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
14851         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
14852         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
14853         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
14854         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
14855         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
14856         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
14857         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
14858         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
14859         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
14860         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
14861         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
14862         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
14863         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
14864         * sys/osxaudio/gstosxaudioelement.c:
14865         (gst_osxaudioelement_class_init):
14866         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
14867         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
14868         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
14869         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
14870
14871 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
14872
14873         * ext/mikmod/gstmikmod.h:
14874         * gst/level/gstlevel.h:
14875         Fix more broken GObject macros
14876
14877 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
14878
14879         * ext/annodex/gstcmmldec.h:
14880         * ext/annodex/gstcmmlenc.h:
14881         * ext/annodex/gstcmmltag.h:
14882         * ext/cairo/gsttextoverlay.h:
14883         * ext/ladspa/gstsignalprocessor.h:
14884         * gst/matroska/ebml-read.h:
14885         * gst/matroska/ebml-write.h:
14886         * sys/osxaudio/gstosxaudioelement.h:
14887         Fix broken GObject macros
14888
14889 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
14890
14891         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
14892           Don't try to seek beyond the end of the file (would
14893           occasionally display error dialogs in totem when seeking
14894           to the end) (#335869). Will still throw an error though
14895           if the file is truncated and the total_samples value in
14896           the stream header is wrong.
14897
14898 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
14899
14900         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
14901         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
14902         (gst_flac_dec_metadata_callback):
14903         * ext/flac/gstflacdec.h:
14904           If the stream header doesn't contain the total number of samples,
14905           search for the last flac frame at the end of the file and calculate
14906           the total duration from that frame's offset (fixes #337609).
14907
14908 2006-04-07  Edward Hervey  <edward@fluendo.com>
14909
14910         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
14911         Don't unref the GstPadTemplate returned by
14912         gst_element_class_get_pad_template().
14913
14914 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
14915
14916         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
14917
14918         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
14919         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
14920         * sys/sunaudio/gstsunaudiosink.h:
14921           Use spec->segsize and spec->segtotal in the prepare function
14922           to initialise the ring buffer instead of using the buffer-time
14923           property (#337421).
14924
14925 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
14926
14927         * configure.ac:
14928           Bump core requirements to CVS for gst_pad_query_peer_duration()
14929           which is used by speexdec.
14930
14931 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
14932
14933         * ext/speex/gstspeex.c: (plugin_init):
14934         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
14935         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
14936         (speex_get_sink_query_types), (speex_dec_sink_query),
14937         (speex_get_src_query_types), (speex_dec_src_query),
14938         (speex_dec_src_event), (speex_dec_sink_event),
14939         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
14940         (speex_dec_chain_parse_data), (speex_dec_chain),
14941         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
14942         (speex_dec_change_state):
14943         * ext/speex/gstspeexdec.h:
14944           Fix seeking and duration queries (#337033); clean up and
14945           refactor a bit.
14946
14947 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
14948
14949         * ext/raw1394/gstdv1394src.c:
14950           distinguish between device not found and could not open for
14951           reading
14952
14953 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14954
14955         * Makefile.am:
14956         * configure.ac:
14957         * pkgconfig/.cvsignore:
14958         * pkgconfig/Makefile.am:
14959         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
14960           add a .pc file so other modules can use good plugins in tests
14961
14962 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14963
14964         * configure.ac:
14965           clean up, use AS_VERSION and AS_NANO
14966         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
14967           use PACKAGE_VERSION define
14968         * po/af.po:
14969         * po/az.po:
14970         * po/cs.po:
14971         * po/en_GB.po:
14972         * po/hu.po:
14973         * po/it.po:
14974         * po/nb.po:
14975         * po/nl.po:
14976         * po/or.po:
14977         * po/sq.po:
14978         * po/sr.po:
14979         * po/sv.po:
14980         * po/uk.po:
14981         * po/vi.po:
14982           updated
14983
14984 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
14985
14986         * ext\jpeg\smokecodec.c:
14987           use of GST_DEBUG instead of DEBUG(a...) for WIN32
14988         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
14989           move first instruction after all variables declarations
14990         * gst\alpha\gstalpha.c:
14991         * gst\effectv\gstshagadelic.c:
14992         * gst\smpte\paint.c:
14993         * gst\videofilter\gstvideobalance.c:
14994           define M_PI if it's not defined (it's not defined on WIN32)
14995         * gst\cutter\gstcutter.c: (gst_cutter_chain):
14996         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
14997         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
14998         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
14999         (gst_matroska_demux_video_caps):
15000         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
15001         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
15002           use gst_guint64_to_gdouble for conversions
15003         * gst\goom\filters.c: (setPixelRGB_):
15004           fix a debug which was using undefined variable
15005         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
15006         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
15007           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
15008         * win32/vs6:
15009           add vs6 projects files for most of plugins-good
15010         
15011 2006-03-30  j^  <j@bootlab.org>
15012
15013         * ext/aalib/gstaasink.c:
15014         * ext/annodex/gstcmmldec.c:
15015         * ext/annodex/gstcmmlenc.c:
15016         * ext/cairo/gsttextoverlay.c:
15017         * ext/cairo/gsttimeoverlay.c:
15018         * ext/cdio/gstcdiocddasrc.c:
15019         * ext/dv/gstdvdec.c:
15020         * ext/esd/esdmon.c:
15021         * ext/esd/esdsink.c:
15022         * ext/flac/gstflacdec.c:
15023         * ext/flac/gstflacenc.c:
15024         * ext/flac/gstflactag.c:
15025         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
15026         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
15027         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
15028         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
15029         * ext/gdk_pixbuf/gstgdkpixbuf.c:
15030         * ext/gdk_pixbuf/pixbufscale.c:
15031         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
15032         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
15033         * ext/jpeg/gstjpegdec.c:
15034         * ext/jpeg/gstjpegenc.c:
15035         * ext/jpeg/gstsmokedec.c:
15036         * ext/jpeg/gstsmokeenc.c:
15037         * ext/libcaca/gstcacasink.c:
15038         * ext/libmng/gstmngdec.c:
15039         * ext/libmng/gstmngenc.c:
15040         * ext/libpng/gstpngdec.c:
15041         * ext/libpng/gstpngenc.c:
15042         * ext/mikmod/gstmikmod.c:
15043         * ext/raw1394/gstdv1394src.c:
15044         * ext/shout2/gstshout2.c:
15045         * ext/speex/gstspeexdec.c:
15046         * ext/speex/gstspeexenc.c:
15047         * gst/alpha/gstalpha.c:
15048         * gst/alpha/gstalphacolor.c:
15049         * gst/auparse/gstauparse.c:
15050         * gst/autodetect/gstautoaudiosink.c:
15051         (gst_auto_audio_sink_base_init):
15052         * gst/autodetect/gstautovideosink.c:
15053         (gst_auto_video_sink_base_init):
15054         * gst/avi/gstavimux.c: (gst_avimux_base_init):
15055         * gst/cutter/gstcutter.c:
15056         * gst/debug/breakmydata.c:
15057         * gst/debug/efence.c:
15058         * gst/debug/gstnavigationtest.c:
15059         * gst/debug/negotiation.c:
15060         * gst/debug/progressreport.c:
15061         * gst/debug/testplugin.c:
15062         * gst/effectv/gstaging.c:
15063         * gst/effectv/gstdice.c:
15064         * gst/effectv/gstedge.c:
15065         * gst/effectv/gstquark.c:
15066         * gst/effectv/gstrev.c:
15067         * gst/effectv/gstvertigo.c:
15068         * gst/effectv/gstwarp.c:
15069         * gst/flx/gstflxdec.c:
15070         * gst/goom/gstgoom.c:
15071         * gst/interleave/deinterleave.c:
15072         * gst/interleave/interleave.c:
15073         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
15074         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
15075         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
15076         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
15077         * gst/level/gstlevel.c:
15078         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
15079         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
15080         * gst/median/gstmedian.c:
15081         * gst/monoscope/gstmonoscope.c:
15082         * gst/multipart/multipartdemux.c:
15083         * gst/multipart/multipartmux.c:
15084         * gst/oldcore/gstmd5sink.c:
15085         * gst/oldcore/gstmultifilesrc.c:
15086         * gst/oldcore/gstpipefilter.c:
15087         * gst/oldcore/gstshaper.c:
15088         * gst/oldcore/gststatistics.c:
15089         * gst/rtp/gstasteriskh263.c:
15090         * gst/rtp/gstrtpL16depay.c:
15091         * gst/rtp/gstrtpL16pay.c:
15092         * gst/rtp/gstrtpamrdepay.c:
15093         * gst/rtp/gstrtpamrpay.c:
15094         * gst/rtp/gstrtpdepay.c:
15095         * gst/rtp/gstrtpgsmpay.c:
15096         * gst/rtp/gstrtph263pay.c:
15097         * gst/rtp/gstrtph263pdepay.c:
15098         * gst/rtp/gstrtph263ppay.c:
15099         * gst/rtp/gstrtpmp4gpay.c:
15100         * gst/rtp/gstrtpmp4vdepay.c:
15101         * gst/rtp/gstrtpmp4vpay.c:
15102         * gst/rtp/gstrtpmpadepay.c:
15103         * gst/rtp/gstrtpmpapay.c:
15104         * gst/rtp/gstrtppcmadepay.c:
15105         * gst/rtp/gstrtppcmapay.c:
15106         * gst/rtp/gstrtppcmudepay.c:
15107         * gst/rtp/gstrtppcmupay.c:
15108         * gst/rtp/gstrtpspeexdepay.c:
15109         * gst/rtp/gstrtpspeexpay.c:
15110         * gst/rtsp/gstrtpdec.c:
15111         * gst/smpte/gstsmpte.c:
15112         * gst/videobox/gstvideobox.c:
15113         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
15114         * gst/videofilter/gstvideobalance.c:
15115         * gst/videofilter/gstvideoflip.c:
15116         * gst/videofilter/gstvideotemplate.c:
15117         (gst_videotemplate_base_init):
15118         * gst/videomixer/videomixer.c:
15119         * gst/wavenc/gstwavenc.c:
15120         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
15121          better/unified long descriptions
15122          Fixed #336602
15123          Some cleanups to auparse, don't send multiple newsegments.
15124
15125 2006-03-29  Wim Taymans  <wim@fluendo.com>
15126
15127         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
15128
15129         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
15130         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
15131         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
15132         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
15133         * ext/dv/gstdvdemux.h:
15134         Seek in READY patch. Only works for pull based mode.
15135         Fixes #323880
15136
15137 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
15138
15139         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
15140         (gst_gdk_pixbuf_event):
15141           Fix two crashers: don't unref the same caps twice, and
15142           set pixbuf loader to NULL after freeing it.
15143
15144 2006-03-27  Wim Taymans  <wim@fluendo.com>
15145
15146         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
15147         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
15148         (gst_speexenc_chain):
15149         * ext/speex/gstspeexenc.h:
15150         Don't leak adapter.
15151         A push *always* takes ownership of the buffer, even on
15152         errors.
15153         Small cleanups.
15154
15155 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
15156
15157         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
15158           Create source pad without leaking.
15159
15160 2006-03-24  Wim Taymans  <wim@fluendo.com>
15161
15162         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
15163         * ext/flac/gstflacdec.h:
15164         * ext/flac/gstflacenc.h:
15165         Spifify a bit.
15166         Fix deadly lock order error in seeking code, STREAM_LOCK
15167         cannot be taken within LOCK and the streaming variables are
15168         protected with the STREAM_LOCK anyway.
15169
15170 2006-03-24  Wim Taymans  <wim@fluendo.com>
15171
15172         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
15173         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
15174         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
15175         this patch combines the global init_frames with the stream
15176         init_frames. Rationale being that the global delay should 
15177         be subtracted from any stream delay.
15178         Fixes #335858.
15179
15180 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
15181
15182         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
15183         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
15184         * gst/smpte/gstsmpte.c: (gst_smpte_init):
15185         * gst/videomixer/videomixer.c: (gst_videomixer_init):
15186         use DEBUG_FUNCPTR for collectpads
15187
15188 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
15189
15190         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
15191           Don't crash when encoding images where the number of rows isn't
15192           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
15193
15194 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15195
15196         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
15197         * gst/interleave/deinterleave.c: (deinterleave_change_state):
15198         * gst/interleave/interleave.c: (interleave_change_state):
15199         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
15200           More state change function fixes.
15201
15202 2006-03-23  Wim Taymans  <wim@fluendo.com>
15203
15204         * ext/esd/esdsink.c: (gst_esdsink_class_init),
15205         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
15206         (gst_esdsink_prepare), (gst_esdsink_unprepare),
15207         (gst_esdsink_delay), (gst_esdsink_reset):
15208         * ext/esd/esdsink.h:
15209         Fix esd choppy playback by configuring audiosink
15210         correctly. Fixes #325191
15211
15212 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15213
15214         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
15215           Make state change function thread-safe.
15216
15217 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15218
15219         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
15220         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
15221           Don't try to read beyond the end of the file just because
15222           the header claims a bigger size (like with truncated files).
15223
15224 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15225
15226         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
15227         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
15228         (gst_wavparse_stream_data), (gst_wavparse_loop):
15229         * gst/wavparse/gstwavparse.h:
15230           Delay source pad creation until we have the first chunk of
15231           media data, so the we can examine the data and adjust the
15232           caps accordingly if required. This makes playback of .wav
15233           files with DTS-declared-as-PCM content work (#313266).
15234
15235 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
15236
15237         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15238         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
15239         Don't attempt typefinding on too-short buffers that have been
15240         completely trimmed away. (Fixes #330239)
15241
15242         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
15243         Improve the debug output
15244
15245 2006-03-21  Wim Taymans  <wim@fluendo.com>
15246
15247         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
15248         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
15249         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
15250         (gst_esdsink_set_property), (gst_esdsink_get_property):
15251         Some cleanups.
15252         Reset fd to -1 when we close them.
15253
15254 2006-03-21  Wim Taymans  <wim@fluendo.com>
15255
15256         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
15257         the OPTIONS request result is optional so don't
15258         fail on it.
15259
15260 2006-03-21  Edward Hervey  <edward@fluendo.com>
15261
15262         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
15263         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
15264         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
15265         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
15266         (gst_wavparse_change_state):
15267         gcc 4.1 unreferenced pointer fixes.
15268
15269 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15270
15271         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
15272
15273         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
15274           Fix block alignment calculation. Alignment should be done before
15275           adding the byte offset where the data starts (#335231).
15276
15277 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
15278
15279         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
15280           Ensure that we set correct caps on buffers that are transferred
15281           direct from the input.
15282
15283 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
15284
15285         * gst/goom/filters.c: (zoomFilterDestroy):
15286         * gst/goom/goom_core.c: (goom_close):
15287           Free filter data when cleaning up. (Fixes: #334995)
15288
15289 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
15290
15291         * configure.ac:
15292           Don't compile udp and rtsp plugins on win32 (mingw) or other
15293           systems that don't have <sys/socket.h> for some reason (#316203).
15294
15295 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15296
15297         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
15298         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
15299         * ext/raw1394/gstdv1394src.h:
15300           Change bus reset handler so it reports useful information such as
15301           whether the device being used connected or disconnected
15302
15303 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
15304
15305         * gst/id3demux/id3v2frames.c:
15306         (parse_relative_volume_adjustment_two):
15307           We only care about gain and peak data for the master volume.
15308
15309 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
15310
15311         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15312         (parse_id_string), (parse_unique_file_identifier),
15313         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
15314           Read replay gain tags (#323721).
15315
15316 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
15317
15318         * configure.ac:
15319           Bump requirements to gst-plugins-base CVS because
15320           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
15321
15322 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
15323
15324         * rtp/gst/gstrtppcmadepay.c:
15325         Fixed one of the caps in the code from mulaw to alaw.
15326
15327 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
15328
15329         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
15330           Ensure that we set caps on the buffers we pass.
15331
15332         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
15333         (gst_id3demux_sink_activate):
15334           Ensure that we set caps on the buffers we pass.
15335
15336           Use STREAM, TYPE_NOT_FOUND as the error class when
15337           typefinding fails.
15338
15339 2006-03-15  Edward Hervey  <edward@fluendo.com>
15340
15341         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
15342         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
15343         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
15344         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
15345         (gst_jpeg_dec_setcaps):
15346         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
15347         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
15348         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
15349         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
15350         (gst_mngdec_src_getcaps):
15351         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
15352         (gst_pngdec_caps_create_and_set):
15353         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
15354         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
15355         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
15356         * gst/alpha/gstalpha.c: (gst_alpha_init):
15357         * gst/auparse/gstauparse.c: (gst_au_parse_init):
15358         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
15359         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
15360         * gst/cutter/gstcutter.c: (gst_cutter_init):
15361         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
15362         (gst_efence_checkgetrange):
15363         * gst/debug/negotiation.c: (gst_negotiation_init):
15364         * gst/flx/gstflxdec.c: (gst_flxdec_init):
15365         * gst/goom/gstgoom.c: (gst_goom_init):
15366         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
15367         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
15368         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
15369         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
15370         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
15371         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
15372         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
15373         * gst/smpte/gstsmpte.c: (gst_smpte_init):
15374         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
15375         (gst_wavparse_create_sourcepad):
15376         Fix memleak with gst_static_pad_template_get().
15377         This uses gst_pad_new_from_static_template() instead.
15378         Fixes #333512
15379
15380 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15381
15382         * configure.ac:
15383           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
15384           used by id3demux.
15385
15386         * gst/id3demux/gstid3demux.c: (plugin_init):
15387         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
15388         (parse_user_text_identification_frame),
15389         (parse_unique_file_identifier):
15390           Add support for UFID and TXXX frames and extract musicbrainz tags.
15391
15392 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15393
15394         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
15395           Catch short reads, like they might happen with truncated
15396           files (see #305279); remove unnecessary indentation.
15397
15398 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15399
15400         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
15401           Fix DIB image inversion for pictures with a
15402           depth != 8 (#305279).
15403
15404 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15405
15406         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
15407         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
15408         * ext/jpeg/gstjpegdec.h:
15409           Fix durations on outgoing buffers after seeking
15410           in MJPEG files (#334083); some minor clean-ups.
15411
15412 2006-03-13  Wim Taymans  <wim@fluendo.com>
15413
15414         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
15415         (gst_wavparse_change_state):
15416         Implement seek in READY (re-fixes #327658)
15417
15418 2006-03-13  Wim Taymans  <wim@fluendo.com>
15419
15420         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
15421         * ext/esd/esdmon.c: (gst_esdmon_get):
15422         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
15423         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
15424         (gst_gdk_pixbuf_sink_getcaps):
15425         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
15426         (gst_jpegenc_setcaps):
15427         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
15428         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
15429         (gst_smokeenc_setcaps):
15430         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
15431         (gst_mngdec_src_getcaps):
15432         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
15433         (gst_mngenc_chain):
15434         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
15435         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
15436         * ext/speex/gstspeexdec.c: (speex_dec_convert),
15437         (speex_dec_src_event), (speex_dec_chain):
15438         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
15439         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
15440         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
15441         (gst_negotiation_pad_link), (gst_negotiation_chain):
15442         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
15443         (gst_flxdec_chain):
15444         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
15445         (deinterleave_chain):
15446         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
15447         * gst/median/gstmedian.c: (gst_median_link):
15448         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
15449         (gst_monoscope_chain):
15450         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
15451         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
15452         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
15453         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
15454         close #333784 unref the result of gst_pad_get_parent()
15455         by: Christophe Fergeau.
15456
15457 2006-03-09  Wim Taymans  <wim@fluendo.com>
15458
15459         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
15460         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
15461         Handle events in push mode better, can now do non-flushing
15462         seeks in push mode as well.
15463
15464 2006-03-07  Wim Taymans  <wim@fluendo.com>
15465
15466         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
15467         Applied patch from Kai Vehmanen, fixes #333624.
15468
15469 2006-03-06  Julien MOUTTE  <julien@moutte.net>
15470
15471         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
15472         Implement paletted and grayscale png files handling.
15473         (#150363).
15474
15475 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
15476
15477         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
15478         (gst_speexenc_chain):
15479           fix a tag list assert
15480           follow gst-plugins-base/ext/ogg/README; set OFFSET
15481           and OFFSET_END.  Muxes correctly with gst-plugins-base
15482           > 0.9.3
15483
15484 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
15485
15486         * gst/id3demux/Makefile.am:
15487         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
15488         (gst_id3demux_chain), (gst_id3demux_sink_activate):
15489           Use new typefind helper functions here as well, and
15490           do typefinding in pull-mode if upstream supports that.
15491
15492 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
15493
15494         * sys/sunaudio/gstsunaudiomixerctrl.c:
15495         (gst_sunaudiomixer_ctrl_get_volume),
15496         (gst_sunaudiomixer_ctrl_set_volume):
15497         * sys/sunaudio/gstsunaudiomixertrack.c:
15498         (gst_sunaudiomixer_track_new):
15499           Remove unused variables, breaks build from CVS
15500           with -Werror (#333392, patch by: Benjamin Pineau)
15501
15502 2006-03-03  Wim Taymans  <wim@fluendo.com>
15503
15504         * docs/plugins/Makefile.am:
15505         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15506         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15507         Added wavparse docs.
15508
15509         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
15510         (gst_wavparse_reset), (gst_wavparse_init),
15511         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
15512         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
15513         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
15514         (gst_wavparse_stream_data), (gst_wavparse_loop),
15515         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
15516         (gst_wavparse_change_state):
15517         * gst/wavparse/gstwavparse.h:
15518         Implement seek in READY (fixes #327658)
15519         Added docs and did some cleanups.
15520
15521 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
15522
15523         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
15524         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
15525         (gst_avi_demux_calculate_durations_from_index),
15526         (gst_avi_demux_stream_header):
15527         * gst/avi/gstavidemux.h:
15528           If we have an index, use a duration based on the index instead
15529           of blindly trusting the information in the stream headers
15530           (fixes #331817).
15531
15532 2006-03-03  Wim Taymans  <wim@fluendo.com>
15533
15534         * docs/plugins/Makefile.am:
15535         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15536         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15537         * docs/plugins/gst-plugins-good-plugins.hierarchy:
15538         Added smoke and jpeg to the docs.
15539
15540         * ext/jpeg/Makefile.am:
15541         * ext/jpeg/gstjpeg.c: (plugin_init):
15542         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
15543         * ext/jpeg/gstjpegenc.h:
15544         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
15545         (gst_smokedec_chain):
15546         * ext/jpeg/gstsmokedec.h:
15547         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
15548         * ext/jpeg/gstsmokeenc.h:
15549         * ext/jpeg/smokecodec.h:
15550         Port smokedec (fixes #331905).
15551         Added some docs.
15552         Some cleanups.
15553
15554 2006-03-03  Wim Taymans  <wim@fluendo.com>
15555
15556         * docs/plugins/Makefile.am:
15557         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15558         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15559         * docs/plugins/gst-plugins-good-plugins.hierarchy:
15560         Added videobalance and videoflip to the docs.
15561
15562         * gst/videofilter/Makefile.am:
15563         * gst/videofilter/gstvideobalance.c:
15564         (gst_video_balance_update_tables_planar411),
15565         (gst_video_balance_is_passthrough),
15566         (gst_video_balance_update_properties), (oil_tablelookup_u8),
15567         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
15568         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
15569         (gst_video_balance_finalize), (gst_video_balance_class_init),
15570         (gst_video_balance_init), (gst_video_balance_interface_supported),
15571         (gst_video_balance_interface_init),
15572         (gst_video_balance_colorbalance_list_channels),
15573         (gst_video_balance_colorbalance_set_value),
15574         (gst_video_balance_colorbalance_get_value),
15575         (gst_video_balance_colorbalance_init),
15576         (gst_video_balance_set_property), (gst_video_balance_get_property),
15577         (gst_video_balance_get_type), (plugin_init):
15578         * gst/videofilter/gstvideobalance.h:
15579         Ported to 0.10. (Fixes #326160)
15580         Added docs.
15581
15582         * gst/videofilter/gstvideoflip.c:
15583         * gst/videofilter/gstvideoflip.h:
15584         Added docs.
15585
15586 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
15587
15588         * configure.ac:
15589           Bump requirements to current core and -base CVS
15590           (core for new typefind helper API, and -base for the
15591           WAVFORMATEX support that was added to libgstriff and
15592           is needed by wavparse).
15593         
15594         * gst/apetag/Makefile.am:
15595         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
15596         (gst_tag_demux_sink_activate):
15597           Use new typefind helpers for typefinding instead of our
15598           home-grown stuff; also, do typefinding in pull-mode if
15599           upstream supports that.
15600
15601 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
15602
15603         Reviewed by: Christian Schaller <christian@fluendo.com>
15604
15605         This patch fixes bug: 329107
15606
15607         This Changelog entry is for a commit done on February 17
15608
15609         * ext/gconf/gconf.c
15610         * ext/gconf/gconf.h
15611         * ext/gconf/gstgconfaudiosink.c
15612         * ext/gconf/gstgconfaudiosink.h
15613         * gconf/gstreamer.schemas.in
15614
15615 2006-02-28  Wim Taymans  <wim@fluendo.com>
15616
15617         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
15618         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
15619         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
15620         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
15621         Use DEBUG_OBJECT more.
15622
15623 2006-02-28  Wim Taymans  <wim@fluendo.com>
15624
15625         * docs/plugins/Makefile.am:
15626         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15627         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15628         Added dvdec and dvdemux to docs.
15629
15630         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
15631         Added docs.
15632         Check frame sizes so we don't crash when don't have enough
15633         data.
15634         Send nice error messages on error.
15635
15636         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
15637         (gst_dvdemux_class_init), (gst_dvdemux_init),
15638         (gst_dvdemux_finalize), (gst_dvdemux_reset),
15639         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
15640         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
15641         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
15642         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
15643         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
15644         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
15645         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
15646         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
15647         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
15648         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
15649         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
15650         * ext/dv/gstdvdemux.h:
15651         Added docs.
15652         Implement pull mode.
15653         Fix memleaks.
15654         Reduce memcpy for the video demuxing.
15655
15656 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
15657
15658         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
15659         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
15660         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
15661         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
15662           Add a little extra debug. Make the decoder not return NOT_LINKED,
15663           as we want to continue decoding all CMML and emitting tags.
15664
15665 2006-02-27  Michael Smith  <msmith@fluendo.com>
15666
15667         * ext/annodex/gstskeltag.c:
15668         * ext/annodex/gstskeltag.h:
15669           Deleted; these files aren't used any more either.
15670
15671 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15672
15673         * ext/Makefile.am: Fix dist-check.
15674
15675 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15676
15677         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
15678         memleak.
15679
15680 2006-02-25  Alessandro Decina <alessandro@nnva.org>
15681
15682         * ext/annodex/Makefile.am:
15683         * ext/annodex/gstannodex.c:
15684         * ext/annodex/gstcmmldec.c:
15685         * ext/annodex/gstcmmlenc.c:
15686         * ext/annodex/gstcmmlparser.c:
15687         * ext/annodex/gstcmmlparser.h:
15688         * ext/annodex/gstcmmlutils.c:
15689         * tests/check/elements/cmmldec.c:
15690         * tests/check/elements/cmmlenc.c:
15691           Fix a memleak in gst_cmml_track_list_add_clip.
15692           Handle overflows in clip's start and end times.
15693           Add the "encoded" parameter to cmmldec and cmmlenc caps.
15694           Do not parse junk at the end of a CMML preamble buffer.
15695           Register a libxml error handler to not print stuff on stderr.
15696           Check for bad clip start and end times in the testsuites.
15697
15698 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15699
15700         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
15701         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
15702         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
15703         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
15704         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
15705         possible memleaks.
15706
15707 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15708
15709         * tests/check/Makefile.am:
15710         * tests/check/elements/cmmldec.c:
15711         * tests/check/elements/cmmlenc.c: Fix tests so that they use
15712         the plugins-base tags.
15713
15714 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15715
15716         * ext/Makefile.am: Re-enable module.
15717
15718 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15719
15720         * tests/check/Makefile.am: Forgot to remove that test.
15721
15722 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15723
15724         * ext/annodex/Makefile.am:
15725         * ext/annodex/gstannodex.c: (plugin_init):
15726         * ext/annodex/gstcmmldec.c:
15727         * ext/annodex/gstskeldec.c:
15728         * ext/annodex/gstskeldec.h:
15729         * tests/check/Makefile.am:
15730         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
15731
15732 2006-02-25  Julien MOUTTE  <julien@moutte.net>
15733
15734         * tests/check/Makefile.am: Disable those checks as well.
15735
15736 2006-02-24  Julien MOUTTE  <julien@moutte.net>
15737
15738         * ext/Makefile.am: Disable annodex for now until we figure out
15739         how to make it build.
15740         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
15741         Add a rule to your checklist : "please try to at least build 
15742         what you are going to commit into -good, or if you are too lazy
15743         to do that, please check that the buildbots are not crying because
15744         of your commit."
15745
15746 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
15747
15748         * configure.ac:
15749         * ext/Makefile.am:
15750         * ext/gdk_pixbuf/Makefile.am:
15751         * ext/gdk_pixbuf/gstgdkpixbuf.c:
15752         * ext/gdk_pixbuf/gstgdkpixbuf.h:
15753         * ext/gdk_pixbuf/pixbufscale.c:
15754         * ext/gdk_pixbuf/pixbufscale.h:
15755           Gdkpixbuf ported from 0.8 to 0.10 by
15756           Renato Filho <renato.filho@indt.org.br>.
15757           gst_loader and gdkpixbufanimation still need port.
15758
15759 2006-02-24  Michael Smith  <msmith@fluendo.com>
15760
15761         * configure.ac:
15762         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15763         * ext/Makefile.am:
15764         * ext/annodex/Makefile.am:
15765         * ext/annodex/gstannodex.c:
15766         * ext/annodex/gstannodex.h:
15767         * ext/annodex/gstcmmldec.c:
15768         * ext/annodex/gstcmmldec.h:
15769         * ext/annodex/gstcmmlenc.c:
15770         * ext/annodex/gstcmmlenc.h:
15771         * ext/annodex/gstcmmlparser.c:
15772         * ext/annodex/gstcmmlparser.h:
15773         * ext/annodex/gstcmmltag.c:
15774         * ext/annodex/gstcmmltag.h:
15775         * ext/annodex/gstcmmlutils.c:
15776         * ext/annodex/gstcmmlutils.h:
15777         * ext/annodex/gstskeldec.c:
15778         * ext/annodex/gstskeldec.h:
15779         * ext/annodex/gstskeltag.c:
15780         * ext/annodex/gstskeltag.h:
15781         * tests/check/Makefile.am:
15782         * tests/check/elements/cmmldec.c:
15783         * tests/check/elements/cmmlenc.c:
15784         * tests/check/elements/skeldec.c:
15785           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
15786           Includes tests & docs, oh my! Passes Thomas's -good checklist
15787           entirely. Wow.
15788
15789 2006-02-24  Michael Smith  <msmith@fluendo.com>
15790
15791         * autogen.sh:
15792           Check for automake 1.9 as well.
15793
15794 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
15795
15796         * ext/flac/gstflacenc.c:
15797           Change min. sample rate to 8kHz to match flacdec's.
15798           
15799 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
15800
15801         * ext/cdio/Makefile.am:
15802           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
15803           required for Cygwin, see #317048)
15804
15805         * gst/rtp/gstasteriskh263.c:
15806           Cygwin has includes for both the unix network socket API
15807           and the windows API, but only one can be included, so fix
15808           includes to only use one or the other, prefering the unxi
15809           one (#317048).
15810
15811 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
15812
15813         * rtp/gst/gstrtppcmadepay.c:
15814         * rtp/gst/gstrtppcmadepay.h:
15815         * rtp/gst/gstgstrtppcmapay.c:
15816         * rtp/gst/gstgstrtppcmapay.h:
15817         * rtp/gst/gstrtppcmudepay.c:
15818         * rtp/gst/gstrtppcmudepay.h:
15819         * rtp/gst/gstrtppcmupay.c:
15820         * rtp/gst/gstrtppcmupay.h:
15821         * rtp/gst/Makefile.am:
15822         * rtp/gst/gstrtp.c:
15823         * rtp/gst/README:
15824         Separated the G711 payloaders/depayloaders into separate elements for
15825         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
15826
15827 2006-02-22  Wim Taymans  <wim@fluendo.com>
15828
15829         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
15830         (gst_dvdec_change_state):
15831         * ext/dv/gstdvdec.h:
15832         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
15833         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
15834         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
15835         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
15836         (gst_dvdemux_flush), (gst_dvdemux_chain),
15837         (gst_dvdemux_change_state):
15838         * ext/dv/gstdvdemux.h:
15839         Ueber spiffify some more, added debug category.
15840         Use _scale.
15841         Use segments, respect playback rate from newsegment.
15842         Fix refcount issue.
15843
15844 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
15845
15846         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
15847         (gst_signal_processor_process):
15848         Fix compilation of LADPSA. It doesn't seem to work, and isn't
15849         enabled for the build, but it helps me win the feature-count
15850         competitions ooh yeah.
15851
15852 2006-02-19  Wim Taymans  <wim@fluendo.com>
15853
15854         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
15855         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
15856         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
15857         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
15858         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
15859         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
15860         Use scaling code for added precission and more correct stop
15861         position in case scale==0.
15862
15863 2006-02-19  Wim Taymans  <wim@fluendo.com>
15864
15865         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
15866         (gst_flxdec_chain):
15867         * gst/flx/gstflxdec.h:
15868         Implement DURATION query.
15869
15870 2006-02-19  Wim Taymans  <wim@fluendo.com>
15871
15872         * gst/flx/flx_color.h:
15873         * gst/flx/flx_fmt.h:
15874         * gst/flx/gstflxdec.c: (gst_flxdec_init),
15875         (gst_flxdec_src_query_handler), (flx_decode_color),
15876         (gst_flxdec_chain):
15877         * gst/flx/gstflxdec.h:
15878         Set MALLOCDATA for the temp buffers so we don't leak.
15879         Some debug cleanups.
15880         Consume all data in the adapter before leaving the chain
15881         function. Fixes #330678.
15882
15883 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
15884
15885         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15886         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
15887          Handle 0 data size in otherwise valid frames.
15888          Handle numeric strings in 2.4.0 even when not in parentheses 
15889
15890 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
15891
15892         * gst/matroska/matroska-demux.c:
15893         (gst_matroska_demux_subtitle_caps),
15894         (gst_matroska_demux_plugin_init):
15895         * gst/matroska/matroska-ids.h:
15896           Recognise SSA/ASS and USF subtitle formats and
15897           set proper caps when they are found.
15898
15899 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
15900
15901         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
15902         (gst_jpeg_dec_chain):
15903           Fix invalid memory access for some odd-sized images
15904           (see image contained in quicktime stream in #327083);
15905           use g_malloc() instead of g_alloca().
15906
15907 2006-02-17  Wim Taymans  <wim@fluendo.com>
15908
15909         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
15910         Patch from Sebastien Cote, fixes #319884
15911
15912 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
15913
15914         * ext/cdio/gstcdio.c: (plugin_init):
15915           Init debug category (#331253).
15916
15917 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
15918
15919         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
15920           Pass extra_data to gst_riff_create_audio_caps(), so that
15921           WAVEFORMATEX stuff works. Post audio codec name and post
15922           it as taglist on the bus. Allow up to 8 channesl for raw
15923           PCM in the source pad template caps.
15924
15925 2006-02-16  Wim Taymans  <wim@fluendo.com>
15926
15927         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
15928         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
15929         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
15930         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
15931         (gst_multipart_set_property), (gst_multipart_get_property):
15932         Applied #318663. Gives quite a few false positives in
15933         autoscan mode, but it's better than nothing. Not closing yet.
15934
15935 2006-02-16  Wim Taymans  <wim@fluendo.com>
15936
15937         * docs/plugins/Makefile.am:
15938         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15939         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15940         * docs/plugins/gst-plugins-good-plugins.args:
15941         * docs/plugins/inspect/plugin-udp.xml:
15942         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
15943         (gst_udpsrc_start):
15944         Update documentation.
15945         Fix args.
15946
15947 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
15948
15949         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
15950         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
15951         frame size. (Fixes #331368)
15952
15953 2006-02-16  Wim Taymans  <wim@fluendo.com>
15954
15955         * gst/rtsp/README:
15956         Updated README.
15957
15958         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
15959         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
15960         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
15961         * gst/rtsp/gstrtspsrc.h:
15962         Make sure the RTP port is an even port an try to allocate 
15963         another if not.
15964         Added retry property to control max retries for port allocation.
15965         Make sure RTCP port is RTP port+1.
15966         Cleanup when port allocation fails.
15967         Fixes #319183.
15968         
15969 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
15970
15971         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
15972           Don't ignore return value of the parent class's state
15973           change function (#331385, patch by: Wouter Paesen).
15974
15975 2006-02-15  Wim Taymans  <wim@fluendo.com>
15976
15977         * configure.ac:
15978         * docs/plugins/Makefile.am:
15979         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
15980         * docs/plugins/gst-plugins-good-plugins-sections.txt:
15981         * docs/plugins/gst-plugins-good-plugins.hierarchy:
15982         * ext/Makefile.am:
15983         * ext/hal/Makefile.am:
15984         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
15985         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
15986         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
15987         (do_toggle_element), (gst_hal_audio_sink_set_property),
15988         (gst_hal_audio_sink_get_property),
15989         (gst_hal_audio_sink_change_state):
15990         * ext/hal/gsthalaudiosink.h:
15991         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
15992         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
15993         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
15994         (do_toggle_element), (gst_hal_audio_src_set_property),
15995         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
15996         * ext/hal/gsthalaudiosrc.h:
15997         * ext/hal/gsthalelements.c: (plugin_init):
15998         * ext/hal/gsthalelements.h:
15999         * ext/hal/hal.c: (gst_hal_get_string),
16000         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
16001         (gst_hal_get_audio_src):
16002         * ext/hal/hal.h:
16003         Add HAL sound device wrapper plugins. Closes #329106
16004
16005 2006-02-15  Wim Taymans  <wim@fluendo.com>
16006
16007         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
16008         Add comment in a fultile attempt to stop the copy-and-paste 
16009         paradigm leading to duplication of bad code.
16010
16011         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
16012         Mime parameters have to be checked case insensitive
16013
16014 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
16015
16016         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
16017           Advance stream time for lagging subtitle streams by sending
16018           newsegment events with the update flag set.
16019
16020 2006-02-14  Edward Hervey  <edward@fluendo.com>
16021
16022         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
16023         There can be bogus data before the hdrl LIST tag in the RIFF header.
16024         It's hard to say if it's not respecting the AVI specifications or not,
16025         but since Google Video is producing AVIs like that and the other player
16026         don't seem to complain, I guess we should do the same.
16027
16028 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
16029
16030         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
16031         (parse_split_strings):
16032         Add more validation to ensure that a char encoding conversion
16033         produced a valid UTF-8 string.
16034
16035 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
16036
16037         Reviewed by: Edward Hervey  <edward@fluendo.com>
16038
16039         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
16040         Properly handle end of segment. Closes #330885.
16041
16042 2006-02-13  Wim Taymans  <wim@fluendo.com>
16043
16044         * gst/rtp/gstrtpmp4gpay.h:
16045         For got to commit this one.
16046
16047 2006-02-12  Wim Taymans  <wim@fluendo.com>
16048
16049         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
16050         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
16051         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
16052         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
16053         * gst/rtp/gstrtpmp4gpay.h:
16054         Make more things work.
16055         Handle ACC config strings.
16056
16057 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
16058
16059         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
16060           set timestamps if no incoming timestamps set
16061
16062 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
16063
16064         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
16065         (gst_tag_demux_do_typefind):
16066           ... and fix the very same leaks in GstTagDemux.
16067
16068 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
16069
16070         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
16071         (gst_id3demux_do_typefind):
16072         Fix a couple of mem leaks. (Patch by Jonathan Matthew
16073         <jonathan at kaolin dot wh9 dot net>)
16074
16075 2006-02-10  Wim Taymans  <wim@fluendo.com>
16076
16077         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
16078         First set options, then set caps or else the baseclass
16079         will not know about the options, duh.
16080
16081 2006-02-10  Wim Taymans  <wim@fluendo.com>
16082
16083         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
16084         (gst_rtp_mp4v_pay_setcaps):
16085         Don't waste time looking for a config string if we have codec_info
16086         on the incomming caps.
16087
16088 2006-02-10  Wim Taymans  <wim@fluendo.com>
16089
16090         * gst/rtp/README:
16091         Say something about case-sensitivity of caps vs mime-attributes.
16092
16093         * gst/rtp/Makefile.am:
16094         * gst/rtp/gstrtp.c: (plugin_init):
16095         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
16096         (gst_rtp_amr_pay_handle_buffer):
16097         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
16098         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
16099         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
16100         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
16101         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
16102         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
16103         (gst_rtp_mp4g_pay_plugin_init):
16104         * gst/rtp/gstrtpmp4gpay.h:
16105         Added beginnings of mpeg4-generic payloader (RFC 3640)
16106
16107 2006-02-09  Wim Taymans  <wim@fluendo.com>
16108
16109         * gst/rtsp/Makefile.am:
16110         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
16111         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
16112         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
16113         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
16114         (gst_rtpdec_change_state):
16115         * gst/rtsp/gstrtpdec.h:
16116         * gst/rtsp/gstrtsp.c: (plugin_init):
16117         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
16118         * gst/rtsp/rtspconnection.c: (read_body),
16119         (rtsp_connection_receive):
16120         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
16121         Resurected rtpdec to make rtspsrc happy again.
16122         Skip attributes from the session id.
16123         Don't crash when dumping a message with an empty body.
16124
16125
16126 2006-02-09  Wim Taymans  <wim@fluendo.com>
16127
16128         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
16129         Added more meaningfull warnings when something goes wrong.
16130         Clear F bit on outgoing AMR packets.
16131
16132         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
16133         (gst_rtp_amr_pay_handle_buffer):
16134         Added debugging category
16135         Support payloading of multiple AMR frames.
16136
16137         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
16138         Added some debugging.
16139
16140 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
16141
16142         * configure.ac:
16143           Back to CVS
16144
16145 === release 0.10.2 ===
16146
16147 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
16148
16149         * configure.ac:
16150           releasing 0.10.2, "Papa was a rolling stone"
16151
16152 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
16153
16154         * configure.ac:
16155           Bump core and plugins-base requirement to 0.10.2.2
16156           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
16157
16158 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
16159
16160         * ext/flac/gstflac.c: (plugin_init):
16161         * ext/speex/gstspeex.c: (plugin_init):
16162           Register musicbrainz tags.
16163
16164 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
16165
16166         * ext/gconf/gconf.h:
16167           Remove declaration of function that no longer exists.
16168
16169 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16170
16171         * ext/shout2/gstshout2.c: (gst_shout2send_render),
16172         (gst_shout2send_setcaps), (gst_shout2send_change_state):
16173         Make shout2 work for non ogg streams
16174
16175 2006-02-06  Wim Taymans  <wim@fluendo.com>
16176
16177         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
16178         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
16179         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
16180         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
16181         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
16182         * gst/udp/gstmultiudpsink.h:
16183         Updated docs.
16184         Added properties bytes-served, bytes_to_serve.
16185         Post proper error messages,
16186         Emit client added signal too.
16187
16188 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16189
16190         * docs/plugins/Makefile.am:
16191         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16192         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16193         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
16194         (gst_multiudpsink_get_stats):
16195           adding docs for multiudpsink
16196
16197 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16198
16199         * gst/level/gstlevel.c: (gst_level_transform_ip):
16200           peak below decay is not necessarily an error, so don't ERROR log
16201
16202 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16203
16204         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
16205         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
16206         (gst_ebml_write_seek):
16207         * gst/matroska/ebml-write.h:
16208           Make sure we send a newsegment event in BYTES format
16209           before sending buffers (#328531).
16210
16211 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16212
16213         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
16214         (gst_dvdemux_sink_query):
16215         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
16216         * ext/speex/gstspeexdec.c: (speex_get_query_types),
16217         (speex_dec_src_query):
16218         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
16219         (gst_speexenc_sink_query):
16220         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
16221         * gst/matroska/matroska-demux.c:
16222         (gst_matroska_demux_get_src_query_types),
16223         (gst_matroska_demux_handle_src_query):
16224         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
16225         (gst_wavparse_pad_query):
16226           Pass unhandled queries upstream instead of just dropping
16227           them (#326446). Update query type arrays here and there.
16228
16229 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16230
16231         * tests/check/elements/matroskamux.c: (setup_src_pad):
16232           Collectpads in core got changed and now also holds a
16233           reference to any pad that is part of it. Fix refcount
16234           checks in test case accordingly.
16235
16236 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16237
16238         * gst/apetag/gstapedemux.h:
16239           Fix include, for now GstTagDemux is in the apetag dir.
16240
16241 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16242
16243         * docs/plugins/Makefile.am:
16244         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16245         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16246         * docs/plugins/inspect/plugin-cdio.xml:
16247           Add cdio plugin to docs.
16248
16249         * ext/cdio/gstcdiocddasrc.c:
16250           Add gtk-doc blurb.
16251
16252         * ext/cdio/gstcdio.c:
16253           The plugin is called 'cdio' not 'cddio'.
16254
16255 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16256
16257         * configure.ac:
16258         * docs/plugins/Makefile.am:
16259         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16260         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16261         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16262         * docs/plugins/inspect/plugin-apetag.xml:
16263         * gst/apetag/Makefile.am:
16264         * gst/apetag/gstapedemux.c:
16265         * gst/apetag/gstapedemux.h:
16266         * gst/apetag/gsttagdemux.c:
16267         * gst/apetag/gsttagdemux.h:
16268           Add APE tag demuxer (#325649).
16269
16270 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16271
16272         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
16273         (gst_gconf_get_default_video_sink),
16274         (gst_gconf_get_default_audio_src),
16275         (gst_gconf_get_default_video_src):
16276         * ext/gconf/gconf.h:
16277         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
16278         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
16279         (do_toggle_element):
16280         * ext/gconf/gstgconfaudiosink.h:
16281         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
16282         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
16283         (do_toggle_element):
16284         * ext/gconf/gstgconfaudiosrc.h:
16285         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
16286         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
16287         (do_toggle_element):
16288         * ext/gconf/gstgconfvideosink.h:
16289         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
16290         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
16291         (do_toggle_element):
16292         * ext/gconf/gstgconfvideosrc.h:
16293           Ignore changing the GConf key to "". Ignore GConf key updates
16294           that don't actually change the string.
16295           For now, ignore the GConf key when the state is > READY, as
16296           it breaks streaming. Sometime it will be nice to bring the
16297           new sink online even mid-stream, by sending NEWSEGMENT info
16298           and possibly prerolling.
16299           (Fixes #326736)
16300
16301 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
16302
16303         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
16304         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
16305         (zoomFilterSetResolution), (zoomFilterDestroy),
16306         (zoomFilterFastRGB), (pointFilter):
16307         * gst/goom/filters.h:
16308         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
16309         (goom_update), (goom_close):
16310         * gst/goom/goom_core.h:
16311         * gst/goom/goom_tools.h:
16312         * gst/goom/graphic.c:
16313         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
16314         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
16315         * gst/goom/gstgoom.h:
16316         * gst/goom/lines.c: (goom_lines):
16317         * gst/goom/lines.h:
16318           Make goom reentrant by moving all important static variables
16319           into instance structures.
16320           (Fixes #329181)
16321
16322 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
16323
16324         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
16325         (gst_avi_demux_all_source_pads_unlinked),
16326         (gst_avi_demux_process_next_entry):
16327         * gst/avi/gstavidemux.h:
16328           Third attempt, use gst_pad_is_linked() this time.
16329
16330 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
16331
16332         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
16333         (parse_split_strings):
16334         Adjust for data length indicators when parsing (Fixes #329810)
16335         Fix stupid bug parsing UTF-8 tag text.
16336         Output tag strings with multiple fields as multiple tags, so the
16337         app gets all the data.
16338
16339 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
16340
16341         * ext/flac/gstflacenc.c:
16342         Fixed a bug add in last commit, where no event is send. Thanks Tim to
16343         show me.
16344         
16345 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
16346
16347         * ext/flac/gstflacenc.c:
16348         * gst/matroska/ebml-read.c:
16349         Just make it compile with --disable-gst-debug.
16350
16351 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
16352
16353         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
16354         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
16355         (id3v2_genre_fields_to_taglist):
16356           Never output a tag with a null contents string.
16357
16358 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
16359
16360         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
16361           Only pause if all pads are unlinked AND we've tried to send data
16362           on all of them at least once.
16363
16364 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
16365
16366         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
16367         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
16368           Make loop function/task pause itself when all source pads are
16369           unlinked.
16370
16371 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
16372
16373         * configure.ac:
16374         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
16375           Use new functions from core to render a bin from a
16376           string. Fixes build. Up requirements to core CVS.
16377
16378 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
16379
16380         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
16381           Don't push buffers into the adapter that we are going to
16382           push downstream again without framing anyway. Also, the
16383           adaptor takes ownership of buffers put into it (fixes
16384           auparse pushing invalid buffers for .au files with
16385           ADPCM contents). Finally, set caps on all outgoing buffers.
16386
16387 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
16388
16389         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
16390         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
16391         (gst_id3demux_send_tag_event):
16392         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
16393         Someone should kick my butt. Remove ID3v1 tags from the end of the
16394         file.
16395
16396         Improve error messages. Send the TAG message as soon as we complete
16397         typefinding, instead of waiting until we send the first buffer.
16398         Downstream tag event is still sent before the first buffer.
16399
16400 2006-01-27  Jan Gerber  <j@bootlab.org>
16401
16402         Reviewed by: Andy Wingo <wingo@pobox.com>
16403
16404         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
16405         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
16406         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
16407         to not have warings flooding stderr. this is the suggested way
16408         also used in dvgrab and kino. (#328336)
16409
16410 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
16411
16412         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
16413         (gst_oss_sink_init), (gst_oss_sink_finalise):
16414           Free the device name string when finalised.
16415
16416 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
16417
16418         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
16419           Don't put function calls in g_return_if_fail() statements,
16420           or they'll be replaced with NOOPs if someone compiles with
16421           G_DISABLE_CHECKS defined.
16422           
16423 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
16424
16425         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
16426         Never trust ANY information encoded in a media file, especially
16427         when it's giving you sizes. (Fixes #328452)
16428
16429 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
16430
16431         * gst/rtp/gstrtpg711pay.c:
16432         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
16433         bug #325148.
16434
16435 2006-01-23  Edward Hervey  <edward@fluendo.com>
16436
16437         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
16438         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
16439         * gst/matroska/matroska-ids.h:
16440         Added recognition of Real Audio and Video streams in matroska demuxer.
16441
16442 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
16443
16444         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
16445           Remove errant break statement, and fix compilation with
16446           older GCC.
16447
16448 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
16449
16450         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16451
16452         * sys/sunaudio/gstsunaudiomixerctrl.c:
16453         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
16454           Export functions that are needed in other parts of the code,
16455           makes the mixer actually work; adjust magic minimum buffer-time
16456           value from 3ms to 5ms to work around stuttering during mp3
16457           playback (#327765).
16458
16459 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
16460
16461         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16462
16463         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
16464         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
16465           Fix possible deadlock in matroska muxer (#327825).
16466
16467 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
16468
16469         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
16470         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
16471         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
16472         * gst/rtsp/sdpmessage.h:
16473         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
16474         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
16475           C89 fixes: declare variables at the beginning of a block and
16476           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
16477           <jensgr at gmx dot net>).
16478
16479 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
16480
16481         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
16482         * gst/id3demux/id3tags.h:
16483         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
16484         (parse_comment_frame), (parse_text_identification_frame),
16485         (id3v2_tag_to_taglist), (id3v2_are_digits),
16486         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
16487         (parse_split_strings), (free_tag_strings):
16488           Rewrite parsing of text tags to handle multiple NULL terminated
16489           strings. Parse numeric genre strings and ID3v2 type
16490           "(3)(6)Alternative" style genre strings.
16491           Parse dates that are only YYYY or YYYY-mm format.
16492           (Fixes #328241 and #322154)
16493
16494 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
16495
16496         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
16497           Don't forget to initialize liboil, otherwise our oil functions
16498           will crash (fixes #327871; patch by: Christoph Burghardt
16499           <hawkes at web dot de>).
16500
16501 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
16502
16503         * configure.ac:
16504           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
16505           like in the core and gst-plugins-base. Fixes #324367 and #326683;
16506           patch by: Brian Cameron <brian dot cameron at sun dot com>
16507
16508 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
16509
16510         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
16511         * ext/cdio/gstcdio.h:
16512         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
16513           Fix build for libcdio versions >= 76; give slightly lower rank
16514           than cdparanoia.
16515
16516 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
16517
16518         * configure.ac:
16519         * ext/Makefile.am:
16520         * ext/cdio/Makefile.am:
16521         * ext/cdio/gstcdio.c:
16522         * ext/cdio/gstcdio.h:
16523         * ext/cdio/gstcdiocddasrc.c:
16524         * ext/cdio/gstcdiocddasrc.h:
16525           Port libcdio cdda source, formerly known as cddasrc, now known as
16526           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
16527           but that's not tested (fixes #317658).
16528
16529 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
16530
16531         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
16532           Fix conversion from TIME to BYTES format (fixes #326864;
16533           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
16534
16535 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
16536
16537         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
16538           Fix compilation of id3demux when zlib is not present.
16539           (Fixes #326602; patch by: Sergey Scobich)
16540
16541 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
16542
16543         * ext/esd/Makefile.am:
16544           Add $(ESD_CFLAGS), otherwise build will fail for folks
16545           with libesd in a non-standard prefix (#327009).
16546
16547 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16548
16549         * configure.ac:
16550           back to HEAD
16551
16552 === release 0.10.1 ===
16553
16554 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
16555
16556         * configure.ac:
16557           releasing 0.10.1, "Li"
16558
16559 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16560
16561           patch by: Wim Taymans
16562
16563         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
16564           fix memleak.  Fixes #326618
16565
16566 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16567
16568           patch by: Mike Smith
16569
16570         * gst/level/gstlevel.c: (gst_level_message_new),
16571         (gst_level_message_append_channel):
16572           Fix memleak.  Fixes #326612
16573
16574 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
16575
16576         * configure.ac:
16577           prereleasing
16578         * po/af.po:
16579         * po/az.po:
16580         * po/cs.po:
16581         * po/en_GB.po:
16582         * po/hu.po:
16583         * po/it.po:
16584         * po/nb.po:
16585         * po/nl.po:
16586         * po/or.po:
16587         * po/sq.po:
16588         * po/sr.po:
16589         * po/sv.po:
16590         * po/uk.po:
16591         * po/vi.po:
16592           update translations
16593
16594 2006-01-10  Michael Smith  <msmith@fluendo.com>
16595
16596         * gst/level/gstlevel.c: (gst_level_class_init),
16597         (gst_level_dispose):
16598           Don't leak filter arrays.
16599
16600 2006-01-09 Brian Cameron <brian.cameron@sun.com>
16601
16602         reviewed by: Christian Schaller <uraeus@gnome.org>
16603         
16604         * configure.ac:
16605         * gst-plugins-good.spec.in:
16606         * sys/Makefile.am:
16607         * sys/sunaudio/Makefile.am:
16608         * sys/sunaudio/gstsunaudio.c: (plugin_init):
16609         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
16610         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
16611         (gst_sunaudiomixer_change_state):
16612         * sys/sunaudio/gstsunaudiomixer.h:
16613         * sys/sunaudio/gstsunaudiomixerctrl.c:
16614         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
16615         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
16616         (gst_sunaudiomixer_ctrl_list_tracks),
16617         (gst_sunaudiomixer_ctrl_get_volume),
16618         (gst_sunaudiomixer_ctrl_set_volume),
16619         (gst_sunaudiomixer_ctrl_set_mute),
16620         (gst_sunaudiomixer_ctrl_set_record):
16621         * sys/sunaudio/gstsunaudiomixerctrl.h:
16622         * sys/sunaudio/gstsunaudiomixertrack.c:
16623         (gst_sunaudiomixer_track_class_init),
16624         (gst_sunaudiomixer_track_init), (fill_labels),
16625         (gst_sunaudiomixer_track_new):
16626         * sys/sunaudio/gstsunaudiomixertrack.h:
16627         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
16628         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
16629         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
16630         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
16631         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
16632         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
16633         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
16634         * sys/sunaudio/gstsunaudiosink.h:
16635
16636         Add SunAudio plugin - tested to make sure it doesn't break
16637         the build under GNU/Linux.      
16638
16639 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
16640
16641         * gst-plugins-good/gst/udp/gstdynudpsink.c:
16642         * gst-plugins-good/gst/udp/gstudpsrc.c:
16643         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
16644         overrides the port or multicast parameters. Fixes bugs #323021.
16645         API addition: adds GstUDPSrc::sockfd property   
16646
16647 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
16648
16649         * ext/gconf/Makefile.am:
16650         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
16651         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
16652         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
16653         (do_toggle_element), (cb_toggle_element),
16654         (gst_gconf_audio_src_change_state):
16655         * ext/gconf/gstgconfaudiosrc.h:
16656         * ext/gconf/gstgconfelements.c: (plugin_init):
16657         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
16658         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
16659         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
16660         (do_toggle_element), (cb_toggle_element),
16661         (gst_gconf_video_src_change_state):
16662         * ext/gconf/gstgconfvideosrc.h:
16663           Add new gconfaudiosrc and gconfvideosrc elements
16664           (needed for gnome-sound-recorder).
16665
16666 2006-01-06  Edward Hervey  <edward@fluendo.com>
16667
16668         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
16669         Add gst_element_no_more_pads() for proper decodebin behaviour.
16670         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
16671         (parse_text_identification_frame), (parse_split_strings):
16672         Failure to decode some tags is not a GST_ERROR() but a
16673         GST_WARNING()
16674         When iterating over a chunk of text, check that we haven't gone too
16675         far.
16676
16677 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
16678
16679         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
16680         (plugin_init):
16681           call oil_init() when using liboil
16682
16683 2006-01-04  Wim Taymans  <wim@fluendo.com>
16684
16685         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
16686         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
16687         Fix leaks.
16688
16689 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
16690
16691         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16692
16693         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
16694         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
16695         (gst_flac_dec_change_state):
16696           Don't g_assert() where we should just return FALSE; remove
16697           unnecessary g_assert(); initialize some fields properly in
16698           state change function (fixes #325504). Also, use
16699           GST_DEBUG_OBJECT in two more places.
16700
16701 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
16702
16703         * configure.ac:
16704           also remove smoothwave's Makefile.am
16705         * docs/plugins/Makefile.am:
16706           fix plugin docs
16707
16708 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
16709
16710         * tests/examples/Makefile.am:
16711           added missing Makefile.am
16712
16713 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
16714
16715         * configure.ac:
16716         * gst/level/Makefile.am:
16717         * gst/level/level-example.c:
16718         * tests/Makefile.am:
16719         * tests/examples/level/Makefile.am:
16720         * tests/examples/level/level-example.c: (message_handler), (main):
16721           moved level-example to tests/examples/level-example
16722         * tests/old/examples/level/demo.c: (main):
16723         * tests/old/examples/level/plot.c: (main):
16724           some initial fixes
16725
16726 2005-12-29  Michael Smith  <msmith@fluendo.com>
16727
16728         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
16729         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
16730         * gst/udp/gstmultiudpsink.h:
16731           Track packets sent per client in addition to bytes sent; provide
16732           this info through get-stats signal
16733
16734 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
16735
16736         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
16737           Can't use gst_object_unref() on a GstAdapter (#325191).
16738
16739 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
16740
16741         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
16742         If a broken tag has 0 bytes payload, at least still skip
16743         the 10 byte header
16744
16745 2005-12-22  Philippe Khalaf  <burger@speedy.org>
16746
16747         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
16748         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
16749         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
16750         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
16751           Making these depayloaders (H263+ and mpeg4 video) inherit from
16752           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
16753
16754 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
16755
16756         * docs/plugins/gst-plugins-good-plugins.args:
16757         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16758         Regenerate the plugin hiearchy.
16759
16760 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
16761
16762         * docs/plugins/Makefile.am:
16763         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16764         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16765         * docs/plugins/gst-plugins-good-plugins.args:
16766         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
16767         (gst_id3demux_base_init), (gst_id3demux_class_init),
16768         (gst_id3demux_chain):
16769         * gst/id3demux/gstid3demux.h:
16770           Add documentation for id3demux.
16771           Don't fail if the first buffer is not at offset 0, just
16772           attempt to typefind and do pass through
16773           Rename the gst_type function from gst_gst_id3demux..
16774
16775 2005-12-20  Michael Smith  <msmith@fluendo.com>
16776
16777         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
16778         (gst_multiudpsink_add), (gst_multiudpsink_remove),
16779         (gst_multiudpsink_get_stats):
16780         * gst/udp/gstmultiudpsink.h:
16781           Collect statistics; return them from get_stats.
16782
16783 2005-12-19  Edward Hervey  <edward@fluendo.com>
16784
16785         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
16786         Stupid signedness issue...
16787
16788 2005-12-19  Edward Hervey  <edward@fluendo.com>
16789
16790         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
16791         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
16792         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
16793         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
16794         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
16795         Construct index for indexless files.
16796         Make sure pad/buffers are correctly reset to NULL once we don't need
16797         them anymore, else we get lovely segfaults/assertions.
16798         * gst/wavparse/gstwavparse.c:
16799         Yes, you can have 96KHz audio and wma in wav :(
16800
16801 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
16802
16803         * configure.ac:
16804           Check for optional dependency on zlib for id3demux
16805
16806         * gst/id3demux/Makefile.am:
16807         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
16808         (gst_id3demux_base_init), (gst_id3demux_class_init),
16809         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
16810         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
16811         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
16812         (gst_id3demux_set_property), (gst_id3demux_get_property),
16813         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
16814         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
16815         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
16816         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
16817         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
16818         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
16819         (simple_find_peek), (simple_find_suggest),
16820         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
16821         (plugin_init):
16822         * gst/id3demux/gstid3demux.h:
16823         * gst/id3demux/id3tags.c: (read_synch_uint),
16824         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
16825         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
16826         (id3demux_id3v2_frames_to_tag_list):
16827         * gst/id3demux/id3tags.h:
16828         * gst/id3demux/id3v2.4.0-frames.txt:
16829         * gst/id3demux/id3v2.4.0-structure.txt:
16830         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
16831         (parse_comment_frame), (parse_text_identification_frame),
16832         (id3v2_tag_to_taglist), (parse_split_strings):
16833           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
16834           otherwise it discards them. Works on my test files. 
16835
16836         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
16837           Don't send EOS to a non-existing srcpad
16838           The debug category can be static
16839
16840 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
16841
16842         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
16843         * ext/esd/esdsink.c: (gst_esdsink_prepare):
16844         * gst/multipart/multipartdemux.c:
16845           change some char* into char[]
16846
16847 2005-12-16  Wim Taymans  <wim@fluendo.com>
16848
16849         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
16850         (gst_wavparse_other), (gst_wavparse_perform_seek),
16851         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
16852         (gst_wavparse_loop), (gst_wavparse_pad_convert),
16853         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
16854         * gst/wavparse/gstwavparse.h:
16855         Use GstSegment to implement more seeking features.
16856
16857 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
16858
16859         * gst/rtsp/rtspconnection.c:
16860           Add <netinet/in.h> include and move <arpa/inet.h> include
16861           to make things work on OpenBSD as well (fixes #323717;
16862           patch by: Benjamin Pineau)
16863
16864 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
16865
16866         * gst/rtp/gstrtpspeexdepay.c:
16867         * gst/rtp/gstrtpspeexpay.c:
16868         Set clock rate to be fixed in 8000. It fixes bug #324012.
16869
16870 2005-12-14  Philippe Khalaf  <burger@speedy.org>
16871
16872         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
16873         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
16874         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
16875         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
16876         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
16877         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
16878         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
16879         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
16880         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
16881         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
16882         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
16883         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
16884         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
16885         * gst-plugins-good/gst/rtp/README:
16886         Fixed payload range in payloder caps. Removed payload range completely
16887         from depayloaders as they don't require payload type in their caps.
16888         In effect, there isn't any specific payload type for any given codec,
16889         only suggestions.
16890         Fixes bug #324011.
16891
16892 2005-12-13  Julien MOUTTE  <julien@moutte.net>
16893
16894         * gst/videomixer/videomixer.c: (gst_videomixer_init),
16895         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
16896         (gst_videomixer_collected): Code cleanup and re-enabling 
16897         queued time validity check for correct EOS handling.
16898
16899 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
16900
16901         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
16902         (gst_oss_mixer_element_get_property),
16903         (gst_oss_mixer_element_change_state):
16904         Add 'device-name' property and fix state change function.
16905
16906 2005-12-13  Edward Hervey  <edward@fluendo.com>
16907
16908         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
16909         If the speed of the file is null in the header, set the frame_time to
16910         the default setting of GST_SECOND / 70. Which is the default
16911         frame_delay for .fli files as stated in this document :
16912         http://www.compuphase.com/flic.htm
16913         Would be nice to have the time conversion done properly too (duration =
16914         flxh->frames * flxdec->frame_time)
16915
16916 2005-12-12  Julien MOUTTE  <julien@moutte.net>
16917
16918         * docs/plugins/Makefile.am:
16919         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16920         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16921         * docs/plugins/gst-plugins-good-plugins.hierarchy:
16922         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
16923         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
16924         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
16925         documentation for videomixer on my way with a funny sample
16926         pipeline.
16927
16928 2005-12-12  Julien MOUTTE  <julien@moutte.net>
16929
16930         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
16931         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
16932         (gst_videomixer_update_queues), (gst_videomixer_collected):
16933         Fix caps negotiation. (#323896)
16934
16935 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
16936
16937         * gst/matroska/matroska-demux.c:
16938         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
16939           Set correct timestamps on audio laces, fixes playback of mp3 from
16940                 matroska.
16941
16942 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
16943
16944         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
16945         (gst_au_parse_class_init), (gst_au_parse_init),
16946         (gst_au_parse_dispose), (gst_au_parse_chain),
16947         (gst_au_parse_change_state), (plugin_init):
16948         * gst/auparse/gstauparse.h:
16949           Use gst_object_unref() for GstObjects instead of
16950           g_object_unref() and fix a mem leak in a debug
16951           statement; while we're at it, also borgify, use
16952           boilerplate macros and clean up a little bit.
16953
16954 2005-12-11  Edward Hervey  <edward@fluendo.com>
16955
16956         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
16957         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
16958         Added pull mode.
16959
16960 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
16961
16962         * gst/goom/gstgoom.c:
16963         * gst/level/level-example.c: (main):
16964         * gst/smoothwave/demo-osssrc.c: (main):
16965           Use audiotestsrc instead of sinesrc (#323798).
16966
16967 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
16968
16969         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
16970           more debug-func-ptr usage
16971
16972 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
16973
16974         * gst/flx/flx_color.c: (flx_colorspace_convert):
16975         * gst/flx/flx_color.h:
16976         * gst/flx/flx_fmt.h:
16977         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
16978         * gst/flx/gstflxdec.h:
16979           Now flxdec works on big-endian machines as well.
16980
16981 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
16982
16983         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
16984         (gst_fenced_buffer_copy):
16985           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
16986           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
16987           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
16988           and use GST_DEBUG_FUNCPTR for pad functions.
16989
16990 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
16991
16992         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
16993         (gst_flac_dec_class_init), (gst_flac_dec_init),
16994         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
16995         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
16996         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
16997         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
16998         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
16999         (gst_flac_dec_change_state):
17000         * ext/flac/gstflacdec.h:
17001           Rewrite flacdec a bit, so that even seeking might work now. Most
17002           importantly, don't act upon any flow return values we get, just tell
17003           the decoder everything's dandy and act on the flow return values
17004           later on in the loop function. We don't want to mess up the internal
17005           decoder state for non-fatal things like flushing pads etc. Other
17006           than that, use GstSegment (segment seeks don't work yet though, but
17007           should be easy to add), use boilerplate macros, drop the superfluous
17008           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
17009           lots of other things.
17010
17011 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
17012
17013         * configure.ac:
17014           Update comment in OSS includes check.
17015
17016         * sys/oss/gstossdmabuffer.c:
17017         * sys/oss/gstosshelper.c:
17018         * sys/oss/gstossmixer.c:
17019         * sys/oss/gstossmixertrack.c:
17020         * sys/oss/gstosssink.c:
17021         * sys/oss/gstosssrc.c:
17022         * sys/oss/oss_probe.c:
17023           Don't assume the OSS soundcard.h include is always in
17024           the sys/ directory. Instead, use the existing defines
17025           from config.h to include the right file. Fixes
17026           compilation on OpenBSD 3.8 (#323718).
17027
17028 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17029
17030         * docs/plugins/gst-plugins-good-plugins-sections.txt:
17031         * docs/plugins/gst-plugins-good-plugins.hierarchy:
17032         * docs/plugins/inspect/plugin-1394.xml:
17033         * docs/plugins/inspect/plugin-aasink.xml:
17034         * docs/plugins/inspect/plugin-alaw.xml:
17035         * docs/plugins/inspect/plugin-alpha.xml:
17036         * docs/plugins/inspect/plugin-alphacolor.xml:
17037         * docs/plugins/inspect/plugin-auparse.xml:
17038         * docs/plugins/inspect/plugin-autodetect.xml:
17039         * docs/plugins/inspect/plugin-avi.xml:
17040         * docs/plugins/inspect/plugin-cacasink.xml:
17041         * docs/plugins/inspect/plugin-cairo.xml:
17042         * docs/plugins/inspect/plugin-cutter.xml:
17043         * docs/plugins/inspect/plugin-debug.xml:
17044         * docs/plugins/inspect/plugin-dv.xml:
17045         * docs/plugins/inspect/plugin-efence.xml:
17046         * docs/plugins/inspect/plugin-effectv.xml:
17047         * docs/plugins/inspect/plugin-esdsink.xml:
17048         * docs/plugins/inspect/plugin-flac.xml:
17049         * docs/plugins/inspect/plugin-flxdec.xml:
17050         * docs/plugins/inspect/plugin-gconfelements.xml:
17051         * docs/plugins/inspect/plugin-goom.xml:
17052         * docs/plugins/inspect/plugin-jpeg.xml:
17053         * docs/plugins/inspect/plugin-level.xml:
17054         * docs/plugins/inspect/plugin-matroska.xml:
17055         * docs/plugins/inspect/plugin-mulaw.xml:
17056         * docs/plugins/inspect/plugin-multipart.xml:
17057         * docs/plugins/inspect/plugin-navigationtest.xml:
17058         * docs/plugins/inspect/plugin-ossaudio.xml:
17059         * docs/plugins/inspect/plugin-png.xml:
17060         * docs/plugins/inspect/plugin-rtp.xml:
17061         * docs/plugins/inspect/plugin-rtsp.xml:
17062         * docs/plugins/inspect/plugin-shout2send.xml:
17063         * docs/plugins/inspect/plugin-smpte.xml:
17064         * docs/plugins/inspect/plugin-speex.xml:
17065         * docs/plugins/inspect/plugin-udp.xml:
17066         * docs/plugins/inspect/plugin-videobox.xml:
17067         * docs/plugins/inspect/plugin-videoflip.xml:
17068         * docs/plugins/inspect/plugin-videomixer.xml:
17069         * docs/plugins/inspect/plugin-wavenc.xml:
17070         * docs/plugins/inspect/plugin-wavparse.xml:
17071         * ext/flac/gstflac.c: (plugin_init):
17072         * ext/flac/gstflacdec.c: (flacdec_get_type),
17073         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
17074         (gst_flac_dec_init), (gst_flac_dec_finalize),
17075         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
17076         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
17077         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
17078         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
17079         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
17080         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
17081         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
17082         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
17083         * ext/flac/gstflacdec.h:
17084         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
17085         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
17086         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
17087         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
17088         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
17089         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
17090         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
17091         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
17092         (gst_flac_enc_change_state):
17093         * ext/flac/gstflacenc.h:
17094           borgify and fix up documentation
17095
17096 2005-12-09  Michael Smith  <msmith@fluendo.com>
17097
17098         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
17099           Accept a wider range of flac files, more closely matching flac spec.
17100
17101 2005-12-08  Julien MOUTTE  <julien@moutte.net>
17102
17103         * docs/plugins/Makefile.am: Add multipart elements.
17104         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
17105         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
17106         * docs/plugins/gst-plugins-good-plugins.hierarchy:
17107         * gst/multipart/multipartdemux.c:
17108         * gst/multipart/multipartmux.c: Add docs.
17109
17110 2005-12-07  Edward Hervey  <edward@fluendo.com>
17111
17112         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
17113         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
17114         (gst_avi_demux_invert):
17115         Memleak and crasher fixes.
17116         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
17117         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
17118         Memleak fixes
17119
17120 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17121
17122         * ext/aalib/gstaasink.h:
17123         * ext/cairo/gsttextoverlay.h:
17124         * ext/dv/gstdvdec.h:
17125         * ext/dv/gstdvdemux.c:
17126         * ext/dv/gstdvdemux.h:
17127         * ext/esd/esdsink.h:
17128         * ext/flac/flac_compat.h:
17129         * ext/flac/gstflacdec.h:
17130         * ext/flac/gstflacenc.h:
17131         * ext/gconf/gconf.h:
17132         * ext/gconf/gstgconfaudiosink.h:
17133         * ext/gconf/gstgconfvideosink.h:
17134         * ext/gdk_pixbuf/gstgdkanimation.h:
17135         * ext/jpeg/gstjpegdec.h:
17136         * ext/jpeg/smokecodec.h:
17137         * ext/jpeg/smokeformat.h:
17138         * ext/ladspa/gstsignalprocessor.h:
17139         * ext/ladspa/search.c: (LADSPAPluginSearch):
17140         * ext/ladspa/utils.h:
17141         * ext/libmng/gstmng.c:
17142         * ext/libmng/gstmngdec.h:
17143         * ext/libmng/gstmngenc.c:
17144         * ext/libmng/gstmngenc.h:
17145         * ext/libpng/gstpng.c:
17146         * ext/libpng/gstpngenc.c:
17147         * ext/libpng/gstpngenc.h:
17148         * ext/shout2/gstshout2.h:
17149         * ext/speex/gstspeexdec.h:
17150         * ext/speex/gstspeexenc.c:
17151         * ext/speex/gstspeexenc.h:
17152         * gst/auparse/gstauparse.c: (gst_auparse_chain):
17153         * gst/autodetect/gstautoaudiosink.h:
17154         * gst/autodetect/gstautovideosink.h:
17155         * gst/avi/gstavidemux.h:
17156         * gst/cutter/gstcutter.c: (gst_cutter_chain),
17157         (gst_cutter_set_property), (gst_cutter_get_caps):
17158         * gst/cutter/gstcutter.h:
17159         * gst/debug/tests.c: (md5_process_block):
17160         * gst/debug/tests.h:
17161         * gst/effectv/gstwarp.c:
17162         * gst/flx/flx_fmt.h:
17163         * gst/flx/gstflxdec.h:
17164         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
17165         (zoomFilterFastRGB):
17166         * gst/goom/filters.h:
17167         * gst/goom/goom_tools.h:
17168         * gst/law/alaw-encode.c:
17169         * gst/level/gstlevel.c:
17170         * gst/level/gstlevel.h:
17171         * gst/matroska/ebml-write.h:
17172         * gst/matroska/matroska-demux.h:
17173         * gst/matroska/matroska-ids.h:
17174         * gst/matroska/matroska-mux.h:
17175         * gst/monoscope/convolve.c: (convolve_match):
17176         * gst/monoscope/convolve.h:
17177         * gst/multipart/multipartmux.c:
17178         * gst/oldcore/gstaggregator.c:
17179         * gst/oldcore/gstaggregator.h:
17180         * gst/oldcore/gstmd5sink.c: (md5_process_block):
17181         * gst/oldcore/gstmd5sink.h:
17182         * gst/oldcore/gstmultifilesrc.c:
17183         * gst/oldcore/gstmultifilesrc.h:
17184         * gst/oldcore/gstpipefilter.h:
17185         * gst/oldcore/gstshaper.h:
17186         * gst/rtp/gstrtpL16depay.h:
17187         * gst/rtp/gstrtpL16pay.h:
17188         * gst/rtp/gstrtpdepay.h:
17189         * gst/rtp/gstrtpmp4vpay.c:
17190         * gst/rtp/gstrtpmp4vpay.h:
17191         * gst/rtsp/gstrtspsrc.c:
17192         * gst/rtsp/gstrtspsrc.h:
17193         * gst/rtsp/rtspconnection.h:
17194         * gst/rtsp/rtspdefs.h:
17195         * gst/rtsp/rtspmessage.h:
17196         * gst/rtsp/rtsptransport.h:
17197         * gst/rtsp/rtspurl.c:
17198         * gst/rtsp/rtspurl.h:
17199         * gst/rtsp/sdpmessage.c:
17200         * gst/rtsp/sdpmessage.h:
17201         * gst/smpte/barboxwipes.c:
17202         * gst/smpte/gstmask.h:
17203         * gst/smpte/gstsmpte.h:
17204         * gst/smpte/paint.c:
17205         * gst/smpte/paint.h:
17206         * gst/udp/gstdynudpsink.h:
17207         * gst/udp/gstmultiudpsink.h:
17208         * gst/udp/gstudpsink.c:
17209         * gst/udp/gstudpsink.h:
17210         * gst/udp/gstudpsrc.c:
17211         * gst/videomixer/videomixer.c:
17212         * gst/wavenc/riff.h:
17213         * gst/wavparse/gstwavparse.h:
17214         * sys/oss/gstossdmabuffer.h:
17215         * sys/oss/gstossmixer.h:
17216         * sys/oss/gstossmixerelement.h:
17217         * sys/oss/gstossmixertrack.h:
17218         * sys/oss/gstosssink.c:
17219         * sys/oss/gstosssink.h:
17220         * sys/oss/gstosssrc.c:
17221         * sys/oss/gstosssrc.h:
17222         * sys/osxaudio/gstosxaudioelement.h:
17223         * sys/osxaudio/gstosxaudiosink.h:
17224         * sys/osxaudio/gstosxaudiosrc.h:
17225           expand tabs
17226
17227 === release 0.10.0 ===
17228
17229 2005-12-05   <thomas (at) apestaart (dot) org>
17230
17231         * configure.ac:
17232           releasing 0.10.0, "Abondance"
17233
17234 2005-12-05  Andy Wingo  <wingo@pobox.com>
17235
17236         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
17237         * ext/flac/gstflacdec.c: (gst_flacdec_write):
17238         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
17239         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
17240         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
17241         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
17242         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
17243         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
17244         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
17245         * ext/speex/gstspeexdec.c: (speex_dec_chain):
17246         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
17247         * gst/auparse/gstauparse.c: (gst_auparse_chain):
17248         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
17249         * gst/goom/gstgoom.c: (gst_goom_chain):
17250         * gst/matroska/matroska-demux.c:
17251         (gst_matroska_demux_push_vorbis_codec_priv_data),
17252         (gst_matroska_demux_add_wvpk_header):
17253         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
17254         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
17255         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
17256         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
17257         alloc_buffer changes.
17258
17259 2005-12-05  Michael Smith  <msmith@fluendo.com>
17260
17261         * docs/plugins/gst-plugins-good-plugins.args:
17262           Remove args for plugins that aren't in -good.
17263
17264 === release 0.9.7 ===
17265
17266 2005-12-01   <thomas (at) apestaart (dot) org>
17267
17268         * configure.ac:
17269           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
17270
17271 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17272
17273         * docs/plugins/.cvsignore:
17274         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
17275         * docs/plugins/inspect/plugin-multipart.xml:
17276         * docs/plugins/inspect/plugin-rtp.xml:
17277           add multipart plugin to docs
17278
17279 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17280
17281         * configure.ac:
17282         * ext/Makefile.am:
17283         * ext/pango/Makefile.am:
17284         * ext/pango/gstclockoverlay.c:
17285         * ext/pango/gstclockoverlay.h:
17286         * ext/pango/gsttextoverlay.c:
17287         * ext/pango/gsttextoverlay.h:
17288         * ext/pango/gsttextrender.c:
17289         * ext/pango/gsttextrender.h:
17290         * ext/pango/gsttimeoverlay.c:
17291         * ext/pango/gsttimeoverlay.h:
17292           move pango to base
17293
17294 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17295
17296         * gst/rtp/Makefile.am:
17297         * gst/rtp/gstrtpL16depay.c:
17298         * gst/rtp/gstrtpL16depay.h:
17299         * gst/rtp/gstrtpL16parse.c:
17300         * gst/rtp/gstrtpL16parse.h:
17301         * gst/rtp/gstrtpgsmdepay.c:
17302         * gst/rtp/gstrtpgsmdepay.h:
17303         * gst/rtp/gstrtpgsmparse.c:
17304         * gst/rtp/gstrtpgsmparse.h:
17305           parsers are depayers
17306
17307 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17308
17309         * gst/rtp/Makefile.am:
17310         * gst/rtp/gstasteriskh263.c:
17311         * gst/rtp/gstrtp.c:
17312         * gst/rtp/gstrtpL16enc.c:
17313         * gst/rtp/gstrtpL16enc.h:
17314         * gst/rtp/gstrtpL16parse.c:
17315         * gst/rtp/gstrtpL16parse.h:
17316         * gst/rtp/gstrtpL16pay.c:
17317         * gst/rtp/gstrtpL16pay.h:
17318         * gst/rtp/gstrtpamrdec.c:
17319         * gst/rtp/gstrtpamrdec.h:
17320         * gst/rtp/gstrtpamrdepay.c:
17321         * gst/rtp/gstrtpamrdepay.h:
17322         * gst/rtp/gstrtpamrenc.c:
17323         * gst/rtp/gstrtpamrenc.h:
17324         * gst/rtp/gstrtpamrpay.c:
17325         * gst/rtp/gstrtpamrpay.h:
17326         * gst/rtp/gstrtpdec.c:
17327         * gst/rtp/gstrtpdec.h:
17328         * gst/rtp/gstrtpdepay.c:
17329         * gst/rtp/gstrtpdepay.h:
17330         * gst/rtp/gstrtpg711dec.c:
17331         * gst/rtp/gstrtpg711dec.h:
17332         * gst/rtp/gstrtpg711depay.c:
17333         * gst/rtp/gstrtpg711depay.h:
17334         * gst/rtp/gstrtpg711enc.c:
17335         * gst/rtp/gstrtpg711enc.h:
17336         * gst/rtp/gstrtpg711pay.c:
17337         * gst/rtp/gstrtpg711pay.h:
17338         * gst/rtp/gstrtpgsmenc.c:
17339         * gst/rtp/gstrtpgsmenc.h:
17340         * gst/rtp/gstrtpgsmparse.c:
17341         * gst/rtp/gstrtpgsmparse.h:
17342         * gst/rtp/gstrtpgsmpay.c:
17343         * gst/rtp/gstrtpgsmpay.h:
17344         * gst/rtp/gstrtph263enc.c:
17345         * gst/rtp/gstrtph263enc.h:
17346         * gst/rtp/gstrtph263pay.c:
17347         * gst/rtp/gstrtph263pay.h:
17348         * gst/rtp/gstrtph263pdec.c:
17349         * gst/rtp/gstrtph263pdec.h:
17350         * gst/rtp/gstrtph263pdepay.c:
17351         * gst/rtp/gstrtph263pdepay.h:
17352         * gst/rtp/gstrtph263penc.c:
17353         * gst/rtp/gstrtph263penc.h:
17354         * gst/rtp/gstrtph263ppay.c:
17355         * gst/rtp/gstrtph263ppay.h:
17356         * gst/rtp/gstrtpmp4vdec.c:
17357         * gst/rtp/gstrtpmp4vdec.h:
17358         * gst/rtp/gstrtpmp4vdepay.c:
17359         * gst/rtp/gstrtpmp4vdepay.h:
17360         * gst/rtp/gstrtpmp4venc.c:
17361         * gst/rtp/gstrtpmp4venc.h:
17362         * gst/rtp/gstrtpmp4vpay.c:
17363         * gst/rtp/gstrtpmp4vpay.h:
17364         * gst/rtp/gstrtpmpadec.c:
17365         * gst/rtp/gstrtpmpadec.h:
17366         * gst/rtp/gstrtpmpadepay.c:
17367         * gst/rtp/gstrtpmpadepay.h:
17368         * gst/rtp/gstrtpmpaenc.c:
17369         * gst/rtp/gstrtpmpaenc.h:
17370         * gst/rtp/gstrtpmpapay.c:
17371         * gst/rtp/gstrtpmpapay.h:
17372         * gst/rtp/gstrtpspeexdec.c:
17373         * gst/rtp/gstrtpspeexdec.h:
17374         * gst/rtp/gstrtpspeexdepay.c:
17375         * gst/rtp/gstrtpspeexdepay.h:
17376         * gst/rtp/gstrtpspeexenc.c:
17377         * gst/rtp/gstrtpspeexenc.h:
17378         * gst/rtp/gstrtpspeexpay.c:
17379         * gst/rtp/gstrtpspeexpay.h:
17380           Do burger's rename for rtp payloaders and depayloaders
17381
17382 2005-11-30  Wim Taymans  <wim@fluendo.com>
17383
17384         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
17385         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
17386         * ext/dv/gstdvdemux.h:
17387         Fix seeking in dvdemux again, add some more debug info.
17388
17389 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17390
17391         * configure.ac:
17392           fix tests
17393
17394 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17395
17396         * PORTED_09:
17397         * docs/random/PORTED_09:
17398           move
17399         * tests/Makefile.am:
17400           add
17401         * win32/gst.sln:
17402           remove
17403
17404 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17405
17406         * Makefile.am:
17407         * check/.cvsignore:
17408         * check/Makefile.am:
17409         * check/elements/.cvsignore:
17410         * check/elements/level.c:
17411         * check/elements/matroskamux.c:
17412         * configure.ac:
17413         * examples/Makefile.am:
17414         * examples/capsfilter/Makefile.am:
17415         * examples/capsfilter/capsfilter1.c:
17416         * examples/gob/Makefile.am:
17417         * examples/gob/gst-identity2.gob:
17418         * examples/gstplay/.cvsignore:
17419         * examples/gstplay/Makefile.am:
17420         * examples/gstplay/player.c:
17421         * examples/indexing/.cvsignore:
17422         * examples/indexing/Makefile.am:
17423         * examples/indexing/indexmpeg.c:
17424         * examples/level/Makefile.am:
17425         * examples/level/README:
17426         * examples/level/demo.c:
17427         * examples/level/plot.c:
17428         * examples/stats/Makefile.am:
17429         * examples/stats/mp2ogg.c:
17430         * examples/switch/.cvsignore:
17431         * examples/switch/Makefile.am:
17432         * examples/switch/switcher.c:
17433           move under tests/
17434
17435 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
17436
17437         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
17438         (gst_text_render_class_init), (resize_bitmap),
17439         (gst_text_render_render_text), (gst_text_render_setcaps),
17440         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
17441         (gst_text_render_chain), (gst_text_render_finalize),
17442         (gst_text_render_init), (gst_text_render_set_property):
17443         * ext/pango/gsttextrender.h:
17444           Add missing files.
17445
17446 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
17447
17448         * configure.ac:
17449         * ext/Makefile.am:
17450         * ext/pango/Makefile.am:
17451         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
17452         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
17453         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
17454         * ext/pango/gstclockoverlay.h:
17455         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
17456         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
17457         (gst_text_overlay_finalize), (gst_text_overlay_init),
17458         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
17459         (gst_text_overlay_text_pad_linked),
17460         (gst_text_overlay_text_pad_unlinked),
17461         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
17462         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
17463         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
17464         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
17465         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
17466         (gst_text_overlay_change_state), (plugin_init):
17467         * ext/pango/gsttextoverlay.h:
17468         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
17469         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
17470         (gst_time_overlay_class_init), (gst_time_overlay_init):
17471         * ext/pango/gsttimeoverlay.h:
17472           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
17473           and add background shading and text wrapping modes. Make 
17474           timoverlay derive from textoverlay. Also add new clockoverlay
17475           element.
17476
17477 2005-11-30  Julien MOUTTE  <julien@moutte.net>
17478
17479         * gst/udp/Makefile.am: Moved to netbuffer.
17480
17481 2005-11-30  Julien MOUTTE  <julien@moutte.net>
17482
17483         * configure.ac:
17484         * PORTED_O9:
17485         * gst/multipart/Makefile.am:
17486         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
17487         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
17488         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
17489         (gst_multipart_demux_change_state),
17490         (gst_multipart_demux_plugin_init):
17491         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
17492         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
17493         (gst_multipart_mux_sinkconnect),
17494         (gst_multipart_mux_request_new_pad),
17495         (gst_multipart_mux_handle_src_event),
17496         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
17497         (gst_multipart_mux_change_state): Ported multipart mux/demux to
17498         0.9.
17499
17500 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17501
17502         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
17503         * gst/debug/gstnavigationtest.h:
17504         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
17505         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
17506         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
17507         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
17508         * gst/effectv/gstrev.c: (gst_revtv_get_type):
17509         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
17510         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
17511         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
17512         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
17513         (gst_video_flip_get_type):
17514         * gst/videofilter/gstvideoflip.h:
17515           update for symbols change
17516
17517 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17518
17519         * gst/udp/gstdynudpsink.c:
17520         * gst/udp/gstudpsrc.c:
17521           the old gstnet lib was renamed gstnetbuffer (#322257)
17522
17523 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
17524
17525         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
17526         (gst_text_overlay_collected):
17527           Actually render the text from the text pad.
17528
17529 2005-11-29  Edward Hervey  <edward@fluendo.com>
17530
17531         * gst/debug/gstnavseek.c: (gst_navseek_event):
17532         * gst/debug/progressreport.c: (gst_progress_report_event):
17533         Update for GstBaseTransform event virtual method
17534
17535 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17536
17537         * ext/cairo/Makefile.am:
17538           no need to link to videofilter
17539
17540 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17541
17542         * gst/debug/Makefile.am:
17543         * gst/debug/gstnavigationtest.h:
17544         * gst/effectv/Makefile.am:
17545         * gst/effectv/gstaging.c:
17546         * gst/effectv/gstdice.c:
17547         * gst/effectv/gstedge.c:
17548         * gst/effectv/gstquark.c:
17549         * gst/effectv/gstrev.c:
17550         * gst/effectv/gstshagadelic.c:
17551         * gst/effectv/gstvertigo.c:
17552         * gst/effectv/gstwarp.c:
17553         * gst/videofilter/Makefile.am:
17554         * gst/videofilter/gstvideofilter.c:
17555         * gst/videofilter/gstvideofilter.h:
17556         * gst/videofilter/gstvideoflip.h:
17557           remove the videofilter library and link to the one in base
17558
17559 2005-11-28  Edward Hervey  <edward@fluendo.com>
17560
17561         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
17562         Useless check now we're setting the current entry correctly.
17563
17564 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
17565
17566         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
17567         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
17568         (gst_jpegenc_change_state):
17569           Don't leak input buffer in chain function (fixes #322667); make 
17570           state change function thread-safe; don't repeat the current function
17571           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
17572           gst_pad_alloc_buffer(); misc. minor cleanups.
17573
17574 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
17575
17576         * gst/matroska/matroska-mux.c:
17577         (gst_matroska_mux_video_pad_setcaps):
17578         Look for pixel-aspect-ratio in caps, not pixel_width and
17579         pixel_height (Fixes: #322645)
17580
17581 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
17582
17583         * gst/matroska/matroska-mux.c:
17584         (gst_matroska_mux_video_pad_setcaps):
17585         From Michal Benes:
17586         frame duration should be GST_SECOND / framerate, not
17587         GST_SECOND * framerate. (Fixes: #322643)
17588
17589 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17590
17591         * configure.ac:
17592           fix up GST_PLUGIN_LDFLAGS
17593         * gst/rtsp/rtspconnection.c:
17594           fix includes (see #317043)
17595         * gst/videofilter/Makefile.am:
17596           stop installing this library
17597
17598 2005-11-26  Edward Hervey  <edward@fluendo.com>
17599
17600         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
17601         Handle the case where the incoming Video dv stream doesn't have
17602         a pixel aspect ratio set.
17603
17604 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17605
17606         * docs/plugins/Makefile.am:
17607         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
17608         * docs/plugins/gst-plugins-good-plugins-sections.txt:
17609         * ext/flac/gstflacdec.c:
17610           document flacdec
17611
17612 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17613
17614         * docs/plugins/Makefile.am:
17615         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
17616         * docs/plugins/gst-plugins-good-plugins-sections.txt:
17617         * docs/plugins/inspect/plugin-autodetect.xml:
17618         * ext/cairo/gstcairo.c: (plugin_init):
17619         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
17620         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
17621         (gst_text_overlay_init), (gst_text_overlay_font_init),
17622         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
17623         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
17624         (gst_text_overlay_text_pad_linked),
17625         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
17626         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
17627         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
17628         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
17629         (gst_text_overlay_change_state):
17630         * ext/cairo/gsttextoverlay.h:
17631         * ext/cairo/gsttimeoverlay.c:
17632         (gst_cairo_time_overlay_update_font_height),
17633         (gst_cairo_time_overlay_set_caps),
17634         (gst_cairo_time_overlay_get_unit_size),
17635         (gst_cairo_time_overlay_print_smpte_time),
17636         (gst_cairo_time_overlay_transform),
17637         (gst_cairo_time_overlay_base_init),
17638         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
17639         (gst_cairo_time_overlay_get_type):
17640         * ext/cairo/gsttimeoverlay.h:
17641           do some name borgifying
17642           document
17643
17644 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
17645
17646         * docs/plugins/Makefile.am:
17647         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
17648         * docs/plugins/gst-plugins-good-plugins-sections.txt:
17649         * gst/autodetect/gstautoaudiosink.c:
17650         (gst_auto_audio_sink_base_init):
17651         * gst/autodetect/gstautovideosink.c:
17652         (gst_auto_video_sink_base_init),
17653         (gst_auto_video_sink_factory_filter):
17654           documenting auto*sink
17655           using strstr for the video sink lookup, class field is not ordered
17656         * docs/plugins/inspect/plugin-1394.xml:
17657         * docs/plugins/inspect/plugin-aasink.xml:
17658         * docs/plugins/inspect/plugin-alaw.xml:
17659         * docs/plugins/inspect/plugin-alpha.xml:
17660         * docs/plugins/inspect/plugin-alphacolor.xml:
17661         * docs/plugins/inspect/plugin-auparse.xml:
17662         * docs/plugins/inspect/plugin-autodetect.xml:
17663         * docs/plugins/inspect/plugin-avi.xml:
17664         * docs/plugins/inspect/plugin-cacasink.xml:
17665         * docs/plugins/inspect/plugin-cairo.xml:
17666         * docs/plugins/inspect/plugin-cutter.xml:
17667         * docs/plugins/inspect/plugin-debug.xml:
17668         * docs/plugins/inspect/plugin-dv.xml:
17669         * docs/plugins/inspect/plugin-efence.xml:
17670         * docs/plugins/inspect/plugin-effectv.xml:
17671         * docs/plugins/inspect/plugin-esdsink.xml:
17672         * docs/plugins/inspect/plugin-flac.xml:
17673         * docs/plugins/inspect/plugin-flxdec.xml:
17674         * docs/plugins/inspect/plugin-gconfelements.xml:
17675         * docs/plugins/inspect/plugin-goom.xml:
17676         * docs/plugins/inspect/plugin-jpeg.xml:
17677         * docs/plugins/inspect/plugin-level.xml:
17678         * docs/plugins/inspect/plugin-matroska.xml:
17679         * docs/plugins/inspect/plugin-mulaw.xml:
17680         * docs/plugins/inspect/plugin-navigationtest.xml:
17681         * docs/plugins/inspect/plugin-ossaudio.xml:
17682         * docs/plugins/inspect/plugin-png.xml:
17683         * docs/plugins/inspect/plugin-rtp.xml:
17684         * docs/plugins/inspect/plugin-rtsp.xml:
17685         * docs/plugins/inspect/plugin-shout2send.xml:
17686         * docs/plugins/inspect/plugin-smpte.xml:
17687         * docs/plugins/inspect/plugin-speex.xml:
17688         * docs/plugins/inspect/plugin-udp.xml:
17689         * docs/plugins/inspect/plugin-videobox.xml:
17690         * docs/plugins/inspect/plugin-videoflip.xml:
17691         * docs/plugins/inspect/plugin-videomixer.xml:
17692         * docs/plugins/inspect/plugin-wavenc.xml:
17693         * docs/plugins/inspect/plugin-wavparse.xml:
17694           update for HEAD version
17695
17696 2005-11-25  Michael Smith  <msmith@fluendo.com>
17697
17698         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
17699           Patch from Sebastien Cote to close control sockets in udpsrc.
17700
17701 2005-11-24  Julien MOUTTE  <julien@moutte.net>
17702
17703         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
17704         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
17705         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
17706         (gst_quarktv_base_init), (gst_quarktv_class_init),
17707         (gst_quarktv_init): Flush the planes list on reverse caps
17708         negotiation. This was crashing because of differently sized
17709         buffers.
17710
17711 2005-11-24  Julien MOUTTE  <julien@moutte.net>
17712
17713         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
17714         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
17715         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
17716         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
17717         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
17718         (gst_videoflip_set_property), (gst_videoflip_base_init),
17719         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
17720         correctly, fix identity flipping, convert navigation event 
17721         correctly again.
17722
17723 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17724
17725         * configure.ac: back to HEAD
17726
17727 === release 0.9.6 ===
17728
17729 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
17730
17731         * configure.ac:
17732           releasing 0.9.6, "Everything's Not Lost"
17733
17734 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
17735
17736         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
17737         Oops, initialise the framerate GValue
17738
17739 2005-11-23  Julien MOUTTE  <julien@moutte.net>
17740
17741         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
17742         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
17743         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
17744         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
17745         (gst_timeoverlay_get_type):
17746         * ext/cairo/gsttimeoverlay.h:
17747         * gst/debug/Makefile.am:
17748         * gst/debug/gstnavigationtest.c:
17749         (gst_navigationtest_handle_src_event),
17750         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
17751         (gst_navigationtest_transform), (gst_navigationtest_change_state),
17752         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
17753         (gst_navigationtest_init), (gst_navigationtest_get_type),
17754         (plugin_init):
17755         * gst/debug/gstnavigationtest.h:
17756         * gst/effectv/Makefile.am:
17757         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
17758         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
17759         (gst_agingtv_base_init), (gst_agingtv_class_init),
17760         (gst_agingtv_init), (gst_agingtv_get_type):
17761         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
17762         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
17763         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
17764         (gst_dicetv_get_type):
17765         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
17766         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
17767         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
17768         (gst_edgetv_get_type):
17769         * gst/effectv/gsteffectv.c:
17770         * gst/effectv/gsteffectv.h:
17771         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
17772         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
17773         (gst_quarktv_change_state), (gst_quarktv_base_init),
17774         (gst_quarktv_class_init), (gst_quarktv_init),
17775         (gst_quarktv_get_type):
17776         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
17777         (gst_revtv_get_unit_size), (gst_revtv_transform),
17778         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
17779         (gst_revtv_get_type):
17780         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
17781         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
17782         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
17783         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
17784         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
17785         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
17786         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
17787         (gst_vertigotv_init), (gst_vertigotv_get_type):
17788         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
17789         (gst_warptv_get_unit_size), (gst_warptv_transform),
17790         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
17791         (gst_warptv_get_type):
17792         * gst/videofilter/Makefile.am:
17793         * gst/videofilter/gstvideobalance.c:
17794         * gst/videofilter/gstvideobalance.h:
17795         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
17796         (gst_videofilter_class_init), (gst_videofilter_init):
17797         * gst/videofilter/gstvideofilter.h:
17798         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
17799         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
17800         (gst_videoflip_flip), (gst_videoflip_transform),
17801         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
17802         (gst_videoflip_base_init), (gst_videoflip_class_init),
17803         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
17804         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
17805         BaseTransform, it's just a place holder for now and every video
17806         effect plugin has been ported to use BaseTransform features 
17807         directly. QuarkTV was fixed too (was broken), navigationtest works
17808         and best for the end, videoflip converts navigation events depending
17809         on flip method ! Fixes #320953
17810
17811 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
17812
17813         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
17814         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
17815         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
17816         (gst_goom_src_negotiate), (gst_goom_chain):
17817         * gst/matroska/matroska-mux.c:
17818         (gst_matroska_mux_video_pad_setcaps):
17819         * sys/osxvideo/osxvideosink.m:
17820           Fixes for API changes
17821
17822 2005-11-23  Michael Smith <msmith@fluendo.com>
17823
17824         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
17825         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
17826         * ext/jpeg/gstjpegdec.h:
17827         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
17828         * ext/jpeg/gstjpegenc.h:
17829         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
17830         (gst_smokeenc_resync):
17831         * ext/jpeg/gstsmokeenc.h:
17832           JPEG fractiony goodness.
17833
17834 2005-11-22  Michael Smith <msmith@fluendo.com>
17835
17836         * gst/goom/filters.c:
17837         * gst/goom/graphic.h:
17838           Fix compilation by making some functions static inline instead of
17839           extern inline, matching the way they're used.
17840
17841 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
17842
17843         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
17844         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
17845         * ext/cairo/gsttextoverlay.h:
17846         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
17847         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17848         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
17849         (gst_pngdec_caps_create_and_set):
17850         * ext/libpng/gstpngdec.h:
17851         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
17852         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
17853         * gst/avi/gstavimux.c: (gst_avimux_init),
17854         (gst_avimux_vidsinkconnect):
17855         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
17856         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
17857         (gst_goom_src_negotiate), (gst_goom_chain):
17858         * gst/goom/gstgoom.h:
17859         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17860         * gst/matroska/matroska-mux.c:
17861         (gst_matroska_mux_video_pad_setcaps):
17862         * sys/osxvideo/osxvideosink.h:
17863         * sys/osxvideo/osxvideosink.m:
17864           More fractional framerate conversions 
17865
17866 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
17867
17868         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
17869         * gst/debug/gstnavigationtest.c:
17870         (gst_navigationtest_handle_src_event):
17871         * gst/videofilter/gstvideofilter.c:
17872         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
17873         (gst_videofilter_init):
17874         * gst/videofilter/gstvideofilter.h:
17875           Convert to fractional framerates.
17876
17877 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17878
17879         * ext/aalib/gstaasink.c:
17880         * ext/dv/gstdvdec.c:
17881         * ext/esd/esdmon.c:
17882         * ext/flac/gstflacenc.c:
17883         * ext/gdk_pixbuf/pixbufscale.c:
17884         * ext/libcaca/gstcacasink.c:
17885         * ext/shout2/gstshout2.c:
17886         * gst/alpha/gstalpha.c:
17887         * gst/oldcore/gstaggregator.c:
17888         * gst/oldcore/gstshaper.c:
17889         * gst/smpte/barboxwipes.c:
17890         * gst/smpte/gstsmpte.c:
17891         * gst/videobox/gstvideobox.c:
17892         * gst/videofilter/gstvideoflip.c:
17893         * gst/videomixer/videomixer.c:
17894           fix up more enums
17895
17896 2005-11-22  Michael Smith <msmith@fluendo.com>
17897
17898         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
17899         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
17900         (gst_videomixer_update_queues):
17901           Fractional framerates, videomixer.
17902
17903 2005-11-22  Michael Smith <msmith@fluendo.com>
17904
17905         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
17906         * ext/dv/gstdvdec.h:
17907         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
17908         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
17909         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
17910         (gst_dvdemux_flush):
17911         * ext/dv/gstdvdemux.h:
17912           Fractional framerates for DV. 
17913
17914 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
17915
17916         * gst/autodetect/gstautoaudiosink.c:
17917         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
17918         * gst/autodetect/gstautovideosink.c:
17919         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
17920           Use gst_plugin_feature_list_free() to free feature list and
17921           in the case of autovideosink free the list at all. Also
17922           miscellaneous cosmetic fixes.
17923
17924 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17925
17926         * gst/cutter/gstcutter.c: (gst_cutter_chain),
17927         (gst_cutter_set_property), (gst_cutter_get_caps):
17928           copy calculation code from level; remove use of some audio
17929           functions
17930
17931 2005-11-22  Andy Wingo  <wingo@pobox.com>
17932
17933         * Update for gst_tag_setter API changes.
17934
17935 2005-11-22  Andy Wingo  <wingo@pobox.com>
17936
17937         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
17938         (gst_dvdemux_demux_frame)
17939         * ext/flac/gstflacdec.c (gst_flacdec_write)
17940         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
17941         (gst_flacenc_sink_event)
17942         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
17943         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
17944         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
17945         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
17946         * gst/auparse/gstauparse.c (gst_auparse_chain)
17947         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
17948         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
17949         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
17950         (gst_avi_demux_handle_seek)
17951         * gst/goom/gstgoom.c (gst_goom_event)
17952         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
17953         * gst/matroska/matroska-demux.c
17954         (gst_matroska_demux_handle_seek_event)
17955         (gst_matroska_demux_loop_stream_parse_id)
17956         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
17957         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
17958         (gst_wavparse_stream_headers): Run update-funcnames.
17959
17960 2005-11-22  Edward Hervey  <edward@fluendo.com>
17961
17962         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
17963         (gst_dv1394src_init), (gst_dv1394src_dispose),
17964         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
17965         (gst_dv1394src_uri_set_uri):
17966         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
17967         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
17968         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
17969         URIHandler interface and element properties are now properly
17970         synchronized for DV1394src and UDPSrc
17971
17972 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
17973
17974         * ext/flac/Makefile.am:
17975         * ext/speex/Makefile.am:
17976           libgsttagedit has been renamed to libgsttag.
17977
17978 2005-11-21  Wim Taymans  <wim@fluendo.com>
17979
17980         * gst/rtsp/rtspconnection.c: (read_body):
17981         Apply patch from Sebastien Cote to fix #319184.
17982
17983 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
17984
17985         * configure.ac:
17986         * gst/cutter/Makefile.am:
17987         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
17988         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
17989         (gst_cutter_set_property), (gst_cutter_get_property),
17990         (plugin_init), (gst_cutter_get_caps):
17991           port cutter
17992         * gst/level/gstlevel.c:
17993           fix up plugin details
17994
17995 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
17996
17997         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
17998         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
17999         (gst_flacdec_src_event):
18000         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
18001         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
18002         (gst_signal_processor_getrange), (gst_signal_processor_chain):
18003         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
18004         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
18005         (gst_flxdec_sink_event_handler):
18006         * gst/matroska/matroska-demux.c:
18007         (gst_matroska_demux_handle_seek_event):
18008         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
18009           Update for stream lock API changes: don't take stream log
18010           in sink event handlers any longer and change GST_STREAM_LOCK
18011           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
18012           functions.
18013
18014 2005-11-21  Michael Smith <msmith@fluendo.com>
18015
18016         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
18017           gst_object_unref, not g_object_unref
18018
18019 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
18020
18021         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
18022         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
18023           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
18024
18025 2005-11-21  Michael Smith <msmith@fluendo.com>
18026
18027         * gst/auparse/Makefile.am:
18028         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
18029         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
18030         (gst_auparse_change_state):
18031         * gst/auparse/gstauparse.h:
18032           Partially fix #161712. playbin still doesn't work on these files,
18033           (on the bug report, Andy says we aren't typefinding it for some
18034           reason?) but at least auparse isn't totally busted like it was before.
18035
18036 2005-11-21  Andy Wingo  <wingo@pobox.com>
18037
18038         * *.h:
18039         * *.c: Ran scripts/update-macros. Oh yes.
18040
18041 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
18042
18043         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
18044           Filler events are gone for now, comment out section generating
18045           them.
18046
18047 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
18048
18049         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
18050         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
18051         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
18052         * sys/osxvideo/osxvideosink.m:
18053           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
18054           (#322027)
18055
18056 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
18057
18058         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
18059         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
18060         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
18061         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
18062         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
18063         (gst_avi_demux_stream_data):
18064         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
18065         * gst/wavenc/gstwavenc.c: (write_metadata):
18066         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
18067         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
18068         Fixes for GST_FOURCC_FORMAT API change.
18069
18070 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
18071
18072         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
18073         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
18074         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
18075         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
18076         (gst_text_overlay_change_state):
18077         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
18078         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
18079         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
18080         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
18081         * gst/videomixer/videomixer.c: (gst_videomixer_init),
18082         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
18083         (gst_videomixer_change_state):
18084           Fix for collect pads API change. Also fix textoverlay state
18085           change function.
18086
18087 2005-11-20  Julien MOUTTE  <julien@moutte.net>
18088
18089         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
18090         GST_PAD_IS_USABLE by something approaching it.
18091
18092 2005-11-20  Julien MOUTTE  <julien@moutte.net>
18093
18094         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
18095         API changes.
18096         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
18097         but also fix the code that was not checking return values from
18098         pad_push neither using pad_alloc_buffer.
18099
18100 2005-11-18  Edward Hervey  <edward@fluendo.com>
18101
18102         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
18103         (gst_pngenc_chain):
18104         Added debug category
18105         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
18106         goes to EOS.
18107
18108 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
18109
18110         * gst/rtp/Makefile.am
18111         * gst/rtp/gstrtp.c
18112         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
18113         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
18114         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
18115         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
18116         * gst/rtp/gstrtpg711enc.h:
18117         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
18118         * gst/rtp/gstrtpspeexenc.c:
18119         * gst/rtp/gstrtpspeexenc.h:
18120         * gst/rtp/gstrtpspeexdec.c:
18121         * gst/rtp/gstrtpspeexdec.h:
18122         Created Speex payloader and depayloader; Optimize G711 payloader to
18123         use adapter and send packets until MTU size.
18124
18125 2005-11-16  Wim Taymans  <wim@fluendo.com>
18126
18127         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
18128         Fix leak in check.
18129
18130 2005-11-16  Wim Taymans  <wim@fluendo.com>
18131
18132         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
18133         Fix state change.
18134
18135 2005-11-16  Andy Wingo  <wingo@pobox.com>
18136
18137         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
18138         (gst_udpsrc_create): Move comment.
18139
18140 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
18141
18142         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18143
18144         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
18145           When seeking, seek to closest index entry at or before the requested
18146           seek position, not just the closest one (#321001).
18147
18148 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
18149
18150         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
18151         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
18152           Invert DIB images again (see #132341).
18153
18154 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18155
18156         * configure.ac:
18157           rework configure.ac file
18158         * ext/aalib/gstaasink.c:
18159         * ext/cairo/gstcairo.c:
18160         * ext/dv/gstdv.c:
18161         * ext/esd/gstesd.c:
18162         * ext/flac/gstflac.c:
18163         * ext/gconf/gstgconfelements.c:
18164         * ext/gdk_pixbuf/gstgdkpixbuf.c:
18165         * ext/jpeg/gstjpeg.c:
18166         * ext/ladspa/gstladspa.c:
18167         * ext/libcaca/gstcacasink.c:
18168         * ext/libmng/gstmng.c:
18169         * ext/libpng/gstpng.c:
18170         * ext/mikmod/gstmikmod.c:
18171         * ext/pango/gsttextoverlay.c:
18172         * ext/pango/gsttimeoverlay.c:
18173         * ext/raw1394/gst1394.c:
18174         * ext/speex/gstspeex.c:
18175         * gst/alpha/Makefile.am:
18176         * gst/alpha/gstalpha.c:
18177         * gst/alpha/gstalphacolor.c:
18178         * gst/auparse/gstauparse.c:
18179         * gst/autodetect/gstautoaudiosink.c:
18180         (gst_auto_audio_sink_factory_filter),
18181         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
18182         * gst/autodetect/gstautodetect.c:
18183         * gst/avi/gstavi.c:
18184         * gst/cutter/gstcutter.c:
18185         * gst/debug/efence.c:
18186         * gst/debug/gstdebug.c:
18187         * gst/debug/gstnavigationtest.c:
18188         * gst/effectv/gsteffectv.c:
18189         * gst/flx/gstflxdec.c:
18190         * gst/goom/gstgoom.c:
18191         * gst/interleave/plugin.c:
18192         * gst/law/alaw.c:
18193         * gst/law/mulaw.c:
18194         * gst/level/gstlevel.c:
18195         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
18196         * gst/matroska/matroska.c:
18197         * gst/median/gstmedian.c:
18198         * gst/monoscope/gstmonoscope.c:
18199         * gst/multipart/multipart.c:
18200         * gst/oldcore/gstelements.c:
18201         * gst/rtp/gstrtp.c:
18202         * gst/rtsp/gstrtsp.c:
18203         * gst/smoothwave/gstsmoothwave.c:
18204         * gst/smpte/gstsmpte.c:
18205         * gst/udp/gstudp.c:
18206         * gst/videobox/gstvideobox.c:
18207         * gst/videofilter/gstgamma.c:
18208         * gst/videofilter/gstvideobalance.c:
18209         * gst/videofilter/gstvideoflip.c:
18210         * gst/videofilter/gstvideotemplate.c:
18211         * gst/videomixer/videomixer.c:
18212         * gst/wavenc/gstwavenc.c:
18213         * gst/wavparse/gstwavparse.c:
18214         * sys/oss/gstossaudio.c:
18215         * sys/osxaudio/gstosxaudio.c:
18216           update GST_PLUGIN_DEFINE
18217         * gst/rtp/Makefile.am:
18218         * gst/rtp/gstasteriskh263.c:
18219           check for htons/htonl headers and possibly link to winsock2 lib
18220
18221 2005-11-12  Edward Hervey  <edward@fluendo.com>
18222
18223         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
18224         Only GST_DEBUG() information on the valid components.
18225
18226 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
18227
18228         * configure.ac: back to HEAD
18229
18230 === release 0.9.5 ===
18231
18232 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
18233
18234         * configure.ac:
18235           releasing 0.9.5, "Phone Alarm"
18236
18237 2005-11-11  Edward Hervey  <edward@fluendo.com>
18238
18239         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
18240         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
18241         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
18242         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
18243         (gst_avi_demux_loop):
18244         * gst/avi/gstavidemux.h:
18245         Yeah, implement proper seeking. Exact seeking and segment seeking.
18246         Still need to do some checks for segment_stop.
18247
18248 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
18249
18250         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18251
18252         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
18253           Don't try to ready buffer duration from buffer that we don't
18254           own any  longer and that might already have been unreffed.
18255           (#321136)
18256
18257 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
18258
18259         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
18260         (flx_decode_delta_flc), (gst_flxdec_chain):
18261         Attempting to optimize the code for embedded systems.
18262
18263 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
18264
18265         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18266
18267         * sys/oss/gstosssink.c: (gst_oss_sink_close):
18268           Don't re-use already closed file descriptor. (#320920)
18269
18270 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
18271
18272         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
18273         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
18274         (gst_oss_sink_prepare):
18275         * sys/oss/gstosssink.h:
18276           Cache probed caps; fix debug output for SET_PARAM macros.
18277
18278 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
18279
18280         * ext/cairo/Makefile.am:
18281         * ext/cairo/gstcairo.c: (plugin_init):
18282         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
18283         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
18284         (gst_text_overlay_init), (gst_text_overlay_font_init),
18285         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
18286         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
18287         (gst_text_overlay_text_pad_linked),
18288         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
18289         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
18290         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
18291         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
18292         (gst_text_overlay_change_state):
18293         * ext/cairo/gsttextoverlay.h:
18294           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
18295           property and redo positioning. Doesn't handle upstream renegotiation
18296           yet though.
18297
18298 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
18299
18300         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
18301         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
18302         (gst_avi_demux_loop):
18303           No need to take the STREAM_LOCK in the loop function. Improve
18304           some debug messages. Don't leak pad names in debug messages.
18305
18306 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
18307
18308         * gst/matroska/matroska-demux.c:
18309         (gst_matroska_demux_push_vorbis_codec_priv_data),
18310         (gst_matroska_demux_add_wvpk_header):
18311           Don't error out when the source pad isn't linked.
18312
18313 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
18314
18315         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
18316         (gst_gconf_audio_sink_change_state):
18317         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
18318         (gst_gconf_video_sink_change_state):
18319           Fix state change functions here as well and set kid
18320           to NULL state before removing it.
18321
18322 2005-11-01  Edward Hervey  <edward@fluendo.com>
18323
18324         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
18325         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
18326         Added proper event handlind, 
18327         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
18328         ignored),
18329         and don't set a duration of 0 for buffers otherwise they are discarded
18330         by GstBaseSink.
18331
18332         GstWavEnc needs some serious loving, after going through the code I'm
18333         really wondering how this can stay in -good ...
18334
18335 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18336
18337         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
18338         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
18339         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
18340         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
18341         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
18342         (gst_matroska_mux_collected):
18343           Fix leaks and invalid memory access as reported by valgrind
18344
18345 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18346
18347         Patch by: Michal Benes <michal.benes@xeris.cz>
18348
18349         * check/Makefile.am:
18350         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
18351         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
18352         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
18353           add a unit test for matroskamux
18354           fix the bugs that the unit test exposed
18355
18356 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
18357
18358         * gst/autodetect/gstautoaudiosink.c:
18359         (gst_auto_audio_sink_class_init),
18360         (gst_auto_audio_sink_change_state):
18361         * gst/autodetect/gstautovideosink.c:
18362         (gst_auto_video_sink_class_init),
18363         (gst_auto_video_sink_change_state):
18364           Fix state change function and use GST_DEBUG_FUNCPTR in
18365           class_init.
18366
18367 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
18368
18369         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18370
18371         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
18372         (gst_ebml_write_reset), (gst_ebml_write_element_new):
18373         * gst/matroska/ebml-write.h:
18374         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
18375           Set timestamps on outgoing ebml headers as well, so that the
18376           element after matroskamux can get the timestamp already when
18377           reading the first ebml element and doesn't have to wait for
18378           the actual data buffer for that (#320308).
18379           
18380 2005-10-31  Andy Wingo  <wingo@pobox.com>
18381
18382         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
18383         (gst_videomixer_pad_link): Kill some memleaks.
18384         (gst_videomixer_pad_get_property): Style fix.
18385         (gst_videomixer_pad_set_property): Style fix.
18386         (gst_videomixer_pad_init): Style fix.
18387         (gst_videomixer_update_queues): Kill memleak.
18388         (gst_videomixer_loop): Kill memleak.
18389         (gst_videomixer_collected): Kill memleak.
18390
18391 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
18392
18393         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
18394         gst_auparse_change_state:
18395         Just some cleanup.
18396
18397 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
18398
18399         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
18400         Add checks to GST_FLOW_NOT_LINKED for values returned
18401         from gst_pad_push.
18402         
18403 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
18404
18405         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
18406         (gst_rtpg711dec_process):
18407         * gst/rtp/gstrtpgsmenc.c:
18408         Payloader now sets some default caps on the srcpad if caps on the sinkpad
18409         are never set. This is important for the g711 to work with burger's rtpbin
18410         element.
18411
18412 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
18413
18414         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
18415         (gst_speexenc_push_buffer):
18416         Add checks for return values from gst_pad_push and
18417         gst_pad_alloc_buffer.
18418
18419 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
18420
18421         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18422
18423         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
18424         (gst_matroska_demux_parse_info),
18425         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
18426         (gst_matroska_demux_parse_cluster):
18427         * gst/matroska/matroska-ids.h:
18428         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
18429         (gst_matroska_mux_init), (gst_matroska_mux_start),
18430         (gst_matroska_mux_create_buffer_header),
18431         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
18432         (gst_matroska_mux_get_property):
18433         * gst/matroska/matroska-mux.h:
18434           Add SimpleBlock support to matroska demuxer and muxer (part of
18435           Matroska v2). (#319731)
18436
18437 2005-10-28  Wim Taymans  <wim@fluendo.com>
18438
18439         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
18440         (gst_jpeg_dec_change_state):
18441         * ext/jpeg/gstjpegdec.h:
18442         Cleanups. Don't create caps for every chain.
18443
18444 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
18445
18446         * gst/law/alaw-encode.c: (gst_alawenc_init),
18447         (alawenc_setcaps), (gst_alawenc_chain)
18448         * gst/law/alaw-encode.h:
18449         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
18450         (mulawenc_setcaps), (gst_mulawenc_chain)
18451         * gst/law/mulaw-encode.h:
18452         Set timestamp on buffer and it allows RTP G711 elements
18453         work properly.
18454
18455 2005-10-27  Wim Taymans  <wim@fluendo.com>
18456
18457         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
18458         Set correct format on oss instead of a silly value. 
18459
18460 2005-10-27  Julien MOUTTE  <julien@moutte.net>
18461
18462         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
18463         (gst_video_box_transform_caps), (gst_video_box_set_caps),
18464         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
18465         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
18466         I420 rendering as well, doesn't bring much for my platform.
18467         Might help on some other platforms.
18468
18469 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
18470
18471         * gst/rtp/gstrtpgsmenc.c:
18472         * gst/rtp/gstrtpgsmparse.c:
18473         Declaring the padtemplate correctly.
18474
18475 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
18476
18477         * gst/rtp/gstrtpg711dec.c:
18478         * gst/rtp/gstrtpg711enc.c:
18479         * gst/rtp/gstrtpgsmenc.c:
18480         * gst/rtp/gstrtpgsmparse.c:
18481         Setting the proper copyright notice.
18482
18483 2005-10-26  Julien MOUTTE  <julien@moutte.net>
18484
18485         * gst/videobox/Makefile.am: Use liboil.
18486         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
18487         (gst_video_box_set_property), (gst_video_box_transform_caps),
18488         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
18489         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
18490         using liboil. Will dot the same to I420 border generation
18491         tomorrow.
18492
18493 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
18494
18495         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
18496         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
18497         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
18498         * gst/rtp/gstrtpg711dec.h:
18499         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
18500         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
18501         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
18502         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
18503         (gst_rtpgsmenc_handle_buffer):
18504         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
18505         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
18506         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
18507         * gst/rtp/gstrtpgsmparse.h:
18508         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
18509         inherits from the basertpdepayloader.
18510
18511 2005-10-26  Julien MOUTTE  <julien@moutte.net>
18512
18513         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
18514         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
18515         (gst_video_box_ayuv): Removing this forgotten debug.
18516
18517 2005-10-26  Julien MOUTTE  <julien@moutte.net>
18518
18519         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
18520         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
18521         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
18522
18523 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
18524
18525         * sys/oss/gstossaudio.c:
18526         * sys/oss/gstossdmabuffer.c:
18527         * sys/oss/gstosshelper.c:
18528         * sys/oss/gstossmixer.c:
18529         * sys/oss/gstossmixerelement.c:
18530         * sys/oss/gstossmixertrack.c:
18531         * sys/oss/gstosssink.c:
18532         * sys/oss/gstosssrc.c:
18533           Actually use the 'oss' debug category we register.
18534
18535 2005-10-26  Julien MOUTTE  <julien@moutte.net>
18536
18537         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
18538         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
18539         Use gst_pad_get_parent and drop the ref that was added through
18540         that call.
18541
18542 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
18543
18544         * gst/rtp/gstrtpgsmenc.c:
18545           Fix compilation
18546
18547 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
18548
18549         * gst/rtp/gstrtpg711dec.c
18550         Just removed a couple of lines of weird code used during
18551         development/test time.
18552
18553 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
18554
18555         * gst/rtp/Makefile.am
18556         * gst/rtp/gstrtp.c
18557         * gst/rtp/gstrtpg711enc.c
18558         * gst/rtp/gstrtpg711enc.h
18559         * gst/rtp/gstrtpg711dec.c
18560         * gst/rtp/gstrtpg711dec.h
18561         Created G711 payloader and depayloader (it supports mulaw and alaw
18562         (dec)encoders)
18563
18564 2005-10-25  Julien MOUTTE  <julien@moutte.net>
18565
18566         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
18567         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
18568         Doh ! I introduced wingo's bug again ! Sorry...
18569
18570 2005-10-25  Christian Schaller <christian@fluendo.com> 
18571
18572         * gst/rtp/Makefile.am: add missing header files for disting
18573
18574 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
18575
18576         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
18577         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
18578         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
18579         (gst_rtpgsmenc_handle_buffer):
18580         * gst/rtp/gstrtpgsmenc.h:
18581         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
18582         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
18583         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
18584         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
18585         * gst/rtp/gstrtpgsmparse.h:
18586         Getting the GSM (de)payloader working and compatible with our plans for RTP.
18587
18588 2005-10-25  Julien MOUTTE  <julien@moutte.net>
18589
18590         * ext/libpng/gstpngdec.c: (user_info_callback),
18591         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
18592         a newsegment event, move some redundant code in a single place.
18593
18594 2005-10-25  Julien MOUTTE  <julien@moutte.net>
18595
18596         * ext/libpng/gstpngdec.c: (user_info_callback),
18597         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
18598         hack to get correct colors order when we have a png image with
18599         alpha channel.
18600
18601 2005-10-24  Edward Hervey  <edward@fluendo.com>
18602
18603         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
18604         Call gst_element_no_more_pads when there will be no more pads.
18605
18606 2005-10-24  Wim Taymans  <wim@fluendo.com>
18607
18608         * gst/rtp/Makefile.am:
18609         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
18610         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
18611         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
18612         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
18613         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
18614         (gst_asteriskh263_plugin_init):
18615         * gst/rtp/gstasteriskh263.h:
18616         * gst/rtp/gstrtp.c: (plugin_init):
18617         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
18618         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
18619         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
18620         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
18621         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
18622         (gst_rtph263enc_plugin_init):
18623         * gst/rtp/gstrtph263enc.h:
18624         Added two new payloaders, an RFC 2190 payloader for h263 and
18625         a payload convertor for an asterisk server.
18626
18627 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
18628
18629         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
18630           Set bytes_per_sample correctly (is not always 4, but 
18631           depends on width and number of channels).
18632
18633 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
18634
18635         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
18636         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
18637         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
18638         (gst_flacenc_sink_event), (gst_flacenc_chain),
18639         (gst_flacenc_set_property), (gst_flacenc_get_property),
18640         (gst_flacenc_change_state):
18641         * ext/flac/gstflacenc.h:
18642           Fix seeking, so that flacenc can rewrite the header with the
18643           correct duration and amount of samples and all that at EOS;
18644           also set timestamps and granulepos on outgoing buffers; add
18645           debug category; fix state change function.
18646           
18647 2005-10-24  Julien MOUTTE  <julien@moutte.net>
18648
18649         * gst/videomixer/videomixer.c: Don't restrict video geometry
18650         from 16 to 4096.
18651
18652 2005-10-24  Julien MOUTTE  <julien@moutte.net>
18653
18654         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
18655         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
18656         Fix caps negotiation correctly, add debugging category.
18657
18658 2005-10-24  Christian Schaller  <christian@fluendo.com>
18659
18660         * configure.ac: Port over Thomas's change from base listing all plugins
18661
18662 2005-10-24  Julien MOUTTE  <julien@moutte.net>
18663
18664         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
18665         a sink pad.
18666
18667 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18668
18669         * configure.ac:
18670         * docs/upload.mak:
18671           back to HEAD
18672
18673 === release 0.9.4 ===
18674
18675 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18676
18677         * configure.ac:
18678           Releasing 0.9.4, "Dromiceiomimus"
18679
18680 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
18681
18682         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
18683         (gst_speexenc_src_query):
18684           Add position and duration query, fix query type function.
18685           
18686         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
18687         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
18688           Let's not set non-fixed caps on source pads.
18689
18690 2005-10-21  Wim Taymans  <wim@fluendo.com>
18691
18692         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
18693         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
18694         (gst_avi_demux_handle_seek):
18695         Set correct stream_time in newsegment event.
18696         avi can also handle a duration query now.
18697
18698 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
18699
18700         * gst/matroska/matroska-demux.c:
18701         (gst_matroska_demux_handle_src_query),
18702         (gst_matroska_demux_handle_seek_event),
18703         (gst_matroska_demux_loop_stream_parse_id):
18704           Fix duration query; fix basetime in newsegment event after
18705           seek; fix duration in initial newsegment event.
18706
18707         * gst/matroska/matroska-mux.c:
18708         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
18709           Extract number of channels and samplerate from vorbis headers;
18710           add some debug messages when querying the durations of the
18711           input streams.
18712
18713 2005-10-20  Wim Taymans  <wim@fluendo.com>
18714
18715         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
18716         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18717         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
18718         Set stream time correctly in newsegment.
18719
18720 2005-10-20  Wim Taymans  <wim@fluendo.com>
18721
18722         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
18723         Correctly fill in the stream time.
18724
18725 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
18726
18727         * check/elements/level.c: (GST_START_TEST):
18728         * gst/level/gstlevel.c: (gst_level_message_new):
18729         * gst/level/level-example.c: (message_handler):
18730           use ELEMENT messages instead
18731
18732 2005-10-19  Wim Taymans  <wim@fluendo.com>
18733
18734         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
18735         (gst_dvdemux_src_query):
18736         * ext/flac/gstflacdec.c: (gst_flacdec_length),
18737         (gst_flacdec_src_query):
18738         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
18739         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
18740         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
18741         * gst/debug/gstnavseek.c: (gst_navseek_seek):
18742         * gst/debug/progressreport.c: (gst_progress_report_report):
18743         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
18744         * gst/matroska/matroska-demux.c:
18745         (gst_matroska_demux_handle_src_query):
18746         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
18747         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
18748         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18749         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
18750         (gst_wavparse_srcpad_event):
18751         API change fix.
18752
18753 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
18754
18755         * gst/goom/filters.c:
18756         * gst/goom/graphic.h:
18757         * gst/goom/lines.c:
18758           Make inline functions either 'static inline' or 'extern inline',
18759           otherwise the Forte compiler apparently won't inline them (#317300).
18760
18761 2005-10-19  Julien MOUTTE  <julien@moutte.net>
18762
18763         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
18764         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
18765         (user_info_callback), (user_endrow_callback), (user_end_callback),
18766         (user_read_data), (gst_pngdec_caps_create_and_set),
18767         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
18768         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
18769         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
18770         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
18771         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
18772         very nice and handle push/pull based model. if you have filesrc
18773         connected to it, it will do random access to load the png file.
18774         If you have a network source that can't do _getrange, it does 
18775         progressive loading through the chain function.
18776         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
18777         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
18778         thanks to Master Wim Taymans ;-)
18779
18780 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
18781
18782         * gst/matroska/Makefile.am:
18783         * gst/matroska/ebml-read.c:
18784         * gst/matroska/ebml-read.h:
18785         * gst/matroska/matroska-demux.c:
18786         * gst/matroska/matroska-demux.h:
18787         * gst/matroska/matroska.c: (plugin_init):
18788           Ported matroska demuxer to 0.9.
18789
18790 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
18791
18792         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18793
18794         * gst/matroska/matroska-mux.c:
18795         (gst_matroska_mux_video_pad_setcaps),
18796         (gst_matroska_mux_audio_pad_setcaps):
18797           Fix mpeg4 input handling (#318847); also, while we're at it,
18798           fix media type for Motion-JPEG: should be image/jpeg.
18799
18800 2005-10-18  Wim Taymans  <wim@fluendo.com>
18801
18802         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
18803         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18804         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
18805         Fix for segment-start/stop API change.
18806
18807 2005-10-17  Julien MOUTTE  <julien@moutte.net>
18808
18809         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
18810         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
18811         way.
18812
18813 2005-10-17  Julien MOUTTE  <julien@moutte.net>
18814
18815         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
18816         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
18817         output declared in transform_caps.
18818
18819 2005-10-17  Julien MOUTTE  <julien@moutte.net>
18820
18821         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
18822
18823 2005-10-17  Julien MOUTTE  <julien@moutte.net>
18824
18825         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
18826         (gst_video_box_get_unit_size): Fix wrong size calculations and
18827         implement get_unit_size correctly.
18828
18829 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
18830
18831         * configure.ac:
18832           Enable flx plugin.
18833
18834         * gst/flx/gstflxdec.c: (flx_decode_chunks):
18835           Fix gcc4 signedness issue.
18836
18837 2005-10-17  Julien MOUTTE  <julien@moutte.net>
18838
18839         * configure.ac: Adding videomixer.
18840         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
18841         (user_read_data), (gst_pngdec_chain): More debugging.
18842         * gst/alpha/Makefile.am: Adding alphacolor
18843         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
18844         (gst_alpha_color_class_init), (gst_alpha_color_init),
18845         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
18846         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
18847         (plugin_init): Ported to 0.9 using in place base tranform.
18848         * gst/videomixer/Makefile.am:
18849         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
18850         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
18851         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
18852         (gst_videomixer_pad_init), (gst_videomixer_class_init),
18853         (gst_videomixer_init), (gst_videomixer_getcaps),
18854         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
18855         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
18856         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
18857         to 0.9 using collectpads.
18858
18859 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
18860
18861         * configure.ac:
18862         * gst/flx/Makefile.am:
18863         * gst/flx/gstflxdec.c: (gst_flxdec_init),
18864         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
18865         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
18866         * gst/flx/gstflxdec.h:
18867         flx plugin ported to 0.9
18868
18869 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18870
18871         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
18872           use new gst_version_string()
18873
18874 2005-10-16  Andy Wingo  <wingo@pobox.com>
18875
18876         * configure.ac: GLIB_CHECK.
18877
18878 2005-10-15  Julien MOUTTE  <julien@moutte.net>
18879
18880         * ext/libpng/Makefile.am:
18881         * ext/libpng/gstpng.c: (plugin_init):
18882         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
18883         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
18884         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
18885
18886 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
18887
18888         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18889
18890         * configure.ac:
18891         * gst/matroska/Makefile.am:
18892         * gst/matroska/ebml-ids.h:
18893         * gst/matroska/ebml-write.c:
18894         * gst/matroska/ebml-write.h:
18895         * gst/matroska/matroska-ids.h:
18896         * gst/matroska/matroska-mux.c:
18897         * gst/matroska/matroska-mux.h:
18898         * gst/matroska/matroska.c: (plugin_init):
18899           Port matroska muxer to 0.9 (#318847).
18900
18901 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
18902
18903         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
18904         (comment_init), (comment_add):
18905           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
18906           use GST_READ_UINT32_LE() and friends rather than the private
18907           implementation of those same macros.
18908
18909 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
18910
18911         * examples/stats/mp2ogg.c:
18912           more typo fixes
18913
18914 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
18915
18916         * examples/indexing/indexmpeg.c: (main):
18917         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
18918         (gst_esdmon_close_audio), (gst_esdmon_change_state):
18919         * ext/esd/esdmon.h:
18920         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
18921         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
18922         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
18923         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
18924         * gst/avi/gstavimux.c: (gst_avimux_init):
18925         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
18926         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
18927         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
18928         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
18929         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
18930         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
18931         * gst/oldcore/gstmultifilesrc.h:
18932         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
18933         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
18934         (gst_pipefilter_change_state):
18935         * gst/oldcore/gstpipefilter.h:
18936         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
18937         * gst/videomixer/videomixer.c: (gst_videomixer_init):
18938         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
18939         * sys/osxaudio/gstosxaudiosink.h:
18940         * sys/osxaudio/gstosxaudiosrc.h:
18941           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
18942           moved bitshift from macro to enum definition
18943
18944 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18945
18946         * ext/Makefile.am:
18947         * ext/cairo/Makefile.am:
18948         * ext/cairo/gstcairo.c: (plugin_init):
18949         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
18950         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
18951         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
18952         * ext/cairo/gsttimeoverlay.h:
18953           update of cairo-based timeoverlay to 1.0 Cairo API
18954           doesn't work yet for resizing of output sink
18955
18956 2005-10-11  Wim Taymans  <wim@fluendo.com>
18957
18958         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
18959         newsegment API fix.
18960
18961 2005-10-11  Wim Taymans  <wim@fluendo.com>
18962
18963         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
18964         (gst_dvdemux_demux_frame):
18965         * ext/flac/gstflacdec.c: (gst_flacdec_write):
18966         * gst/auparse/gstauparse.c: (gst_auparse_chain):
18967         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
18968         (gst_avi_demux_handle_seek):
18969         * gst/goom/gstgoom.c: (gst_goom_event):
18970         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
18971         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
18972         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
18973         (gst_wavparse_loop), (gst_wavparse_pad_convert),
18974         (gst_wavparse_srcpad_event):
18975         newsegment API update.
18976
18977 2005-10-11  Andy Wingo  <wingo@pobox.com>
18978
18979         * ext/speex/gstspeexenc.c: Signedness cleanups.
18980
18981 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
18982
18983         * PORTED_09:
18984         * ext/speex/Makefile.am:
18985         * ext/speex/gstspeex.c:
18986         * ext/speex/gstspeexenc.c:
18987         Speexenc ported to 0.9
18988
18989 2005-10-10  Wim Taymans  <wim@fluendo.com>
18990
18991         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
18992         (gst_oss_sink_init), (gst_oss_sink_set_property),
18993         (gst_oss_sink_get_property), (gst_oss_sink_open),
18994         (gst_oss_sink_prepare), (gst_oss_sink_reset):
18995         * sys/oss/gstosssink.h:
18996         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
18997         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
18998         (gst_oss_src_prepare):
18999         Cleanups, make device configurable in the sink, handle and report
19000         errors.
19001
19002 2005-10-10  Wim Taymans  <wim@fluendo.com>
19003
19004         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
19005         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
19006         Make sure element is NULL before removing from the bin.
19007
19008 2005-10-07  Andy Wingo  <wingo@pobox.com>
19009
19010         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
19011         block forever in a read().
19012         (gst_dv1394src_bus_reset): Post a message when the cable is
19013         unplugged.
19014         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
19015         (gst_dv1394src_bus_reset): Don't unref the message.
19016
19017         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
19018         hacking. The only change should be that the state change stuff was
19019         put into basesrc's start() and stop() routines, which coalesces
19020         some steps.
19021
19022 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
19023
19024         * configure.ac:
19025           Add check for mmap
19026           
19027         * gst/debug/Makefile.am:
19028           Only compile efence plugin on systems that have mmap.
19029
19030 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
19031
19032         * gst/debug/Makefile.am:
19033         * gst/debug/breakmydata.c:
19034         * gst/debug/gstdebug.c:
19035         * gst/debug/gstnavigationtest.c:
19036         * gst/debug/gstnavseek.c: 
19037         * gst/debug/gstnavseek.h:
19038         * gst/debug/progressreport.c: 
19039         * gst/debug/testplugin.c:
19040           Port progressreport, navseek, navigationtest, testsink and
19041           breakmydata.
19042
19043 2005-10-05  Edward Hervey  <edward@fluendo.com>
19044
19045         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
19046         (gst_dvdemux_src_query):
19047         Fixes for better conversion
19048
19049 2005-10-04  Michael Smith <msmith@fluendo.com>
19050
19051         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
19052         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
19053         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
19054         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
19055           Set state of elements to NULL before removing from bins.
19056           Set state of test element to NULL if we failed to move it to READY
19057
19058 2005-10-04  Edward Hervey  <edward@fluendo.com>
19059
19060         * ext/dv/Makefile.am:
19061         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
19062         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
19063         Corrected the query function for position so it doesn't forget what
19064         format was asked, and calls the conversion functions on the correct pad.
19065
19066 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19067
19068         * configure.ac:
19069           back to development
19070
19071 === release 0.9.3 ===
19072
19073 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
19074
19075         * configure.ac:
19076           Releasing 0.9.3, "Aramis"
19077
19078 2005-10-03  Andy Wingo  <wingo@pobox.com>
19079
19080         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
19081         error returns.
19082
19083 2005-10-02  Andy Wingo  <wingo@pobox.com>
19084
19085         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
19086
19087         * ext/flac/gstflacenc.c: Ported to 0.9.
19088
19089         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
19090
19091         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
19092         and link to gsttagedit. Enable flacenc.
19093
19094         * ext/flac/gstflacdec.c: Re-enable tag reading.
19095
19096 2005-09-30  Wim Taymans  <wim@fluendo.com>
19097
19098         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
19099         * gst/rtp/gstrtpgsmparse.c:
19100         * gst/rtp/gstrtph263penc.c:
19101         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
19102         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
19103         (gst_rtpmp4venc_set_property):
19104         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
19105         Various class and caps fixes from Andre Magalhaes (andrunko)
19106
19107 2005-09-29  Wim Taymans  <wim@fluendo.com>
19108
19109         * gst/level/level-example.c: (main):
19110         Update for new bus API.
19111
19112 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
19113
19114         * configure.ac:
19115           Fix unexpanded autoconf macro GST_DOC, which has been renamed
19116           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
19117
19118 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
19119
19120         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
19121           Fix playback of mono streams (bytes_per_sample should be set
19122           from the sample width and the number of channels negotiated,
19123           and not just be set to 4) (#317338)
19124
19125 2005-09-26  Wim Taymans  <wim@fluendo.com>
19126
19127         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
19128         (gst_rtpmpaenc_handle_buffer):
19129         Set buffer duration correctly.
19130
19131 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
19132
19133         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
19134         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
19135         (gst_avi_demux_change_state):
19136           Don't crash when encountering a stream with an unknown fourcc or
19137           codec id. Instead, create a pad of type video/x-avi-unknown or
19138           audio/x-avi-unknown, which as a side-effect also results in less
19139           confusing error messages in players ('no decoder' vs. 'no streams');
19140           minor fixes to state change function and class_init function.
19141
19142 2005-09-24  Wim Taymans  <wim@fluendo.com>
19143
19144         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
19145         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
19146         These are sinks.
19147
19148 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19149
19150         * check/elements/level.c: (GST_START_TEST):
19151           fix test for new GstClockTime use
19152         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
19153         (gst_level_transform_ip):
19154         * gst/level/gstlevel.h:
19155           fix up the decay peak, ensuring the decay peak is never lower
19156           than the peak for that interval
19157
19158 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19159
19160         * docs/plugins/gst-plugins-good-plugins.args:
19161         * docs/plugins/inspect/plugin-alpha.xml:
19162         * docs/plugins/inspect/plugin-rtp.xml:
19163         * gst/level/gstlevel.c: (gst_level_set_caps),
19164         (gst_level_transform_ip):
19165           updating docs
19166
19167 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19168
19169         * Makefile.am:
19170         * check/elements/level.c: (GST_START_TEST):
19171         * gst/level/Makefile.am:
19172         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
19173         (gst_level_set_property), (gst_level_get_property),
19174         (gst_level_set_caps), (gst_level_message_new),
19175         (gst_level_transform_ip):
19176         * gst/level/gstlevel.h:
19177         * gst/level/level-example.c: (message_handler), (main):
19178           convert to using GstClockTime for all time values, finally.
19179
19180 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19181
19182         * gst/auparse/Makefile.am:
19183         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19184           fix up build
19185         * configure.ac:
19186         * ext/cairo/Makefile.am:
19187         * ext/dv/Makefile.am:
19188         * ext/esd/Makefile.am:
19189         * ext/flac/Makefile.am:
19190         * ext/gconf/Makefile.am:
19191         * ext/gdk_pixbuf/Makefile.am:
19192         * ext/jpeg/Makefile.am:
19193         * ext/ladspa/Makefile.am:
19194         * ext/libcaca/Makefile.am:
19195         * ext/libmng/Makefile.am:
19196         * ext/libpng/Makefile.am:
19197         * ext/mikmod/Makefile.am:
19198         * ext/pango/Makefile.am:
19199         * ext/raw1394/Makefile.am:
19200         * ext/shout2/Makefile.am:
19201         * ext/speex/Makefile.am:
19202         * gst/alpha/Makefile.am:
19203         * gst/autodetect/Makefile.am:
19204         * gst/avi/Makefile.am:
19205         * gst/cutter/Makefile.am:
19206         * gst/debug/Makefile.am:
19207         * gst/effectv/Makefile.am:
19208         * gst/flx/Makefile.am:
19209         * gst/goom/Makefile.am:
19210         * gst/interleave/Makefile.am:
19211         * gst/law/Makefile.am:
19212         * gst/matroska/Makefile.am:
19213         * gst/median/Makefile.am:
19214         * gst/monoscope/Makefile.am:
19215         * gst/multipart/Makefile.am:
19216         * gst/oldcore/Makefile.am:
19217         * gst/rtp/Makefile.am:
19218         * gst/rtsp/Makefile.am:
19219         * gst/smoothwave/Makefile.am:
19220         * gst/smpte/Makefile.am:
19221         * gst/videobox/Makefile.am:
19222         * gst/videofilter/Makefile.am:
19223         * gst/videomixer/Makefile.am:
19224         * gst/wavenc/Makefile.am:
19225         * gst/wavparse/Makefile.am:
19226         * sys/oss/Makefile.am:
19227         * sys/osxaudio/Makefile.am:
19228         * sys/osxvideo/Makefile.am:
19229           fix up GST_LIBS use
19230
19231 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19232
19233         * gst/auparse/Makefile.am:
19234         * gst/auparse/gstauparse.c: (gst_auparse_chain):
19235           fix build of auparse
19236
19237 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
19238
19239         * configure.ac:
19240         * PORTED_09:
19241         * gst/auparse/gstauparse.c:
19242         * gst/auparse/gstauparse.h:
19243         Auparse ported to 0.9.
19244
19245 2005-09-22  Wim Taymans  <wim@fluendo.com>
19246
19247         * gst/rtp/TODO:
19248         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
19249         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
19250         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
19251         (gst_rtpmp4venc_set_property):
19252         * gst/rtp/gstrtpmp4venc.h:
19253         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
19254         * gst/rtp/gstrtpmpaenc.h:
19255         Use is_filled to both check MTU and max-ptime of base class.
19256
19257 2005-09-22  Wim Taymans  <wim@fluendo.com>
19258
19259         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
19260         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
19261         (gst_rtpmp4venc_set_property):
19262         Don't fragment packets with multiple frames.
19263
19264 2005-09-22  Wim Taymans  <wim@fluendo.com>
19265
19266         * gst/rtp/TODO:
19267         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
19268         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
19269         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
19270         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
19271         (gst_rtpmp4venc_get_property):
19272         * gst/rtp/gstrtpmp4venc.h:
19273         Remove g_print.
19274         Update TODO
19275         Make payload encoder a bit smarter and more correct with
19276         timestamps.
19277         Added option in payloader to include config string in-band.
19278
19279 2005-09-21  Wim Taymans  <wim@fluendo.com>
19280
19281         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
19282         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
19283         (gst_rtspsrc_send):
19284         Strip spaces for key/value pairs.
19285
19286 2005-09-21  Wim Taymans  <wim@fluendo.com>
19287
19288         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
19289         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
19290         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
19291         (gst_rtspsrc_change_state):
19292         More SDP parsing and caps setting.
19293         Do NO_PREROLL differently.
19294         add pads only after negotiated.
19295
19296         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
19297         (gst_udpsrc_getcaps):
19298         Implement the getcaps function.
19299
19300 2005-09-21  Wim Taymans  <wim@fluendo.com>
19301
19302         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
19303         (gst_rtpamrdec_chain):
19304         Handle multiple AMr packets per payload. Handle CRC and
19305         parse ILL/ILP.
19306
19307         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
19308         Make caps params strings for easy SDP mapping.
19309         
19310         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
19311         Handle capsnego better.
19312
19313         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
19314         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
19315         Generate and parse config string in the caps.
19316
19317 2005-09-21  Wim Taymans  <wim@fluendo.com>
19318
19319         * gst/rtp/README:
19320         Update README
19321
19322         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
19323         Make extra params as strings.
19324
19325         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
19326         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
19327         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
19328         Make state change return NO_PREROLL as this is a live
19329         source.
19330
19331         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
19332         Don't unref old caps when NULL.
19333
19334 2005-09-20  Wim Taymans  <wim@fluendo.com>
19335
19336         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
19337         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
19338         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
19339         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
19340         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
19341         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
19342         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
19343         * gst/rtsp/sdpmessage.h:
19344         Add URI handler.
19345         Parse SDP and create caps.
19346
19347 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
19348
19349         * gst/alpha/gstalpha.c:
19350           fix element description
19351
19352 2005-09-19  Wim Taymans  <wim@fluendo.com>
19353
19354         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
19355         Don't check payload for now.
19356
19357 2005-09-19  Wim Taymans  <wim@fluendo.com>
19358
19359         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
19360         (gst_wavparse_init), (gst_wavparse_parse_file_header),
19361         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
19362         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
19363         (gst_wavparse_loop), (gst_wavparse_pad_convert),
19364         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
19365         (gst_wavparse_change_state):
19366         * gst/wavparse/gstwavparse.h:
19367         Fix wavparse some more.
19368
19369 2005-09-19  Wim Taymans  <wim@fluendo.com>
19370
19371         * check/elements/level.c: (GST_START_TEST):
19372         Fix for bus API change.
19373
19374 2005-09-19  Wim Taymans  <wim@fluendo.com>
19375
19376         * gst/level/level-example.c: (main):
19377         Fix for new bus API.
19378
19379         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
19380         Set caps on pads.
19381
19382 2005-09-15  Wim Taymans  <wim@fluendo.com>
19383
19384         * gst/rtp/Makefile.am:
19385         * gst/rtp/README:
19386         * gst/rtp/gstrtp.c: (plugin_init):
19387         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
19388         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
19389         (gst_rtpamrdec_change_state):
19390         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
19391         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
19392         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
19393         * gst/rtp/gstrtpamrenc.h:
19394         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
19395         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
19396         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
19397         * gst/rtp/gstrtpgsmenc.h:
19398         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
19399         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
19400         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
19401         (gst_rtpgsmparse_change_state):
19402         * gst/rtp/gstrtpgsmparse.h:
19403         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
19404         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
19405         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
19406         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
19407         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
19408         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
19409         * gst/rtp/gstrtph263penc.h:
19410         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
19411         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
19412         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
19413         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
19414         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
19415         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
19416         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
19417         * gst/rtp/gstrtpmp4venc.h:
19418         * gst/rtp/gstrtpmpadec.c:
19419         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
19420         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
19421         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
19422         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
19423         * gst/rtp/gstrtpmpaenc.h:
19424         Updates to payloader/depayloaders, make payloaders use
19425         the base classes.
19426         Updated README with suggested RTP caps and how to convert
19427         to/from SDP.
19428         Added config descriptor in mp4v payloader.
19429
19430 2005-09-15  Andy Wingo  <wingo@pobox.com>
19431
19432         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
19433         * gst/autodetect/gstautovideosink.c
19434         (gst_auto_video_sink_find_best): Update for new registry API.
19435
19436 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19437
19438         * common/c-to-xml.py:
19439         * common/gtk-doc-plugins.mak:
19440           a simple py script to generate valid xml from a C example
19441           probably also need to strip an MIT license when we decide
19442         * docs/plugins/Makefile.am:
19443         * gst/level/Makefile.am:
19444         * gst/level/gstlevel.c: (gst_level_init):
19445         * gst/level/level-example.c: (message_handler), (main):
19446           add an example to level that will show up in the docs
19447         * gst/rtp/TODO:
19448           add a note for the future
19449
19450 2005-09-14  Michael Smith <msmith@fluendo.com>
19451
19452         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
19453           Actually define the debug object being used in wavenc. Fixes #316205
19454
19455 2005-09-14  Michael Smith <msmith@fluendo.com>
19456
19457         * gst/smpte/Makefile.am:
19458           Link against GST_BASE_LIBS, to get it linked against libgstbase;
19459           needed to build on windows (bug 316204)
19460
19461 2005-09-12  Andy Wingo  <wingo@pobox.com>
19462
19463         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
19464
19465 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
19466
19467         * configure.ac:
19468         * gst/fdsrc/Makefile.am:
19469         * gst/fdsrc/gstfdsrc.c:
19470         * gst/fdsrc/gstfdsrc.h:
19471           Move fdsrc back into gstreamer core elements.
19472
19473         * gst/level/gstlevel.c: (gst_level_class_init),
19474         (gst_level_transform_ip):
19475         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
19476           Basetransform changes.
19477
19478 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19479
19480         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
19481         * ext/jpeg/smokecodec.c: (find_best_size):
19482           fix compiler warnings
19483
19484 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19485
19486         * gst-plugins-good.spec.in:
19487           spec file fixes
19488         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
19489         (gst_multiudpsink_render), (gst_multiudpsink_add),
19490         (gst_multiudpsink_clear):
19491           it actually helps to actually stream if we hook up the
19492           "add" signal to an actual implementation
19493         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
19494           some debugging
19495
19496 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
19497
19498         * ext/jpeg/Makefile.am:
19499         * ext/jpeg/gstjpeg.c
19500         * ext/jpeg/gstjpegenc.c:
19501         * ext/jpeg/gstsmokeenc.c:
19502
19503 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
19504
19505         * ext/flac/gstflacdec.c:
19506         * ext/flac/gstflacenc.c:
19507         * ext/flac/gstflactag.c:
19508         * ext/speex/gstspeexenc.c:
19509           gsttaginterface.h -> gsttagsetter.h
19510
19511 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
19512
19513         * configure.ac:
19514         * gst/debug/Makefile.am:
19515         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
19516         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
19517         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
19518         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
19519         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
19520           Port to 0.9 and re-enable efence plugin.
19521
19522 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
19523
19524         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
19525         (gst_flacdec_write), (gst_flacdec_convert_src):
19526         * ext/flac/gstflacdec.h:
19527           Add support for flac files with 24/32 bits per sample; and misc.
19528           minor clean-ups. Seeking is still partly broken (for me at least).
19529
19530 2005-09-06  Wim Taymans  <wim@fluendo.com>
19531
19532         * gst/rtp/Makefile.am:
19533         * gst/rtp/gstrtp.c: (plugin_init):
19534         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
19535         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
19536         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
19537         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
19538         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
19539         (gst_rtpmp4vdec_plugin_init):
19540         * gst/rtp/gstrtpmp4vdec.h:
19541         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
19542         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
19543         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
19544         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
19545         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
19546         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
19547         * gst/rtp/gstrtpmp4venc.h:
19548         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
19549         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
19550         Added mpeg4 video payload encoder/decoder.
19551         Added some docs in mpa payloader.
19552
19553 === release 0.9.1 ===
19554
19555 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19556
19557         * NEWS:
19558         * README:
19559         * RELEASE:
19560         * autogen.sh:
19561         * configure.ac:
19562           releasing 0.9.1, "Blondie"
19563
19564 2005-09-05  Andy Wingo  <wingo@pobox.com>
19565
19566         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
19567         here from the state change handler, so we fire signals without
19568         holding the state lock.
19569
19570 2005-09-02  Andy Wingo  <wingo@pobox.com>
19571
19572         * All plugins updated for element state changes.
19573
19574 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19575
19576         * Makefile.am:
19577         * check/.cvsignore:
19578         * check/Makefile.am:
19579         * check/elements/.cvsignore:
19580         * check/elements/level.c: (setup_level), (cleanup_level),
19581         (GST_START_TEST), (level_suite), (main):
19582           add a test for level
19583         * common/release.mak:
19584           move the enum checking to release.mak
19585         * configure.ac:
19586           add valgrind and check checking
19587         * gst/level/gstlevel.c: (gst_level_transform):
19588         * gst/level/gstlevel.h:
19589           fix Andy's cast bug
19590           convert a field to int
19591           fix the arithmetic to int when checking for emit so that a
19592           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
19593
19594 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19595
19596         * Makefile.am:
19597         * configure.ac:
19598           add docs to build
19599         * common/plugins.xsl:
19600           wrap Description into a refsect2
19601         * docs/Makefile.am:
19602         * docs/plugins/Makefile.am:
19603         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19604         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19605         * gst/goom/Makefile.am:
19606         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
19607         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
19608         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
19609         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
19610         (gst_goom_change_state):
19611         * gst/goom/gstgoom.h:
19612           GstGOOM -> GstGoom
19613           add an example launch line
19614         * gst/level/gstlevel.h:
19615         * gst/monoscope/gstmonoscope.c:
19616           cleanups
19617
19618 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19619
19620         * configure.ac:
19621         * docs/plugins/Makefile.am:
19622         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
19623         * docs/plugins/gst-plugins-good-plugins-sections.txt:
19624         * docs/plugins/gst-plugins-good-plugins.types:
19625           document elements and plugins.  Shazam !
19626
19627 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
19628
19629         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
19630           be found under doc/random/ChangeLog-0.8