gst/speexresample/: Update Speex resampler with latest version from Speex GIT.
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
2
3         * gst/speexresample/README:
4         * gst/speexresample/arch.h:
5         * gst/speexresample/fixed_arm4.h:
6         * gst/speexresample/fixed_arm5e.h:
7         * gst/speexresample/fixed_bfin.h:
8         * gst/speexresample/fixed_debug.h:
9         * gst/speexresample/fixed_generic.h:
10         * gst/speexresample/resample.c: (compute_func), (main), (sinc),
11         (cubic_coef), (resampler_basic_direct_single),
12         (resampler_basic_direct_double),
13         (resampler_basic_interpolate_single),
14         (resampler_basic_interpolate_double), (update_filter),
15         (speex_resampler_init_frac), (speex_resampler_process_native),
16         (speex_resampler_magic), (speex_resampler_process_float),
17         (speex_resampler_process_int),
18         (speex_resampler_process_interleaved_float),
19         (speex_resampler_process_interleaved_int),
20         (speex_resampler_set_rate_frac), (speex_resampler_skip_zeros),
21         (speex_resampler_reset_mem):
22         * gst/speexresample/speex_resampler.h:
23         Update Speex resampler with latest version from Speex GIT.
24
25 2008-10-27  Michael Smith <msmith@songbirdnest.com>
26
27         * gst/aiffparse/aiffparse.c:
28         * gst/aiffparse/aiffparse.h:
29           Calculate width from depth correctly.
30           Read SSND header properly (fixes 24 bit AIFF reading).
31
32 2008-10-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
33
34         * ext/x264/gstx264enc.c: (gst_x264_enc_init_encoder):
35         Adapt to slightly modified x264 API.  Fixes #555238.
36
37 2008-10-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
38
39         * ext/faac/gstfaac.c: (gst_faac_sink_event):
40         Prevent endless loop if buffer alloc error.
41
42 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
43
44         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain),
45         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header),
46         (gst_flv_demux_create_index):
47         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_script),
48         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
49         (gst_flv_parse_tag_timestamp), (gst_flv_parse_tag_type),
50         (gst_flv_parse_header):
51         * gst/flv/gstflvparse.h:
52         Don't memcpy() all data we want to push downstream, instead just
53         create subbuffers and push them downstream.
54
55         Fix some minor memory leaks.
56
57 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
58
59         * configure.ac:
60         Require CVS of core for the last change.
61
62 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
63
64         * gst/flv/Makefile.am:
65         Fix (non-critical) syntax error and add all required CFLAGS and LIBS.
66
67         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
68         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
69         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
70         (gst_flv_parse_tag_timestamp), (gst_flv_parse_tag_type):
71         Rewrite the script tag parsing to make sure we don't try to read
72         more data than we have. Also use GST_READ_UINT24_BE directly and
73         fix some minor memory leaks.
74         This should make all crashes on fuzzed FLV files disappear.
75
76 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
77
78         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
79         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
80         (gst_flv_parse_tag_type), (gst_flv_parse_header):
81         Properly check everywhere that we have enough data to parse and
82         don't read outside the allocated memory region. 
83
84 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
85
86         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
87         (gst_flv_parse_tag_video):
88         If the caps change during playback and negotiation fails error out
89         instead of trying to continue.
90
91 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
92
93         * gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
94         (gst_flv_mux_request_new_pad), (gst_flv_mux_write_buffer),
95         (gst_flv_mux_collected):
96         * gst/flv/gstflvmux.h:
97         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate):
98         Add support for Speex audio and allow buffers without valid
99         timestamp in the muxer.
100
101 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
102
103         * gst/flv/gstflvdemux.c: (gst_flv_demux_loop),
104         (gst_flv_demux_find_offset), (gst_flv_demux_handle_seek_push),
105         (gst_flv_demux_handle_seek_pull):
106         Don't post an error message on the bus if sending EOS downstream
107         didn't work. Fixes bug #550454.
108
109         Fix seek event handling to look at the flags of the seek event
110         instead of assuming some random flags, don't send segment-start
111         messages when operating in push mode and push seek events upstream
112         if we couldn't handle them.
113
114 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
115
116         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag):
117         Error out early if pulling a tag failed.
118
119 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
120
121         * gst/flv/gstflvdemux.c: (gst_flv_demux_create_index),
122         (gst_flv_demux_loop):
123         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_script),
124         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
125         (gst_flv_parse_tag_timestamp):
126         * gst/flv/gstflvparse.h:
127         In pull mode we create our own index before doing anything else
128         and don't use the index provided by some files (which are more than
129         often incorrect and cause failed seeks).
130
131         For push mode we still use the index provided by the file and extend it
132         while doing the playback.
133
134 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
135
136         * gst/flv/gstflvdemux.c: (gst_flv_demux_push_src_event),
137         (gst_flv_demux_loop), (gst_flv_demux_handle_seek_pull),
138         (gst_flv_demux_sink_event):
139         Instead of using gst_pad_event_default() use a small
140         gst_pad_push_event() wrapper that only does what we want and is much
141         more simple.
142
143 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
144
145         * gst/flv/gstflvdemux.c: (gst_flv_demux_change_state),
146         (gst_flv_demux_set_index), (gst_flv_demux_init):
147         * gst/flv/gstflvdemux.h:
148         If our index was created by the element and not provided from the
149         outside we should destroy it when starting a new stream to get
150         all old entries removed.
151
152 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
153
154         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_range):
155         Improve debugging a bit when pulling a buffer from upstream fails.
156
157 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
158
159         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
160         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_dispose):
161         * gst/flv/gstflvdemux.h:
162         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
163         (gst_flv_parse_tag_video):
164         Close the currently playing segment from the streaming thread
165         instead of the thread where the seek event is handled.
166
167 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
168
169         Patch by: David Härdeman <david at hardeman dot nu>
170
171         * gst/mpegdemux/mpegtspacketizer.c: (mpegts_packetizer_parse_nit):
172         Add support for the frequency list descriptor, which provides
173         additional frequencies that should be scanned by a DVB application.
174         Fixes bug #557814.
175
176 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
177
178         Patch by: vanista <vanista at gmail dot com>
179
180         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_choose_best_stream):
181         Fix EOS logic by correctly popping the collect pad buffers only
182         when we've chosen to use them instead of popping them always and
183         storing them in a private queue.
184
185         Before the pipeline would deadlock if all pads go EOS at the same
186         time. Fixes bug #557763.
187
188 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
189
190         * configure.ac:
191         Back to development -> 0.10.9.1
192
193 === release 0.10.9 ===
194
195 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
196
197         * configure.ac:
198           releasing 0.10.9, "Matters of fact"
199
200 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
201
202         * configure.ac:
203         Commit 0.10.8.4 pre-release
204
205 2008-10-20  Edward Hervey  <edward.hervey@collabora.co.uk>
206
207         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data):
208         Fix reverse playback regression.
209         Fixes #557080
210
211 2008-10-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
212
213         * ext/apexsink/gstapexplugin.c: (plugin_init):
214           Set apexsink's rank to NONE so it doesn't get used by
215           autoaudiosink (there's no point really). (#556588)
216
217 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
218
219         * configure.ac:
220         0.10.8.3 pre-release
221
222 2008-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
223
224         Patch by: Josep Torra
225
226         * gst/mpegdemux/gstmpegtsdemux.c:
227         * gst/mpegdemux/gstmpegtsdemux.h:
228         Properly handle some resync cases in the optimised
229         buffering strategy.
230
231 2008-10-16  Michael Smith <msmith@songbirdnest.com>
232         * sys/acmenc/Makefile.am:
233           Remove incorrect use of DIRECTSOUND_LDFLAGS
234
235 2008-10-16  Sebastian Dröge  <slomo@circular-chaos.org>
236
237         * gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
238         (gst_flv_mux_write_buffer):
239         Don't set video_codec to the value that actually should go
240         into audio codec, otherwise we create invalid files.
241         Fixes bug #556564.
242
243 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
244
245         * tests/check/Makefile.am:
246         Leave apexsink out of the states test.
247
248 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
249
250         * gst/rtpmanager/gstrtpjitterbuffer.c:
251         (gst_jitter_buffer_sink_parse_caps),
252         (gst_rtp_jitter_buffer_flush_start),
253         (gst_rtp_jitter_buffer_flush_stop), (gst_rtp_jitter_buffer_chain),
254         (gst_rtp_jitter_buffer_loop):
255         Fix problem with using the output seqnum counter to check for input
256         seqnum discontinuities.
257         Improve gap detection and recovery, reset and flush the jitterbuffer on
258         seqnum restart. Fixes #556520.
259
260         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_insert):
261         Fix wrong G_LIKELY.
262
263 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
264
265         * configure.ac:
266         Commit 0.10.8.2 pre-release bump, that actually went out in a
267         tarball on 2008-10-11
268
269 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
270
271         * gst/rtpmanager/gstrtpsession.c:
272         (gst_rtp_session_event_send_rtcp_src), (create_send_rtcp_src):
273         Install event handler on the rtcp_src pad, make LATENCY event return
274         TRUE.
275
276 2008-10-16  Edward Hervey  <edward.hervey@collabora.co.uk>
277
278         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data):
279         Make sure the mpegpsdemux element creates valid newsegment events.
280         Fixes #556428
281
282 2008-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
283
284         patch by: Sebastian Pölsterl
285         
286         * gst/mpegdemux/mpegtspacketizer.c:
287         Fixes segfault in get_encoding_and_convert.
288         Fixes #556482
289
290 2008-10-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
291
292         patch by: Josep Torra
293
294         * gst/mpegdemux/gstmpegtsdemux.c:
295         Fixes a segfault in the adaptation buffer size strategy.
296         Fixes #556440
297
298 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
299
300         * gst/selector/gstinputselector.c: (gst_input_selector_event),
301         (gst_input_selector_query):
302         Gracefully handle the cases when we dont' have otherpad.
303         Fixes #556430
304
305 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
306
307         * gst/aiffparse/aiffparse.c: (plugin_init):
308         Fix debugging category initialization.
309         Fixes #556274   
310
311 2008-10-14  Jan Schmidt  <jan.schmidt@sun.com>
312
313         * ext/apexsink/gstapexsink.c:
314         Fix some more format string compiler warnings (from OS/X)
315
316 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
317
318         * ext/apexsink/gstapexraop.c: (gst_apexraop_connect),
319         (gst_apexraop_set_volume):
320         Fix format string compiler warnings.
321
322 2008-10-12  Jan Schmidt  <jan.schmidt@sun.com>
323
324         * sys/oss4/oss4-mixer.c:
325         * sys/oss4/oss4-sink.c:
326         * sys/oss4/oss4-source.c:
327         Add some spaces in translateable strings.
328         Fixes: #555969 #555968 #555965
329
330 2008-10-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
331
332         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag),
333         (gst_flv_demux_pull_header):
334         Fix regression of handling flow returns in pull mode.
335         Fixes bug #556003.
336
337 2008-10-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
338
339         * ext/Makefile.am:
340         Add apexsink to SUBDIRS. Fixes bug #555912.
341
342 2008-10-11  Jan Schmidt  <jan.schmidt@sun.com>
343
344         * tests/check/pipelines/metadata.c:
345         Make the metadata test not fail when jpegenc isn't available....
346         as it isn't here, because it's not in this module, and
347         therefore not in the plugin path when the check runs.
348
349 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
350
351         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
352         (gst_flv_parse_tag_video):
353         Use gst_pad_alloc_buffer_and_set_caps() to make sure we get
354         a buffer with caps that we can work with (i.e. the pad's caps).
355
356         Add non-keyframe video frames to the index too but without the
357         keyframe flag.
358
359         Add audio frames to the index only if we have no video stream.
360
361 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
362
363         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
364         (gst_flv_parse_tag_video):
365         Create pads from the pad templates, use fixed caps on them
366         and only activate them after the caps are set.
367
368 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
369
370         * configure.ac:
371         Disable flacparse for this release as it's too buggy.
372
373 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
374
375         * gst/flacparse/gstbaseparse.c (gst_base_parse_push_buffer),
376         (gst_base_parse_update_upstream_durations):
377         Fix compiler warning on OS/X about parameters not matching
378         the debug format string.
379
380 2008-10-09  Sebastian Dröge  <slomo@circular-chaos.org>
381
382         * gst/deinterlace2/tvtime/tomsmocomp.c:
383         (gst_deinterlace_method_tomsmocomp_class_init):
384         Fix unused variable compiler warning when not building
385         X86 assembly.
386
387 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
388
389         * gst/flv/gstflvdemux.c: (gst_flv_demux_loop):
390         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_timestamp):
391         * gst/flv/gstflvparse.h:
392         Get an approximate duration of the file by looking at the timestamp
393         of the last tag in pull mode. If we get (maybe better) duration from
394         metadata later we'll use that instead.
395
396 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
397
398         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_range),
399         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header):
400         Refactor _pull_range() logic with checks into a seperate function
401         to make things a bit more readable.
402
403 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
404
405         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain),
406         (gst_flv_demux_base_init):
407         Use gst_element_class_set_details_simple().
408
409         If we get GST_FLOW_NOT_LINKED in the parse loop but at least
410         one of the pads is linked continue the loop.
411
412 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
413
414         * ext/amrwb/gstamrwbenc.c:
415         * ext/amrwb/gstamrwbenc.h:
416           Pass the discont flag from the input buffer on to the output buffer in
417           the AMR encoder.
418
419 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
420
421         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate),
422         (gst_flv_parse_tag_audio), (gst_flv_parse_video_negotiate):
423         Correct caps for video codec id 5: It's On2 VP6 with alpha channel
424         which needs a different decoder and has different caps.
425
426         Add support for audio codec id 14, which is MP3 with 8kHz sampling
427         rate.
428
429         Fix endianness and signedness for raw audio codec ids.
430
431         Add support for alaw and mulaw audio.
432
433 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
434
435         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain):
436         Go out of the parse loop as soon as we get an error instead
437         of parsing until the GstAdapter is empty.
438
439         Add some explanations about the header and tag size.
440
441         Don't print synchronizing message if everything is fine.
442
443 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
444
445         * gst/flv/Makefile.am:
446         * gst/flv/gstflvdemux.c: (plugin_init):
447         * gst/flv/gstflvmux.c: (gst_flv_mux_base_init),
448         (gst_flv_mux_class_init), (gst_flv_mux_init),
449         (gst_flv_mux_finalize), (gst_flv_mux_reset),
450         (gst_flv_mux_handle_src_event), (gst_flv_mux_handle_sink_event),
451         (gst_flv_mux_video_pad_setcaps), (gst_flv_mux_audio_pad_setcaps),
452         (gst_flv_mux_request_new_pad), (gst_flv_mux_release_pad),
453         (gst_flv_mux_write_header), (gst_flv_mux_write_buffer),
454         (gst_flv_mux_collected), (gst_flv_mux_change_state):
455         * gst/flv/gstflvmux.h:
456         Add first version of a FLV muxer. The only missing feature is writing
457         of stream metadata.
458
459 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
460
461         * ext/amrwb/gstamrwbparse.c:
462         * ext/amrwb/gstamrwbparse.h:
463           Add flush seek handler. Taken from recent armnbparse changes.
464           Sync the code more and use #defines for HEADER.
465
466 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
467
468         * ext/amrwb/gstamrwbparse.c:
469         * ext/amrwb/gstamrwbparse.h:
470           Fix the duration query. Also set caps on the pads and buffers more
471           correctly. Taken from recent armnbparse changes.
472
473 2008-10-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
474
475         * gst/mpegdemux/gstmpegdemux.c:
476         * gst/mpegdemux/gstmpegtsdemux.c:
477         Add Fluendo to the Long Name.
478
479 2008-10-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
480
481         * configure.ac:
482         * gst-plugins-bad.spec.in:
483         * gst/mpegdemux/Makefile.am:
484         * gst/mpegdemux/flumpegdemux.c:
485         * gst/mpegdemux/gstmpegdesc.c:
486         * gst/mpegdemux/gstmpegdesc.h:
487         * gst/mpegdemux/mpegtspacketizer.c:
488         * gst/mpegdemux/mpegtspacketizer.h:
489         * gst/mpegdemux/mpegtsparse.c:
490         * gst/mpegdemux/mpegtsparse.h:
491         Move of mpegtsparse to mpegdemux.
492         Fixes #555193.
493
494 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
495
496         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data),
497         (gst_flups_demux_parse_pack_start):
498         Prevent a division by zero if last mux rate was zero.
499
500         If we're going to send a NEWSEGMENT event but the segment start
501         and the current buffer timestamp differ by more than a second we
502         will start the NEWSEGMENT at the buffer timestamp.
503
504         This fixes playback of the tv2-1_25.mpg file, which has 0 as first SCR
505         but the first PTS are around 1 hour and 40 minutes.
506
507         Fixes bug #553755.
508
509 2008-10-07  Jan Schmidt  <jan.schmidt@sun.com>
510
511         * ext/resindvd/resindvdsrc.c:
512         Fix next/prev chapter seeking at the beginning or end.
513         Use 64-bit scaling utility functions for converting MPEG
514         timestamps.
515
516 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
517
518         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
519
520         * gst/rtpmanager/gstrtpbin-marshal.list:
521         Add marshaller for new action signal.
522
523         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_get_internal_session),
524         (gst_rtp_bin_class_init):
525         * gst/rtpmanager/gstrtpbin.h:
526         Add action signal to retrieve the internal RTPSession object.
527
528         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
529         (gst_rtp_session_get_property), (gst_rtp_session_release_pad):
530         Add property to access the internal RTPSession object.
531
532         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
533         (check_collision):
534         * gst/rtpmanager/rtpsession.h:
535         Add action signal to retrieve an RTPSource object by SSRC. 
536         See #555396.
537
538 2008-10-07  Stefan Kost  <ensonic@users.sf.net>
539
540         * gst/selector/gstoutputselector.c:
541           Choose right pad for sending events. Fixes #555244
542
543 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
544
545         * gst/rtpmanager/gstrtpbin.c: (find_session_by_pad),
546         (free_session), (gst_rtp_bin_dispose), (remove_recv_rtp),
547         (remove_recv_rtcp), (remove_send_rtp), (remove_rtcp),
548         (gst_rtp_bin_release_pad):
549         Release pads of the session manager.
550         Start implementing releasing pads of gstrtpbin.
551
552         * gst/rtpmanager/gstrtpsession.c: (remove_recv_rtp_sink),
553         (remove_recv_rtcp_sink), (remove_send_rtp_sink),
554         (remove_send_rtcp_src), (gst_rtp_session_release_pad):
555         Implement releasing pads in gstrtpsession.
556
557 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
558
559         * gst/rtpmanager/gstrtpjitterbuffer.c:
560         (gst_jitter_buffer_sink_parse_caps):
561         Only update the seqnum-base when it was not already configured for the
562         streams.
563
564 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
565
566         * configure.ac
567         * ext/metadata/README:
568         * ext/metadata/metadataexif.c:
569         * ext/metadata/metadatatags.c:
570         * ext/metadata/metadatatags.h:
571           Start using core geo tags (bump req). Fix handling of location
572           references.
573
574         * tests/check/Makefile.am:
575           Sort blacklisted elements and remove moved ones. Add new test.
576
577         * tests/check/pipelines/metadata.c:
578           Add first tests for metadata element.
579
580         * tests/icles/metadata_editor.c:
581           Move free to correct place.
582
583 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
584
585         * tests/check/generic/states.c:
586           Stop test on state-change error. Should be applied on other modules if
587           we agree that it makes sense.
588
589 2008-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
590
591         * gst/mpegtsparse/mpegtsparse.c:
592         Actually copy the structure passed in when assigning it because
593         it gets freed straight after the function call.
594         Re: pat_info and pmt_info GstStructures.
595
596 2008-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
597
598         Patch by: Josep Torra
599
600         * gst/mpegdemux/gstmpegtsdemux.c:
601         Fix wrong firing of critical introduced by previous optimisation.
602
603 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
604
605         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad):
606         Warn and clamp to max bitrate for samplerate.
607         Fixes #550486.
608
609 2008-10-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
610
611         * gst/mpegtsparse/mpegtsparse.c:
612         Fix possible crash where pat is pointing to a freed structure.
613
614 2008-10-03  Stefan Kost  <ensonic@users.sf.net>
615
616         * ext/metadata/README:
617         * ext/metadata/metadataexif.c:
618         * ext/metadata/metadatatags.c:
619         * ext/metadata/metadatatags.h:
620           Use core gps tags.
621
622 2008-10-03  Stefan Kost  <ensonic@users.sf.net>
623
624         * ext/metadata/metadata_mapping.htm:
625         * ext/metadata/metadataxmp.c:
626         * ext/metadata/Makefile.am:
627           Add mapping of format and mime type to xmp.
628
629 2008-10-02  Stefan Kost  <ensonic@users.sf.net>
630
631         * ext/metadata/README:
632         * ext/metadata/metadataexif.c:
633         * ext/metadata/metadatatags.c:
634         * ext/metadata/metadatatags.h:
635           Reverting. Will need to wait for core 0.10.21 release.
636
637 2008-10-02  Stefan Kost  <ensonic@users.sf.net>
638
639         * ext/metadata/README:
640         * ext/metadata/metadataexif.c:
641         * ext/metadata/metadatatags.c:
642         * ext/metadata/metadatatags.h:
643           Use core gps tags.
644
645 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
646
647         * gst/flacparse/gstbaseparse.c: (gst_base_parse_finalize),
648         (gst_base_parse_class_init), (gst_base_parse_push_buffer),
649         (gst_base_parse_change_state), (gst_base_parse_set_index),
650         (gst_base_parse_get_index):
651         Add support for GstIndex.
652
653 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
654
655         * gst/flacparse/gstbaseparse.c: (gst_base_parse_class_init),
656         (gst_base_parse_push_buffer),
657         (gst_base_parse_update_upstream_durations),
658         (gst_base_parse_convert), (gst_base_parse_frame_in_segment):
659         * gst/flacparse/gstbaseparse.h:
660         Provide a vfunc for the subclass to decide whether a frame is inside
661         the segment or not and add a default implementation.
662
663         Fix approximate bitrate calculations.
664
665 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
666
667         * gst/flacparse/gstbaseparse.c: (gst_base_parse_class_init),
668         (gst_base_parse_init), (gst_base_parse_push_buffer),
669         (gst_base_parse_update_upstream_durations), (gst_base_parse_chain),
670         (gst_base_parse_loop), (gst_base_parse_activate),
671         (gst_base_parse_convert), (gst_base_parse_query):
672         Approximate the average bitrate, duration and size if possible
673         and add a default conversion function which uses this for
674         time<->byte conversions.
675
676         * gst/flacparse/gstflacparse.c: (gst_flac_parse_get_frame_size):
677         Fix parsing if upstream gives -1 as duration.
678
679 2008-09-30  Wim Taymans  <wim.taymans@collabora.co.uk>
680
681         * gst/rtpmanager/rtpsession.c: (on_new_ssrc), (on_ssrc_collision),
682         (on_ssrc_validated), (on_ssrc_active), (on_ssrc_sdes),
683         (on_bye_ssrc), (on_bye_timeout), (on_timeout), (on_sender_timeout):
684         Ref the rtpsource object before we release the session lock when we emit
685         the signals.
686
687 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
688
689         * sys/Makefile.am:
690         * sys/wasapi/Makefile.am:
691         * sys/wasapi/gstwasapi.c:
692         * sys/wasapi/gstwasapisink.c:
693         * sys/wasapi/gstwasapisink.h:
694         * sys/wasapi/gstwasapisrc.c:
695         * sys/wasapi/gstwasapisrc.h:
696         * sys/wasapi/gstwasapiutil.c:
697         * sys/wasapi/gstwasapiutil.h:
698         New plugin for audio capture and playback using Windows Audio Session
699         API (WASAPI) available with Vista and newer (#520901).
700
701         Comes with hardcoded caps and obviously needs lots of love. Haven't
702         had time to work on this code since it was written, was initially just
703         a quick experiment to play around with this new API.
704
705 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
706
707         * sys/dshowdecwrapper/gstdshowaudiodec.cpp
708           (AudioFakeSink.DoRenderSample):
709         Fix a couple of signed/unsigned comparison warnings.
710
711 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
712
713         * sys/dshowdecwrapper/gstdshowaudiodec.h (AudioFakeSink.AudioFakeSink):
714         * sys/dshowdecwrapper/gstdshowvideodec.h (VideoFakeSink.VideoFakeSink):
715         Use the _T() macro to support both Unicode and MBCS.
716
717 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
718
719         * ext/libmms/gstmms.c (plugin_init):
720         Fix return type of the GstURIHandler::get_type() implementation.
721
722 2008-09-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
723
724         * configure.ac:
725         * gst/flacparse/Makefile.am:
726         * gst/flacparse/gstbaseparse.c: (gst_base_parse_get_type),
727         (gst_base_parse_base_init), (gst_base_parse_base_finalize),
728         (gst_base_parse_finalize), (gst_base_parse_class_init),
729         (gst_base_parse_init), (gst_base_parse_check_frame),
730         (gst_base_parse_parse_frame), (gst_base_parse_bytepos_to_time),
731         (gst_base_parse_sink_event), (gst_base_parse_sink_eventfunc),
732         (gst_base_parse_src_event), (gst_base_parse_src_eventfunc),
733         (gst_base_parse_is_seekable), (gst_base_parse_push_buffer),
734         (gst_base_parse_handle_and_push_buffer), (gst_base_parse_drain),
735         (gst_base_parse_chain), (gst_base_parse_pull_range),
736         (gst_base_parse_loop), (gst_base_parse_sink_activate),
737         (gst_base_parse_activate), (gst_base_parse_sink_activate_push),
738         (gst_base_parse_sink_activate_pull), (gst_base_parse_set_duration),
739         (gst_base_parse_set_min_frame_size),
740         (gst_base_parse_get_querytypes), (gst_base_parse_query),
741         (gst_base_parse_handle_seek), (gst_base_parse_sink_setcaps):
742         * gst/flacparse/gstbaseparse.h:
743         * gst/flacparse/gstbitreader.c: (gst_bit_reader_new),
744         (gst_bit_reader_new_from_buffer), (gst_bit_reader_free),
745         (gst_bit_reader_init), (gst_bit_reader_init_from_buffer),
746         (gst_bit_reader_set_pos), (gst_bit_reader_get_pos),
747         (gst_bit_reader_get_remaining), (gst_bit_reader_skip),
748         (gst_bit_reader_skip_to_byte):
749         * gst/flacparse/gstbitreader.h:
750         * gst/flacparse/gstbytereader.c: (GDOUBLE_SWAP_LE_BE),
751         (GFLOAT_SWAP_LE_BE), (gst_byte_reader_new),
752         (gst_byte_reader_new_from_buffer), (gst_byte_reader_free),
753         (gst_byte_reader_init), (gst_byte_reader_init_from_buffer),
754         (gst_byte_reader_set_pos), (gst_byte_reader_get_pos),
755         (gst_byte_reader_get_remaining), (gst_byte_reader_skip),
756         (gst_byte_reader_get_uint8), (gst_byte_reader_get_int8),
757         (gst_byte_reader_peek_uint8), (gst_byte_reader_peek_int8),
758         (gst_byte_reader_get_uint24_le), (gst_byte_reader_get_uint24_be),
759         (gst_byte_reader_get_int24_le), (gst_byte_reader_get_int24_be),
760         (gst_byte_reader_peek_uint24_le), (gst_byte_reader_peek_uint24_be),
761         (gst_byte_reader_peek_int24_le), (gst_byte_reader_peek_int24_be):
762         * gst/flacparse/gstbytereader.h:
763         * gst/flacparse/gstflac.c: (plugin_init):
764         * gst/flacparse/gstflacparse.c: (gst_flac_parse_base_init),
765         (gst_flac_parse_class_init), (gst_flac_parse_init),
766         (gst_flac_parse_finalize), (gst_flac_parse_start),
767         (gst_flac_parse_stop), (gst_flac_parse_get_frame_size),
768         (gst_flac_parse_check_valid_frame),
769         (gst_flac_parse_handle_streaminfo),
770         (gst_flac_parse_handle_vorbiscomment),
771         (gst_flac_parse_handle_picture), (_value_array_append_buffer),
772         (gst_flac_parse_handle_headers), (gst_flac_parse_generate_headers),
773         (gst_flac_parse_parse_frame):
774         * gst/flacparse/gstflacparse.h:
775         Add FLAC parser, based on GstBaseParse. Also add the bit and byte reader
776         that will be added to libgstbase later.
777
778         The FLAC parser is currently not 100% bug free and fails to get the
779         correct frame size for some frames in some streams.
780
781 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
782
783         * ext/resindvd/gstmpegdemux.c:
784         * ext/resindvd/gstmpegdemux.h:
785         * ext/resindvd/resindvdbin.c:
786         * ext/resindvd/resindvdsrc.c:
787         * ext/resindvd/rsnstreamselector.c:
788         Add in Title/Chapter seeking, and simple but buggy audio
789         and subtitle stream selection.
790
791 2008-09-24  Michael Smith <msmith@songbirdnest.com>
792
793         * sys/dshowdecwrapper/gstdshowaudiodec.cpp:
794         * sys/dshowdecwrapper/gstdshowaudiodec.h:
795         * sys/dshowdecwrapper/gstdshowfakesrc.cpp:
796         * sys/dshowdecwrapper/gstdshowutil.cpp:
797         * sys/dshowdecwrapper/gstdshowutil.h:
798         * sys/dshowdecwrapper/gstdshowvideodec.cpp:
799         * sys/dshowdecwrapper/gstdshowvideodec.h:
800           Prefer known-good filters, create directly by GUID if possible,
801           fall back to creating highest-merit filter otherwise.
802           Fixes playback with random dshow filters installed in some
803           cases.
804
805 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
806
807         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_insert),
808         (rtp_jitter_buffer_get_sync):
809         * gst/rtpmanager/rtpsession.c: (on_sender_timeout),
810         (session_cleanup):
811         * gst/rtpmanager/rtpsource.c:
812         Fix some docs.
813
814 2008-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
815
816         Patch from: Josep Torra
817
818         * gst/mpegdemux/gstmpegtsdemux.c:
819         * gst/mpegdemux/gstmpegtsdemux.h:
820         Use a preallocated buffer per stream for PES packets sent on src pads.
821         Adaptively adjust buffer size appropriately.
822
823 2008-09-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
824
825         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start),
826           (gst_neonhttp_src_send_request_and_redirect):
827           Clean up the debug logging code and #ifdef mess a bit: whether or not
828           gstreamer debug messages should be output should not depend on an
829           element property; also, GST_ELEMENT_ERROR will leave a line in the log
830           already, so merge the more useful debug log messages with the less useful
831           error debug strings.
832
833 2008-09-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
834
835         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start):
836           Don't post LIBRARY_INIT errors where we should be posting
837           RESOURCE OPEN_READ errors. Fixes #552506.
838
839 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
840
841         * ext/jack/gstjackaudiosink.c: (jack_process_cb):
842         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
843         Fix compiler warnings on OS/X
844
845 2008-09-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
846
847         patch by: Michael Krufky
848
849         * sys/dvb/gstdvbsrc.c:
850         Add adapter_name for bus message in ATSC case. Fixes #552536.
851
852 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
853
854         * ext/celt/gstceltenc.h:
855           Help gtk-doc to parse this correctly.
856
857         * gst/pcapparse/gstpcapparse.c:
858           Add missing include.
859
860 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
861
862         * examples/Makefile.am:
863           Only built scaletempo example if we have gtk.
864
865 2008-09-13  Wim Taymans  <wim.taymans@collabora.co.uk>
866
867         * gst/rtpmanager/gstrtpbin.c: (create_session),
868         (gst_rtp_bin_associate), (gst_rtp_bin_sync_chain):
869         Do not try to adjust the offset of streams for which we have not yet
870         seen an SR packet. Avoids large ts-offsets in some cases.
871
872 2008-09-10  Michael Smith <msmith@songbirdnest.com>
873
874         * sys/dshowdecwrapper/Makefile.am:
875         * sys/dshowdecwrapper/gstdshowaudiodec.c:
876         * sys/dshowdecwrapper/gstdshowaudiodec.cpp:
877         * sys/dshowdecwrapper/gstdshowaudiodec.h:
878         * sys/dshowdecwrapper/gstdshowdecwrapper.c:
879         * sys/dshowdecwrapper/gstdshowdecwrapper.cpp:
880         * sys/dshowdecwrapper/gstdshowdecwrapper.h:
881         * sys/dshowdecwrapper/gstdshowfakesrc.cpp:
882         * sys/dshowdecwrapper/gstdshowfakesrc.h:
883         * sys/dshowdecwrapper/gstdshowutil.cpp:
884         * sys/dshowdecwrapper/gstdshowutil.h:
885         * sys/dshowdecwrapper/gstdshowvideodec.c:
886         * sys/dshowdecwrapper/gstdshowvideodec.cpp:
887         * sys/dshowdecwrapper/gstdshowvideodec.h:
888           Major rewrite of dshowdecwrapper. Converts code to
889           C++, moves to direct use of DirectShow base classes,
890           make a lot of code clearer, simplify, etc.
891           Fix decode of MP3 on Vista by working around an apparent
892           bug in the decoder.
893
894 2008-09-10  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
895
896         * sys/winks/gstksclock.c (gst_ks_clock_worker_thread_func,
897           gst_ks_clock_start):
898           Synchronize KS clock as a single-shot operation for now, there's not
899           much point in doing it periodically until we're actually using the
900           KS timestamps for anything else than just discarding old frames.
901         * sys/winks/gstksvideosrc.c (gst_ks_video_src_open_device):
902           Provide the GstClock when opening the device if we already have one.
903
904 2008-09-10  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
905
906         * sys/winks/gstksvideodevice.c (GST_DEBUG_IS_ENABLED, last_timestamp,
907           gst_ks_video_device_prepare_buffers, gst_ks_video_device_create_pin,
908           gst_ks_video_device_set_state, gst_ks_video_device_request_frame,
909           gst_ks_video_device_read_frame):
910           Guard against capturing old frames by keeping track of the last
911           timestamp and also zero-fill the buffers before each capture.
912           Only assign a master clock if the pin hasn't already got one.
913           Actually free buffers on the way down to avoid a huge memory leak,
914           as this was previously done when changing state to ACQUIRE downwards
915           and we now skip that state on the way down.
916           Add some debug.
917         * sys/winks/gstksvideosrc.c (DEFAULT_DEVICE_PATH, DEFAULT_DEVICE_NAME,
918           DEFAULT_DEVICE_INDEX, KS_WORKER_LOCK, KS_WORKER_UNLOCK,
919           KS_WORKER_WAIT, KS_WORKER_NOTIFY, KS_WORKER_WAIT_FOR_RESULT,
920           KS_WORKER_NOTIFY_RESULT, KS_WORKER_STATE_STARTING,
921           KS_WORKER_STATE_READY, KS_WORKER_STATE_STOPPING,
922           KS_WORKER_STATE_ERROR, KsWorkerState, device_path, device_name,
923           device_index, running, worker_thread, worker_lock,
924           worker_notify_cond, worker_result_cond, worker_state,
925           worker_pending_caps, worker_setcaps_result, worker_pending_run,
926           worker_run_result, gst_ks_video_src_reset,
927           gst_ks_video_src_apply_driver_quirks, gst_ks_video_src_open_device,
928           gst_ks_video_src_close_device, gst_ks_video_src_worker_func,
929           gst_ks_video_src_start_worker, gst_ks_video_src_stop_worker,
930           gst_ks_video_src_change_state, gst_ks_video_src_set_clock,
931           gst_ks_video_src_set_caps, gst_ks_video_src_timestamp_buffer,
932           gst_ks_video_src_create):
933           Remove ENABLE_CLOCK_DEBUG define, it's GST_LEVEL_DEBUG after all.
934           Get rid of PROP_ENSLAVE_KSCLOCK and always slave the ks clock to the
935           GStreamer clock, it doesn't seem to hurt and matches DirectShow's
936           behavior. As an added bonus we usually get PresentationTime set for
937           each frame, so we can expand on this later for smarter latency
938           reporting (by looking at the diff between the timestamp from the
939           driver and the time according to the GStreamer clock).
940           Use an internal worker thread for opening the device, setting caps,
941           changing its state and closing it. This way we're a lot more
942           compatible with drivers that rely on hacks to do video-effects
943           between the low-level NT API and the application. Ick.
944           Start the ks clock and set the pin to KSSTATE_RUN on the first
945           create() so that we'll hopefully get hold of the GStreamer clock
946           from the very beginning. This way there's no chance that the
947           timestamps will make a sudden jump in the beginning of the stream
948           when we're running with a clock.
949         * sys/winks/kshelpers.c (CHECK_OPTIONS_FLAG,
950           ks_options_flags_to_string):
951           Reorder the flags to match the headerfile order, and make the string
952           a bit more compact.
953         * sys/winks/ksvideohelpers.c (ks_video_probe_filter_for_caps):
954           Avoid leaking KSPROPERTY_PIN_DATARANGES.
955
956 2008-09-09  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
957
958         * configure.ac:
959         * ext/Makefile.am:
960         * ext/jp2k/Makefile.am:
961         * ext/jp2k/gstjasperdec.c: (gst_jasper_dec_base_init),
962         (gst_jasper_dec_class_init), (gst_jasper_dec_init),
963         (gst_jasper_dec_reset), (gst_jasper_dec_sink_setcaps),
964         (gst_jasper_dec_negotiate), (gst_jasper_dec_get_picture),
965         (gst_jasper_dec_chain), (gst_jasper_dec_set_property),
966         (gst_jasper_dec_get_property), (gst_jasper_dec_change_state),
967         (plugin_init):
968         * ext/jp2k/gstjasperdec.h:
969         Add jp2k plugin.  Fixes #550657.
970
971 2008-09-09  Edward Hervey  <edward.hervey@collabora.co.uk>
972
973         * gst/mpegdemux/flumpegdemux.c: (plugin_init):
974         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_sync_get_type),
975         (gst_flups_demux_get_type), (gst_flups_demux_plugin_init):
976         * gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_get_type),
977         (gst_fluts_demux_plugin_init):
978         Fix conflicting public names in new mpeg demuxers.
979         Fixes #550468
980
981 2008-09-08  Michael Smith <msmith@songbirdnest.com>
982
983         * gst/aiffparse/aiffparse.c:
984           Support chunks in AIFF in any order in pull mode, and any order so
985           long as we get COMM before the actual data (SSND) in push mode.
986           Fixes playback of AIFC files.
987
988 2008-09-08  Wim Taymans  <wim.taymans@collabora.co.uk>
989
990         * gst/selector/gstinputselector.c: (gst_selector_pad_reset),
991         (gst_input_selector_reset), (gst_input_selector_change_state):
992         Reset the selector state when going to READY.
993
994 2008-09-05  Wim Taymans  <wim.taymans@collabora.co.uk>
995
996         * gst/rtpmanager/gstrtpbin.c: (on_sender_timeout),
997         (create_session), (gst_rtp_bin_associate),
998         (gst_rtp_bin_sync_chain), (gst_rtp_bin_class_init),
999         (gst_rtp_bin_request_new_pad):
1000         * gst/rtpmanager/gstrtpbin.h:
1001         Add signal to notify listeners when a sender becomes a receiver.
1002         Tweak lip-sync code, don't store our own copy of the ts-offset of the
1003         jitterbuffer, don't adjust sync if the change is less than 4msec.
1004         Get the RTP timestamp <-> GStreamer timestamp relation directly from
1005         the jitterbuffer instead of our inaccurate version from the source.
1006
1007         * gst/rtpmanager/gstrtpjitterbuffer.c:
1008         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop),
1009         (gst_rtp_jitter_buffer_get_sync):
1010         * gst/rtpmanager/gstrtpjitterbuffer.h:
1011         Add G_LIKELY macros, use global defines for max packet reorder and
1012         dropouts.
1013         Reset the jitterbuffer clock skew detection when packets seqnums are
1014         changed unexpectedly.
1015
1016         * gst/rtpmanager/gstrtpsession.c: (on_sender_timeout),
1017         (gst_rtp_session_class_init), (gst_rtp_session_init):
1018         * gst/rtpmanager/gstrtpsession.h:
1019         Add sender timeout signal.
1020
1021         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_reset_skew),
1022         (calculate_skew), (rtp_jitter_buffer_insert),
1023         (rtp_jitter_buffer_get_sync):
1024         * gst/rtpmanager/rtpjitterbuffer.h:
1025         Add some G_LIKELY macros.
1026         Keep track of the extended RTP timestamp so that we can report the RTP
1027         timestamp <-> GStreamer timestamp relation for lip-sync.
1028         Remove server timestamp gap detection code, the server can sometimes
1029         make a huge gap in timestamps (talk spurts,...) see #549774.
1030         Detect timetamp weirdness instead by observing the sender/receiver
1031         timestamp relation and resync if it changes more than 1 second.
1032         Add method to report about the current rtp <-> gst timestamp relation
1033         which is needed for lip-sync.
1034
1035         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
1036         (on_sender_timeout), (check_collision), (rtp_session_process_sr),
1037         (session_cleanup):
1038         * gst/rtpmanager/rtpsession.h:
1039         Add sender timeout signal.
1040         Remove inaccurate rtp <-> gst timestamp relation code, the
1041         jitterbuffer can now do an accurate reporting about this.
1042
1043         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
1044         (rtp_source_update_caps), (calculate_jitter),
1045         (rtp_source_process_rtp):
1046         * gst/rtpmanager/rtpsource.h:
1047         Remove inaccurate rtp <-> gst timestamp relation code.
1048
1049         * gst/rtpmanager/rtpstats.h:
1050         Define global max-reorder and max-dropout constants for use in various
1051         subsystems.
1052
1053 2008-09-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1054
1055         patch by: Sebastian Pölsterl
1056
1057         * sys/dvb/gstdvbsrc.c:
1058         Add DVB Adapter name to structure sent over bus.
1059
1060 2008-09-02  Edward Hervey  <edward.hervey@collabora.co.uk>
1061
1062         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_parse_pack_start):
1063         * gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_data_cb):
1064         Fix build on macosx.
1065
1066 2008-09-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1067
1068         * configure.ac:
1069         * gst/mpegdemux/Makefile.am:
1070         * gst/mpegdemux/flumpegdemux.c:
1071         * gst/mpegdemux/flutspatinfo.c:
1072         * gst/mpegdemux/flutspatinfo.h:
1073         * gst/mpegdemux/flutspmtinfo.c:
1074         * gst/mpegdemux/flutspmtinfo.h:
1075         * gst/mpegdemux/flutspmtstreaminfo.c:
1076         * gst/mpegdemux/flutspmtstreaminfo.h:
1077         * gst/mpegdemux/gstmpegdefs.h:
1078         * gst/mpegdemux/gstmpegdemux.c:
1079         * gst/mpegdemux/gstmpegdemux.h:
1080         * gst/mpegdemux/gstmpegdesc.c:
1081         * gst/mpegdemux/gstmpegdesc.h:
1082         * gst/mpegdemux/gstmpegtsdemux.c:
1083         * gst/mpegdemux/gstmpegtsdemux.h:
1084         * gst/mpegdemux/gstpesfilter.c:
1085         * gst/mpegdemux/gstpesfilter.h:
1086         * gst/mpegdemux/gstsectionfilter.c:
1087         * gst/mpegdemux/gstsectionfilter.h:
1088         Add Fluendo MPEG PS and TS demuxers to gst-plugins-bad. This
1089         is now dual licensed MPL and LGPL.
1090
1091 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1092
1093         * gst/mpegtsmux/mpegtsmux.c: (new_packet_cb):
1094         Set caps on outgoing buffers.
1095
1096 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1097
1098         * ext/resindvd/plugin.c: (plugin_init):
1099         * ext/resindvd/resindvdsrc.c:
1100         * ext/twolame/gsttwolame.c: (plugin_init):
1101         * gst/aiffparse/aiffparse.c: (plugin_init):
1102           Enable/fix up translations for these plugins.
1103
1104         * po/LINGUAS:
1105           Add 'ca' to LINGUAS.
1106
1107         * po/POTFILES.in:
1108         * po/POTFILES.skip:
1109           Add more files for translation and more files which tools
1110           should skip.
1111
1112 2008-09-02  Edward Hervey  <edward.hervey@collabora.co.uk>
1113
1114         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_write_ts_header):
1115         Fix build on macosx.
1116
1117 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1118
1119         * gst/mpegtsmux/mpegtsmux_aac.c: (mpegtsmux_prepare_aac):
1120         Allocate a fixed size buffer on the stack instead of using malloc().
1121
1122         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_new), (tsmux_free),
1123         (tsmux_program_new), (tsmux_program_free):
1124         * gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
1125         (tsmux_stream_free), (tsmux_stream_consume),
1126         (tsmux_stream_add_data):
1127         Use GSlice.
1128
1129 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1130
1131         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_create_stream):
1132         Add support for muxing MPEG4 video.
1133
1134 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
1135
1136         * gst/mpegtsmux/tsmux/tsmux.h:
1137         * gst/mpegtsmux/tsmux/tsmuxstream.h:
1138         Fix build of mpegtsmux.
1139         
1140 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1141
1142         * configure.ac:
1143         * gst/mpegtsmux/Makefile.am:
1144         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_base_init),
1145         (mpegtsmux_class_init), (mpegtsmux_init), (mpegtsmux_dispose),
1146         (gst_mpegtsmux_set_property), (gst_mpegtsmux_get_property),
1147         (release_buffer_cb), (mpegtsmux_create_stream),
1148         (mpegtsmux_create_streams), (mpegtsmux_choose_best_stream),
1149         (mpegtsmux_collected), (mpegtsmux_request_new_pad),
1150         (mpegtsmux_release_pad), (new_packet_cb),
1151         (mpegtsdemux_prepare_srcpad), (mpegtsmux_change_state),
1152         (plugin_init):
1153         * gst/mpegtsmux/mpegtsmux.h:
1154         * gst/mpegtsmux/mpegtsmux_aac.c: (mpegtsmux_prepare_aac):
1155         * gst/mpegtsmux/mpegtsmux_aac.h:
1156         * gst/mpegtsmux/mpegtsmux_h264.c: (mpegtsmux_prepare_h264):
1157         * gst/mpegtsmux/mpegtsmux_h264.h:
1158         * gst/mpegtsmux/tsmux/Makefile.am:
1159         * gst/mpegtsmux/tsmux/crc.h:
1160         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_new), (tsmux_set_write_func),
1161         (tsmux_set_pat_frequency), (tsmux_get_pat_frequency), (tsmux_free),
1162         (tsmux_program_new), (tsmux_set_pmt_frequency),
1163         (tsmux_get_pmt_frequency), (tsmux_program_add_stream),
1164         (tsmux_program_set_pcr_stream), (tsmux_get_new_pid),
1165         (tsmux_create_stream), (tsmux_find_stream), (tsmux_packet_out),
1166         (tsmux_write_adaptation_field), (tsmux_write_ts_header),
1167         (tsmux_write_stream_packet), (tsmux_program_free),
1168         (tsmux_write_section), (tsmux_write_section_hdr),
1169         (tsmux_write_pat), (tsmux_write_pmt):
1170         * gst/mpegtsmux/tsmux/tsmux.h:
1171         * gst/mpegtsmux/tsmux/tsmuxcommon.h:
1172         * gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
1173         (tsmux_stream_get_pid), (tsmux_stream_free),
1174         (tsmux_stream_set_buffer_release_func), (tsmux_stream_consume),
1175         (tsmux_stream_at_pes_start), (tsmux_stream_bytes_avail),
1176         (tsmux_stream_bytes_in_buffer), (tsmux_stream_get_data),
1177         (tsmux_stream_pes_header_length),
1178         (tsmux_stream_find_pts_dts_within),
1179         (tsmux_stream_write_pes_header), (tsmux_stream_add_data),
1180         (tsmux_stream_get_es_descrs), (tsmux_stream_pcr_ref),
1181         (tsmux_stream_pcr_unref), (tsmux_stream_is_pcr),
1182         (tsmux_stream_get_pts):
1183         * gst/mpegtsmux/tsmux/tsmuxstream.h:
1184         Add Fluendo MPEG-TS muxer and libtsmux to gst-plugins-bad. This
1185         is renamed to mpegtsmux to prevent conflicts. Also all relevant
1186         informations about copyright and license are added to the top of
1187         every file but apart from that no changes compared to the latest
1188         SVN versions happened.
1189
1190 2008-09-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1191
1192         * gst/selector/gstinputselector.c: (gst_input_selector_init),
1193         (gst_input_selector_event), (gst_input_selector_query):
1194         Reuse the get_linked_pads for both source and sinkpads because they are
1195         the same.
1196         Implement a custum event handler and get the internally linked pad
1197         directly instead of relying on the default (slower) implementation.
1198
1199 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1200
1201         * ext/celt/gstceltdec.c: (celt_dec_chain_parse_data):
1202         Correctly take the granulepos from upstream if possible and
1203         correctly handle the granulepos in various calculations: the
1204         granulepos is the sample number of the _last_ sample in a frame, not
1205         the first. 
1206
1207         * ext/celt/gstceltenc.c: (gst_celt_enc_sinkevent),
1208         (gst_celt_enc_encode), (gst_celt_enc_chain),
1209         (gst_celt_enc_change_state):
1210         * ext/celt/gstceltenc.h:
1211         Handle non-zero start timestamps in the encoder and detect/handle
1212         stream discontinuities. Fixes bug #547075.
1213
1214 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1215
1216         Patch by: Rov Juvano <rovjuvano at users dot sourceforge dot net>
1217
1218         * configure.ac:
1219         * docs/plugins/Makefile.am:
1220         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1221         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1222         * docs/plugins/inspect/plugin-scaletempo.xml:
1223         * examples/scaletempo/Makefile.am:
1224         * examples/scaletempo/demo-gui.c: (pop_status_bar),
1225         (status_bar_printf), (demo_gui_seek_bar_format), (update_position),
1226         (demo_gui_seek_bar_change), (demo_gui_do_change_rate),
1227         (demo_gui_do_set_rate), (demo_gui_do_rate_entered),
1228         (demo_gui_do_toggle_advanced), (demo_gui_do_toggle_disabled),
1229         (demo_gui_do_seek), (demo_gui_do_play), (demo_gui_do_pause),
1230         (demo_gui_do_play_pause), (demo_gui_do_open_file),
1231         (demo_gui_do_playlist_prev), (demo_gui_do_playlist_next),
1232         (demo_gui_do_about_dialog), (demo_gui_do_quit),
1233         (demo_gui_request_set_stride), (demo_gui_request_set_overlap),
1234         (demo_gui_request_set_search), (demo_gui_rate_changed),
1235         (demo_gui_playing_started), (demo_gui_playing_paused),
1236         (demo_gui_playing_ended), (demo_gui_player_errored),
1237         (demo_gui_stride_changed), (demo_gui_overlap_changed),
1238         (demo_gui_search_changed), (demo_gui_set_player_func),
1239         (demo_gui_set_playlist_func), (build_gvalue_array),
1240         (create_action), (demo_gui_show_func), (demo_gui_set_player),
1241         (demo_gui_set_playlist), (demo_gui_show), (demo_gui_get_property),
1242         (demo_gui_set_property), (demo_gui_init), (demo_gui_class_init),
1243         (demo_gui_get_type):
1244         * examples/scaletempo/demo-gui.h:
1245         * examples/scaletempo/demo-main.c: (handle_error_message),
1246         (handle_quit), (main):
1247         * examples/scaletempo/demo-player.c: (no_pipeline),
1248         (demo_player_event_listener), (demo_player_state_changed_cb),
1249         (demo_player_eos_cb), (demo_player_build_pipeline), (_set_rate),
1250         (demo_player_scale_rate_func), (demo_player_set_rate_func),
1251         (_set_state_and_wait), (demo_player_load_uri_func),
1252         (demo_player_play_func), (demo_player_pause_func), (_seek_to),
1253         (demo_player_seek_by_func), (demo_player_seek_to_func),
1254         (demo_player_get_position_func), (demo_player_get_duration_func),
1255         (demo_player_scale_rate), (demo_player_set_rate),
1256         (demo_player_load_uri), (demo_player_play), (demo_player_pause),
1257         (demo_player_seek_by), (demo_player_seek_to),
1258         (demo_player_get_position), (demo_player_get_duration),
1259         (demo_player_get_property), (demo_player_set_property),
1260         (demo_player_init), (demo_player_class_init),
1261         (demo_player_get_type):
1262         * examples/scaletempo/demo-player.h:
1263         * gst/scaletempo/Makefile.am:
1264         * gst/scaletempo/gstscaletempo.c: (best_overlap_offset_float),
1265         (best_overlap_offset_s16), (output_overlap_float),
1266         (output_overlap_s16), (fill_queue), (reinit_buffers),
1267         (gst_scaletempo_transform), (gst_scaletempo_transform_size),
1268         (gst_scaletempo_sink_event), (gst_scaletempo_set_caps),
1269         (gst_scaletempo_get_property), (gst_scaletempo_set_property),
1270         (gst_scaletempo_base_init), (gst_scaletempo_class_init),
1271         (gst_scaletempo_init):
1272         * gst/scaletempo/gstscaletempo.h:
1273         * gst/scaletempo/gstscaletempoplugin.c: (plugin_init):
1274         Add scaletempo plugin, which allows to scale the speed of audio without
1275         changing the pitch by handling seeks with a rate!=1.0.
1276         Integrate it into the docs and add the example application for it.
1277         Fixes bug #537700.
1278
1279 2008-08-30  David Schleef  <ds@schleef.org>
1280
1281         * ext/dirac/gstdiracenc.cc: Fix some memleaks.
1282
1283 2008-08-29  David Schleef  <ds@schleef.org>
1284
1285         * ext/dirac/gstdiracenc.cc: Fix EOS handling.  Clean up at
1286           object disposal.  Handle 4:2:2 and 4:4:4 video.
1287
1288 2008-08-29  Jan Schmidt  <Jan.Schmidt@sun.com>
1289
1290         * ext/resindvd/resindvdbin.c:
1291         Fix compiler warning on Forte.
1292
1293 2008-08-29  Jan Schmidt  <Jan.Schmidt@sun.com>
1294
1295         * configure.ac:
1296         Commit FIONREAD check, needed for the dccp src.
1297
1298 2008-08-29  Edward Hervey  <edward.hervey@collabora.co.uk>
1299
1300         * ext/faac/gstfaac.c: (gst_faac_init), (gst_faac_sink_event),
1301         (gst_faac_chain), (gst_faac_change_state):
1302         * ext/faac/gstfaac.h:
1303         Add code for calculating proper timestamp/duration for the trailing
1304         encoded buffers that faac will output when receiving EOS.
1305
1306 2008-08-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1307
1308         * configure.ac:
1309         Fix CFLAGS and LIBS for the apexsink.
1310
1311 2008-08-28  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1312
1313         * sys/winks/ksvideohelpers.c (ks_video_media_type_free):
1314           Avoid leaking the KSDATARANGE member of each KsVideoMediaType.
1315
1316 2008-08-28  Jan Schmidt  <Jan.Schmidt@sun.com>
1317
1318         * gst/dccp/gstdccp.c:
1319         * gst/dccp/gstdccpclientsrc.c:
1320         Fix compilation on Solaris by including filio.h as needed.
1321
1322         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
1323         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
1324         Fix compilation with Forte - apparently it hates concatenating a
1325         macro argument that starts with an underscore??
1326
1327 2008-08-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1328
1329         Patch by: Jérémie Bernard <gremimail at gmail dot com>
1330
1331         * configure.ac:
1332         * ext/apexsink/LGPL-3.0.txt:
1333         * ext/apexsink/Makefile.am:
1334         * ext/apexsink/gstapexplugin.c: (plugin_init):
1335         * ext/apexsink/gstapexraop.c: (g_strdel), (gst_apexraop_send),
1336         (gst_apexraop_recv), (gst_apexraop_new), (gst_apexraop_free),
1337         (gst_apexraop_set_host), (gst_apexraop_get_host),
1338         (gst_apexraop_set_port), (gst_apexraop_get_port),
1339         (gst_apexraop_set_useragent), (gst_apexraop_get_useragent),
1340         (gst_apexraop_connect), (gst_apexraop_get_jacktype),
1341         (gst_apexraop_get_jackstatus), (gst_apexraop_close),
1342         (gst_apexraop_set_volume), (gst_apexraop_write_bits),
1343         (gst_apexraop_write), (gst_apexraop_flush):
1344         * ext/apexsink/gstapexraop.h:
1345         * ext/apexsink/gstapexsink.c: (gst_apexsink_jackstatus_get_type),
1346         (gst_apexsink_jacktype_get_type), (gst_apexsink_interfaces_init),
1347         (gst_apexsink_implements_interface_init),
1348         (gst_apexsink_mixer_interface_init),
1349         (gst_apexsink_interface_supported),
1350         (gst_apexsink_mixer_list_tracks), (gst_apexsink_mixer_set_volume),
1351         (gst_apexsink_mixer_get_volume), (gst_apexsink_base_init),
1352         (gst_apexsink_class_init), (gst_apexsink_init),
1353         (gst_apexsink_set_property), (gst_apexsink_get_property),
1354         (gst_apexsink_finalise), (gst_apexsink_open),
1355         (gst_apexsink_prepare), (gst_apexsink_write),
1356         (gst_apexsink_unprepare), (gst_apexsink_delay),
1357         (gst_apexsink_reset), (gst_apexsink_close):
1358         * ext/apexsink/gstapexsink.h:
1359         Add apexsink for audio output to Apple AirPort Express Wireless
1360         devices. Fixes bug #542510.
1361
1362 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1363
1364         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_send_rtcp),
1365         (gst_rtp_session_event_send_rtp_sink):
1366         Send EOS when the session object instructs us to.
1367
1368         * gst/rtpmanager/rtpsession.c: (rtp_session_on_timeout):
1369         * gst/rtpmanager/rtpsession.h:
1370         Make it possible for the session manager to instruct us to send EOS. We
1371         currently will EOS when the session is a sender and when the sender part
1372         goes EOS. This is not entirely correct behaviour because the session
1373         could still participate as a receiver.
1374         Fixes #549409.
1375
1376 2008-08-27  Michael Smith <msmith@songbirdnest.com>
1377
1378         * gst/aiffparse/aiffparse.c:
1379           Read size of chunks preceeding the audio data with the
1380           correct endianness. Fixes playback of some files.
1381           Fixes #538500
1382
1383 2008-08-27  Michael Smith <msmith@songbirdnest.com>
1384
1385         * configure.ac:
1386         * gst/aiffparse/Makefile.am:
1387         * gst/aiffparse/aiffparse.c:
1388         * gst/aiffparse/aiffparse.h:
1389           Add an AIFF parsing element, heavily based on wavparse.
1390
1391 2008-08-27  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1392
1393         * sys/winks/gstksvideodevice.c (gst_ks_video_device_class_init,
1394           gst_ks_video_device_set_state):
1395           Don't set the pin state to KSSTATE_RUN from the streaming thread.
1396           Skip KSSTATE_ACQUIRE when changing pin state downwards.
1397           Be nice and specify G_PARAM_STATIC_STRINGS.
1398           Remove unused finalize method.
1399
1400         * sys/winks/gstksvideosrc.c (DEFAULT_ENABLE_QUIRKS, PROP_ENABLE_QUIRKS,
1401           enable_quirks, gst_ks_video_src_class_init, gst_ks_video_src_init,
1402           gst_ks_video_src_finalize, gst_ks_video_src_get_property,
1403           gst_ks_video_src_set_property, gst_ks_video_src_reset,
1404           gst_ks_video_src_apply_driver_quirks, gst_ks_video_src_change_state,
1405           gst_ks_video_src_set_caps):
1406           First driver quirk: work around Logitech's hostile driver software to
1407           improve stability and performance. See comments for details.
1408           Provide a property to disable driver quirks (enabled by default).
1409           Be nice and specify G_PARAM_STATIC_STRINGS.
1410           Remove unused dispose method.
1411           Tweak include order.
1412
1413 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1414
1415         * gst/selector/gstinputselector.c: (gst_input_selector_init),
1416         (gst_input_selector_query):
1417         Implement the LATENCY query in a better way by taking the latency of all
1418         sinkpads and taking the min/max instead of just taking a random pad.
1419
1420 2008-08-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1421
1422         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1423         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
1424         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
1425         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
1426         Unroll the loop to handle two bytes at once. This should give
1427         a small speedup and makes it possible to handle chroma and luma
1428         different which is needed later.
1429
1430 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1431
1432         * gst/dccp/gstdccpserversink.c:
1433         * gst/dccp/gstdccpserversink.h:
1434         Don't put globals only used by one '.c' file in a header !
1435         Declare it as static, fixes build on macosx.
1436
1437 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1438
1439         * gst/dccp/gstdccp.c: (gst_dccp_send_buffer):
1440         Whoops, that was one fix too much :)
1441
1442 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1443
1444         * gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
1445         (gst_dccp_send_buffer), (gst_dccp_set_sock_windowsize):
1446         size_t's size varies by platform/architecture. Use glib convenience
1447         macro instead. Fixes build on macosx.
1448         Remove ending '\n' in debug statements.
1449
1450 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1451
1452         * gst/pcapparse/gstpcapparse.c: (gst_pcap_parse_class_init):
1453         Remove unused code and fix includes.
1454
1455 2008-08-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1456
1457         * gst/deinterlace2/gstdeinterlace2.c:
1458         (gst_deinterlace_method_class_init):
1459         * gst/deinterlace2/gstdeinterlace2.h:
1460         * gst/deinterlace2/tvtime/tomsmocomp.c:
1461         (gst_deinterlace_method_tomsmocomp_class_init):
1462         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1463         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
1464         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
1465         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
1466         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
1467         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
1468         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
1469         First part of the C implementation of the tomsmocomp deinterlacing
1470         algorithm. This only supports search-effort=0 currently, is painfully
1471         slow and needs some cleanup later when all search-effort settings
1472         are implemented in C.
1473
1474 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1475
1476         * configure.ac:
1477         * sys/Makefile.am:
1478         * sys/winks/Makefile.am:
1479         * sys/winks/gstksclock.c:
1480         * sys/winks/gstksclock.h:
1481         * sys/winks/gstksvideodevice.c:
1482         * sys/winks/gstksvideodevice.h:
1483         * sys/winks/gstksvideosrc.c:
1484         * sys/winks/gstksvideosrc.h:
1485         * sys/winks/kshelpers.c:
1486         * sys/winks/kshelpers.h:
1487         * sys/winks/ksvideohelpers.c:
1488         * sys/winks/ksvideohelpers.h:
1489           New plugin for low-latency video capture on Windows (#519935).
1490
1491           Uses Kernel Streaming, the lowest level API for doing video capture
1492           on Windows (more or less just raw ioctls).
1493
1494 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1495
1496         * gst/pcapparse/gstpcapparse.c:
1497         * sys/winscreencap/gstdx9screencapsrc.c:
1498         * sys/winscreencap/gstgdiscreencapsrc.c:
1499           Added documentation blobs. Thanks to Stefan for noticing!
1500
1501 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1502
1503         * configure.ac:
1504         * gst/pcapparse/Makefile.am:
1505         * gst/pcapparse/gstpcapparse.c:
1506         * gst/pcapparse/gstpcapparse.h:
1507           New plugin: pcapparse (#520899).
1508
1509 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1510
1511         patch by: Haakon Sporsheim <hakon.sporsheim@tandberg.com>
1512
1513         * configure.ac:
1514         * sys/Makefile.am:
1515         * sys/winscreencap/Makefile.am:
1516         * sys/winscreencap/gstdx9screencapsrc.c:
1517         * sys/winscreencap/gstdx9screencapsrc.h:
1518         * sys/winscreencap/gstgdiscreencapsrc.c:
1519         * sys/winscreencap/gstgdiscreencapsrc.h:
1520         * sys/winscreencap/gstwinscreencap.c:
1521         * sys/winscreencap/gstwinscreencap.h:
1522           New plugin: winscreencap (#463941).
1523
1524 2008-08-22  Michael Smith <msmith@songbirdnest.com>
1525
1526         * sys/dshowdecwrapper/gstdshowaudiodec.c:
1527           Flip mpeg1/mpeg2 arrays for mpeg audio. Detect which type the audio
1528           is correctly, instead of backwards. No functional changes, since this
1529           mistake was completely self-consistent.
1530
1531 2008-08-22  Stefan Kost  <ensonic@users.sf.net>
1532
1533         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1534           Add, but commented out xml/element-dc1394.xml. Its documented, but
1535           I can't get it to be build.
1536
1537         * ext/celt/gstceltdec.c:
1538         * ext/celt/gstceltenc.c:
1539           Fix doc warnings and reformat the doc block.
1540
1541 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
1542
1543         patch by: Leandro Melo de Sales <leandroal@gmail.com>
1544
1545         * configure.ac:
1546         * docs/plugins/Makefile.am:
1547         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1548         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1549         * docs/plugins/gst-plugins-bad-plugins.args:
1550         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1551         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1552         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1553         * docs/plugins/gst-plugins-bad-plugins.signals:
1554         * docs/plugins/inspect/plugin-dccp.xml:
1555         * gst/dccp/Makefile.am:
1556         * gst/dccp/gstdccp.c:
1557         * gst/dccp/gstdccp.h:
1558         * gst/dccp/gstdccpclientsink.c:
1559         * gst/dccp/gstdccpclientsink.h:
1560         * gst/dccp/gstdccpclientsrc.c:
1561         * gst/dccp/gstdccpclientsrc.h:
1562         * gst/dccp/gstdccpplugin.c:
1563         * gst/dccp/gstdccpserversink.c:
1564         * gst/dccp/gstdccpserversink.h:
1565         * gst/dccp/gstdccpserversrc.c:
1566         * gst/dccp/gstdccpserversrc.h:
1567         * tests/icles/dccp/README:
1568         * tests/icles/dccp/call/README:
1569         * tests/icles/dccp/call/DCCPClient.c:
1570         * tests/icles/dccp/call/DCCPServer.c:
1571         * tests/icles/dccp/file/DCCPClientSaveFile.c:
1572         * tests/icles/dccp/file/DCCPServerSendFile.c:
1573         * tests/icles/dccp/mic/DCCPClientPlayMic.c:
1574         * tests/icles/dccp/mic/DCCPServerMic.c:
1575         * tests/icles/dccp/mp3/DCCPClientPlayMP3.c:
1576         * tests/icles/dccp/mp3/DCCPServerSendMP3.c:
1577         * tests/icles/dccp/mp3Speex/DCCPClientPlaySpeexMP3.c:
1578         * tests/icles/dccp/mp3Speex/DCCPServerSendSpeexMP3.c:
1579         * tests/icles/dccp/mp3Stream/DCCPClientPlayMP3Stream.c:
1580         * tests/icles/dccp/mp3Stream/DCCPServerSendMP3Stream.c:
1581           Add dccp plugin. Fixes #542390.
1582
1583 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
1584
1585         * configure.ac:
1586           Remove bits that presumably weren't supposed to be committed.
1587
1588 2008-08-20  Michael Smith <msmith@songbirdnest.com>
1589
1590         * configure.ac:
1591         * sys/Makefile.am:
1592         * sys/acmenc/Makefile.am:
1593         * sys/acmenc/acmenc.c:
1594           Add new windows ACM encoder wrapper.
1595
1596 2008-08-18  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1597
1598         patch by: Michael Krufky
1599
1600         * sys/dvb/gstdvbsrc.c:
1601         * sys/dvb/parsechannels.c:
1602         Add ATSC tunning and channels.conf parsing support.
1603         Fixes #537455
1604
1605 2008-08-13  Michael Smith <msmith@songbirdnest.com>
1606
1607         * sys/dshowdecwrapper/gstdshowaudiodec.c:
1608         * sys/dshowdecwrapper/gstdshowaudiodec.h:
1609         * sys/dshowdecwrapper/gstdshowvideodec.c:
1610         * sys/dshowdecwrapper/gstdshowvideodec.h:
1611         * sys/dshowvideosink/dshowvideosink.cpp:
1612         * sys/dshowvideosink/dshowvideosink.h:
1613           Initialise COM with default flags.
1614           Only deinitialise if the initialisation was successful.
1615
1616 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1617
1618         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
1619         (gst_rtp_bin_sync_chain), (new_ssrc_pad_found):
1620         Reset rtp timestamp interpollation when we detect a gap when the
1621         clock_base changed.
1622         Don't try to adjust the ts-offset when it's too big (> 3seconds)
1623
1624         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_set_ssrc):
1625         * gst/rtpmanager/gstrtpsession.h:
1626         Add method to set session SSRC.
1627
1628         * gst/rtpmanager/rtpsession.c: (check_collision),
1629         (rtp_session_set_internal_ssrc), (rtp_session_get_internal_ssrc),
1630         (rtp_session_on_timeout):
1631         * gst/rtpmanager/rtpsession.h:
1632         Added debugging for the collision checks.
1633         Add method to change the internal SSRC of the session.
1634
1635         * gst/rtpmanager/rtpsource.c: (rtp_source_process_rtp):
1636         Reset the clock base when we detect large jumps in the seqnums.
1637
1638 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1639
1640         * ext/x264/gstx264enc.c: (gst_x264_enc_reset),
1641         (gst_x264_enc_chain), (gst_x264_enc_encode_frame):
1642         * ext/x264/gstx264enc.h:
1643         Do not deal with duplicated input (timestamps).  If needed,
1644         a generic element can do so.
1645         Do not manipulate input timestamps on the way out,
1646         since that shifts the timeline and A/V sync.
1647
1648 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1649
1650         * docs/plugins/gst-plugins-bad-plugins.args:
1651         Integrate new properties into documentation.
1652         * ext/x264/gstx264enc.c: (gst_x264_enc_class_init),
1653         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1654         (gst_x264_enc_set_property), (gst_x264_enc_get_property):
1655         Fix up API prior to eventual plugin move.
1656         API: GstX264Enc:pass (provides more options, and changed to enum)
1657
1658 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1659
1660         * docs/plugins/Makefile.am:
1661         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1662         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1663         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1664         * docs/plugins/inspect/plugin-mplex.xml:
1665         * ext/mplex/gstmplex.cc:
1666         Update and add documentation for mplex.
1667         * ext/mpeg2enc/gstmpeg2enc.cc:
1668         Documentation update.
1669
1670 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1671
1672         * docs/plugins/Makefile.am:
1673         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1674         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1675         * ext/x264/gstx264enc.c:
1676         * tests/check/Makefile.am:
1677         * tests/check/elements/x264enc.c: (setup_x264enc),
1678         (cleanup_x264enc), (GST_START_TEST), (x264enc_suite), (main):
1679         Add documentation and unit test for x264enc.
1680
1681 2008-08-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1682
1683         * ext/x264/gstx264enc.c: (gst_x264_enc_init),
1684         (gst_x264_enc_header_buf), (gst_x264_enc_encode_frame):
1685         Allocate some buffers in more adaptive and economical fashion.
1686
1687 2008-08-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1688
1689         * configure.ac:
1690         Check for sufficiently up-to-date x264 API.
1691         * ext/x264/gstx264enc.c: (gst_x264_enc_pass_get_type),
1692         (gst_x264_enc_base_init), (gst_x264_enc_class_init),
1693         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1694         (gst_x264_enc_set_property), (gst_x264_enc_get_property):
1695         * ext/x264/gstx264enc.h:
1696         Expose some more parameters of the x264 encoder as properties.
1697
1698 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1699
1700         * gst/rtpmanager/gstrtpbin.c:
1701           Print the pad-name in debug log.
1702
1703         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
1704         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
1705           Use "-" instead of "_" in property names. Can we call them just
1706           "device" like everywhere else?
1707
1708 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1709
1710         * ext/x264/gstx264enc.c: (gst_x264_enc_log_callback),
1711         (gst_x264_enc_finalize), (gst_x264_enc_header_buf),
1712         (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps),
1713         (gst_x264_enc_flush_frames):
1714         Coding style and layout; re-order some functions in more
1715         typical and natural flow.
1716
1717 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1718
1719         * ext/x264/Makefile.am:
1720         * ext/x264/gstx264enc.c: (gst_x264_enc_set_src_caps),
1721         (gst_x264_enc_sink_set_caps), (gst_x264_enc_init),
1722         (gst_x264_enc_reset), (gst_x264_enc_finalize),
1723         (gst_x264_enc_flush_frames), (gst_x264_enc_sink_event),
1724         (gst_x264_enc_chain), (gst_x264_enc_encode_frame),
1725         (gst_x264_enc_change_state), (gst_x264_enc_set_property):
1726         * ext/x264/gstx264enc.h:
1727         Use GQueue in stead of custom queue code.
1728         Factorize flushing out encoder delayed frames.
1729         Factorize initialization and state change reset.
1730
1731 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1732
1733         * ext/x264/gstx264enc.h:
1734         * sys/fbdev/gstfbdevsink.c:
1735         Use configure-generated _stdint.h.
1736
1737 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1738
1739         * ext/x264/Makefile.am:
1740         * ext/x264/gstx264enc.c: (gst_x264_enc_header_buf),
1741         (gst_x264_enc_sink_set_caps), (gst_x264_enc_base_init),
1742         (gst_x264_enc_class_init), (gst_x264_enc_log_callback),
1743         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1744         (gst_x264_enc_finalize), (gst_x264_enc_chain),
1745         (gst_x264_enc_encode_frame), (plugin_init):
1746         * ext/x264/gstx264enc.h:
1747         Use video format library and GST_WRITE_*_BE macros where applicable.
1748         Use finalize in stead of dispose.
1749         Set up debug category and log callback.
1750
1751 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1752
1753         Patch by: Frederic Crozat <fcrozat@mandriva.org>
1754
1755         * ext/sndfile/gstsf.c: (plugin_init):
1756         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_plugin_init):
1757         * sys/oss4/oss4-audio.c: (plugin_init):
1758         Make sure gettext returns translations in UTF-8 encoding rather
1759         than in the current locale encoding (#546822).
1760
1761 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1762
1763         * ext/twolame/gsttwolame.c: (gst_two_lame_sink_setcaps),
1764         (gst_two_lame_chain):
1765         * ext/twolame/gsttwolame.h:
1766         Allow raw float samples as input for encoding.
1767
1768 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1769
1770         * ext/jack/gstjackaudiosrc.c:
1771           Try committing this once again. Now properly renamed.
1772
1773 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1774
1775         * docs/plugins/Makefile.am:
1776         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1777         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1778         * docs/plugins/gst-plugins-bad-plugins.args:
1779         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1780         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1781         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1782         * docs/plugins/inspect/plugin-jack.xml
1783           Add new element to docs.
1784
1785         * ext/jack/gstjack.h
1786           Add missing file.
1787
1788         * ext/jack/gstjackaudiosrc.c:
1789         * ext/jack/gstjackaudiosrc.h:
1790           Rename jackaudiosrc to jack_audio_src.
1791
1792 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1793
1794         patch by: Tristan Matthews <tristan@sat.qc.ca>
1795
1796         * ext/jack/Makefile.am:
1797         * ext/jack/gstjack.c:
1798         * ext/jack/gstjackaudioclient.c:
1799         * ext/jack/gstjackaudiosink.c:
1800         * ext/jack/gstjackaudiosink.h:
1801         * ext/jack/gstjackaudiosrc.c:
1802         * ext/jack/gstjackaudiosrc.h:
1803         * ext/jack/gstjackringbuffer.h:
1804           Add a jackaudiosrc. Refactor sink slightly for better code reuse.
1805           Fixes #545197.
1806
1807 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1808
1809         * docs/plugins/Makefile.am:
1810         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1811         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1812         * docs/plugins/gst-plugins-bad-plugins.args:
1813         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1814         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1815         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1816         * docs/plugins/inspect/plugin-celt.xml:
1817         * docs/plugins/inspect/plugin-twolame.xml:
1818         Add twolame and celt plugins to the docs.
1819
1820 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1821
1822         Based on patch by: Olivier Crete <tester at tester dot ca>
1823
1824         * gst/rtpmanager/gstrtpjitterbuffer.c:
1825         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
1826         Make the buffer metadata writable before inserting it in the
1827         jitterbuffer because the jitterbuffer will modify the timestamps.
1828
1829         * gst/rtpmanager/rtpjitterbuffer.c:
1830         Update method comment about requiring writable metadata on buffers.
1831
1832         * gst/rtpmanager/rtpsession.c: (rtp_session_process_sr),
1833         (rtp_session_process_rtcp):
1834         Make the RTCP buffer metadata writable because we want to modify the
1835         metadata.
1836         Fixes #546312.
1837
1838 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1839
1840         * gst/selector/gstinputselector.c: (gst_selector_pad_bufferalloc),
1841         (gst_selector_pad_chain), (gst_input_selector_getcaps),
1842         (gst_input_selector_activate_sinkpad):
1843         Move the select-all logic into the activation of the currently selected
1844         pad. We want to remember the last pad with activity in select-all mode.
1845         Fix the getcaps function, we can produce the union of the upstream caps
1846         in select-all mode, not the intersection like proxy_getcaps() does.
1847
1848 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1849
1850         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
1851
1852         * gst/rtpmanager/gstrtpjitterbuffer.c:
1853         (gst_rtp_jitter_buffer_chain):
1854         Fix debug by logging the right seqnum.
1855
1856 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1857
1858         Patch by: Olivier Crete <tester at tester dot ca>
1859
1860         * gst/rtpmanager/gstrtpbin.c: (get_pt_map):
1861         Release lock before emitting the request-pt-map signal.
1862         Fixes #543480.
1863
1864 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1865
1866         * gst/deinterlace2/gstdeinterlace2.c:
1867         (gst_deinterlace_simple_method_interpolate_scanline),
1868         (gst_deinterlace_simple_method_copy_scanline),
1869         (gst_deinterlace_simple_method_deinterlace_frame):
1870         * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy):
1871         * gst/deinterlace2/tvtime/greedyh.c:
1872         (deinterlace_frame_di_greedyh):
1873         * gst/deinterlace2/tvtime/scalerbob.c:
1874         (deinterlace_scanline_scaler_bob):
1875         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy):
1876         * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave),
1877         (copy_scanline):
1878         * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave),
1879         (copy_scanline):
1880         * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave),
1881         (copy_scanline):
1882         Use oil_memcpy() instead of memcpy() as it's faster for the sizes that
1883         are usually used here.
1884
1885 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1886
1887         * gst/deinterlace2/Makefile.am:
1888         * gst/deinterlace2/gstdeinterlace2.c:
1889         (gst_deinterlace_simple_method_deinterlace_frame),
1890         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method):
1891         * gst/deinterlace2/gstdeinterlace2.h:
1892         * gst/deinterlace2/tvtime/linear.c:
1893         (deinterlace_scanline_linear_c), (deinterlace_scanline_linear_mmx),
1894         (deinterlace_scanline_linear_mmxext),
1895         (gst_deinterlace_method_linear_class_init),
1896         (gst_deinterlace_method_linear_init):
1897         * gst/deinterlace2/tvtime/linearblend.c:
1898         (deinterlace_scanline_linear_blend_c),
1899         (deinterlace_scanline_linear_blend2_c),
1900         (deinterlace_scanline_linear_blend_mmx),
1901         (deinterlace_scanline_linear_blend2_mmx),
1902         (gst_deinterlace_method_linear_blend_class_init),
1903         (gst_deinterlace_method_linear_blend_init):
1904         * gst/deinterlace2/tvtime/plugins.h:
1905         * gst/deinterlace2/tvtime/scalerbob.c:
1906         (deinterlace_scanline_scaler_bob),
1907         (gst_deinterlace_method_scaler_bob_class_init),
1908         (gst_deinterlace_method_scaler_bob_init):
1909         * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave),
1910         (copy_scanline), (gst_deinterlace_method_weave_class_init),
1911         (gst_deinterlace_method_weave_init):
1912         * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave),
1913         (copy_scanline), (gst_deinterlace_method_weave_bff_class_init),
1914         (gst_deinterlace_method_weave_bff_init):
1915         * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave),
1916         (copy_scanline), (gst_deinterlace_method_weave_tff_class_init),
1917         (gst_deinterlace_method_weave_tff_init):
1918         Add the remaining tvtime deinterlacing methods and fix the
1919         deinterlace_frame() implementation of GstDeinterlaceSimpleMethod.
1920
1921 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1922
1923         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
1924         (deinterlace_line_mmx), (gst_deinterlace_method_vfir_class_init):
1925         Implement the VFIR deinterlacing method as simple method.
1926
1927 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1928
1929         * gst/deinterlace2/gstdeinterlace2.c:
1930         (gst_deinterlace_simple_method_interpolate_scanline),
1931         (gst_deinterlace_simple_method_copy_scanline),
1932         (gst_deinterlace_simple_method_deinterlace_frame),
1933         (gst_deinterlace_simple_method_class_init),
1934         (gst_deinterlace_simple_method_init):
1935         * gst/deinterlace2/gstdeinterlace2.h:
1936         Add a GstDeinterlaceSimpleMethod subclass of GstDeinterlaceMethod that
1937         can be used by simple deinterlacing methods. They only have to provide
1938         a function for interpolating a scanline or copying a scanline.
1939
1940 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1941
1942         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_chain):
1943         Respect the latency of the deinterlacing algorithm for the timestamps
1944         of every buffer.
1945
1946 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1947
1948         * gst/deinterlace2/tvtime/greedyh.asm:
1949         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1950         Add the MMX registers to the clobbered registers only if __MMX__ is
1951         defined.
1952
1953 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1954
1955         * gst/deinterlace2/Makefile.am:
1956         * gst/deinterlace2/gstdeinterlace2.c:
1957         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method),
1958         (gst_deinterlace2_class_init):
1959         Enable tomsmocomp again as the C port will be ready for the next
1960         release.
1961
1962 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1963
1964         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_init),
1965         (gst_greatest_common_divisor), (gst_fraction_double),
1966         (gst_deinterlace2_getcaps), (gst_deinterlace2_setcaps):
1967         Don't use proxy_getcaps() but implement our own getcaps() function
1968         that doubles/halfs the framerate if all fields should be sent out.
1969
1970 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1971
1972         * configure.ac:
1973         * ext/Makefile.am:
1974         * ext/twolame/Makefile.am:
1975         * ext/twolame/gsttwolame.c: (gst_two_lame_mode_get_type),
1976         (gst_two_lame_padding_get_type), (gst_two_lame_emphasis_get_type),
1977         (gst_two_lame_release_memory), (gst_two_lame_finalize),
1978         (gst_two_lame_base_init), (gst_two_lame_class_init),
1979         (gst_two_lame_src_setcaps), (gst_two_lame_sink_setcaps),
1980         (gst_two_lame_init), (gst_two_lame_set_property),
1981         (gst_two_lame_get_property), (gst_two_lame_sink_event),
1982         (gst_two_lame_chain), (gst_two_lame_setup),
1983         (gst_two_lame_change_state), (gst_two_lame_get_default_settings),
1984         (plugin_init):
1985         * ext/twolame/gsttwolame.h:
1986         Add TwoLAME MP2 encoding element, based on the LAME element.
1987
1988 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1989
1990         * configure.ac:
1991         * ext/Makefile.am:
1992         * ext/celt/Makefile.am:
1993         * ext/celt/gstcelt.c: (plugin_init):
1994         * ext/celt/gstceltdec.c: (gst_celt_dec_base_init),
1995         (gst_celt_dec_class_init), (gst_celt_dec_reset),
1996         (gst_celt_dec_init), (celt_dec_convert),
1997         (celt_get_sink_query_types), (celt_dec_sink_query),
1998         (celt_get_src_query_types), (celt_dec_src_query),
1999         (celt_dec_src_event), (celt_dec_sink_event),
2000         (celt_dec_chain_parse_header), (celt_dec_chain_parse_comments),
2001         (celt_dec_chain_parse_data), (celt_dec_chain),
2002         (celt_dec_change_state):
2003         * ext/celt/gstceltdec.h:
2004         * ext/celt/gstceltenc.c: (gst_celt_enc_setup_interfaces),
2005         (gst_celt_enc_base_init), (gst_celt_enc_class_init),
2006         (gst_celt_enc_finalize), (gst_celt_enc_sink_setcaps),
2007         (gst_celt_enc_sink_getcaps), (gst_celt_enc_convert_src),
2008         (gst_celt_enc_convert_sink), (gst_celt_enc_get_latency),
2009         (gst_celt_enc_get_query_types), (gst_celt_enc_src_query),
2010         (gst_celt_enc_sink_query), (gst_celt_enc_init),
2011         (gst_celt_enc_create_metadata_buffer), (gst_celt_enc_setup),
2012         (gst_celt_enc_buffer_from_data), (gst_celt_enc_push_buffer),
2013         (gst_celt_enc_set_header_on_caps), (gst_celt_enc_sinkevent),
2014         (gst_celt_enc_chain), (gst_celt_enc_get_property),
2015         (gst_celt_enc_set_property), (gst_celt_enc_change_state):
2016         * ext/celt/gstceltenc.h:
2017         Add CELT encoder and decoder elements based on the Speex elements.
2018
2019 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2020
2021         Patch by: Tal Shalif <tshalif at nargila dot org>
2022
2023         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_initsdl):
2024         Use g_setenv() and g_unsetenv() instead of setenv() to fix compilation
2025         with mingw. Fixes bug #545247.
2026
2027 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2028
2029         * configure.ac:
2030         Back to development -> 0.10.8.1
2031
2032 === release 0.10.8 ===
2033
2034 2008-07-28  Jan Schmidt <jan.schmidt@sun.com>
2035
2036         * configure.ac:
2037           releasing 0.10.8, "Vapour Trails"
2038
2039 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
2040
2041         * configure.ac:
2042         0.10.7.3 pre-release
2043
2044         * po/LINGUAS:
2045         * po/id.po:
2046         Add Indonesian translation.
2047
2048 2008-07-23  Michael Smith <msmith@songbirdnest.com>
2049
2050         * gst/festival/gstfestival.c:
2051           Guard unistd.h with HAVE_UNISTD_H
2052         * gst/modplug/libmodplug/load_it.cpp:
2053         * gst/modplug/libmodplug/sndfile.cpp:
2054         * gst/modplug/libmodplug/sndfile.h:
2055         * gst/modplug/libmodplug/stdafx.h:
2056           Support for compiling with MSVC: use _MSC_VER for detecting MSVC instead
2057           of MSC_VER. Make CanPackSamples take the type it's passed. Change scope
2058           of a variable in load_it.cpp to MSVC's scoping rules.
2059         * gst/sdp/gstsdpdemux.c:
2060           Guard unistd.h with HAVE_UNISTD_H
2061           Fixes #544457.
2062
2063 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
2064
2065         * ext/timidity/gsttimidity.c:
2066           Fix compiler warning. Fixes #544050.
2067
2068 2008-07-21  Jan Schmidt  <jan.schmidt@sun.com>
2069
2070         * configure.ac:
2071         Don't check for nav_print.h any more - it should be included in
2072         the libdvdnav development package if libdvdnav headers depend on it.
2073         Fixes: #543846
2074
2075 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2076
2077         * configure.ac:
2078         * ext/ladspa/Makefile.am:
2079         Link the ladspa plugin with -ldl. It's needed for dlopen() and friends
2080         for loading the ladspa plugins and previously was linked in by
2081         gmodule. Fixes bug #543848.
2082
2083 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2084
2085         * gst/modplug/libmodplug/Makefile.am:
2086         Use GST_CXXFLAGS instead of GST_CFLAGS for CXXFLAGS. GST_CFLAGS
2087         can contain compiler parameters that are invalid for C++.
2088         Fixes bug #543860.
2089
2090 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2091
2092         * ext/resindvd/Makefile.am:
2093         Dist missing header files. Fixes bug #543861.
2094
2095 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2096
2097         * configure.ac:
2098         0.10.7.2 pre-release
2099
2100 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2101
2102         * ext/Makefile.am:
2103         Dist and recurse into resindvd subdir
2104
2105 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2106
2107         * configure.ac:
2108         Remove interleave and replaygain configure.ac pieces too
2109
2110 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2111
2112         * po/LINGUAS:
2113         * po/lt.po:
2114         Add new lithunian translation, and add french to the LINGUAS
2115         file.
2116
2117 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2118
2119         * docs/plugins/Makefile.am:
2120         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2121         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2122         * docs/plugins/gst-plugins-bad-plugins.args:
2123         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
2124         * docs/plugins/gst-plugins-bad-plugins.interfaces:
2125         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
2126         * docs/plugins/inspect/plugin-interleave.xml:
2127         * docs/plugins/inspect/plugin-replaygain.xml:
2128         * gst/interleave/Makefile.am:
2129         * gst/interleave/deinterleave.c:
2130         * gst/interleave/deinterleave.h:
2131         * gst/interleave/interleave.c:
2132         * gst/interleave/interleave.h:
2133         * gst/interleave/plugin.c:
2134         * gst/interleave/plugin.h:
2135         * gst/replaygain/Makefile.am:
2136         * gst/replaygain/gstrganalysis.c:
2137         * gst/replaygain/gstrganalysis.h:
2138         * gst/replaygain/gstrglimiter.c:
2139         * gst/replaygain/gstrglimiter.h:
2140         * gst/replaygain/gstrgvolume.c:
2141         * gst/replaygain/gstrgvolume.h:
2142         * gst/replaygain/replaygain.c:
2143         * gst/replaygain/replaygain.h:
2144         * gst/replaygain/rganalysis.c:
2145         * gst/replaygain/rganalysis.h:
2146         * tests/check/Makefile.am:
2147         * tests/check/elements/deinterleave.c:
2148         * tests/check/elements/interleave.c:
2149         * tests/check/elements/rganalysis.c:
2150         * tests/check/elements/rglimiter.c:
2151         * tests/check/elements/rgvolume.c:
2152         Remove interleave and replaygain plugins that have moved to -good
2153
2154 2008-07-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2155
2156         * configure.ac:
2157         * gst/deinterlace2/Makefile.am:
2158         * gst/deinterlace2/gstdeinterlace2.c:
2159         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method),
2160         (gst_deinterlace2_class_init), (gst_deinterlace2_init):
2161         * gst/deinterlace2/gstdeinterlace2.h:
2162         * gst/deinterlace2/tvtime/greedy.c:
2163         (gst_deinterlace_method_greedy_l_class_init):
2164         * gst/deinterlace2/tvtime/greedyh.c:
2165         (gst_deinterlace_method_greedy_h_class_init):
2166         * gst/deinterlace2/tvtime/vfir.c:
2167         (gst_deinterlace_method_vfir_class_init):
2168         Disable the tomsmocomp algorithm for this release as it's buggy
2169         and has no C implementation yet.
2170
2171         Build the deinterlace2 plugin on all architectures but still mark it
2172         as experimental.
2173         
2174         Build the x86 inline assembly only if GCC inline assembly is supported
2175         and only on x86 or amd64. Fixes bug #543286.
2176
2177 2008-07-16  Jan Schmidt  <Jan.Schmidt@sun.com>
2178
2179         * gst/real/gstrealvideodec.c: (open_library):
2180         Add some casts to fix the build on Forte
2181
2182 2008-07-14  Edward Hervey  <edward.hervey@collabora.co.uk>
2183
2184         * gst/deinterlace2/tvtime/greedy.c:
2185         (gst_deinterlace_method_greedy_l_class_init):
2186         * gst/deinterlace2/tvtime/greedyh.c:
2187         (gst_deinterlace_method_greedy_h_class_init):
2188         * gst/deinterlace2/tvtime/vfir.c:
2189         (gst_deinterlace_method_vfir_class_init):
2190         Fix build on x86_64
2191
2192 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
2193
2194         * ext/resindvd/gstmpegdemux.c:
2195         Remove whitespace line.
2196
2197         * ext/resindvd/resindvdbin.c:
2198         * ext/resindvd/resindvdbin.h:
2199         Make it so that audio/video pads aren't added to the bin
2200         until after data flow starts.
2201
2202         * ext/resindvd/resin-play:
2203         Move video buffer queue outside resindvdbin
2204
2205         * ext/resindvd/resindvdsrc.c:
2206         Check that the nav_clock_id didn't already get unscheduled.
2207
2208         * gst/dvdspu/gstdvdspu.c:
2209         Remove assert that sometimes triggers erroneously.
2210
2211 2008-07-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2212
2213         * gst/deinterlace2/tvtime/greedyh.asm:
2214         Always use the C implementation if width is not a multiple of 4. The
2215         assembly optimized version only handle this and calling the C
2216         implementation for the remaining part doesn't work because it needs
2217         previous calculations.
2218
2219 2008-07-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2220
2221         * gst/deinterlace2/tvtime/greedyh.asm:
2222         * gst/deinterlace2/tvtime/greedyh.c:
2223         * gst/deinterlace2/tvtime/greedyhmacros.h:
2224         Some cleanup, use 3DNOW instead of TDNOW in macros.
2225
2226         * gst/deinterlace2/tvtime/tomsmocomp.c:
2227         (gst_deinterlace_method_tomsmocomp_class_init):
2228         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2229         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2230         The SSE method in fact only needs MMXEXT, declare it as such.
2231
2232 2008-07-11  Jan Schmidt  <thaytan@noraisin.net>
2233
2234         * docs/plugins/.cvsignore:
2235         Ignore *-undeclared.txt
2236
2237         * ext/resindvd/rsnaudiomunge.c:
2238         Turn g_print's into debug statements.
2239
2240         * ext/resindvd/resin-play:
2241         * ext/resindvd/Makefile.am:
2242         * ext/resindvd/resindvdbin.c:
2243         * ext/resindvd/resindvdbin.h:
2244         * ext/resindvd/rsnparsetter.c:
2245         * ext/resindvd/rsnparsetter.h:
2246         * ext/resindvd/rsnwrappedbuffer.c:
2247         * ext/resindvd/rsnwrappedbuffer.h:
2248         Add a bloated implementation of a really simple idea: Replace the
2249         pixel-aspect-ratio in the output video with a prescribed one when
2250         necessary. There must be an easier way.
2251
2252         Split the dvdspu out of the resindvdbin and put out the subpicture
2253         stream on the subpicture pad.
2254
2255         * ext/resindvd/gstmpegdemux.c:
2256         Send video-aspect events down the pipe from the demuxer.
2257
2258         * ext/resindvd/resindvdsrc.c:
2259         * ext/resindvd/resindvdsrc.h:
2260         Handle timed-stills somewhat using g_cond_timed_wait, with a FIXME
2261         to make it use clock-waiting later.
2262
2263         * ext/resindvd/rsnbasesrc.c:
2264         Don't overwrite the last_stop in the basesrc segment after a seamless
2265         seek.
2266
2267 2008-07-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2268
2269         * gst/mpegtsparse/mpegtspacketizer.c:
2270         Convert extended event text to UTF-8.
2271
2272 2008-07-10  Stefan Kost  <ensonic@users.sf.net>
2273
2274         * docs/plugins/Makefile.am:
2275         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2276         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2277         * docs/plugins/gst-plugins-bad-plugins.args:
2278         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
2279         * docs/plugins/gst-plugins-bad-plugins.interfaces:
2280         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
2281         * docs/plugins/gst-plugins-bad-plugins.signals:
2282         * docs/plugins/inspect/plugin-stereo.xml:
2283         * gst/stereo/gststereo.c:
2284           Document one more.
2285
2286 2008-07-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2287
2288         * gst/mpegtsparse/gstmpegdesc.h:
2289         Fix extended event descriptor parsing, out by 1 in position of
2290         text length.
2291
2292 2008-07-09  Stefan Kost  <ensonic@users.sf.net>
2293
2294         * gst/festival/gstfestival.c:
2295           Add a note to the docs, that festival need to be running. Also log an
2296           error it it is not. Fixes #541327
2297
2298 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2299
2300         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2301
2302         * gst/librfb/gstrfbsrc.c:
2303         * gst/librfb/gstrfbsrc.h:
2304         Add view-only property to ignore the navigation events
2305
2306 2008-07-08  Michael Smith <msmith@songbirdnest.com>
2307
2308         * sys/dshowdecwrapper/gstdshowaudiodec.c:
2309           Revert previous patch apart from typo fixes; the patch was not
2310           independently useful.
2311
2312 2008-07-08  Michael Smith <msmith@songbirdnest.com>
2313
2314         Based on patch by: Alessandro Decina <alessandro@nnva.org>
2315         * sys/dshowdecwrapper/gstdshowaudiodec.c:
2316         * sys/dshowdecwrapper/gstdshowdecwrapper.h:
2317         * sys/dshowdecwrapper/gstdshowvideodec.c:
2318           Add AAC, AC3 to handled codecs.
2319           Fix handling of flush events.
2320           Improve debug/error output.
2321           Fix a number of typos in comments and variable names.
2322
2323 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2324
2325         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2326
2327         * gst/librfb/rfbdecoder.c:
2328         Implement ServerCutText message
2329
2330 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2331
2332         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2333
2334         * gst/librfb/gstrfbsrc.c:
2335         * gst/librfb/rfbdecoder.c:
2336         Add property for shared desktop
2337
2338 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2339
2340         * configure.ac:
2341         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
2342         flags that are invalid for C++.
2343
2344 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2345
2346         * ext/spc/gstspc.c: (spc_setup):
2347         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
2348         Don't use declarations after statements in the remaining code.
2349
2350 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2351
2352         Patch by:
2353           Jonathan Rosser <jonathan dot rosser at rd dot bbc dot co dot uk>
2354
2355         * ext/metadata/metadataexif.c: (metadataparse_handle_unit_tags):
2356         * ext/metadata/metadataxmp.c:
2357         (metadataparse_xmp_iter_add_to_tag_list):
2358         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_start):
2359         * ext/timidity/gstwildmidi.c: (gst_wildmidi_loop):
2360         Don't use declarations after statements.
2361
2362 2008-07-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2363
2364         patch by: Alessandro Decina
2365
2366         * gst/mpegtsparse/mpegtsparse.c:
2367         Fix memory leak by unreffing structures when not needed.
2368         Fixes #539292.
2369
2370 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
2371
2372         * gst/sdp/gstsdpdemux.c:
2373           Use floating point math for latencies < 0 sec in log output.
2374
2375 2008-07-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2376
2377         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
2378         Mark internal processing functions as static inline for quite some
2379         speedup as they're used only once and need to get many local variables
2380         passed as parameter.
2381
2382 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2383
2384         * gst/deinterlace2/gstdeinterlace2.c:
2385         (gst_deinterlace_method_deinterlace_frame),
2386         (gst_deinterlace2_set_method), (gst_deinterlace2_init),
2387         (gst_deinterlace2_reset_history), (gst_deinterlace2_reset),
2388         (gst_deinterlace2_set_property), (gst_deinterlace2_get_property),
2389         (gst_deinterlace2_pop_history), (gst_deinterlace2_head_history),
2390         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2391         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
2392         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
2393         (gst_deinterlace2_src_query):
2394         * gst/deinterlace2/gstdeinterlace2.h:
2395         Call the current instance "self" instead of "object".
2396
2397 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2398
2399         * gst/deinterlace2/gstdeinterlace2.c:
2400         (gst_deinterlace_method_get_latency),
2401         (gst_deinterlace2_set_method), (gst_deinterlace2_class_init),
2402         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2403         (gst_deinterlace2_setcaps), (gst_deinterlace2_src_query):
2404         * gst/deinterlace2/gstdeinterlace2.h:
2405         Include latency of the method in the returned latency.
2406
2407         Fix outputting of all fields, i.e. doubling of the framerate.
2408
2409 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2410
2411         * gst/deinterlace2/Makefile.am:
2412         * gst/deinterlace2/gstdeinterlace2.c:
2413         (gst_deinterlace_method_class_init), (gst_deinterlace_method_init),
2414         (gst_deinterlace_method_deinterlace_frame),
2415         (gst_deinterlace_method_get_fields_required),
2416         (gst_deinterlace2_methods_get_type), (_do_init),
2417         (gst_deinterlace2_set_method), (gst_deinterlace2_class_init),
2418         (gst_deinterlace2_child_proxy_get_child_by_index),
2419         (gst_deinterlace2_child_proxy_get_children_count),
2420         (gst_deinterlace2_child_proxy_interface_init),
2421         (gst_deinterlace2_init), (gst_deinterlace2_finalize),
2422         (gst_deinterlace2_chain), (gst_deinterlace2_src_query):
2423         * gst/deinterlace2/gstdeinterlace2.h:
2424         * gst/deinterlace2/tvtime/greedy.c:
2425         (deinterlace_greedy_packed422_scanline_c),
2426         (deinterlace_greedy_packed422_scanline_mmx),
2427         (deinterlace_greedy_packed422_scanline_mmxext),
2428         (deinterlace_frame_di_greedy),
2429         (gst_deinterlace_method_greedy_l_set_property),
2430         (gst_deinterlace_method_greedy_l_get_property),
2431         (gst_deinterlace_method_greedy_l_class_init),
2432         (gst_deinterlace_method_greedy_l_init):
2433         * gst/deinterlace2/tvtime/greedyh.asm:
2434         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C),
2435         (deinterlace_frame_di_greedyh),
2436         (gst_deinterlace_method_greedy_h_set_property),
2437         (gst_deinterlace_method_greedy_h_get_property),
2438         (gst_deinterlace_method_greedy_h_class_init),
2439         (gst_deinterlace_method_greedy_h_init):
2440         * gst/deinterlace2/tvtime/greedyh.h:
2441         * gst/deinterlace2/tvtime/plugins.h:
2442         * gst/deinterlace2/tvtime/tomsmocomp.c:
2443         (gst_deinterlace_method_tomsmocomp_set_property),
2444         (gst_deinterlace_method_tomsmocomp_get_property),
2445         (gst_deinterlace_method_tomsmocomp_class_init),
2446         (gst_deinterlace_method_tomsmocomp_init):
2447         * gst/deinterlace2/tvtime/tomsmocomp.h:
2448         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2449         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir),
2450         (gst_deinterlace_method_vfir_class_init),
2451         (gst_deinterlace_method_vfir_init):
2452         Use a GstObject subtype for the deinterlacing methods and export
2453         the different settings for each deinterlacing method via GObject
2454         properties.
2455
2456         Implement GstChildProxy interface to allow access to the used
2457         deinterlacing method and to allow adjusting the different settings.
2458
2459         Move global variables of the tomsmocomp deinterlacing method into
2460         function local variables to make it possible to use this deinterlacing
2461         method from different instances.
2462
2463 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2464
2465         * gst/deinterlace2/tvtime/greedyh.asm:
2466         Support widths that are not a multiply of 4 when using the assembly
2467         optimized greedyh implementations.
2468
2469 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2470
2471         * gst/deinterlace2/tvtime/greedyh.c:
2472         (deinterlace_frame_di_greedyh):
2473         Only build the assembly optimized implementations on x86.
2474
2475 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2476
2477         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2478
2479         * configure.ac:
2480         Fix checking of headers for the OSS4 plugin to fail if a single
2481         header doesn't exist already. AC_CHECK_HEADERS only fails if none
2482         of the headers is found. Fixes bug #541543.
2483
2484 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2485
2486         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2487
2488         * configure.ac:
2489         * gst/festival/Makefile.am:
2490         * gst/festival/gstfestival.c:
2491         Fix built of the festival plugin with mingw32 by linking to ws2_32.dll
2492         and including winsock headers. Fixes bug #541522.
2493
2494 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2495
2496         * ChangeLog:
2497         * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_loop):
2498         * gst/rtpmanager/rtpsource.c: (rtp_source_get_new_sr):
2499         Corrected a typo (interpollate -> interpolate).
2500
2501 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2502
2503         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
2504         (gst_rtp_session_send_rtp), (gst_rtp_session_send_rtcp),
2505         (gst_rtp_session_sync_rtcp), (gst_rtp_session_chain_recv_rtp),
2506         (gst_rtp_session_chain_recv_rtcp), (gst_rtp_session_chain_send_rtp):
2507         * gst/rtpmanager/rtpsession.c: (source_push_rtp),
2508         (rtp_session_send_rtp):
2509         * gst/rtpmanager/rtpsource.c: (push_packet), (calculate_jitter),
2510         (rtp_source_process_rtp), (rtp_source_send_rtp):
2511         Changed some GST_DEBUG() to GST_LOG() to reduce the spam when a
2512         pipeline is running normally.
2513
2514 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2515
2516         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_init),
2517         (gst_rtp_session_finalize), (rtcp_thread),
2518         (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_recv_rtcp),
2519         (gst_rtp_session_event_send_rtp_sink),
2520         (gst_rtp_session_chain_send_rtp):
2521         * gst/rtpmanager/rtpsession.c: (check_collision),
2522         (update_arrival_stats), (rtp_session_process_rtp),
2523         (rtp_session_process_rtcp), (rtp_session_send_rtp),
2524         (rtp_session_send_bye_locked), (rtp_session_send_bye),
2525         (rtp_session_next_timeout), (session_report_blocks), (session_cleanup),
2526         (is_rtcp_time), (rtp_session_on_timeout):
2527         * gst/rtpmanager/rtpsession.h:
2528         Do not mix the use of g_get_current_time() with gst_clock_get_time().
2529
2530 2008-07-01  Jan Schmidt  <jan.schmidt@sun.com>
2531
2532         * gst/mpegvideoparse/mpegvideoparse.c:
2533         * gst/mpegvideoparse/mpegvideoparse.h:
2534         Queue new-segment events and send them after caps have been
2535         determined and set, so that the decoder will have been auto-plugged.
2536
2537 2008-07-01  Edward Hervey  <edward.hervey@collabora.co.uk>
2538
2539         Patch by : Michael Smith <msmith @ xiph dot org>
2540         
2541         * sys/qtwrapper/audiodecoders.c: (qtwrapper_audio_decoder_init),
2542         (clear_AudioStreamBasicDescription), (fill_indesc_mp3),
2543         (fill_indesc_aac), (make_samr_magic_cookie), (write_len),
2544         (make_aac_magic_cookie), (open_decoder), (process_buffer_cb),
2545         (qtwrapper_audio_decoder_chain),
2546         (qtwrapper_audio_decoder_sink_event),
2547         (qtwrapper_audio_decoder_base_init),
2548         (qtwrapper_audio_decoder_class_init),
2549         (qtwrapper_audio_decoders_register):
2550         * sys/qtwrapper/codecmapping.h:
2551         * sys/qtwrapper/imagedescription.c: (image_description_for_avc1),
2552         (image_description_for_mp4v), (image_description_from_stsd_buffer):
2553         * sys/qtwrapper/imagedescription.h:
2554         * sys/qtwrapper/qtutils.c: (get_name_info_from_component),
2555         (dump_avcc_atom), (dump_image_description),
2556         (AllocateAudioBufferList):
2557         * sys/qtwrapper/qtutils.h:
2558         * sys/qtwrapper/qtwrapper.c: (plugin_init):
2559         * sys/qtwrapper/qtwrapper.h:
2560         * sys/qtwrapper/videodecoders.c:
2561         (qtwrapper_video_decoder_base_init), (open_decoder),
2562         (decompressCb), (qtwrapper_video_decoder_chain),
2563         (qtwrapper_video_decoders_register):
2564         Make qtwrapper compile/work on win32.
2565         Lots of fixes
2566         Fixes #531840
2567
2568 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
2569
2570         * gst/rawparse/gstvideoparse.c:
2571         Fix size calculation for RGB buffers -> bpp is in bits, so divide by 8
2572
2573 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2574
2575         * gst/deinterlace2/Makefile.am:
2576         * gst/deinterlace2/tvtime/tomsmocomp.c: (tomsmocomp_init),
2577         (tomsmocomp_filter_mmx), (tomsmocomp_filter_3dnow),
2578         (tomsmocomp_filter_sse), (deinterlace_frame_di_tomsmocomp):
2579         * gst/deinterlace2/tvtime/tomsmocomp.h:
2580         Remove useless file and mark everything possible as static.
2581
2582         * gst/deinterlace2/tvtime/greedy.c:
2583         * gst/deinterlace2/tvtime/greedyh.c:
2584         Use "_stdint.h" instead of <stdint.h>.
2585
2586 2008-06-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2587
2588         * gst/deinterlace2/Makefile.am:
2589         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_init):
2590         * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy):
2591         * gst/deinterlace2/tvtime/greedyh.c:
2592         (deinterlace_frame_di_greedyh):
2593         * gst/deinterlace2/tvtime/speedtools.h:
2594         * gst/deinterlace2/tvtime/speedy.c:
2595         * gst/deinterlace2/tvtime/speedy.h:
2596         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy):
2597         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2598         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir):
2599         Get rid of speedy.[ch] as we don't use most of it's code anyway
2600         and it doesn't seem to be relicensed to LGPL. Use memcpy() instead
2601         of the speedy memcpy everywhere instead.
2602         
2603         * gst/deinterlace2/gstdeinterlace2.h:
2604         Remove many unused declarations.
2605
2606 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2607
2608         * ext/mpeg2enc/gstmpeg2encoptions.cc:
2609         * ext/mpeg2enc/gstmpeg2encoptions.hh:
2610         Expose the additional MPEG HDTV format profiles available in latest
2611         mjpegtools version.
2612
2613 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2614
2615         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_src_query):
2616         Divide latency be 2 to convert from fields to frames.
2617
2618 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2619
2620         * gst/deinterlace2/tvtime/greedy.c:
2621         (deinterlace_greedy_packed422_scanline_c),
2622         (deinterlace_greedy_packed422_scanline_mmx),
2623         (deinterlace_greedy_packed422_scanline_mmxext),
2624         (deinterlace_frame_di_greedy):
2625         Don't use scanlines function from gstdeinterlace2 as it's
2626         not appropiate for this method. Instead implement deinterlace_frame
2627         function by taking the one from greedyh.
2628         
2629         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C):
2630         Small fix for the C implementation.
2631
2632         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir):
2633         Don't use the scanlines function from gstdeinterlace2 as it's only
2634         used for this method and will be removed. Instead implement
2635         deinterlace_frame function and make it a bit more efficient.
2636
2637         * gst/deinterlace2/gstdeinterlace2.c:
2638         (gst_deinterlace2_class_init), (gst_deinterlace2_set_method),
2639         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2640         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
2641         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
2642         (gst_deinterlace2_src_query):
2643         Fix coding style and remove scanlines function as it's unused now.
2644
2645 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2646
2647         * gst/deinterlace2/tvtime/greedyh.asm:
2648         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C),
2649         (deinterlace_frame_di_greedyh), (dscaler_greedyh_get_method):
2650         * gst/deinterlace2/tvtime/greedyhmacros.h:
2651         Add a C implementation for the greedyh deinterlacing method, clean
2652         up the code a bit and mark the SSE version as MMXEXT as it doesn't
2653         require any SSE instructions.
2654
2655 2008-06-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2656
2657         * gst/deinterlace2/gstdeinterlace2.c:
2658         (gst_deinterlace2_set_property), (gst_deinterlace2_chain),
2659         (gst_deinterlace2_setcaps):
2660         If we're outputting all fields the framerate has to be doubled.
2661
2662         Set duration on the outgoing buffers.
2663
2664 2008-06-26  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2665
2666         * docs/plugins/Makefile.am:
2667         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2668         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2669         * gst/y4m/gsty4mencode.c:
2670         Add documentation for YUV4MPEG2 encoder element.
2671
2672 2008-06-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2673
2674         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2675         Remove unneeded macros that break build on macosx.
2676
2677 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
2678
2679         * configure.ac:
2680           Depend on released versions of core and -base.
2681
2682 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2683
2684         * gst/deinterlace2/tvtime/greedy.c:
2685         (deinterlace_greedy_packed422_scanline_mmx),
2686         (deinterlace_greedy_packed422_scanline_mmxext):
2687         Optimize MMX/MMXEXT implementations a bit by requiring two less
2688         memory accesses and fix the workaround for the missing right shift
2689         on bytes to unset the highest bit of every byte.
2690
2691 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2692
2693         * gst/deinterlace2/tvtime/greedy.c:
2694         (deinterlace_greedy_packed422_scanline_mmxext):
2695         Remove sfence instruction as it's not needed and actually is an SSE
2696         instruction.
2697
2698 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2699
2700         * gst/deinterlace2/tvtime/greedy.c:
2701         (deinterlace_greedy_packed422_scanline_mmx),
2702         (deinterlace_greedy_packed422_scanline):
2703         Add plain MMX implementation for the greedyl method.
2704
2705 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2706
2707         * gst/deinterlace2/Makefile.am:
2708         Move the assembly includes to noinst_HEADERS where they belong.
2709
2710         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
2711         (deinterlace_line_mmx):
2712         Fix C and MMX implementations a bit more.
2713
2714 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2715
2716         * gst/deinterlace2/tvtime/greedy.c:
2717         (deinterlace_greedy_packed422_scanline_c),
2718         (deinterlace_greedy_packed422_scanline_mmxext),
2719         (deinterlace_greedy_packed422_scanline):
2720         Fix the C implementation to produce correct results and optimize the
2721         MMXEXT implementation.
2722
2723         Handle odd widths and don't read over array boundaries in the MMXEXT
2724         implementation.
2725
2726         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
2727         (deinterlace_line_mmx), (deinterlace_scanline_vfir):
2728         Fix a small rounding bug in the MMX implementation, the MMX
2729         implementation doesn't actually need MMXEXT instructions so don't mark
2730         it as such.
2731
2732         Handle odd widths in both implementations.
2733
2734 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
2735
2736         * ext/resindvd/rsnbasesrc.c:
2737           Use the right i18n header.
2738
2739 2008-06-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2740
2741         * gst/deinterlace2/tvtime/greedy.c:
2742         (deinterlace_greedy_packed422_scanline_sse),
2743         (deinterlace_greedy_packed422_scanline_c),
2744         (deinterlace_greedy_packed422_scanline):
2745         Implement a C version of the greedy low motion algorithm and mark the
2746         assembly optimized version as SSE as it uses SSE instructions
2747         additional to MMX instructions.
2748
2749 2008-06-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2750
2751         Patch by: Sebastian Pölsterl
2752
2753         * gst/mpegtsparse/mpegtspacketizer.c:
2754         Fix problem when empty string is provided.
2755
2756 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2757
2758         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_mmxext),
2759         (deinterlace_line_c), (deinterlace_scanline_vfir):
2760         Make it possible to use the vfir method on X86 CPUs without MMXEXT too
2761         but use the MMXEXT optimized code whenever possible.
2762
2763 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2764
2765         * gst/deinterlace2/gstdeinterlace2.c:
2766         (gst_deinterlace2_class_init), (gst_deinterlace2_init),
2767         (gst_deinterlace2_reset_history), (gst_deinterlace2_reset),
2768         (gst_deinterlace2_finalize), (gst_deinterlace2_chain),
2769         (gst_deinterlace2_sink_event), (gst_deinterlace2_change_state),
2770         (gst_deinterlace2_src_query):
2771         * gst/deinterlace2/gstdeinterlace2.h:
2772         Reset element state on PAUSED->READY properly, don't leak any buffers
2773         when finalizing, allocate buffers with gst_pad_alloc_buffer() and
2774         properly return flow returns from gst_pad_push() instead of ignoring them.
2775
2776 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2777
2778         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2779         Add missing header.
2780
2781 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2782
2783         * configure.ac:
2784         * gst/deinterlace2/Makefile.am:
2785         * gst/deinterlace2/tvtime/greedyh.asm:
2786         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
2787         Fix compilation on generic x86/amd64 and include deinterlace2 in the
2788         build system. Because of several bugs it's still enabled only
2789         by --enable-experimental.
2790
2791 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
2792
2793         * ext/resindvd/resindvdsrc.c:
2794         * ext/resindvd/resindvdsrc.h:
2795         Schedule NAV packets and activate them with an async clock callback
2796         at the right moment. This makes delayed menu highlights appear
2797         at the correct time and fixes Back To The Future.
2798
2799         When outputting new segment in do_seek(), calculate our position
2800         value properly, so we report the right time when popping in and
2801         out of the menus.
2802
2803         * ext/resindvd/rsnbasesrc.c:
2804         When handling a non-flushing seek, accumulate the segment,
2805         rather than having every seek start from 0 and messing with sync
2806
2807 2008-06-19  Stefan Kost  <ensonic@users.sf.net>
2808
2809         * gst/selector/gstoutputselector.c:
2810         * tests/icles/output-selector-test.c:
2811           Use BOILERPLATE macro and update test to the latest api changes.
2812
2813 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
2814
2815         * examples/app/appsink-src.c: (on_new_buffer_from_source):
2816         Don't use a buffer after unreffing it.
2817
2818 2008-06-18  Stefan Kost  <ensonic@users.sf.net>
2819
2820         * ext/metadata/metadataexif.c:
2821           Add description tag mapping.
2822
2823 2008-06-18  Stefan Kost  <ensonic@users.sf.net>
2824
2825         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2826         * examples/app/appsrc-ra.c:
2827         * examples/app/appsrc-seekable.c:
2828         * examples/app/appsrc-stream.c:
2829         * examples/app/appsrc-stream2.c:
2830         * ext/directfb/dfbvideosink.h:
2831         * ext/metadata/gstbasemetadata.c:
2832         * ext/metadata/gstbasemetadata.h:
2833         * ext/metadata/metadata.c:
2834         * ext/metadata/metadataexif.c:
2835         * ext/theora/theoradec.h:
2836         * gst/deinterlace2/gstdeinterlace2.h:
2837         * gst/deinterlace2/tvtime/speedy.c:
2838         * gst/deinterlace2/tvtime/speedy.h:
2839         * gst/deinterlace2/tvtime/vfir.c:
2840          Fix gtk-doc warnings. Also don't misuse api-doc comments for normal
2841          comments.
2842
2843 2008-06-17  Jan Schmidt  <jan.schmidt@sun.com>
2844
2845         * ext/resindvd/resindvdbin.c:
2846         Parse the URI argument into the device name so dvd:///path/to/image
2847         works.
2848
2849         * ext/resindvd/resindvdsrc.c:
2850         Implement a trivial duration query reporting the current PGC length.
2851
2852         * gst/dvdspu/gstdvdspu.c:
2853         Rename typo in the function name.
2854
2855 2008-06-17  Sebastian Dröge  <slomo@circular-chaos.org>
2856
2857         * configure.ac:
2858         Disable deinterlace2 plugin again which was accidently enabled
2859         with last commit.
2860
2861 2008-06-17  Sebastian Dröge  <slomo@circular-chaos.org>
2862
2863         * configure.ac:
2864         * ext/resindvd/resindvdsrc.h:
2865         Make resindvd work with libdvdnav >= 4.0.0.
2866
2867 2008-06-17  Jan Schmidt  <thaytan@noraisin.net>
2868
2869         * configure.ac:
2870         Check for libdvdnav to build resindvd.
2871
2872         * ext/Makefile.am:
2873         * ext/resindvd/Makefile.am:
2874         * ext/resindvd/gstmpegdefs.h:
2875         * ext/resindvd/gstmpegdemux.c:
2876         * ext/resindvd/gstmpegdemux.h:
2877         * ext/resindvd/gstmpegdesc.c:
2878         * ext/resindvd/gstmpegdesc.h:
2879         * ext/resindvd/gstpesfilter.c:
2880         * ext/resindvd/gstpesfilter.h:
2881         * ext/resindvd/plugin.c:
2882         * ext/resindvd/resin-play:
2883         * ext/resindvd/resindvdbin.c:
2884         * ext/resindvd/resindvdbin.h:
2885         * ext/resindvd/resindvdsrc.c:
2886         * ext/resindvd/resindvdsrc.h:
2887         * ext/resindvd/rsnaudiomunge.c:
2888         * ext/resindvd/rsnaudiomunge.h:
2889         * ext/resindvd/rsnbasesrc.c:
2890         * ext/resindvd/rsnbasesrc.h:
2891         * ext/resindvd/rsnpushsrc.c:
2892         * ext/resindvd/rsnpushsrc.h:
2893         * ext/resindvd/rsnstreamselector.c:
2894         * ext/resindvd/rsnstreamselector.h:
2895
2896         First commit of DVD-Video playback component 'rsndvdbin'
2897         and helper elements.
2898
2899         Use --enable-experimental for now, but feel free to give it a
2900         try using the resin-play script.
2901
2902         * gst/dvdspu/gstdvdspu.c:
2903         Add some extra guards for malformed events.
2904
2905 2008-06-16  David Schleef  <ds@schleef.org>
2906
2907         * configure.ac:
2908         Bump dirac requirement to 0.10 due to api changes.
2909
2910 2008-06-16  Andy Wingo  <wingo@pobox.com>
2911
2912         * gst-libs/gst/app/gstappsrc.c (gst_app_src_set_max_bytes)
2913         (gst_app_src_get_max_bytes, gst_app_src_push_buffer): Use
2914         G_GUINT64_FORMAT. Avoid overflow in get_max_bytes().
2915
2916 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2917
2918         * sys/dvb/gstdvbsrc.c:
2919           Move docblob upwards. Balance tags and restore blank line.
2920
2921 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2922
2923         * sys/dvb/gstdvbsrc.c:
2924         Fix out of date docs.
2925
2926 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2927
2928         Patch from: Vincent Genieux
2929
2930         * gst/mpegtsparse/mpegtsparse.c:
2931         Fix refcount issues, fixes #538560.
2932
2933 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2934
2935         * gst/mpegtsparse/gstmpegdesc.h:
2936         * gst/mpegtsparse/mpegtspacketizer.c:
2937         Parse the extended event descriptor.
2938
2939 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2940
2941         * gst/rtpmanager/gstrtpjitterbuffer.c:
2942         * gst/speed/gstspeed.c:
2943         * gst/speexresample/gstspeexresample.c:
2944         * gst/videosignal/gstvideoanalyse.c:
2945         * gst/videosignal/gstvideodetect.c:
2946         * gst/videosignal/gstvideomark.c:
2947         * sys/dvb/gstdvbsrc.c:
2948         * sys/oss4/oss4-mixer.c:
2949         * sys/oss4/oss4-sink.c:
2950         * sys/oss4/oss4-source.c:
2951         * sys/wininet/gstwininetsrc.c:
2952           Final round of doc updates.
2953
2954 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2955
2956         * gst/deinterlace/gstdeinterlace.c:
2957         * gst/rtpmanager/gstrtpbin.c:
2958         * gst/rtpmanager/gstrtpclient.c:
2959         * gst/rtpmanager/gstrtpjitterbuffer.c:
2960         * gst/rtpmanager/gstrtpptdemux.c:
2961         * gst/rtpmanager/gstrtpsession.c:
2962         * gst/rtpmanager/gstrtpssrcdemux.c:
2963         * gst/sdp/gstsdpdemux.c:
2964           More doc updates. More xrefs.
2965
2966 2008-06-14  Julien Moutte  <julien@fluendo.com>
2967
2968         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
2969         (gst_flv_demux_dispose):
2970         * gst/flv/gstflvdemux.h:
2971         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate),
2972         (gst_flv_parse_tag_audio), (gst_flv_parse_video_negotiate),
2973         (gst_flv_parse_tag_video): Introduce demuxing support for AAC and
2974         H.264/AVC inside FLV.
2975         * sys/dshowdecwrapper/gstdshowaudiodec.c: (gst_dshowaudiodec_init),
2976         (gst_dshowaudiodec_chain), (gst_dshowaudiodec_push_buffer),
2977         (gst_dshowaudiodec_sink_event), (gst_dshowaudiodec_setup_graph):
2978         * sys/dshowdecwrapper/gstdshowaudiodec.h:
2979         * sys/dshowdecwrapper/gstdshowvideodec.c: (gst_dshowvideodec_init),
2980         (gst_dshowvideodec_sink_event), (gst_dshowvideodec_chain),
2981         (gst_dshowvideodec_push_buffer), (gst_dshowvideodec_src_getcaps):
2982         * sys/dshowdecwrapper/gstdshowvideodec.h: Lot of random fixes 
2983         to improve stability (ref counting, safety checks...)
2984
2985 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2986
2987         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_probe_modules):
2988         Disable sipro on 64bits, it crashes.
2989
2990 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2991
2992         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
2993         (close_library), (open_library),
2994         (gst_real_audio_dec_probe_modules), (gst_real_audio_dec_getcaps),
2995         (gst_real_audio_dec_setcaps), (gst_real_audio_dec_init),
2996         (gst_real_audio_dec_change_state), (gst_real_audio_dec_finalize):
2997         Add raversions we can support on the caps.
2998         Refactor the loading of the real codecs like realvideo so that we can
2999         implement probing.
3000         Probe all supported formats by trying to load the .so files, only report
3001         the versions on the caps that we can actually load.
3002
3003         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
3004         (gst_real_video_dec_getcaps), (gst_real_video_dec_setcaps),
3005         (open_library), (close_library),
3006         (gst_real_video_dec_probe_modules),
3007         (gst_real_video_dec_change_state), (gst_real_video_dec_init),
3008         (gst_real_video_dec_finalize), (gst_real_video_dec_class_init):
3009         * gst/real/gstrealvideodec.h:
3010         Change the loading of the library like the audio decoder.
3011         Probe the supported formats by trying to load the .so files and only
3012         report the versions on the caps that we can actually load.
3013
3014 2008-06-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
3015
3016         patch by: Sebastian Pölsterl
3017
3018         * gst/mpegtsparse/mpegtspacketizer.c:
3019         Handle character sets in strings coming from DVB SI according
3020         to the DVB SI spec.
3021
3022 2008-06-13  Stefan Kost  <ensonic@users.sf.net>
3023
3024         * gst/replaygain/gstrganalysis.c:
3025         * gst/replaygain/gstrglimiter.c:
3026         * gst/replaygain/gstrgvolume.c:
3027           More doc updates.
3028
3029 2008-06-13  Stefan Kost  <ensonic@users.sf.net>
3030
3031         * docs/plugins/Makefile.am:
3032         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
3033         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
3034         * docs/plugins/gst-plugins-bad-plugins.args:
3035         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
3036         * docs/plugins/gst-plugins-bad-plugins.interfaces:
3037         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
3038         * docs/plugins/gst-plugins-bad-plugins.signals:
3039         * docs/plugins/inspect/plugin-alsaspdif.xml:
3040         * docs/plugins/inspect/plugin-amrwb.xml:
3041         * docs/plugins/inspect/plugin-app.xml:
3042         * docs/plugins/inspect/plugin-bayer.xml:
3043         * docs/plugins/inspect/plugin-bz2.xml:
3044         * docs/plugins/inspect/plugin-cdaudio.xml:
3045         * docs/plugins/inspect/plugin-cdxaparse.xml:
3046         * docs/plugins/inspect/plugin-dtsdec.xml:
3047         * docs/plugins/inspect/plugin-dvb.xml:
3048         * docs/plugins/inspect/plugin-dvdspu.xml:
3049         * docs/plugins/inspect/plugin-faac.xml:
3050         * docs/plugins/inspect/plugin-faad.xml:
3051         * docs/plugins/inspect/plugin-fbdevsink.xml:
3052         * docs/plugins/inspect/plugin-festival.xml:
3053         * docs/plugins/inspect/plugin-filter.xml:
3054         * docs/plugins/inspect/plugin-flvdemux.xml:
3055         * docs/plugins/inspect/plugin-freeze.xml:
3056         * docs/plugins/inspect/plugin-gsm.xml:
3057         * docs/plugins/inspect/plugin-gstinterlace.xml:
3058         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
3059         * docs/plugins/inspect/plugin-h264parse.xml:
3060         * docs/plugins/inspect/plugin-interleave.xml:
3061         * docs/plugins/inspect/plugin-jack.xml:
3062         * docs/plugins/inspect/plugin-ladspa.xml:
3063         * docs/plugins/inspect/plugin-metadata.xml:
3064         * docs/plugins/inspect/plugin-mms.xml:
3065         * docs/plugins/inspect/plugin-modplug.xml:
3066         * docs/plugins/inspect/plugin-mpeg2enc.xml:
3067         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
3068         * docs/plugins/inspect/plugin-mpegtsparse.xml:
3069         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
3070         * docs/plugins/inspect/plugin-musepack.xml:
3071         * docs/plugins/inspect/plugin-musicbrainz.xml:
3072         * docs/plugins/inspect/plugin-mve.xml:
3073         * docs/plugins/inspect/plugin-mythtv.xml
3074         * docs/plugins/inspect/plugin-nas.xml:
3075         * docs/plugins/inspect/plugin-neon.xml:
3076         * docs/plugins/inspect/plugin-nsfdec.xml:
3077         * docs/plugins/inspect/plugin-nuvdemux.xml:
3078         * docs/plugins/inspect/plugin-oss4.xml
3079         * docs/plugins/inspect/plugin-rawparse.xml:
3080         * docs/plugins/inspect/plugin-real.xml:
3081         * docs/plugins/inspect/plugin-replaygain.xml:
3082         * docs/plugins/inspect/plugin-rfbsrc.xml:
3083         * docs/plugins/inspect/plugin-sdl.xml:
3084         * docs/plugins/inspect/plugin-sdp.xml:
3085         * docs/plugins/inspect/plugin-selector.xml:
3086         * docs/plugins/inspect/plugin-sndfile.xml:
3087         * docs/plugins/inspect/plugin-soundtouch.xml:
3088         * docs/plugins/inspect/plugin-spcdec.xml:
3089         * docs/plugins/inspect/plugin-speed.xml:
3090         * docs/plugins/inspect/plugin-speexresample.xml:
3091         * docs/plugins/inspect/plugin-stereo.xml:
3092         * docs/plugins/inspect/plugin-subenc.xml
3093         * docs/plugins/inspect/plugin-timidity.xml:
3094         * docs/plugins/inspect/plugin-tta.xml:
3095         * docs/plugins/inspect/plugin-vcdsrc.xml:
3096         * docs/plugins/inspect/plugin-videosignal.xml:
3097         * docs/plugins/inspect/plugin-vmnc.xml:
3098         * docs/plugins/inspect/plugin-wildmidi.xml:
3099         * docs/plugins/inspect/plugin-x264.xml:
3100         * docs/plugins/inspect/plugin-xvid.xml:
3101         * docs/plugins/inspect/plugin-y4menc.xml:
3102         * ext/amrwb/gstamrwbdec.c:
3103         * ext/amrwb/gstamrwbenc.c:
3104         * ext/amrwb/gstamrwbparse.c:
3105         * ext/dc1394/gstdc1394.c:
3106         * ext/directfb/dfbvideosink.c:
3107         * ext/ivorbis/vorbisdec.c:
3108         * ext/jack/gstjackaudiosink.c:
3109         * ext/mpeg2enc/gstmpeg2enc.cc:
3110         * ext/mplex/gstmplex.cc:
3111         * ext/musicbrainz/gsttrm.c:
3112         * ext/mythtv/gstmythtvsrc.c:
3113         * ext/theora/theoradec.c:
3114         * ext/timidity/gsttimidity.c:
3115         * ext/timidity/gstwildmidi.c:
3116         * gst-libs/gst/app/gstappsink.c:
3117         * gst/deinterlace/gstdeinterlace.c:
3118         * gst/dvdspu/gstdvdspu.c:
3119         * gst/festival/gstfestival.c:
3120         * gst/freeze/gstfreeze.c:
3121         * gst/interleave/deinterleave.c:
3122         * gst/interleave/interleave.c:
3123         * gst/modplug/gstmodplug.cc:
3124         * gst/nuvdemux/gstnuvdemux.c:
3125           Add missing elements to docs. Fix doc-markup: use convinience syntax
3126           for examples (produces valid docbook), add several refsec2 when we
3127           have several titles. Fix some types.
3128
3129 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3130
3131         * examples/app/.cvsignore:
3132         * examples/app/Makefile.am:
3133         * examples/app/appsink-src.c: (on_new_buffer_from_source),
3134         (on_source_message), (on_sink_message), (main):
3135         Add beefed up example app from bug #413418. It now also uses appsink
3136         instead of fakesink for more ultimate coolness.
3137
3138         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
3139         (gst_app_src_init), (gst_app_src_set_property),
3140         (gst_app_src_get_property), (gst_app_src_unlock),
3141         (gst_app_src_unlock_stop), (gst_app_src_create),
3142         (gst_app_src_set_max_bytes), (gst_app_src_push_buffer),
3143         (gst_app_src_end_of_stream):
3144         * gst-libs/gst/app/gstappsrc.h:
3145         Add block property to allow push based implementation to block when we
3146         fill up the appsrc queues.
3147         Emit the enough-data signal while releasing our lock.
3148
3149 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3150
3151         * examples/app/.cvsignore:
3152           Ignore more.
3153
3154 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3155
3156         * ext/dc1394/gstdc1394.c:
3157         * ext/ivorbis/vorbisdec.c:
3158         * ext/jack/gstjackaudiosink.c:
3159         * ext/metadata/gstmetadatademux.c:
3160         * ext/mythtv/gstmythtvsrc.c:
3161         * ext/theora/theoradec.c:
3162         * gst-libs/gst/app/gstappsink.c:
3163         * gst/bayer/gstbayer2rgb.c:
3164         * gst/deinterlace/gstdeinterlace.c:
3165         * gst/rawparse/gstaudioparse.c:
3166         * gst/rawparse/gstvideoparse.c:
3167         * gst/rtpmanager/gstrtpbin.c:
3168         * gst/rtpmanager/gstrtpclient.c:
3169         * gst/rtpmanager/gstrtpjitterbuffer.c:
3170         * gst/rtpmanager/gstrtpptdemux.c:
3171         * gst/rtpmanager/gstrtpsession.c:
3172         * gst/rtpmanager/gstrtpssrcdemux.c:
3173         * gst/selector/gstinputselector.c:
3174         * gst/selector/gstoutputselector.c:
3175         * gst/videosignal/gstvideoanalyse.c:
3176         * gst/videosignal/gstvideodetect.c:
3177         * gst/videosignal/gstvideomark.c:
3178         * sys/oss4/oss4-mixer.c:
3179         * sys/oss4/oss4-sink.c:
3180         * sys/oss4/oss4-source.c:
3181           Do not use short_description in section docs for elements. We extract
3182           them from element details and there will be warnings if they differ.
3183           Also fixing up the ChangeLog order.
3184
3185 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3186
3187         Patch by: Sebastien Merle <sylane at gmail dot com>
3188
3189         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_chain):
3190         Fix the sign of the data we pass to the decoder so that the decoder
3191         compiles with newer reference code as well. Fixes #528618.
3192
3193 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3194
3195         * tests/icles/test-oss4.c:
3196           Include stdlib.h.
3197
3198 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3199
3200         Based on a patch by: Martin Eikermann <meiker at upb dot de>
3201
3202         * gst/deinterlace2/Makefile.am:
3203         * gst/deinterlace2/gstdeinterlace2.c:
3204         (gst_deinterlace2_method_get_type),
3205         (gst_deinterlace2_fields_get_type),
3206         (gst_deinterlace2_field_layout_get_type),
3207         (gst_deinterlace2_base_init), (gst_deinterlace2_class_init),
3208         (gst_deinterlace2_init), (gst_deinterlace2_set_method),
3209         (gst_deinterlace2_set_property), (gst_deinterlace2_get_property),
3210         (gst_deinterlace2_finalize), (gst_deinterlace2_pop_history),
3211         (gst_deinterlace2_head_history), (gst_deinterlace2_push_history),
3212         (gst_deinterlace2_deinterlace_scanlines), (gst_deinterlace2_chain),
3213         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
3214         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
3215         (gst_deinterlace2_src_query), (gst_deinterlace2_src_query_types),
3216         (plugin_init):
3217         * gst/deinterlace2/gstdeinterlace2.h:
3218         * gst/deinterlace2/tvtime/greedy.c: (copy_scanline),
3219         (deinterlace_greedy_packed422_scanline_mmxext),
3220         (dscaler_greedyl_get_method):
3221         * gst/deinterlace2/tvtime/greedyh.asm:
3222         * gst/deinterlace2/tvtime/greedyh.c:
3223         (deinterlace_frame_di_greedyh), (dscaler_greedyh_get_method),
3224         (greedyh_init), (greedyh_filter_mmx), (greedyh_filter_3dnow),
3225         (greedyh_filter_sse):
3226         * gst/deinterlace2/tvtime/greedyh.h:
3227         * gst/deinterlace2/tvtime/greedyhmacros.h:
3228         * gst/deinterlace2/tvtime/mmx.h:
3229         * gst/deinterlace2/tvtime/plugins.h:
3230         * gst/deinterlace2/tvtime/speedtools.h:
3231         * gst/deinterlace2/tvtime/speedy.c: (multiply_alpha), (clip255),
3232         (comb_factor_packed422_scanline_mmx),
3233         (diff_factor_packed422_scanline_c),
3234         (diff_factor_packed422_scanline_mmx),
3235         (diff_packed422_block8x8_mmx), (diff_packed422_block8x8_c),
3236         (packed444_to_packed422_scanline_c),
3237         (packed422_to_packed444_scanline_c),
3238         (packed422_to_packed444_rec601_scanline_c),
3239         (vfilter_chroma_121_packed422_scanline_mmx),
3240         (vfilter_chroma_121_packed422_scanline_c),
3241         (vfilter_chroma_332_packed422_scanline_mmx),
3242         (vfilter_chroma_332_packed422_scanline_c),
3243         (kill_chroma_packed422_inplace_scanline_mmx),
3244         (kill_chroma_packed422_inplace_scanline_c),
3245         (invert_colour_packed422_inplace_scanline_mmx),
3246         (invert_colour_packed422_inplace_scanline_c),
3247         (mirror_packed422_inplace_scanline_c),
3248         (interpolate_packed422_scanline_c),
3249         (convert_uyvy_to_yuyv_scanline_mmx),
3250         (convert_uyvy_to_yuyv_scanline_c),
3251         (interpolate_packed422_scanline_mmx),
3252         (interpolate_packed422_scanline_mmxext),
3253         (blit_colour_packed422_scanline_c),
3254         (blit_colour_packed422_scanline_mmx),
3255         (blit_colour_packed422_scanline_mmxext),
3256         (blit_colour_packed4444_scanline_c),
3257         (blit_colour_packed4444_scanline_mmx),
3258         (blit_colour_packed4444_scanline_mmxext), (small_memcpy),
3259         (speedy_memcpy_c), (speedy_memcpy_mmx), (speedy_memcpy_mmxext),
3260         (blit_packed422_scanline_c), (blit_packed422_scanline_mmx),
3261         (blit_packed422_scanline_mmxext),
3262         (composite_colour4444_alpha_to_packed422_scanline_c),
3263         (composite_colour4444_alpha_to_packed422_scanline_mmxext),
3264         (composite_packed4444_alpha_to_packed422_scanline_c),
3265         (composite_packed4444_alpha_to_packed422_scanline_mmxext),
3266         (composite_packed4444_to_packed422_scanline_c),
3267         (composite_packed4444_to_packed422_scanline_mmxext),
3268         (composite_alphamask_to_packed4444_scanline_c),
3269         (composite_alphamask_to_packed4444_scanline_mmxext),
3270         (composite_alphamask_alpha_to_packed4444_scanline_c),
3271         (premultiply_packed4444_scanline_c),
3272         (premultiply_packed4444_scanline_mmxext),
3273         (blend_packed422_scanline_c), (blend_packed422_scanline_mmxext),
3274         (quarter_blit_vertical_packed422_scanline_mmxext),
3275         (quarter_blit_vertical_packed422_scanline_c),
3276         (subpix_blit_vertical_packed422_scanline_c),
3277         (a8_subpix_blit_scanline_c), (myround), (init_RGB_to_YCbCr_tables),
3278         (init_YCbCr_to_RGB_tables), (rgb24_to_packed444_rec601_scanline_c),
3279         (rgba32_to_packed4444_rec601_scanline_c),
3280         (packed444_to_rgb24_rec601_scanline_c),
3281         (packed444_to_nonpremultiplied_packed4444_scanline_c),
3282         (aspect_adjust_packed4444_scanline_c), (setup_speedy_calls),
3283         (speedy_get_accel):
3284         * gst/deinterlace2/tvtime/speedy.h:
3285         * gst/deinterlace2/tvtime/sse.h:
3286         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy),
3287         (deinterlace_frame_di_tomsmocomp), (dscaler_tomsmocomp_get_method),
3288         (tomsmocomp_init), (tomsmocomp_filter_mmx),
3289         (tomsmocomp_filter_3dnow), (tomsmocomp_filter_sse):
3290         * gst/deinterlace2/tvtime/tomsmocomp.h:
3291         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoop0A.inc:
3292         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
3293         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopEdgeA.inc:
3294         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopEdgeA8.inc:
3295         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA.inc:
3296         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA2.inc:
3297         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA6.inc:
3298         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddAH.inc:
3299         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddAH2.inc:
3300         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
3301         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopVA.inc:
3302         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopVAH.inc:
3303         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
3304         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
3305         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
3306         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
3307         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line),
3308         (deinterlace_scanline_vfir), (copy_scanline),
3309         (dscaler_vfir_get_method):
3310         * gst/deinterlace2/tvtime/x86-64_macros.inc:
3311         Add a deinterlacer plugin based on the tvtime/DScaler deinterlacer,
3312         which was relicensed to LGPL for GStreamer and in theory provides
3313         better and faster results than the simple deinterlace element.
3314         Fixes bug #163578.
3315
3316         Ported to GStreamer 0.10 but still not enabled or included in the
3317         build system by default because of bad artefacts caused by a bug
3318         somewhere and as it can be only build on x86/amd64 ATM and requires
3319         special CFLAGS. Will be fixed soon.
3320
3321 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3322
3323         Based on a patch by: Ryan Houdek <Sonicadvance1 at GMAIL dot COM>
3324
3325         * ext/timidity/gstwildmidi.c: (gst_wildmidi_init),
3326         (gst_wildmidi_change_state), (plugin_init):
3327         * ext/timidity/gstwildmidi.h:
3328         Initialize wildmidi only once in the plugin init function instead
3329         of once for every instance. The second and following calls to the
3330         wildmidi initialization function will fail. Fixes bug #525613.
3331
3332         Also don't register the element at all if wildmidi initialization
3333         fails.
3334
3335 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3336
3337         * ext/soundtouch/gstpitch.cc:
3338         Call gst_element_no_more_pads() after all pads are added.
3339
3340 2008-06-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3341
3342         * gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
3343         (gst_raw_parse_loop), (gst_raw_parse_handle_seek_push),
3344         (gst_raw_parse_handle_seek_pull):
3345         Add simple reverse playback.
3346
3347 2008-06-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3348
3349         * gst/rawparse/gstrawparse.c: (gst_raw_parse_reset),
3350         (gst_raw_parse_push_buffer), (gst_raw_parse_chain),
3351         (gst_raw_parse_loop), (gst_raw_parse_sink_activatepull),
3352         (gst_raw_parse_convert), (gst_raw_parse_sink_event),
3353         (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
3354         (gst_raw_parse_src_query), (gst_raw_parse_get_fps):
3355         * gst/rawparse/gstrawparse.h:
3356         Fix seeking, timestamps, duration and some more. Fixes #536309.
3357
3358 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3359
3360         * examples/app/Makefile.am:
3361         * examples/app/appsrc-ra.c: (feed_data), (seek_data),
3362         (found_source), (bus_message), (main):
3363         * examples/app/appsrc-seekable.c: (feed_data), (seek_data),
3364         (found_source), (bus_message), (main):
3365         * examples/app/appsrc-stream2.c: (feed_data), (found_source),
3366         (bus_message), (main):
3367         Added 3 more example application for using appsrc in random-access mode,
3368         pull-mode streaming and pull mode seekable.
3369
3370         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
3371         (gst_app_src_start), (gst_app_src_do_get_size),
3372         (gst_app_src_create):
3373         * gst-libs/gst/app/gstappsrc.h:
3374         Make stream-type property writable.
3375         Unset flushing when starting so that we reuse appsrc.
3376         Inform basesrc about the configured size.
3377         Emit seek-data signal when we are going to a different offset in
3378         random-access mode.
3379
3380 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3381
3382         * examples/app/appsrc-stream.c: (found_source), (main):
3383         Use deep-notify until we can depend on a playbin2 with support for the
3384         source property.
3385
3386 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3387
3388         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_init),
3389         (gst_rtp_bin_finalize), (gst_rtp_bin_change_state):
3390         Fix deadlock when shutting down, use a new lock instead to properly
3391         shutdown.
3392
3393 2008-06-05  Wim Taymans  <wim.taymans@collabora.co.uk>
3394
3395         * examples/app/.cvsignore:
3396         * examples/app/Makefile.am:
3397         * examples/app/appsrc-stream.c: (read_data), (start_feed),
3398         (stop_feed), (found_source), (bus_message), (main):
3399         Added an example on how to use appsrc in playbin in streaming mode from
3400         an mmapped file.
3401
3402         * examples/app/appsrc_ex.c: (main):
3403         Set pipeline to NULL to free queued buffers.
3404
3405         * gst-libs/gst/app/gstapp-marshal.list:
3406         * gst-libs/gst/app/gstappsrc.c: (stream_type_get_type), (_do_init),
3407         (gst_app_src_class_init), (gst_app_src_init),
3408         (gst_app_src_flush_queued), (gst_app_src_dispose),
3409         (gst_app_src_set_property), (gst_app_src_get_property),
3410         (gst_app_src_unlock), (gst_app_src_unlock_stop),
3411         (gst_app_src_start), (gst_app_src_stop), (gst_app_src_is_seekable),
3412         (gst_app_src_check_get_range), (gst_app_src_do_seek),
3413         (gst_app_src_create), (gst_app_src_set_stream_type),
3414         (gst_app_src_get_stream_type), (gst_app_src_set_max_bytes),
3415         (gst_app_src_get_max_bytes), (gst_app_src_push_buffer),
3416         (gst_app_src_end_of_stream), (gst_app_src_uri_get_type),
3417         (gst_app_src_uri_get_protocols), (gst_app_src_uri_get_uri),
3418         (gst_app_src_uri_set_uri), (gst_app_src_uri_handler_init):
3419         * gst-libs/gst/app/gstappsrc.h:
3420         Measure max queue size in bytes instead.
3421         Add support for 3 modes of operation, streaming, seekable and
3422         random-access, making basesrc handle the scheduling modes for each.
3423         Add appsrc:// uri handler so that automatic plugging can be done from
3424         playbin2 or uridecodebin, for example.
3425         Added support for custom segment formats.
3426         Add support for push and pull based operations from the application.
3427         Expand the methods so that errors can be detected.
3428         Flush the queued buffers on seeks and when shutting down.
3429         Add signals to inform the app that a seek must happen.
3430
3431 2008-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
3432
3433         * gst/interleave/deinterleave.c: (gst_deinterleave_add_new_pads),
3434         (gst_deinterleave_src_query):
3435         * gst/interleave/interleave.c: (gst_interleave_src_query_duration),
3436         (gst_interleave_src_query):
3437         Properly implement duration and position queries in bytes format. We
3438         have to take the upstream reply and divide/multiply it by the number
3439         of channels to get the correct result.
3440
3441 2008-06-04  Michael Smith <msmith@songbirdnest.com>
3442
3443         * sys/dshowvideosink/dshowvideofakesrc.cpp:
3444         * sys/dshowvideosink/dshowvideofakesrc.h:
3445         * sys/dshowvideosink/dshowvideosink.cpp:
3446         * sys/dshowvideosink/dshowvideosink.h:
3447           Fix up copyright notice on new plugin.
3448
3449 2008-06-04  David Schleef  <ds@schleef.org>
3450
3451         * ext/dirac/gstdiracenc.cc: Update properties for recent
3452           dirac changes.  Patch from Jonathan Rosser.
3453
3454 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
3455
3456         * ext/x264/gstx264enc.c: (gst_x264_enc_header_buf),
3457           (gst_x264_enc_sink_event), (gst_x264_enc_chain),
3458           (gst_x264_enc_encode_frame):
3459           Try harder not to crash when we get an EOS event but haven't set
3460           up the encoder yet (as may happen when upstream errors out with
3461           not-negotiated, for example). Also, always push the EOS event
3462           downstream.
3463
3464 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
3465
3466         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3467         (gst_interleave_pad_get_property), (gst_interleave_pad_class_init),
3468         (gst_interleave_request_new_pad), (gst_interleave_release_pad):
3469         * gst/interleave/interleave.h:
3470         Use an always increasing integer for the number in the name of the
3471         requested sink pads to guarantuee a unique name. Add a "channel"
3472         property to GstInterleavePad to make it possible for applications
3473         to retrieve the channel number in the output for every pad.
3474
3475         Use g_type_register_static_simple() instead of
3476         g_type_register_static() to save some relocations.
3477
3478 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3479
3480         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3481         (gst_interleave_change_state):
3482         Stop GstCollectPads before calling the parent's state change function
3483         when going from PAUSED to READY as we otherwise deadlock.
3484         Fixes bug #536258.
3485
3486 2008-06-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3487
3488         * gst/h264parse/gsth264parse.c: (gst_nal_bs_init),
3489         (gst_h264_parse_sink_setcaps), (gst_h264_parse_chain_forward),
3490         (gst_h264_parse_queue_buffer), (gst_h264_parse_chain_reverse),
3491         (gst_h264_parse_chain):
3492         * gst/h264parse/gsth264parse.h:
3493         Parse codec_data and use the nalu_size_length field to get the NALU
3494         length in packetized h264.
3495         When queueing a packetized buffer in reverse mode, don't unref the
3496         buffer twice.
3497         Avoid accessing the buffer TIMESTAMP field after we pushed it on
3498         the adaptor.
3499
3500 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3501
3502         * gst/interleave/interleave.c:
3503         (gst_interleave_check_channel_positions),
3504         (gst_interleave_set_channel_positions),
3505         (gst_interleave_class_init):
3506         Use new gst_audio_check_channel_positions() function and register
3507         the GstInterleavePad type from a threadsafe context.
3508
3509 2008-06-02  Michael Smith <msmith@songbirdnest.com>
3510
3511         * configure.ac:
3512           Revert accidental addition in configure.ac. Sorry.
3513
3514 2008-06-02  Michael Smith <msmith@songbirdnest.com>
3515
3516         * configure.ac:
3517         * sys/Makefile.am:
3518         * sys/dshowvideosink/Makefile.am:
3519         * sys/dshowvideosink/README:
3520         * sys/dshowvideosink/dshowvideofakesrc.cpp:
3521         * sys/dshowvideosink/dshowvideofakesrc.h:
3522         * sys/dshowvideosink/dshowvideosink.cpp:
3523         * sys/dshowvideosink/dshowvideosink.h:
3524         Add a new win32 videosink. Uses the DirectShow renderers for
3525         high-performance video rendering on win32.
3526         Currently only supports some YUV formats.
3527         Rank PRIMARY, since it's much more useful for the common cases that the
3528         directdraw sink (which only does RGB).
3529
3530 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
3531
3532         * ext/spc/Makefile.am:
3533           Dist tag.h
3534
3535 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3536
3537         * ext/faad/gstfaad.c: (gst_faad_sink_event):
3538         Always drain before activating the new segment.
3539
3540 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
3541
3542         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3543         (gst_interleave_finalize), (gst_audio_check_channel_positions),
3544         (gst_interleave_set_channel_positions),
3545         (gst_interleave_class_init), (gst_interleave_init),
3546         (gst_interleave_set_property), (gst_interleave_get_property),
3547         (gst_interleave_request_new_pad), (gst_interleave_release_pad),
3548         (gst_interleave_sink_setcaps), (gst_interleave_src_query_duration),
3549         (gst_interleave_src_query_latency), (gst_interleave_collected):
3550         * gst/interleave/interleave.h:
3551         Allow setting channel positions via a property and allow using the
3552         channel positions on the input as the channel positions of the output.
3553
3554         Fix some broken logic and memory leaks.
3555
3556         * tests/check/Makefile.am:
3557         * tests/check/elements/interleave.c: (src_handoff_float32),
3558         (sink_handoff_float32), (GST_START_TEST), (interleave_suite):
3559         Add unit tests for checking correct handling of channel positions.
3560
3561 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3562
3563         * ext/faad/gstfaad.c: (gst_faad_dispose), (clear_queued),
3564         (flush_queued), (gst_faad_drain), (gst_faad_do_raw_seek),
3565         (gst_faad_src_event), (gst_faad_sink_event), (gst_faad_chain),
3566         (gst_faad_change_state):
3567         * ext/faad/gstfaad.h:
3568         Add basic reverse playback support.
3569         Clear decoder state after disconts.
3570         Remove some unused code.
3571         Mark output buffers with a discont after a decoding error.
3572
3573 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
3574
3575         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3576
3577         * gst/mpeg4videoparse/mpeg4videoparse.c:
3578         (gst_mpeg4vparse_handle_vos):
3579         Fix mpeg4videoparse on big endian architectures. Fixes bug #536042.
3580
3581 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
3582
3583         * tests/check/elements/mplex.c: (setup_src_pad),
3584         (teardown_src_pad):
3585         Don't use the deprecated gst_element_get_pad().
3586
3587 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
3588
3589         * examples/directfb/gstdfb.c: (main):
3590         Don't use the deprecated gst_element_get_pad().
3591
3592 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3593
3594         Based on patch by: <onkarshinde at gmail dot com>
3595
3596         * sys/vcd/vcdsrc.c: (gst_vcdsrc_uri_get_uri),
3597         (gst_vcdsrc_uri_set_uri):
3598         Allow the track to be set by using the uri. Fixes #535043.
3599
3600 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
3601
3602         * gst/interleave/interleave.c: (gst_interleave_src_query_duration),
3603         (gst_interleave_src_query_latency), (gst_interleave_src_query):
3604         Implement latency query.
3605
3606 2008-05-27  Thijs Vermeir  <thijsvermeir@gmail.com>
3607
3608         * gst/mpegvideoparse/mpegvideoparse.c:
3609         Add GST_BUFFER_FLAG_DELTA_UNIT to not I frame buffers
3610
3611 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3612
3613         * gst/rtpmanager/gstrtpbin.c:
3614         (gst_rtp_bin_propagate_property_to_jitterbuffer),
3615         (gst_rtp_bin_change_state), (new_payload_found),
3616         (new_ssrc_pad_found):
3617         Break out of callbacks when we are shutting down.
3618         Make sure no state changes can happen when we reconfigure.
3619
3620 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3621
3622         * configure.ac:
3623         Require CVS core and base for new audio clock reset method.
3624
3625         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_change_state):
3626         Reset the audio clock. See #521761.
3627
3628 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3629
3630         * ext/jack/gstjackaudiosink.c:
3631         (gst_jack_audio_sink_allocate_channels):
3632         Include the element name in the port name to avoid duplicate port names.
3633
3634 2008-05-26  Sebastian Dröge  <slomo@circular-chaos.org>
3635
3636         * gst/interleave/deinterleave.c:
3637         Add another example launch line.
3638
3639         * gst/interleave/interleave.c: (interleave_24),
3640         (gst_interleave_finalize), (gst_interleave_base_init),
3641         (gst_interleave_class_init), (gst_interleave_init),
3642         (gst_interleave_request_new_pad), (gst_interleave_release_pad),
3643         (gst_interleave_change_state), (__remove_channels),
3644         (__set_channels), (gst_interleave_sink_getcaps),
3645         (gst_interleave_set_process_function),
3646         (gst_interleave_sink_setcaps), (gst_interleave_sink_event),
3647         (gst_interleave_src_query_duration), (gst_interleave_src_query),
3648         (forward_event_func), (forward_event), (gst_interleave_src_event),
3649         (gst_interleave_collected):
3650         * gst/interleave/interleave.h:
3651         Major rewrite of interleave using GstCollectpads. This new version
3652         also supports almost all raw audio formats and has better caps
3653         negotiation. Fixes bug #506594.
3654
3655         Also update docs and add some more examples.
3656
3657         * tests/check/elements/interleave.c: (interleave_chain_func),
3658         (GST_START_TEST), (src_handoff_float32), (sink_handoff_float32),
3659         (interleave_suite):
3660         Add some more extensive unit tests for interleave.
3661
3662 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3663
3664         * gst/rtpmanager/gstrtpjitterbuffer.c:
3665         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
3666         When checking the seqnum, reset the jitterbuffer if the gap is too big,
3667         we need to do this so that we can better handle a restarted source.
3668         Fix some comments.
3669
3670         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew),
3671         (rtp_jitter_buffer_insert):
3672         Tweak the skew resync diff.
3673         Use our working seqnum compare function in -base.
3674         Rework the jitterbuffer insert code to make it clearer and more
3675         performant by only retrieving the seqnum of the input buffer once and by
3676         adding some G_LIKELY compiler hints.
3677         Improve debugging for duplicate packets.
3678
3679         * gst/rtpmanager/rtpsource.c: (rtp_source_process_rtp):
3680         Fix a comment, we don't do skew correction here..
3681
3682 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3683
3684         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
3685
3686         * gst/rtpmanager/gstrtpbin.c:
3687         (gst_rtp_bin_propagate_property_to_jitterbuffer),
3688         (gst_rtp_bin_set_property):
3689         Propagate the do-lost and latency properties to the jitterbuffers when
3690         they are changed on rtpbin.
3691
3692 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3693
3694         * examples/switch/switcher.c: (switch_timer):
3695         * gst/replaygain/gstrgvolume.c: (gst_rg_volume_init):
3696         * gst/rtpmanager/gstrtpclient.c: (create_stream):
3697         * gst/sdp/gstsdpdemux.c: (gst_sdp_demux_stream_configure_udp),
3698         (gst_sdp_demux_stream_configure_udp_sink):
3699         * tests/check/elements/deinterleave.c: (GST_START_TEST),
3700         (pad_added_setup_data_check_float32_8ch_cb):
3701         * tests/check/elements/rganalysis.c: (send_eos_event),
3702         (send_tag_event):
3703         Don't use _gst_pad().
3704
3705 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
3706
3707         * docs/plugins/Makefile.am:
3708         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
3709         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
3710         * docs/plugins/gst-plugins-bad-plugins.args:
3711         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
3712         * docs/plugins/gst-plugins-bad-plugins.interfaces:
3713         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
3714         * docs/plugins/gst-plugins-bad-plugins.signals:
3715         * docs/plugins/inspect/plugin-alsaspdif.xml:
3716         * docs/plugins/inspect/plugin-amrwb.xml:
3717         * docs/plugins/inspect/plugin-app.xml:
3718         * docs/plugins/inspect/plugin-bayer.xml:
3719         * docs/plugins/inspect/plugin-bz2.xml:
3720         * docs/plugins/inspect/plugin-cdaudio.xml:
3721         * docs/plugins/inspect/plugin-cdxaparse.xml:
3722         * docs/plugins/inspect/plugin-dfbvideosink.xml:
3723         * docs/plugins/inspect/plugin-dtsdec.xml:
3724         * docs/plugins/inspect/plugin-dvb.xml:
3725         * docs/plugins/inspect/plugin-dvdspu.xml:
3726         * docs/plugins/inspect/plugin-faac.xml:
3727         * docs/plugins/inspect/plugin-faad.xml:
3728         * docs/plugins/inspect/plugin-fbdevsink.xml:
3729         * docs/plugins/inspect/plugin-festival.xml:
3730         * docs/plugins/inspect/plugin-filter.xml:
3731         * docs/plugins/inspect/plugin-flvdemux.xml:
3732         * docs/plugins/inspect/plugin-freeze.xml:
3733         * docs/plugins/inspect/plugin-gsm.xml:
3734         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
3735         * docs/plugins/inspect/plugin-h264parse.xml:
3736         * docs/plugins/inspect/plugin-interleave.xml:
3737         * docs/plugins/inspect/plugin-jack.xml:
3738         * docs/plugins/inspect/plugin-ladspa.xml:
3739         * docs/plugins/inspect/plugin-metadata.xml:
3740         * docs/plugins/inspect/plugin-mms.xml:
3741         * docs/plugins/inspect/plugin-modplug.xml:
3742         * docs/plugins/inspect/plugin-mpeg2enc.xml:
3743         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
3744         * docs/plugins/inspect/plugin-mpegtsparse.xml:
3745         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
3746         * docs/plugins/inspect/plugin-musepack.xml:
3747         * docs/plugins/inspect/plugin-musicbrainz.xml:
3748         * docs/plugins/inspect/plugin-mve.xml:
3749         * docs/plugins/inspect/plugin-nas.xml:
3750         * docs/plugins/inspect/plugin-neon.xml:
3751         * docs/plugins/inspect/plugin-nsfdec.xml:
3752         * docs/plugins/inspect/plugin-nuvdemux.xml:
3753         * docs/plugins/inspect/plugin-rawparse.xml:
3754         * docs/plugins/inspect/plugin-real.xml:
3755         * docs/plugins/inspect/plugin-replaygain.xml:
3756         * docs/plugins/inspect/plugin-rfbsrc.xml:
3757         * docs/plugins/inspect/plugin-sdl.xml:
3758         * docs/plugins/inspect/plugin-sdp.xml:
3759         * docs/plugins/inspect/plugin-selector.xml:
3760         * docs/plugins/inspect/plugin-sndfile.xml:
3761         * docs/plugins/inspect/plugin-soundtouch.xml:
3762         * docs/plugins/inspect/plugin-spcdec.xml:
3763         * docs/plugins/inspect/plugin-speed.xml:
3764         * docs/plugins/inspect/plugin-speexresample.xml:
3765         * docs/plugins/inspect/plugin-stereo.xml:
3766         * docs/plugins/inspect/plugin-tta.xml:
3767         * docs/plugins/inspect/plugin-vcdsrc.xml:
3768         * docs/plugins/inspect/plugin-videosignal.xml:
3769         * docs/plugins/inspect/plugin-vmnc.xml:
3770         * docs/plugins/inspect/plugin-wildmidi.xml:
3771         * docs/plugins/inspect/plugin-x264.xml:
3772         * docs/plugins/inspect/plugin-xvid.xml:
3773         * docs/plugins/inspect/plugin-y4menc.xml:
3774         Add interleave/deinterleave to the docs and while at that
3775         run make update in docs/plugins.
3776
3777         * gst/interleave/deinterleave.c:
3778         Add a parapraph about using a queue and audioconvert after the source
3779         pads to the docs.
3780
3781 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
3782
3783         * gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
3784         (gst_deinterleave_class_init), (gst_deinterleave_init),
3785         (gst_deinterleave_add_new_pads), (gst_deinterleave_sink_getcaps):
3786         * gst/interleave/deinterleave.h:
3787         Don't set a getcaps() function on the src pads as it's not required
3788         and the default getcaps() function returns the correct results for
3789         our src pads.
3790
3791         Complete documentation and add myself to the authors of the element.
3792
3793 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
3794
3795         * tests/icles/.cvsignore:
3796         * tests/icles/Makefile.am:
3797         * tests/icles/test-oss4.c: (opt_show_mixer_messages), (WAIT_TIME),
3798           (show_mixer_messages), (probe_mixer_tracks), (probe_pad),
3799           (probe_details), (probe_element), (main):
3800           Small oss4 test that probes for available devices and retrieves
3801           their caps and mixer tracks and all that. Also allows testing of
3802           mixer change messages on the bus.
3803
3804 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
3805
3806         * sys/oss4/oss4-mixer.c: (gst_oss4_mixer_open):
3807         * sys/oss4/oss4-property-probe.c:
3808           (gst_oss4_property_probe_find_device_name),
3809           (gst_oss4_property_probe_find_device_name_nofd):
3810         * sys/oss4/oss4-property-probe.h:
3811         * sys/oss4/oss4-sink.c: (gst_oss4_sink_get_property):
3812         * sys/oss4/oss4-source.c: (gst_oss4_source_get_property):
3813           Make device-name probing in NULL state work better (e.g. for the
3814           gnome-control-center sound capplet).
3815
3816 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
3817
3818         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3819
3820         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_push),
3821         (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain),
3822         (gst_mpeg4vparse_change_state):
3823         Move some code around to integrate the startcode searching with the
3824         other bits of parsing, avoid a whole bunch of peeks.
3825         Get rid of invalid data that should not happen according to the specs.
3826         Fixes #533559.
3827
3828 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3829
3830         Patch by: Bastien Nocera <hadess at hadess dot net>
3831
3832         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_class_init),
3833         (gst_mythtv_src_init), (gst_mythtv_src_clear),
3834         (do_read_request_response), (gst_mythtv_src_create),
3835         (gst_mythtv_src_start):
3836         Correctly set duration to get a more correct seek bar in totem.
3837
3838         Disable query and event functions as they don't work and do some
3839         smaller cleanup.
3840
3841         Fixes bug #533736.
3842
3843 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3844
3845         Patch by: Brian Koropoff <brianhk at cs dot washington dot edu>
3846
3847         * ext/spc/Makefile.am:
3848         * ext/spc/gstspc.c: (gst_spc_dec_class_init),
3849         (gst_spc_dec_src_query_type), (gst_spc_dec_init),
3850         (gst_spc_dec_dispose), (gst_spc_dec_sink_event),
3851         (gst_spc_duration), (gst_spc_fadeout), (gst_spc_dec_src_event),
3852         (gst_spc_dec_src_query), (spc_play), (spc_setup):
3853         * ext/spc/gstspc.h:
3854         * ext/spc/tag.c: (spc_tag_is_extended), (spc_tag_is_text_format),
3855         (spc_tag_is_present), (spc_tag_unpack_date), (spc_tag_clear),
3856         (spc_tag_get_info), (spc_tag_free):
3857         * ext/spc/tag.h:
3858         Add support for some essential features like seeking, reading song
3859         duration and extended tags. Fixes bug #454151.
3860
3861 2008-05-19  Sebastian Dröge  <slomo@circular-chaos.org>
3862
3863         * tests/check/elements/deinterleave.c: (GST_START_TEST):
3864         Set keep-positions property to TRUE for the 8 channel test to ensure
3865         that the original channel position is set on the output.
3866
3867 2008-05-19  Sebastian Dröge  <slomo@circular-chaos.org>
3868
3869         * gst/interleave/deinterleave.c: (gst_deinterleave_class_init),
3870         (gst_deinterleave_init), (gst_deinterleave_add_new_pads),
3871         (gst_deinterleave_set_pads_caps), (gst_deinterleave_set_property),
3872         (gst_deinterleave_get_property):
3873         * gst/interleave/deinterleave.h:
3874         Add a property to select whether channel positions should be kept on
3875         the mono output buffers or should be dropped.
3876
3877 2008-05-18  Jan Schmidt  <jan.schmidt@sun.com>
3878
3879         * docs/Makefile.am:
3880         Oops - fix the spelling of the variable I added.
3881
3882 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
3883
3884         * gst/interleave/deinterleave.c: (gst_deinterleave_finalize),
3885         (gst_deinterleave_init), (gst_deinterleave_sink_event),
3886         (gst_deinterleave_process), (gst_deinterleave_sink_activate_push):
3887         * gst/interleave/deinterleave.h:
3888         Queue events until src pads were added and they can be sent. Otherwise
3889         downstream will never get the first newsegment event.
3890
3891 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
3892
3893         * gst/interleave/deinterleave.c: (gst_deinterleave_sink_setcaps),
3894         (gst_deinterleave_getcaps):
3895         Always set the channel positions when gst_audio_get_channel_positions()
3896         returns something, even if they're not set in the caps. This makes
3897         sure that the output channels can be interleaved again correctly
3898         in the mono/stereo cases too.
3899
3900         Don't ask for the peercaps of the current pad in getcaps() as this
3901         might call getcaps() again and deadlock.
3902
3903 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3904
3905         * ext/timidity/gstwildmidi.c: (wildmidi_open_config):
3906         Check some more common locations for a valid configuration file.
3907         Fixes bug #533435. Packagers should still #define WILDMIDI_CFG
3908         to the distributions default location.
3909
3910 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3911
3912         * gst/interleave/Makefile.am:
3913         * gst/interleave/deinterleave.c: (deinterleave_24),
3914         (gst_deinterleave_finalize), (gst_deinterleave_base_init),
3915         (gst_deinterleave_class_init), (gst_deinterleave_init),
3916         (gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
3917         (gst_deinterleave_set_process_function),
3918         (gst_deinterleave_sink_setcaps), (__remove_channels),
3919         (__set_channels), (gst_deinterleave_getcaps),
3920         (gst_deinterleave_process), (gst_deinterleave_chain),
3921         (gst_deinterleave_sink_activate_push):
3922         * gst/interleave/deinterleave.h:
3923         Add support for all raw audio formats and provide better negotiation
3924         if the caps are changing.
3925
3926         Don't allow changes of the channel positions and set the position of
3927         the corresponding channel on the src pad caps.
3928
3929         General cleanup and smaller bugfixes.
3930
3931         * tests/check/elements/deinterleave.c: (float_buffer_check_probe):
3932         Check the channel positions on the output buffer caps.
3933
3934 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
3935
3936         * docs/Makefile.am:
3937         Don't attempt to build plugin docs when they're disabled.
3938
3939         * gst/bayer/Makefile.am:
3940         Add libgstvideo to the link.
3941
3942         * gst/rtpmanager/Makefile.am:
3943         Fix link order, and move LIBS things to _LIBS
3944
3945 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
3946
3947         * docs/plugins/gst-plugins-bad-plugins.types:
3948         Remove bogus attempt to pull 'metadata' plugin's base
3949         class into the docs.
3950
3951 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3952
3953         * gst/rtpmanager/gstrtpjitterbuffer.c:
3954         (gst_rtp_jitter_buffer_chain):
3955         Simply drop bad RTP packets with a warning instead of just posting an
3956         error and stopping. This is a perfectly recoverable event and we don't
3957         force people to use an rtpbin to filter out bad packets first.
3958
3959 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3960
3961         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_init):
3962         Set fixed caps on the srcpad after we created the pad...
3963
3964 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3965
3966         * tests/check/Makefile.am:
3967           Remove deinterleave test from VALGRIND_TO_FIX again now that
3968           there are suppressions in gst.supp which make this work for me.
3969
3970 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3971
3972         * tests/check/Makefile.am:
3973           Add deinterleave unit test to VALGRIND_TO_FIX, since it causes
3974           weird invalid free errors in valgrind/libc after _exit for some
3975           reason.
3976
3977         * tests/check/elements/deinterleave.c: (pads_created),
3978           (set_channel_positions), (src_handoff_float32_8ch),
3979           (float_buffer_check_probe),
3980           (pad_added_setup_data_check_float32_8ch_cb),
3981           (make_fake_src_8chans_float32), (GST_START_TEST),
3982           (deinterleave_suite):
3983           Add some more deinterleave unit test bits I had locally.
3984
3985 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
3986
3987         * gst/interleave/Makefile.am:
3988         * gst/interleave/deinterleave.h:
3989         * gst/interleave/interleave.h:
3990         * gst/interleave/plugin.h:
3991         Split definitions into separate header files for better documentation
3992         generation.
3993         
3994         * gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
3995         (gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
3996         (gst_deinterleave_process):
3997         Don't use alloca, allow caps changes as long as the number of channels
3998         does not change, don't use g_warning, return NOT_NEGOTIATED as early
3999         as possible and some other cleanup.
4000
4001         * gst/interleave/interleave.c: (gst_interleave_base_init),
4002         (gst_interleave_class_init):
4003         Do some random cleanup.
4004
4005         * tests/check/Makefile.am:
4006         * tests/check/elements/deinterleave.c: (GST_START_TEST),
4007         (deinterleave_chain_func), (deinterleave_pad_added),
4008         (deinterleave_suite):
4009         Add unit tests for the deinterleave element.
4010
4011 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4012
4013         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4014
4015         * gst/mpeg4videoparse/mpeg4videoparse.c:
4016         (gst_mpeg4vparse_set_new_caps), (gst_mpeg4vparse_align),
4017         (get_bits), (next_start_code), (gst_mpeg4vparse_handle_vos),
4018         (gst_mpeg4vparse_push), (gst_mpeg4vparse_drain),
4019         (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps),
4020         (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_src_query),
4021         (gst_mpeg4vparse_set_property), (gst_mpeg4vparse_get_property),
4022         (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init):
4023         * gst/mpeg4videoparse/mpeg4videoparse.h:
4024         Parse the config data (either outbound or in the stream) to set   
4025         width/height, apect ration, framerate in the caps if applicable.
4026         Mark frames as GST_BUFFER_FLAG_DELTA_UNIT when they are not
4027         intra frames
4028         Set the timestamps of outgoing buffers to the buffer in
4029         which the VOP header was found.
4030         Drop incoming data untill configuration is found (by default,
4031         configurable using a property).
4032         Report a 1 frame latency. Fixes #532723.
4033
4034 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4035
4036         * gst/real/gstrealvideodec.c: (open_library):
4037         Add some debug for where we are searching for libraries.
4038
4039 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4040
4041         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
4042         Actually add the do-lost property to the object.
4043
4044 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4045
4046         * gst/rtpmanager/gstrtpjitterbuffer.c:
4047         (gst_rtp_jitter_buffer_loop):
4048         Avoid waiting for a negative (huge) duration when the last packet has a
4049         lower timestamp than the current packet.
4050
4051 2008-05-12  Peter Kjellerstedt  <pkj@axis.com>
4052
4053         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_query_send_rtcp_src):
4054         Make sure to unref the rtpsession returned by gst_pad_get_parent() to
4055         prevent a memory leak.
4056
4057
4058 2008-05-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4059
4060         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4061         Quieten some docs output
4062
4063 2008-05-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4064
4065         * gst/rtpmanager/gstrtpjitterbuffer.c:
4066         (gst_rtp_jitter_buffer_loop):
4067         Initialise with GST_CLOCK_TIME_NONE to avoid compiler warning.
4068
4069 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
4070
4071         * docs/plugins/Makefile.am:
4072         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
4073         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4074         * docs/plugins/inspect/plugin-gstinterlace.xml:
4075         * gst/deinterlace/gstdeinterlace.c:
4076         * gst/deinterlace/gstdeinterlace.h:
4077         Random doc of the day: the deinterlace element.
4078
4079 2008-05-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4080
4081         * gst/mpegtsparse/mpegtspacketizer.c:
4082         * gst/mpegtsparse/mpegtsparse.c:
4083         Make sure all schedule EIT and non-actual transport stream
4084         EITs are parsed. Also add present-following flag and
4085         actual-transport-stream flag to eit bus message.
4086
4087 2008-05-09  Peter Kjellerstedt  <pkj@axis.com>
4088
4089         * gst/rtpmanager/rtpsource.c: (rtp_source_finalize):
4090         Make sure to unref the caps used by RTPSource to prevent a memory leak.
4091
4092 2008-05-08  Tim-Philipp Müller  <tim.muller at collabora co uk>
4093
4094         Based on patch by: Clive Wright <clive_wright ntlworld com>
4095
4096         * sys/oss4/oss4-mixer-slider.c: (gst_oss4_mixer_slider_unpack_volume):
4097           Apparently mono sliders have the mono value repeated in the upper bits,
4098           so mask those out when reading them. Probably makes the mixer applet
4099           work properly in some more cases.
4100
4101 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4102
4103         Patch by: Olivier Crete <tester at tester dot ca>
4104
4105         * gst/rtpmanager/rtpsession.c: (source_clock_rate),
4106         (rtp_session_process_bye), (rtp_session_send_bye_locked):
4107         Unlock the session lock when calling one of our callbacks. 
4108         Fixes #532011.
4109
4110 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
4111
4112         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4113
4114         * gst/rtpmanager/gstrtpsession.c:
4115         (gst_rtp_session_event_send_rtp_sink):
4116         Send RTP BYE command on EOS. Fixes bug #531955.
4117
4118 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4119
4120         * win32/common/config.h.in:
4121           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
4122           use the real thing than having "???" unconditionally.
4123
4124 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4125
4126         * gst-libs/gst/app/.cvsignore:
4127         * gst-libs/gst/app/Makefile.am:
4128         * gst-libs/gst/app/gstapp-marshal.list:
4129         Add marshal.list, make it compile and add to cvsignore.
4130
4131         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_dispose),
4132         (gst_app_sink_stop):
4133         Small cleanups.
4134
4135         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
4136         (gst_app_src_init), (gst_app_src_set_property),
4137         (gst_app_src_get_property), (gst_app_src_unlock),
4138         (gst_app_src_unlock_stop), (gst_app_src_start), (gst_app_src_stop),
4139         (gst_app_src_create), (gst_app_src_set_caps),
4140         (gst_app_src_get_caps), (gst_app_src_set_size),
4141         (gst_app_src_get_size), (gst_app_src_set_seekable),
4142         (gst_app_src_get_seekable), (gst_app_src_set_max_buffers),
4143         (gst_app_src_get_max_buffers), (gst_app_src_push_buffer),
4144         (gst_app_src_end_of_stream):
4145         * gst-libs/gst/app/gstappsrc.h:
4146         Beat appsrc in shape, add signals and actions.
4147         Add some docs.
4148         Add properties for caps, size, seekability and max-buffers.
4149         Fix unlock/stop code.
4150
4151 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4152
4153         * configure.ac:
4154           Error out if we don't have the required versions of core/base.
4155
4156 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
4157
4158         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init),
4159         (gst_app_sink_init), (gst_app_sink_set_property),
4160         (gst_app_sink_get_property), (gst_app_sink_unlock_start),
4161         (gst_app_sink_unlock_stop), (gst_app_sink_flush_unlocked),
4162         (gst_app_sink_start), (gst_app_sink_stop), (gst_app_sink_event),
4163         (gst_app_sink_preroll), (gst_app_sink_render),
4164         (gst_app_sink_set_caps), (gst_app_sink_set_drop),
4165         (gst_app_sink_get_drop):
4166         * gst-libs/gst/app/gstappsink.h:
4167         Start some docs.
4168         Add property to drop buffers when the queue is filled
4169         Fix unlocking and flushing when the queues are filled.
4170
4171 2008-04-29  Sebastian Dröge  <slomo@circular-chaos.org>
4172
4173         Patch by: Jens Granseuer <jensgr at gmx dot net>
4174
4175         * gst/subenc/gstsrtenc.c: (gst_srt_enc_timestamp_to_string):
4176         Declare variables at the beginning of blocks. Fixes compilation with
4177         gcc 2.x and other compilers. Fixes bug #530611.
4178
4179 2008-04-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4180
4181         * gst/mpegtsparse/mpegtspacketizer.c:
4182         * gst/mpegtsparse/mpegtspacketizer.h:
4183         * gst/mpegtsparse/mpegtsparse.c:
4184         Detect SI pids (NIT, SDT, EIT etc.) based on table id and not
4185         by pid number. This allows for example the EPG data from UK's
4186         freesat to be picked up.
4187
4188 2008-04-26  Sebastian Dröge  <slomo@circular-chaos.org>
4189
4190         * ext/mpeg2enc/gstmpeg2enc.cc:
4191         * ext/soundtouch/gstbpmdetect.cc:
4192         Cast NULL sentinels to void * as NULL is defined as an integer
4193         constant in most environments when using C++ and it's size might
4194         be different from a pointer.
4195
4196 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4197
4198         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init),
4199         (gst_app_sink_init), (gst_app_sink_set_property),
4200         (gst_app_sink_get_property), (gst_app_sink_event),
4201         (gst_app_sink_preroll), (gst_app_sink_render),
4202         (gst_app_sink_set_emit_signals), (gst_app_sink_get_emit_signals),
4203         (gst_app_sink_set_max_buffers), (gst_app_sink_get_max_buffers),
4204         (gst_app_sink_pull_buffer):
4205         * gst-libs/gst/app/gstappsink.h:
4206         Add more docs.
4207         Add signals for when preroll and render buffers are available.
4208         Add property to control signal emission.
4209         Add property to control the max queue size.
4210
4211 2008-04-25  Michael Smith <msmith@songbirdnest.com>
4212
4213         * gst-libs/gst/dshow/Makefile.am:
4214           Use CXXFLAGS rather than CFLAGS; these are C++ files.
4215           Define required constants appropriately.
4216         * sys/dshowdecwrapper/Makefile.am:
4217           Add required include dir, libraries.
4218           Define required constants appropriately.
4219
4220 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4221
4222         * gst/rtpmanager/gstrtpbin.c: (create_stream), (gst_rtp_bin_init),
4223         (gst_rtp_bin_set_property), (gst_rtp_bin_get_property):
4224         * gst/rtpmanager/gstrtpbin.h:
4225         Expose new jitterbuffer property in rtpbin too.
4226
4227 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4228
4229         * gst/rtpmanager/gstrtpjitterbuffer.c:
4230         (gst_rtp_jitter_buffer_class_init), (gst_rtp_jitter_buffer_init),
4231         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property),
4232         (gst_rtp_jitter_buffer_get_property):
4233         Disable sending out rtp packet lost events by default and make a
4234         property to enabe it. We will likely enable it by default when the base
4235         depayloaders have a default handler for them so that we don't send these
4236         events all through the pipeline for now.
4237
4238 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4239
4240         * gst/rtpmanager/gstrtpjitterbuffer.c:
4241         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_flush_stop),
4242         (gst_rtp_jitter_buffer_src_event), (gst_rtp_jitter_buffer_chain),
4243         (gst_rtp_jitter_buffer_loop):
4244         Remove private version of a function that is in -base now.
4245         Add src event handler.
4246         Rework the jitterbuffer pushing loop so that it can quickly react to
4247         lost packets and instruct the depayloader of them. This can then be used
4248         to implement error concealment data.
4249
4250 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4251
4252         * gst/rtpmanager/gstrtpsession.c:
4253         (gst_rtp_session_query_send_rtcp_src), (create_recv_rtcp_sink),
4254         (create_send_rtcp_src):
4255         Set up some internal links functions for the RTCP and sync pads because
4256         the defaults are really not correct.
4257         Implement a query handler for the RTCP src pad, mostly to correctly
4258         report about the latency.
4259
4260 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4261
4262         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
4263         (gst_rtp_bin_sync_chain):
4264         * gst/rtpmanager/rtpsession.c: (update_arrival_stats),
4265         (rtp_session_process_sr), (rtp_session_on_timeout):
4266         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
4267         (calculate_jitter):
4268         * gst/rtpmanager/rtpsource.h:
4269         * gst/rtpmanager/rtpstats.h:
4270         Also keep track of the first buffer timestamp together with the first
4271         RTP timestamp as they both are needed to construct the timing of
4272         outgoing packets in the jitterbuffer and are therefore also needed to
4273         manage lip-sync. This fixes lip-sync if the first RTP packets arrive
4274         with a wildly different gap.
4275
4276 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4277
4278         * gst/flv/gstflvdemux.c: (gst_flv_demux_query):
4279         Forward unknown queries upstream instead of returning FALSE on them.
4280
4281 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
4282
4283         * configure.ac:
4284         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
4285         (gst_musepackdec_init), (gst_musepackdec_dispose),
4286         (gst_musepackdec_handle_seek_event), (gst_musepack_stream_init),
4287         (gst_musepackdec_loop), (plugin_init):
4288         * ext/musepack/gstmusepackdec.h:
4289         * ext/musepack/gstmusepackreader.c:
4290         * ext/musepack/gstmusepackreader.h:
4291         Add support for the new libmpcdec API which magically gets us support
4292         for SV8 files. Also do some random cleanup. Fixes bug #526905.
4293
4294 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
4295
4296         * configure.ac:
4297         Back to development -> 0.10.7.1
4298
4299 === release 0.10.7 ===
4300
4301 2008-04-24  Jan Schmidt <jan.schmidt@sun.com>
4302
4303         * configure.ac:
4304           releasing 0.10.7, "House of Cards"
4305
4306 2008-04-22  Stefan Kost  <ensonic@users.sf.net>
4307
4308         * ext/faad/gstfaad.c:
4309           Don't leak GstAudioChannelPosition. Fixes #529378.
4310
4311 2008-04-22  Wim Taymans  <wim.taymans@collabora.co.uk>
4312
4313         * gst/sdp/gstsdpdemux.c: (request_pt_map):
4314         Ref caps, see #528245.
4315
4316 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
4317
4318         * configure.ac:
4319         0.10.6.4 pre-release
4320
4321 2008-04-21  Sebastian Dröge  <slomo@circular-chaos.org>
4322
4323         * tests/check/elements/rganalysis.c: (GST_START_TEST):
4324         Don't leak a tag list. Fixes bug #529285.
4325
4326 2008-04-21  Sebastian Dröge  <slomo@circular-chaos.org>
4327
4328         * tests/check/elements/ofa.c: (bus_handler):
4329         Don't leak the tags string and tag list. Fixes bug #529283.
4330
4331 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4332
4333         Patch by: Olivier Crete <tester at tester dot ca>
4334
4335         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
4336         (new_ssrc_pad_found):
4337         Ref caps when inserting into the cache.
4338         Don't leak pads.
4339
4340         * gst/rtpmanager/gstrtpjitterbuffer.c:
4341         (gst_rtp_jitter_buffer_get_clock_rate),
4342         (gst_rtp_jitter_buffer_query):
4343         Avoid a caps leak.
4344         Don't leak refcount in query.
4345
4346         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps),
4347         (gst_rtp_pt_demux_chain):
4348         Avoid caps leaks.
4349
4350         * gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
4351         (gst_rtp_session_init), (return_true),
4352         (gst_rtp_session_clear_pt_map), (gst_rtp_session_cache_caps),
4353         (gst_rtp_session_clock_rate):
4354         Ref caps when inserting into the cache.
4355         Fix some more caps leaks. Fixes #528245.
4356
4357 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
4358
4359         * tests/icles/metadata_editor.c:
4360           Add cast to placate gcc 4.1.2.
4361
4362 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
4363
4364         * configure.ac:
4365         0.10.6.3 pre-release
4366
4367 2008-04-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4368
4369         * sys/dvb/gstdvbsrc.c:
4370         Revert patch that added a loop timeout.
4371         Fixes #528614.
4372
4373 2008-04-17  Wim Taymans  <wim.taymans@collabora.co.uk>
4374
4375         * gst/rtpmanager/gstrtpbin.c: (get_pt_map), (free_client),
4376         (gst_rtp_bin_associate), (gst_rtp_bin_get_free_pad_name):
4377         * gst/rtpmanager/gstrtpjitterbuffer.c:
4378         (gst_rtp_jitter_buffer_get_clock_rate):
4379         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps):
4380         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
4381         Unset GValues after g_signal_emitv so that we avoid a refcount leak.
4382         Don't leak a padname.
4383         Don't leak client streams list.
4384         Lock rtpbin when associating streams. Fixes #528245.
4385
4386 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4387
4388         * tests/check/Makefile.am:
4389         Don't inlcude dc1394src in the generic/states test as it requires
4390         special hardware. Fixes bug #528011.
4391
4392 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4393
4394         * tests/check/elements/ofa.c: (bus_handler), (GST_START_TEST):
4395         Only check if the generated fingerprints are valid Base64. The
4396         fingerprints are different when running on different architectures
4397         which is a) no problem because the fingerprints are tolerant enough
4398         and b) is caused by libofa. Fixes bug #528266.
4399
4400 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4401
4402         * ext/timidity/Makefile.am:
4403         Dist all source files, no matter if only timidity or wildmidi or
4404         nothing is found by configure. Fixes bug #528000.
4405
4406 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
4407
4408         * gst-plugins-bad.spec.in:
4409           Remove souphttpsrc plugin from spec files, it's moved to -good.
4410
4411 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
4412
4413         * tests/check/Makefile.am:
4414         Remove soup test certificates from the dist.
4415
4416 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
4417
4418         * ext/dirac/gstdiracenc.cc:
4419         Fix compilation by casting string constants.
4420
4421         * sys/Makefile.am:
4422         Fix WININET_DIR variable reference.
4423
4424 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
4425
4426         * configure.ac:
4427         * docs/plugins/Makefile.am:
4428         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
4429         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4430         * docs/plugins/gst-plugins-bad-plugins.args:
4431         * docs/plugins/inspect/plugin-soup.xml:
4432         * ext/Makefile.am:
4433         * ext/soup/Makefile.am:
4434         * ext/soup/gstsouphttpsrc.c:
4435         * ext/soup/gstsouphttpsrc.h:
4436         * tests/check/Makefile.am:
4437         * tests/check/elements/souphttpsrc.c:
4438         * tests/check/test-cert.pem:
4439         * tests/check/test-key.pem:
4440
4441         Remove soup plugin that's moved to -good (#523124)
4442
4443 2008-04-12  Tim-Philipp Müller  <tim at centricular dot net>
4444
4445         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
4446           (gst_flv_parse_tag_script):
4447           Handle NULL returns from FLV_GET_STRING() more gracefully. Fixes
4448           crash caused by a strlen on a NULL string (#527622).
4449
4450 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4451
4452         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4453
4454         * sys/dshowsrcwrapper/gstdshowvideosrc.c: (PROP_DEVICE_NAME),
4455           (gst_dshowvideosrc_class_init), (gst_dshowvideosrc_init),
4456           (gst_dshowvideosrc_dispose), (gst_dshowvideosrc_stop),
4457           (gst_dshowvideosrc_unlock), (gst_dshowvideosrc_unlock_stop),
4458           (gst_dshowvideosrc_create), (gst_dshowvideosrc_push_buffer):
4459         * sys/dshowsrcwrapper/gstdshowvideosrc.h:
4460           Don't increase latency by queuing buffers in an async queue when
4461           the streaming thread can't keep up or isn't scheduled often
4462           enough for some other reason, but just drop the previous buffer
4463           in that case. Also implement GstBaseSrc::unlock for faster
4464           unlocking when shutting down. (#520892).
4465
4466 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4467
4468         * tests/icles/metadata_editor.c: (ENC_UNKNOWN), (last_pixbuf),
4469           (draw_pixbuf), (change_tag_list), (update_draw_pixbuf),
4470           (ui_drawing_size_allocate_cb), (on_drawingMain_expose_event),
4471           (on_buttonSaveFile_clicked), (ui_create), (me_gst_bus_callback_view),
4472           (me_gst_setup_view_pipeline), (process_file):
4473         * tests/icles/metadata_editor.glade:
4474           Remove GstXOverlay stuff and use gdkpixbufsink plus some rather crude
4475           drawing/scaling logic to make this compile and work on all platforms.
4476           Fixes #518227.
4477
4478 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4479
4480         * configure.ac:
4481           Bump core/base requirements to released versions to avoid
4482           confusion.
4483
4484         * gst/deinterlace/gstdeinterlace.c: (deinterlace_debug),
4485           (GST_CAT_DEFAULT), (gst_deinterlace_base_init),
4486           (gst_deinterlace_set_caps), (plugin_init):
4487           Add debug category, use _set_element_details_simple and
4488           remove special code path for Y42B to calculate offsets and
4489           strides; libgstvideo knows how to handle this format now.
4490
4491 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4492
4493         * gst/cdxaparse/Makefile.am:
4494         * gst/cdxaparse/gstcdxaparse.c:
4495         * gst/cdxaparse/gstcdxastrip.c:
4496         * gst/cdxaparse/gstcdxastrip.h:
4497         * gst/cdxaparse/gstvcdparse.c:
4498         * gst/cdxaparse/gstvcdparse.h:
4499           Port VCD parser (formerly cdxastrip) from 0.8 to 0.10. Doesn't do
4500           anything the 0.8 version didn't do though.
4501
4502 2008-04-11  Julien Moutte  <julien@fluendo.com>
4503
4504         * sys/oss4/oss4-mixer-enum.c:
4505         (gst_oss4_mixer_enum_get_values_locked):
4506         * sys/oss4/oss4-source.c: (gst_oss4_source_delay): Fix arguments
4507         format in debug statements.
4508
4509 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
4510
4511         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4512
4513         * configure.ac:
4514         * sys/Makefile.am:
4515         * sys/wininet/Makefile.am:
4516         * sys/wininet/gstwininetsrc.c:
4517         * sys/wininet/gstwininetsrc.h:
4518           Add wininetsrc for basic http/ftp support on windows (#520897).
4519
4520 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
4521
4522         * gst/nsf/nsf.h:
4523           Change prototype of process function here too to avoid
4524           'incompatible assignment' warnings.
4525
4526 2008-04-10  Sebastian Dröge  <slomo@circular-chaos.org>
4527
4528         * tests/check/elements/souphttpsrc.c: (got_buffer),
4529         (souphttpsrc_suite):
4530         Increase the timeout for the internet tests to 250 seconds
4531         and check for NULL caps instead of just crashing.
4532         The real fix would be to implement an shoutcast server for the unit test
4533         instead of relying on a working internet connection.
4534         Fixes bug #521749.
4535
4536 2008-04-10  Peter Kjellerstedt  <pkj@axis.com>
4537
4538         * gst/rtpmanager/gstrtpbin.c: (free_session):
4539         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_finalize):
4540         Avoid leaking pads in the RTP manager.
4541
4542 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
4543
4544         * gst/nsf/nes_apu.c: (apu_process):
4545         * gst/nsf/nes_apu.h:
4546         Don't do void pointer arithmetic - it's a gcc extension.
4547
4548 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
4549
4550         * ext/jack/gstjackaudiosink.c: (gst_jack_audio_sink_class_init):
4551           Work around missing bits of thread-safety on older GLibs some
4552           more to avoid assertions when starting up multiple playbin
4553           objects concurrently (see #512382).
4554
4555 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
4556
4557         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4558
4559         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_response_cb):
4560         Only ignore actual redirects not all responses when in state
4561         GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING. Fixes bug #526337.
4562
4563 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
4564
4565         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
4566
4567         * configure.ac:
4568         Actually build dlls when cross-compiling with mingw32.
4569         Fixes bug #526247.
4570
4571 2008-04-05  Sebastian Dröge  <slomo@circular-chaos.org>
4572
4573         * tests/check/elements/ofa.c: (GST_START_TEST):
4574         Also check that we have processed at least 135 seconds of audio
4575         until we stop and calculated a fingerprint.
4576
4577 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
4578
4579         * gst/subenc/gstsrtenc.c:
4580         * gst/subenc/gstsrtenc.h:
4581           GstSrtenc => GstSrtEnc and gst_srtenc_ => gst_srt_enc_.
4582
4583 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
4584
4585         * tests/check/Makefile.am:
4586         * tests/check/elements/.cvsignore:
4587         * tests/check/elements/ofa.c: (bus_handler), (GST_START_TEST),
4588         (ofa_suite), (main):
4589         Add simple unit tests for the OFA plugin.
4590
4591 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
4592
4593         * configure.ac:
4594         * sys/Makefile.am:
4595         * sys/oss4/Makefile.am:
4596         * sys/oss4/oss4-audio.c:
4597         * sys/oss4/oss4-audio.h:
4598         * sys/oss4/oss4-mixer-enum.c:
4599         * sys/oss4/oss4-mixer-enum.h:
4600         * sys/oss4/oss4-mixer-slider.c:
4601         * sys/oss4/oss4-mixer-slider.h:
4602         * sys/oss4/oss4-mixer-switch.c:
4603         * sys/oss4/oss4-mixer-switch.h:
4604         * sys/oss4/oss4-mixer.c:
4605         * sys/oss4/oss4-mixer.h:
4606         * sys/oss4/oss4-property-probe.c:
4607         * sys/oss4/oss4-property-probe.h:
4608         * sys/oss4/oss4-sink.c:
4609         * sys/oss4/oss4-sink.h:
4610         * sys/oss4/oss4-soundcard.h:
4611         * sys/oss4/oss4-source.c:
4612         * sys/oss4/oss4-source.h:
4613           Add initial support for OSSv4. Mixer still needs a bit more love,
4614           but even magic has its limits.
4615
4616 2008-04-01  Tim-Philipp Müller  <tim at centricular dot net>
4617
4618         * configure.ac:
4619         * gst-plugins-bad.spec.in:
4620         * gst/srtenc/Makefile.am:
4621         * gst/srtenc/gstsrtenc.c:
4622         * gst/srtenc/gstsrtenc.h:
4623         * gst/subenc/Makefile.am:
4624         * gst/subenc/gstsrtenc.c: (plugin_init):
4625           Rename new srtenc plugin to subenc.
4626
4627 2008-04-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4628
4629         * gst/mpegtsparse/mpegtspacketizer.c:
4630         Cable delivery subsystem descriptors' frequency's bcd
4631         is measured in 100Hz units so adjust multiplier accordingly.
4632
4633 2008-04-01  Thijs Vermeir  <thijsvermeir@gmail.com>
4634
4635         * configure.ac:
4636         * gst/srtenc/Makefile.am:
4637         * gst/srtenc/gstsrtenc.c:
4638         * gst/srtenc/gstsrtenc.h:
4639         Add srt subtitle encoder
4640
4641 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
4642
4643         Patch by: Kapil Agrawal <kapil at fluendo dot com>
4644
4645         * ext/gsm/gstgsmdec.c: (gst_gsmdec_sink_setcaps),
4646         (gst_gsmdec_chain):
4647         * ext/gsm/gstgsmdec.h:
4648         Increase the allowed samplerates for the ms-gsm format.
4649         Fixes #481354.
4650
4651 2008-03-30  Tim-Philipp Müller  <tim at centricular dot net>
4652
4653         Patch by: Jan de Groot <jan at jgc homeip net>
4654
4655         * configure.ac:
4656           Fix build with --disable-external (#525100).
4657
4658 2008-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4659
4660         * sys/dvb/gstdvbsrc.c:
4661         Repeat diseqc call to allow for some diseqc switches.
4662
4663 2008-03-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4664
4665         * ext/Makefile.am:
4666         Dist ofa correctly! Fixes non-uninstalled build.
4667
4668 2008-03-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4669
4670         * sys/dvb/gstdvbsrc.c:
4671         Make diseqc work more reliably.
4672
4673 2008-03-26  Sebastian Dröge  <slomo@circular-chaos.org>
4674
4675         * gst/nsf/Makefile.am:
4676         * gst/nsf/fds_snd.c:
4677         * gst/nsf/mmc5_snd.c:
4678         * gst/nsf/nsf.c:
4679         * gst/nsf/types.h:
4680         * gst/nsf/vrc7_snd.c:
4681         * gst/nsf/vrcvisnd.c:
4682         * gst/nsf/memguard.c:
4683         * gst/nsf/memguard.h:
4684         Remove memguard again and apply hopefully all previously dropped
4685         local patches. Should be really better than the old version now.
4686
4687 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4688
4689         * gst/nsf/memguard.c: (_my_free):
4690         * gst/nsf/types.h:
4691         Unbreak compilation by disabling memguard and doing some dirty hack
4692         fixes to make it compile on 64bits.
4693
4694 2008-03-25  Sebastian Dröge  <slomo@circular-chaos.org>
4695
4696         Patch by: Andreas Henriksson <andreas at fatal dot set>
4697
4698         * gst/nsf/Makefile.am:
4699         * gst/nsf/dis6502.h:
4700         * gst/nsf/fds_snd.c:
4701         * gst/nsf/fds_snd.h:
4702         * gst/nsf/fmopl.c:
4703         * gst/nsf/fmopl.h:
4704         * gst/nsf/gstnsf.c:
4705         * gst/nsf/log.c:
4706         * gst/nsf/log.h:
4707         * gst/nsf/memguard.c:
4708         * gst/nsf/memguard.h:
4709         * gst/nsf/mmc5_snd.c:
4710         * gst/nsf/mmc5_snd.h:
4711         * gst/nsf/nes6502.c:
4712         * gst/nsf/nes6502.h:
4713         * gst/nsf/nes_apu.c:
4714         * gst/nsf/nes_apu.h:
4715         * gst/nsf/nsf.c:
4716         * gst/nsf/nsf.h:
4717         * gst/nsf/osd.h:
4718         * gst/nsf/types.h:
4719         * gst/nsf/vrc7_snd.c:
4720         * gst/nsf/vrc7_snd.h:
4721         * gst/nsf/vrcvisnd.c:
4722         * gst/nsf/vrcvisnd.h:
4723         Update our internal nosefart to nosefart-2.7-mls to fix segfaults
4724         on some files. Fixes bug #498237.
4725
4726         Remove some // comments, fix some compiler warnings and use pow()
4727         instead of a slow, selfmade implementation.
4728
4729 2008-03-25  Sebastian Dröge  <slomo@circular-chaos.org>
4730
4731         Patch by: Ed Catmur <ed at catmur dot co dot uk>
4732
4733         * configure.ac:
4734         Add support for neon 0.28, which didn't change API. Fixes bug #524035.
4735
4736 2008-03-24  Rene Stadler  <mail@renestadler.de>
4737
4738         * gst/replaygain/gstrganalysis.c (gst_rg_analysis_init),
4739           (gst_rg_analysis_transform_ip):
4740         * gst/replaygain/gstrglimiter.c (gst_rg_limiter_init),
4741           (gst_rg_limiter_transform_ip):
4742         Make rganalysis and rglimiter elements GAP-flag aware.
4743
4744         * tests/check/elements/rganalysis.c: (test_gap_buffers),
4745           (rganalysis_suite):
4746         * tests/check/elements/rglimiter.c (test_gap), (rglimiter_suite):
4747         Add tests to verify gap-awareness.
4748
4749 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4750
4751         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb),
4752         (gst_soup_http_src_chunk_allocator),
4753         (gst_soup_http_src_got_chunk_cb),
4754         (gst_soup_http_src_uri_get_protocols):
4755         Don't autoplug souphttpsrc for dav/davs. This is better handled by
4756         GIO and GnomeVFS as they provide authentication.
4757
4758         Don't leak the icy caps if we already set them and get a new
4759         icy-metaint header.
4760
4761         Try harder to set the icy caps on the output buffer to have correct
4762         caps for the first buffer already.
4763
4764         * tests/check/elements/souphttpsrc.c: (got_buffer),
4765         (GST_START_TEST):
4766         Check that we get a buffer with application/x-icy caps if iradio-mode
4767         is enabled and we have an icecast URL.
4768
4769 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4770
4771         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_chunk_allocator):
4772         Actually set the icy caps on our src pad if we have icecast data.
4773         Fixes bug #523854.
4774
4775 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4776
4777         * configure.ac:
4778         Check if the compiler supports do { } while (0) macros. This fixes
4779         a warning when compiling with g++ 4.3, resulting in a build failure
4780         because of -Werror.
4781
4782         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
4783         * ext/mplex/gstmplex.cc:
4784         Include <string.h> for memcpy and friends to fix the build with
4785         gcc 4.3.
4786
4787         * tests/check/Makefile.am:
4788         Remove trailing backslash.
4789
4790 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4791
4792         * gst/selector/gstinputselector.c:
4793         (gst_input_selector_set_active_pad), (gst_input_selector_switch):
4794         Do g_object_notify() only when not holding the lock to get the property
4795         because otherwise we run into a deadlock with the deep-notify handlers
4796         that are possibly installed.
4797
4798 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4799
4800         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4801         (gst_selector_pad_event), (gst_selector_pad_bufferalloc),
4802         (gst_selector_pad_chain), (gst_input_selector_set_active_pad):
4803         Release the selector lock when pad alloc happens on a non selected pad.
4804
4805 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4806
4807         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4808         (gst_selector_pad_init), (gst_selector_pad_set_property),
4809         (gst_selector_pad_get_property), (gst_selector_pad_event),
4810         (gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
4811         (gst_input_selector_set_active_pad):
4812         Add pad property to configure behaviour of the unselected pad, it can
4813         return OK or NOT_LINKED, based on the use case.
4814
4815 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4816
4817         * gst/selector/gstinputselector.c:
4818         (gst_selector_pad_get_running_time), (gst_selector_pad_reset),
4819         (gst_selector_pad_event), (gst_selector_pad_bufferalloc),
4820         (gst_input_selector_wait), (gst_selector_pad_chain),
4821         (gst_input_selector_class_init), (gst_input_selector_init),
4822         (gst_input_selector_dispose), (gst_segment_set_start),
4823         (gst_input_selector_set_active_pad),
4824         (gst_input_selector_set_property),
4825         (gst_input_selector_get_property),
4826         (gst_input_selector_get_linked_pad),
4827         (gst_input_selector_is_active_sinkpad),
4828         (gst_input_selector_activate_sinkpad),
4829         (gst_input_selector_request_new_pad),
4830         (gst_input_selector_release_pad),
4831         (gst_input_selector_change_state), (gst_input_selector_block),
4832         (gst_input_selector_switch):
4833         * gst/selector/gstinputselector.h:
4834         Figure out the locking a bit more.
4835         Mark buffers with discont after switching.
4836         Fix initial segment forwarding, make sure to only forward one segment
4837         regardless of what the sequence of buffers/segments is. See #522203.
4838         Improve flushing when blocked.
4839         Return NOT_LINKED when a stream is not selected.
4840         Not API change for the switch signal in the docs.
4841         Fix start/time/accum values of the new segment.
4842         Correctly unlock and flush a blocking selector when going to READY.
4843
4844 2008-03-20  Stefan Kost  <ensonic@users.sf.net>
4845
4846         * ext/ladspa/gstladspa.c:
4847         * ext/ladspa/gstsignalprocessor.c:
4848           Add some thoughts and FIXME's.
4849
4850 2008-03-20  Stefan Kost  <ensonic@users.sf.net>
4851
4852         * gst/bayer/gstbayer2rgb.c:
4853           Include stdlib.h for abs.
4854
4855 2008-03-19  Stefan Kost  <ensonic@users.sf.net>
4856
4857         * gst/freeze/FAQ:
4858         * gst/freeze/Makefile.am:
4859         * gst/freeze/gstfreeze.c:
4860           Add example to source code documentation blob and remove the 3 line
4861           FAQ.
4862
4863         * gst/interleave/interleave.c:
4864           Add a source code documentation blob.
4865
4866 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4867
4868         * ext/ofa/gstofa.c: (create_fingerprint), (gst_ofa_event),
4869         (gst_ofa_transform_ip), (plugin_init):
4870         Improve debugging, clean up a bit and really generate the fingerprint
4871         after 135 seconds.
4872
4873 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4874
4875         * ext/ofa/gstofa.c:
4876         Use GPL as license, the plugin itself is LGPL but libofa is GPL.
4877
4878 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4879
4880         Based on a patch by: Eric Buehl <eric dot buehl at gmail dot com>
4881
4882         * configure.ac:
4883         * ext/ofa/Makefile.am:
4884         * ext/ofa/gstofa.c: (gst_ofa_base_init), (gst_ofa_finalize),
4885         (gst_ofa_class_init), (create_fingerprint), (gst_ofa_event),
4886         (gst_ofa_init), (gst_ofa_transform_ip), (gst_ofa_get_property),
4887         (plugin_init):
4888         * ext/ofa/gstofa.h:
4889         Add an OFA element, the successor of MusicBrainz TRM fingerprinting.
4890         Fixes bug #351309.
4891
4892 2008-03-18  Andy Wingo  <wingo@pobox.com>
4893
4894         * ext/faad/gstfaad.c (gst_faad_chain): Fix a bad format argument,
4895         and a potential int overflow.
4896
4897         * ext/faad/gstfaad.h: Include <neaacdec.h> if faad is neaac.
4898         Avoids a #warning about an ignored #pragma.
4899
4900 2008-03-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4901
4902         * examples/switch/switcher.c:
4903         Update switch example to use input selector.
4904
4905 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
4906
4907         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
4908         (gst_neonhttp_src_send_request_and_redirect):
4909         Handle HTTP status code 303 (See Other) the same way
4910         as 302 (Found). Not sure what to do about all the other 3xx
4911         redirect status codes. Fixes bug #522884.
4912
4913 2008-03-14  Edward Hervey  <edward.hervey@collabora.co.uk>
4914
4915         * gst-libs/gst/dshow/Makefile.am:
4916         Make sure the dshow helper library headers get distributed in the next
4917         release.
4918
4919 2008-03-14  David Schleef  <ds@schleef.org>
4920
4921         Patch by: William M. Brack
4922
4923         * gst/bayer/gstbayer2rgb.c: Significant improvements.  Fixes #521392.
4924
4925 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4926
4927         * gst/selector/gstinputselector.c: (gst_selector_pad_event),
4928         (gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
4929         (gst_input_selector_class_init),
4930         (gst_input_selector_set_active_pad),
4931         (gst_input_selector_set_property),
4932         (gst_input_selector_push_pending_stop):
4933         Add lots of debugging. 
4934         Fix time member in the newsegment event.
4935
4936 2008-03-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4937
4938         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4939         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
4940         (gst_selector_pad_event), (gst_input_selector_class_init),
4941         (gst_input_selector_init), (gst_input_selector_set_active_pad),
4942         (gst_input_selector_set_property),
4943         (gst_input_selector_get_property),
4944         (gst_input_selector_request_new_pad),
4945         (gst_input_selector_release_pad),
4946         (gst_input_selector_push_pending_stop),
4947         (gst_input_selector_switch):
4948         * gst/selector/gstinputselector.h:
4949         Various cleanups.
4950         Added tags to the pads.
4951         Select active pad based on the pad object instead of its name.
4952         Fix refcount in set_active_pad.
4953         Add property to get the number of pads.
4954
4955         * gst/selector/gstoutputselector.c:
4956         (gst_output_selector_class_init),
4957         (gst_output_selector_set_property),
4958         (gst_output_selector_get_property):
4959         Various cleanups.
4960         Select the active pad based on the pad object instead of its name.
4961         Fix locking when setting the active pad.
4962
4963         * gst/selector/gstselector-marshal.list:
4964         * tests/check/elements/selector.c: (cleanup_pad),
4965         (selector_set_active_pad), (run_input_selector_buffer_count):
4966         Fixes for pad instead of padname for pad selection.
4967
4968 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
4969
4970         * ext/alsaspdif/alsaspdifsink.c:
4971         * ext/gsm/gstgsm.c:
4972         * ext/jack/gstjack.c:
4973         * ext/libmms/gstmms.c:
4974         * ext/neon/gstneonhttpsrc.c:
4975         * ext/shout/gstshout.c:
4976         * ext/timidity/gsttimidity.c:
4977         * ext/timidity/gstwildmidi.c:
4978         * gst/nuvdemux/gstnuvdemux.c:
4979         * gst/tta/gsttta.c:
4980         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
4981         of hardcoding values where possible. Fixes bug #522212.
4982
4983 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
4984
4985         Patch by: Wouter Cloetens <wouter at mind dot be>
4986
4987         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_init),
4988         (gst_soup_http_src_finished_cb), (gst_soup_http_src_response_cb),
4989         (gst_soup_http_src_build_message), (gst_soup_http_src_create):
4990         * ext/soup/gstsouphttpsrc.h:
4991         Try to resume on server disconnect. Fixes bug #522134.
4992
4993 2008-03-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4994
4995         * ext/xvid/gstxvidenc.c: (gst_xvidenc_chain):
4996         Set correct pixel aspect ratio for the encoder.
4997
4998 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4999
5000         Patch by: Olivier Crete <tester at tester dot ca>
5001
5002         * gst/rtpmanager/rtpsession.c: (find_add_conflicting_addresses),
5003         (check_collision), (obtain_source), (rtp_session_create_new_ssrc),
5004         (rtp_session_create_source), (rtp_session_process_rtp),
5005         (rtp_session_process_sr), (rtp_session_process_rr),
5006         (rtp_session_process_sdes), (rtp_session_process_bye),
5007         (rtp_session_send_bye_locked), (rtp_session_send_bye),
5008         (rtp_session_on_timeout):
5009         * gst/rtpmanager/rtpsession.h:
5010         Implement collision and loop detection in rtpmanager.
5011         Fixes #520626.
5012
5013         * gst/rtpmanager/rtpsource.c: (rtp_source_reset),
5014         (rtp_source_init):
5015         * gst/rtpmanager/rtpsource.h:
5016         Add method to reset stats.
5017
5018 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5019
5020         Based on patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5021
5022         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_init),
5023         (rtcp_thread), (start_rtcp_thread), (stop_rtcp_thread),
5024         (join_rtcp_thread), (gst_rtp_session_change_state):
5025         Avoid a deadlock when joining the RTCP thread in PAUSED because it might
5026         be blocked downstream. Also avoid spawning multiple rtcp threads.
5027         Fixes #520894.
5028
5029 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5030
5031         Patch by: Stefan Kost <ensonic@users.sf.net>
5032
5033         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
5034         Don't try to reset the clock skew when we have no timestamps.
5035         Fixes #519005.
5036
5037 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5038
5039         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5040
5041         * ext/faad/gstfaad.c: (looks_like_valid_header):
5042         Improve the header checking to look for what faad2 looks
5043         for too. Fixes playback of same apple trailers.
5044         Fixes bug #469979.
5045
5046 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5047
5048         * configure.ac:
5049         Really check for libdc1394 >= 2.0.0, pkg-config thinks that
5050         2.0.0-rcX is newer than 2.0.0 so we check for this too.
5051
5052 2008-03-05  David Schleef  <ds@schleef.org>
5053
5054         * ext/dirac/gstdiracenc.cc: Add a bunch of properties cribbed
5055           from the encoder program in dirac.
5056
5057 2008-03-05  David Schleef  <ds@schleef.org>
5058
5059         * configure.ac:
5060         * ext/Makefile.am:
5061         * ext/dirac/Makefile.am:
5062         * ext/dirac/gstdirac.cc:
5063         * ext/dirac/gstdiracenc.cc:
5064           Rewrite Dirac encoder plugin based on Schroedinger gstreamer
5065           elements.
5066
5067 2008-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5068
5069         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
5070
5071         * configure.ac:
5072         * ext/Makefile.am:
5073         * ext/mplex/Makefile.am:
5074         * ext/mplex/gstmplex.cc:
5075         * ext/mplex/gstmplex.hh:
5076         * ext/mplex/gstmplexibitstream.cc:
5077         * ext/mplex/gstmplexibitstream.hh:
5078         * ext/mplex/gstmplexjob.cc:
5079         * ext/mplex/gstmplexjob.hh:
5080         * ext/mplex/gstmplexoutputstream.cc:
5081         * ext/mplex/gstmplexoutputstream.hh:
5082         Port mplex element to 0.10. Fixes bug #520329.
5083
5084         * tests/check/Makefile.am:
5085         * tests/check/elements/mplex.c: (test_sink_event), (setup_src_pad),
5086         (teardown_src_pad), (setup_mplex), (cleanup_mplex),
5087         (GST_START_TEST), (mplex_suite), (main):
5088         Add unit test for the mplex element.
5089
5090 2008-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5091
5092         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
5093
5094         * configure.ac:
5095         Clean up detection of different mjpegtoolsAPI versions.
5096
5097         * ext/mpeg2enc/gstmpeg2enc.cc:
5098         * ext/mpeg2enc/gstmpeg2enc.hh:
5099         * ext/mpeg2enc/gstmpeg2encoder.cc:
5100         * ext/mpeg2enc/gstmpeg2encoptions.cc:
5101         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5102         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
5103         * ext/mpeg2enc/gstmpeg2encstreamwriter.cc:
5104         * ext/mpeg2enc/gstmpeg2encstreamwriter.hh:
5105         Streamline conditional code for evolving mjpegtools API,
5106         optimize and fix/prevent crash in log handling, use
5107         names/nicks for enums in the usual way andm inor updates
5108         in code and properties/settings. Partially fixes bug #520329.
5109
5110 2008-03-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5111
5112         * gst/mpegtsparse/gstmpegdesc.h:
5113         * gst/mpegtsparse/mpegtspacketizer.c:
5114         Add parsing of cable delivery system descriptor.
5115
5116 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5117
5118         * configure.ac:
5119         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
5120         plug-ins are included/excluded. (#498222)
5121
5122 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
5123
5124         Patch by: Jens Granseuer <jensgr at gmx dot net>
5125
5126         * gst/mve/gstmvedemux.c: (gst_mve_audio_data),
5127         (gst_mve_demux_get_type):
5128         Fix audio discontinuity that happens when silent chunks are
5129         followed by real data again. Fixes bug #519905.
5130
5131 2008-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5132
5133         * sys/dvb/gstdvbsrc.c:
5134         * sys/dvb/parsechannels.c:
5135         Add DVB-C support. Special thanks to Christian Schaller
5136         for a testing ground.
5137
5138 2008-02-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5139
5140         * gst/mpegtsparse/mpegtsparse.c:
5141         Only send PMTs to program pads that the PMT is for even if
5142         on same pid.
5143         As a by-product, we now no longer hardcode any psi pid numbers.
5144         Also remove pcr stream from old pmt when we apply a new pmt.
5145
5146 2008-02-28  Edgard Lima  <edgard.lima@indt.org.br>
5147
5148         * ext/metadata/TODO:
5149         * ext/metadata/metadata_mapping.htm:
5150         * ext/metadata/metadataexif.c:
5151         * ext/metadata/metadatatags.c:
5152         * ext/metadata/metadatatags.h:
5153         * tests/icles/metadata_editor.c:
5154         Map Date-Time and GPS tags and Convert from EXIF to XMP Datatime as
5155         local time (those changes has been done in previous comit but had to
5156         be revert in 2008-02-10 due to frozen)
5157
5158 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5159
5160         * sys/dvb/camutils.c:
5161         Remove the G_VALUE_HOLDS_BOXED checks. They were
5162         only added to help debug the data corruption.
5163
5164 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5165
5166         * sys/dvb/camutils.c:
5167         Don't free the program descriptors, this structure
5168         containing them is still stored after.
5169         Fixes data corruption.
5170
5171 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5172
5173         * sys/dvb/camutils.c:
5174         Extra checks to prevent data corruption/segfaults.
5175
5176 2008-02-26  Stefan Kost  <ensonic@users.sf.net>
5177
5178         * ext/nas/nassink.c:
5179           Fix build warning by using portable API.
5180
5181 2008-02-26  Stefan Kost  <ensonic@users.sf.net>
5182
5183         * gst/selector/gstoutputselector.c:
5184           Fix changing to same pad twice before a chain call.     
5185
5186 2008-02-26  Sebastian Dröge  <slomo@circular-chaos.org>
5187
5188         Patch by: Daniel Fischer <dan at f3c dot com>
5189
5190         * configure.ac:
5191         * ext/dc1394/gstdc1394.c: (gst_dc1394_change_state),
5192         (gst_dc1394_get_cam_caps), (gst_dc1394_open_cam_with_best_caps):
5193         * ext/dc1394/gstdc1394.h:
5194         Add support for libdc1394 2.0.0 and above and require this version
5195         now. Fixes bug #514964.
5196
5197 2008-02-26  Sebastian Dröge  <slomo@circular-chaos.org>
5198
5199         Patch by: Wouter Cloetens <wouter at mind dot be>
5200
5201         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
5202         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
5203         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
5204         (gst_soup_http_src_create):
5205         * ext/soup/gstsouphttpsrc.h:
5206         * tests/check/elements/souphttpsrc.c: (run_test), (GST_START_TEST),
5207         (souphttpsrc_suite):
5208         Add support for specifying a list of cookies to be passed in
5209         the HTTP request. Fixes bug #518722.
5210
5211 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
5212
5213         * gst/selector/gstinputselector.c:
5214         * gst/selector/gstinputselector.h:
5215           Added "select-all" property to make it work like aggregator in 0.8.
5216
5217         * gst/selector/gstoutputselector.c:
5218           Fix resend-latest behavoiur.
5219           
5220         * tests/check/Makefile.am:
5221         * tests/check/elements/.cvsignore:
5222         * tests/check/elements/selector.c:
5223           Add unit tests for selector.
5224
5225 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
5226
5227         * configure.ac:
5228         * ext/timidity/gsttimidity.c: (plugin_init):
5229         * ext/timidity/gstwildmidi.c: (plugin_init):
5230         Remove midi typefinders and require base CVS as they moved there.
5231
5232 2008-02-24  Sebastian Dröge  <slomo@circular-chaos.org>
5233
5234         * ext/Makefile.am:
5235         Only disable the ext/timidity directory if both, wildmidi
5236         _and_ timidity are not available.
5237
5238 2008-02-24  Sebastian Dröge  <slomo@circular-chaos.org>
5239
5240         Patch by: Emilio Pozuelo Monfort <pochu at ubuntu dot com>
5241
5242         * ext/Makefile.am:
5243         Build the wildmidi plugin if it's enabled and not only when
5244         both, the timidity and wildmidi plugin, are enabled.
5245
5246 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5247
5248         * configure.ac:
5249         * ext/mpeg2enc/Makefile.am:
5250         * ext/soundtouch/Makefile.am:
5251         * gst/modplug/Makefile.am:
5252           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
5253           when building C++ code.
5254
5255 2008-02-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5256
5257         * sys/dvb/gstdvbsrc.c:
5258         Add initial support for multiproto driver (not yet merged into
5259         v4l-dvb mainline yet).
5260         Only works for DVB-S not DVB-S2, DVB-T, DVB-C or other.
5261
5262 2008-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5263
5264         * docs/plugins/inspect/plugin-alsaspdif.xml:
5265         * docs/plugins/inspect/plugin-app.xml:
5266         * docs/plugins/inspect/plugin-bayer.xml:
5267         * docs/plugins/inspect/plugin-bz2.xml:
5268         * docs/plugins/inspect/plugin-cdaudio.xml:
5269         * docs/plugins/inspect/plugin-cdxaparse.xml:
5270         * docs/plugins/inspect/plugin-dfbvideosink.xml:
5271         * docs/plugins/inspect/plugin-dtsdec.xml:
5272         * docs/plugins/inspect/plugin-dvb.xml:
5273         * docs/plugins/inspect/plugin-dvdspu.xml:
5274         * docs/plugins/inspect/plugin-faac.xml:
5275         * docs/plugins/inspect/plugin-faad.xml:
5276         * docs/plugins/inspect/plugin-fbdevsink.xml:
5277         * docs/plugins/inspect/plugin-festival.xml:
5278         * docs/plugins/inspect/plugin-filter.xml:
5279         * docs/plugins/inspect/plugin-flvdemux.xml:
5280         * docs/plugins/inspect/plugin-freeze.xml:
5281         * docs/plugins/inspect/plugin-gsm.xml:
5282         * docs/plugins/inspect/plugin-gstinterlace.xml:
5283         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
5284         * docs/plugins/inspect/plugin-h264parse.xml:
5285         * docs/plugins/inspect/plugin-interleave.xml:
5286         * docs/plugins/inspect/plugin-jack.xml:
5287         * docs/plugins/inspect/plugin-ladspa.xml:
5288         * docs/plugins/inspect/plugin-metadata.xml:
5289         * docs/plugins/inspect/plugin-mms.xml:
5290         * docs/plugins/inspect/plugin-modplug.xml:
5291         * docs/plugins/inspect/plugin-mpeg2enc.xml:
5292         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
5293         * docs/plugins/inspect/plugin-mpegtsparse.xml:
5294         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
5295         * docs/plugins/inspect/plugin-musepack.xml:
5296         * docs/plugins/inspect/plugin-musicbrainz.xml:
5297         * docs/plugins/inspect/plugin-mve.xml:
5298         * docs/plugins/inspect/plugin-neon.xml:
5299         * docs/plugins/inspect/plugin-nsfdec.xml:
5300         * docs/plugins/inspect/plugin-nuvdemux.xml:
5301         * docs/plugins/inspect/plugin-rawparse.xml:
5302         * docs/plugins/inspect/plugin-real.xml:
5303         * docs/plugins/inspect/plugin-replaygain.xml:
5304         * docs/plugins/inspect/plugin-rfbsrc.xml:
5305         * docs/plugins/inspect/plugin-sdl.xml:
5306         * docs/plugins/inspect/plugin-sdp.xml:
5307         * docs/plugins/inspect/plugin-selector.xml:
5308         * docs/plugins/inspect/plugin-sndfile.xml:
5309         * docs/plugins/inspect/plugin-soundtouch.xml:
5310         * docs/plugins/inspect/plugin-spcdec.xml:
5311         * docs/plugins/inspect/plugin-speed.xml:
5312         * docs/plugins/inspect/plugin-speexresample.xml:
5313         * docs/plugins/inspect/plugin-stereo.xml:
5314         * docs/plugins/inspect/plugin-tremor.xml:
5315         * docs/plugins/inspect/plugin-tta.xml:
5316         * docs/plugins/inspect/plugin-vcdsrc.xml:
5317         * docs/plugins/inspect/plugin-videosignal.xml:
5318         * docs/plugins/inspect/plugin-vmnc.xml:
5319         * docs/plugins/inspect/plugin-x264.xml:
5320         * docs/plugins/inspect/plugin-xvid.xml:
5321         * docs/plugins/inspect/plugin-y4menc.xml:
5322           Update to version 0.10.6.1.
5323
5324 2008-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5325
5326         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5327         * docs/plugins/inspect/plugin-gdp.xml:
5328         * docs/plugins/inspect/plugin-quicktime.xml:
5329         * docs/plugins/inspect/plugin-switch.xml:
5330         * docs/plugins/inspect/plugin-videocrop.xml:
5331           Remove docs for elements that have moved to other modules
5332           or been renamed.
5333
5334 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5335
5336         Patch by: Wouter Cloetens <wouter at mind dot be>
5337
5338         * configure.ac:
5339         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_cancel_message),
5340         (gst_soup_http_src_finished_cb), (gst_soup_http_src_chunk_free),
5341         (gst_soup_http_src_chunk_allocator),
5342         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_create),
5343         (gst_soup_http_src_start), (gst_soup_http_src_set_proxy):
5344         * ext/soup/gstsouphttpsrc.h:
5345         Implement zero-copy and make the buffer size configurable.
5346         Prefix proxy URIs with "http://" if they don't start with it
5347         already and catch errors earlier, fixes hanging in some situations.
5348         Fixes bug #514948.
5349
5350 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5351
5352         * tests/check/gst-plugins-bad.supp:
5353         Add suppressions for SoundTouch valgrind warnings and
5354         a valgrind warning caused by the LADSPA sine plugin and
5355         happening on every exit().
5356         Remove GIO suppressions as it's now in -base.
5357
5358 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5359
5360         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_create):
5361         Don't allocate and copy the data to a new place but instead
5362         put the data from gmyth (which we own) into the buffers that
5363         are passed downstream.
5364
5365 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5366
5367         * ext/timidity/gstwildmidi.c:
5368         If WILDMIDI_CFG is not defined, define it to the default
5369         timidity configure file.
5370
5371 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5372
5373         Based on a patch by:
5374           Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
5375
5376         * configure.ac:
5377         * ext/mpeg2enc/gstmpeg2enc.cc:
5378         Remove hack to work with mjpegtools 1.9.0rc3 and above and instead
5379         use mjpeg_loglev_t() for getting the log levels. Check for this
5380         function in configure.ac as the pkg-config file doesn't tell us
5381         which release candidate we have. Fixes bug #517896.
5382
5383 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5384
5385         * configure.ac:
5386         Check for X for the nas plugin to make it possible to build it
5387         again. Fixes bug #517895.
5388
5389 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5390
5391         * tests/check/Makefile.am:
5392         Ignore some more elements for the states unit test, like
5393         dfbvideosink which produces a segfault. Fixes bug #517854.
5394
5395 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5396
5397         Patch by: Jens Granseuer <jensgr at gmx dot net>
5398
5399         * gst/librfb/gstrfbsrc.c: (gst_rfb_property_set_version):
5400         * gst/librfb/rfbdecoder.c: (rfb_decoder_message_set_encodings),
5401         (rfb_decoder_state_set_encodings):
5402         * gst/mpegtsparse/mpegtspacketizer.c:
5403         (mpegts_packetizer_parse_nit), (mpegts_packetizer_parse_sdt),
5404         (mpegts_packetizer_parse_eit):
5405         * sys/fbdev/gstfbdevsink.c: (gst_fbdevsink_getcaps),
5406         (gst_fbdevsink_setcaps), (gst_fbdevsink_render):
5407         Some C89 fixes, moving variable declarations to the beginning
5408         of a block. Fixes bug #517937.
5409
5410 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
5411
5412         * configure.ac:
5413         Back to development...
5414
5415 === release 0.10.6 ===
5416
5417 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
5418
5419         * configure.ac:
5420           releasing 0.10.6, "A Big Deep Breath"
5421
5422 2008-02-20  Bastien Nocera  <hadess@hadess.net>
5423
5424         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_do_seek),
5425         (gst_mythtv_src_start): Using the wrong GstFormat for the filesize,
5426         and fail seek properly on anything but _BYTES format
5427         Fixes bug #517684
5428
5429 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
5430
5431         Patch by: Olivier Crete <tester at tester dot ca>
5432
5433         * gst/rtpmanager/gstrtpbin.c: (new_ssrc_pad_found):
5434         Fix small memory leak, leaking caps. Fixes bug #517571.
5435
5436 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
5437
5438         * gst/tta/Makefile.am:
5439         Link tta plugin with libm. Fixes bug #517391.
5440
5441 2008-02-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5442
5443         * sys/dvb/camutils.c:
5444         Do not assume "descriptors" property in the pmt structure
5445         is present.
5446         Fixes #516499.
5447
5448 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5449
5450         Patch by: Olivier Crete <tester@tester.ca>
5451
5452         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate):
5453         Ignore streams that did not receive an SR packet when doing
5454         synchronisation. Fixes #516160.
5455
5456 2008-02-14  Sebastian Dröge  <slomo@circular-chaos.org>
5457
5458         * gst/dvdspu/gstdvdspu.c: (gst_dvd_spu_handle_new_spu_buf):
5459         Set n_line_ctrl_i to 0 whenever we free line_ctrl_i. Patch based
5460         on an idea by Jan Schmidt, fixes bug #516436.
5461
5462 2008-02-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5463
5464         * gst/mpegtsparse/gstmpegdesc.c:
5465         * gst/mpegtsparse/gstmpegdesc.h:
5466         * gst/mpegtsparse/mpegtsparse.c:
5467         Make sure the gstmpegdesc debug lines do not critical
5468         when GST_DEBUG is enabled and also actually output.
5469         Thanks to Alessandro Decina for spotting.
5470         Fixes #516448
5471
5472 2008-02-13  Jan Schmidt  <jan.schmidt@sun.com>
5473
5474         * gst-libs/gst/Makefile.am:
5475         * sys/Makefile.am:
5476         Also add dshow pieces to the disted subdirs to fix distcheck.
5477
5478 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5479
5480         Patch by: Josep Torra Valles <josep@fluendo.com>
5481
5482         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_reverse):
5483         Fix potential buffer leak in reverse mode. Re-Fixes #516061.
5484
5485 2008-02-13  Sebastian Dröge  <slomo@circular-chaos.org>
5486
5487         * configure.ac:
5488         Allow gmyth versions from 0.4 up to 0.7.99, the API didn't change
5489         until 0.7 fortunately.
5490
5491 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5492
5493         * configure.ac:
5494         Generate the directshow Makefiles so that the directories
5495         get disted. Still needs some configure time detection to enable
5496         building them under MingW.
5497
5498 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5499
5500         * ext/metadata/Makefile.am:
5501         Don't install a header file. We will have to merge these
5502         tags into libgsttag after the release and use them from there.
5503         Fixes: #515860
5504
5505 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
5506
5507         * gst-libs/gst/dshow/Makefile.am:
5508         * sys/dshowdecwrapper/Makefile.am:
5509         * sys/dshowsrcwrapper/Makefile.am:
5510         Add Makefiles to win32 plugins and lib.
5511         They will need to be tested and probably fixed by developers
5512         working with mingw. This is a first step to include source files 
5513         with releases.
5514         
5515 2008-02-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5516
5517         * sys/dvb/dvbbasebin.c:
5518         Fix leak of location string returned from gst_uri_get_location.
5519         Fixes bug #516114
5520
5521 2008-02-12  David Schleef  <ds@schleef.org>
5522
5523         * configure.ac:
5524         * docs/plugins/Makefile.am:
5525         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5526         * docs/plugins/inspect/plugin-glimagesink.xml:
5527         * sys/Makefile.am:
5528         * sys/glsink/BUGS:
5529         * sys/glsink/Makefile.am:
5530         * sys/glsink/color_matrix.c:
5531         * sys/glsink/glextensions.c:
5532         * sys/glsink/glextensions.h:
5533         * sys/glsink/glimagesink.c:
5534         * sys/glsink/glimagesink.h:
5535         * sys/glsink/gltestsrc.c:
5536         * sys/glsink/gltestsrc.h:
5537         * sys/glsink/gstglbuffer.c:
5538         * sys/glsink/gstglbuffer.h:
5539         * sys/glsink/gstglconvert.c:
5540         * sys/glsink/gstgldisplay.c:
5541         * sys/glsink/gstgldisplay.h:
5542         * sys/glsink/gstgldownload.c:
5543         * sys/glsink/gstglfilter.c:
5544         * sys/glsink/gstglfilter.h:
5545         * sys/glsink/gstglfilterexample.c:
5546         * sys/glsink/gstgltestsrc.c:
5547         * sys/glsink/gstgltestsrc.h:
5548         * sys/glsink/gstglupload.c:
5549         * sys/glsink/gstopengl.c:
5550           Remove glimagesink, as it's been moved to gst-plugins-gl.
5551           Fixes #516094.
5552
5553 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5554
5555         Patch by: Josep Torra Valles <josep@fluendo.com>
5556
5557         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_reverse):
5558         Fix potential buffer leak in reverse mode. Fixes #516061.
5559
5560 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5561
5562         * sys/dshowdecwrapper/gstdshowaudiodec.c:
5563         (gst_dshowaudiodec_dispose):
5564         * sys/dshowdecwrapper/gstdshowvideodec.c:
5565         (gst_dshowvideodec_dispose):
5566         Chain up dispose methods properly. Fixes bug #515970.
5567
5568 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5569
5570         * gst/mpegvideoparse/mpegvideoparse.c:
5571         (mpegvideoparse_handle_sequence), (mpegvideoparse_drain_avail),
5572         (gst_mpegvideoparse_change_state):
5573         Fix leaking caps.
5574         Fix potential buffer leak in forward mode.
5575         Cleanup queues when going to READY. Fixes #515815.
5576
5577 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5578
5579         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5580         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5581         * docs/plugins/inspect/plugin-gio.xml:
5582         Remove documentation for the GIO plugin as it was moved to
5583         gst-plugins-base. Fixes bug #515964.
5584
5585 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5586
5587         * ext/xvid/gstxvidenc.c:
5588         * gst/vmnc/vmncdec.c:
5589         * sys/glsink/glimagesink.c:
5590         * sys/glsink/gstgldisplay.c:
5591         Fix some finalize leaks by chaining up to the parent method.
5592         Fixes: #515919
5593
5594 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5595
5596         * tests/check/elements/souphttpsrc.c:
5597         Include glib/gprintf.h for g_vasprintf(). Fixes bug #515564.
5598
5599 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5600
5601         * gst/librfb/gstrfbsrc.c: (gst_rfb_src_dispose):
5602         Free the rfb decoder on finalize. Fixes bug #515721.
5603
5604 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5605
5606         * sys/fbdev/gstfbdevsink.c: (gst_fbdevsink_class_init),
5607         (gst_fbdevsink_finalize):
5608         Free the device string in finalize. Fixes bug #515722.
5609
5610 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5611
5612         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init):
5613         Unset GValues after using them. Fixes bug #515720.
5614
5615 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5616
5617         * tests/check/Makefile.am:
5618         Disable the dvb plugin for the states test. Fixes bug #515567.
5619
5620 2008-02-10  Edgard Lima,,,,  <edgard.lima@indt.org.br>
5621
5622         * ext/metadata/TODO:
5623         * ext/metadata/metadata_mapping.htm:
5624         * ext/metadata/metadataexif.c:
5625         * ext/metadata/metadatatags.c:
5626         * ext/metadata/metadatatags.h:
5627         * tests/icles/metadata_editor.c:
5628           Revert changes to 2008-02-09 due to frozen.
5629
5630 2008-02-10  Jan Schmidt  <jan.schmidt@sun.com>
5631
5632         * ext/ivorbis/vorbisfile.c:
5633         Trivial fix for build warning.
5634         Patch by: Josep Torra Valles <josep@fluendo.com>
5635         Fixes: #515588
5636
5637 2008-02-10  Edgard Lima  <edgard.lima@indt.org.br>
5638
5639         * ext/metadata/TODO:
5640         * ext/metadata/metadataexif.c:
5641           Convert from EXIF to XMP DataTime as local time.
5642
5643 2008-02-10  Edgard Lima  <edgard.lima@indt.org.br>
5644
5645         * ext/metadata/TODO:
5646         * ext/metadata/metadata_mapping.htm:
5647         * ext/metadata/metadataexif.c:
5648         * ext/metadata/metadatatags.c:
5649         * ext/metadata/metadatatags.h:
5650         * tests/icles/metadata_editor.c:
5651           Map Date-Time and GPS tags.
5652           
5653
5654 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
5655
5656         * gst/selector/Makefile.am:
5657
5658         Listing the marshal.h in the nodist_HEADERS breaks distcheck, so
5659         let's not do that
5660
5661         * tests/check/Makefile.am:
5662         Disable the crashing cdaudio plugin from the states test so I can make
5663         pre-releases.
5664
5665 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
5666
5667         * win32/vs6/libgstdshowdecwrapper.dsp:
5668         * win32/vs6/libgstflv.dsp:
5669         Convert to DOS line endings, and set -kb
5670
5671 2008-02-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5672
5673         * sys/dvb/Makefile.am:
5674         * sys/dvb/dvbbasebin.c:
5675         Add URI Handler for dvb.
5676         Re-order pad templates to workaround a bug in playbasebin.
5677         * sys/dvb/parsechannels.c:
5678         * sys/dvb/parsechannels.h:
5679         Add code to parse channels from zap-style channels.conf files.
5680
5681 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5682
5683         * configure.ac:
5684         * docs/plugins/Makefile.am:
5685         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5686         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5687         * docs/plugins/gst-plugins-bad-plugins.args:
5688         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5689         * docs/plugins/inspect/plugin-multifile.xml:
5690         * gst/multifile/Makefile.am:
5691         * gst/multifile/gstmultifile.c:
5692         * gst/multifile/gstmultifilesink.c:
5693         * gst/multifile/gstmultifilesink.h:
5694         * gst/multifile/gstmultifilesrc.c:
5695         * gst/multifile/gstmultifilesrc.h:
5696         * gst/multifile/multifile.vproj:
5697         * tests/check/Makefile.am:
5698         * tests/check/elements/multifile.c:
5699
5700         Remove multifile plugin, which has moved to -good
5701
5702 2008-02-07  David Schleef  <ds@schleef.org>
5703
5704         * gst/multifile/gstmultifilesink.c:
5705         * gst/multifile/gstmultifilesrc.c:
5706           Use g_file_[sg]et_contents() instead of using stdio functions.
5707           Should be less error prone.
5708         * tests/check/elements/multifile.c:
5709           Create a temporary directory using standard functions instead of
5710           creating a directory in the current dir.
5711
5712 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5713
5714         * configure.ac:
5715         * docs/plugins/Makefile.am:
5716         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5717         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5718         * docs/plugins/gst-plugins-bad-plugins.args:
5719         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5720         * docs/plugins/inspect/plugin-spectrum.xml:
5721         * gst/spectrum/.cvsignore:
5722         * gst/spectrum/Makefile.am:
5723         * gst/spectrum/README:
5724         * gst/spectrum/demo-audiotest.c:
5725         * gst/spectrum/demo-osssrc.c:
5726         * gst/spectrum/gstspectrum.c:
5727         * gst/spectrum/gstspectrum.h:
5728         * gst/spectrum/spectrum.vcproj:
5729         * tests/check/Makefile.am:
5730         * tests/check/elements/spectrum.c:
5731
5732         Remove spectrum plugin, which has moved to -good
5733
5734 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5735
5736         * docs/plugins/gst-plugins-bad-plugins.args:
5737         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5738         * docs/plugins/gst-plugins-bad-plugins.interfaces:
5739         Remove equalizer plugin docs
5740
5741         * tests/check/Makefile.am:
5742         Add GST_OPTION_CFLAGS, to get -Werror -Wall into the tests as for
5743         other modules.
5744
5745         * tests/check/elements/multifile.c:
5746         * tests/check/elements/rganalysis.c:
5747         * tests/check/elements/rglimiter.c:
5748
5749         Fix compiler warnings from -Wall -Werror
5750
5751 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5752
5753         * configure.ac:
5754         * docs/plugins/Makefile.am:
5755         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5756         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5757         * docs/plugins/inspect/plugin-equalizer.xml:
5758         * gst/equalizer/.cvsignore:
5759         * gst/equalizer/Makefile.am:
5760         * gst/equalizer/demo.c:
5761         * gst/equalizer/gstiirequalizer.c:
5762         * gst/equalizer/gstiirequalizer.h:
5763         * gst/equalizer/gstiirequalizer10bands.c:
5764         * gst/equalizer/gstiirequalizer10bands.h:
5765         * gst/equalizer/gstiirequalizer3bands.c:
5766         * gst/equalizer/gstiirequalizer3bands.h:
5767         * gst/equalizer/gstiirequalizernbands.c:
5768         * gst/equalizer/gstiirequalizernbands.h:
5769         * tests/check/Makefile.am:
5770         * tests/check/elements/.cvsignore:
5771         * tests/check/elements/equalizer.c:
5772
5773         Remove the equalizer plugin, which has moved to -good
5774
5775 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5776
5777         * configure.ac:
5778         Make DISABLE_DEPRECATED defined *only* during CVS, not during
5779         pre-releases or releases.
5780
5781 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5782
5783         * docs/plugins/Makefile.am:
5784         Don't scan deleted xingmux header.
5785
5786 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5787
5788         * configure.ac:
5789         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5790         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5791         * docs/plugins/inspect/plugin-xingheader.xml:
5792         * gst/xingheader/Makefile.am:
5793         * gst/xingheader/gstxingmux.c:
5794         * gst/xingheader/gstxingmux.h:
5795         * tests/check/Makefile.am:
5796         * tests/check/elements/.cvsignore:
5797         * tests/check/elements/xingmux.c:
5798         * tests/check/elements/xingmux_testdata.h:
5799         Remove the xingmux plugin, as the element has moved into
5800         mpegaudioparse in -ugly.
5801
5802 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5803
5804         * docs/plugins/Makefile.am:
5805         Remove mention of non-existent headers to fix the build.
5806
5807 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5808
5809         * configure.ac:
5810         * ext/Makefile.am:
5811         * ext/gio/Makefile.am:
5812         * ext/gio/gstgio.c:
5813         * ext/gio/gstgio.h:
5814         * ext/gio/gstgiobasesink.c:
5815         * ext/gio/gstgiobasesink.h:
5816         * ext/gio/gstgiobasesrc.c:
5817         * ext/gio/gstgiobasesrc.h:
5818         * ext/gio/gstgiosink.c:
5819         * ext/gio/gstgiosink.h:
5820         * ext/gio/gstgiosrc.c:
5821         * ext/gio/gstgiosrc.h:
5822         * ext/gio/gstgiostreamsink.c:
5823         * ext/gio/gstgiostreamsink.h:
5824         * ext/gio/gstgiostreamsrc.c:
5825         * ext/gio/gstgiostreamsrc.h:
5826         * tests/check/Makefile.am:
5827         * tests/check/pipelines/.cvsignore:
5828         * tests/check/pipelines/gio.c:
5829
5830         Remove GIO plugin which has now moved to -base.
5831
5832 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5833
5834         * docs/plugins/Makefile.am:
5835         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5836         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5837         * docs/plugins/gst-plugins-bad-plugins.args:
5838         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5839         * gst/filter/Makefile.am:
5840         * gst/filter/filter.vcproj:
5841         * gst/filter/gstbpwsinc.c:
5842         * gst/filter/gstbpwsinc.h:
5843         * gst/filter/gstfilter.c:
5844         * gst/filter/gstfilter.h:
5845         * gst/filter/gstlpwsinc.c:
5846         * gst/filter/gstlpwsinc.h:
5847         * tests/check/Makefile.am:
5848         * tests/check/elements/bpwsinc.c:
5849         * tests/check/elements/lpwsinc.c:
5850
5851         Remove lpwsinc and bpwsinc elements - they've become
5852         audiowsinclimit and audiowsincband respectively, in the
5853         gst-plugins-good audiofx plugin.
5854
5855 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
5856
5857         * ext\neon\gstneonhttpsrc.c:
5858         Include unistd.h only if _HAVE_UNISTD_H is defined
5859         * gst\mpegvideoparse\mpegvideoparse.c:
5860         Use G_GUINT64_CONSTANT GLIB macro for constant
5861         * sys\dshowsrcwrapper\gstdshowaudiosrc.c:
5862         * sys\dshowsrcwrapper\gstdshowvideosrc.c:
5863         * sys\dshowdecwrapper\gstdshowaudiodec.c:
5864         * sys\dshowdecwrapper\gstdshowaudiodec.h:
5865         * sys\dshowdecwrapper\gstdshowdecwrapper.c:
5866         * sys\dshowdecwrapper\gstdshowdecwrapper.h:
5867         * sys\dshowdecwrapper\gstdshowvideodec.c
5868         * sys\dshowdecwrapper\gstdshowvideodec.h:
5869         Add a DirectShow decoder wrapper.
5870         * win32\MANIFEST:
5871         Add new win32 files to MANIFEST
5872         * win32\vs6\gst_plugins_bad.dsw:
5873         * win32\vs6\libgstdshow.dsp:
5874         * win32\vs6\libgstdshowdecwrapper.dsp:
5875         * win32\vs6\libgstflv.dsp:
5876         Add new projects to bad workspace
5877
5878 2008-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5879
5880         * gst/mpegtsparse/mpegtspacketizer.c:
5881         Parse component descriptor.
5882         * gst/mpegtsparse/mpegtsparse.c:
5883         Add SI pids to every program (but hardcoded currently).
5884
5885 2008-02-07  Edgard Lima  <edgard.lima@indt.org.br>
5886
5887         * ext/metadata/metadata_mapping.htm:
5888         * ext/metadata/metadataexif.c:
5889         * ext/metadata/metadatatags.c:
5890         * ext/metadata/metadatatags.h:
5891         * tests/icles/metadata_editor.c:
5892         * tests/icles/metadata_editor.glade:
5893           Add more tags. Improve test app.
5894
5895 2008-02-07  Stefan Kost  <ensonic@users.sf.net>
5896
5897         * gst/multifile/gstmultifilesink.c:
5898           Add a fixme comment.
5899
5900         * gst/selector/gstoutputselector.c:
5901           Fix same leak as in input-selector.
5902
5903         * tests/icles/output-selector-test.c:
5904           Improve the test.
5905
5906 2008-02-07  Stefan Kost  <ensonic@users.sf.net>
5907
5908         * gst/spectrum/gstspectrum.c:
5909           Improve the docs.
5910
5911 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
5912
5913         * configure.ac:
5914           The dc1394 plugin seems to use API that was removed or changed
5915           before the final 2.0.0 release, so only build it if 2.0.0-rc5
5916           is available. Someone needs to port it to the final API.
5917
5918         * ext/dc1394/gstdc1394.c: (gst_dc1394_change_camera_transmission):
5919           Include string.h for memcpy and use g_usleep instead of usleep.
5920
5921 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
5922
5923         * gst/filter/gstlpwsinc.c:
5924         Fix typo in the long description of the element.
5925
5926 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5927
5928         * gst/xingheader/Makefile.am:
5929         Put CFLAGS and LIBS in the right order
5930
5931 2008-02-06  Tim-Philipp Müller  <tim at centricular dot net>
5932
5933         * configure.ac:
5934           ximagesrc has moved to -good, so no need to check for
5935           the required X libs here any more.
5936
5937 2008-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
5938
5939         Patch by: Wouter Cloetens <wouter at mind dot be>
5940
5941         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_chunk_cb),
5942         (gst_soup_http_src_create):
5943         Fix memory leak and improve debugging a bit.
5944
5945 2008-02-05  Edgard Lima  <edgard.lima@indt.org.br>
5946
5947         * ext/metadata/metadata_mapping.htm:
5948         * ext/metadata/metadataexif.c:
5949         * ext/metadata/metadatatags.c:
5950         * ext/metadata/metadatatags.h:
5951           Add more tags mapping.
5952
5953 2008-02-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5954
5955         * gst/mpegtsparse/mpegtsparse.c:
5956         Handle latency queries in src pads.
5957
5958 2008-02-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5959
5960         * gst/mpegtsparse/mpegtspacketizer.c:
5961         Add flag to both sdt and nit structures to say
5962         whether the table is for the actual network/ts
5963         or not.
5964
5965 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5966
5967         Patch by: Josep Torra Valles <josep@fluendo.com>
5968
5969         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_flush):
5970         Flush packetizer too.
5971
5972 2008-02-04  Sebastian Dröge  <slomo@circular-chaos.org>
5973
5974         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init),
5975         (gst_ladspa_class_init), (ladspa_describe_plugin), (plugin_init):
5976         Don't use GST_BOILERPLATE as the stuff generated from it is not used
5977         anyway and can't be used.
5978         Store the class struct of the correct type in parent_class.
5979         Pass the LADSPA_Descriptor as class_data to the class_init function
5980         as preparation for the time, when we can add pad templates and friends
5981         in class_init and add a FIXME for that.
5982         Don't use a custom hash table for passing the LADSPA_Descriptors to
5983         base_init but use g_type_set_qdata and g_type_get_qdata.
5984
5985 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
5986
5987         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5988         Really fix the build.
5989         TODO : Apply spankOmatic2000 on thaytan's rear end.
5990
5991 2008-02-04  Tim-Philipp Müller  <tim at centricular dot net>
5992
5993         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5994           (GstMpeg2EncPictureReader.StreamPictureParams):
5995           Fix compilation with libmjpegtools 1.8.x.
5996
5997 2008-02-04  Sebastian Dröge  <slomo@circular-chaos.org>
5998
5999         * ext/ladspa/gstsignalprocessor.c:
6000         (gst_signal_processor_class_add_pad_template):
6001         Don't unref the pad template after adding it.
6002         gst_element_class_add_pad_template takes ownership of it.
6003
6004 2008-02-03  Jan Schmidt  <jan.schmidt@sun.com>
6005
6006         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6007         Use the incoming pixel-aspect-ratio if provided to infer a 
6008         default aspect ratio, which can be overridden using the 'aspect'
6009         property.
6010
6011         Fixes: #499008
6012
6013 2008-02-03  Sebastian Dröge  <slomo@circular-chaos.org>
6014
6015         Patch by: Andrzej Mendel <andrzej dot mendel at gmail dot com>
6016
6017         * configure.ac:
6018         Fix variable naming to make it possible to build the glimagesink
6019         plugin. Fixes bug #514093.
6020
6021 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6022
6023         * ext/metadata/gstmetadatademux.c:
6024           Demote metadatademux to GST_RANK_NONE for the release, it's not
6025           ready to be autoplugged yet.
6026
6027         * tests/icles/metadata_editor.c:
6028           Fix printf format warning for GType on ppc32 by removing it,
6029           since it doesn't make sense to print the GType value anyway.
6030
6031 2008-02-02  Edgard Lima  <edgard.lima@indt.org.br>
6032
6033         * ext/metadata/TODO:
6034         * ext/metadata/gstmetadatamux.c:
6035         * ext/metadata/metadata_mapping.htm:
6036         * ext/metadata/metadataexif.c:
6037         * ext/metadata/metadatatags.c:
6038         * ext/metadata/metadatatags.h:
6039           Map more Exif tags.
6040
6041 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
6042
6043         * gst/selector/gstinputselector.c: (gst_selector_pad_event):
6044         Don't leak event on pads that are not linked. Fixes #512826.
6045
6046 2008-02-01  Tim-Philipp Müller  <tim at centricular dot net>
6047
6048         * configure.ac:
6049           Bump core/base requirements to released versions, to avoid confusion.
6050
6051         * gst/deinterlace/Makefile.am:
6052         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_set_caps):
6053           Use the new GstVideoFormat API to get strides, plane offsets etc..
6054           For Y42B we still need to calculate these ourselves, since the lib
6055           in -base doesn't know about this format yet and we can't bump the
6056           requirement to CVS right now. Fix the Y42B stride, offset and size
6057           calculations for odd widths and heights while we're at it though
6058           (to match those in videotestsrc).
6059
6060 2008-01-31  Edgard Lima  <edgard.lima@indt.org.br>
6061
6062         * ext/metadata/metadata_mapping.htm:
6063         * ext/metadata/metadataexif.c:
6064         * ext/metadata/metadataiptc.c:
6065         * ext/metadata/metadatatags.c:
6066         * ext/metadata/metadatatags.h:
6067         * ext/metadata/metadataxmp.c:
6068           Add documentation.
6069
6070 2008-01-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6071
6072         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_reading):
6073         Fix compilation.
6074
6075 2008-01-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6076
6077         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_dispose):
6078         Really clean up the queue instead of just unreffing all buffers
6079         in it.
6080
6081         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_base_init),
6082         (gst_app_src_class_init), (gst_app_src_init),
6083         (gst_app_src_dispose), (gst_app_src_finalize):
6084         Fix dispose/finalize.
6085
6086 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6087
6088         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst):
6089         Fix compiler warning by making the function signature match what
6090         everyone is passing in...
6091
6092         * tests/icles/Makefile.am:
6093         Fix the build on Solaris by removing GNU ld specific flags that
6094         look unnecessary.
6095
6096 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6097
6098         * ext/metadata/Makefile.am:
6099         Add some relevant variables to CFLAGS and LIBADD, for example our
6100         compiler warnings paramters.
6101
6102         * ext/metadata/gstbasemetadata.c:
6103         (gst_base_metadata_strip_push_buffer),
6104         (gst_base_metadata_calculate_offsets),
6105         (gst_base_metadata_src_event), (gst_base_metadata_sink_activate):
6106         * ext/metadata/gstmetadatademux.c: (gst_metadata_demux_init),
6107         (gst_metadata_demux_set_property), (gst_metadata_demux_dispose):
6108         * ext/metadata/gstmetadatamux.c: (gst_metadata_mux_init),
6109         (gst_metadata_mux_set_property), (gst_metadata_mux_get_property),
6110         (gst_metadata_mux_dispose),
6111         (gst_metadata_mux_create_chunks_from_tags):
6112         * ext/metadata/metadata.c: (metadata_dispose):
6113         * ext/metadata/metadataexif.c:
6114         (metadataparse_exif_content_foreach_entry_func),
6115         (metadatamux_exif_for_each_tag_in_list):
6116         * ext/metadata/metadataiptc.c:
6117         (metadatamux_iptc_for_each_tag_in_list):
6118         * ext/metadata/metadatamuxjpeg.c: (metadatamux_jpeg_lazy_update),
6119         (metadatamux_jpeg_reading):
6120         * ext/metadata/metadatamuxpng.c: (metadatamux_png_reading):
6121         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_reading):
6122         * ext/metadata/metadataparsepng.c:
6123         * ext/metadata/metadataparseutil.h:
6124         * ext/metadata/metadataxmp.c: (metadataparse_xmp_tag_list_add),
6125         (metadatamux_xmp_create_chunk_from_tag_list):
6126         Fix a million warnings that showed up after the above change.
6127
6128 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6129
6130         * ext/soup/gstsouphttpsrc.c: (_do_init),
6131         (gst_soup_http_src_base_init), (gst_soup_http_src_class_init),
6132         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
6133         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
6134         (gst_soup_http_src_unicodify), (gst_soup_http_src_cancel_message),
6135         (gst_soup_http_src_queue_message),
6136         (gst_soup_http_src_add_range_header),
6137         (gst_soup_http_src_session_unpause_message),
6138         (gst_soup_http_src_session_pause_message),
6139         (gst_soup_http_src_session_close),
6140         (gst_soup_http_src_got_headers_cb),
6141         (gst_soup_http_src_got_body_cb), (gst_soup_http_src_finished_cb),
6142         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_response_cb),
6143         (gst_soup_http_src_parse_status), (gst_soup_http_src_create),
6144         (gst_soup_http_src_start), (gst_soup_http_src_stop),
6145         (gst_soup_http_src_unlock), (gst_soup_http_src_unlock_stop),
6146         (gst_soup_http_src_get_size), (gst_soup_http_src_is_seekable),
6147         (gst_soup_http_src_do_seek), (gst_soup_http_src_set_location),
6148         (gst_soup_http_src_set_proxy), (gst_soup_http_src_uri_get_type),
6149         (gst_soup_http_src_uri_get_protocols),
6150         (gst_soup_http_src_uri_get_uri), (gst_soup_http_src_uri_set_uri),
6151         (gst_soup_http_src_uri_handler_init), (plugin_init):
6152         Add changes to gstsouphttpsrc.c that were missing from last commit.
6153
6154 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6155
6156         Patch by: Wouter Cloetens <wouter at mind dot be>
6157
6158         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6159         * docs/plugins/gst-plugins-bad-plugins.args:
6160         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6161         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6162         * docs/plugins/inspect/plugin-soup.xml:
6163         (gst_soup_http_src_base_init), (gst_soup_http_src_class_init),
6164         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
6165         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
6166         (gst_soup_http_src_unicodify), (gst_soup_http_src_cancel_message),
6167         (gst_soup_http_src_queue_message),
6168         (gst_soup_http_src_add_range_header),
6169         (gst_soup_http_src_session_unpause_message),
6170         (gst_soup_http_src_session_pause_message),
6171         (gst_soup_http_src_session_close),
6172         (gst_soup_http_src_got_headers_cb),
6173         (gst_soup_http_src_got_body_cb), (gst_soup_http_src_finished_cb),
6174         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_response_cb),
6175         (gst_soup_http_src_parse_status), (gst_soup_http_src_create),
6176         (gst_soup_http_src_start), (gst_soup_http_src_stop),
6177         (gst_soup_http_src_unlock), (gst_soup_http_src_unlock_stop),
6178         (gst_soup_http_src_get_size), (gst_soup_http_src_is_seekable),
6179         (gst_soup_http_src_do_seek), (gst_soup_http_src_set_location),
6180         (gst_soup_http_src_set_proxy), (gst_soup_http_src_uri_get_type),
6181         (gst_soup_http_src_uri_get_protocols),
6182         (gst_soup_http_src_uri_get_uri), (gst_soup_http_src_uri_set_uri),
6183         (gst_soup_http_src_uri_handler_init), (plugin_init):
6184         * ext/soup/gstsouphttpsrc.h:
6185         Make coding style more consistent, including class renaming.
6186
6187 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6188
6189         * configure.ac:
6190         Fix configure check for soundtouch to not produce syntax errors.
6191
6192 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6193
6194         * configure.ac:
6195         * ext/metadata/metadataxmp.c:
6196         (metadatamux_xmp_for_each_tag_in_list):
6197         Fix build with exempi >= 1.99.5 and fix the include
6198         path for exempi.
6199
6200 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6201
6202         * ext/metadata/TODO:
6203           Just uptade the ToDo list.
6204
6205 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6206
6207         * ext/metadata/gstbasemetadata.c:
6208         * ext/metadata/metadatamuxjpeg.c:
6209         * ext/metadata/metadatamuxpng.c:
6210         * ext/metadata/metadataparsejpeg.c:
6211         * ext/metadata/metadatatypes.c:
6212         * ext/metadata/metadatatypes.h:
6213         * ext/metadata/metadataxmp.c:
6214           Add documentation. Speed up a bit png muxer. Fix xmp muxer.
6215
6216 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6217
6218         Patch by: Wouter Cloetens <wouter at mind dot be>
6219
6220         * ext/soup/gstsouphttpsrc.c:
6221         Update documentation a bit.
6222
6223         * docs/plugins/gst-plugins-bad-plugins.args:
6224         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6225         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6226         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
6227         * docs/plugins/inspect/plugin-alsaspdif.xml:
6228         * docs/plugins/inspect/plugin-dvb.xml:
6229         * docs/plugins/inspect/plugin-filter.xml:
6230         * docs/plugins/inspect/plugin-glimagesink.xml:
6231         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
6232         * docs/plugins/inspect/plugin-quicktime.xml:
6233         * docs/plugins/inspect/plugin-rawparse.xml:
6234         * docs/plugins/inspect/plugin-replaygain.xml:
6235         * docs/plugins/inspect/plugin-sdl.xml:
6236         * docs/plugins/inspect/plugin-soundtouch.xml:
6237         * docs/plugins/inspect/plugin-soup.xml:
6238         * docs/plugins/inspect/plugin-spcdec.xml:
6239         * docs/plugins/inspect/plugin-spectrum.xml:
6240         * docs/plugins/inspect/plugin-speed.xml:
6241         * docs/plugins/inspect/plugin-speexresample.xml:
6242         * docs/plugins/inspect/plugin-switch.xml:
6243         * docs/plugins/inspect/plugin-videocrop.xml:
6244         Regenerate everything for the documentation changes we had.
6245
6246 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6247
6248         * ext/gio/gstgiobasesink.c: (close_stream_cb),
6249         (gst_gio_base_sink_stop), (gst_gio_base_sink_event),
6250         (gst_gio_base_sink_render), (gst_gio_base_sink_set_stream):
6251         * ext/gio/gstgiobasesrc.c: (close_stream_cb),
6252         (gst_gio_base_src_stop), (gst_gio_base_src_create),
6253         (gst_gio_base_src_set_stream):
6254         Use async variants of the close stream functions to prevent blocking
6255         for a long time there and add some more sanity checks for a correct
6256         stream.
6257
6258 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6259
6260         * tests/icles/Makefile.am:
6261         Move -Wl parameter from _LDADD to _LDFLAGS to fix autogen.sh.
6262
6263 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6264
6265         Patch by: Wouter Cloetens <wouter at mind dot be>
6266
6267         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_init):
6268         Let the proxy property default to the content of the $http_proxy
6269         environment variable.
6270
6271 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6272
6273         Patch by: Wouter Cloetens <wouter at mind dot be>
6274
6275         * tests/check/test-cert.pem:
6276         * tests/check/test-key.pem:
6277         Add missing files for the unit test.
6278
6279 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6280
6281         Patch by: Wouter Cloetens <wouter at mind dot be>
6282
6283         * docs/plugins/Makefile.am:
6284         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6285         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6286         Add souphttpsrc to the docs.
6287
6288         * configure.ac:
6289         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
6290         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
6291         (gst_souphttp_src_set_property), (gst_souphttp_src_get_property),
6292         (gst_souphttp_src_cancel_message),
6293         (gst_souphttp_src_queue_message),
6294         (gst_souphttp_src_add_range_header),
6295         (gst_souphttp_src_session_unpause_message),
6296         (gst_souphttp_src_session_pause_message),
6297         (gst_souphttp_src_session_close),
6298         (gst_souphttp_src_got_headers_cb), (gst_souphttp_src_got_body_cb),
6299         (gst_souphttp_src_finished_cb), (gst_souphttp_src_got_chunk_cb),
6300         (gst_souphttp_src_response_cb), (gst_souphttp_src_parse_status),
6301         (gst_souphttp_src_create), (gst_souphttp_src_start),
6302         (gst_souphttp_src_stop), (gst_souphttp_src_unlock),
6303         (gst_souphttp_src_unlock_stop), (gst_souphttp_src_get_size),
6304         (gst_souphttp_src_is_seekable), (gst_souphttp_src_do_seek),
6305         (gst_souphttp_src_set_location), (gst_souphttp_src_set_proxy),
6306         (plugin_init):
6307         * ext/soup/gstsouphttpsrc.h:
6308         Add support for libsoup2.4 and require it. Also implement redirection
6309         and manual proxy specification. Fixes bug #510708.
6310
6311         * tests/check/Makefile.am:
6312         * tests/check/elements/.cvsignore:
6313         * tests/check/elements/souphttpsrc.c:
6314         Add unit test for souphttpsrc.
6315
6316 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6317
6318         * ext/Makefile.am:
6319         * ext/metadata/TODO:
6320         * ext/metadata/gstbasemetadata.c:
6321         * ext/metadata/gstbasemetadata.h:
6322         * ext/metadata/metadatamuxjpeg.c:
6323         * ext/metadata/metadatamuxjpeg.h:
6324         * ext/metadata/metadatamuxpng.c:
6325         * ext/metadata/metadatamuxpng.h:
6326         * ext/metadata/metadataparsejpeg.c:
6327         * ext/metadata/metadataparsepng.c:
6328         * tests/icles/Makefile.am:
6329           Add documentation. Fix test app compilation. Fix pull mode.
6330
6331 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6332
6333         Patch by: Thijs Vermeir  <thijsvermeir at gmail dot com>
6334
6335         * gst/rtpmanager/gstrtpjitterbuffer.c:
6336         (gst_rtp_jitter_buffer_chain):
6337         Try to get the new clock-rate from the buffer caps when we receive a new
6338         payload type instead of always firing the signal. Fixes #512774.
6339
6340 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
6341
6342         * ext/mpeg2enc/gstmpeg2enc.cc:
6343         Define LOG_NONE and friends if they're not defined yet. mjpegtools
6344         1.9.0rc3 removed their definitions but without it doesn't make much
6345         sense to write a log handler.
6346
6347 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6348
6349         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6350         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6351         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6352         * docs/plugins/gst-plugins-bad-plugins.types:
6353           Add base classes for metadata and equalizer (no introspection yet).
6354
6355 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6356
6357         * ext/metadata/README:
6358           Formatting.
6359         * tests/icles/metadata_editor.c:
6360           Include stdlib.h.
6361
6362 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6363
6364         * configure.ac:
6365         * docs/plugins/Makefile.am:
6366         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6367         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6368         * docs/plugins/gst-plugins-bad-plugins.args:
6369         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6370         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6371         * docs/plugins/gst-plugins-bad-plugins.signals:
6372         * docs/plugins/inspect/plugin-metadata.xml:
6373         * docs/plugins/inspect/plugin-selector.xml:
6374         * docs/plugins/inspect/plugin-soundtouch.xml:
6375         * docs/plugins/inspect/plugin-switch.xml:
6376         * gst/selector/.cvsignore:
6377         * gst/selector/Makefile.am:
6378         * gst/selector/gstinputselector.c:
6379         * gst/selector/gstinputselector.h:
6380         * gst/selector/gstoutputselector.c:
6381         * gst/selector/gstoutputselector.h:
6382         * gst/selector/gstselector-marshal.list:
6383         * gst/selector/gstselector.c:
6384         * gst/selector/selector.vcproj:
6385         * gst/switch/.cvsignore:
6386         * gst/switch/Makefile.am:
6387         * gst/switch/gstswitch-marshal.list:
6388         * gst/switch/gstswitch.c:
6389         * gst/switch/gstswitch.h:
6390         * gst/switch/switch.vcproj:
6391         * tests/icles/.cvsignore:
6392         * tests/icles/Makefile.am:
6393         * tests/icles/output-selector-test.c:
6394           Replace the switch plugin with the selector plugin. Add output-
6395           selector as the opposite of input-selectoo (was switch). Add a test
6396           for output-selector. Add docs for the elements. The vcproj needs
6397           update. Fixes #500142.
6398
6399 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6400
6401         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_forward):
6402           Try to avoid 'unused variable' compiler warning if debugging is
6403           disabled (not bullet proof, but seems to do for now). (#512654)
6404
6405 2008-01-28  Sebastian Dröge  <slomo@circular-chaos.org>
6406
6407         * ext/soundtouch/gstbpmdetect.cc:
6408         Clean up a bit and only allocate a temporary buffer for the data
6409         if processing stereo data as BPMDetect downmixes from stereo to
6410         mono and stores the result in the input data. Thanks to
6411         Stefan Kost for the suggestions.
6412
6413 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6414
6415         * ext/soundtouch/gstpitch.cc:
6416         Cast a double to a GstClockTimeDiff to fix a compiler warning.
6417
6418 2008-01-27  Stefan Kost  <ensonic@users.sf.net>
6419
6420         * tests/icles/metadata_editor.c:
6421           Printf format fix.
6422
6423 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6424
6425         * ext/soundtouch/gstpitch.cc:
6426         Don't send a LATENCY event for now until we get the usage right.
6427
6428 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6429
6430         * ext/soundtouch/gstpitch.cc:
6431         * ext/soundtouch/gstpitch.hh:
6432         Implement LATENCY query and notify about latency changes.
6433         Unfortunately we don't have a fixed latency but it changes
6434         a bit with each buffer so we only send an LATENCY event with
6435         the maximum latency if it changes.
6436
6437         Always calculate the timestamp, duration, etc from the sample
6438         rate instead of using a pre-calculated duration for one sample
6439         to prevent large rounding errors.
6440
6441 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6442
6443         Based on a patch by:
6444             Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
6445
6446         * configure.ac:
6447         * ext/mpeg2enc/gstmpeg2encoder.cc:
6448         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6449         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
6450         Add support for building against mjpegtools 1.9 while keeping
6451         compatiblity with older versions.
6452
6453 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6454
6455         * ext/soundtouch/gstbpmdetect.cc:
6456         Only consider a BPM value above 1.0 as valid.
6457
6458 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6459
6460         * ext/soundtouch/Makefile.am:
6461         * ext/soundtouch/gstbpmdetect.cc:
6462         * ext/soundtouch/gstbpmdetect.hh:
6463         * ext/soundtouch/plugin.c: (plugin_init):
6464         Add BPM detection plugin based on SoundTouch's libBPM.
6465
6466         * ext/soundtouch/gstpitch.cc:
6467         Allow sample rates until MAX instead of only 48kHz and remove the
6468         buffer-frames field from that caps.
6469         Clear the remaining samples completely when necessary to get into
6470         a clean state again.
6471
6472 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6473
6474         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init):
6475         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
6476         Don't implement get_unit_size() ourselves, the GstAudioFilter base
6477         class already does this for us.
6478
6479 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6480
6481         * ext/soundtouch/gstpitch.cc:
6482         Allow seeking only in TIME and DEFAULT format, other formats will
6483         not work as expected. Also handle a stop position of -1 correctly
6484         for seeks, newsegment events and the queries. This fixes playback
6485         with the pitch element if upstream doesn't know the duration or has
6486         -1 as stop position in NEWSEGMENT events for other reasons. Before
6487         simply nothing was played as the segment was going from 0 to 0.
6488
6489         Send a GST_MESSAGE_DURATION whenever the rate or tempo is changed
6490         so applications can update their cached duration. Fixes bug #503308.
6491
6492         Some random cleanup and memory leak closing.
6493
6494 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6495
6496         * ext/musepack/gstmusepackdec.h:
6497         * ext/musepack/gstmusepackreader.c:
6498         First include the libmpcdec headers before everything else as they
6499         #define TRUE and FALSE unconditionally and we otherwise get conflicts
6500         with the ones that GLib defines.
6501
6502 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6503
6504         * configure.ac:
6505         * ext/soundtouch/gstpitch.cc:
6506         Add support for libsoundtouch 1.3.1 and add an ugly workaround for
6507         the header definined PACKAGE and other variables for which we need
6508         our own values from config.h.
6509
6510 2008-01-26  Tim-Philipp Müller  <tim at centricular dot net>
6511
6512         * configure.ac:
6513           Check for libglade-2.0, for the metadata-editor example.
6514
6515         * tests/icles/Makefile.am:
6516           Only try to build the metadata-editor example if we have gtk and
6517           glade (otherwise the build would just fail ...); fix build in
6518           uninstalled setup.
6519
6520         * tests/icles/metadata_editor.c: (on_cell_edited), (ui_add_columns):
6521           Fix compiler warnings (use GLib macros to cast pointer <-> int).
6522
6523 2008-01-25  Edgard Lima  <edgard.lima@indt.org.br>
6524
6525         * ext/metadata/TODO:
6526         * ext/metadata/gstbasemetadata.c:
6527         * ext/metadata/metadata.c:
6528         * ext/metadata/metadata.h:
6529         * ext/metadata/metadataexif.c:
6530         * ext/metadata/metadataexif.h:
6531         * ext/metadata/metadataiptc.c:
6532         * ext/metadata/metadataiptc.h:
6533         * ext/metadata/metadataparsejpeg.c:
6534         * ext/metadata/metadataparsejpeg.h:
6535         * ext/metadata/metadataparsepng.c:
6536         * ext/metadata/metadataparsepng.h:
6537         * ext/metadata/metadataparseutil.c:
6538         * ext/metadata/metadataparseutil.h:
6539         * ext/metadata/metadatatags.c:
6540         * ext/metadata/metadatatags.h:
6541         * ext/metadata/metadatatypes.c:
6542         * ext/metadata/metadatatypes.h:
6543         * ext/metadata/metadataxmp.c:
6544         * ext/metadata/metadataxmp.h:
6545         * ext/metadata/test/Makefile:
6546         * ext/metadata/test/MetadataEditorMain.glade:
6547         * ext/metadata/test/metadata_editor.c:
6548         * tests/icles/Makefile.am:
6549         * tests/icles/metadata_editor.c:
6550         * tests/icles/metadata_editor.glade:
6551           Add lot of documentation.
6552
6553 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6554
6555         * sys/dvb/gstdvbsrc.c:
6556         Open frontend in NULL->READY so caps about dvb adapter can be
6557         seen by the app.
6558
6559 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6560
6561         Patch by: Olivier Crete <tester@tester.ca>
6562
6563         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
6564         (create_stream), (payload_type_change), (new_ssrc_pad_found):
6565         Also handle lip-sync when the clock-rate is not provided with caps but
6566         with a signal.
6567
6568 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6569
6570         Patch by: Olivier Crete <tester@tester.ca>
6571
6572         * gst/rtpmanager/gstrtpjitterbuffer.c:
6573         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_chain):
6574         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew),
6575         (rtp_jitter_buffer_insert):
6576         * gst/rtpmanager/rtpjitterbuffer.h:
6577         Remove the fixed clock-rate from the jitterbuffer and extend it so that
6578         a clock-rate can be provided with each buffer instead. Fixes #511686.
6579
6580 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6581
6582         Patch by: Olivier Crete <tester@tester.ca>
6583
6584         * gst/rtpmanager/gstrtpjitterbuffer.c:
6585         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_change_state),
6586         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
6587         Remove old unused variable.
6588         Track pt on input buffers and get the clock-rate when it changes.
6589         Ignore packets with unknown clock-rate. Fixes #511146.
6590
6591 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6592
6593         * sys/dvb/gstdvbsrc.c:
6594         Post bus message about adapter type and it's capabilities,
6595         when opening the frontend.
6596         After failing to read from the dvr, post a bus message to
6597         inform the app.
6598
6599 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6600
6601         * gst/mpegtsparse/mpegtspacketizer.c:
6602         The logic for the guard interval calculation was totally wrong.
6603         Fixed.
6604
6605 2008-01-24  David Schleef  <ds@schleef.org>
6606
6607         Patch by: Olivier Crete <tester@tester.ca>
6608
6609         * gst/rtpmanager/rtpsource.c: Fix unref of buffer using the
6610           wrong function.  Fixes #511920
6611
6612 2008-01-24  Stefan Kost  <ensonic@users.sf.net>
6613
6614         * docs/plugins/Makefile.am:
6615         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6616         * docs/plugins/gst-plugins-bad-plugins.args:
6617         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6618         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6619         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
6620         * docs/plugins/gst-plugins-bad-plugins.signals:
6621           Now we have full hierarchy.
6622
6623         * docs/plugins/inspect/plugin-metadata.xml:
6624           Regenerate.
6625
6626         * ext/amrwb/gstamrwbdec.h:
6627           Add doc blob for object instance.
6628
6629 2008-01-24  Tim-Philipp Müller  <tim at centricular dot net>
6630
6631         * docs/plugins/gst-plugins-bad-plugins.args:
6632         * docs/plugins/inspect/plugin-metadata.xml:
6633           Update this too, hopefully fixes the docs build (does at least
6634           for me, after make clean in docs/plugins).
6635
6636 2008-01-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6637
6638         * gst/mpegtsparse/gstmpegdesc.h:
6639         * gst/mpegtsparse/mpegtspacketizer.c:
6640         Fix network name descriptor, the length is actually the
6641         descriptor length not stored in the byte after.
6642         Fix bounds checking to be more correct.
6643
6644 2008-01-23  Edgard Lima  <edgard.lima@indt.org.br>
6645
6646         * docs/plugins/Makefile.am:
6647         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6648         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6649         * ext/metadata/TODO:
6650         * ext/metadata/gstbasemetadata.c:
6651         * ext/metadata/gstbasemetadata.h:
6652         * ext/metadata/gstmetadatademux.c:
6653         * ext/metadata/gstmetadatademux.h:
6654         * ext/metadata/gstmetadatamux.c:
6655         * ext/metadata/gstmetadatamux.h:
6656         * ext/metadata/metadatatags.c:
6657           Add some documentation.
6658
6659 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6660
6661         * configure.ac:
6662         * ext/dts/gstdtsdec.c:
6663         Add support for building against libdca (with the libdts compat
6664         header). Fixes bug #511530.
6665
6666         Should probably be ported to libdca as some points as it's the
6667         successor of libdts.
6668
6669 2008-01-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6670
6671         * sys/dvb/gstdvbsrc.c:
6672         Do not go on forever if problem with reading from dvr, rather
6673         return NULL.
6674         Handle some cleanup issues of closing filedescriptors when
6675         failing to tune or similar.
6676
6677 2008-01-23 Christian Schaller <christian.schaller@collabora.co.uk>
6678
6679         * gst/rawparse/Makefile.am: Add missing header files to noinst_headers
6680         * gst-plugins-bad.spec: update for latest changes
6681
6682 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6683
6684         * docs/plugins/Makefile.am:
6685         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6686         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6687         * gst/xingheader/gstxingmux.c:
6688         * gst/xingheader/gstxingmux.h:
6689         Add documentation for the xingheader plugin.
6690
6691         * tests/check/elements/xingmux.c: (GST_START_TEST):
6692         Set element state to PLAYING before doing something else.
6693
6694 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6695
6696         * tests/check/Makefile.am:
6697         * tests/check/elements/.cvsignore:
6698         * tests/check/elements/xingmux.c: (setup_xingmux),
6699         (cleanup_xingmux), (GST_START_TEST), (xingmux_suite), (main):
6700         * tests/check/elements/xingmux_testdata.h:
6701         Add simple unit test for the xingmux element.
6702
6703         * gst/xingheader/gstxingmux.c: (generate_xing_header),
6704         (gst_xing_mux_finalize), (xing_reset):
6705         Fix a memleak and invalid seek tables with less than 100 MP3 frames.
6706
6707 2008-01-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6708
6709         * gst/mpegtsparse/gstmpegdesc.h:
6710         * gst/mpegtsparse/mpegtspacketizer.c:
6711         Parsed the satellite delivery system descriptor and
6712         added into nit's transport structure for delivery
6713         over the bus.
6714
6715 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6716
6717         * gst/mpegtsparse/mpegtspacketizer.c:
6718         Parsed and added network name to the nit structure sent
6719         in the bus message.
6720
6721 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6722
6723         * gst/mpegtsparse/mpegtspacketizer.c:
6724         Remove leaks introduced by not freeing g_strndup'd strings.
6725         Fix start_time and duration parsing in EIT.
6726
6727 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6728
6729         * gst/mpegtsparse/mpegtspacketizer.c:
6730         Add event name and description to the eit structure
6731         sent in the bus message.
6732
6733 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6734
6735         * gst/mpegtsparse/mpegtsparse.c:
6736         Revert const removal from previous commit.
6737
6738 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6739
6740         * gst/mpegtsparse/Makefile.am:
6741         * gst/mpegtsparse/gstmpegdesc.c:
6742         * gst/mpegtsparse/gstmpegdesc.h:
6743         * gst/mpegtsparse/mpegtspacketizer.c:
6744         * gst/mpegtsparse/mpegtsparse.c:
6745         Added descriptor searching infrastructure from Fluendo TS demuxer.
6746         Add channel name and provider to the sdt structure sent in the
6747         bus message.
6748
6749 2008-01-22  Julien Moutte  <julien@fluendo.com>
6750
6751         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_forward):
6752         Parse NAL units in forward mode to mark delta units flags.
6753
6754 2008-01-22  Stefan Kost  <ensonic@users.sf.net>
6755
6756         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6757         * docs/plugins/gst-plugins-bad-plugins.args:
6758         * docs/plugins/inspect/plugin-mpeg2enc.xml:
6759         * docs/plugins/inspect/plugin-musepack.xml:
6760           Regenerate.
6761   
6762         * docs/plugins/inspect/plugin-tremor.xml:
6763           Add vorbisidec aka trmor.
6764
6765         * ext/dc1394/gstdc1394.c:
6766           Add short description.
6767
6768 2008-01-22  Stefan Kost  <ensonic@users.sf.net>
6769
6770         * docs/plugins/Makefile.am:
6771           Add missing eol \
6772
6773         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6774           Place object names to standard sectionas plugin dont document those.
6775
6776         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6777         * docs/plugins/gst-plugins-bad-plugins.args:
6778         * docs/plugins/gst-plugins-bad-plugins.signals:
6779         * docs/plugins/inspect/plugin-dvb.xml:
6780         * docs/plugins/inspect/plugin-nuvdemux.xml:
6781           regenerate.
6782           
6783         * ext/ivorbis/vorbisdec.c:
6784         * ext/ivorbis/vorbisdec.h:
6785           Mark private vars and add short desc.
6786
6787         * ext/mythtv/gstmythtvsrc.c:
6788         * ext/theora/theoradec.c:
6789           Add short desc.
6790
6791 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6792
6793         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6794         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6795         * gst/nuvdemux/gstnuvdemux.c:
6796           One less to do. Its 'nuv' not 'nvu'. As an extra bonus I mention what
6797           it actually is.
6798
6799 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6800
6801         * docs/plugins/Makefile.am:
6802         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6803         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6804           Update lists again. Those whole can build ivorbisdec, mythtvsrc,
6805           nvudemux and theoradecexp, please commit the inspect/plugin-xxx.xml.
6806
6807         * docs/plugins/inspect/plugin-gstinterlace.xml:
6808         * docs/plugins/inspect/plugin-rawparse.xml
6809         * docs/plugins/inspect/plugin-videoparse.xml:
6810           Replace videoparse with rawparse.
6811
6812         * gst/dvdspu/gstdvdspu.h:
6813           Help gtk-doc to recognize the object struct.
6814
6815 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6816
6817         * gst/librfb/rfbdecoder.c:
6818         * gst/librfb/rfbdecoder.h:
6819           Don't use gtk-doc comment style for non gtk-doc comments.
6820           Make one static function static.
6821
6822 2008-01-21  Wim Taymans  <wim.taymans@collabora.co.uk>
6823
6824         Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
6825
6826         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_class_init),
6827         (gst_deinterlace_init), (gst_deinterlace_set_caps),
6828         (gst_deinterlace_transform_ip), (gst_deinterlace_set_property),
6829         (gst_deinterlace_get_property):
6830         * gst/deinterlace/gstdeinterlace.h:
6831         Provide 4:2:2 support
6832         Also deinterlace chroma planes
6833         Allow to turn on/off deinterlacing
6834         Change of default thresholds, in order to provide acceptable results
6835         with default params. Fixes #511001.
6836
6837 2008-01-21  Tim-Philipp Müller  <tim at centricular dot net>
6838
6839         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6840           Update docs file too.
6841
6842 2008-01-21  Tim-Philipp Müller  <tim at centricular dot net>
6843
6844         * gst/dvdspu/gstdvdspu-render.c: (gst_dvd_spu_render_spu):
6845         * gst/dvdspu/gstdvdspu.c: (dvdspu_debug), (GST_CAT_DEFAULT),
6846           (subpic_sink_factory), (gst_dvd_spu_base_init),
6847           (gst_dvd_spu_class_init), (gst_dvd_spu_init), (gst_dvd_spu_clear),
6848           (gst_dvd_spu_dispose), (gst_dvd_spu_finalize),
6849           (gst_dvd_spu_flush_spu_info), (gst_dvd_spu_buffer_alloc),
6850           (gst_dvd_spu_src_event), (gst_dvd_spu_video_set_caps),
6851           (gst_dvd_spu_video_proxy_getcaps), (gst_dvd_spu_video_event),
6852           (gst_dvd_spu_video_chain), (dvspu_handle_vid_buffer),
6853           (gst_dvd_spu_redraw_still), (gst_dvd_spu_parse_chg_colcon),
6854           (gst_dvd_spu_exec_cmd_blk), (gst_dvd_spu_finish_spu_buf),
6855           (gst_dvd_spu_setup_cmd_blk), (gst_dvd_spu_handle_new_spu_buf),
6856           (gst_dvd_spu_handle_dvd_event), (gst_dvd_spu_advance_spu),
6857           (gst_dvd_spu_check_still_updates), (gst_dvd_spu_subpic_chain),
6858           (gst_dvd_spu_subpic_event), (gst_dvd_spu_change_state),
6859           (gst_dvd_spu_plugin_init):
6860         * gst/dvdspu/gstdvdspu.h: (GST_TYPE_DVD_SPU):
6861           Fix up dvdspu element again after previous namespace mangling:
6862           rename debug category variable to old name, matching that in
6863           dvdspu-render.c, to avoid undefined symbol error when loading
6864           the module; same for the _render function in dvdspu-render.c:
6865           we must use the same name in both .c files; change functions
6866           now called gstgst_* back to gst_* again; and while we're at it,
6867           we may as well canonicalise the namespace properly, namely to
6868           gst_dvd_spu_*.
6869
6870 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6871
6872         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6873         * ext/theora/theoradec.c:
6874         * ext/theora/theoradec.h:
6875           Coherent namespace usage and adding symbold from unused to sections.
6876
6877 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6878
6879         * docs/plugins/Makefile.am:
6880         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6881           Add symbols from -unused.txt to the right place.
6882
6883         * gst/dvdspu/gstdvdspu.c:
6884         * gst/dvdspu/gstdvdspu.h:
6885           Coherent namespace usage.
6886
6887         * gst/spectrum/gstspectrum.c:
6888           Fix broken XML fragment in doc snippet even more.
6889
6890 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6891
6892         * docs/plugins/Makefile.am:
6893           Update include list.
6894
6895         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6896           Update xml includes.
6897
6898         * docs/plugins/inspect/plugin-alsaspdif.xml:
6899         * docs/plugins/inspect/plugin-amrwb.xml:
6900         * docs/plugins/inspect/plugin-bayer.xml:
6901         * docs/plugins/inspect/plugin-bz2.xml:
6902         * docs/plugins/inspect/plugin-cdxaparse.xml:
6903         * docs/plugins/inspect/plugin-dtsdec.xml:
6904         * docs/plugins/inspect/plugin-dvbsrc.xml:
6905         * docs/plugins/inspect/plugin-dvdspu.xml:
6906         * docs/plugins/inspect/plugin-equalizer.xml:
6907         * docs/plugins/inspect/plugin-faac.xml:
6908         * docs/plugins/inspect/plugin-faad.xml:
6909         * docs/plugins/inspect/plugin-fbdevsink.xml:
6910         * docs/plugins/inspect/plugin-festival.xml:
6911         * docs/plugins/inspect/plugin-filter.xml:
6912         * docs/plugins/inspect/plugin-flvdemux.xml:
6913         * docs/plugins/inspect/plugin-freeze.xml:
6914         * docs/plugins/inspect/plugin-gsm.xml:
6915         * docs/plugins/inspect/plugin-gstinterlace.xml:
6916         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
6917         * docs/plugins/inspect/plugin-h264parse.xml:
6918         * docs/plugins/inspect/plugin-interleave.xml:
6919         * docs/plugins/inspect/plugin-ladspa.xml:
6920         * docs/plugins/inspect/plugin-metadata.xml:
6921         * docs/plugins/inspect/plugin-modplug.xml:
6922         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
6923         * docs/plugins/inspect/plugin-mpegtsparse.xml:
6924         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
6925         * docs/plugins/inspect/plugin-musicbrainz.xml:
6926         * docs/plugins/inspect/plugin-mve.xml:
6927         * docs/plugins/inspect/plugin-nsfdec.xml:
6928         * docs/plugins/inspect/plugin-nuvdemux.xml:
6929         * docs/plugins/inspect/plugin-qtdemux.xml:
6930         * docs/plugins/inspect/plugin-quicktime.xml:
6931         * docs/plugins/inspect/plugin-real.xml:
6932         * docs/plugins/inspect/plugin-replaygain.xml:
6933         * docs/plugins/inspect/plugin-sdl.xml:
6934         * docs/plugins/inspect/plugin-sdp.xml:
6935         * docs/plugins/inspect/plugin-spectrum.xml:
6936         * docs/plugins/inspect/plugin-speed.xml:
6937         * docs/plugins/inspect/plugin-speexresample.xml:
6938         * docs/plugins/inspect/plugin-stereo.xml:
6939         * docs/plugins/inspect/plugin-switch.xml:
6940         * docs/plugins/inspect/plugin-timidity.xml:
6941         * docs/plugins/inspect/plugin-tta.xml:
6942         * docs/plugins/inspect/plugin-videocrop.xml:
6943         * docs/plugins/inspect/plugin-videoparse.xml:
6944         * docs/plugins/inspect/plugin-videosignal.xml:
6945         * docs/plugins/inspect/plugin-vmnc.xml:
6946         * docs/plugins/inspect/plugin-wildmidi.xml:
6947         * docs/plugins/inspect/plugin-x264.xml:
6948         * docs/plugins/inspect/plugin-xingheader.xml:
6949         * docs/plugins/inspect/plugin-xvid.xml:
6950         * docs/plugins/inspect/plugin-y4menc.xml:
6951           Regenerate files.
6952
6953         * gst/spectrum/gstspectrum.c:
6954           Fix broken XML fragment in doc snippet.
6955
6956         * tests/check/elements/.cvsignore:
6957           Add test binary to ignores.
6958
6959 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6960
6961         * gst/h264parse/gsth264parse.c:
6962           Fix the build. GST_TIME_ARGS takes a timestamp not a buffer.
6963
6964 2008-01-20  Sebastian Dröge  <slomo@circular-chaos.org>
6965
6966         Patch by: Wouter Cloetens <wouter at mind dot be>
6967
6968         * ext/soup/gstsouphttpsrc.c: (soup_got_headers):
6969         Report the size of the stream as the total size instead of
6970         the remaining Content-Length, which is wrong after a seek.
6971
6972 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6973
6974         * gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
6975         (gst_raw_parse_loop):
6976         Handle framesizes > 4096 with multiple frames per buffer correctly
6977         in pull mode and handle short reads better.
6978         Also put offset and offset_end on outgoing buffers.
6979
6980 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6981
6982         * gst/rawparse/gstrawparse.c: (gst_raw_parse_loop):
6983         Improve handling of unknown or too small upstream sizes in
6984         pull mode.
6985
6986 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6987
6988         * gst/rawparse/gstrawparse.c: (gst_raw_parse_loop),
6989         (gst_raw_parse_handle_seek_push):
6990         Improve debugging a bit and for handling multiple frames per buffer
6991         in pull mode choose the next smallest multiply of framesize below
6992         4096 instead of always handling 1024 frames.
6993
6994 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6995
6996         Patch by: Wouter Cloetens <wouter at mind dot be>
6997
6998         * ext/soup/gstsouphttpsrc.c: (soup_got_headers):
6999         Correctly set duration on the GstBaseSrc segment when we know it
7000         to fix failing the duration query.
7001
7002 2008-01-18  Wim Taymans  <wim.taymans@collabora.co.uk>
7003
7004         * gst/h264parse/gsth264parse.c: (gst_h264_parse_flush_decode),
7005         (gst_h264_parse_queue_buffer), (gst_h264_parse_chain_reverse):
7006         Set timestamps more correctly.
7007
7008 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7009
7010         * gst/rawparse/gstrawparse.c: (gst_raw_parse_class_init),
7011         (gst_raw_parse_init), (gst_raw_parse_reset),
7012         (gst_raw_parse_set_src_caps), (gst_raw_parse_push_buffer),
7013         (gst_raw_parse_chain), (gst_raw_parse_loop),
7014         (gst_raw_parse_sink_activate), (gst_raw_parse_sink_activatepull),
7015         (gst_raw_parse_change_state), (gst_raw_parse_sink_event),
7016         (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
7017         (gst_raw_parse_src_event), (gst_raw_parse_src_query):
7018         * gst/rawparse/gstrawparse.h:
7019         Implement pull mode.
7020
7021 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7022
7023         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
7024         Fix memory leak spotted by the unit test.
7025
7026 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7027
7028         * tests/check/Makefile.am:
7029         Enable spectrum test again.
7030
7031         * tests/check/gst-plugins-bad.supp:
7032         Add suppressions for a singleton in GIO that can't be freed.
7033
7034 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7035
7036         * tests/check/Makefile.am:
7037         * tests/check/elements/.cvsignore:
7038         * tests/check/elements/equalizer.c: (setup_equalizer),
7039         (cleanup_equalizer), (GST_START_TEST), (equalizer_suite), (main):
7040         Add some minimal tests for the equalizer plugin.
7041
7042 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7043
7044         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_finalize):
7045         Unparent all bands from the equalizer when finalizing to stop
7046         leaking them.
7047
7048 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7049
7050         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_uri_get_protocols):
7051         Add support for WebDAV.
7052
7053 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7054
7055         Patch by: Wouter Cloetens <wouter at mind dot be>
7056
7057         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
7058         (gst_souphttp_src_init), (gst_souphttp_src_create),
7059         (gst_souphttp_src_is_seekable), (gst_souphttp_src_do_seek),
7060         (soup_add_range_header), (soup_got_headers), (soup_got_chunk):
7061         * ext/soup/gstsouphttpsrc.h:
7062         Add support for seeking to souphttpsrc. Fixes bug #502335.
7063
7064 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
7065
7066         * gst/h264parse/gsth264parse.c: (gst_h264_parse_clear_queues),
7067         (gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
7068         (gst_h264_parse_find_start_reverse),
7069         (gst_h264_parse_chain_reverse), (gst_h264_parse_chain):
7070         * gst/h264parse/gsth264parse.h:
7071         Improve debugging.
7072         Fix buffer splitting at sync codes and leftover buffer after
7073         scanning.
7074
7075 2008-01-17  Edgard Lima  <edgard.lima@indt.org.br>
7076
7077         * ext/metadata/TODO:
7078         * ext/metadata/metadataexif.c:
7079         * ext/metadata/metadataxmp.c:
7080           Fixed adding EXIF tags to correct IFD. Mapped some XMP tags.
7081
7082 2008-01-16  Wim Taymans  <wim.taymans@collabora.co.uk>
7083
7084         * gst/h264parse/gsth264parse.c: (gst_nal_list_new),
7085         (gst_nal_list_prepend_link), (gst_nal_list_delete_head),
7086         (gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
7087         (gst_nal_bs_read_ue), (gst_h264_parse_class_init),
7088         (gst_h264_parse_init), (gst_h264_parse_set_property),
7089         (gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
7090         (gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
7091         (gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
7092         (gst_h264_parse_find_start_reverse),
7093         (gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
7094         (gst_h264_parse_sink_event), (gst_h264_parse_change_state):
7095         * gst/h264parse/gsth264parse.h:
7096         Add reverse playback support for containers that don't know how to
7097         properly send data between I-frames.
7098
7099 2008-01-16  Sebastian Dröge  <slomo@circular-chaos.org>
7100
7101         * configure.ac:
7102         * tests/check/pipelines/gio.c: (GST_START_TEST):
7103         Update for API changes in GIO and require GIO 2.15.2 for this.
7104
7105 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7106
7107         * gst/xingheader/gstxingmux.c: (generate_xing_header):
7108         Bitrate is 4 bits, not 8 so check for 0xe as maximum value instead
7109         of 0xfe.
7110
7111 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7112
7113         * gst/xingheader/gstxingmux.c: (generate_xing_header):
7114         Remove accidentially leftover debug printf.
7115
7116 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7117
7118         * gst/xingheader/gstxingmux.c: (has_xing_header),
7119         (generate_xing_header), (gst_xing_mux_chain),
7120         (gst_xing_mux_sink_event):
7121         Choose smallest possible frame size for the Xing header, properly
7122         set the timestamp, duration and offset on the outgoing buffers,
7123         only send NEWSEGMENT events in BYTE format downstream and also
7124         drop VBRI headers if already existing.
7125
7126 2008-01-12  Sebastian Dröge  <slomo@circular-chaos.org>
7127
7128         * gst/xingheader/Makefile.am:
7129         * gst/xingheader/gstxingmux.c: (parse_header), (get_xing_offset),
7130         (has_xing_header), (generate_xing_header),
7131         (gst_xing_mux_base_init), (gst_xing_mux_finalize), (xing_reset),
7132         (gst_xing_mux_init), (gst_xing_mux_chain),
7133         (gst_xing_mux_sink_event), (gst_xing_mux_change_state):
7134         * gst/xingheader/gstxingmux.h:
7135         Major cleanup and rewrite of xingmux with less bugs and new features:
7136         - Handles other layers as 3
7137         - Write TOC
7138
7139 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
7140
7141         * tests/check/elements/rganalysis.c: (test_buffer_const_float_mono),
7142           (test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
7143           (test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
7144           (test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
7145           (test_buffer_square_int16_stereo):
7146         * tests/check/elements/rglimiter.c: (create_test_buffer):
7147         * tests/check/elements/rgvolume.c: (test_buffer_new):
7148           It's "endianness", not "endianess". Fixes unit tests.
7149
7150 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7151
7152         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
7153         If we find the caps in the cache, use it to parse the clock-rate instead
7154         of returning an error. Fixes a TODO as found by Youness Alaoui.
7155
7156 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7157
7158         Patch by: Youness Alaoui <youness dot alaoui at collabora dot co dot uk>
7159
7160         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
7161         * gst/rtpmanager/rtpsession.c: (rtp_session_set_callbacks),
7162         (rtp_session_set_process_rtp_callback),
7163         (rtp_session_set_send_rtp_callback),
7164         (rtp_session_set_send_rtcp_callback),
7165         (rtp_session_set_sync_rtcp_callback),
7166         (rtp_session_set_clock_rate_callback),
7167         (rtp_session_set_reconsider_callback), (source_push_rtp),
7168         (source_clock_rate), (rtp_session_process_bye),
7169         (rtp_session_process_rtcp), (rtp_session_send_bye),
7170         (rtp_session_on_timeout):
7171         * gst/rtpmanager/rtpsession.h:
7172         Make it possible to use different user_data for each of the callbacks.
7173         Fixes #508587.
7174
7175 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7176
7177         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code):
7178         Small meaningless cleanup.
7179
7180         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_flush),
7181         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain_forward),
7182         (scan_keyframe), (gst_mpegvideoparse_flush_decode),
7183         (gst_mpegvideoparse_chain_reverse), (gst_mpegvideoparse_chain),
7184         (mpv_parse_sink_event), (gst_mpegvideoparse_change_state):
7185         * gst/mpegvideoparse/mpegvideoparse.h:
7186         Track segment events.
7187         Do the first part of reverse playback by sending data between two
7188         I-frames to the decoder.
7189
7190 2008-01-10  Thijs Vermeir  <thijsvermeir@gmail.com>
7191
7192         * gst/rtpmanager/gstrtpbin.c:
7193         Fix documentation for latest patch
7194
7195 2008-01-10  Thijs Vermeir  <thijsvermeir@gmail.com>
7196
7197         * gst/rtpmanager/gstrtpbin.c:
7198         Allow request_new_pad with name NULL (bug #508515)
7199
7200 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
7201
7202         * autogen.sh:
7203           Add -Wno-portability to the automake parameters to stop warnings
7204           about GNU make extensions being used. We require GNU make in almost
7205           every Makefile anyway.
7206           
7207         * configure.ac:
7208           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
7209           at the same time is required for per target flags.
7210
7211 2008-01-09  Wim Taymans  <wim.taymans@collabora.co.uk>
7212
7213         * gst/rtpmanager/gstrtpsession.c: (create_send_rtp_sink):
7214         Don't set fixed caps, we can basically do everything the upsteam peer
7215         pad can renegotiate to. Fixes #507940.
7216
7217 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
7218
7219         * Makefile.am:
7220           Include lcov.mak to allow building coverage reports. Add top-level
7221           check targets similar to other gst packages.
7222
7223 2008-01-06  David Schleef  <ds@schleef.org>
7224
7225         * ext/directfb/Makefile.am:
7226           Add GST_CFLAGS.  Otherwise we don't get -Wall -Werror.
7227         * ext/directfb/dfbvideosink.c:
7228           Getting tired of directfb's chatter.  Quiet it.
7229
7230 2008-01-06  David Schleef  <ds@schleef.org>
7231
7232         Patch by: Sean D'Epagnier <sean@depagnier.com>
7233
7234         * configure.ac:
7235         * sys/Makefile.am:
7236         * sys/fbdev/Makefile.am:
7237         * sys/fbdev/gstfbdevsink.c:
7238         * sys/fbdev/gstfbdevsink.h:
7239           Add fbdev-based video sink.  Linux-only.  See bug #506549.
7240
7241 2008-01-06  Sebastian Dröge  <slomo@circular-chaos.org>
7242
7243         * configure.ac:
7244         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
7245         * tests/check/pipelines/gio.c: (free_input), (GST_START_TEST):
7246         Update to GMemoryInputStream API changes in GLib SVN and require
7247         gio-2.0 >= 2.15.1 for this. Fixes bug #507584.
7248         We can also report the duration for every GSeekable, not only
7249         GFileInputStream and GMemoryInputStream.
7250
7251 2008-01-05  David Schleef  <ds@schleef.org>
7252
7253         * sys/glsink/glimagesink.c:
7254         * sys/glsink/glimagesink.h:
7255         * sys/glsink/gstglbuffer.h:
7256         * sys/glsink/gstgldisplay.c:
7257         * sys/glsink/gstgldisplay.h:
7258         * sys/glsink/gstglupload.c:
7259           Handle xoverlay exposes correctly.  This means glimagesink works
7260           correctly most of the time in totem (fullscreening being an
7261           execption).  Doesn't handle expose events directly to the GL
7262           window.
7263
7264 2008-01-05  David Schleef  <ds@schleef.org>
7265
7266         * sys/glsink/glextensions.c:
7267         * sys/glsink/glextensions.h:
7268         * sys/glsink/glimagesink.c:
7269         * sys/glsink/glimagesink.h:
7270         * sys/glsink/gstgldisplay.c:
7271         * sys/glsink/gstgldisplay.h:
7272         * sys/glsink/gstopengl.c:
7273           Reenable video/x-raw-rgb and x-raw-yuv for glimagesink.  Enable
7274           vblank synchronization.  Remove unused code.
7275
7276 2008-01-04  Wim Taymans  <wim.taymans@collabora.co.uk>
7277
7278         * gst/rtpmanager/gstrtpjitterbuffer.c:
7279         (gst_rtp_jitter_buffer_loop):
7280         Don't unref the popped buffer when we don't have ownership.
7281         Fixes #507020.
7282
7283 2008-01-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7284
7285         * gst/mpegtsparse/Makefile.am:
7286         * gst/mpegtsparse/flutspatinfo.c:
7287         * gst/mpegtsparse/flutspatinfo.h:
7288         * gst/mpegtsparse/flutspmtinfo.c:
7289         * gst/mpegtsparse/flutspmtinfo.h:
7290         * gst/mpegtsparse/flutspmtstreaminfo.c:
7291         * gst/mpegtsparse/flutspmtstreaminfo.h:
7292         Remove no longer needed files.
7293
7294 2008-01-02  David Schleef  <ds@schleef.org>
7295
7296         * tests/check/Makefile.am:
7297           Disable vcdsrc in states test because it takes too much time
7298           to get to PLAYING if it can find a device.
7299
7300 2007-12-31  David Schleef  <ds@schleef.org>
7301
7302         * ext/musicbrainz/gsttrm.c:
7303           Don't emit signiture when going to READY, because it might
7304           not be ready.
7305         * ext/nas/nassink.c:
7306           Remove useless call that sleeps for 5 seconds.  Yup, it calls
7307           sleep(1) 5 times.  Go NAS.
7308         * gst/librfb/gstrfbsrc.c:
7309         * gst/librfb/rfbdecoder.c:
7310           Initialize our debug categories properly.
7311         * gst/rawparse/gstrawparse.c:
7312           Don't register element details for a non-element.  Be much more
7313           rude when subclass doesn't set a pad template (assert!).  Don't
7314           unref the pad template; we don't own it.
7315         * gst/videosignal/gstvideoanalyse.c:
7316           Initialize debug category.
7317         * tests/check/Makefile.am:
7318           Ignore nassink element in tests because it has unavoidable
7319           long timeouts.
7320
7321 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7322
7323         * gst/rtpmanager/gstrtpssrcdemux.c:
7324         (gst_rtp_ssrc_demux_change_state):
7325         Don't clean up pads when going to PAUSED.
7326
7327 2007-12-30  David Schleef  <ds@schleef.org>
7328
7329         * configure.ac:
7330         * sys/glsink/Makefile.am:
7331           Switch to using pkgconfig to detect libGL.  Since we use
7332           recent features added to Mesa, there's no point in adding
7333           a check for pre-pkgconfig versions.
7334
7335 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7336
7337         * ext/ladspa/gstladspa.c: (gst_ladspa_get_property):
7338         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_show_frame):
7339         * gst/mve/gstmvemux.c: (gst_mve_mux_request_new_pad):
7340         * sys/dvb/dvbbasebin.c: (dvb_base_bin_class_init):
7341         Fix 'xyz may be used uninitialized' compiler warnings caused
7342         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7343         abort() in any case but properly report the error.
7344
7345 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7346
7347         * configure.ac:
7348         * ext/gio/gstgio.c:
7349         * ext/gio/gstgio.h:
7350         * ext/gio/gstgiobasesink.h:
7351         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
7352         * ext/gio/gstgiobasesrc.h:
7353         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
7354         * ext/gio/gstgiosink.h:
7355         * ext/gio/gstgiosrc.h:
7356         * ext/gio/gstgiostreamsink.h:
7357         * ext/gio/gstgiostreamsrc.h:
7358         * tests/check/pipelines/gio.c:
7359         Update to latest API changes in GLib/GIO and require at least
7360         gio-2.0 2.15.0 for this.
7361         
7362         * ext/gio/Makefile.am:
7363         Add GST_PLUGIN_LDFLAGS to LDFLAGS.
7364
7365 2007-12-28  David Schleef  <ds@schleef.org>
7366
7367         * configure.ac:
7368         * sys/glsink/glextensions.c:
7369         * sys/glsink/glextensions.h:
7370         * sys/glsink/glimagesink.c:
7371         * sys/glsink/glimagesink.h:
7372         * sys/glsink/gstglbuffer.c:
7373         * sys/glsink/gstglbuffer.h:
7374         * sys/glsink/gstglconvert.c:
7375         * sys/glsink/gstgldisplay.c:
7376         * sys/glsink/gstgldisplay.h:
7377         * sys/glsink/gstgldownload.c:
7378         * sys/glsink/gstglfilter.c:
7379         * sys/glsink/gstglfilter.h:
7380         * sys/glsink/gstglfilterexample.c:
7381         * sys/glsink/gstgltestsrc.c:
7382         * sys/glsink/gstglupload.c:
7383           Major cleanup of code.  Convert glupload to BaseTransform.
7384           Handle caps negotiation mostly correctly.  Reenable in build.
7385
7386 2007-12-28  Tim-Philipp Müller  <tim at centricular dot net>
7387
7388         * ext/soup/Makefile.am:
7389         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_get_property),
7390           (gst_souphttp_src_unicodify), (soup_got_headers):
7391           Use gst_tag_freeform_string_to_utf8() and post radio station
7392           info as tags on the bus.
7393
7394 2007-12-26  David Schleef  <ds@schleef.org>
7395
7396         * sys/glsink/glimagesink.c:
7397         * sys/glsink/gstglupload.c:
7398           Change glimagesink over to using GL buffers.  This breaks
7399           glimagesink for normal operation, but should be fixed soon.
7400
7401 2007-12-26  David Schleef  <ds@schleef.org>
7402
7403         * sys/glsink/gltestsrc.c:
7404         * sys/glsink/gstglbuffer.c:
7405         * sys/glsink/gstglbuffer.h:
7406         * sys/glsink/gstgldownload.c:
7407         * sys/glsink/gstglfilter.c:
7408         * sys/glsink/gstglfilterexample.c:
7409         * sys/glsink/gstgltestsrc.c:
7410         * sys/glsink/gstglupload.c:
7411           Convert gldownload to BaseTransform.  Make glfilterexample
7412           visually interesting.  Add support for various formats to
7413           downloading.  Fix a few places where we leak GL state to
7414           other elements (bad, but hard to prevent).
7415
7416 2007-12-26  David Schleef  <ds@schleef.org>
7417
7418         * sys/glsink/BUGS:
7419         * sys/glsink/Makefile.am:
7420         * sys/glsink/gstglbuffer.c:
7421         * sys/glsink/gstglbuffer.h:
7422         * sys/glsink/gstglconvert.c:
7423         * sys/glsink/gstgldisplay.c:
7424         * sys/glsink/gstglfilter.c:
7425         * sys/glsink/gstglfilter.h:
7426         * sys/glsink/gstglfilterexample.c:
7427         * sys/glsink/gstgltestsrc.c:
7428         * sys/glsink/gstglupload.c:
7429         * sys/glsink/gstopengl.c:
7430           Remove code that handles non-texture buffers.  Add a
7431           GstGLBufferFormat type that corresponds to how to use the
7432           texture, not the original video format.  Convert gstflfilter.c
7433           into a base class, add glfilterexample and glconvert elements.
7434         * sys/glsink/color_matrix.c:
7435           Minor ramblings about color conversion matrices.
7436
7437 2007-12-24  David Schleef  <ds@schleef.org>
7438
7439         * sys/glsink/Makefile.am:
7440         * sys/glsink/gltestsrc.c:
7441         * sys/glsink/gltestsrc.h:
7442         * sys/glsink/gstgldisplay.c:
7443         * sys/glsink/gstgldownload.c:
7444         * sys/glsink/gstglfilter.c:
7445         * sys/glsink/gstgltestsrc.c:
7446         * sys/glsink/gstgltestsrc.h:
7447         * sys/glsink/gstglupload.c:
7448         * sys/glsink/gstopengl.c:
7449           Add gltestsrc element, a duplicate of videotestsrc that uses
7450           GL rendering to create images.  More cleanup.
7451
7452 2007-12-24  David Schleef  <ds@schleef.org>
7453
7454         * sys/glsink/gstglbuffer.c:
7455         * sys/glsink/gstgldownload.c:
7456         * sys/glsink/gstglfilter.c:
7457           Clean up code.  Fix a few leaks.
7458
7459 2007-12-24  David Schleef  <ds@schleef.org>
7460
7461         * sys/glsink/Makefile.am:
7462         * sys/glsink/glimagesink.h:
7463         * sys/glsink/glvideo.c:
7464         * sys/glsink/glvideo.h:
7465         * sys/glsink/gstglbuffer.c:
7466         * sys/glsink/gstglbuffer.h:
7467         * sys/glsink/gstgldisplay.c:
7468         * sys/glsink/gstgldisplay.h:
7469           Rename glvideo.[ch] to gstgldisplay.[ch].
7470
7471 2007-12-24  David Schleef  <ds@schleef.org>
7472
7473         * sys/glsink/glimagesink.c:
7474         * sys/glsink/glimagesink.h:
7475         * sys/glsink/glvideo.c:
7476         * sys/glsink/glvideo.h:
7477         * sys/glsink/gstglbuffer.c:
7478         * sys/glsink/gstglbuffer.h:
7479         * sys/glsink/gstgldownload.c:
7480         * sys/glsink/gstglfilter.c:
7481         * sys/glsink/gstglupload.c:
7482           Rewrite a bunch of code to use textures as the intermediate
7483           instead of renderbuffers.  upload, download, filtering all
7484           work.
7485
7486 2007-12-23  David Schleef  <ds@schleef.org>
7487
7488         * gst/videoparse/Makefile.am:
7489         * gst/videoparse/README:
7490         * gst/videoparse/gstvideoparse.c:
7491           Remove videoparse element, because it was moved to gst/rawparse/
7492
7493 2007-12-23  Sebastian Dröge  <slomo@circular-chaos.org>
7494
7495         * gst/rawparse/gstrawparse.c: (gst_raw_parse_src_event):
7496         Always seek on frame boundaries, will produce nothing useful
7497         otherwise.
7498
7499 2007-12-23  Sebastian Dröge  <slomo@circular-chaos.org>
7500
7501         * configure.ac:
7502         * gst/rawparse/Makefile.am:
7503         * gst/rawparse/README:
7504         * gst/rawparse/gstaudioparse.c: (gst_audio_parse_format_get_type),
7505         (gst_audio_parse_endianness_get_type), (gst_audio_parse_base_init),
7506         (gst_audio_parse_class_init), (gst_audio_parse_init),
7507         (gst_audio_parse_set_property), (gst_audio_parse_get_property),
7508         (gst_audio_parse_update_frame_size), (gst_audio_parse_get_caps):
7509         * gst/rawparse/gstaudioparse.h:
7510         * gst/rawparse/gstrawparse.c: (gst_raw_parse_base_init),
7511         (gst_raw_parse_class_init), (gst_raw_parse_init),
7512         (gst_raw_parse_dispose),
7513         (gst_raw_parse_class_set_src_pad_template),
7514         (gst_raw_parse_class_set_multiple_frames_per_buffer),
7515         (gst_raw_parse_reset), (gst_raw_parse_chain),
7516         (gst_raw_parse_convert), (gst_raw_parse_sink_event),
7517         (gst_raw_parse_src_event), (gst_raw_parse_src_query_type),
7518         (gst_raw_parse_src_query), (gst_raw_parse_set_framesize),
7519         (gst_raw_parse_set_fps), (gst_raw_parse_get_fps),
7520         (gst_raw_parse_is_negotiated):
7521         * gst/rawparse/gstrawparse.h:
7522         * gst/rawparse/gstvideoparse.c: (gst_video_parse_format_get_type),
7523         (gst_video_parse_endianness_get_type), (gst_video_parse_base_init),
7524         (gst_video_parse_class_init), (gst_video_parse_init),
7525         (gst_video_parse_set_property), (gst_video_parse_get_property),
7526         (gst_video_parse_format_to_fourcc),
7527         (gst_video_parse_update_frame_size), (gst_video_parse_get_caps):
7528         * gst/rawparse/gstvideoparse.h:
7529         * gst/rawparse/plugin.c: (plugin_init):
7530         Add new plugin rawparse that contains a base class for raw data
7531         parsers and the two elements audioparse and videoparse that can
7532         be used to parse raw audio and video. These are inspired by the
7533         old videoparse element which the new rawparse plugin deprecates.
7534
7535 2007-12-21  David Schleef  <ds@schleef.org>
7536
7537         * sys/glsink/glextensions.c:
7538         * sys/glsink/glextensions.h:
7539         * sys/glsink/glvideo.c:
7540         * sys/glsink/glvideo.h:
7541         * sys/glsink/gstglbuffer.c:
7542         * sys/glsink/gstgldownload.c:
7543         * sys/glsink/gstglupload.c:
7544           A careful read of the documentation reveals that I can't use
7545           renderbuffers as textures.  Duh.  Checkpoint because I'm about
7546           to rewrite a bunch of code.
7547
7548 2007-12-21  Edgard Lima,,,,  <edgard.lima@indt.org.br>
7549
7550         * ext/metadata/TODO:
7551         * ext/metadata/gstbasemetadata.c:
7552         * ext/metadata/gstbasemetadata.h:
7553         * ext/metadata/metadata.h:
7554         * ext/metadata/metadataiptc.c:
7555         * ext/metadata/metadatamuxjpeg.c:
7556         * ext/metadata/metadataparsejpeg.c:
7557         * ext/metadata/metadataparseutil.c:
7558           Some IPTC tags mapped.
7559
7560 2007-12-21  Edgard Lima  <edgard.lima@indt.org.br>
7561
7562         * ext/metadata/Makefile.am:
7563         * ext/metadata/TODO:
7564         * ext/metadata/gstbasemetadata.c:
7565         * ext/metadata/gstbasemetadata.h:
7566         * ext/metadata/gstmetadatacommon.c:
7567         * ext/metadata/gstmetadatacommon.h:
7568         * ext/metadata/metadata.c:
7569         * ext/metadata/metadata.h:
7570           Removed gstmetadatacommon.
7571
7572 2007-12-20  David Schleef  <ds@schleef.org>
7573
7574         * sys/glsink/Makefile.am:
7575         * sys/glsink/glextensions.c:
7576         * sys/glsink/glextensions.h:
7577         * sys/glsink/glimagesink.c:
7578         * sys/glsink/glimagesink.h:
7579         * sys/glsink/glvideo.c:
7580         * sys/glsink/glvideo.h:
7581         * sys/glsink/gstglbuffer.c:
7582         * sys/glsink/gstglbuffer.h:
7583         * sys/glsink/gstgldownload.c:
7584         * sys/glsink/gstglfilter.c:
7585         * sys/glsink/gstglupload.c:
7586         * sys/glsink/gstopengl.c:
7587           Switch to using framebuffer_objects instead of GLXPixmaps,
7588           because that's what my driver supports.  Remove GLDrawable,
7589           since GstGLDisplay now has a default drawable and context.
7590
7591 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
7592
7593         * gst/equalizer/.cvsignore:
7594         * gst/switch/.cvsignore:
7595           Ignore more.
7596
7597 2007-12-19  Edgard Lima  <edgard.lima@indt.org.br>
7598
7599         * ext/metadata/Makefile.am:
7600         * ext/metadata/TODO:
7601         * ext/metadata/gstbasemetadata.c:
7602         * ext/metadata/gstbasemetadata.h:
7603         * ext/metadata/gstmetadatacommon.c:
7604         * ext/metadata/gstmetadatacommon.h:
7605         * ext/metadata/gstmetadatademux.c:
7606         * ext/metadata/gstmetadatademux.h:
7607         * ext/metadata/gstmetadatamux.c:
7608         * ext/metadata/gstmetadatamux.h:
7609         * ext/metadata/metadata.c:
7610         * ext/metadata/metadata.h:
7611         * ext/metadata/metadataexif.c:
7612         * ext/metadata/metadataparsejpeg.c:
7613         * ext/metadata/metadataparsepng.c:
7614         * ext/metadata/metadatatags.c:
7615         * ext/metadata/metadatatags.h:
7616         * ext/metadata/test/metadata_editor.c:
7617           New base class for metadata elements.
7618
7619 2007-12-18  Andy Wingo  <wingo@pobox.com>
7620
7621         * gst/switch/gstswitch-marshal.list:
7622         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7623         * gst/switch/gstswitch.c (enum, gst_selector_pad_class_init)
7624         (gst_selector_pad_get_property)
7625         (gst_selector_pad_get_running_time)
7626         (gst_stream_selector_class_init, gst_segment_get_timestamp)
7627         (gst_segment_set_stop, gst_segment_set_start)
7628         (gst_stream_selector_set_active_pad, gst_stream_selector_block)
7629         (gst_stream_selector_push_pending_stop)
7630         (gst_stream_selector_switch): Change so that the signals and
7631         properties deal in running time, not buffer time. Document the
7632         signals more. Change uint64 in API to int64, to reflect what's in
7633         GstSegment.
7634
7635 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7636
7637         * Makefile.am:
7638           Include common/win32.mak for CRLF check of win32 project
7639           files (see #393626).
7640
7641         * configure.ac:
7642           Bump requirements to -base CVS for libgstvideo additions in
7643           glimagesink. Disable glimagesink until the missing files get
7644           checked in.
7645
7646 2007-12-17  David Schleef  <ds@schleef.org>
7647
7648         * sys/glsink/Makefile.am:
7649         * sys/glsink/glimagesink.c:
7650         * sys/glsink/glimagesink.h:
7651         * sys/glsink/glvideo.c:
7652         * sys/glsink/glvideo.h:
7653         * sys/glsink/gstopengl.c:
7654         * sys/glsink/gstglupload.c:
7655           Use new GstVideoFormat checked into -base.  Add new glupload
7656           element to upload raw video into a GLXPixbuf.  Untested.  Will
7657           likely crash your motorcycle if you try it.
7658         * sys/glsink/gstvideo-common.c:
7659         * sys/glsink/gstvideo-common.h:
7660           Remove.
7661
7662 2007-12-17  David Schleef  <ds@schleef.org>
7663
7664         * gst/multifile/gstmultifilesrc.c:
7665         * gst/multifile/gstmultifilesrc.h:
7666           When subsequent files are read, if the file doesn't exist, send
7667           an EOS instead of causing an error.
7668
7669 2007-12-17  Andy Wingo  <wingo@pobox.com>
7670
7671         * gst/switch/gstswitch.c (gst_selector_pad_chain): Return OK when
7672         a buffer is ignored, not NOT_LINKED. No sense in making a source
7673         element error out; at least fdsrc considers NOT_LINKED to be a
7674         fatal error. Patch 11/12. There is no patch 12/12. Foo.
7675
7676         * gst/switch/gstswitch-marshal.list:
7677         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7678         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7679         (gst_stream_selector_block): Make the block() signal return the
7680         last stop time of the active pad. Patch 10/12.
7681
7682         * gst/switch/gstswitch.c (gst_selector_pad_get_property)
7683         (gst_selector_pad_class_init, gst_stream_selector_class_init)
7684         (gst_stream_selector_get_property): Expose 'last-stop-time' as a
7685         pad property, not an element property.
7686         (gst_selector_pad_chain): Mark the last_stop time as timestamp +
7687         duration, not timestamp. Patch 9/12.
7688
7689         * gst/switch/gstswitch.c (gst_stream_selector_change_state)
7690         (gst_stream_selector_block, gst_stream_selector_switch): Use the
7691         cond mechanism instead of blocked pads. Patch 8/12.
7692
7693         * gst/switch/gstswitch.h (struct _GstStreamSelector): 
7694
7695         * gst/switch/gstswitch.c (gst_stream_selector_wait)
7696         (gst_selector_pad_chain, gst_stream_selector_init)
7697         (gst_stream_selector_dispose): Add infrastructure for new blocking
7698         mechanism that does not use gst_pad_set_blocked, which does not
7699         work on sink pads. Patch 7/12.
7700
7701         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7702         (gst_stream_selector_get_property): Add last-stop-time readable
7703         property. Patch 6/12.
7704
7705         * gst/switch/gstswitch.h (struct _GstStreamSelector): Add some
7706         state variables.
7707
7708         * gst/switch/gstswitch.c (gst_stream_selector_push_pending_stop)
7709         (gst_selector_pad_chain): Push any pending stop event.
7710         (gst_stream_selector_set_active_pad)
7711         (gst_stream_selector_set_property): Factor out setting the active
7712         pad to a function. Close the segment of the previous active pad if
7713         told to do so via a stop_time != GST_CLOCK_TIME_NONE.
7714         (gst_stream_selector_switch): Implement switch vmethod. Patch 5/12.
7715
7716         * gst/switch/gstswitch.c (gst_stream_selector_block): Implement
7717         the block() signal. This implementation will be replaced in future
7718         patches, however. Patch 4/12.
7719
7720         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): Fix
7721         vmethod prototypes.
7722
7723         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7724         (gst_stream_selector_block, gst_stream_selector_switch): Add empty
7725         vmethod definitions. Patch 3/12.
7726
7727         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7728         * gst/switch/gstswitch.c (gst_stream_selector_class_init): Add
7729         `block' and `switch' signals.
7730
7731         * gst/switch/Makefile.am: 
7732         * gst/switch/gstswitch-marshal.list: Add foo to generate a
7733         marshaller for the `switch' signal. Patch 2/12.
7734
7735         * gst/switch/gstswitch.h: 
7736         * gst/switch/gstswitch.c: Replace with files from
7737         gststreamselector.[ch], registered as the "switch" plugin, with
7738         "GstSwitch" types. Patch 1/12.
7739
7740 2007-12-17  Edgard Lima  <edgard.lima@indt.org.br>
7741
7742         * ext/metadata/TODO:
7743         * ext/metadata/gstmetadatademux.c:
7744         * ext/metadata/metadata.c:
7745         * ext/metadata/metadata.h:
7746         * ext/metadata/metadataparsejpeg.c:
7747         * ext/metadata/metadataparsejpeg.h:
7748         * ext/metadata/metadataparsepng.c:
7749         * ext/metadata/metadataparsepng.h:
7750         * ext/metadata/test/MetadataEditorMain.glade:
7751         * ext/metadata/test/metadata_editor.c:
7752           Added "parse-only" property to metadatademux.
7753
7754 2007-12-16  David Schleef  <ds@schleef.org>
7755
7756         * sys/glsink/glimagesink.c:
7757         * sys/glsink/glimagesink.h:
7758         * sys/glsink/glvideo.c:
7759         * sys/glsink/glvideo.h:
7760           Rename GLVideo* to GstGL*.
7761
7762 2007-12-15  David Schleef  <ds@schleef.org>
7763
7764         * sys/glsink/Makefile.am:
7765         * sys/glsink/glextensions.c:
7766         * sys/glsink/glextensions.h:
7767         * sys/glsink/glvideo.c:
7768           Add vblank synchronization.  Isn't really working on my
7769           driver. :(
7770
7771 2007-12-15  David Schleef  <ds@schleef.org>
7772
7773         * sys/glsink/Makefile.am:
7774         * sys/glsink/glimagesink.c:
7775         * sys/glsink/glvideo.c:
7776         * sys/glsink/glvideo.h:
7777         * sys/glsink/gstvideo-common.c:
7778         * sys/glsink/gstvideo-common.h:
7779           Add support for xRGB, xBGR, and AYUV.  Re-add support for
7780           power-of-2 textures.
7781
7782 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7783
7784         * gst/videoparse/gstvideoparse.c: (gst_video_parse_dispose),
7785         (gst_video_parse_sink_event):
7786         Free the adapter on dispose and correctly reset on newsegment events.
7787
7788 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7789
7790         * gst/videoparse/gstvideoparse.c: (gst_video_parse_sink_event),
7791         (gst_video_parse_src_event), (gst_video_parse_src_query):
7792         Improve duration query by first asking upstream and if it can't handle
7793         the query try to get the duration in bytes from upstream and convert.
7794         For seeks, try if upstream handles this already first and do our
7795         conversion to byte format only if it doesn't and if we get a
7796         newsegment event in time format keep it and only do our conversions
7797         if the event has another format.
7798
7799 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7800
7801         * gst/videoparse/gstvideoparse.c:
7802         (gst_video_parse_format_get_type),
7803         (gst_video_parse_endianness_get_type),
7804         (gst_video_parse_class_init), (gst_video_parse_init),
7805         (gst_video_parse_set_property), (gst_video_parse_get_property),
7806         (gst_video_parse_format_to_fourcc),
7807         (gst_video_parse_update_block_size), (gst_video_parse_chain),
7808         (gst_video_parse_sink_event):
7809         Add support for video/x-raw-rgb and video/x-raw-gray. Also send
7810         downstream elements downstream, not upstream.
7811
7812 2007-12-14  David Schleef  <ds@schleef.org>
7813
7814         * sys/glsink/gstvideo-common.c:
7815         * sys/glsink/gstvideo-common.h:
7816           Pull together some common raw video functions into one location.
7817           This should eventually move to -base.
7818         * sys/glsink/Makefile.am:
7819         * sys/glsink/glimagesink.c:
7820         * sys/glsink/glimagesink.h:
7821         * sys/glsink/glvideo.c:
7822         * sys/glsink/glvideo.h:
7823         * sys/glsink/gstopengl.c:
7824           Use the new video-common.h stuff.  Readd support for RGB video.
7825
7826 2007-12-14  Edgard Lima  <edgard.lima@indt.org.br>
7827
7828         * ext/metadata/Makefile.am:
7829         * ext/metadata/TODO:
7830         * ext/metadata/gstmetadata.c:
7831         * ext/metadata/gstmetadatacommon.c:
7832         * ext/metadata/gstmetadatacommon.h:
7833         * ext/metadata/gstmetadatademux.c:
7834         * ext/metadata/gstmetadatademux.h:
7835         * ext/metadata/gstmetadatamux.c:
7836         * ext/metadata/gstmetadatamux.h:
7837         * ext/metadata/gstmetadataparse.c:
7838         * ext/metadata/gstmetadataparse.h:
7839         * ext/metadata/metadataexif.c:
7840         * ext/metadata/metadatatags.c:
7841         * ext/metadata/test/metadata_editor.c:
7842           Added new module for common functions. Using GST_TYPE_FRACTION for
7843           Exif (S)Rational types.
7844
7845 2007-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7846
7847         * gst/mpegtsparse/mpegtspacketizer.c:
7848         * gst/mpegtsparse/mpegtspacketizer.h:
7849         Hash streams by pid again. Add a linked list inside each
7850         stream with a list of sub_tables. Fix multiple sections
7851         as it was borked with my last commit.
7852
7853 2007-12-14  Christian Schaller <christian.schaller@collabora.co.uk>
7854
7855         * sys/glsink/Makefile.am: add glvideo.h
7856         * gst/speexresample/Makefile.am: add speex_resampler_wrapper.h
7857         * gst-plugins-bad.spec.in: add latest plugins
7858
7859 2007-12-13  Edgard Lima  <edgard.lima@indt.org.br>
7860
7861         * ext/metadata/TODO:
7862         * ext/metadata/gstmetadatamux.c:
7863         * ext/metadata/gstmetadataparse.c:
7864         * ext/metadata/metadata.c:
7865         * ext/metadata/metadata.h:
7866         * ext/metadata/metadataiptc.c:
7867         * ext/metadata/metadatamuxjpeg.c:
7868         * ext/metadata/metadatamuxjpeg.h:
7869         * ext/metadata/metadatamuxpng.c:
7870         * ext/metadata/metadatamuxpng.h:
7871         * ext/metadata/metadataparsejpeg.c:
7872         * ext/metadata/metadataparsejpeg.h:
7873         * ext/metadata/metadataparsepng.c:
7874         * ext/metadata/metadataparsepng.h:
7875         * ext/metadata/metadataparseutil.c:
7876         * ext/metadata/metadataparseutil.h:
7877         * ext/metadata/metadatatypes.h:
7878         * ext/metadata/metadataxmp.c:
7879           Code documentation.
7880
7881 2007-12-13  Edgard Lima  <edgard.lima@indt.org.br>
7882
7883         * configure.ac:
7884         * ext/metadata/Makefile.am:
7885         * ext/metadata/gstmetadatamux.c:
7886         * ext/metadata/gstmetadataparse.c:
7887         * ext/metadata/metadataexif.c:
7888         * ext/metadata/metadatatags.c:
7889         * ext/metadata/test/Makefile:
7890         * ext/metadata/test/MetadataEditorMain.glade:
7891         * ext/metadata/test/metadata_editor.c:
7892           Added a test application. Added some EXIF tags. Fixed a muxer bug.
7893
7894 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7895
7896         * gst/videoparse/gstvideoparse.c: (gst_video_parse_init),
7897           (gst_video_parse_src_event), (gst_video_parse_src_query_type):
7898           Implement a query type function for the src pad, implement seeking
7899           and use ANY caps for the sink pad as the element doesn't care what
7900           caps the input has and everything is handled via properties.
7901
7902 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7903
7904         * gst/videoparse/gstvideoparse.c: (gst_video_parse_convert),
7905           (gst_video_parse_sink_event):
7906           Handle -1 values for the CONVERT query too.
7907
7908 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7909
7910         * gst/videoparse/gstvideoparse.c: (gst_video_parse_sink_event):
7911           Add YV12 to the pad templates as it is supported too and allow
7912           -1 as stop position for NEWSEGMENT events.
7913
7914 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7915
7916         * gst/videoparse/Makefile.am:
7917           Add $(GST_PLUGINS_BASE_CFLAGS) to CFLAGS to fix the build.
7918
7919         * gst/videoparse/gstvideoparse.c: (gst_video_parse_init),
7920           (gst_video_parse_set_property), (gst_video_parse_get_property):
7921           Use g_value_[sg]et_enum() for enum properties, g_value_[sg]et_int()
7922           gives a g_critical().
7923
7924 2007-12-12  David Schleef  <ds@schleef.org>
7925
7926         * gst/videoparse/README:
7927         * gst/videoparse/gstvideoparse.c:
7928           Add a bunch of features: handle format specification, handle
7929           queries and conversion.  Works much like a normal parser now.
7930
7931 2007-12-12  Wim Taymans  <wim.taymans@collabora.co.uk>
7932
7933         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_finalize),
7934         (gst_rtp_pt_demux_setup), (gst_rtp_pt_demux_release),
7935         (gst_rtp_pt_demux_change_state):
7936         * gst/rtpmanager/gstrtpssrcdemux.c: (gst_rtp_ssrc_demux_reset),
7937         (gst_rtp_ssrc_demux_dispose), (gst_rtp_ssrc_demux_src_query),
7938         (gst_rtp_ssrc_demux_change_state):
7939         Clean up the dynamic pads when going to READY.
7940
7941 2007-12-12  Wim Taymans  <wim.taymans@collabora.co.uk>
7942
7943         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_finalize),
7944         (gst_rtp_bin_set_sdes_string), (gst_rtp_bin_get_sdes_string),
7945         (gst_rtp_bin_handle_message):
7946         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize),
7947         (rtp_session_send_bye):
7948         * gst/rtpmanager/rtpsource.c: (rtp_source_finalize):
7949         Fix some leaks.
7950
7951 2007-12-12  Sebastian Dröge  <slomo@circular-chaos.org>
7952
7953         * ext/dts/gstdtsdec.c: (gst_dtsdec_init),
7954           (gst_dtsdec_sink_setcaps), (gst_dtsdec_chain_raw),
7955           (gst_dtsdec_chain):
7956         * ext/dts/gstdtsdec.h:
7957           Add support for "audio/x-private1-dts" as used by flupsparse. Most
7958           changes adapted from a52dec.
7959
7960 2007-12-11  David Schleef  <ds@schleef.org>
7961
7962         * sys/glsink/Makefile.am:
7963         * sys/glsink/glimagesink.c:
7964         * sys/glsink/glvideo.c:
7965         * sys/glsink/glvideo.h:
7966           Split out gl-related code into a separate file with a
7967           sensible API.  Major cleanup.  Still crashes occasionally
7968           due to different threads touching bits at the same time.
7969
7970 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7971
7972         Patch by: Wouter Cloetens <wouter at mind dot be>
7973
7974         * ext/soup/gstsouphttpsrc.c: (_do_init),
7975         (gst_souphttp_src_class_init), (gst_souphttp_src_init),
7976         (gst_souphttp_src_dispose), (gst_souphttp_src_set_property),
7977         (gst_souphttp_src_get_property), (unicodify),
7978         (gst_souphttp_src_unicodify), (gst_souphttp_src_create),
7979         (gst_souphttp_src_start), (gst_souphttp_src_stop),
7980         (gst_souphttp_src_unlock), (gst_souphttp_src_unlock_stop),
7981         (gst_souphttp_src_get_size), (gst_souphttp_src_is_seekable),
7982         (soup_got_headers), (soup_got_body), (soup_finished),
7983         (soup_got_chunk), (soup_response), (soup_parse_status),
7984         (gst_souphttp_src_uri_get_type),
7985         (gst_souphttp_src_uri_get_protocols),
7986         (gst_souphttp_src_uri_get_uri), (gst_souphttp_src_uri_set_uri),
7987         (gst_souphttp_src_uri_handler_init):
7988         * ext/soup/gstsouphttpsrc.h:
7989         Do not try to unpause I/O in the "queued" state.
7990         Reorganise a bunch of things and cleanups.
7991         Uses G_GUINT64_FORMAT instead of hard-coding %llu.
7992         See #502335.
7993
7994 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7995
7996         * ext/x264/gstx264enc.c: (gst_x264_enc_set_src_caps):
7997         Fix caps memleak.
7998
7999 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
8000
8001         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8002           (gst_flv_parse_tag_video):
8003           Don't strdup (and thus leak) codec name strings when passing
8004           them to gst_tag_list_add().
8005
8006 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8007
8008         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
8009         (gst_rtp_bin_handle_message):
8010         * gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
8011         (on_ssrc_sdes):
8012         Post a message when the SDES infor changes for a source.
8013
8014         * gst/rtpmanager/rtpsession.c:
8015         * gst/rtpmanager/rtpsource.c:
8016         Update some comments.
8017
8018 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8019
8020         Based on patch by: <mutex at runbox dot com>
8021
8022         * gst/videoparse/gstvideoparse.c: (gst_video_parse_src_query):
8023         Forward the query upstream, the default element event handler does
8024         something different. Fixes #502879.
8025
8026 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8027
8028         * gst/rtpmanager/gstrtpbin.c: (on_ssrc_sdes), (create_session),
8029         (gst_rtp_bin_class_init):
8030         * gst/rtpmanager/gstrtpbin.h:
8031         * gst/rtpmanager/gstrtpclient.c:
8032         * gst/rtpmanager/gstrtpclient.h:
8033         * gst/rtpmanager/gstrtpjitterbuffer.h:
8034         * gst/rtpmanager/gstrtpmanager.c:
8035         * gst/rtpmanager/gstrtpptdemux.c:
8036         * gst/rtpmanager/gstrtpptdemux.h:
8037         * gst/rtpmanager/gstrtpsession.c: (on_ssrc_sdes),
8038         (gst_rtp_session_class_init), (gst_rtp_session_init):
8039         * gst/rtpmanager/gstrtpsession.h:
8040         * gst/rtpmanager/gstrtpssrcdemux.c:
8041         * gst/rtpmanager/gstrtpssrcdemux.h:
8042         * gst/rtpmanager/rtpjitterbuffer.c:
8043         * gst/rtpmanager/rtpjitterbuffer.h:
8044         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
8045         (on_ssrc_sdes), (rtp_session_process_sdes):
8046         * gst/rtpmanager/rtpsession.h:
8047         * gst/rtpmanager/rtpsource.c:
8048         * gst/rtpmanager/rtpsource.h:
8049         * gst/rtpmanager/rtpstats.c:
8050         * gst/rtpmanager/rtpstats.h:
8051         Add signal to notify of an SDES change.
8052         Fix object type in the signal callbacks.
8053
8054 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
8055
8056         * gst/rtpmanager/gstrtpbin.c: (create_session),
8057         (gst_rtp_bin_class_init), (gst_rtp_bin_init), (sdes_type_to_name),
8058         (gst_rtp_bin_set_sdes_string), (gst_rtp_bin_get_sdes_string),
8059         (gst_rtp_bin_set_property), (gst_rtp_bin_get_property):
8060         * gst/rtpmanager/gstrtpbin.h:
8061         Expose SDES items as properties and configure the session managers with
8062         them.
8063
8064         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
8065         (rtp_source_set_property):
8066         Fix SSRC property.
8067
8068 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
8069
8070         * gst/rtpmanager/gstrtpbin.c: (create_session):
8071         * gst/rtpmanager/rtpjitterbuffer.c:
8072         Update comment.
8073
8074         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
8075         (gst_rtp_session_set_property), (gst_rtp_session_get_property):
8076         Define some GObject properties to set SDES and other configuration.
8077
8078         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
8079         (rtp_session_init), (rtp_session_finalize),
8080         (rtp_session_set_property), (rtp_session_get_property),
8081         (on_ssrc_sdes), (rtp_session_set_bandwidth),
8082         (rtp_session_get_bandwidth), (rtp_session_set_rtcp_fraction),
8083         (rtp_session_get_rtcp_fraction), (rtp_session_set_sdes_string),
8084         (rtp_session_get_sdes_string), (obtain_source),
8085         (rtp_session_get_internal_source), (rtp_session_process_sdes),
8086         (rtp_session_send_rtp), (rtp_session_next_timeout), (session_sdes),
8087         (is_rtcp_time):
8088         * gst/rtpmanager/rtpsession.h:
8089         Add signal when new SDES infor has been found for a source.
8090         Create properties for SDES and other info.
8091         Simplify the SDES API.
8092         Add method for getting the internal source object of the session.
8093
8094         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
8095         (rtp_source_finalize), (rtp_source_set_property),
8096         (rtp_source_get_property), (rtp_source_set_callbacks),
8097         (rtp_source_get_ssrc), (rtp_source_set_as_csrc),
8098         (rtp_source_is_as_csrc), (rtp_source_is_active),
8099         (rtp_source_is_validated), (rtp_source_is_sender),
8100         (rtp_source_received_bye), (rtp_source_get_bye_reason),
8101         (rtp_source_set_sdes), (rtp_source_set_sdes_string),
8102         (rtp_source_get_sdes), (rtp_source_get_sdes_string),
8103         (rtp_source_get_new_sr), (rtp_source_get_new_rb):
8104         * gst/rtpmanager/rtpsource.h:
8105         Add GObject properties for various things.
8106         Don't leak the bye reason.
8107
8108 2007-12-09  Edward Hervey  <edward@collabora.co.uk>
8109
8110         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8111         (gst_flv_parse_tag_video):
8112         Fix list of supported and known codecs.
8113         Emit tag with the codec name so it gets properly reported in totem and
8114         other applications.
8115
8116 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
8117
8118         * configure.ac:
8119         Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
8120
8121 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8122
8123         * gst/equalizer/gstiirequalizer.c:
8124         (gst_iir_equalizer_transform_ip):
8125         Fix compilation.
8126
8127 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8128
8129         * gst/equalizer/gstiirequalizer.c:
8130         (gst_iir_equalizer_transform_ip):
8131         Don't process buffers in passthrough mode.
8132
8133 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8134
8135         * gst/filter/gstbpwsinc.c: (bpwsinc_transform):
8136         * gst/filter/gstlpwsinc.c: (lpwsinc_transform):
8137         The transform() methods are not called in passthrough mode so
8138         there's no need for checking if the element is in passthrough mode.
8139
8140 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8141
8142         * gst/filter/gstbpwsinc.c: (bpwsinc_transform):
8143         * gst/filter/gstlpwsinc.c: (lpwsinc_transform):
8144         Sync the GObject properties with the controller even in passthrough
8145         mode to get consistent property values.
8146
8147 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
8148
8149         * gst/mpegtsparse/mpegtsparse.c: (crc_tab):
8150           Mark crc values table as constant.
8151
8152 2007-12-05  Edgard Lima  <edgard.lima@indt.org.br>
8153
8154         * ext/metadata/metadataexif.c:
8155         * ext/metadata/metadataiptc.c:
8156         * ext/metadata/metadatatags.c:
8157         * ext/metadata/metadatatags.h:
8158         * ext/metadata/metadataxmp.c:
8159           Added some tags to exif parser.
8160
8161 2007-12-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8162
8163         * gst/mpegtsparse/mpegtspacketizer.c:
8164         * gst/mpegtsparse/mpegtsparse.c:
8165         A sub table is identified by the pair table_id and 
8166         sub_table_identifier, not by pid. So hash with that.
8167         * sys/dvb/dvbbasebin.c:
8168         Make sure initial pids are added properly to filter,
8169
8170 2007-12-05  Andy Wingo  <wingo@pobox.com>
8171
8172         * gst/switch/gstswitch.c (gst_switch_set_property): Don't push
8173         buffers from app thread when unsetting `queue-buffers', it's
8174         dangerous and the chain function will do it for us anyway.
8175
8176 2007-12-04  Edgard Lima  <edgard.lima@indt.org.br>
8177
8178         * ext/metadata/metadatamuxjpeg.c: (metadatamux_wrap_chunk),
8179         (metadatamux_jpeg_lazy_update):
8180         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_parse),
8181         (metadataparse_jpeg_reading):
8182           Now compiles even when libiptc is missing.
8183
8184 2007-12-04  Edgard Lima  <edgard.lima@indt.org.br>
8185
8186         * ext/metadata/gstmetadatamux.c:
8187         * ext/metadata/gstmetadatamux.h:
8188         * ext/metadata/gstmetadataparse.c:
8189         * ext/metadata/gstmetadataparse.h:
8190         * ext/metadata/metadata.c:
8191         * ext/metadata/metadata.h:
8192         * ext/metadata/metadatamuxjpeg.c:
8193         * ext/metadata/metadatamuxjpeg.h:
8194         * ext/metadata/metadatamuxpng.c:
8195         * ext/metadata/metadatamuxpng.h:
8196           Fixed element properties and now muxer writes to png also.
8197
8198 2007-12-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8199
8200         * gst/mpegtsparse/Makefile.am:
8201         * gst/mpegtsparse/mpegtspacketizer.c:
8202         * gst/mpegtsparse/mpegtsparse.c:
8203         Remove signals for pat, pmt, nit, eit, sdt. Replace with bus
8204         messages.
8205         * sys/dvb/dvbbasebin.c:
8206         Instead of attaching to signals, use the bus messages.
8207         Also fix up so the dvbsrc starts only outputting the info tables
8208         like PAT, CAT, NIT, SDT, EIT instead of the whole ts.
8209
8210 2007-12-03  Edgard Lima  <edgard.lima@indt.org.br>
8211
8212         * ext/metadata/gstmetadatamux.c:
8213         * ext/metadata/gstmetadatamux.h:
8214         * ext/metadata/metadataexif.c:
8215         * ext/metadata/metadataexif.h:
8216         * ext/metadata/metadataiptc.c:
8217         * ext/metadata/metadataiptc.h:
8218         * ext/metadata/metadatamuxjpeg.c:
8219         * ext/metadata/metadataxmp.c:
8220         * ext/metadata/metadataxmp.h:
8221           Muxer writes (in jpeg only) whole IPTC chunk sent as tag. Muxer
8222           implemets GstTagSetter interface.
8223
8224 2007-12-03  Thijs Vermeir  <thijsvermeir@gmail.com>
8225
8226         * gst/librfb/rfbdecoder.c:
8227                 Should fix the 64-bit build
8228
8229 2007-11-30  Edgard Lima  <edgard.lima@indt.org.br>
8230
8231         * ext/metadata/gstmetadatamux.c:
8232         * ext/metadata/gstmetadatamux.h:
8233         * ext/metadata/gstmetadataparse.c:
8234         * ext/metadata/gstmetadataparse.h:
8235         * ext/metadata/metadataexif.c:
8236         * ext/metadata/metadataexif.h:
8237         * ext/metadata/metadataiptc.c:
8238         * ext/metadata/metadataiptc.h:
8239         * ext/metadata/metadatamuxjpeg.c:
8240         * ext/metadata/metadatamuxpng.c:
8241         * ext/metadata/metadataparsejpeg.c:
8242         * ext/metadata/metadataparsepng.c:
8243         * ext/metadata/metadataxmp.c:
8244         * ext/metadata/metadataxmp.h:
8245           Muxer writes (in jpeg only) whole EXIF and XMP chunks sent as tags.
8246
8247 2007-11-30  Thijs Vermeir  <thijsvermeir@gmail.com>
8248
8249         * gst/librfb/rfbdecoder.c:
8250         * gst/librfb/rfbdecoder.h:
8251                 Add CoRRE encoding
8252
8253 2007-11-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8254
8255         * gst/mpegtsparse/mpegtsparse.c:
8256         CRC check the psi pids. CRC checking code relicenced from MPL.
8257         Thanks Fluendo.
8258
8259 2007-11-30  Edgard Lima  <edgard.lima@indt.org.br>
8260
8261         * ext/metadata/Makefile.am:
8262         * ext/metadata/gstmetadatamux.c:
8263         * ext/metadata/gstmetadatamux.h:
8264         * ext/metadata/gstmetadataparse.c:
8265         * ext/metadata/metadata.c:
8266         * ext/metadata/metadata.h:
8267         * ext/metadata/metadatamuxjpeg.c:
8268         * ext/metadata/metadatamuxjpeg.h:
8269         * ext/metadata/metadatamuxpng.c:
8270         * ext/metadata/metadatamuxpng.h:
8271         * ext/metadata/metadataparsejpeg.c:
8272         * ext/metadata/metadataparsejpeg.h:
8273         * ext/metadata/metadataparsepng.c:
8274         * ext/metadata/metadataparsepng.h:
8275         * ext/metadata/metadatatypes.c:
8276         * ext/metadata/metadatatypes.h:
8277           Fixed get_range bug when injecting and stripping. And mux is almost
8278           done now.
8279
8280 2007-11-30  Thijs Vermeir  <thijsvermeir@gmail.com>
8281
8282         * gst/librfb/rfbdecoder.c:
8283                 Use glib macro for swapping
8284
8285 2007-11-29  Thijs Vermeir  <thijsvermeir@gmail.com>
8286
8287         * gst/librfb/gstrfbsrc.c:
8288         * gst/librfb/rfbdecoder.c:
8289         * gst/librfb/rfbdecoder.h:
8290                 Disable CopyRect encoding by default
8291                 Add RRE encoding
8292
8293 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
8294
8295         Patch by: Wouter Cloetens <wouter at mind dot be>
8296
8297         * configure.ac:
8298         Bump libsoup requirement as libsoup does not support async client
8299         operation prior to version 2.2.104 and it has some leaks.
8300
8301         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
8302         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
8303         (gst_souphttp_src_set_property), (gst_souphttp_src_create),
8304         (gst_souphttp_src_start), (gst_souphttp_src_stop),
8305         (gst_souphttp_src_unlock), (gst_souphttp_src_unlock_stop),
8306         (gst_souphttp_src_get_size), (soup_got_headers), (soup_got_body),
8307         (soup_finished), (soup_got_chunk), (soup_response),
8308         (soup_session_close):
8309         * ext/soup/gstsouphttpsrc.h:
8310         Implement unlock().
8311         Picks up the size from the Content-Length header and emit a duration
8312         message.
8313         Don't leak the GMainContext object.
8314         Fixes #500099.
8315
8316 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
8317
8318         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_set_caps),
8319         (alsaspdifsink_get_time), (alsaspdifsink_set_params),
8320         (alsaspdifsink_find_pcm_device):
8321         Don't free uninitialized data when we are in error.
8322
8323 2007-11-28  Edgard Lima  <edgard.lima@indt.org.br>
8324
8325         * ext/metadata/gstmetadatamux.c:
8326         * ext/metadata/gstmetadataparse.c:
8327         * ext/metadata/metadataexif.c:
8328         * ext/metadata/metadataexif.h:
8329         * ext/metadata/metadataiptc.c:
8330         * ext/metadata/metadataiptc.h:
8331         * ext/metadata/metadatatags.c:
8332         * ext/metadata/metadatatags.h:
8333         * ext/metadata/metadataxmp.c:
8334         * ext/metadata/metadataxmp.h:
8335           Sending make and model individual tags and muxer now links fine.
8336
8337 2007-11-28  Edgard Lima  <edgard.lima@indt.org.br>
8338
8339         * ext/metadata/Makefile.am:
8340         * ext/metadata/gstmetadata.c:
8341         * ext/metadata/gstmetadatamux.c:
8342         * ext/metadata/gstmetadatamux.h:
8343         * ext/metadata/gstmetadataparse.c:
8344         * ext/metadata/gstmetadataparse.h:
8345         * ext/metadata/metadata.c:
8346         * ext/metadata/metadata.h:
8347         * ext/metadata/metadataexif.c:
8348         * ext/metadata/metadataexif.h:
8349         * ext/metadata/metadataiptc.c:
8350         * ext/metadata/metadataiptc.h:
8351         * ext/metadata/metadataparse.c:
8352         * ext/metadata/metadataparse.h:
8353         * ext/metadata/metadataparseexif.c:
8354         * ext/metadata/metadataparseexif.h:
8355         * ext/metadata/metadataparseiptc.c:
8356         * ext/metadata/metadataparseiptc.h:
8357         * ext/metadata/metadataparsexmp.c:
8358         * ext/metadata/metadataparsexmp.h:
8359         * ext/metadata/metadatatags.c:
8360         * ext/metadata/metadatatags.h:
8361         * ext/metadata/metadataxmp.c:
8362         * ext/metadata/metadataxmp.h:
8363           Small fixes in get_range and better structure for generic muxer and
8364           demuxer.
8365
8366 2007-11-26  Julien Moutte  <julien@fluendo.com>
8367
8368         * configure.ac: Add QuickTime Wrapper plug-in.
8369         * gst/speexresample/gstspeexresample.c:
8370         (gst_speex_resample_push_drain), (gst_speex_resample_process): Fix
8371         build on Mac OS X Leopard. Incorrect printf format arguments.
8372         * sys/Makefile.am:
8373         * sys/qtwrapper/Makefile.am:
8374         * sys/qtwrapper/audiodecoders.c:
8375         (qtwrapper_audio_decoder_base_init),
8376         (qtwrapper_audio_decoder_class_init),
8377         (qtwrapper_audio_decoder_init),
8378         (clear_AudioStreamBasicDescription), (fill_indesc_mp3),
8379         (fill_indesc_aac), (fill_indesc_samr), (fill_indesc_generic),
8380         (make_samr_magic_cookie), (open_decoder),
8381         (qtwrapper_audio_decoder_sink_setcaps), (process_buffer_cb),
8382         (qtwrapper_audio_decoder_chain),
8383         (qtwrapper_audio_decoder_sink_event),
8384         (qtwrapper_audio_decoders_register):
8385         * sys/qtwrapper/codecmapping.c: (audio_caps_from_string),
8386         (fourcc_to_caps):
8387         * sys/qtwrapper/codecmapping.h:
8388         * sys/qtwrapper/imagedescription.c: (image_description_for_avc1),
8389         (image_description_for_mp4v), (image_description_from_stsd_buffer),
8390         (image_description_from_codec_data):
8391         * sys/qtwrapper/imagedescription.h:
8392         * sys/qtwrapper/qtutils.c: (get_name_info_from_component),
8393         (get_output_info_from_component), (dump_avcc_atom),
8394         (dump_image_description), (dump_codec_decompress_params),
8395         (addSInt32ToDictionary), (dump_cvpixel_buffer),
8396         (DestroyAudioBufferList), (AllocateAudioBufferList):
8397         * sys/qtwrapper/qtutils.h:
8398         * sys/qtwrapper/qtwrapper.c: (plugin_init):
8399         * sys/qtwrapper/qtwrapper.h:
8400         * sys/qtwrapper/videodecoders.c:
8401         (qtwrapper_video_decoder_base_init),
8402         (qtwrapper_video_decoder_class_init),
8403         (qtwrapper_video_decoder_init), (qtwrapper_video_decoder_finalize),
8404         (fill_image_description), (new_image_description), (close_decoder),
8405         (open_decoder), (qtwrapper_video_decoder_sink_setcaps),
8406         (decompressCb), (qtwrapper_video_decoder_chain),
8407         (qtwrapper_video_decoder_sink_event),
8408         (qtwrapper_video_decoders_register): Initial import of QuickTime
8409         wrapper jointly developped by Songbird authors (Pioneers of the
8410         Inevitable) and Fluendo.
8411
8412 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
8413
8414         * gst/spectrum/gstspectrum.c:
8415           Use dispose and finalize. Dispose can be called multiple times.
8416
8417 2007-11-26  Edgard Lima  <edgard.lima@indt.org.br>
8418
8419         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_init),
8420         (gst_metadata_parse_chain), (gst_metadata_parse_checkgetrange):
8421           Now works when get_range is not available upstream.
8422
8423 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
8424
8425         * gst/speexresample/README:
8426         * gst/speexresample/arch.h:
8427         * gst/speexresample/resample.c: (resampler_basic_direct_single),
8428         (resampler_basic_direct_double),
8429         (resampler_basic_interpolate_single),
8430         (resampler_basic_interpolate_double),
8431         (speex_resampler_process_native), (speex_resampler_process_float),
8432         (speex_resampler_process_int),
8433         (speex_resampler_process_interleaved_float),
8434         (speex_resampler_process_interleaved_int),
8435         (speex_resampler_get_input_latency),
8436         (speex_resampler_get_output_latency):
8437         * gst/speexresample/speex_resampler.h:
8438         Update speex resampler to latest SVN. We're now down to only the
8439         changes noted in README again.
8440
8441         * gst/speexresample/speex_resampler_wrapper.h:
8442         * gst/speexresample/gstspeexresample.c:
8443         (gst_speex_resample_push_drain), (gst_speex_resample_query):
8444         Adjust to API changes.
8445
8446 2007-11-25  Edward Hervey  <bilboed@bilboed.com>
8447
8448         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8449         (gst_flv_parse_tag_video):
8450         Output segment with proper 'stop' value, makes flvdemux 100% compatible
8451         with gnonlin.
8452
8453 2007-11-25  Stefan Kost  <ensonic@users.sf.net>
8454
8455         * ext/dc1394/gstdc1394.c:
8456           Set initial structure name to fix assertion, due to recent caps name
8457           constraints.
8458
8459 2007-11-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
8460
8461         patch by: Alessandro Decina
8462
8463         * gst/mpegtsparse/mpegtspacketizer.c:
8464         * gst/mpegtsparse/mpegtspacketizer.h:
8465         * gst/mpegtsparse/mpegtsparse.c:
8466         * gst/mpegtsparse/mpegtsparse.h:
8467         pat-info is now a signal not a GObject property that
8468         gets notified.
8469         pat-info, pmt-info now instead of passing a GObject as
8470         a parameter, pass a GstStructure.
8471         New signals: nit-info, sdt-info, eit-info for DVB SI information
8472         * sys/dvb/camconditionalaccess.c:
8473         * sys/dvb/camconditionalaccess.h:
8474         * sys/dvb/camdevice.c:
8475         * sys/dvb/camdevice.h:
8476         * sys/dvb/camswclient.c:
8477         * sys/dvb/camswclient.h:
8478         * sys/dvb/camutils.c:
8479         * sys/dvb/camutils.h:
8480         Cam code now uses the pmt GstStructure passed from mpegtsparse
8481         signals rather than the GObject.
8482         * sys/dvb/dvbbasebin.c:
8483         Use new signals in mpegtsparse and use GstStructures as per
8484         mpegtsparse's modified API.
8485         
8486 2007-11-23  Edgard Lima  <edgard.lima@indt.org.br>
8487
8488         * ext/metadata/Makefile.am:
8489         * ext/metadata/gstmetadata.c:
8490         * ext/metadata/gstmetadatamux.c:
8491         * ext/metadata/gstmetadatamux.h:
8492         * ext/metadata/gstmetadataparse.c:
8493         * ext/metadata/gstmetadataparse.h:
8494         * ext/metadata/metadataparse.c:
8495         * ext/metadata/metadataparse.h:
8496         * ext/metadata/metadataparsejpeg.c:
8497         * ext/metadata/metadataparsejpeg.h:
8498         * ext/metadata/metadataparsepng.c:
8499         * ext/metadata/metadataparsepng.h:
8500         * ext/metadata/metadataparsetypes.h:
8501         * ext/metadata/metadatatypes.c:
8502         * ext/metadata/metadatatypes.h:
8503           Now parser is generic (just add/remove a list of chunks). And a
8504           template of muxer has been created.
8505
8506 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8507
8508         * gst/speexresample/gstspeexresample.c:
8509         (gst_speex_resample_update_state):
8510         Only post the latency message if we have a resampler state already.
8511
8512 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8513
8514         * gst/speexresample/gstspeexresample.c:
8515         (gst_speex_resample_update_state):
8516         Also post GST_MESSAGE_LATENCY if the latency changes.
8517
8518 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8519
8520         * gst/speexresample/resample.c: (speex_resampler_get_latency),
8521         (speex_resampler_drain_float), (speex_resampler_drain_int),
8522         (speex_resampler_drain_interleaved_float),
8523         (speex_resampler_drain_interleaved_int):
8524         * gst/speexresample/speex_resampler.h:
8525         * gst/speexresample/speex_resampler_wrapper.h:
8526         Add functions to push the remaining samples and to get the latency
8527         of the resampler. These will get added to Speex SVN in this or a
8528         slightly changed form at some point too and should get merged then
8529         again.
8530
8531         * gst/speexresample/gstspeexresample.c: (gst_speex_resample_init),
8532         (gst_speex_resample_init_state),
8533         (gst_speex_resample_transform_size),
8534         (gst_speex_resample_push_drain), (gst_speex_resample_event),
8535         (gst_speex_fix_output_buffer), (gst_speex_resample_process),
8536         (gst_speex_resample_query), (gst_speex_resample_query_type):
8537         Drop the prepending zeroes and output the remaining samples on EOS.
8538         Also properly implement the latency query for this. speexresample
8539         should be completely ready for production use now.
8540
8541 2007-11-22  Wim Taymans  <wim.taymans@gmail.com>
8542
8543         * gst/rtpmanager/gstrtpjitterbuffer.c:
8544         (gst_rtp_jitter_buffer_query):
8545         jitterbuffer can buffer an unlimited amount of time and thus has no
8546         max_latency requirements.
8547
8548 2007-11-21  Sebastian Dröge  <slomo@circular-chaos.org>
8549
8550         * gst/speexresample/README:
8551         Add README explaining where the resampling code was taken from
8552         and which changes were done.
8553
8554         * gst/speexresample/resample.c: (speex_alloc), (speex_realloc),
8555         (speex_free):
8556         Use g_malloc() and friends instead of malloc() to achieve higher
8557         portability and define the functions inline.
8558
8559         * gst/speexresample/speex_resampler.h:
8560         Add back some useless preprocessor stuff to keep the diff between
8561         our version and the one from the Speex SVN repository lower.
8562
8563 2007-11-21  Sebastian Dröge  <slomo@circular-chaos.org>
8564
8565         * gst/filter/gstbpwsinc.c: (bpwsinc_set_property):
8566         * gst/filter/gstlpwsinc.c: (lpwsinc_set_property):
8567         Post a GST_MESSAGE_LATENCY if the latency changes.
8568
8569 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
8570
8571         * ext/faac/gstfaac.c: (gst_faac_sink_event):
8572         Don't try to flush the decoder on EOS when it was not initialized.
8573         Fixes #498667
8574
8575 2007-11-21  Julien Moutte  <julien@fluendo.com>
8576
8577         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_write): Fix build
8578         on Mac OS X. (missing format parameter)
8579
8580 2007-11-21  Stefan Kost  <ensonic@users.sf.net>
8581
8582         * gst/equalizer/gstiirequalizer10bands.c:
8583         * gst/equalizer/gstiirequalizer3bands.c:
8584           Remove preset iface again. We'll re-add this after its been released
8585           in -good.
8586
8587 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8588
8589         * gst/speexresample/gstspeexresample.c:
8590         (gst_speex_fix_output_buffer), (gst_speex_resample_transform):
8591         Some small cleanup and addition of a TODO item.
8592
8593 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8594
8595         * gst/speexresample/Makefile.am:
8596         Add missing file.
8597
8598 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8599
8600         * docs/plugins/inspect/plugin-app.xml:
8601         * docs/plugins/inspect/plugin-bayer.xml:
8602         * docs/plugins/inspect/plugin-cdaudio.xml:
8603         * docs/plugins/inspect/plugin-dvb.xml:
8604         * docs/plugins/inspect/plugin-dvbsrc.xml:
8605         * docs/plugins/inspect/plugin-dvdspu.xml:
8606         * docs/plugins/inspect/plugin-festival.xml:
8607         * docs/plugins/inspect/plugin-flvdemux.xml:
8608         * docs/plugins/inspect/plugin-gstinterlace.xml:
8609         * docs/plugins/inspect/plugin-interleave.xml:
8610         * docs/plugins/inspect/plugin-ladspa.xml:
8611         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
8612         * docs/plugins/inspect/plugin-mpegtsparse.xml:
8613         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
8614         * docs/plugins/inspect/plugin-mve.xml:
8615         * docs/plugins/inspect/plugin-nas.xml:
8616         * docs/plugins/inspect/plugin-nuvdemux.xml:
8617         * docs/plugins/inspect/plugin-quicktime.xml:
8618         * docs/plugins/inspect/plugin-real.xml:
8619         * docs/plugins/inspect/plugin-rfbsrc.xml:
8620         * docs/plugins/inspect/plugin-sdp.xml:
8621         * docs/plugins/inspect/plugin-sndfile.xml:
8622         * docs/plugins/inspect/plugin-soup.xml:
8623         * docs/plugins/inspect/plugin-speexresample.xml:
8624         * docs/plugins/inspect/plugin-stereo.xml:
8625         * docs/plugins/inspect/plugin-switch.xml:
8626         * docs/plugins/inspect/plugin-vcdsrc.xml:
8627         * docs/plugins/inspect/plugin-videocrop.xml:
8628         * docs/plugins/inspect/plugin-videoparse.xml:
8629         * docs/plugins/inspect/plugin-vmnc.xml:
8630         * docs/plugins/inspect/plugin-x264.xml:
8631         * docs/plugins/inspect/plugin-y4menc.xml:
8632         Add missing inspection files to CVS.
8633
8634 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8635
8636         * docs/plugins/Makefile.am:
8637         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
8638         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
8639         * docs/plugins/gst-plugins-bad-plugins.args:
8640         * docs/plugins/gst-plugins-bad-plugins.signals:
8641         * docs/plugins/inspect/plugin-bz2.xml:
8642         * docs/plugins/inspect/plugin-cdxaparse.xml:
8643         * docs/plugins/inspect/plugin-dtsdec.xml:
8644         * docs/plugins/inspect/plugin-equalizer.xml:
8645         * docs/plugins/inspect/plugin-faac.xml:
8646         * docs/plugins/inspect/plugin-faad.xml:
8647         * docs/plugins/inspect/plugin-filter.xml:
8648         * docs/plugins/inspect/plugin-freeze.xml:
8649         * docs/plugins/inspect/plugin-gio.xml:
8650         * docs/plugins/inspect/plugin-gsm.xml:
8651         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
8652         * docs/plugins/inspect/plugin-h264parse.xml:
8653         * docs/plugins/inspect/plugin-modplug.xml:
8654         * docs/plugins/inspect/plugin-mpeg2enc.xml:
8655         * docs/plugins/inspect/plugin-musepack.xml:
8656         * docs/plugins/inspect/plugin-musicbrainz.xml:
8657         * docs/plugins/inspect/plugin-nsfdec.xml:
8658         * docs/plugins/inspect/plugin-replaygain.xml:
8659         * docs/plugins/inspect/plugin-soundtouch.xml:
8660         * docs/plugins/inspect/plugin-spcdec.xml:
8661         * docs/plugins/inspect/plugin-spectrum.xml:
8662         * docs/plugins/inspect/plugin-speed.xml:
8663         * docs/plugins/inspect/plugin-tta.xml:
8664         * docs/plugins/inspect/plugin-videosignal.xml:
8665         * docs/plugins/inspect/plugin-xingheader.xml:
8666         * docs/plugins/inspect/plugin-xvid.xml:
8667         * gst/speexresample/gstspeexresample.h:
8668         Add speexresample to the docs and while at that do a make update.
8669
8670 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8671
8672         * gst/speexresample/gstspeexresample.c:
8673         (gst_speex_fix_output_buffer), (gst_speex_resample_process):
8674         If the resampler gives less output samples than expected
8675         adjust the output buffer and print a warning.
8676
8677 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8678
8679         * configure.ac:
8680         * gst/speexresample/arch.h:
8681         * gst/speexresample/fixed_generic.h:
8682         * gst/speexresample/gstspeexresample.c:
8683         (gst_speex_resample_base_init), (gst_speex_resample_class_init),
8684         (gst_speex_resample_init), (gst_speex_resample_start),
8685         (gst_speex_resample_stop), (gst_speex_resample_get_unit_size),
8686         (gst_speex_resample_transform_caps),
8687         (gst_speex_resample_init_state), (gst_speex_resample_update_state),
8688         (gst_speex_resample_reset_state), (gst_speex_resample_parse_caps),
8689         (gst_speex_resample_transform_size), (gst_speex_resample_set_caps),
8690         (gst_speex_resample_event), (gst_speex_resample_check_discont),
8691         (gst_speex_resample_process), (gst_speex_resample_transform),
8692         (gst_speex_resample_set_property),
8693         (gst_speex_resample_get_property), (plugin_init):
8694         * gst/speexresample/gstspeexresample.h:
8695         * gst/speexresample/resample.c: (speex_alloc), (speex_realloc),
8696         (speex_free), (compute_func), (main), (sinc), (cubic_coef),
8697         (resampler_basic_direct_single), (resampler_basic_direct_double),
8698         (resampler_basic_interpolate_single),
8699         (resampler_basic_interpolate_double), (update_filter),
8700         (speex_resampler_init), (speex_resampler_init_frac),
8701         (speex_resampler_destroy), (speex_resampler_process_native),
8702         (speex_resampler_process_float), (speex_resampler_process_int),
8703         (speex_resampler_process_interleaved_float),
8704         (speex_resampler_process_interleaved_int),
8705         (speex_resampler_set_rate), (speex_resampler_get_rate),
8706         (speex_resampler_set_rate_frac), (speex_resampler_get_ratio),
8707         (speex_resampler_set_quality), (speex_resampler_get_quality),
8708         (speex_resampler_set_input_stride),
8709         (speex_resampler_get_input_stride),
8710         (speex_resampler_set_output_stride),
8711         (speex_resampler_get_output_stride), (speex_resampler_skip_zeros),
8712         (speex_resampler_reset_mem), (speex_resampler_strerror):
8713         * gst/speexresample/speex_resampler.h:
8714         * gst/speexresample/speex_resampler_float.c:
8715         * gst/speexresample/speex_resampler_int.c:
8716         * gst/speexresample/speex_resampler_wrapper.h:
8717         Add resample element based on the Speex resampling algorithm.
8718
8719 2007-11-20  Edgard Lima  <edgard.lima@indt.org.br>
8720
8721         * ext/metadata/gstmetadataparse.c:
8722         * ext/metadata/gstmetadataparse.h:
8723           Fixed buffer strip (safer wil pull and after seek).
8724
8725 2007-11-19  Stefan Kost  <ensonic@users.sf.net>
8726
8727         * gst/equalizer/gstiirequalizer10bands.c:
8728         * gst/equalizer/gstiirequalizer3bands.c:
8729           Activate preset iface and upload two presets here.
8730
8731 2007-11-19  Edgard Lima  <edgard.lima@indt.org.br>
8732
8733         * ext/metadata/gstmetadataparse.c:
8734         * ext/metadata/gstmetadataparse.h:
8735           Strip out in pull mode also. Seek and Query functions added.
8736
8737 2007-11-18  Edgard Lima  <edgard.lima@indt.org.br>
8738
8739         * ext/metadata/gstmetadataparse.c:
8740         * ext/metadata/gstmetadataparse.h:
8741         * ext/metadata/metadataparse.c:
8742         * ext/metadata/metadataparse.h:
8743         * ext/metadata/metadataparsejpeg.c:
8744         * ext/metadata/metadataparsejpeg.h:
8745         * ext/metadata/metadataparsepng.c:
8746         * ext/metadata/metadataparsepng.h:
8747         * ext/metadata/metadataparsetypes.h:
8748           Strip out metadata chunks.
8749
8750 2007-11-16  Stefan Kost  <ensonic@users.sf.net>
8751
8752         * configure.ac:
8753           Als use AG_GST_PLUGIN_DOCS (see #344039).
8754
8755 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8756
8757         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
8758
8759         * gst/mpegtsparse/mpegtspacketizer.c: (foreach_stream_clear),
8760         (remove_all), (mpegts_packetizer_clear):
8761         Ensure that the plugin does not crash when the property pat-info is
8762         queried before a PAT is available. It also ensures that the PAT info is
8763         cleared when the changing from PLAYING to READY.
8764         Fixes #487892.
8765
8766 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8767
8768         Patch by: Wouter Paesen <wouter at blue-gate dot be>
8769
8770         * ext/soundtouch/gstpitch.cc:
8771         Handle seeking correctly. Fixes #461068.
8772
8773 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8774
8775         Patch by: Michael Kötter <m dot koetter at oraise dot de>
8776
8777         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_set_caps),
8778         (alsaspdifsink_get_time), (alsaspdifsink_open),
8779         (alsaspdifsink_set_params), (alsaspdifsink_delay), (plugin_init):
8780         Fix sample rate and clocking.
8781         Remove buffer_time and period_time as this seems to break on some
8782         hardware. Fixes #485462.
8783
8784 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8785
8786         Patch by: Wouter Cloetens <wouter at mind dot be>
8787
8788         * configure.ac:
8789         * ext/Makefile.am:
8790         * ext/soup/Makefile.am:
8791         * ext/soup/gstsouphttpsrc.c: (_do_init),
8792         (gst_souphttp_src_base_init), (gst_souphttp_src_class_init),
8793         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
8794         (gst_souphttp_src_set_property), (gst_souphttp_src_get_property),
8795         (gst_souphttp_src_create), (gst_souphttp_src_start),
8796         (gst_souphttp_src_stop), (gst_souphttp_src_unlock),
8797         (gst_souphttp_src_set_location), (soup_got_chunk), (soup_response),
8798         (soup_session_close), (plugin_init):
8799         * ext/soup/gstsouphttpsrc.h:
8800         Added HTTP source based on libsoup. Fixes #497020.
8801
8802 2007-11-15  Thijs Vermeir  <thijsvermeir@gmail.com>
8803
8804         * gst/librfb/gstrfbsrc.c:
8805         don't forget to handle the offset's
8806         * gst/librfb/rfbdecoder.c:
8807         * gst/librfb/rfbdecoder.h:
8808         precalculate some many used values
8809
8810 2007-11-15  Thijs Vermeir  <thijsvermeir@gmail.com>
8811
8812         patch by: Armando Taffarel Neto <taffarel@solis.coop.br>
8813         * gst/librfb/gstrfbsrc.c:
8814         Set the timestamp for the output buffers
8815
8816 2007-11-14  Sebastian Dröge  <slomo@circular-chaos.org>
8817
8818         * tests/check/elements/spectrum.c: (GST_START_TEST):
8819         Fix spectrum unit test for the latest spectrum changes.
8820
8821 2007-11-12  Sebastian Dröge  <slomo@circular-chaos.org>
8822
8823         Patch by: René Stadler <mail at renestadler dot de>
8824
8825         * gst/replaygain/rganalysis.c: (yule_filter):
8826         Avoid slowdown from denormals when processing near-silence input data.
8827         Spotted by Gabriel Bouvigne. Fixes #494499.
8828
8829 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
8830
8831         * gst/flv/gstflvparse.c:
8832         Add mapping for Nellymoser ASAO audio codec.
8833         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Make sure we
8834         actually have data to read at the end of the tag. This avoids trying
8835         to allocate negative buffers.
8836
8837 2007-11-12  Edgard Lima  <edgard.lima@indt.org.br>
8838
8839         * ext/metadata/README:
8840           Added a design proposal from metadata parse and mux.
8841
8842 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8843
8844         * gst/equalizer/demo.c: (draw_spectrum):
8845         * gst/spectrum/demo-audiotest.c: (draw_spectrum):
8846         * gst/spectrum/demo-osssrc.c: (draw_spectrum):
8847         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
8848         Change the meaning of the magnitude values given in the
8849         GstMessages by spectrum to decibel instead of
8850         decibel+threshold.
8851
8852 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8853
8854         * gst/equalizer/gstiirequalizer10bands.c:
8855         * gst/equalizer/gstiirequalizer3bands.c:
8856         * gst/equalizer/gstiirequalizernbands.c:
8857         And continue to update docs. Also include some sample code
8858         for the n-band equalizer in the docs.
8859
8860 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8861
8862         * gst/equalizer/gstiirequalizer10bands.c:
8863         (gst_iir_equalizer_10bands_class_init):
8864         * gst/equalizer/gstiirequalizer3bands.c:
8865         (gst_iir_equalizer_3bands_class_init):
8866         * gst/equalizer/gstiirequalizernbands.c:
8867         Update docs and property ranges to the real values.
8868
8869 2007-11-09  Sebastian Dröge  <slomo@circular-chaos.org>
8870
8871         * gst/spectrum/gstspectrum.c:
8872         Now do the scaling right for real. Also initialize a previously
8873         uninitialized variable.
8874
8875 2007-11-09  Edgard Lima  <edgard.lima@indt.org.br>
8876
8877         * ext/metadata/metadataparsexmp.c:
8878         (metadataparse_xmp_tag_list_add),
8879         (metadataparse_xmp_iter_simple_qual),
8880         (metadataparse_xmp_iter_simple), (metadataparse_xmp_iter_array),
8881         (metadataparse_xmp_iter):
8882           Extracting more detailed info from XMP.
8883
8884 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
8885
8886         * gst/equalizer/demo.c:
8887           Make default volume a bit less. Improve layout by giving more space to
8888           the slider with big-numbers and enable fill.
8889
8890 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8891
8892         * configure.ac:
8893         * tests/check/pipelines/gio.c: (GST_START_TEST):
8894         Require GIO >= 0.1.2 and adjust unit test for an API change.
8895
8896 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8897
8898         * tests/icles/equalizer-test.c: (do_slider_fiddling):
8899         Fix gain ranges for the latest equalizer changes.
8900
8901 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8902
8903         * ext/gio/gstgio.h:
8904         Add macro to check if a stream supports seeking.
8905
8906         * ext/gio/Makefile.am:
8907         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_base_init),
8908         (gst_gio_base_sink_class_init), (gst_gio_base_sink_init),
8909         (gst_gio_base_sink_finalize), (gst_gio_base_sink_start),
8910         (gst_gio_base_sink_stop), (gst_gio_base_sink_unlock),
8911         (gst_gio_base_sink_unlock_stop), (gst_gio_base_sink_event),
8912         (gst_gio_base_sink_render), (gst_gio_base_sink_query),
8913         (gst_gio_base_sink_set_stream):
8914         * ext/gio/gstgiobasesink.h:
8915         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_base_init),
8916         (gst_gio_base_src_class_init), (gst_gio_base_src_init),
8917         (gst_gio_base_src_finalize), (gst_gio_base_src_start),
8918         (gst_gio_base_src_stop), (gst_gio_base_src_get_size),
8919         (gst_gio_base_src_is_seekable), (gst_gio_base_src_unlock),
8920         (gst_gio_base_src_unlock_stop), (gst_gio_base_src_check_get_range),
8921         (gst_gio_base_src_create), (gst_gio_base_src_set_stream):
8922         * ext/gio/gstgiobasesrc.h:
8923         Refactor common GIO functions to GstGioBaseSink and GstGioBaseSrc
8924         base classes that only require a GInputStream or GOutputStream to
8925         work.
8926
8927         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
8928         (gst_gio_sink_class_init), (gst_gio_sink_init),
8929         (gst_gio_sink_finalize), (gst_gio_sink_start):
8930         * ext/gio/gstgiosink.h:
8931         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
8932         (gst_gio_src_class_init), (gst_gio_src_init),
8933         (gst_gio_src_finalize), (gst_gio_src_start):
8934         * ext/gio/gstgiosrc.h:
8935         Use the newly created base classes here.
8936
8937         * ext/gio/gstgio.c: (plugin_init):
8938         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_base_init),
8939         (gst_gio_stream_sink_class_init), (gst_gio_stream_sink_init),
8940         (gst_gio_stream_sink_finalize), (gst_gio_stream_sink_set_property),
8941         (gst_gio_stream_sink_get_property):
8942         * ext/gio/gstgiostreamsink.h:
8943         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_base_init),
8944         (gst_gio_stream_src_class_init), (gst_gio_stream_src_init),
8945         (gst_gio_stream_src_finalize), (gst_gio_stream_src_set_property),
8946         (gst_gio_stream_src_get_property):
8947         * ext/gio/gstgiostreamsrc.h:
8948         Implement GstGioStreamSink and GstGioStreamSrc that have a property
8949         to set the GInputStream/GOutputStream that should be used.
8950
8951         * tests/check/Makefile.am:
8952         * tests/check/pipelines/.cvsignore:
8953         * tests/check/pipelines/gio.c: (message_handler), (GST_START_TEST),
8954         (gio_testsuite), (main):
8955         Add unit test for giostreamsrc and giostreamsink.
8956
8957 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8958
8959         * ext/gio/gstgio.c: (plugin_init):
8960         Remove nowadays unnecessary workaround for a crash.
8961         
8962         * ext/gio/gstgiosink.c: (gst_gio_sink_finalize),
8963         (gst_gio_sink_start), (gst_gio_sink_stop),
8964         (gst_gio_sink_unlock_stop):
8965         * ext/gio/gstgiosink.h:
8966         * ext/gio/gstgiosrc.c: (gst_gio_src_finalize), (gst_gio_src_start),
8967         (gst_gio_src_stop), (gst_gio_src_unlock_stop):
8968         * ext/gio/gstgiosrc.h:
8969         Make the finalize function safer, clean up everything that could stay
8970         around.
8971
8972         Reset the cancellable instead of creating a new one after cancelling
8973         some operation.
8974
8975         Don't store the GFile in the element, it's only necessary for creating
8976         the streams.
8977
8978 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
8979
8980         * gst/spectrum/demo-audiotest.c: (main):
8981         Use autoaudiosink instead of alsasink and use a sine wave.
8982
8983         * gst/spectrum/gstspectrum.c:
8984         Fix the magnitude calculation.
8985
8986 2007-11-04  Tim-Philipp Müller  <tim at centricular dot net>
8987
8988         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
8989
8990         * gst-libs/gst/dshow/gstdshowfakesink.cpp:
8991           (CDshowFakeSink.CDshowFakeSink):
8992         * gst-libs/gst/dshow/gstdshowfakesink.h: (CDshowFakeSink.m_hres):
8993           Fix crasher in constructor due to the base class's constructor
8994           not necessarily being NULL-safe (depends on the SDK version used
8995           apparently; #492406).
8996
8997         * sys/dshowsrcwrapper/gstdshowaudiosrc.c: (gst_dshowaudiosrc_prepare):
8998         * sys/dshowsrcwrapper/gstdshowvideosrc.c: (gst_dshowvideosrc_set_caps):
8999           Fix a couple of MSVC compiler warnings (#492406).
9000
9001 2007-11-03  Sebastian Dröge  <slomo@circular-chaos.org>
9002
9003         * gst/equalizer/demo.c: (main):
9004         * gst/equalizer/gstiirequalizer.c:
9005         (gst_iir_equalizer_band_class_init), (setup_filter):
9006         Allow setting 0 as bandwidth and handle this correctly.
9007         Also handle a bandwidth of rate/2 properly.
9008
9009         * gst/equalizer/gstiirequalizernbands.c:
9010         (gst_iir_equalizer_nbands_class_init):
9011         Make it possible to generate a N-band equalizer with 1 bands. The
9012         previous limit of 2 was caused by a nowadays replaced calculation
9013         doing a division by zero if number of bands was 1.
9014
9015 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
9016
9017         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
9018
9019         * gst/rtpmanager/gstrtpsession.c:
9020           Fix bad function signatures (#492798).
9021
9022 2007-11-02  Edgard Lima  <edgard.lima@indt.org.br>
9023
9024         * ext/metadata/Makefile.am:
9025         * ext/metadata/gstmetadataparse.c:
9026         * ext/metadata/gstmetadataparse.h:
9027         * ext/metadata/metadataparse.c:
9028         * ext/metadata/metadataparse.h:
9029         * ext/metadata/metadataparseexif.c:
9030         * ext/metadata/metadataparseexif.h:
9031         * ext/metadata/metadataparseiptc.c:
9032         * ext/metadata/metadataparseiptc.h:
9033         * ext/metadata/metadataparsejpeg.c:
9034         * ext/metadata/metadataparsejpeg.h:
9035         * ext/metadata/metadataparsepng.c:
9036         * ext/metadata/metadataparsepng.h:
9037         * ext/metadata/metadataparseutil.c:
9038         * ext/metadata/metadataparseutil.h:
9039         * ext/metadata/metadataparsexmp.c:
9040         * ext/metadata/metadataparsexmp.h:
9041           Added support for PNG/XMP. Indentation. And fixed pull mode to parse
9042           the file. 
9043
9044 2007-11-02  Edgard Lima  <edgard.lima@indt.org.br>
9045
9046         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_init),
9047         (gst_metadata_parse_activate), (gst_metadata_parse_get_range),
9048         (gst_metadata_parse_element_activate_src_pull):
9049           Now metadataparse works in push or pull mode.
9050
9051 2007-11-01  Edgard Lima  <edgard.lima@indt.org.br>
9052
9053         * configure.ac:
9054         * ext/metadata/Makefile.am:
9055         * ext/metadata/metadataparseexif.c:
9056         (metadataparse_exif_tags_register),
9057         (metadataparse_exif_tag_list_add):
9058         * ext/metadata/metadataparseiptc.c:
9059         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_init),
9060         (metadataparse_jpeg_dispose), (metadataparse_jpeg_parse),
9061         (metadataparse_jpeg_reading), (metadataparse_jpeg_xmp):
9062         * ext/metadata/metadataparseutil.c:
9063         (metadataparse_tag_list_add_chunk):
9064         * ext/metadata/metadataparseutil.h:
9065         * ext/metadata/metadataparsexmp.c:
9066         (metadataparse_xmp_tags_register),
9067         (metadataparse_xmp_tag_list_add), (metadataparse_xmp_init),
9068         (metadataparse_xmp_dispose):
9069         * ext/metadata/metadataparsexmp.h:
9070           Some XMP stuff added.
9071
9072 2007-10-31  Edgard Lima  <edgard.lima@indt.org.br>
9073
9074         * ext/metadata/gstmetadataparse.c:
9075         (gst_metadata_parse_dispose_members),
9076         (gst_metadata_parse_init_members), (gst_metadata_parse_send_tags),
9077         (gst_metadata_parse_chain), (gst_metadata_parse_get_range),
9078         (gst_metadata_parse_change_state),
9079         (gst_metadata_parse_plugin_init):
9080         * ext/metadata/gstmetadataparse.h:
9081         * ext/metadata/metadataparseexif.c:
9082         (metadataparse_exif_tags_register),
9083         (metadataparse_exif_tag_list_add),
9084         (exif_data_foreach_content_func),
9085         (exif_content_foreach_entry_func):
9086         * ext/metadata/metadataparseexif.h:
9087         * ext/metadata/metadataparseiptc.c:
9088         (metadataparse_iptc_tags_register),
9089         (metadataparse_tag_list_add_chunk),
9090         (metadataparse_iptc_tag_list_add),
9091         (iptc_data_foreach_dataset_func):
9092         * ext/metadata/metadataparseiptc.h:
9093         * ext/metadata/metadataparsexmp.c:
9094         (metadataparse_xmp_tags_register),
9095         (metadataparse_xmp_tag_list_add):
9096         * ext/metadata/metadataparsexmp.h:
9097           Now sending iptc tag in whole chunk. Ready to also send exif and xmp
9098           in the same way (look at bug #486659).
9099
9100 2007-10-31  Thijs Vermeir  <thijsvermeir@gmail.com>
9101
9102         * gst/librfb/rfbdecoder.c:
9103                 Some refactoring in RAW encoding
9104
9105 2007-10-31  Thijs Vermeir  <thijsvermeir@gmail.com>
9106
9107         * gst/librfb/d3des.h:
9108         * gst/librfb/gstrfbsrc.c:
9109         * gst/librfb/gstrfbsrc.h:
9110         * gst/librfb/rfbbuffer.h:
9111         * gst/librfb/rfbcontext.h:
9112         * gst/librfb/rfbdecoder.c:
9113         * gst/librfb/rfbdecoder.h:
9114         * gst/librfb/rfbutil.h:
9115         * gst/librfb/vncauth.h:
9116                 Added copyrect encoding
9117
9118 2007-10-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9119
9120         * sys/dvb/camswclient.c:
9121         Warn on failed write.
9122
9123 2007-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
9124
9125         * gst/equalizer/Makefile.am:
9126         * gst/equalizer/demo.c: (on_window_destroy), (on_configure_event),
9127         (on_gain_changed), (on_bandwidth_changed), (on_freq_changed),
9128         (draw_spectrum), (message_handler), (main):
9129         Add small demo application based on the spectrum demo applications
9130         that gets white noise as input, pushes it through an equalizer and
9131         paints the spectrum. For every equalizer band it's possible to set
9132         gain, bandwidth and frequency.
9133         * gst/equalizer/gstiirequalizer.c: (setup_filter):
9134         Add some guarding against too large or too small frequencies and
9135         bandwidths. Also improve debugging a bit.
9136
9137 2007-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
9138
9139         * gst/equalizer/gstiirequalizer.c:
9140         (gst_iir_equalizer_band_set_property),
9141         (gst_iir_equalizer_band_get_property),
9142         (gst_iir_equalizer_band_class_init), (arg_to_scale),
9143         (setup_filter), (gst_iir_equalizer_compute_frequencies):
9144         Replace filters with a bit better filters for which we can actually
9145         find documentation, which don't change anything on zero gain, etc.
9146         
9147         Make the frequency property of the bands writable, rename the
9148         band-width property to bandwidth and change the meaning to the
9149         frequency difference between bandedges, change the meaning of the
9150         gain property to dB instead of a weird scale between -1 and 1 that
9151         has no real meaning.
9152
9153 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
9154
9155         * sys/dvb/dvbbasebin.c:
9156           Fix the build.
9157
9158 2007-10-30  Edgard Lima  <edgard.lima@indt.org.br>
9159
9160         * ext/metadata/.cvsignore:
9161         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_base_init),
9162         (gst_metadata_parse_init), (gst_metadata_parse_get_caps),
9163         (gst_metadata_parse_configure_srccaps),
9164         (gst_metadata_parse_set_caps), (gst_metadata_parse_activate),
9165         (gst_metadata_parse_plugin_init):
9166         * ext/metadata/metadataparse.c: (metadataparse_parse):
9167         * ext/metadata/metadataparse.h:
9168           Changed kclass to "Parser/Extracter/Metadata", changed caps to
9169           "image/jpeg, tags-extract=true/false" and changed priority to
9170           GST_RANK_PRIMARY+1. Also, srcpad can only work in push mode until
9171           fixed to also work in pull mode.
9172
9173 2007-10-30  Edgard Lima  <edgard.lima@indt.org.br>
9174
9175         * configure.ac:
9176         * ext/Makefile.am:
9177         * ext/metadata/:
9178         * ext/metadata/Makefile.am:
9179         * ext/metadata/gstmetadata.c:
9180         * ext/metadata/gstmetadataparse.c:
9181         * ext/metadata/gstmetadataparse.h:
9182         * ext/metadata/metadataparse.c:
9183         * ext/metadata/metadataparse.h:
9184         * ext/metadata/metadataparseexif.c:
9185         * ext/metadata/metadataparseexif.h:
9186         * ext/metadata/metadataparseiptc.c:
9187         * ext/metadata/metadataparseiptc.h:
9188         * ext/metadata/metadataparsejpeg.c:
9189         * ext/metadata/metadataparsejpeg.h:
9190         * ext/metadata/metadataparsexmp.c:
9191         * ext/metadata/metadataparsexmp.h:
9192           Created new plugin ('medadata') and element ('metadataparse') that
9193           extract metadata from images (look at bug #486659).
9194
9195 2007-10-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9196
9197         * sys/dvb/dvbbasebin.c:
9198         Uncomment the line that sets the pid filter. Wrong way to 
9199         work-around driver issues.
9200
9201 2007-10-28  Tim-Philipp Müller  <tim at centricular dot net>
9202
9203         * ext/faac/gstfaac.c: (gst_faac_profile_get_type),
9204           (gst_faac_class_init), (gst_faac_init):
9205           Fix bitrate ranges and change enum nick for low complexity
9206           profile from LOW to LC for consistency (#490060).
9207
9208 2007-10-27  Tim-Philipp Müller  <tim at centricular dot net>
9209
9210         * gst/interleave/interleave.c: (gst_interleave_request_new_pad):
9211           Let's not call every request pad we create "sink%d", that'll
9212           create problems if there's to be more than one pad. Fixes #490682.
9213
9214         * tests/check/Makefile.am:
9215         * tests/check/elements/.cvsignore:
9216         * tests/check/elements/interleave.c:
9217           Add unit test for the above.
9218
9219 2007-10-27  Julien MOUTTE  <julien@moutte.net>
9220
9221         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_align),
9222         (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain),
9223         (gst_mpeg4vparse_sink_setcaps), (gst_mpeg4vparse_sink_event),
9224         (gst_mpeg4vparse_cleanup), (gst_mpeg4vparse_change_state),
9225         (gst_mpeg4vparse_dispose), (gst_mpeg4vparse_base_init),
9226         (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init),
9227         (plugin_init):
9228         * gst/mpeg4videoparse/mpeg4videoparse.h: Improved version not
9229         damaging headers using a simple state machine.
9230
9231 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
9232
9233         * ext/x264/gstx264enc.c:
9234           Fix build against the libx264 version that ships with debian stable.
9235
9236 2007-10-26  Julien MOUTTE  <julien@moutte.net>
9237
9238         * configure.ac:
9239         * gst/mpeg4videoparse/Makefile.am:
9240         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_drain),
9241         (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps),
9242         (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_cleanup),
9243         (gst_mpeg4vparse_change_state), (gst_mpeg4vparse_dispose),
9244         (gst_mpeg4vparse_base_init), (gst_mpeg4vparse_class_init),
9245         (gst_mpeg4vparse_init), (plugin_init):
9246         * gst/mpeg4videoparse/mpeg4videoparse.h: Add a simple MPEG4 ES
9247         parser.
9248
9249 2007-10-25  David Schleef  <ds@schleef.org>
9250
9251         * gst/multifile/Makefile.am:
9252         * gst/multifile/gstmultifilesink.c:
9253         * gst/multifile/gstmultifilesrc.c:
9254         * tests/check/Makefile.am:
9255         * tests/check/elements/multifile.c:
9256           Improve documentation, write some tests for multifilesrc/sink
9257           for upcoming ->good review.
9258
9259 2007-10-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9260
9261         * sys/dvb/gstdvbsrc.c:
9262         Actually use the code-rate-hp parameter for DVB-S.
9263         It turns out setting to AUTO does not always work (
9264         especially in diseq situations). Set by default to 
9265         FEC_AUTO.
9266
9267 2007-10-22  Julien MOUTTE  <julien@moutte.net>
9268
9269         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9270         (gst_flv_parse_tag_video), (gst_flv_parse_tag_type): Don't
9271         emit no-more-pads for single pad scenarios as the header
9272         is definitely not reliable. We emit them for 2 pads scenarios
9273         though to speed up media discovery.
9274
9275 2007-10-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9276
9277         * sys/dvb/dvbbasebin.c:
9278         Added proxy property of diseqc-source
9279
9280 2007-10-18  Sebastian Dröge  <slomo@circular-chaos.org>
9281
9282         * gst/equalizer/gstiirequalizer.c:
9283         (gst_iir_equalizer_band_set_property):
9284         Add a missing break.
9285
9286 2007-10-18  Sebastian Dröge  <slomo@circular-chaos.org>
9287
9288         * gst/equalizer/gstiirequalizer.c:
9289         (gst_iir_equalizer_band_set_property),
9290         (gst_iir_equalizer_band_get_property),
9291         (gst_iir_equalizer_band_class_init), (gst_iir_equalizer_band_init),
9292         (gst_iir_equalizer_band_get_type), (gst_iir_equalizer_class_init),
9293         (setup_filter), (gst_iir_equalizer_setup):
9294         * gst/equalizer/gstiirequalizer.h:
9295         Move bandwidth property to the separate bands and add float64 support.
9296
9297 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9298
9299         * ext/cdaudio/Makefile.am:
9300           Add another missing GST_LIBS.
9301
9302 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9303
9304         Patch by: Richard Hult <richard imendio com>
9305
9306         * gst/dvdspu/Makefile.am:
9307           Fix LIBS - we need to link against libgstreamer (fixes #487496).
9308
9309 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9310
9311         * sys/dvb/camapplication.c:
9312         * sys/dvb/camresourcemanager.c:
9313           Fix some warnings.
9314
9315 2007-10-16  Thijs Vermeir  <thijsvermeir@gmail.com>
9316
9317         * gst/librfb/rfbdecoder.c:
9318           Add the set encodings client message
9319
9320 2007-10-16  Thijs Vermeir  <thijsvermeir@gmail.com>
9321
9322         * gst/librfb/Makefile.am:
9323         * gst/librfb/rfb.h:
9324         * gst/librfb/rfbbytestream.c:
9325         * gst/librfb/rfbbytestream.h:
9326         * gst/librfb/rfbdecoder.c:
9327         * gst/librfb/rfbdecoder.h:
9328           Remove the rfbbytestream dead code
9329
9330 2007-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9331
9332         patch by: Alessandro Decina
9333
9334         * sys/dvb/Makefile.am:
9335         * sys/dvb/cam.c:
9336         * sys/dvb/cam.h:
9337         * sys/dvb/camapplication.c:
9338         * sys/dvb/camapplication.h:
9339         * sys/dvb/camapplicationinfo.c:
9340         * sys/dvb/camapplicationinfo.h:
9341         * sys/dvb/camconditionalaccess.c:
9342         * sys/dvb/camconditionalaccess.h:
9343         * sys/dvb/camdevice.c:
9344         * sys/dvb/camdevice.h:
9345         * sys/dvb/camresourcemanager.c:
9346         * sys/dvb/camresourcemanager.h:
9347         * sys/dvb/camsession.c:
9348         * sys/dvb/camsession.h:
9349         * sys/dvb/camswclient.c:
9350         * sys/dvb/camswclient.h:
9351         * sys/dvb/camtransport.c:
9352         * sys/dvb/camtransport.h:
9353         * sys/dvb/camutils.c:
9354         * sys/dvb/camutils.h:
9355         * sys/dvb/dvbbasebin.c:
9356         * sys/dvb/dvbbasebin.h:
9357         * sys/dvb/gstdvb.c:
9358         * sys/dvb/gstdvbsrc.c:
9359         * sys/dvb/gstdvbsrc.h:
9360         Integrate SoC work done by Alessandro for the Freevo project.
9361         Adds cam support to the dvb stack in GStreamer and a new
9362         element (actually a bin) called dvbbasebin that integrates
9363         dvbsrc and mpegtsparse to a) handle decryption and b) allow 
9364         acquiring multiple channels on same transponder without 
9365         knowing pid numbers.
9366
9367 2007-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9368
9369         patch by: Alessandro Decina
9370
9371         * gst/mpegtsparse/mpegtspacketizer.c:
9372         * gst/mpegtsparse/mpegtsparse.c:
9373         * gst/mpegtsparse/mpegtsparse.h:
9374         Add request pad for getting the full transport stream coming in.
9375
9376 2007-10-14  Sebastian Dröge  <slomo@circular-chaos.org>
9377
9378         * configure.ac:
9379           Update the highest allowed neon version from 0.26.99 to 0.27.99.
9380           No code changes are required to work with the newest neon version.
9381
9382 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
9383
9384         * configure.ac:
9385           Require core CVS.  This is implicit in the -base CVS
9386           requirement already, so we might just well spell it
9387           out.  Also, we do need at least 0.10.14 for
9388           gst_element_class_set_details_simple().  Make check
9389           for gmyth a bit more restrictive so things don't break
9390           if the next version changes API.
9391
9392         * ext/alsaspdif/alsaspdifsink.c:
9393           Work around alsa alloca macros triggering 'always evaluates to
9394           true' warnings with gcc-4.2 and fix compilation with gcc-4.2.
9395           Also don't leak the device string.
9396
9397         * ext/mpeg2enc/gstmpeg2enc.cc:
9398         * ext/soundtouch/gstpitch.cc:
9399         * gst/modplug/gstmodplug.cc:
9400           Fix compilation with g++4.2 and -Wall -Werror (also needs plugin
9401           define fix from core CVS). Fixes #462737.
9402
9403 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
9404
9405         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
9406
9407         * gst/rtpmanager/gstrtpbin.c: (create_stream),
9408         (gst_rtp_bin_class_init):
9409         Fix memleak. Fixes #484990.
9410
9411 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
9412
9413         * gst/librfb/rfbbuffer.c: (rfb_buffer_new_and_alloc):
9414         * gst/librfb/rfbbuffer.h:
9415         * gst/librfb/rfbdecoder.c: (rfb_socket_get_buffer):
9416         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_chain):
9417         * gst/nsf/nes6502.c: (nes6502_execute):
9418         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
9419         * gst/real/gstrealvideodec.c: (open_library):
9420         * gst/real/gstrealvideodec.h:
9421         * gst/rtpmanager/gstrtpsession.c: (create_recv_rtp_sink),
9422         (create_recv_rtcp_sink), (create_send_rtp_sink):
9423         Fix compiler warnings shown by Forte.
9424
9425 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
9426
9427         * gst/rtpmanager/gstrtpbin.c: (get_pt_map),
9428         (gst_rtp_bin_clear_pt_map), (gst_rtp_bin_class_init):
9429         Fix caps refcounting for payload maps.
9430         When clearing payload maps, also clear sessions and streams payload
9431         maps.
9432
9433         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps),
9434         (gst_rtp_pt_demux_clear_pt_map), (gst_rtp_pt_demux_chain),
9435         (find_pad_for_pt):
9436         Implement clearing the payload map.
9437
9438         * gst/rtpmanager/gstrtpsession.c:
9439         (gst_rtp_session_event_send_rtp_sink):
9440         Forward flush events instead of leaking them.
9441
9442         * gst/rtpmanager/gstrtpssrcdemux.c:
9443         (gst_rtp_ssrc_demux_rtcp_sink_event):
9444         Correctly refcount events before pushing them.
9445
9446 2007-10-08  Sebastian Dröge  <slomo@circular-chaos.org>
9447
9448         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
9449         Use GIO function to get a list of supported URI schemes instead of
9450         hard coding something.
9451
9452 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
9453
9454         * gst/rtpmanager/rtpsession.c: (rtp_session_next_timeout),
9455         When reconsidering RTCP timeouts, set the next timeout against the last
9456         report time instead of the current clock time so that we don't end up
9457         reconsidering forever.
9458
9459 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
9460
9461         * gst/rtpmanager/gstrtpjitterbuffer.c:
9462         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
9463         Only peek at the tail element instead of popping it off, which allows
9464         us to greatly simplify things when the tail element changes.
9465
9466         * gst/rtpmanager/gstrtpsession.c:
9467         (gst_rtp_session_event_recv_rtp_sink):
9468         * gst/rtpmanager/gstrtpssrcdemux.c:
9469         (gst_rtp_ssrc_demux_sink_event):
9470         Forward FLUSH events instead of leaking them.
9471
9472         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_reset_skew),
9473         (calculate_skew), (rtp_jitter_buffer_insert):
9474         * gst/rtpmanager/rtpjitterbuffer.h:
9475         Remove the tail-changed callback in favour of a simple boolean when we
9476         insert a buffer in the queue.
9477         Add method to peek the tail of the buffer.
9478
9479 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
9480
9481         Patch by: Gautier Portet <kassoulet at gmail dot com>
9482
9483         * gst/xingheader/gstxingmux.c:
9484         The size of the Xing header is actually 417 as it's rounded to the
9485         next smaller integer. Fixes #397759.
9486
9487         * gst/xingheader/gstxingmux.c: (xing_generate_header),
9488         (xing_push_header):
9489         Some random cleanup, add FIXMEs and TODOs and check if the newsegment
9490         event to the beginning was successful before pushing the header again.
9491
9492 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
9493
9494         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
9495
9496         * gst/mpegtsparse/mpegtspacketizer.c:
9497         (mpegts_packetizer_stream_new):
9498         Don't skip PAT with version number 0. Fixes #483400.
9499         * gst/mpegtsparse/mpegtsparse.c: (mpegts_parse_apply_pat):
9500         Make all values above 0 mark a referenced program as they can be
9501         incremented and only 1 had marked a referenced program before, causing
9502         actually referenced programs to be unreferenced.
9503
9504 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9505
9506         * gst/sdp/gstsdpdemux.h:
9507         Change signature of pt to fix compilation on some platforms.
9508
9509 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9510
9511         * gst/rtpmanager/gstrtpjitterbuffer.c:
9512         (gst_rtp_jitter_buffer_flush_start),
9513         (gst_rtp_jitter_buffer_flush_stop),
9514         (gst_rtp_jitter_buffer_change_state), (apply_offset),
9515         (gst_rtp_jitter_buffer_loop):
9516         Remove some old unused variables.
9517         Don't add the latency to the skew corrected timestamp, latency is only
9518         used to sync against the clock.
9519         Improve debugging.
9520
9521         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9522         (rtp_jitter_buffer_reset_skew), (calculate_skew):
9523         * gst/rtpmanager/rtpjitterbuffer.h:
9524         Handle case where server timestamp goes backwards or wildly jumps by
9525         temporarily pausing the skew correction.
9526         Improve debugging.
9527
9528 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9529
9530         * gst/sdp/Makefile.am:
9531         Forgot to commit makefile.
9532
9533 2007-10-02  Sebastian Dröge  <slomo@circular-chaos.org>
9534
9535         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
9536         Update to API changes in GIO.
9537
9538 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
9539
9540         * gst/sdp/gstsdpdemux.c: (gst_sdp_demux_media_to_caps):
9541         Use new function in -base to get the default clock-rate.
9542
9543 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
9544
9545         * configure.ac:
9546         * gst/sdp/gstsdpdemux.c: (_do_init), (gst_sdp_demux_base_init),
9547         (gst_sdp_demux_class_init), (gst_sdp_demux_init),
9548         (gst_sdp_demux_finalize), (gst_sdp_demux_set_property),
9549         (gst_sdp_demux_get_property), (find_stream_by_id),
9550         (find_stream_by_pt), (find_stream_by_udpsrc), (find_stream),
9551         (gst_sdp_demux_stream_free), (gst_sdp_demux_create_stream),
9552         (gst_sdp_demux_cleanup), (get_default_rate_for_pt),
9553         (gst_sdp_demux_parse_rtpmap), (gst_sdp_demux_media_to_caps),
9554         (new_session_pad), (request_pt_map), (gst_sdp_demux_do_stream_eos),
9555         (on_bye_ssrc), (on_timeout), (gst_sdp_demux_configure_manager),
9556         (gst_sdp_demux_stream_configure_udp),
9557         (gst_sdp_demux_stream_configure_udp_sink),
9558         (gst_sdp_demux_combine_flows), (gst_sdp_demux_stream_push_event),
9559         (gst_sdp_demux_handle_message), (gst_sdp_demux_start),
9560         (gst_sdp_demux_sink_event), (gst_sdp_demux_sink_chain),
9561         (gst_sdp_demux_change_state):
9562         * gst/sdp/gstsdpdemux.h:
9563         * gst/sdp/gstsdpelem.c: (plugin_init):
9564         Added SDP demuxer element. Fixes #426657.
9565
9566 2007-10-01  Sebastian Dröge  <slomo@circular-chaos.org>
9567
9568         Patch by: mutex at runbox dot com
9569
9570         * gst/mpegtsparse/mpegtspacketizer.c:
9571         (mpegts_packetizer_parse_adaptation_field_control):
9572         * gst/mpegtsparse/mpegtsparse.c: (mpegts_parse_base_init),
9573         (mpegts_parse_init), (mpegts_parse_push):
9574         * gst/mpegtsparse/mpegtsparse.h:
9575         Remove useless src pad that only results in not linked errors,
9576         fix a broken pointer dereference and make MAX_CONTINUITY constant
9577         conform to the standard to stop outputting corrupted data.
9578         Fixes #481276, #481279.
9579
9580 2007-09-29  Tim-Philipp Müller  <tim at centricular dot net>
9581
9582         * ext/mythtv/gstmythtvsrc.c:
9583           Re-apply docs patch from #468039; fix tab.
9584
9585         * gst/mpegtsparse/.cvsignore:
9586           Ignore marshaller files generated at build time.
9587
9588 2007-09-29  Sebastian Dröge  <slomo@circular-chaos.org>
9589
9590         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
9591         (gst_gio_sink_set_property), (gst_gio_sink_render):
9592         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
9593         (gst_gio_src_set_property):
9594         Some minor cleanup and allow setting the location only when the
9595         element is not playing or paused.
9596
9597 2007-09-29  Sebastian Dröge  <slomo@circular-chaos.org>
9598
9599         * configure.ac:
9600         Update gio's pkg-config file name as currently in SVN.
9601
9602         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_location):
9603         Remove special casing for a NULL query string. g_strjoin won't add
9604         the separator if there's only one string.
9605
9606 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9607
9608         * gst/rtpmanager/gstrtpbin.c: (free_client):
9609         Fix crasher in dispose.
9610
9611         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
9612         Handle cases where input buffers have no timestamps so that no clock
9613         skew can be calculated, in this case interpolate timestamps based on
9614         rtp timestamp and assume a 0 clock skew.
9615
9616 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9617
9618         * gst/rtpmanager/gstrtpjitterbuffer.c: (apply_latency),
9619         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_query):
9620         Remove jitter correction code, it's now in the lower level object.
9621         Use new -core method for doing a peer query.
9622
9623         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9624         (calculate_skew), (rtp_jitter_buffer_insert):
9625         * gst/rtpmanager/rtpjitterbuffer.h:
9626         Move jitter correction to the lowlevel jitterbuffer.
9627         Increase the max window size.
9628         When filling the window, already start estimating the skew using a
9629         parabolic weighting factor so that we have a much better startup
9630         behaviour that gets more accurate with the more samples we have.
9631         Increase the default weighting factor for the steady state to get
9632         smoother timestamps.
9633
9634 2007-09-28  Sebastian Dröge  <slomo@circular-chaos.org>
9635
9636         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_proxy),
9637         (gst_neonhttp_src_send_request_and_redirect):
9638         Now that we require libneon >= 0.26 remove the neon 0.25 backward
9639         compatibility stuff. Also fix the default location.
9640
9641 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9642
9643         * configure.ac:
9644         We require libneon >= 26 now for the query field in ne_uri.
9645
9646 2007-09-28  Sebastian Dröge  <slomo@circular-chaos.org>
9647
9648         Patch by: Wouter Cloetens <wouter@mind.be>
9649
9650         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_dispose),
9651         (gst_neonhttp_src_set_location),
9652         (gst_neonhttp_src_send_request_and_redirect):
9653         * ext/neon/gstneonhttpsrc.h:
9654         Don't discard GET parameters from URL if existing.
9655         Fixes #481200.
9656
9657 2007-09-27  Thijs Vermeir  <thijsvermeir@gmail.com>
9658
9659         * gst/librfb/gstrfbsrc.c:
9660         * gst/librfb/gstrfbsrc.h:
9661                 Added a property for incremental screen updates
9662
9663 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
9664
9665         * ext/xvid/gstxvidenc.c:
9666         * ext/xvid/gstxvidenc.h:
9667           Remove superfluous 'frame-encoded' signal (people can
9668           use an upstream identity's 'handoff' signal or a pad
9669           probe for this if they must know).
9670
9671 2007-09-27  Julien MOUTTE  <julien@moutte.net>
9672
9673         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9674         (gst_flv_parse_tag_video): I got it wrong again, audio rate 
9675         was not detected correctly in all cases.
9676
9677 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
9678
9679         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_dispose),
9680         (gst_rtp_bin_finalize):
9681         Fix cleanup crasher.
9682
9683         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9684         (calculate_skew):
9685         * gst/rtpmanager/rtpjitterbuffer.h:
9686         Dynamically adjust the skew calculation window so that we calculate it
9687         over a period of around 2 seconds.
9688
9689 2007-09-26  Thijs Vermeir  <thijsvermeir@gmail.com>
9690
9691         * gst/librfb/gstrfbsrc.c:
9692                 fix bug from generic/states.gdb
9693
9694 2007-09-26  Julien MOUTTE  <julien@moutte.net>
9695
9696         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9697         (gst_flv_parse_tag_video): codec_data is needed for every tag
9698         not just the first one. (Fix a stupid bug i introduced without
9699         testing)
9700
9701 2007-09-26  Julien MOUTTE  <julien@moutte.net>
9702
9703         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9704         (gst_flv_parse_tag_video): Fix bit masks operations to be
9705         sure we detect the codec_tags and sample rates correctly.
9706         Fix raw audio caps generation.
9707
9708 2007-09-24  Stefan Kost  <ensonic@users.sf.net>
9709
9710         * ext/audioresample/gstaudioresample.c:
9711         * ext/x264/gstx264enc.c:
9712         * gst/dvdspu/gstdvdspu.c:
9713         * gst/dvdspu/gstdvdspu.h:
9714         * gst/festival/gstfestival.c:
9715         * gst/h264parse/gsth264parse.c:
9716         * gst/mpegtsparse/mpegtspacketizer.c:
9717         * gst/mpegtsparse/mpegtsparse.c:
9718         * gst/multifile/gstmultifilesink.c:
9719         * gst/multifile/gstmultifilesrc.c:
9720         * gst/nuvdemux/gstnuvdemux.c:
9721         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
9722         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
9723         * sys/vcd/vcdsrc.c:
9724           Massive leak fixing, plus code cleanups.
9725
9726 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9727
9728         * po/LINGUAS:
9729           Added translations.
9730
9731 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9732
9733         translated by: Jakub Bogusz <qboosh@pld-linux.org>
9734
9735         * po/pl.po:
9736           Added Polish translation.
9737
9738 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9739
9740         translated by: Ilkka Tuohela <hile@iki.fi>
9741
9742         * po/fi.po:
9743           Added Finnish translation.
9744
9745 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9746
9747         translated by: Jorge González González <aloriel@gmail.com>
9748
9749         * po/es.po:
9750           Added Spanish translation.
9751
9752 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9753
9754         translated by: Alexander Shopov <ash@contact.bg>
9755
9756         * po/bg.po:
9757           Added Bulgarian translation.
9758
9759 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9760
9761         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
9762         Update hierarchy.
9763         * ext/gio/gstgiosink.h:
9764         * ext/gio/gstgiosrc.h:
9765         Mark private fields of the instance structs private.
9766
9767 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9768
9769         * docs/plugins/Makefile.am:
9770         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
9771         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
9772         * docs/plugins/gst-plugins-bad-plugins.args:
9773         * docs/plugins/gst-plugins-bad-plugins.signals:
9774         * docs/plugins/inspect/plugin-bz2.xml:
9775         * docs/plugins/inspect/plugin-cdxaparse.xml:
9776         * docs/plugins/inspect/plugin-dfbvideosink.xml:
9777         * docs/plugins/inspect/plugin-dtsdec.xml:
9778         * docs/plugins/inspect/plugin-equalizer.xml:
9779         * docs/plugins/inspect/plugin-faac.xml:
9780         * docs/plugins/inspect/plugin-faad.xml:
9781         * docs/plugins/inspect/plugin-filter.xml:
9782         * docs/plugins/inspect/plugin-freeze.xml:
9783         * docs/plugins/inspect/plugin-gio.xml:
9784         * docs/plugins/inspect/plugin-gsm.xml:
9785         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
9786         * docs/plugins/inspect/plugin-h264parse.xml:
9787         * docs/plugins/inspect/plugin-modplug.xml:
9788         * docs/plugins/inspect/plugin-mpeg2enc.xml:
9789         * docs/plugins/inspect/plugin-musepack.xml:
9790         * docs/plugins/inspect/plugin-musicbrainz.xml:
9791         * docs/plugins/inspect/plugin-nsfdec.xml:
9792         * docs/plugins/inspect/plugin-replaygain.xml:
9793         * docs/plugins/inspect/plugin-soundtouch.xml:
9794         * docs/plugins/inspect/plugin-spcdec.xml:
9795         * docs/plugins/inspect/plugin-spectrum.xml:
9796         * docs/plugins/inspect/plugin-speed.xml:
9797         * docs/plugins/inspect/plugin-tta.xml:
9798         * docs/plugins/inspect/plugin-videosignal.xml:
9799         * docs/plugins/inspect/plugin-xingheader.xml:
9800         * docs/plugins/inspect/plugin-xvid.xml:
9801         Add the GIO plugin to the docs and do a make update
9802         while doing that.
9803
9804         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
9805         Fix a small memleak.
9806
9807 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9808
9809         Patch by: René Stadler <mail at renestadler dot de>
9810
9811         * configure.ac:
9812         * ext/Makefile.am:
9813         * ext/gio/Makefile.am:
9814         * ext/gio/gstgio.c: (gst_gio_error), (gst_gio_seek),
9815         (gst_gio_get_supported_protocols),
9816         (gst_gio_uri_handler_get_type_sink),
9817         (gst_gio_uri_handler_get_type_src),
9818         (gst_gio_uri_handler_get_protocols), (gst_gio_uri_handler_get_uri),
9819         (gst_gio_uri_handler_set_uri), (gst_gio_uri_handler_init),
9820         (gst_gio_uri_handler_do_init), (plugin_init):
9821         * ext/gio/gstgio.h:
9822         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
9823         (gst_gio_sink_class_init), (gst_gio_sink_init),
9824         (gst_gio_sink_finalize), (gst_gio_sink_set_property),
9825         (gst_gio_sink_get_property), (gst_gio_sink_start),
9826         (gst_gio_sink_stop), (gst_gio_sink_unlock),
9827         (gst_gio_sink_unlock_stop), (gst_gio_sink_event),
9828         (gst_gio_sink_render), (gst_gio_sink_query):
9829         * ext/gio/gstgiosink.h:
9830         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
9831         (gst_gio_src_class_init), (gst_gio_src_init),
9832         (gst_gio_src_finalize), (gst_gio_src_set_property),
9833         (gst_gio_src_get_property), (gst_gio_src_start),
9834         (gst_gio_src_stop), (gst_gio_src_get_size),
9835         (gst_gio_src_is_seekable), (gst_gio_src_unlock),
9836         (gst_gio_src_unlock_stop), (gst_gio_src_check_get_range),
9837         (gst_gio_src_create):
9838         * ext/gio/gstgiosrc.h:
9839         Add a GIO/GVFS plugin with source and sink elements. This will
9840         only be enabled when --enable-experimental is given to configure
9841         for now as the GIO API is not stable yet. Fixes #476916.
9842
9843 2007-09-21  Thijs Vermeir  <thijsvermeir@gmail.com>
9844
9845         * gst/librfb/gstrfbsrc.c:
9846         * gst/librfb/rfbdecoder.c:
9847         * gst/librfb/rfbdecoder.h:
9848                 Added offset-x, offset-y, width and height property
9849                 for selecting a region from the screen
9850
9851 2007-09-21  Thijs Vermeir  <thijsvermeir@gmail.com>
9852
9853         * gst/librfb/gstrfbsrc.c:
9854                 Minimum raw encoding is working now
9855         * gst/librfb/rfbdecoder.c:
9856                 fix address while reading from stream
9857
9858 2007-09-20  Thijs Vermeir  <thijsvermeir@gmail.com>
9859
9860         * gst/librfb/gstrfbsrc.c:
9861                 raw encoding is working, but it looks like the 
9862                 ffmpegcolorspace plugin can't handle high resolutions
9863
9864 2007-09-20  Thijs Vermeir  <thijsvermeir@gmail.com>
9865
9866         * gst/librfb/gstrfbsrc.c:
9867                 bpp, depth and endianness are now set from the
9868                 stream.
9869
9870 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9871
9872         * examples/app/appsrc_ex.c: (main):
9873         Fix compilation after changing the name of a method.
9874
9875 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
9876
9877         * ext/alsaspdif/alsaspdifsink.c:
9878         * ext/timidity/gsttimidity.c:
9879         * ext/timidity/gstwildmidi.c:
9880         * gst/mpegvideoparse/mpegvideoparse.c:
9881           Fix memory leaks. More to come.
9882
9883         * tests/check/Makefile.am:
9884         * tests/check/generic/states.c:
9885           Improved state change unit test.        
9886
9887 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9888
9889         * gst/rtpmanager/gstrtpbin.c: (on_ssrc_active), (create_session),
9890         (gst_rtp_bin_class_init):
9891         * gst/rtpmanager/gstrtpbin.h:
9892         * gst/rtpmanager/gstrtpsession.c: (on_ssrc_active),
9893         (gst_rtp_session_class_init), (gst_rtp_session_init),
9894         (gst_rtp_session_event_send_rtp_sink):
9895         * gst/rtpmanager/gstrtpsession.h:
9896         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
9897         (on_ssrc_active), (rtp_session_process_rb):
9898         * gst/rtpmanager/rtpsession.h:
9899         Add notification of active SSRCs to various RTP elements. Fixes #478566.
9900
9901 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9902
9903         * gst-libs/gst/app/gstappsink.c: (gst_app_marshal_OBJECT__VOID),
9904         (gst_app_sink_class_init), (gst_app_sink_init),
9905         (gst_app_sink_dispose), (gst_app_sink_finalize),
9906         (gst_app_sink_set_property), (gst_app_sink_get_property),
9907         (gst_app_sink_flush_unlocked), (gst_app_sink_start),
9908         (gst_app_sink_event), (gst_app_sink_getcaps),
9909         (gst_app_sink_set_caps), (gst_app_sink_get_caps),
9910         (gst_app_sink_is_eos), (gst_app_sink_pull_preroll),
9911         (gst_app_sink_pull_buffer):
9912         * gst-libs/gst/app/gstappsink.h:
9913         Add properties, signals and actions to access the element even without
9914         linking to the library.
9915         Fix some method names and signatures.
9916
9917 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
9918
9919         Patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
9920
9921         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst),
9922         (gst_faad_srcgetcaps), (gst_faad_update_caps):
9923         Don't set channel positions on regular mono and stereo cases.
9924         Fixes #476370.
9925
9926 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9927
9928         * gst/librfb/gstrfbsrc.c:
9929         * gst/librfb/rfbdecoder.c:
9930         * gst/librfb/rfbdecoder.h:
9931                 It is now possible to connect to a vncserver.
9932                 there are still some issues with the ouput of 
9933                 the screen. Looks like some lines are confused
9934
9935 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
9936
9937         * docs/plugins/.cvsignore:
9938         * tests/check/.cvsignore:
9939           Ignore registries in any format.
9940
9941 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
9942
9943         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
9944         (open_library), (gst_real_video_dec_init),
9945         (gst_real_video_dec_set_property),
9946         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
9947         * gst/real/gstrealvideodec.h:
9948         Don't generate an error for occasional decoding errors.
9949         Add max-errors property.
9950         Error out when we receive max-errors in a row. Fixes #478159.
9951
9952 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9953
9954         * gst/librfb/gstrfbsrc.c: 
9955                 Add password property (write only)
9956         * gst/librfb/rfbdecoder.c: 
9957                 Read the reason on failure
9958                 Use the password property for authentication
9959         * gst/librfb/rfbdecoder.h:
9960                 Add defines for version checking
9961
9962 2007-09-19  Sebastian Dröge  <slomo@circular-chaos.org>
9963
9964         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_destroy),
9965         (gst_dfbsurface_class_init):
9966         When finalizing GstDfbSurface, a subclass of GstBuffer, correctly
9967         chain up to the parent class to free everything, including caps.
9968
9969 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9970
9971         * gst/librfb/Makefile.am:
9972         * gst/librfb/d3des.c:
9973         * gst/librfb/d3des.h:
9974         * gst/librfb/rfbdecoder.c:
9975         * gst/librfb/vncauth.c:
9976         * gst/librfb/vncauth.h:
9977         VNC Authentication should be working now
9978         temperaly with fake password 'testtest'
9979
9980 2007-09-18  Thijs Vermeir  <thijsvermeir@gmail.com>
9981
9982         * gst/librfb/rfbdecoder.c:
9983         * gst/librfb/rfbdecoder.h:
9984         Added some documentation about security handling
9985         start implementing security handling for rfb 3.3
9986
9987 2007-09-18  Stefan Kost  <ensonic@users.sf.net>
9988
9989         * gst/spectrum/demo-audiotest.c:
9990         * gst/spectrum/demo-osssrc.c:
9991           Handling window resize.
9992
9993 2007-09-18  Stefan Kost  <ensonic@users.sf.net>
9994
9995         * ChangeLog:
9996           Add missing newline.
9997
9998         * gst/librfb/rfbdecoder.c:
9999           Fix the build (missing stdlib.h).
10000
10001         * gst/spectrum/gstspectrum.c:
10002         * gst/spectrum/gstspectrum.h:
10003           Use basetransform segment so that it is correctly managed on flushes
10004           and start/stop. Report message timestamp as stream time, which is what
10005           an application can understand. (Yes these are adapted from wim recent
10006           level element changes)
10007
10008 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10009
10010         * gst/rtpmanager/gstrtpbin.c: (new_ssrc_pad_found):
10011         Link to the right pads regardless of which one was created first in the
10012         ssrc demuxer.
10013
10014         * gst/rtpmanager/gstrtpjitterbuffer.c:
10015         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
10016         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
10017         (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_send_rtp):
10018         * gst/rtpmanager/rtpsource.c: (calculate_jitter):
10019         Improve debugging.
10020
10021         * gst/rtpmanager/gstrtpssrcdemux.c: (create_demux_pad_for_ssrc),
10022         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_finalize),
10023         (gst_rtp_ssrc_demux_sink_event),
10024         (gst_rtp_ssrc_demux_rtcp_sink_event), (gst_rtp_ssrc_demux_chain),
10025         (gst_rtp_ssrc_demux_rtcp_chain),
10026         (gst_rtp_ssrc_demux_internal_links):
10027         * gst/rtpmanager/gstrtpssrcdemux.h:
10028         Fix race in creating the RTP and RTCP pads when a new SSRC is detected.
10029
10030 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10031
10032         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_set_property),
10033         (gst_rtp_bin_get_property):
10034         Use lock to protect variable.
10035
10036         * gst/rtpmanager/gstrtpjitterbuffer.c:
10037         (gst_rtp_jitter_buffer_class_init),
10038         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_chain),
10039         (convert_rtptime_to_gsttime), (gst_rtp_jitter_buffer_loop):
10040         Reconstruct GST timestamp from RTP timestamps based on measured clock
10041         skew and sync offset.
10042
10043         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
10044         (rtp_jitter_buffer_set_tail_changed),
10045         (rtp_jitter_buffer_set_clock_rate),
10046         (rtp_jitter_buffer_get_clock_rate), (calculate_skew),
10047         (rtp_jitter_buffer_insert), (rtp_jitter_buffer_peek):
10048         * gst/rtpmanager/rtpjitterbuffer.h:
10049         Measure clock skew.
10050         Add callback to be notfied when a new packet was inserted at the tail.
10051
10052         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10053         (calculate_jitter), (rtp_source_send_rtp):
10054         * gst/rtpmanager/rtpsource.h:
10055         Remove clock skew detection, it's move to the jitterbuffer now.
10056
10057 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10058
10059         Patch by: Daniel Charles <dcharles at ti dot com>
10060
10061         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_bandmode_get_type),
10062         (gst_amrwbenc_set_property), (gst_amrwbenc_get_property),
10063         (gst_amrwbenc_class_init), (gst_amrwbenc_chain):
10064         * ext/amrwb/gstamrwbenc.h:
10065         Add property to control bandmode. Fixes #477306.
10066
10067 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
10068
10069         * gst/rtpmanager/gstrtpbin.c: (create_session):
10070         Also set NTP base time on new sessions.
10071
10072         * gst/rtpmanager/gstrtpjitterbuffer.c:
10073         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_query),
10074         (gst_rtp_jitter_buffer_set_property),
10075         (gst_rtp_jitter_buffer_get_property):
10076         Use the right lock to protect our variables.
10077         Fix some comment.
10078
10079         * gst/rtpmanager/gstrtpsession.c:
10080         (gst_rtp_session_getcaps_send_rtp),
10081         (gst_rtp_session_chain_send_rtp), (create_send_rtp_sink):
10082         Implement getcaps on the sender sinkpad so that payloaders can negotiate
10083         the right SSRC.
10084
10085 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
10086
10087         * gst/rtpmanager/gstrtpbin.c: (create_session), (free_session),
10088         (get_client), (free_client), (gst_rtp_bin_associate),
10089         (free_stream), (gst_rtp_bin_class_init), (gst_rtp_bin_dispose),
10090         (gst_rtp_bin_finalize):
10091         * gst/rtpmanager/gstrtpjitterbuffer.c:
10092         (gst_rtp_jitter_buffer_class_init),
10093         (gst_rtp_jitter_buffer_finalize):
10094         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_release):
10095         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_finalize),
10096         (gst_rtp_session_set_property), (gst_rtp_session_chain_recv_rtp),
10097         (gst_rtp_session_chain_send_rtp):
10098         * gst/rtpmanager/gstrtpssrcdemux.c:
10099         (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_dispose):
10100         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
10101         * gst/rtpmanager/rtpsession.h:
10102         Various leak fixes.
10103
10104 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
10105
10106         * gst/rtpmanager/gstrtpbin.c: (calc_ntp_ns_base),
10107         (gst_rtp_bin_change_state), (new_payload_found), (create_send_rtp):
10108         Calculate and configure the NTP base time so that we can generate better
10109         NTP times in SR packets.
10110         Set caps on new ghostpad.
10111
10112         * gst/rtpmanager/gstrtpjitterbuffer.c:
10113         (gst_rtp_jitter_buffer_loop):
10114         Clean debug statement.
10115
10116         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10117         (gst_rtp_session_init), (gst_rtp_session_set_property),
10118         (gst_rtp_session_get_property), (get_current_ntp_ns_time),
10119         (rtcp_thread), (gst_rtp_session_event_recv_rtp_sink),
10120         (gst_rtp_session_internal_links), (gst_rtp_session_chain_recv_rtp),
10121         (gst_rtp_session_event_send_rtp_sink),
10122         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
10123         (create_send_rtp_sink):
10124         * gst/rtpmanager/gstrtpsession.h:
10125         Add ntp-ns-base property to convert running_time to NTP time.
10126         Handle NEWSEGMENT events on send and recv RTP pads so that we can
10127         calculate the running time and thus NTP time of the packets.
10128         Simplify getting the current NTP time using the pipeline clock.
10129         Implement internal links functions.
10130         Use the buffer timestamp to calculate the NTP time instead of the clock.
10131
10132         * gst/rtpmanager/gstrtpssrcdemux.c: (create_demux_pad_for_ssrc),
10133         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_sink_event),
10134         (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_rtcp_chain),
10135         (gst_rtp_ssrc_demux_internal_links),
10136         (gst_rtp_ssrc_demux_src_query):
10137         * gst/rtpmanager/gstrtpssrcdemux.h:
10138         Implement internal links function.
10139         Calculate the diff between different streams, this might be used later
10140         to get the inter stream latency.
10141
10142         * gst/rtpmanager/rtpsession.c: (rtp_session_send_rtp):
10143         Simple cleanup.
10144
10145         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10146         (calculate_jitter), (rtp_source_send_rtp), (rtp_source_get_new_sr):
10147         Make the clock skew window a little bigger.
10148         Apply the clock skew to all buffers, not just one with a new timestamp.
10149         Calculate and debug sender clock drift.
10150         Use extended last timestamp to interpolate for SR reports.
10151
10152 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
10153
10154         Patch by: Peter Kjellerstedt  <pkj at axis com>
10155
10156         * gst-libs/gst/app/gstappsink.c:
10157         * gst/flv/gstflvdemux.c:
10158         * gst/flv/gstflvparse.c:
10159         * gst/interleave/deinterleave.c:
10160         * gst/switch/gstswitch.c:
10161           Printf format fixes (#476128).
10162
10163 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
10164
10165         Patch by: Thomas Green  <tom78999 gmail com>
10166
10167         * ext/neon/gstneonhttpsrc.c:
10168           With libneon 2.6, we need to set the NE_SESSFLAG_ICYPROTO
10169           flag if we want ICY streams to be handled too, otherwise
10170           libneon will error out with a 'can't parse reponse' error.
10171           Fixes #474696.
10172
10173         * tests/check/elements/neonhttpsrc.c:
10174           Unit test for the above by Yours Truly.
10175
10176 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
10177
10178         * configure.ac:
10179           Use AC_TRY_COMPILE instead of AC_TRY_RUN for the faad and the
10180           xvid configure checks, so they still work when cross-compiling.
10181           Fixes #452009.
10182
10183 2007-09-07  Sebastian Dröge  <slomo@circular-chaos.org>
10184
10185         * gst/spectrum/gstspectrum.c: (gst_spectrum_start),
10186         (gst_spectrum_transform_ip):
10187         Use the correct parameter order for the memset calls.
10188         Thanks to Christian Schaller for noticing.
10189
10190 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
10191
10192         * gst/mpegtsparse/mpegtsparse.c:
10193           Fix the build (missing stdlib.h).
10194
10195 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
10196
10197         * gst/spectrum/fix_fft.c:
10198         Remove fixed point FFT as it's not used anymore.
10199
10200 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
10201
10202         * configure.ac:
10203         * gst/spectrum/Makefile.am:
10204         * gst/spectrum/demo-audiotest.c: (draw_spectrum),
10205         (message_handler), (main):
10206         * gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
10207         * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
10208         (gst_spectrum_class_init), (gst_spectrum_init),
10209         (gst_spectrum_dispose), (gst_spectrum_set_property),
10210         (gst_spectrum_get_property), (gst_spectrum_start),
10211         (gst_spectrum_setup), (gst_spectrum_message_new),
10212         (gst_spectrum_transform_ip):
10213         * gst/spectrum/gstspectrum.h:
10214         Port GstSpectrum to GstAudioFilter and libgstfft, add support
10215         for int32, float and double, use floats for the message contents,
10216         average all FFTs done in one interval for better results, use
10217         a better windowing function, allow posting the phase in the message
10218         and actually do an FFT with the requested number of bands instead
10219         of interpolating.
10220
10221         * tests/check/elements/spectrum.c: (GST_START_TEST),
10222         (spectrum_suite):
10223         Improve the units tests by checking for a 11025Hz sine wave
10224         and add unit tests for all 4 supported sample types.
10225
10226 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
10227
10228         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
10229         (gst_real_video_dec_setcaps):
10230         Add some more debugging.
10231         Don't set LONG for width/height in caps.
10232         Set correct output buffer size when caps changed.
10233         The custom message sent to the decoder should not include the format and
10234         subformat. Fixes #471554.
10235
10236 2007-09-04  Tim-Philipp Müller  <tim at centricular dot net>
10237
10238         * gst/rtpmanager/gstrtpsession.c:
10239           Make compiler happy: fix compilation with -Wall -Werror
10240           (#473562).
10241
10242 2007-09-03  Johan Dahlin  <johan@gnome.org>
10243
10244         * gst/nsf/gstnsf.c: (gst_nsfdec_finalize), (start_play_tune):
10245         * gst/nsf/gstnsf.h:
10246         Add support for (very) basic tagging.
10247         
10248 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
10249
10250         * gst/rtpmanager/gstrtpbin-marshal.list:
10251         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_get_client),
10252         (gst_rtp_bin_associate), (gst_rtp_bin_sync_chain), (create_stream),
10253         (gst_rtp_bin_init), (caps_changed), (new_ssrc_pad_found),
10254         (create_recv_rtp), (create_recv_rtcp), (create_send_rtp):
10255         * gst/rtpmanager/gstrtpbin.h:
10256         Updated example pipelines in docs.
10257         Handle sync_rtcp buffers from the SSRC demuxer to perform lip-sync.
10258         Set the default latency correctly.
10259         Add some more points where we can get caps.
10260
10261         * gst/rtpmanager/gstrtpjitterbuffer.c:
10262         (gst_rtp_jitter_buffer_class_init),
10263         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_loop),
10264         (gst_rtp_jitter_buffer_query),
10265         (gst_rtp_jitter_buffer_set_property),
10266         (gst_rtp_jitter_buffer_get_property):
10267         Add ts-offset property to control timestamping.
10268
10269         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10270         (gst_rtp_session_init), (gst_rtp_session_set_property),
10271         (gst_rtp_session_get_property), (get_current_ntp_ns_time),
10272         (rtcp_thread), (stop_rtcp_thread), (gst_rtp_session_change_state),
10273         (gst_rtp_session_send_rtcp), (gst_rtp_session_sync_rtcp),
10274         (gst_rtp_session_cache_caps), (gst_rtp_session_clock_rate),
10275         (gst_rtp_session_sink_setcaps), (gst_rtp_session_chain_recv_rtp),
10276         (gst_rtp_session_event_send_rtp_sink),
10277         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
10278         (create_recv_rtcp_sink), (create_send_rtp_sink),
10279         (create_send_rtcp_src):
10280         Various cleanups.
10281         Feed rtpsession manager with NTP time based on pipeline clock when
10282         handling RTP packets and RTCP timeouts.
10283         Perform all RTCP with the system clock.
10284         Set caps on RTCP outgoing buffers.
10285
10286         * gst/rtpmanager/gstrtpssrcdemux.c: (find_demux_pad_for_ssrc),
10287         (create_demux_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init),
10288         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_sink_event),
10289         (gst_rtp_ssrc_demux_rtcp_sink_event), (gst_rtp_ssrc_demux_chain),
10290         (gst_rtp_ssrc_demux_rtcp_chain):
10291         * gst/rtpmanager/gstrtpssrcdemux.h:
10292         Also demux RTCP messages.
10293
10294         * gst/rtpmanager/rtpsession.c: (rtp_session_set_callbacks),
10295         (update_arrival_stats), (rtp_session_process_rtp),
10296         (rtp_session_process_rb), (rtp_session_process_sr),
10297         (rtp_session_process_rr), (rtp_session_process_rtcp),
10298         (rtp_session_send_rtp), (rtp_session_send_bye),
10299         (session_start_rtcp), (session_report_blocks), (session_cleanup),
10300         (rtp_session_on_timeout):
10301         * gst/rtpmanager/rtpsession.h:
10302         Remove the get_time callback, the GStreamer part will feed us with
10303         enough timing information.
10304         Split sync timing and RTCP timing information.
10305         Factor out common RB handling for SR and RR.
10306         Send out SR RTCP packets for lip-sync.
10307         Move SR and RR packet info generation to the source.
10308
10309         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10310         (rtp_source_update_caps), (get_clock_rate), (calculate_jitter),
10311         (rtp_source_process_rtp), (rtp_source_send_rtp),
10312         (rtp_source_process_sr), (rtp_source_process_rb),
10313         (rtp_source_get_new_sr), (rtp_source_get_new_rb),
10314         (rtp_source_get_last_sr):
10315         * gst/rtpmanager/rtpsource.h:
10316         * gst/rtpmanager/rtpstats.h:
10317         Use caps on incomming buffers to get timing information when they are
10318         there.
10319         Calculate clock scew of the receiver compared to the sender and adjust
10320         the rtp timestamps.
10321         Calculate the round trip in sources.
10322         Do SR and RR calculations in the source.
10323
10324 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
10325
10326         * configure.ac:
10327         updated gmyth version
10328
10329         * ext/mythtv/gstmythtvsrc.c:
10330         * ext/mythtv/gstmythtvsrc.h:
10331         Code rewrite
10332
10333 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
10334
10335         * gst/rtpmanager/gstrtpjitterbuffer.c:
10336         (gst_rtp_jitter_buffer_flush_stop),
10337         (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_loop):
10338         Use extended timestamp to release buffers from the jitterbuffer so that
10339         we can handle the rtp wraparound correctly.
10340
10341 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
10342
10343         * gst/rtpmanager/gstrtpjitterbuffer.c:
10344         (gst_rtp_jitter_buffer_loop):
10345         Improve Comments.
10346
10347         * gst/rtpmanager/gstrtpsession.c: (stop_rtcp_thread),
10348         (gst_rtp_session_change_state), (gst_rtp_session_parse_caps),
10349         (gst_rtp_session_clock_rate), (gst_rtp_session_sink_setcaps),
10350         (gst_rtp_session_event_send_rtp_sink), (create_recv_rtp_sink),
10351         (create_send_rtp_sink):
10352         Also parse the sink caps for clock-rate instead of only relying on the
10353         result of the signal.
10354
10355         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
10356         Make sure we fetch the clock rate for payloads we are sending out so
10357         that we can use it for SR reports.
10358
10359 2007-08-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10360
10361         * gst/switch/gstswitch.c (gst_switch_chain, gst_switch_set_property):
10362         If all information is known at time of setting start-time
10363         property, send new segments then.
10364
10365 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
10366
10367         * gst/rtpmanager/gstrtpsession.c: (stop_rtcp_thread),
10368         (gst_rtp_session_change_state),
10369         (gst_rtp_session_event_send_rtp_sink):
10370         * gst/rtpmanager/gstrtpsession.h:
10371         Distribute synchronisation parameters to the session manager so that it
10372         can generate correct SR packets for lip-sync.
10373
10374         * gst/rtpmanager/rtpsession.c: (rtp_session_set_base_time),
10375         (rtp_session_set_timestamp_sync), (session_start_rtcp):
10376         * gst/rtpmanager/rtpsession.h:
10377         Add methods for setting sync parameters.
10378         Set correct RTP time in SR packets using the sync params.
10379
10380         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
10381         * gst/rtpmanager/rtpsource.h:
10382         Record last RTP <-> GST timestamp so that we can use them to convert NTP
10383         to RTP timestamps in SR packets.
10384
10385 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
10386
10387         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map):
10388         Add some more advanced example pipelines.
10389
10390         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
10391         (stop_rtcp_thread), (gst_rtp_session_send_rtcp):
10392         Add some debug and FIXME.
10393         Release LOCK when performing session cleanup.
10394
10395         * gst/rtpmanager/rtpsession.c: (session_report_blocks):
10396         Add some debug.
10397
10398         * gst/rtpmanager/rtpsource.c: (calculate_jitter),
10399         (rtp_source_send_rtp):
10400         Make sure we always send RTP packets with the session SSRC.
10401
10402 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
10403
10404         * gst/dvdspu/gstdvdspu.c:
10405           Don't need this include (fixes compilation in uninstalled setup).
10406
10407 2007-08-27  Wim Taymans  <wim.taymans@gmail.com>
10408
10409         * gst/rtpmanager/gstrtpjitterbuffer.c:
10410         (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_loop),
10411         (gst_rtp_jitter_buffer_query):
10412         When synchronizing buffers, take peer latency into account.
10413         Don't try to add our latency to invalid peer max latency values.
10414
10415 2007-08-27  Julien MOUTTE  <julien@moutte.net>
10416
10417         * gst/flv/gstflvdemux.c: (gst_flv_demux_handle_seek_pull):
10418         Make sure we initialize the seek result.
10419
10420 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
10421
10422         * gst/dvdspu/Makefile.am:
10423         Commit the makefile too.
10424
10425 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
10426
10427         * configure.ac:
10428         * gst/dvdspu/.cvsignore:
10429         * gst/dvdspu/Notes.txt:
10430         * gst/dvdspu/gstdvdspu-render.c: (dvdspu_recalc_palette),
10431         (dvdspu_update_palettes), (dvdspu_clear_comp_buffers),
10432         (dvdspu_get_nibble), (dvdspu_get_rle_code), (dvdspu_draw_rle_run),
10433         (rle_end_x), (dvdspu_render_line), (dvdspu_update_chgcol),
10434         (dvdspu_render_line_with_chgcol), (dvdspu_blend_comp_buffers),
10435         (gstdvdspu_render_spu):
10436         * gst/dvdspu/gstdvdspu.c: (dvdspu_base_init), (dvdspu_class_init),
10437         (dvdspu_init), (dvdspu_clear), (dvdspu_dispose), (dvdspu_finalize),
10438         (dvdspu_flush_spu_info), (dvdspu_buffer_alloc), (dvdspu_src_event),
10439         (dvdspu_video_set_caps), (dvdspu_video_proxy_getcaps),
10440         (dvdspu_video_event), (dvdspu_video_chain),
10441         (dvspu_handle_vid_buffer), (dvdspu_redraw_still),
10442         (gstdvdspu_parse_chg_colcon), (dvdspu_exec_cmd_blk),
10443         (dvdspu_finish_spu_buf), (dvdspu_setup_cmd_blk),
10444         (dvdspu_handle_new_spu_buf), (dvdspu_handle_dvd_event),
10445         (dvdspu_dump_dcsq), (dvdspu_advance_spu),
10446         (dvdspu_check_still_updates), (dvdspu_subpic_chain),
10447         (dvdspu_subpic_event), (dvdspu_change_state),
10448         (gstdvdspu_plugin_init):
10449         * gst/dvdspu/gstdvdspu.h:
10450
10451         dvdspu element donated by Fluendo. It implements a DVD Sub-Picture 
10452         Unit, decoding and overlaying DVD subtitles and menu graphics.
10453
10454         * gst/mpeg2sub/.cvsignore:
10455         * gst/mpeg2sub/Makefile.am:
10456         * gst/mpeg2sub/Notes.txt:
10457         * gst/mpeg2sub/gstmpeg2subt.c:
10458         * gst/mpeg2sub/gstmpeg2subt.h:
10459         * gst/mpeg2sub/mpeg2subt.vcproj:
10460         Delete old and broken mpeg2subt element that was never ported from 0.8
10461
10462 2007-08-24  Julien MOUTTE  <julien@moutte.net>
10463
10464         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
10465         (gst_flv_demux_chain), (gst_flv_demux_pull_tag),
10466         (gst_flv_demux_find_offset), (gst_flv_demux_handle_seek_push),
10467         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_sink_event),
10468         (gst_flv_demux_src_event): Remove some useless ifdef.
10469
10470 2007-08-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10471
10472         * examples/switch/switcher.c (main):
10473         * gst/switch/gstswitch.c (gst_switch_chain):
10474         Make switch more reliable and also not lock up when
10475         sink pad caps change.
10476
10477 2007-08-24  Julien MOUTTE  <julien@moutte.net>
10478
10479         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
10480         (gst_flv_demux_cleanup), (gst_flv_demux_chain),
10481         (gst_flv_demux_pull_tag), (gst_flv_demux_find_offset),
10482         (gst_flv_demux_handle_seek_push), (gst_flv_demux_handle_seek_pull),
10483         (gst_flv_demux_sink_event), (gst_flv_demux_src_event): Implement
10484         seeking in push mode.
10485         * gst/flv/gstflvdemux.h:
10486
10487 2007-08-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10488
10489         * gst/mpegtsparse/flutspatinfo.c:
10490         * gst/mpegtsparse/flutspatinfo.h:
10491         * gst/mpegtsparse/flutspmtinfo.c:
10492         * gst/mpegtsparse/flutspmtinfo.h:
10493         Update licences to reflect LGPL-ness of these files also.
10494
10495 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10496
10497         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
10498         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
10499         * docs/plugins/gst-plugins-bad-plugins.interfaces:
10500         * docs/plugins/gst-plugins-bad-plugins.signals:
10501         * gst/rtpmanager/gstrtpbin.c:
10502         * gst/rtpmanager/gstrtpbin.h:
10503         * gst/rtpmanager/gstrtpclient.c:
10504         * gst/rtpmanager/gstrtpclient.h:
10505         * gst/rtpmanager/gstrtpjitterbuffer.c:
10506         * gst/rtpmanager/gstrtpjitterbuffer.h:
10507         * gst/rtpmanager/gstrtpptdemux.c:
10508         * gst/rtpmanager/gstrtpptdemux.h:
10509         * gst/rtpmanager/gstrtpsession.c:
10510         * gst/rtpmanager/gstrtpsession.h:
10511         * gst/rtpmanager/gstrtpssrcdemux.c:
10512         * gst/rtpmanager/gstrtpssrcdemux.h:
10513           Rename all GstRTPFoo structs to GstRtpFoo so that GST_BOILERPLATE
10514           registers a GType that's different than the GstRTPFoo types that
10515           farsight registers (luckily GType names are case sensitive). Should
10516           finally fix #430664.
10517
10518 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10519
10520         * configure.ac:
10521         * win32/common/config.h:
10522         * win32/common/config.h.in:
10523           Automatically generate win32/common/config.h via configure (this
10524           ensures the win32 version of config.h is up-to-date when a release
10525           is made, #433373). config.h.in file might need some more work.
10526
10527 2007-08-22  Tim-Philipp Müller  <tim at centricular dot net>
10528
10529         Patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
10530
10531         * configure.ac:
10532         * gst/festival/Makefile.am:
10533         * gst/festival/gstfestival.c:
10534           Port festival plugin to GStreamer-0.10 (#461377).
10535
10536 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
10537
10538         * ext/faad/gstfaad.c: (gst_faad_chain):
10539         Don't unref the buffer when it was clipped.
10540
10541 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
10542
10543         * ext/faad/gstfaad.c: (gst_faad_chain):
10544         Don't unref the buffer when it was clipped.
10545
10546 2007-08-22  Julien MOUTTE  <julien@moutte.net>
10547
10548         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
10549         (gst_flv_demux_pull_tag):
10550         * gst/flv/gstflvdemux.h:
10551         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
10552         (gst_flv_parse_tag_script), (gst_flv_parse_tag_audio),
10553         (gst_flv_parse_tag_video): Handle pixel aspect ratio through
10554         metadata tags like ASF does. Fluendo muxer supports this and 
10555         Flash players can support it as well this way.
10556
10557 2007-08-22  Julien MOUTTE  <julien@moutte.net>
10558
10559         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag):
10560         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
10561         (gst_flv_parse_tag_script), (gst_flv_parse_tag_audio),
10562         (gst_flv_parse_tag_video): Make sure we don't try filling up the
10563         index if no times object was parsed. Fix the way we decide to push
10564         tags and emit no-more-pads. Fix some printf typing in debugging.
10565
10566 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10567
10568         * gst/rtpmanager/gstrtpjitterbuffer.c:
10569         (gst_rtp_jitter_buffer_chain),
10570         (gst_rtp_jitter_buffer_set_property):
10571         When drop-on-latency is set but we have no latency configured, just push
10572         the buffer as fast as possible.
10573         Fix typo in comment.
10574
10575 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10576
10577         * gst/rtpmanager/rtpjitterbuffer.c:
10578         (rtp_jitter_buffer_get_ts_diff):
10579         * gst/rtpmanager/rtpjitterbuffer.h:
10580         Fix undefined overflow prone ts_diff handling.
10581
10582 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10583
10584         * gst/modplug/gstmodplug.cc:
10585         Fix compiler warning.
10586
10587 2007-08-21  Stefan Kost  <ensonic@users.sf.net>
10588
10589         * gst/modplug/gstmodplug.cc:
10590           Don't use NULL caps for srcpad is not yet connected.
10591
10592 2007-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10593
10594         * configure.ac:
10595         * gst/mpegtsparse/Makefile.am:
10596         * gst/mpegtsparse/flutspatinfo.c:
10597         * gst/mpegtsparse/flutspatinfo.h:
10598         * gst/mpegtsparse/flutspmtinfo.c:
10599         * gst/mpegtsparse/flutspmtinfo.h:
10600         * gst/mpegtsparse/flutspmtstreaminfo.c:
10601         * gst/mpegtsparse/flutspmtstreaminfo.h:
10602         * gst/mpegtsparse/mpegtspacketizer.c:
10603         * gst/mpegtsparse/mpegtspacketizer.h:
10604         * gst/mpegtsparse/mpegtsparse.c:
10605         * gst/mpegtsparse/mpegtsparse.h:
10606         * gst/mpegtsparse/mpegtsparsemarshal.list:
10607         Add mpeg transport stream parser written by:
10608         Alessandro Decina. Includes a couple of files from the
10609         Fluendo transport stream demuxer that Fluendo have 
10610         kindly allowed to be licenced under LGPL also.
10611
10612 2007-08-20  Tim-Philipp Müller  <tim at centricular dot net>
10613
10614         Patch by: Bastien Nocera  <hadess at hadess net>
10615
10616         * ext/mythtv/gstmythtvsrc.c:
10617           Add examples for live mythtv:// URIs to docs (#468039).
10618           Also convert some tabs into spaces.
10619
10620 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
10621
10622         * gst/filter/gstbpwsinc.c:
10623         * gst/filter/gstlpwsinc.c:
10624         Add small comparision with the chebyshev filters in the docs.
10625
10626 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
10627
10628         * tests/check/elements/bpwsinc.c: (GST_START_TEST),
10629         (bpwsinc_suite):
10630         * tests/check/elements/lpwsinc.c: (GST_START_TEST),
10631         (lpwsinc_suite):
10632         Also test everything in 32 bit float mode.
10633
10634 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
10635
10636         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10637         (bpwsinc_set_property), (bpwsinc_get_property):
10638         * gst/filter/gstbpwsinc.h:
10639         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10640         (gst_lpwsinc_init), (lpwsinc_build_kernel), (lpwsinc_set_property),
10641         (lpwsinc_get_property):
10642         * gst/filter/gstlpwsinc.h:
10643         * tests/check/elements/lpwsinc.c: (GST_START_TEST):
10644         Use generator macros for the process functions for the different
10645         sample types, add lower upper boundaries for the GObject properties
10646         so automatically generated UIs can use sliders and change frequency
10647         properties to floats to save a bit of memory, even ints would in
10648         theory be enough. Also rename frequency to cutoff for consistency
10649         reasons.
10650         * docs/plugins/gst-plugins-bad-plugins.args:
10651         * docs/plugins/gst-plugins-bad-plugins.signals:
10652         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
10653         Regenerated for the above changes.
10654
10655 2007-08-17  Stefan Kost  <ensonic@users.sf.net>
10656
10657         * ext/amrwb/gstamrwbparse.c:
10658           Don't leak the adapter.
10659
10660 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
10661
10662         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10663         (gst_bpwsinc_init), (process_32), (process_64),
10664         (bpwsinc_build_kernel), (bpwsinc_push_residue),
10665         (bpwsinc_transform), (bpwsinc_start), (bpwsinc_query),
10666         (bpwsinc_query_type), (bpwsinc_event), (bpwsinc_set_property):
10667         * gst/filter/gstbpwsinc.h:
10668         Implement latency query and only forward those samples downstream
10669         that actually contain the data we want, i.e. drop kernel_length/2
10670         in the beginning and append kernel_length/2 (created by convolving
10671         the filter kernel with zeroes) to the end.
10672
10673         * tests/check/elements/bpwsinc.c: (GST_START_TEST):
10674         Adjust the unit test for this slightly changed behaviour.
10675
10676         * gst/filter/gstlpwsinc.c: (lpwsinc_build_kernel):
10677         Reset residue length only when actually creating a residue.
10678
10679 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10680
10681         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init):
10682         Override the preroll vmethod instead of overriding the render method
10683         twice.
10684
10685 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10686
10687         * gst/rtpmanager/gstrtpjitterbuffer.c:
10688         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain),
10689         (gst_rtp_jitter_buffer_loop):
10690         Fix EOS handling.
10691         Convert some DEBUG into WARNINGs.
10692         Pause task when flushing.
10693
10694         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10695         (rtcp_thread), (gst_rtp_session_event_recv_rtcp_sink):
10696         Use system clock for RTCP session management timeouts.
10697
10698         * gst/rtpmanager/rtpsession.c: (on_new_ssrc), (on_ssrc_collision),
10699         (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout):
10700         Release the session lock when emiting signals.
10701
10702 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10703
10704         * ext/faad/gstfaad.c: (gst_faad_setcaps),
10705         (gst_faad_chanpos_to_gst):
10706         Add some debug info.
10707
10708 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
10709
10710         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10711         (gst_lpwsinc_init), (process_32), (process_64),
10712         (lpwsinc_build_kernel), (lpwsinc_push_residue),
10713         (lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
10714         (lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
10715         * gst/filter/gstlpwsinc.h:
10716         Implement latency query and only forward those samples downstream
10717         that actually contain the data we want, i.e. drop kernel_length/2
10718         in the beginning and append kernel_length/2 (created by convolving
10719         the filter kernel with zeroes) to the end.
10720         * tests/check/elements/lpwsinc.c: (GST_START_TEST):
10721         Adjust the unit test for this slightly changed behaviour.
10722
10723 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
10724
10725         * ext/ladspa/gstladspa.c:
10726           Don't leak like hell.
10727
10728 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
10729
10730         * tests/check/Makefile.am:
10731         * tests/check/generic/.cvsignore:
10732         * tests/check/generic/states.c:
10733           Add generic state-change test suite to help to fi leaks.
10734
10735 2007-08-15  Stefan Kost  <ensonic@users.sf.net>
10736
10737         * ext/timidity/gstwildmidi.c:
10738         * ext/timidity/gstwildmidi.h:
10739           Look harder for a config. Based on patch by Hans de Goede.
10740           Fixes #456912
10741
10742 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10743
10744         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_flush_unlocked):
10745         Don't use new API.
10746
10747 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10748
10749         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_base_init),
10750         (gst_app_sink_class_init), (gst_app_sink_dispose),
10751         (gst_app_sink_flush_unlocked), (gst_app_sink_start),
10752         (gst_app_sink_stop), (gst_app_sink_event), (gst_app_sink_preroll),
10753         (gst_app_sink_render), (gst_app_sink_get_caps),
10754         (gst_app_sink_set_caps), (gst_app_sink_end_of_stream),
10755         (gst_app_sink_pull_preroll), (gst_app_sink_pull_buffer):
10756         * gst-libs/gst/app/gstappsink.h:
10757         Make love to appsink.
10758         Make it support pulling of the preroll buffer.
10759         Add docs and debug statements.
10760         Fix some races wrt to EOS handling and stopping.
10761         Implement getcaps.
10762         Implement FLUSHING.
10763         API: gst_app_sink_pull_preroll()
10764
10765 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10766
10767         * gst/flv/gstflvdemux.c: (gst_flv_demux_set_index),
10768         (gst_flv_demux_get_index):
10769         Fix locking and refcounting on the index.
10770
10771 2007-08-14  Julien MOUTTE  <julien@moutte.net>
10772
10773         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
10774         (gst_flv_demux_adapter_flush), (gst_flv_demux_chain),
10775         (gst_flv_demux_pull_tag), (gst_flv_demux_do_seek),
10776         (gst_flv_demux_handle_seek), (gst_flv_demux_sink_event),
10777         (gst_flv_demux_src_event), (gst_flv_demux_query),
10778         (gst_flv_demux_change_state), (gst_flv_demux_set_index),
10779         (gst_flv_demux_get_index), (gst_flv_demux_dispose),
10780         (gst_flv_demux_class_init): First method for seeking in pull
10781         mode using the index built step by step or coming from metadata.
10782         * gst/flv/gstflvdemux.h:
10783         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
10784         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
10785         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Parse
10786         more metadata types and keyframes index.
10787
10788 2007-08-13  Sebastian Dröge  <slomo@circular-chaos.org>
10789
10790         * docs/plugins/Makefile.am:
10791         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
10792         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
10793         * docs/plugins/gst-plugins-bad-plugins.args:
10794         * docs/plugins/gst-plugins-bad-plugins.signals:
10795         * docs/plugins/inspect/plugin-bz2.xml:
10796         * docs/plugins/inspect/plugin-cdxaparse.xml:
10797         * docs/plugins/inspect/plugin-dtsdec.xml:
10798         * docs/plugins/inspect/plugin-faac.xml:
10799         * docs/plugins/inspect/plugin-faad.xml:
10800         * docs/plugins/inspect/plugin-filter.xml:
10801         * docs/plugins/inspect/plugin-freeze.xml:
10802         * docs/plugins/inspect/plugin-gsm.xml:
10803         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
10804         * docs/plugins/inspect/plugin-h264parse.xml:
10805         * docs/plugins/inspect/plugin-modplug.xml:
10806         * docs/plugins/inspect/plugin-mpeg2enc.xml:
10807         * docs/plugins/inspect/plugin-musepack.xml:
10808         * docs/plugins/inspect/plugin-musicbrainz.xml:
10809         * docs/plugins/inspect/plugin-nsfdec.xml:
10810         * docs/plugins/inspect/plugin-replaygain.xml:
10811         * docs/plugins/inspect/plugin-soundtouch.xml:
10812         * docs/plugins/inspect/plugin-spcdec.xml:
10813         * docs/plugins/inspect/plugin-spectrum.xml:
10814         * docs/plugins/inspect/plugin-speed.xml:
10815         * docs/plugins/inspect/plugin-tta.xml:
10816         * docs/plugins/inspect/plugin-videosignal.xml:
10817         * docs/plugins/inspect/plugin-xingheader.xml:
10818         * docs/plugins/inspect/plugin-xvid.xml:
10819         * gst/filter/gstbpwsinc.c:
10820         * gst/filter/gstbpwsinc.h:
10821         * gst/filter/gstlpwsinc.c:
10822         * gst/filter/gstlpwsinc.h:
10823         Add docs for lpwsinc and bpwsinc and integrate them
10824         into the build system. While doing that also update
10825         all other docs via make update in docs/plugins.
10826
10827 2007-08-13  Stefan Kost  <ensonic@users.sf.net>
10828
10829         * gst/rtpmanager/rtpjitterbuffer.c:
10830           Include stdlib.
10831
10832 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10833
10834         * tests/check/elements/bpwsinc.c: (GST_START_TEST):
10835         Make one test constraint a bit stricter.
10836
10837 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10838
10839         * tests/check/Makefile.am:
10840         * tests/check/elements/.cvsignore:
10841         * tests/check/elements/bpwsinc.c: (setup_bpwsinc),
10842         (cleanup_bpwsinc), (GST_START_TEST), (bpwsinc_suite), (main):
10843         Add unit tests for bpwsinc, testing fundamental functionality again.
10844
10845 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10846
10847         * tests/check/Makefile.am:
10848         * tests/check/elements/.cvsignore:
10849         * tests/check/elements/lpwsinc.c: (setup_lpwsinc),
10850         (cleanup_lpwsinc), (GST_START_TEST), (lpwsinc_suite), (main):
10851         Add unit tests for lpwsinc, testing fundamental functionality.
10852
10853 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10854
10855         * gst/filter/gstbpwsinc.c: (bpwsinc_build_kernel):
10856         * gst/filter/gstlpwsinc.c: (lpwsinc_build_kernel):
10857         Improve debugging a bit.
10858
10859 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10860
10861         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10862         (bpwsinc_start):
10863         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10864         (lpwsinc_start):
10865         Reset the residue in BaseTransform::start to get a clean residue
10866         on stream changes.
10867
10868 2007-08-11  Sebastian Dröge  <slomo@circular-chaos.org>
10869
10870         * gst/filter/gstbpwsinc.c: (process_32), (process_64):
10871         * gst/filter/gstlpwsinc.c: (process_32), (process_64):
10872         Fix processing with buffer sizes that are smaller than the filter
10873         kernel size.
10874
10875 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
10876
10877         * gst/rtpmanager/Makefile.am:
10878         * gst/rtpmanager/async_jitter_queue.c:
10879         * gst/rtpmanager/async_jitter_queue.h:
10880         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_class_init),
10881         (rtp_jitter_buffer_init), (rtp_jitter_buffer_finalize),
10882         (rtp_jitter_buffer_new), (compare_seqnum),
10883         (rtp_jitter_buffer_insert), (rtp_jitter_buffer_pop),
10884         (rtp_jitter_buffer_flush), (rtp_jitter_buffer_num_packets),
10885         (rtp_jitter_buffer_get_ts_diff):
10886         * gst/rtpmanager/rtpjitterbuffer.h:
10887         Remove complicated async queue and replace with more simple jitterbuffer
10888         code while also fixing some bugs.
10889
10890         * gst/rtpmanager/gstrtpbin-marshal.list:
10891         * gst/rtpmanager/gstrtpbin.c: (on_new_ssrc), (on_ssrc_collision),
10892         (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout),
10893         (create_session), (gst_rtp_bin_class_init), (create_recv_rtp),
10894         (create_send_rtp):
10895         * gst/rtpmanager/gstrtpbin.h:
10896         * gst/rtpmanager/gstrtpjitterbuffer.c:
10897         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_dispose),
10898         (gst_jitter_buffer_sink_parse_caps),
10899         (gst_rtp_jitter_buffer_flush_start),
10900         (gst_rtp_jitter_buffer_flush_stop),
10901         (gst_rtp_jitter_buffer_change_state),
10902         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain),
10903         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property):
10904         * gst/rtpmanager/gstrtpsession.c: (on_new_ssrc),
10905         (on_ssrc_collision), (on_ssrc_validated), (on_bye_ssrc),
10906         (on_bye_timeout), (on_timeout), (gst_rtp_session_class_init),
10907         (gst_rtp_session_init):
10908         * gst/rtpmanager/gstrtpsession.h:
10909         * gst/rtpmanager/rtpsession.c: (on_bye_ssrc), (session_cleanup):
10910         Use new jitterbuffer code.
10911         Expose some new signals in preparation for handling EOS.
10912
10913 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10914
10915         * gst/filter/gstbpwsinc.c: (bpwsinc_build_kernel):
10916         Fix a segfault with more than one channel and don't rebuild
10917         the kernel & residue with every buffer.
10918
10919 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10920
10921         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_mode_get_type),
10922         (gst_bpwsinc_window_get_type), (gst_bpwsinc_class_init),
10923         (gst_bpwsinc_init), (bpwsinc_build_kernel), (bpwsinc_set_property),
10924         (bpwsinc_get_property):
10925         * gst/filter/gstbpwsinc.h:
10926         Add support for a bandreject mode and allow specifying the window
10927         function that should be used.
10928         * gst/filter/gstlpwsinc.c:
10929         And another small formatting fix.
10930
10931 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10932
10933         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10934         (gst_bpwsinc_init), (process_32), (process_64),
10935         (bpwsinc_build_kernel), (bpwsinc_setup), (bpwsinc_get_unit_size),
10936         (bpwsinc_transform), (bpwsinc_set_property),
10937         (bpwsinc_get_property):
10938         * gst/filter/gstbpwsinc.h:
10939         Apply the same changes to the bandpass filter:
10940          - Support double input
10941          - Fix processing for input with >1 channels
10942          - Specify frequency in Hz
10943          - Specify actual filter kernel length
10944          - Use transform instead of transform_ip as we're working
10945            out of place anyway
10946          - Factor out filter kernel generation and update the filter
10947            kernel when the properties are set
10948         Fix bandpass filter kernel generation to actually generate
10949         a bandpass filter by creating a highpass instead of a second
10950         lowpass.
10951         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
10952         Small formatting fix.
10953
10954 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10955
10956         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10957         (gst_lpwsinc_init), (process_32), (process_64),
10958         (lpwsinc_build_kernel), (lpwsinc_set_property),
10959         (lpwsinc_get_property):
10960         * gst/filter/gstlpwsinc.h:
10961         Specify the actual filter length instead of a weird
10962         2N+1. Setting the property will round to the next odd number.
10963         Also remove now obsolete FIXMEs.
10964
10965 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10966
10967         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_window_get_type),
10968         (gst_lpwsinc_class_init), (gst_lpwsinc_init),
10969         (lpwsinc_build_kernel), (lpwsinc_set_property),
10970         (lpwsinc_get_property):
10971         * gst/filter/gstlpwsinc.h:
10972         Allow choosing between hamming and blackman window. The blackman
10973         window provides a better stopband attenuation but a bit slower
10974         rolloff.
10975
10976 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10977
10978         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_mode_get_type),
10979         (gst_lpwsinc_class_init), (process_32), (process_64),
10980         (lpwsinc_build_kernel), (lpwsinc_set_property),
10981         (lpwsinc_get_property):
10982         * gst/filter/gstlpwsinc.h:
10983         Add a highpass mode.
10984
10985 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10986
10987         * gst/filter/gstlpwsinc.c: (process_32), (process_64),
10988         (lpwsinc_build_kernel):
10989         Fix processing if the input has more than one channel.
10990
10991 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
10992
10993         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
10994         (gst_bpwsinc_init), (bpwsinc_setup), (bpwsinc_transform_ip),
10995         (bpwsinc_set_property), (bpwsinc_get_property):
10996         "this" is a C++ keyword, use "self" instead.
10997         Add TODOs and FIXMEs and remove two wrong FIXMEs.
10998         * gst/filter/gstlpwsinc.c:
10999         Add FIXMEs and a new TODO.
11000
11001 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
11002
11003         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
11004         (gst_lpwsinc_class_init), (gst_lpwsinc_init), (process_32),
11005         (process_64), (lpwsinc_build_kernel), (lpwsinc_setup),
11006         (lpwsinc_get_unit_size), (lpwsinc_transform),
11007         (lpwsinc_set_property), (lpwsinc_get_property):
11008         * gst/filter/gstlpwsinc.h:
11009         Add double support, replace "this" with "self" as the former
11010         is a C++ keyword.
11011         Implement the frequency property in Hz instead of fraction
11012         of sampling frequency.
11013         Remove some unecessary FIXMEs and add some TODOs, add some
11014         required locking and refactor the kernel generation into a
11015         separate function that is also called when the properties
11016         change now.
11017         And use BaseTransform::transform instead of transform_ip
11018         as the convolution is done out of place anyway. Should
11019         be done in place later.
11020
11021 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
11022
11023         * configure.ac:
11024         * gst/stereo/Makefile.am:
11025         * gst/stereo/gststereo.c: (gst_stereo_base_init),
11026         (gst_stereo_class_init), (gst_stereo_init),
11027         (gst_stereo_transform_ip), (gst_stereo_set_property),
11028         (gst_stereo_get_property):
11029         * gst/stereo/gststereo.h:
11030         Port the stereo element to GStreamer 0.10.
11031
11032 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11033
11034         submitted by: Raphael Higino <phhigino@gmail.com>
11035
11036         * po/LINGUAS:
11037         * po/pt_BR.po:
11038           Added Portuguese (Brazilian) translation.
11039
11040 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11041
11042         * po/uk.po:
11043         * po/vi.po:
11044           Updated translations.
11045
11046 2007-08-08  Sebastian Dröge  <slomo@circular-chaos.org>
11047
11048         * gst/filter/Makefile.am:
11049         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
11050         (gst_bpwsinc_base_init), (gst_bpwsinc_class_init),
11051         (gst_bpwsinc_init), (bpwsinc_setup):
11052         * gst/filter/gstbpwsinc.h:
11053         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
11054         (gst_lpwsinc_base_init), (gst_lpwsinc_class_init),
11055         (gst_lpwsinc_init), (lpwsinc_setup):
11056         * gst/filter/gstlpwsinc.h:
11057         Use GstAudioFilter as base class and don't leak the memory
11058         of the filter kernel and residue.
11059
11060 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
11061
11062         Patch by: Josep Torra Valles <josep@fluendo.com>
11063
11064         * docs/plugins/gst-plugins-bad-plugins.args:
11065         * ext/libmms/gstmms.c: (gst_mms_class_init), (gst_mms_init),
11066         (gst_mms_start), (gst_mms_set_property), (gst_mms_get_property):
11067         * ext/libmms/gstmms.h:
11068         Add connection speed property to libmms. Fixes #464678.
11069
11070 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
11071
11072         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
11073         (gst_real_video_dec_activate_push), (open_library),
11074         (gst_real_video_dec_init), (gst_real_video_dec_finalize):
11075         * gst/real/gstrealvideodec.h:
11076         Remove some old unused vars.
11077
11078 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
11079
11080         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
11081         Small cleanups.
11082
11083         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
11084         (open_library):
11085         Remove fragment and timestamp correction code from the decoder to make
11086         the caps and buffer contents compatible with matroska/ffdec_rvx0/...
11087
11088 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
11089
11090         * po/POTFILES.skip:
11091           Add POTFILES.skip with list of source files that aren't disted at the
11092           moment but contain translatable strings. Should hopefully pacify
11093           broken tools and make it clearer that these files are left out
11094           intentionally (#461601 and others).
11095
11096 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
11097
11098         Patch by: Ian Munro  <imunro at netspace net au>
11099
11100         * gst/bayer/gstbayer2rgb.c:
11101           Include our own "_stdint.h" instead of <stdint.h> (which may not
11102           be available).
11103
11104         * gst/speed/gstspeed.h:
11105           Native HP-UX compiler dosn't seem to like enum typedefs before the
11106           actual enum was defined.
11107
11108         * gst/vmnc/vmncdec.c:
11109           Fix wrong usage of GST_ELEMENT_ERROR macro (#461373).
11110
11111 2007-07-26  Edward Hervey  <bilboed@bilboed.com>
11112
11113         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
11114         Use the proper context variable when setting the password !
11115         LOG => WARNING for errors.
11116         Give proper path when opening the codec (needs a '/' at the end).
11117
11118 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
11119
11120         * gst/real/Makefile.am:
11121           And dist the new header file too.
11122
11123 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
11124
11125         * gst/real/gstreal.h:
11126         Add missing header file.
11127
11128 2007-07-25  Julien MOUTTE  <julien@moutte.net>
11129
11130         (gst_flv_demux_chain), (gst_flv_demux_pull_tag),
11131         (gst_flv_demux_change_state), (gst_flv_demux_dispose),
11132         (gst_flv_demux_init):
11133         * gst/flv/gstflvdemux.h:
11134         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
11135         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
11136         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
11137         (gst_flv_parse_header):
11138         * gst/flv/gstflvparse.h: Handle not linked pads, try to make it
11139         reusable, more safety checks.
11140
11141 2007-07-25  Stefan Kost  <ensonic@users.sf.net>
11142
11143         * ext/timidity/gsttimidity.c: (gst_timidity_init),
11144         (gst_timidity_change_state), (plugin_init):
11145         * ext/timidity/gsttimidity.h:
11146           Don't initialize timidity in plugin_init for similar reason as below.
11147
11148 2007-07-24  Stefan Kost  <ensonic@users.sf.net>
11149
11150         * ext/timidity/gstwildmidi.c: (wildmidi_open_config),
11151         (gst_wildmidi_init), (gst_wildmidi_change_state), (plugin_init):
11152         * ext/timidity/gstwildmidi.h:
11153           Don't initialize wildmidi in plugin_init as it also setups audio
11154           filters which is slow.
11155
11156 2007-07-24  Hans de Goede  <j.w.r.degoede@hhs.nl>
11157
11158         reviewed by: Edward Hervey  <bilboed@bilboed.com>
11159
11160         * gst/real/gstreal.c: (plugin_init):
11161         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
11162         (gst_real_audio_dec_finalize), (gst_real_audio_dec_set_property),
11163         (gst_real_audio_dec_get_property), (gst_real_audio_dec_class_init):
11164         * gst/real/gstrealvideodec.c: (open_library),
11165         (gst_real_video_dec_finalize), (gst_real_video_dec_set_property),
11166         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
11167         * gst/real/gstrealvideodec.h:
11168         Improved search algorithm for location of real .so files.
11169         Fixes #393461
11170
11171 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
11172
11173         * configure.ac:
11174         * ext/faad/gstfaad.c: (gst_faad_chain), (gst_faad_change_state):
11175         Use the new buffer clipping function from gstaudio here and
11176         require gst-plugins-base CVS.
11177
11178 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
11179
11180         * configure.ac:
11181           Sync liboil check with plugins-base.
11182
11183 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
11184
11185         * gst/equalizer/gstiirequalizer.c:
11186         (gst_iir_equalizer_band_set_property),
11187         (gst_iir_equalizer_child_proxy_get_child_by_index),
11188         (gst_iir_equalizer_child_proxy_get_children_count),
11189         (gst_iir_equalizer_child_proxy_interface_init),
11190         (gst_iir_equalizer_class_init), (arg_to_scale), (setup_filter),
11191         (gst_iir_equalizer_compute_frequencies):
11192         * gst/equalizer/gstiirequalizer10bands.c:
11193         (gst_iir_equalizer_10bands_class_init):
11194         * gst/equalizer/gstiirequalizer3bands.c:
11195         (gst_iir_equalizer_3bands_class_init):
11196         * gst/equalizer/gstiirequalizernbands.c:
11197           Better algorith for the center frequencies. Subtract band filters from
11198           input for negative gains. Rework the gain mapping.
11199
11200 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
11201
11202         * ext/dirac/Makefile.am:
11203           Also include stdlib here.
11204
11205 2007-07-19  Jan Schmidt  <thaytan@noraisin.net>
11206
11207         * tests/check/elements/.cvsignore:
11208         Fix the buildbot with the cvsignore it wants.
11209
11210 2007-07-19  Julien MOUTTE  <julien@moutte.net>
11211
11212         * configure.ac:
11213         * gst/flv/Makefile.am:
11214         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
11215         (gst_flv_demux_cleanup), (gst_flv_demux_chain),
11216         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header),
11217         (gst_flv_demux_seek_to_prev_keyframe), (gst_flv_demux_loop),
11218         (gst_flv_demux_sink_activate), (gst_flv_demux_sink_activate_push),
11219         (gst_flv_demux_sink_activate_pull), (gst_flv_demux_sink_event),
11220         (gst_flv_demux_change_state), (gst_flv_demux_dispose),
11221         (gst_flv_demux_base_init), (gst_flv_demux_class_init),
11222         (gst_flv_demux_init), (plugin_init):
11223         * gst/flv/gstflvdemux.h:
11224         * gst/flv/gstflvparse.c: (FLV_GET_BEUI24), (FLV_GET_STRING),
11225         (gst_flv_demux_query_types), (gst_flv_demux_query),
11226         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
11227         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
11228         (gst_flv_parse_tag_type), (gst_flv_parse_header):
11229         * gst/flv/gstflvparse.h: Adds a first draft of an FLV demuxer.
11230         It does not do seeking yet, it supports pull and push mode so YES
11231         you can use it to play youtube videos directly from an HTTP uri.
11232         Not so much testing done yet but it parses metadata, reply to 
11233         duration queries, etc...
11234
11235 2007-07-19  Stefan Kost  <ensonic@users.sf.net>
11236
11237         * tests/check/Makefile.am:
11238         * tests/check/elements/timidity.c (GST_START_TEST, timidity_suite,
11239           main):
11240           Add typefind test for midi.
11241
11242 2007-07-18  Michael Smith  <msmith@fluendo.com>
11243
11244         * ext/soundtouch/gstpitch.cc:
11245           If we receive a new segment event, don't try to push buffers out
11246           in response (without first sending it on!).
11247           Instead, flush internal buffers on receiving flush events.
11248           Fixes playback after seeking.
11249
11250 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11251
11252         * gst/bayer/gstbayer2rgb.c: (gst_bayer2rgb_set_caps),
11253         (gst_bayer2rgb_reset):
11254           Add basic docs. Use glibs mem routines.
11255
11256 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11257
11258         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
11259           Add example to the docs. Fix buffer-offset-end and add some debug.
11260
11261 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11262
11263         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
11264         (gst_jack_ring_buffer_acquire):
11265           Add stdlib include here too.
11266
11267 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11268
11269         * examples/app/appsrc_ex.c:
11270         * examples/switch/switcher.c:
11271         * ext/neon/gstneonhttpsrc.c:
11272         * ext/timidity/gstwildmidi.c:
11273         * ext/x264/gstx264enc.c:
11274         * gst/mve/mveaudioenc.c: (mve_compress_audio):
11275         * gst/rtpmanager/gstrtpclient.c:
11276         * gst/rtpmanager/gstrtpjitterbuffer.c:
11277         * gst/spectrum/demo-audiotest.c:
11278         * gst/spectrum/demo-osssrc.c:
11279         * sys/dvb/gstdvbsrc.c:
11280           Add stdlib include (free, atoi, exit).
11281
11282 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
11283
11284         * ext/faad/gstfaad.c: (clip_outgoing_buffer):
11285         Fix buffer clipping to correctly clip to the segment stop.
11286
11287 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
11288
11289         Patch by: Hans de Goede <j.w.r.degoede at hhs dot nl>
11290
11291         * gst/modplug/gstmodplug.cc:
11292         add several missing supported mime-types to the modplug plugin.
11293         Fixes #456901.
11294
11295 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
11296
11297         * configure.ac:
11298         * tests/Makefile.am:
11299         Remove bogus check for libcheck, since we check for
11300         gstreamer-check and it pulls in the required info from there, and we
11301         weren't actually _using_ the information for libcheck ourselves
11302         anyway.
11303
11304 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
11305
11306         * configure.ac:
11307           Use pkg-config to locate check.
11308
11309 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
11310
11311         * gst/interleave/deinterleave.c: (gst_deinterleave_process):
11312         * gst/vmnc/vmncdec.c: (vmnc_make_buffer):
11313           Fix build against core CVS.
11314
11315 2007-07-09  Stefan Kost  <ensonic@users.sf.net>
11316
11317         * REQUIREMENTS:
11318           Sync with changes in -ugly.
11319
11320 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
11321
11322         * REQUIREMENTS:
11323           Add download location of libamrwb.
11324
11325 2007-07-06  Tim-Philipp Müller  <tim at centricular dot net>
11326
11327         * docs/plugins/inspect/plugin-amrwb.xml:
11328         * docs/plugins/inspect/plugin-equalizer.xml:
11329         * docs/plugins/inspect/plugin-multifile.xml:
11330         * docs/plugins/inspect/plugin-timidity.xml:
11331         * docs/plugins/inspect/plugin-wildmidi.xml:
11332           Add missing inspect files. Fixes build (#454313).
11333
11334         * ext/timidity/gstwildmidi.c: (wildmidi_open_config):
11335           Scream a bit louder when initialisation fails.
11336
11337         * gst-libs/README:
11338         * gst-libs/ext/.cvsignore:
11339           Remove some cruft.
11340
11341 2007-07-05  Tim-Philipp Müller  <tim at centricular dot net>
11342
11343         * ext/ivorbis/Makefile.am:
11344           Dist header files. Fixes #454078.
11345
11346 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
11347
11348         * docs/plugins/Makefile.am:
11349           Simplify --extra-dir as gtkdoc scans recursively.
11350
11351         * ext/amrwb/gstamrwbenc.c:
11352           Fix comment start.
11353
11354 2007-07-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11355
11356         * sys/dvb/gstdvbsrc.c (dvbsrc_details, ARG_DVBSRC_ADAPTER,
11357           ARG_DVBSRC_FRONTEND, ARG_DVBSRC_DISEQC_SRC, ARG_DVBSRC_FREQUENCY,
11358           ARG_DVBSRC_POLARITY, gst_dvbsrc_class_init, gst_dvbsrc_init,
11359           gst_dvbsrc_set_property, gst_dvbsrc_get_property,
11360           gst_dvbsrc_open_frontend, gst_dvbsrc_open_dvr, read_device,
11361           gst_dvbsrc_create, gst_dvbsrc_set_pes_filters):
11362         * sys/dvb/gstdvbsrc.h (adapter_number, frontend_number):
11363         Removed property "device". Added properties "adapter" and "frontend".
11364         Fixes #453636.
11365         Rename freq property to frequency.
11366
11367 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
11368
11369         * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
11370         Fix property descriptions.
11371
11372 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11373
11374         * docs/plugins/Makefile.am:
11375         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11376         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11377         * ext/amrwb/gstamrwbdec.c:
11378         * ext/amrwb/gstamrwbenc.c:
11379         * ext/amrwb/gstamrwbparse.c:
11380           Also document AMR-WB elements.
11381
11382 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11383
11384         * docs/plugins/Makefile.am:
11385         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11386         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11387         * docs/plugins/gst-plugins-bad-plugins.args:
11388           Cleanup the section file so that -unused is empty again (and useful to
11389           spot new docs). Add not yet added docs to sgml file. Add more header
11390           to Makefile.am to make them introspectable.
11391
11392         * docs/plugins/inspect/plugin-bz2.xml:
11393         * docs/plugins/inspect/plugin-cdxaparse.xml:
11394         * docs/plugins/inspect/plugin-dtsdec.xml:
11395         * docs/plugins/inspect/plugin-faac.xml:
11396         * docs/plugins/inspect/plugin-faad.xml:
11397         * docs/plugins/inspect/plugin-filter.xml:
11398         * docs/plugins/inspect/plugin-freeze.xml:
11399         * docs/plugins/inspect/plugin-gdp.xml:
11400         * docs/plugins/inspect/plugin-gsm.xml:
11401         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
11402         * docs/plugins/inspect/plugin-h264parse.xml:
11403         * docs/plugins/inspect/plugin-modplug.xml:
11404         * docs/plugins/inspect/plugin-musicbrainz.xml:
11405         * docs/plugins/inspect/plugin-nsfdec.xml:
11406         * docs/plugins/inspect/plugin-replaygain.xml:
11407         * docs/plugins/inspect/plugin-spectrum.xml:
11408         * docs/plugins/inspect/plugin-speed.xml:
11409         * docs/plugins/inspect/plugin-tta.xml:
11410         * docs/plugins/inspect/plugin-videosignal.xml:
11411         * docs/plugins/inspect/plugin-xingheader.xml:
11412         * docs/plugins/inspect/plugin-xvid.xml:
11413           Update the doc blobs.
11414
11415 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11416
11417         * gst/multifile/Makefile.am:
11418         * gst/multifile/gstmultifile.c:
11419         * gst/multifile/gstmultifilesink.c:
11420         * gst/multifile/gstmultifilesink.h:
11421         * gst/multifile/gstmultifilesrc.c:
11422         * gst/multifile/gstmultifilesrc.h:
11423           Add .h files to be able to add it to the docs.
11424
11425 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11426
11427         * gst/modplug/gstmodplug.cc:
11428           Activate doc section.
11429
11430 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11431
11432         * ext/timidity/gsttimidity.c:
11433         * ext/timidity/gstwildmidi.c:
11434         * ext/timidity/gstwildmidi.h:
11435           Fix licence (both are GPL). Add element docs.
11436
11437 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11438
11439         * ext/musicbrainz/gsttrm.h:
11440           Fix _get_type signature.
11441
11442 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11443
11444         * gst/replaygain/gstrgvolume.h:
11445           Fix GObject macros.
11446
11447 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11448
11449         * ext/dc1394/gstdc1394.c: (gst_dc1394_src_fixate),
11450         (gst_dc1394_create), (gst_dc1394_caps_set_format_vmode_caps),
11451         (gst_dc1394_set_caps_framesize_range),
11452         (gst_dc1394_caps_set_framerate_list), (gst_dc1394_get_cam_caps),
11453         (gst_dc1394_framerate_frac_to_const),
11454         (gst_dc1394_open_cam_with_best_caps):
11455         Make a bunch of functions static, and move variable declarations
11456         to the start of blocks to avoid problems on older gcc.
11457
11458         Make sure to unset value types.
11459
11460 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11461
11462         * ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
11463
11464         The correct fourcc for the 4:1:1 packed format is 'IYU1'.
11465         With CVS of ffmpegcolorspace from plugins-base, I can now
11466         get 30 fps from the iSight.
11467
11468 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11469
11470         * ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
11471         Change a g_print to a GST_DEBUG message.
11472
11473 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11474
11475         * configure.ac:
11476         * ext/Makefile.am:
11477         * ext/dc1394/Makefile.am:
11478         * ext/dc1394/gstdc1394.c: (gst_dc1394_base_init),
11479         (gst_dc1394_class_init), (gst_dc1394_init),
11480         (gst_dc1394_src_fixate), (gst_dc1394_set_property),
11481         (gst_dc1394_get_property), (gst_dc1394_getcaps),
11482         (gst_dc1394_setcaps), (gst_dc1394_get_times), (gst_dc1394_create),
11483         (gst_dc1394_parse_caps), (gst_dc1394_change_state),
11484         (gst_dc1394_caps_set_format_vmode_caps),
11485         (gst_dc1394_set_caps_color), (gst_dc1394_set_caps_framesize),
11486         (gst_dc1394_set_caps_framesize_range),
11487         (gst_dc1394_caps_set_framerate_list),
11488         (gst_dc1394_framerate_const_to_frac),
11489         (gst_dc1394_get_all_dc1394_caps), (gst_dc1394_get_cam_caps),
11490         (gst_dc1394_framerate_frac_to_const),
11491         (gst_dc1394_open_cam_with_best_caps),
11492         (gst_dc1394_change_camera_transmission), (plugin_init):
11493         * ext/dc1394/gstdc1394.h:
11494         Commit new dc1394src element.
11495         Patch By: Antoine Tremblay < hexa00 at gmail dot com >
11496         Patch By: Eric Jonas < jonas at mit dot edu >
11497         Close: #387251
11498
11499 2007-06-28  Wim Taymans  <wim@fluendo.com>
11500
11501         * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
11502         Register new property as well.
11503
11504 2007-06-28  Wim Taymans  <wim@fluendo.com>
11505
11506         * gst/videosignal/gstvideodetect.c: (gst_video_detect_420),
11507         (gst_video_detect_set_property), (gst_video_detect_get_property):
11508         * gst/videosignal/gstvideodetect.h:
11509         Add property to adjust the center, sensitivity is now the distance from
11510         this center.
11511
11512 2007-06-27  Wim Taymans  <wim@fluendo.com>
11513
11514         * gst/videosignal/gstvideodetect.c: (gst_video_detect_420),
11515         (gst_video_detect_set_property), (gst_video_detect_get_property),
11516         (gst_video_detect_class_init):
11517         * gst/videosignal/gstvideodetect.h:
11518         * gst/videosignal/gstvideomark.c: (gst_video_mark_draw_box),
11519         (gst_video_mark_420), (gst_video_mark_set_property),
11520         (gst_video_mark_get_property), (gst_video_mark_class_init):
11521         * gst/videosignal/gstvideomark.h:
11522         Add left and bottom offset properties to control the position of the
11523         pattern.
11524
11525 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
11526
11527         * docs/plugins/gst-plugins-bad-plugins.args:
11528         * docs/plugins/inspect/plugin-alsaspdif.xml:
11529         * docs/plugins/inspect/plugin-bz2.xml:
11530         * docs/plugins/inspect/plugin-cdxaparse.xml:
11531         * docs/plugins/inspect/plugin-dtsdec.xml:
11532         * docs/plugins/inspect/plugin-faac.xml:
11533         * docs/plugins/inspect/plugin-faad.xml:
11534         * docs/plugins/inspect/plugin-filter.xml:
11535         * docs/plugins/inspect/plugin-freeze.xml:
11536         * docs/plugins/inspect/plugin-gdp.xml:
11537         * docs/plugins/inspect/plugin-glimagesink.xml:
11538         * docs/plugins/inspect/plugin-gsm.xml:
11539         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
11540         * docs/plugins/inspect/plugin-h264parse.xml:
11541         * docs/plugins/inspect/plugin-jack.xml:
11542         * docs/plugins/inspect/plugin-mms.xml:
11543         * docs/plugins/inspect/plugin-modplug.xml:
11544         * docs/plugins/inspect/plugin-musicbrainz.xml:
11545         * docs/plugins/inspect/plugin-neon.xml:
11546         * docs/plugins/inspect/plugin-nsfdec.xml:
11547         * docs/plugins/inspect/plugin-replaygain.xml:
11548         * docs/plugins/inspect/plugin-sdl.xml:
11549         * docs/plugins/inspect/plugin-spectrum.xml:
11550         * docs/plugins/inspect/plugin-speed.xml:
11551         * docs/plugins/inspect/plugin-tta.xml:
11552         * docs/plugins/inspect/plugin-videosignal.xml:
11553         * docs/plugins/inspect/plugin-xingheader.xml:
11554         * docs/plugins/inspect/plugin-xvid.xml:
11555           Update docs with caps info.
11556
11557 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
11558
11559         * gconf/.cvsignore:
11560         * gconf/Makefile.am:
11561         * gconf/gstreamer.schemas.in:
11562           Remove dysfunctional directory (this stuff is in -good).
11563
11564         * ext/sndfile/gstsf.c: (plugin_init):
11565         * sys/dvb/gstdvbsrc.c: (plugin_init):
11566           Add i18n bindtextdomain stuff.
11567
11568         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_class_init),
11569         (plugin_init):
11570           Post an error message when returning GST_FLOW_ERROR; minor cleanups.
11571
11572         * po/POTFILES.in:
11573           Add more source files with translatable strings (fixes #450605).
11574
11575 2007-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11576
11577         Contributed by: Wenzheng Hu <db_lobster@163.com>
11578
11579         * po/LINGUAS:
11580         * po/zh_CN.po:
11581           Added Chinese (simplified) translation.
11582
11583 2007-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11584
11585         Patch by: Jens Granseuer  <jensgr at gmx net>
11586
11587         * gst/equalizer/gstiirequalizer.c:
11588         * gst/equalizer/gstiirequalizer10bands.c:
11589         * gst/equalizer/gstiirequalizer3bands.c:
11590         * gst/equalizer/gstiirequalizernbands.c:
11591         * gst/rtpmanager/async_jitter_queue.c:
11592         (async_jitter_queue_push_sorted):
11593         * gst/rtpmanager/gstrtpjitterbuffer.c:
11594         (gst_rtp_jitter_buffer_chain):
11595         * gst/switch/gstswitch.c: (gst_switch_chain):
11596           Build fixes for gcc-2.9x (no mid-block variable declarations etc.).
11597           Fixes #450185.
11598
11599 2007-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11600
11601         * examples/switch/switcher.c (my_bus_callback, switch_timer,
11602           last_message_received, main):
11603         * gst/switch/gstswitch.c (gst_switch_release_pad,
11604           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
11605           gst_switch_set_property, gst_switch_get_property,
11606           gst_switch_get_linked_pad, gst_switch_getcaps,
11607           gst_switch_bufferalloc, gst_switch_dispose, gst_switch_init):
11608         * gst/switch/gstswitch.h (switch_mutex, GST_SWITCH_LOCK,
11609           GST_SWITCH_UNLOCK):
11610         Add an extra lock to protect against certain variables instead of
11611         using the object lock. Fix case where caps are different in the
11612         sink pads causes deadlock. Update example to use different caps
11613         on each sink pad.
11614
11615 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
11616
11617         * MAINTAINERS:
11618         Updating all the maintainers files
11619
11620 2007-06-22  Edward Hervey  <edward@fluendo.com>
11621
11622         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_init):
11623         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_init):
11624         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_init):
11625         * ext/audioresample/gstaudioresample.c:
11626         * ext/bz2/gstbz2dec.c: (gst_bz2dec_init):
11627         * ext/bz2/gstbz2enc.c: (gst_bz2enc_init):
11628         * ext/divx/gstdivxdec.c: (gst_divxdec_init):
11629         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
11630         * ext/faac/gstfaac.c: (gst_faac_init):
11631         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init):
11632         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init):
11633         * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_init):
11634         * ext/lcs/gstcolorspace.c: (gst_colorspace_init):
11635         * ext/libfame/gstlibfame.c: (gst_fameenc_init):
11636         * ext/snapshot/gstsnapshot.c: (gst_snapshot_init):
11637         * ext/spc/gstspc.c: (gst_spc_dec_init):
11638         * ext/swfdec/gstswfdec.c: (gst_swfdec_init):
11639         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init):
11640         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_init):
11641         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
11642         * gst/chart/gstchart.c: (gst_chart_init):
11643         * gst/colorspace/gstcolorspace.c: (gst_colorspace_init):
11644         * gst/festival/gstfestival.c: (gst_festival_init):
11645         * gst/freeze/gstfreeze.c: (gst_freeze_init):
11646         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_request_new_pad):
11647         * gst/mpeg1sys/gstmpeg1systemencode.c: (gst_system_encode_init):
11648         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
11649         * gst/nsf/gstnsf.c: (gst_nsfdec_init):
11650         * gst/overlay/gstoverlay.c: (gst_overlay_init):
11651         * gst/passthrough/gstpassthrough.c: (passthrough_init):
11652         * gst/playondemand/gstplayondemand.c: (play_on_demand_init):
11653         * gst/smooth/gstsmooth.c: (gst_smooth_init):
11654         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
11655         * gst/speed/gstspeed.c: (speed_init):
11656         * gst/vbidec/gstvbidec.c: (gst_vbidec_init):
11657         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
11658         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
11659         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
11660         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_init):
11661         Fix leaks.
11662
11663 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
11664
11665         * RELEASE:
11666         * sys/Makefile.am:
11667           Re-enable VCD source and fix up release notes.
11668
11669 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11670
11671         * gst/equalizer/gstiirequalizer.c:
11672           Document parameter mapping.
11673
11674 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11675
11676         * gst/spectrum/gstspectrum.c: (gst_spectrum_event),
11677         (gst_spectrum_transform_ip):
11678           Fix leaking buffers.
11679           
11680         * tests/check/Makefile.am:
11681         * tests/check/elements/spectrum.c: (setup_spectrum),
11682         (cleanup_spectrum), (GST_START_TEST), (spectrum_suite), (main):
11683           Add simple test for spectrum element.
11684
11685 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11686
11687         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init),
11688         (gst_amrwbdec_class_init), (gst_amrwbdec_finalize),
11689         (gst_amrwbdec_event), (gst_amrwbdec_chain),
11690         (gst_amrwbdec_state_change):
11691         * ext/amrwb/gstamrwbdec.h:
11692         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init),
11693         (gst_amrwbparse_pull_header), (gst_amrwbparse_loop):
11694           Add newsegment and discont handling. Some code cleanups. Don't leak
11695           the adapter, unref it in a new finalize method instead. Sync the
11696           parser with the amr-nb changes.
11697
11698 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
11699
11700         * configure.ac:
11701         Back to CVS.
11702
11703         * gst-plugins-bad.doap:
11704         Add 0.10.5 to the doap file.
11705
11706 === release 0.10.5 ===
11707
11708 2007-06-19  Jan Schmidt <thaytan@mad.scientist.com>
11709
11710         * configure.ac:
11711           releasing 0.10.5, "Expedition to Lake Pahoe"
11712
11713 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
11714
11715         * win32/vs6/gst_plugins_bad.dsw:
11716         * win32/vs6/libdshowsrcwrapper.dsp:
11717         * win32/vs6/libgstdshow.dsp:
11718         * win32/vs6/libgstmpegvideoparse.dsp:
11719         * win32/vs6/libgstneon.dsp:
11720         Convert line endings to CRLF and mark as binary files.
11721
11722 2007-06-13  Wim Taymans  <wim@fluendo.com>
11723
11724         * sys/Makefile.am:
11725         Disable VCD build because we're frozen..
11726
11727 2007-06-13  Wim Taymans  <wim@fluendo.com>
11728
11729         * configure.ac:
11730         * sys/Makefile.am:
11731         * sys/vcd/Makefile.am:
11732         * sys/vcd/vcdsrc.c: (gst_vcdsrc_setup_interfaces),
11733         (gst_vcdsrc_base_init), (gst_vcdsrc_class_init), (gst_vcdsrc_init),
11734         (gst_vcdsrc_msf), (gst_vcdsrc_recalculate),
11735         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
11736         (gst_vcdsrc_create), (gst_vcdsrc_start), (gst_vcdsrc_stop),
11737         (gst_vcdsrc_uri_set_uri):
11738         * sys/vcd/vcdsrc.h:
11739         Port VCD element.
11740
11741 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
11742
11743         * win32/MANIFEST:
11744         Add megvideoparse, libdshow and dshowsrcwrapper to win32
11745         MANIFEST.
11746         * win32/vs6/gst_plugins_bad.dsw:
11747         Remove qtdemux, directdraw, directsound and waveform project files
11748         from the workspace as they have been moved to -good.
11749
11750 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11751
11752         * po/POTFILES.in:
11753         Remove qtdemux from the translation list.
11754
11755 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11756
11757         * configure.ac:
11758         * docs/plugins/Makefile.am:
11759         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11760         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11761         * docs/plugins/inspect/plugin-osxvideo.xml:
11762         * docs/plugins/inspect/plugin-videocrop.xml:
11763         * gst-plugins-bad.spec.in:
11764         * gst/videocrop/Makefile.am:
11765         * gst/videocrop/gstvideocrop.c:
11766         * gst/videocrop/gstvideocrop.h:
11767         * gst/videocrop/videocrop.vcproj:
11768         * sys/Makefile.am:
11769         * sys/osxvideo/Makefile.am:
11770         * sys/osxvideo/cocoawindow.h:
11771         * sys/osxvideo/cocoawindow.m:
11772         * sys/osxvideo/osxvideosink.h:
11773         * sys/osxvideo/osxvideosink.m:
11774         * tests/check/Makefile.am:
11775         * tests/check/elements/videocrop.c:
11776         * tests/icles/Makefile.am:
11777         * tests/icles/videocrop-test.c:
11778         Move videocrop and osxvideo to -good.
11779
11780 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11781
11782         * configure.ac:
11783         * docs/plugins/Makefile.am:
11784         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11785         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11786         * gst/qtdemux/Makefile.am:
11787         * gst/qtdemux/gstrtpxqtdepay.c:
11788         * gst/qtdemux/gstrtpxqtdepay.h:
11789         * gst/qtdemux/qtdemux.c:
11790         * gst/qtdemux/qtdemux.h:
11791         * gst/qtdemux/qtdemux.vcproj:
11792         * gst/qtdemux/qtdemux_dump.c:
11793         * gst/qtdemux/qtdemux_dump.h:
11794         * gst/qtdemux/qtdemux_fourcc.h:
11795         * gst/qtdemux/qtdemux_types.c:
11796         * gst/qtdemux/qtdemux_types.h:
11797         * gst/qtdemux/qtpalette.h:
11798         * gst/qtdemux/quicktime.c:
11799         * win32/MANIFEST:
11800         * win32/vs6/libgstqtdemux.dsp:
11801         Move qtdemux to -good.
11802
11803         * gst-plugins-bad.spec.in:
11804         Update spec file to reflect wavpack & qtdemux moving to -good.
11805
11806 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11807
11808         * docs/plugins/Makefile.am:
11809         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11810         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11811         * docs/plugins/inspect/plugin-waveform.xml:
11812         * sys/waveform/gstwaveformplugin.c:
11813         * sys/waveform/gstwaveformsink.c:
11814         * sys/waveform/gstwaveformsink.h:
11815         * win32/MANIFEST:
11816         * win32/vs6/libgstwaveform.dsp:
11817         Remove the waveform plugin now that it is in -good.
11818
11819 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
11820
11821         * configure.ac:
11822         * docs/plugins/Makefile.am:
11823         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11824         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11825         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
11826         * docs/plugins/inspect/plugin-wavpack.xml:
11827         * ext/Makefile.am:
11828         * ext/wavpack/Makefile.am:
11829         * ext/wavpack/gstwavpack.c:
11830         * ext/wavpack/gstwavpackcommon.c:
11831         * ext/wavpack/gstwavpackcommon.h:
11832         * ext/wavpack/gstwavpackdec.c:
11833         * ext/wavpack/gstwavpackdec.h:
11834         * ext/wavpack/gstwavpackenc.c:
11835         * ext/wavpack/gstwavpackenc.h:
11836         * ext/wavpack/gstwavpackparse.c:
11837         * ext/wavpack/gstwavpackparse.h:
11838         * ext/wavpack/gstwavpackstreamreader.c:
11839         * ext/wavpack/gstwavpackstreamreader.h:
11840         * ext/wavpack/md5.c:
11841         * ext/wavpack/md5.h:
11842         * tests/check/Makefile.am:
11843         * tests/check/elements/wavpackdec.c:
11844         * tests/check/elements/wavpackenc.c:
11845         * tests/check/elements/wavpackparse.c:
11846           Move wavpack to good.
11847
11848 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
11849
11850         * configure.ac:
11851         * docs/plugins/Makefile.am:
11852         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11853         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11854         * docs/plugins/gst-plugins-bad-plugins.args:
11855         * docs/plugins/inspect/plugin-directdraw.xml:
11856         * docs/plugins/inspect/plugin-directsound.xml:
11857         * sys/Makefile.am:
11858         * sys/directdraw/Makefile.am:
11859         * sys/directdraw/gstdirectdrawplugin.c:
11860         * sys/directdraw/gstdirectdrawsink.c:
11861         * sys/directdraw/gstdirectdrawsink.h:
11862         * sys/directsound/Makefile.am:
11863         * sys/directsound/gstdirectsoundplugin.c:
11864         * sys/directsound/gstdirectsoundsink.c:
11865         * sys/directsound/gstdirectsoundsink.h:
11866         * win32/MANIFEST:
11867         * win32/gst.sln:
11868         * win32/vs6/libgstdirectdraw.dsp:
11869         * win32/vs6/libgstdirectsound.dsp:
11870         * win32/vs7/libgstdirectdraw.vcproj:
11871         * win32/vs7/libgstdirectsound.vcproj:
11872         * win32/vs8/libgstdirectdraw.vcproj:
11873         * win32/vs8/libgstdirectsound.vcproj:
11874         Remove DirectDraw & DirectSound plugins, as they've moved to Good
11875
11876 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
11877
11878         * ext/timidity/gsttimidity.c: (gst_timidity_loop):
11879         * ext/timidity/gstwildmidi.c: (gst_wildmidi_loop):
11880         * gst/tta/gstttaparse.c: (gst_tta_parse_loop):
11881           When driving the pipeline, also post an error when we get a
11882           not-linked flow return from downstream.
11883
11884 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
11885
11886         * docs/plugins/gst-plugins-bad-plugins.args:
11887         * sys/directdraw/gstdirectdrawsink.c:
11888         (gst_directdraw_sink_class_init):
11889         Rename the keep-aspect-ratio property to force-aspect-ratio to make
11890         it consistent with xvimagesink and ximagesink.
11891
11892 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
11893
11894         * tests/icles/videocrop-test.c: (main):
11895           Default to xvimagesink instead of autovideosink while
11896           autovideosink/ghostpads/whatever don't handle the way we use it in
11897           the way we expect it to.
11898
11899 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11900
11901         * configure.ac:
11902           Bump requirements to released versions of core and -base, and remove
11903           special-casing for equalizer and rtpmanager as it's not needed any
11904           longer.
11905
11906 2007-06-06  Jan Schmidt  <thaytan@mad.scientist.com>
11907
11908         * sys/glsink/glimagesink.c: (gst_glimage_sink_stop),
11909         (gst_glimage_sink_create_window), (gst_glimage_sink_init_display):
11910         Sprinkle in some XSync calls to avoid raciness with broken
11911         drivers (ATI) when re-using a single glimagesink.
11912
11913 2007-06-06  Jan Schmidt  <thaytan@mad.scientist.com>
11914
11915         * gst/mpegvideoparse/mpegpacketiser.c:
11916         (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr),
11917         (mpeg_util_parse_picture_hdr):
11918         * gst/mpegvideoparse/mpegvideoparse.c:
11919         (mpegvideoparse_handle_sequence), (mpegvideoparse_drain_avail):
11920         Fix some silly bugs with calculating the guard sizes.
11921         Properly compare the old sequence header structure with the new one.
11922         Don't error out on an invalid sequence - just ignore it.
11923
11924 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11925
11926         * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode):
11927           Printf fix in debug statement; also print the right number there.
11928
11929 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11930
11931         * ext/sdl/Makefile.am:
11932         * ext/sdl/sdlvideosink.c: (gst_sdlv_process_events):
11933           Add GST_CFLAGS, which apparently somehow fixes the build somewhere
11934           (#444499); initialise variable to avoid false compiler warning.
11935
11936 2007-06-01  Wim Taymans  <wim@fluendo.com>
11937
11938         * docs/plugins/Makefile.am:
11939         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11940         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11941         * docs/plugins/inspect/plugin-videosignal.xml:
11942         * gst/videosignal/Makefile.am:
11943         * gst/videosignal/gstvideomark.c: (gst_video_mark_set_caps),
11944         (gst_video_mark_draw_box), (gst_video_mark_420),
11945         (gst_video_mark_transform_ip), (gst_video_mark_set_property),
11946         (gst_video_mark_get_property), (gst_video_mark_base_init),
11947         (gst_video_mark_class_init), (gst_video_mark_init),
11948         (gst_video_mark_get_type):
11949         * gst/videosignal/gstvideomark.h:
11950         * gst/videosignal/gstvideosignal.c: (plugin_init):
11951         Add plugin to generate a pattern detectable by videodetect.
11952
11953 2007-06-01  Tim-Philipp Müller  <tim at centricular dot net>
11954
11955         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create):
11956           Don't leak buffer when returning an error.
11957
11958 2007-06-01  Wim Taymans  <wim@fluendo.com>
11959
11960         Patch by René Stadler <mail at renestadler dot de>:
11961
11962         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
11963         (gst_neonhttp_src_init), (gst_neonhttp_src_dispose),
11964         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
11965         (gst_neonhttp_src_start), (gst_neonhttp_src_do_seek),
11966         (gst_neonhttp_src_set_location),
11967         (gst_neonhttp_src_send_request_and_redirect),
11968         (gst_neonhttp_src_uri_get_uri), (gst_neonhttp_src_uri_set_uri):
11969         * ext/neon/gstneonhttpsrc.h:
11970         Deprecated "uri" property.  Clean up property descriptions.
11971         Change default User-Agent to the slightly more descriptive
11972         "GStreamer neonhttpsrc".
11973         Various other small cleanups, mostly property related.
11974
11975 2007-05-31  Tim-Philipp Müller  <tim at centricular dot net>
11976
11977         * ext/libmms/gstmms.h:
11978           No reason to use gpointers instead of typed pointes here as far as I
11979           can see.
11980
11981         * ext/mythtv/gstmythtvsrc.c:
11982         * ext/neon/gstneonhttpsrc.c:
11983         * gst/switch/gstswitch.c:
11984           Don't use gtk-doc magic markers for things that aren't meant to be
11985           parsed by gtk-doc. Makes gtk-doc complain a bit less.
11986
11987 2007-05-30  Wim Taymans  <wim@fluendo.com>
11988
11989         * configure.ac:
11990         * docs/plugins/Makefile.am:
11991         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11992         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11993         * docs/plugins/inspect/plugin-videosignal.xml:
11994         * gst/videosignal/Makefile.am:
11995         * gst/videosignal/gstvideoanalyse.c: (gst_video_analyse_set_caps),
11996         (gst_video_analyse_post_message), (gst_video_analyse_420),
11997         (gst_video_analyse_transform_ip), (gst_video_analyse_set_property),
11998         (gst_video_analyse_get_property), (gst_video_analyse_base_init),
11999         (gst_video_analyse_class_init), (gst_video_analyse_init),
12000         (gst_video_analyse_get_type):
12001         * gst/videosignal/gstvideoanalyse.h:
12002         * gst/videosignal/gstvideodetect.c: (gst_video_detect_set_caps),
12003         (gst_video_detect_post_message),
12004         (gst_video_detect_calc_brightness), (gst_video_detect_420),
12005         (gst_video_detect_transform_ip), (gst_video_detect_set_property),
12006         (gst_video_detect_get_property), (gst_video_detect_base_init),
12007         (gst_video_detect_class_init), (gst_video_detect_init),
12008         (gst_video_detect_get_type):
12009         * gst/videosignal/gstvideodetect.h:
12010         * gst/videosignal/gstvideosignal.c: (plugin_init):
12011         * gst/videosignal/gstvideosignal.h:
12012         Added videosignal plugin with two plugins to analyse video frames.
12013         Added videoanalyse to report about brightness and variance in video
12014         frames.
12015         Added videodetect to detect predefined patterns in a video signal.
12016
12017 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
12018
12019         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12020         * docs/plugins/gst-plugins-bad-plugins.interfaces:
12021         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
12022         * docs/plugins/gst-plugins-bad-plugins.signals:
12023           More updates.
12024
12025 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
12026
12027         * docs/plugins/gst-plugins-bad-plugins.args:
12028         * docs/plugins/gst-plugins-bad-plugins.signals:
12029         * docs/plugins/inspect/plugin-dtsdec.xml:
12030         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
12031         * docs/plugins/inspect/plugin-musepack.xml:
12032         * docs/plugins/inspect/plugin-rtpmanager.xml:
12033         * docs/plugins/inspect/plugin-sdl.xml:
12034         * docs/plugins/inspect/plugin-spcdec.xml:
12035         * docs/plugins/inspect/plugin-swfdec.xml:
12036           Updates; update inspect info for rtpmanager => gstrtpmanager rename,
12037           hopefully that makes the build bots happy again.
12038
12039 2007-05-28  Wim Taymans  <wim@fluendo.com>
12040
12041         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12042         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12043         * gst/rtpmanager/gstrtpbin.c: (create_session), (create_stream),
12044         (gst_rtp_bin_class_init), (create_recv_rtp), (create_recv_rtcp),
12045         (create_send_rtp), (create_rtcp), (gst_rtp_bin_request_new_pad):
12046         * gst/rtpmanager/gstrtpclient.c: (create_stream),
12047         (gst_rtp_client_request_new_pad):
12048         * gst/rtpmanager/gstrtpjitterbuffer.c:
12049         (gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
12050         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
12051         * gst/rtpmanager/gstrtpptdemux.c:
12052         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
12053         (gst_rtp_session_request_new_pad):
12054         * gst/rtpmanager/gstrtpssrcdemux.c:
12055         Rename elements to avoid conflict with farsight elements with the same
12056         name. Fixes #430664.
12057
12058 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
12059
12060         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12061
12062         * sys/directdraw/gstdirectdrawsink.c:
12063         (gst_directdraw_sink_buffer_alloc),
12064         (gst_directdraw_sink_show_frame),
12065         (gst_directdraw_sink_check_primary_surface),
12066         (gst_directdraw_sink_check_offscreen_surface),
12067         (EnumModesCallback2), (gst_directdraw_sink_get_ddrawcaps),
12068         (gst_directdraw_sink_surface_create):
12069         * sys/directdraw/gstdirectdrawsink.h:
12070           Fix more warnings when compiling with MingW (#439914).
12071
12072 2007-05-24  Sebastian Moutte  <sebastien@moutte.net>
12073
12074         * docs/plugins/gst-plugins-bad-plugins.args:
12075         Remove directsoundsink property doc as this sink use the mixer
12076         interface now.
12077         * docs/plugins/gst-plugins-bad-plugins.interfaces:
12078         Add interfaces implemented by Windows sinks.
12079         * sys/directsound/gstdirectsoundsink.c:
12080         * sys/directsound/gstdirectsoundsink.h:
12081         Remove directsoundsink property  and implement the mixer interface.
12082         * win32/vs6/gst_plugins_bad.dsw:
12083         * win32/vs6/libgstdirectsound.dsp:
12084         Update project files.
12085         * gst-libs/gst/dshow/gstdshow.cpp:
12086         * gst-libs/gst/dshow/gstdshow.h:
12087         * gst-libs/gst/dshow/gstdshowfakesink.cpp:
12088         * gst-libs/gst/dshow/gstdshowfakesink.h:
12089         * gst-libs/gst/dshow/gstdshowfakesrc.cpp:
12090         * gst-libs/gst/dshow/gstdshowfakesrc.h:
12091         * gst-libs/gst/dshow/gstdshowinterface.cpp:
12092         * gst-libs/gst/dshow/gstdshowinterface.h:
12093         * win32/common/libgstdshow.def:
12094         * win32/vs6/libgstdshow.dsp:
12095         Add a new gst library which allow to create internal Direct Show
12096         graph (pipelines) to wrap Windows sources, decoders or encoders.
12097         It includes a DirectShow fake source and sink and utility functions.    
12098         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
12099         * sys/dshowsrcwrapper/gstdshowaudiosrc.h:
12100         * sys/dshowsrcwrapper/gstdshowsrcwrapper.c:
12101         * sys/dshowsrcwrapper/gstdshowsrcwrapper.h:
12102         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
12103         * sys/dshowsrcwrapper/gstdshowvideosrc.h:
12104         * win32/vs6/libdshowsrcwrapper.dsp:
12105         Add a new plugin to wrap DirectShow sources on Windows.
12106         It gets data from any webcam, dv cam, micro. We could add 
12107         tv tunner card later.
12108         
12109 2007-05-23  Sebastian Dröge  <slomo@circular-chaos.org>
12110
12111         Patch by René Stadler <mail at renestadler dot de>:
12112
12113         * ext/sdl/sdlvideosink.c:
12114         Separate the authors by newlines instead of nothing. Fixes #440774.
12115
12116 2007-05-23  Wim Taymans  <wim@fluendo.com>
12117
12118         * docs/plugins/inspect/plugin-rtpmanager.xml:
12119         Add doc xml file.
12120
12121 2007-05-23  Wim Taymans  <wim@fluendo.com>
12122
12123         * docs/plugins/Makefile.am:
12124         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12125         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12126         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
12127         * gst/rtpmanager/gstrtpbin.h:
12128         * gst/rtpmanager/gstrtpclient.c:
12129         * gst/rtpmanager/gstrtpjitterbuffer.c:
12130         (gst_rtp_jitter_buffer_class_init),
12131         (gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
12132         * gst/rtpmanager/gstrtpjitterbuffer.h:
12133         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init),
12134         (gst_rtp_pt_demux_clear_pt_map):
12135         * gst/rtpmanager/gstrtpptdemux.h:
12136         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
12137         (rtcp_thread), (gst_rtp_session_clear_pt_map):
12138         * gst/rtpmanager/gstrtpsession.h:
12139         * gst/rtpmanager/gstrtpssrcdemux.c:
12140         (gst_rtp_ssrc_demux_class_init):
12141         Document stuff.
12142         Add clear-pt-map action signal where needed.
12143
12144 2007-05-22  Stefan Kost  <ensonic@users.sf.net>
12145
12146         * configure.ac:
12147           Depend on gstreamer-0.10.12.1.
12148         
12149         * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
12150           _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
12151           parent_class, gst_iir_equalizer_band_set_property,
12152           gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
12153           gst_iir_equalizer_child_proxy_get_child_by_index,
12154           gst_iir_equalizer_child_proxy_get_children_count,
12155           gst_iir_equalizer_child_proxy_interface_init, setup_filter,
12156           gst_iir_equalizer_compute_frequencies,
12157           gst_iir_equalizer_set_property, gst_iir_equalizer_get_property,
12158           plugin_init):
12159         * gst/equalizer/gstiirequalizer.h (audiofilter):
12160         * gst/equalizer/gstiirequalizernbands.c (ARG_NUM_BANDS,
12161           gst_iir_equalizer_nbands_base_init, gst_iir_equalizer_nbands_init,
12162           gst_iir_equalizer_nbands_set_property):
12163           Use new locking macros.
12164
12165         * gst/filter/gstbpwsinc.c (bpwsinc_set_caps):
12166           Add fixme.
12167
12168         * gst/spectrum/gstspectrum.c (SPECTRUM_WINDOW_BASE,
12169           SPECTRUM_WINDOW_LEN, gst_spectrum_init, gst_spectrum_set_property,
12170           gst_spectrum_event, gst_spectrum_transform_ip):
12171           Use new locking macros. Turn two fixed values into #defines.
12172
12173 2007-05-22  Edward Hervey  <edward@fluendo.com>
12174
12175         * docs/plugins/Makefile.am:
12176         Also look for .m (objectivec) files.
12177         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12178         * docs/plugins/gst-plugins-bad-plugins.args:
12179         * sys/osxvideo/osxvideosink.m:
12180         Add documentation for element and properties.
12181
12182 2007-05-21  Stefan Kost  <ensonic@users.sf.net>
12183
12184         * ChangeLog:
12185           ChangeLog surgery.
12186         * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
12187           _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
12188           parent_class, gst_iir_equalizer_band_set_property,
12189           gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
12190           gst_iir_equalizer_child_proxy_get_child_by_index,
12191           gst_iir_equalizer_child_proxy_get_children_count,
12192           gst_iir_equalizer_child_proxy_interface_init, setup_filter,
12193           gst_iir_equalizer_compute_frequencies, plugin_init):
12194         * tests/icles/equalizer-test.c:
12195           Add fixme and comment for example.
12196
12197 2007-05-21  Stefan Kost  <ensonic@users.sf.net>
12198
12199         * gst/spectrum/gstspectrum.c (gst_spectrum_set_property,
12200           gst_spectrum_event, gst_spectrum_transform_ip):
12201           Use lock to protect from concurrent access.
12202
12203 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
12204
12205         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
12206         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
12207         Specify and use properties as unsigned int that are an unsigned int.
12208
12209 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
12210
12211         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
12212         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
12213         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
12214         * ext/wavpack/gstwavpackenc.h:
12215         Fixup docs, make the bitrate property an int as it should be and
12216         allow to set the different extra processing modes instead of only
12217         allowing none and the default one.
12218
12219 2007-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
12220
12221         * ext/wavpack/gstwavpackenc.c:
12222         Add missing audioconverts in the example pipelines of wavpackenc. As
12223         the wavpack stuff now needs input with 32 bit width (and random depth)
12224         this is needed now. The example pipelines for the parser and decoder
12225         are still fine.
12226
12227 2007-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12228
12229         * docs/plugins/Makefile.am:
12230         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12231           Fix docs build and hierarchy.
12232
12233 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
12234
12235         * sys/directdraw/gstdirectdrawsink.c: (gst_ddrawsurface_finalize),
12236         (gst_directdraw_sink_buffer_alloc),
12237         (gst_directdraw_sink_get_ddrawcaps),
12238         (gst_directdraw_sink_surface_create):
12239           Bunch of small fixes: remove static function that doesn't exist;
12240           declare another one that does; printf format fix; use right macro
12241           when specifying debug category; remove a bunch of unused variables;
12242           #if 0 out an unused chunk of code (partially fixes #439914).
12243
12244 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
12245
12246         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample):
12247         * gst/switch/gstswitch.c: (gst_switch_chain):
12248           Printf format fixes (#439910, #439911).
12249
12250 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12251
12252         * tests/check/Makefile.am:
12253           Remove bits for deinterleave check which isn't in CVS yet.
12254
12255 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12256
12257         Patch by: René Stadler <mail at renestadler de>
12258
12259         * docs/plugins/Makefile.am:
12260         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12261         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12262         * docs/plugins/inspect/plugin-replaygain.xml:
12263         * gst/replaygain/Makefile.am:
12264         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_class_init),
12265         (gst_rg_analysis_start), (gst_rg_analysis_set_caps),
12266         (gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
12267         (gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
12268         (gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
12269         (gst_rg_analysis_album_result):
12270         * gst/replaygain/gstrganalysis.h:
12271         * gst/replaygain/gstrglimiter.c: (gst_rg_limiter_base_init),
12272         (gst_rg_limiter_class_init), (gst_rg_limiter_init),
12273         (gst_rg_limiter_set_property), (gst_rg_limiter_get_property),
12274         (gst_rg_limiter_transform_ip):
12275         * gst/replaygain/gstrglimiter.h:
12276         * gst/replaygain/gstrgvolume.c: (gst_rg_volume_base_init),
12277         (gst_rg_volume_class_init), (gst_rg_volume_init),
12278         (gst_rg_volume_set_property), (gst_rg_volume_get_property),
12279         (gst_rg_volume_dispose), (gst_rg_volume_change_state),
12280         (gst_rg_volume_sink_event), (gst_rg_volume_tag_event),
12281         (gst_rg_volume_reset), (gst_rg_volume_update_gain),
12282         (gst_rg_volume_determine_gain):
12283         * gst/replaygain/gstrgvolume.h:
12284         * gst/replaygain/replaygain.c: (plugin_init):
12285         * gst/replaygain/replaygain.h:
12286         * gst/replaygain/rganalysis.h:
12287         * tests/check/Makefile.am:
12288         * tests/check/elements/.cvsignore:
12289         * tests/check/elements/rganalysis.c: (send_eos_event),
12290         (GST_START_TEST):
12291         * tests/check/elements/rglimiter.c: (setup_rglimiter),
12292         (cleanup_rglimiter), (set_playing_state), (create_test_buffer),
12293         (verify_test_buffer), (GST_START_TEST), (rglimiter_suite), (main):
12294         * tests/check/elements/rgvolume.c: (event_func), (setup_rgvolume),
12295         (cleanup_rgvolume), (set_playing_state), (set_null_state),
12296         (send_eos_event), (send_tag_event), (test_buffer_new),
12297         (fail_unless_target_gain), (fail_unless_result_gain),
12298         (fail_unless_gain), (GST_START_TEST), (rgvolume_suite), (main):
12299           Add replaygain playback elements (#412710).
12300
12301 2007-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
12302
12303         * sys/glsink/glimagesink.c: (gst_glimage_sink_init_display):
12304         Update the cached caps after opening the display so that we report
12305         only the supported caps formats, not just the template caps.
12306         Fixes: #439405
12307
12308 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
12309
12310         * ext/amrwb/gstamrwbdec.c (gst_amrwbdec_debug, GST_CAT_DEFAULT,
12311           _do_init, gst_amrwbdec_base_init, gst_amrwbdec_class_init):
12312         * ext/amrwb/gstamrwbenc.c (gst_amrwbenc_debug, GST_CAT_DEFAULT,
12313           _do_init, gst_amrwbenc_base_init, gst_amrwbenc_class_init):
12314         * ext/amrwb/gstamrwbparse.c (gst_amrwbparse_debug, GST_CAT_DEFAULT,
12315           _do_init, gst_amrwbparse_base_init, gst_amrwbparse_class_init):
12316           First round of cleanups, that use GST_BOILERPLATE, GST_ELEMENT_DETAILS,
12317           GST_DEBUG_FUNCPTR and add log-category.
12318
12319 2007-05-17  Edward Hervey  <edward@fluendo.com>
12320
12321         * sys/osxvideo/osxvideosink.h:
12322         * sys/osxvideo/osxvideosink.m:
12323         Remove the event-loop-in-separate-thread modifications, because MacOSX
12324         is $#@(*%$# ! For those wondering, the event handling needs to be done
12325         in the main thread after all..
12326
12327 2007-05-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12328
12329         * gst/switch/gstswitch.c (ARG_0, ARG_NB_SOURCES, ARG_ACTIVE_SOURCE,
12330           ARG_START_VALUE, ARG_STOP_VALUE, ARG_LAST_TS, ARG_QUEUE_BUFFERS,
12331           parent_class, gst_switch_release_pad, gst_switch_request_new_pad,
12332           gst_switch_chain, gst_switch_event, gst_switch_set_property,
12333           gst_switch_get_property, gst_switch_getcaps, gst_switch_dispose,
12334           unref_buffer, unref_buffers_and_destroy_list, gst_switch_init,
12335           gst_switch_base_init, gst_switch_class_init):
12336         * gst/switch/gstswitch.h (need_to_send_newsegment, queue_buffers,
12337           stop_value, start_value, current_start, last_ts, stored_buffers):
12338         Add handling of application provided stop and start values, allowing
12339         A/V sync across 2 switch elements.
12340
12341 2007-05-17  Edward Hervey  <edward@fluendo.com>
12342
12343         * sys/osxvideo/osxvideosink.h:
12344         * sys/osxvideo/osxvideosink.m:
12345         Fix a stupid #if vs #ifdef bug. Should use the proper colorspace now.
12346         Use a separate thread/task for the cocoa event_loop, else it wouldn't
12347         stop.
12348
12349 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
12350
12351         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
12352         (gst_real_audio_dec_setcaps):
12353         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain):
12354           Don't crash when we get a buffer and our input caps haven't been set
12355           yet; also, don't leak all the input buffers (realaudiodec only).
12356
12357 2007-05-16  Stefan Kost  <ensonic@users.sf.net>
12358
12359         patch by: Stanislav Brabec <sbrabec@suse.cz>
12360
12361         * configure.ac:
12362         * ext/amrwb/Makefile.am:
12363         * ext/amrwb/amrwb-code/Makefile.am:
12364         * ext/amrwb/amrwb-code/amrwb/Makefile.am:
12365         * ext/amrwb/amrwb-code/amrwb/README:
12366         * ext/amrwb/gstamrwbdec.c:
12367         * ext/amrwb/gstamrwbdec.h (__GST_AMRWBDEC_H__):
12368         * ext/amrwb/gstamrwbenc.h (__GST_AMRWBENC_H__):
12369         * ext/amrwb/gstamrwbparse.c:
12370         * ext/amrwb/gstamrwbparse.h (__GST_AMRWBPARSE_H__):
12371         * gst-libs/Makefile.am:
12372         * gst-libs/ext/Makefile.am:
12373         * gst-libs/ext/amrwb/Makefile.am:
12374         * gst-libs/ext/amrwb/README:
12375           Use external shared libamrwb. Fixes #423741 (with lots of cleanup).
12376
12377 2007-05-16  Stefan Kost  <ensonic@users.sf.net>
12378
12379         * ext/x264/gstx264enc.c (gst_x264_enc_init_encoder):
12380           This needs a version check.
12381
12382         * gst/bayer/Makefile.am:
12383           Fix the build.
12384
12385 2007-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12386
12387         * configure.ac:
12388         * sys/directdraw/Makefile.am:
12389         * sys/directsound/Makefile.am:
12390           Add DIRECTDRAW_CFLAGS and DIRECTSOUND_CFLAGS to Makefile.am; save
12391           and restore the various flags in the directdraw/directsound
12392           detection section. Apparently improves cross-compiling for win32
12393           with mingw32 under some circumstances (#437539).
12394
12395 2007-05-15  Wim Taymans  <wim@fluendo.com>
12396
12397         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
12398         We always use fixed caps.
12399
12400 2007-05-14  David Schleef  <ds@schleef.org>
12401
12402         * gst/rtpmanager/gstrtpbin.c:
12403           g_hash_table_remove_all() only exists in 2.12.  Work around.
12404
12405 2007-05-14  David Schleef  <ds@schleef.org>
12406
12407         * configure.ac:
12408         * gst/bayer/Makefile.am:
12409         * gst/bayer/gstbayer.c:
12410         * gst/bayer/gstbayer2rgb.c:
12411           Add a Bayer-to-RGB converter.  You know you want one, uh-huh.
12412           Partial fix for #314160.
12413
12414 2007-05-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12415
12416         * gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
12417           ARG_LAST_TS, parent_class, gst_switch_release_pad,
12418           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
12419           gst_switch_set_property, gst_switch_get_property, gst_switch_getcaps,
12420           gst_switch_dispose, gst_switch_init, gst_switch_class_init):
12421         * gst/switch/gstswitch.h (previous_sinkpad, nb_sinkpads, stop_value,
12422           current_start, last_ts):
12423         Allow application to provide a stop timestamp, so a new segment
12424         update can be sent before switching.
12425
12426 2007-05-14  Wim Taymans  <wim@fluendo.com>
12427
12428         * gst/rtpmanager/async_jitter_queue.c:
12429         (async_jitter_queue_set_flushing_unlocked):
12430         Fix leak when flushing.
12431
12432         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map),
12433         (gst_rtp_bin_class_init):
12434         * gst/rtpmanager/gstrtpbin.h:
12435         Add clear-pt-map signal.
12436
12437         * gst/rtpmanager/gstrtpjitterbuffer.c:
12438         (gst_rtp_jitter_buffer_flush_stop),
12439         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_loop):
12440         Init clock-rate to -1 to mark unknow clock rate.
12441         Fix flushing.
12442
12443 2007-05-13  David Schleef  <ds@schleef.org>
12444
12445         * gst/replaygain/rganalysis.c:
12446           Fix wrong ifdef for visual C++.  Fixes: #437403.
12447           By Ali Sabil <ali.sabil@gmail.com>.
12448
12449 2007-05-12  David Schleef  <ds@schleef.org>
12450
12451         * ext/neon/gstneonhttpsrc.c:
12452           Make redirection the default behavior.  Fixes #413818.
12453
12454 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12455
12456         * gst/qtdemux/qtdemux.c (gst_qtdemux_move_stream,
12457           gst_qtdemux_loop_state_header, gst_qtdemux_activate_segment,
12458           gst_qtdemux_prepare_current_sample, gst_qtdemux_combine_flows,
12459           gst_qtdemux_loop_state_movie, gst_qtdemux_loop,
12460           qtdemux_parse_segments, qtdemux_parse_trak):
12461         * gst/rtpmanager/rtpsession.c (rtp_session_get_bandwidth,
12462           rtp_session_get_rtcp_bandwidth, rtp_session_get_cname,
12463           rtp_session_get_name, rtp_session_get_email, rtp_session_get_phone,
12464           rtp_session_get_location, rtp_session_get_tool,
12465           rtp_session_process_bye, session_report_blocks):
12466         * gst/rtpmanager/rtpsource.c (rtp_source_process_rtp,
12467           rtp_source_send_rtp, rtp_source_process_sr, rtp_source_process_rb):
12468           More format arg fixing (spotted by Ali Sabil <ali.sabil@gmail.com>).
12469
12470         * gst/switch/Makefile.am:
12471           Add require libraries(spotted by Ali Sabil <ali.sabil@gmail.com>).
12472
12473 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12474
12475         * gst/rtpmanager/async_jitter_queue.c (tail_buffer_duration,
12476           async_jitter_queue_ref, async_jitter_queue_ref_unlocked,
12477           async_jitter_queue_set_low_threshold,
12478           async_jitter_queue_length_ts_units_unlocked,
12479           async_jitter_queue_unref_and_unlock, async_jitter_queue_unref,
12480           async_jitter_queue_lock, async_jitter_queue_push,
12481           async_jitter_queue_push_unlocked, async_jitter_queue_push_sorted,
12482           async_jitter_queue_pop_intern_unlocked, async_jitter_queue_pop,
12483           async_jitter_queue_pop_unlocked, async_jitter_queue_length_unlocked,
12484           async_jitter_queue_set_flushing_unlocked,
12485           async_jitter_queue_unset_flushing_unlocked):
12486           Format arg fix (spotted by Ali Sabil <ali.sabil@gmail.com>).
12487
12488 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12489
12490         * common/m4/gst-x11.m4:
12491           Restore CFLAGS and LIBS.
12492
12493         * configure.ac:
12494           Revert previous patch.
12495
12496 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12497
12498         Patch by: Ali Sabil <ali.sabil@gmail.com>
12499
12500         * configure.ac:
12501           Save and restore CFLAGS for OpenGL check. Fixes #437260.
12502         
12503
12504 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
12505
12506         * docs/plugins/gst-plugins-bad-plugins.args:
12507         Add directraw and directsound sinks properties.
12508
12509 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12510
12511         * configure.ac:
12512           Fix --disable-external (hopefully).
12513
12514 2007-05-09  Wim Taymans  <wim@fluendo.com>
12515
12516         * gst/rtpmanager/gstrtpjitterbuffer.c:
12517         (gst_rtp_jitter_buffer_query):
12518         Pass queries upstream.
12519
12520 2007-05-06  Tim-Philipp Müller  <tim at centricular dot net>
12521
12522         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
12523         (gst_real_audio_dec_finalize):
12524         * gst/real/gstrealaudiodec.h:
12525         * gst/real/gstrealvideodec.c: (open_library), (close_library):
12526         * gst/real/gstrealvideodec.h:
12527           Use GModule instead of using dlsym() directly. Fixes #430598.
12528
12529 2007-05-04  Sebastien Moutte <sebastien@moutte.net>
12530
12531         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12532         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12533         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12534           Add docs for Windows sinks.
12535
12536 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
12537
12538         * gst/speed/gstspeed.c: (speed_src_event), (speed_sink_event),
12539         (speed_chain), (speed_change_state):
12540           Fix event handling a bit by replacing completely dubious code
12541           written by someone else with completely dubious code written
12542           by me. Should at least fix #412077 though.
12543
12544 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
12545
12546         * gst/speed/gstspeed.c: (speed_src_query), (speed_chain),
12547         (plugin_init):
12548           Add debug category; use gst_pad_query_peer_*() utility functions;
12549           use gst_util_scale*(); add gtk-doc blurb.
12550
12551 2007-05-04  Wim Taymans  <wim@fluendo.com>
12552
12553         * gst/rtpmanager/gstrtpjitterbuffer.c:
12554         (gst_rtp_jitter_buffer_query):
12555         Add some debug info.
12556
12557         * gst/rtpmanager/rtpsession.c: (rtp_session_init),
12558         (rtp_session_send_rtp):
12559         Store real user name in the session.
12560
12561 2007-05-03  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
12562
12563         * configure.ac:
12564         * examples/Makefile.am:
12565         * examples/switch/switcher.c (loop, my_bus_callback, switch_timer,
12566           last_message_received, main):
12567         * gst/switch/gstswitch.c (GST_CAT_DEFAULT, gst_switch_details,
12568           gst_switch_src_factory, parent_class, gst_switch_release_pad,
12569           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
12570           gst_switch_set_property, gst_switch_get_property,
12571           gst_switch_get_linked_pad, gst_switch_getcaps,
12572           gst_switch_bufferalloc, gst_switch_get_linked_pads,
12573           gst_switch_dispose, gst_switch_init, gst_switch_base_init,
12574           gst_switch_class_init):
12575         * gst/switch/gstswitch.h (GstSwitch, GstSwitchClass, _GstSwitch,
12576           element, active_sinkpad, srcpad, nb_sinkpads, newsegment_events,
12577           need_to_send_newsegment):
12578         Port switch element and example program to 0.10.
12579
12580 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12581
12582         * ext/wavpack/gstwavpack.c: (plugin_init):
12583         Call bindtextdomain() to get localized strings.
12584         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
12585         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
12586         (gst_wavpack_parse_handle_seek_event),
12587         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_chain):
12588         * ext/wavpack/gstwavpackparse.h:
12589         Handle DISCONT buffers by correctly setting the DISCONT flag
12590         on outgoing buffers when necessary.
12591         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_handle_seek_event)
12592         Send newsegment from the streaming thread.
12593
12594 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12595
12596         * ext/wavpack/gstwavpackparse.c:
12597         (gst_wavpack_parse_handle_seek_event):
12598         Remove old workaround that was needed when seeking after the last
12599         sample. With the fixed error handling this works now as expected
12600         without pushing the last sample although it wasn't requested.
12601
12602 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12603
12604         * ext/wavpack/gstwavpackparse.c:
12605         (gst_wavpack_parse_handle_seek_event):
12606         Handle segment seeks in the seek event handler, correctly work with
12607         stop position == -1 and instead of stopping the task on seek just
12608         pause it.
12609
12610 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12611
12612         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_loop):
12613         Add handling for segment seeks.
12614
12615 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12616
12617         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_pull_buffer),
12618         (gst_wavpack_parse_create_src_pad),
12619         (gst_wavpack_parse_resync_loop), (gst_wavpack_parse_loop),
12620         (gst_wavpack_parse_chain):
12621         Correctly handle errors, especially in the loop function. Before it
12622         was easy to get the task paused but no error being posted on the bus.
12623
12624 2007-04-30  Wim Taymans  <wim@fluendo.com>
12625
12626         * gst/rtpmanager/async_jitter_queue.c: (signal_waiting_threads),
12627         (async_jitter_queue_pop_intern_unlocked):
12628         Fix the case where the buffer underruns and does not block.
12629
12630         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_base_init),
12631         (create_recv_rtcp), (create_send_rtp), (create_rtcp),
12632         (gst_rtp_bin_request_new_pad):
12633         Rename RTCP send pad, like in the session manager.
12634         Allow getting an RTCP pad for receiving even if we don't receive RTP.
12635         fix handling of send_rtp_src pad.
12636
12637         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
12638         When no pt map could be found, fall back to the sinkpad caps.
12639
12640         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
12641         (gst_rtp_session_send_rtp), (create_recv_rtp_sink),
12642         (create_recv_rtcp_sink), (create_send_rtp_sink),
12643         (create_send_rtcp_src):
12644         Fix pad names.
12645
12646         * gst/rtpmanager/rtpsession.c: (source_push_rtp),
12647         (rtp_session_create_source), (rtp_session_process_sr),
12648         (rtp_session_send_rtp), (session_start_rtcp):
12649         * gst/rtpmanager/rtpsession.h:
12650         Unlock session when performing a callback.
12651         Add callbacks for the internal session object.
12652         Fix sending of RTP packets.
12653         first attempt at adding NTP times in the SR packets.
12654         Small debug and doc improvements.
12655
12656         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
12657         Update stats for SR reports.
12658
12659 2007-04-29  Wim Taymans  <wim@fluendo.com>
12660
12661         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_send_rtcp):
12662         Remove debug.
12663
12664         * gst/rtpmanager/rtpsession.c: (rtp_session_process_sr),
12665         (rtp_session_process_sdes), (calculate_rtcp_interval),
12666         (rtp_session_next_timeout), (session_report_blocks):
12667         * gst/rtpmanager/rtpstats.c: (rtp_stats_calculate_rtcp_interval):
12668         Improve debugging
12669         Fix interval for BYE/RTCP packets.
12670
12671 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12672
12673         * docs/plugins/gst-plugins-bad-plugins.args:
12674         * docs/plugins/gst-plugins-bad-plugins.signals:
12675           Commit result of running scanobj-update
12676
12677 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12678
12679         * autogen.sh:
12680           Require automake 1.7
12681         * ext/alsaspdif/Makefile.am:
12682         * ext/divx/Makefile.am:
12683         * ext/ivorbis/Makefile.am:
12684         * ext/musicbrainz/Makefile.am:
12685         * ext/neon/Makefile.am:
12686         * ext/sdl/Makefile.am:
12687         * ext/swfdec/Makefile.am:
12688         * ext/theora/Makefile.am:
12689         * ext/wavpack/Makefile.am:
12690         * ext/xvid/Makefile.am:
12691         * gst/modplug/Makefile.am:
12692           Fix up Makefile.am accordingly.
12693
12694 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12695
12696         * docs/plugins/inspect/plugin-alsaspdif.xml:
12697         * docs/plugins/inspect/plugin-bz2.xml:
12698         * docs/plugins/inspect/plugin-cdxaparse.xml:
12699         * docs/plugins/inspect/plugin-dfbvideosink.xml:
12700         * docs/plugins/inspect/plugin-faac.xml:
12701         * docs/plugins/inspect/plugin-faad.xml:
12702         * docs/plugins/inspect/plugin-filter.xml:
12703         * docs/plugins/inspect/plugin-freeze.xml:
12704         * docs/plugins/inspect/plugin-glimagesink.xml:
12705         * docs/plugins/inspect/plugin-gsm.xml:
12706         * docs/plugins/inspect/plugin-h264parse.xml:
12707         * docs/plugins/inspect/plugin-jack.xml:
12708         * docs/plugins/inspect/plugin-mms.xml:
12709         * docs/plugins/inspect/plugin-modplug.xml:
12710         * docs/plugins/inspect/plugin-musepack.xml:
12711         * docs/plugins/inspect/plugin-musicbrainz.xml:
12712         * docs/plugins/inspect/plugin-neon.xml:
12713         * docs/plugins/inspect/plugin-nsfdec.xml:
12714         * docs/plugins/inspect/plugin-replaygain.xml:
12715         * docs/plugins/inspect/plugin-sdl.xml:
12716         * docs/plugins/inspect/plugin-soundtouch.xml:
12717         * docs/plugins/inspect/plugin-spectrum.xml:
12718         * docs/plugins/inspect/plugin-speed.xml:
12719         * docs/plugins/inspect/plugin-tta.xml:
12720         * docs/plugins/inspect/plugin-videocrop.xml:
12721         * docs/plugins/inspect/plugin-wavpack.xml:
12722         * docs/plugins/inspect/plugin-xingheader.xml:
12723         * docs/plugins/inspect/plugin-xvid.xml:
12724           Add jack and update.
12725
12726 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
12727
12728         * configure.ac:
12729           Don't build equalizer unless we have core from CVS (it won't
12730           work with earlier versions due to GstChildProxy brokeness).
12731           Also up requirements to last released core/base.
12732
12733 2007-04-27  Wim Taymans  <wim@fluendo.com>
12734
12735         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
12736         (gst_rtp_session_send_rtcp), (gst_rtp_session_reconsider):
12737         Move reconsideration code to the rtpsession object.
12738         Simplify timout handling and add reconsideration.
12739
12740         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
12741         (rtp_session_init), (rtp_session_finalize), (on_bye_ssrc),
12742         (on_bye_timeout), (on_timeout), (rtp_session_set_callbacks),
12743         (obtain_source), (rtp_session_create_source),
12744         (update_arrival_stats), (rtp_session_process_rtp),
12745         (rtp_session_process_sr), (rtp_session_process_rr),
12746         (rtp_session_process_bye), (rtp_session_process_rtcp),
12747         (calculate_rtcp_interval), (rtp_session_send_bye),
12748         (rtp_session_next_timeout), (session_start_rtcp),
12749         (session_report_blocks), (session_cleanup), (session_sdes),
12750         (session_bye), (is_rtcp_time), (rtp_session_on_timeout):
12751         * gst/rtpmanager/rtpsession.h:
12752         Handle timeout of inactive sources and senders.
12753         Implement BYE scheduling.
12754
12755         * gst/rtpmanager/rtpsource.c: (calculate_jitter),
12756         (rtp_source_process_sr), (rtp_source_get_last_sr),
12757         (rtp_source_get_last_rb):
12758         * gst/rtpmanager/rtpsource.h:
12759         Add members to check for timeouts.
12760
12761         * gst/rtpmanager/rtpstats.c: (rtp_stats_init_defaults),
12762         (rtp_stats_calculate_rtcp_interval), (rtp_stats_add_rtcp_jitter),
12763         (rtp_stats_calculate_bye_interval):
12764         * gst/rtpmanager/rtpstats.h:
12765         Use RFC algorithm for calculating the reporting interval.
12766
12767 2007-04-26  Edward Hervey  <edward@fluendo.com>
12768
12769         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12770         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12771         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12772         * docs/plugins/inspect/plugin-osxvideo.xml:
12773         Add documentation for osxvideo
12774
12775 2007-04-25  Wim Taymans  <wim@fluendo.com>
12776
12777         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread):
12778         Implement forward and reverse reconsideration.
12779
12780         * gst/rtpmanager/rtpsession.c: (rtp_session_get_num_sources),
12781         (rtp_session_get_num_active_sources), (rtp_session_process_sr),
12782         (session_report_blocks):
12783         * gst/rtpmanager/rtpsession.h:
12784         Small cleanups.
12785
12786 2007-04-25  Wim Taymans  <wim@fluendo.com>
12787
12788         reviewed by: <delete if not using a buddy>
12789
12790         * gst/rtpmanager/gstrtpbin.c: (create_stream),
12791         (gst_rtp_bin_class_init), (gst_rtp_bin_set_property),
12792         (gst_rtp_bin_get_property):
12793         * gst/rtpmanager/gstrtpbin.h:
12794         Make default jitterbuffer latency configurable.
12795
12796         * gst/rtpmanager/gstrtpjitterbuffer.c:
12797         (gst_rtp_jitter_buffer_class_init),
12798         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_loop),
12799         (gst_rtp_jitter_buffer_set_property),
12800         (gst_rtp_jitter_buffer_get_property):
12801         Debuging cleanups.
12802
12803 2007-04-25  Wim Taymans  <wim@fluendo.com>
12804
12805         * gst/rtpmanager/gstrtpjitterbuffer.c:
12806         (gst_rtp_jitter_buffer_change_state):
12807         Report NO_PREROLL when going to PAUSED.
12808
12809         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread):
12810         Don't send RTCP right before we are shutting down.
12811
12812         * gst/rtpmanager/rtpsession.c: (rtp_session_process_rtp),
12813         (rtp_session_process_sr), (session_report_blocks),
12814         (rtp_session_perform_reporting):
12815         Improve report blocks.
12816
12817         * gst/rtpmanager/rtpsource.c: (calculate_jitter), (init_seq),
12818         (rtp_source_process_rtp), (rtp_source_process_sr),
12819         (rtp_source_process_rb), (rtp_source_get_last_sr),
12820         (rtp_source_get_last_rb):
12821         * gst/rtpmanager/rtpsource.h:
12822         * gst/rtpmanager/rtpstats.h:
12823         Cleanups, add methods to access stats. 
12824
12825 2007-04-25  Wim Taymans  <wim@fluendo.com>
12826
12827         * gst/rtpmanager/gstrtpbin.c: (create_rtcp):
12828         fix for pad name change
12829
12830         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
12831         (gst_rtp_session_send_rtcp), (gst_rtp_session_clock_rate):
12832         Fix for renamed methods.
12833
12834         * gst/rtpmanager/rtpsession.c: (rtp_session_init),
12835         (rtp_session_finalize), (rtp_session_set_cname),
12836         (rtp_session_get_cname), (rtp_session_set_name),
12837         (rtp_session_get_name), (rtp_session_set_email),
12838         (rtp_session_get_email), (rtp_session_set_phone),
12839         (rtp_session_get_phone), (rtp_session_set_location),
12840         (rtp_session_get_location), (rtp_session_set_tool),
12841         (rtp_session_get_tool), (rtp_session_set_note),
12842         (rtp_session_get_note), (source_push_rtp), (obtain_source),
12843         (rtp_session_add_source), (rtp_session_get_source_by_ssrc),
12844         (rtp_session_create_source), (rtp_session_process_rtp),
12845         (rtp_session_process_sr), (rtp_session_process_sdes),
12846         (rtp_session_process_rtcp), (rtp_session_send_rtp),
12847         (rtp_session_get_reporting_interval), (session_report_blocks),
12848         (session_sdes), (rtp_session_perform_reporting):
12849         * gst/rtpmanager/rtpsession.h:
12850         Prepare for implementing SSRC sampling.
12851         Create SSRC for the session. 
12852         Add methods to set the SDES entries.
12853         fix accounting of senders/receivers.
12854         Implement SR/RR/SDES RTCP reporting.
12855
12856         * gst/rtpmanager/rtpsource.c: (rtp_source_init), (init_seq),
12857         (rtp_source_process_rtp), (rtp_source_process_sr):
12858         * gst/rtpmanager/rtpsource.h:
12859         Implement extended sequence number.
12860
12861         * gst/rtpmanager/rtpstats.c: (rtp_stats_calculate_rtcp_interval):
12862         * gst/rtpmanager/rtpstats.h:
12863         Rename some fields.
12864
12865 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
12866
12867         * gst/y4m/gsty4mencode.c: (gst_y4m_encode_init),
12868         (gst_y4m_encode_setcaps):
12869         * tests/check/elements/y4menc.c: (GST_START_TEST):
12870           Plug some leaks; try to make build bot happy again.
12871
12872 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
12873
12874         * gst/Makefile.am:
12875           Fix distcheck, hopefully (rtpmanager is already in GST_PLUGINS_ALL).
12876
12877 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
12878
12879         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
12880           Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
12881
12882 2007-04-20  Michael Smith  <msmith@fluendo.com>
12883
12884         * ext/faad/gstfaad.c: (gst_faad_open_decoder):
12885           FAAD fails to decode low (e.g. 8 kHz) sample rate AAC data in
12886           quicktime because of sample rate mismatches.
12887           Reenable overriding the implicit SBR behaviour (accidently changed?)
12888           to allow playback of these files.
12889
12890 2007-04-19  David Schleef  <ds@schleef.org>
12891
12892         * configure.ac:
12893           Change rtpmanager disabling to keep -bad releasable.
12894
12895 2007-04-18  David Schleef  <ds@schleef.org>
12896
12897         * configure.ac:
12898         * gst/Makefile.am:
12899           Fix wtay's hack.  rtpmanager is disabled in configure.ac on
12900           line 268.
12901
12902 2007-04-18  Wim Taymans  <wim@fluendo.com>
12903
12904         * gst/Makefile.am:
12905         Add rtpmanager dir to dist.
12906
12907 2007-04-18  Wim Taymans  <wim@fluendo.com>
12908
12909         * configure.ac:
12910         Disable rtpmanager for now because it depends on CVS -base.
12911
12912         * gst/rtpmanager/Makefile.am:
12913         Added new files for session manager.
12914
12915         * gst/rtpmanager/gstrtpjitterbuffer.h:
12916         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
12917         (create_stream), (pt_map_requested), (new_ssrc_pad_found):
12918         Some cleanups. 
12919         the session manager can now also request a pt-map.
12920
12921         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_base_init),
12922         (gst_rtp_session_class_init), (gst_rtp_session_init),
12923         (gst_rtp_session_finalize), (rtcp_thread), (start_rtcp_thread),
12924         (stop_rtcp_thread), (gst_rtp_session_change_state),
12925         (gst_rtp_session_process_rtp), (gst_rtp_session_send_rtp),
12926         (gst_rtp_session_send_rtcp), (gst_rtp_session_clock_rate),
12927         (gst_rtp_session_get_time), (gst_rtp_session_event_recv_rtp_sink),
12928         (gst_rtp_session_chain_recv_rtp),
12929         (gst_rtp_session_event_recv_rtcp_sink),
12930         (gst_rtp_session_chain_recv_rtcp),
12931         (gst_rtp_session_event_send_rtp_sink),
12932         (gst_rtp_session_chain_send_rtp), (create_send_rtcp_src),
12933         (gst_rtp_session_request_new_pad):
12934         * gst/rtpmanager/gstrtpsession.h:
12935         We can ask for pt-map now too when the session manager needs it.
12936         Hook up to the new session manager, implement the needed callbacks for
12937         pushing data, getting clock time and requesting clock-rates.
12938         Rename rtcp_src to send_rtcp_src to make it clear that this RTCP is to
12939         be send to clients.
12940         Add code to start and stop the thread that will schedule RTCP through
12941         the session manager.
12942
12943         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
12944         (rtp_session_init), (rtp_session_finalize),
12945         (rtp_session_set_property), (rtp_session_get_property),
12946         (on_new_ssrc), (on_ssrc_collision), (on_ssrc_validated),
12947         (on_bye_ssrc), (rtp_session_new), (rtp_session_set_callbacks),
12948         (rtp_session_set_bandwidth), (rtp_session_get_bandwidth),
12949         (rtp_session_set_rtcp_bandwidth), (rtp_session_get_rtcp_bandwidth),
12950         (source_push_rtp), (source_clock_rate), (check_collision),
12951         (obtain_source), (rtp_session_add_source),
12952         (rtp_session_get_num_sources),
12953         (rtp_session_get_num_active_sources),
12954         (rtp_session_get_source_by_ssrc),
12955         (rtp_session_get_source_by_cname), (rtp_session_create_source),
12956         (update_arrival_stats), (rtp_session_process_rtp),
12957         (rtp_session_process_sr), (rtp_session_process_rr),
12958         (rtp_session_process_sdes), (rtp_session_process_bye),
12959         (rtp_session_process_app), (rtp_session_process_rtcp),
12960         (rtp_session_send_rtp), (rtp_session_get_rtcp_interval),
12961         (rtp_session_produce_rtcp):
12962         * gst/rtpmanager/rtpsession.h:
12963         The advanced beginnings of the main session manager that handles the
12964         participant database of RTPSources, SSRC probation, SSRC collisions,
12965         parse RTCP to update source stats. etc..
12966
12967         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
12968         (rtp_source_init), (rtp_source_finalize), (rtp_source_new),
12969         (rtp_source_set_callbacks), (rtp_source_set_as_csrc),
12970         (rtp_source_set_rtp_from), (rtp_source_set_rtcp_from),
12971         (push_packet), (get_clock_rate), (calculate_jitter),
12972         (rtp_source_process_rtp), (rtp_source_process_bye),
12973         (rtp_source_send_rtp), (rtp_source_process_sr),
12974         (rtp_source_process_rb):
12975         * gst/rtpmanager/rtpsource.h:
12976         Object that encapsulates an SSRC and its state in the database.
12977         Calculates the jitter and transit times of data packets.
12978
12979         * gst/rtpmanager/rtpstats.c: (rtp_stats_init_defaults),
12980         (rtp_stats_calculate_rtcp_interval), (rtp_stats_add_rtcp_jitter):
12981         * gst/rtpmanager/rtpstats.h:
12982         Various stats regarding the session and sources.
12983         Used to calculate the RTCP interval.
12984
12985 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
12986
12987         * gst/app/Makefile.am:
12988           Fix CFLAGS and hopefully #430594.
12989
12990 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
12991
12992         * gst/nsf/types.h:
12993           Rename #ifndef header guard symbol to something less generic, so
12994           types.h doesn't get skipped over when compiling on MingW. Include
12995           GLib headers and use those to set the endianness and the basic
12996           types so that this isn't entirely broken for non-x86 architectures.
12997
12998 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
12999
13000         * gst/mve/gstmvedemux.c: (gst_mve_audio_init):
13001           Use G_LITTLE_ENDIAN instead of LITTLE_ENDIAN, so stuff compiles on
13002           MingW (no idea though why we add a BYTE_ORDER endianness field if
13003           the audio is compressed).
13004
13005 2007-04-14  Sebastien Moutte <sebastien@moutte.net>
13006
13007         * docs/plugins/inspect/plugin-directdraw.xml:
13008         * docs/plugins/inspect/plugin-directsound.xml:
13009         * docs/plugins/inspect/plugin-waveform.xml:
13010           Add xml doc files for Windows sinks
13011         * win32/vs6/libgstqtdemux.dsp:
13012         * win32/vs6/libgstmpegvideoparse.dsp:
13013         * win32/vs6/gst_plugins_bad.dsw:
13014          Update projects files.
13015         
13016 2007-04-13  Wim Taymans  <wim@fluendo.com>
13017
13018         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13019         (gst_rtp_bin_init), (gst_rtp_bin_finalize), (new_ssrc_pad_found),
13020         (create_recv_rtp), (gst_rtp_bin_request_new_pad):
13021         * gst/rtpmanager/gstrtpbin.h:
13022         * gst/rtpmanager/gstrtpclient.c:
13023         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
13024         (gst_rtp_session_init), (gst_rtp_session_finalize),
13025         (gst_rtp_session_event_recv_rtp_sink),
13026         (gst_rtp_session_event_recv_rtcp_sink),
13027         (gst_rtp_session_chain_recv_rtcp),
13028         (gst_rtp_session_request_new_pad):
13029         Protect lists and structures with locks.
13030         Return FLOW_OK from RTCP messages for now.
13031
13032 2007-04-12  Wim Taymans  <wim@fluendo.com>
13033
13034         * gst/qtdemux/qtdemux.c:
13035         Make timescale 32 bits again so we don't screw up the pts_offset
13036         calculations.
13037
13038 2007-04-12  Wim Taymans  <wim@fluendo.com>
13039
13040         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13041         (create_stream), (gst_rtp_bin_class_init), (pt_map_requested):
13042         Emit pt map requests and cache results.
13043
13044         * gst/rtpmanager/gstrtpjitterbuffer.c:
13045         (gst_rtp_jitter_buffer_class_init),
13046         (gst_jitter_buffer_sink_parse_caps),
13047         (gst_jitter_buffer_sink_setcaps),
13048         (gst_rtp_jitter_buffer_get_clock_rate),
13049         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
13050         * gst/rtpmanager/gstrtpjitterbuffer.h:
13051         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
13052         Emit request-pt-map signals.
13053
13054 2007-04-11  Wim Taymans  <wim@fluendo.com>
13055
13056         * gst/rtpmanager/gstrtpbin-marshal.list:
13057         Some more custom marshallers.
13058
13059         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13060         (clock_rate_request), (create_stream), (gst_rtp_bin_class_init),
13061         (pt_map_requested), (new_ssrc_pad_found), (create_recv_rtp):
13062         * gst/rtpmanager/gstrtpbin.h:
13063         Prepare for caching pt maps.
13064         Connect to signals to collect pt maps.
13065
13066         * gst/rtpmanager/gstrtpjitterbuffer.c:
13067         (gst_rtp_jitter_buffer_class_init),
13068         (gst_jitter_buffer_sink_setcaps), (gst_rtp_jitter_buffer_loop):
13069         * gst/rtpmanager/gstrtpjitterbuffer.h:
13070         Add request_clock_rate signal.
13071         Use scale insteat of scale_int because the later does not deal with
13072         negative numbers.
13073
13074         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init),
13075         (gst_rtp_pt_demux_chain):
13076         * gst/rtpmanager/gstrtpptdemux.h:
13077         Implement request-pt-map signal.
13078
13079 2007-04-11  Wim Taymans  <wim@fluendo.com>
13080
13081         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
13082         (qtdemux_parse_samples), (qtdemux_parse_segments),
13083         (qtdemux_parse_trak), (qtdemux_parse_tree):
13084         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_mdhd):
13085         Handle version 1 mdhd atoms to get extended precision durations.
13086         Fixes #426972.
13087
13088 2007-04-10  Wim Taymans  <wim@fluendo.com>
13089
13090         * gst/rtpmanager/.cvsignore:
13091         * gst/rtpmanager/Makefile.am:
13092         * gst/rtpmanager/gstrtpbin-marshal.list:
13093         Added custom marshallers for signals.
13094
13095         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
13096         * gst/rtpmanager/gstrtpbin.h:
13097         Prepare for emiting pt map signals.
13098
13099         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init):
13100         * gst/rtpmanager/gstrtpssrcdemux.c:
13101         (gst_rtp_ssrc_demux_class_init):
13102         Fix signals.
13103
13104 2007-04-06  Wim Taymans  <wim@fluendo.com>
13105
13106         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
13107         (gst_rtp_bin_init), (gst_rtp_bin_provide_clock):
13108         * gst/rtpmanager/gstrtpbin.h:
13109         Provide a clock.
13110
13111 2007-04-06  Wim Taymans  <wim@fluendo.com>
13112
13113         * gst/rtpmanager/gstrtpbin.c: (create_rtcp):
13114         Fix pad template name parsing.
13115
13116 2007-04-05  Wim Taymans  <wim@fluendo.com>
13117
13118         * gst/rtpmanager/gstrtpjitterbuffer.c:
13119         (gst_jitter_buffer_sink_setcaps), (gst_rtp_jitter_buffer_chain),
13120         (gst_rtp_jitter_buffer_loop):
13121         Add some debug and comments.
13122         Fix double unref() in error cases.
13123
13124 2007-04-05  Wim Taymans  <wim@fluendo.com>
13125
13126         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
13127         (gst_rtp_xqt_depay_change_state):
13128         * gst/qtdemux/gstrtpxqtdepay.h:
13129         Try to recover from packet loss a little better.
13130
13131 2007-04-05  Wim Taymans  <wim@fluendo.com>
13132
13133         * gst/rtpmanager/gstrtpbin.c: (find_session_by_id),
13134         (create_session), (find_stream_by_ssrc), (create_stream),
13135         (gst_rtp_bin_class_init), (new_payload_found),
13136         (new_ssrc_pad_found), (create_recv_rtp), (create_recv_rtcp),
13137         (create_send_rtp), (create_rtcp):
13138         * gst/rtpmanager/gstrtpbin.h:
13139         Add debugging category.
13140         Added RTPStream to manage stream per SSRC, each with its own
13141         jitterbuffer and ptdemux.
13142         Added SSRCDemux.
13143         Connect to various SSRC and PT signals and create ghostpads, link stuff.
13144
13145
13146         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13147         Added rtpbin to elements.
13148
13149         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
13150         Fix caps and forward GstFlowReturn
13151
13152         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
13153         (gst_rtp_session_event_recv_rtp_sink),
13154         (gst_rtp_session_chain_recv_rtp),
13155         (gst_rtp_session_event_recv_rtcp_sink),
13156         (gst_rtp_session_chain_recv_rtcp),
13157         (gst_rtp_session_event_send_rtp_sink),
13158         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
13159         (create_recv_rtcp_sink), (create_send_rtp_sink), (create_rtcp_src),
13160         (gst_rtp_session_request_new_pad):
13161         Add debug category.
13162         Add event handling
13163
13164         * gst/rtpmanager/gstrtpssrcdemux.c: (find_rtp_pad_for_ssrc),
13165         (create_rtp_pad_for_ssrc), (gst_rtp_ssrc_demux_class_init),
13166         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_chain),
13167         (gst_rtp_ssrc_demux_change_state):
13168         * gst/rtpmanager/gstrtpssrcdemux.h:
13169         Add debug category.
13170         Add new-pt-pad signal.
13171
13172 2007-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13173
13174         submitted by: Mogens Jaeger <mogens@jaeger.tf>
13175
13176         * po/LINGUAS:
13177         * po/da.po:
13178           Added Danish translation.
13179
13180 2007-04-04  Wim Taymans  <wim@fluendo.com>
13181
13182         * gst/rtpmanager/Makefile.am:
13183         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13184         * gst/rtpmanager/gstrtpssrcdemux.c: (find_pad_for_ssrc),
13185         (create_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init),
13186         (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_init),
13187         (gst_rtp_ssrc_demux_finalize), (gst_rtp_ssrc_demux_sink_event),
13188         (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_src_event),
13189         (gst_rtp_ssrc_demux_change_state):
13190         * gst/rtpmanager/gstrtpssrcdemux.h:
13191         Added simple SSRC demuxer.
13192
13193 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
13194
13195         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
13196         (gst_jack_ring_buffer_acquire):
13197           Try t better name clients. properly handle return codes when re-
13198           establishing links.
13199
13200 2007-04-03  David Schleef  <ds@schleef.org>
13201
13202         * sys/glsink/glimagesink.c:
13203           Fix handling of video/x-raw-yuv.  Add overlay handling.
13204
13205 2007-04-03  Wim Taymans  <wim@fluendo.com>
13206
13207         * gst/rtpmanager/gstrtpbin.c: (find_session_by_id),
13208         (create_session), (gst_rtp_bin_base_init), (create_recv_rtp),
13209         (create_recv_rtcp), (create_send_rtp), (create_rtcp),
13210         (gst_rtp_bin_request_new_pad):
13211         * gst/rtpmanager/gstrtpbin.h:
13212         * gst/rtpmanager/gstrtpclient.c:
13213         Some more ghostpad magic.
13214
13215 2007-04-03  Wim Taymans  <wim@fluendo.com>
13216
13217         * gst/rtpmanager/Makefile.am:
13218         Add .h file so it can be disted properly.
13219
13220 2007-04-03  Wim Taymans  <wim@fluendo.com>
13221
13222         * configure.ac:
13223         * gst/rtpmanager/Makefile.am:
13224         * gst/rtpmanager/async_jitter_queue.c: (async_jitter_queue_new),
13225         (signal_waiting_threads), (async_jitter_queue_ref),
13226         (async_jitter_queue_ref_unlocked),
13227         (async_jitter_queue_set_low_threshold),
13228         (async_jitter_queue_set_high_threshold),
13229         (async_jitter_queue_set_max_queue_length),
13230         (async_jitter_queue_get_g_queue), (calculate_ts_diff),
13231         (async_jitter_queue_length_ts_units_unlocked),
13232         (async_jitter_queue_unref_and_unlock), (async_jitter_queue_unref),
13233         (async_jitter_queue_lock), (async_jitter_queue_unlock),
13234         (async_jitter_queue_push), (async_jitter_queue_push_unlocked),
13235         (async_jitter_queue_push_sorted),
13236         (async_jitter_queue_push_sorted_unlocked),
13237         (async_jitter_queue_insert_after_unlocked),
13238         (async_jitter_queue_pop_intern_unlocked), (async_jitter_queue_pop),
13239         (async_jitter_queue_pop_unlocked), (async_jitter_queue_length),
13240         (async_jitter_queue_length_unlocked),
13241         (async_jitter_queue_set_flushing_unlocked),
13242         (async_jitter_queue_unset_flushing_unlocked),
13243         (async_jitter_queue_set_blocking_unlocked):
13244         * gst/rtpmanager/async_jitter_queue.h:
13245         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_base_init),
13246         (gst_rtp_bin_class_init), (gst_rtp_bin_init),
13247         (gst_rtp_bin_finalize), (gst_rtp_bin_set_property),
13248         (gst_rtp_bin_get_property), (gst_rtp_bin_change_state),
13249         (gst_rtp_bin_request_new_pad), (gst_rtp_bin_release_pad):
13250         * gst/rtpmanager/gstrtpbin.h:
13251         * gst/rtpmanager/gstrtpclient.c: (new_pad), (create_stream),
13252         (free_stream), (find_stream_by_ssrc), (gst_rtp_client_base_init),
13253         (gst_rtp_client_class_init), (gst_rtp_client_init),
13254         (gst_rtp_client_finalize), (gst_rtp_client_set_property),
13255         (gst_rtp_client_get_property), (gst_rtp_client_change_state),
13256         (gst_rtp_client_request_new_pad), (gst_rtp_client_release_pad):
13257         * gst/rtpmanager/gstrtpclient.h:
13258         * gst/rtpmanager/gstrtpjitterbuffer.c:
13259         (gst_rtp_jitter_buffer_base_init),
13260         (gst_rtp_jitter_buffer_class_init), (gst_rtp_jitter_buffer_init),
13261         (gst_rtp_jitter_buffer_dispose), (gst_rtp_jitter_buffer_getcaps),
13262         (gst_jitter_buffer_sink_setcaps), (free_func),
13263         (gst_rtp_jitter_buffer_flush_start),
13264         (gst_rtp_jitter_buffer_flush_stop),
13265         (gst_rtp_jitter_buffer_src_activate_push),
13266         (gst_rtp_jitter_buffer_change_state), (priv_compare_rtp_seq_lt),
13267         (compare_rtp_buffers_seq_num), (gst_rtp_jitter_buffer_sink_event),
13268         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop),
13269         (gst_rtp_jitter_buffer_query),
13270         (gst_rtp_jitter_buffer_set_property),
13271         (gst_rtp_jitter_buffer_get_property):
13272         * gst/rtpmanager/gstrtpjitterbuffer.h:
13273         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13274         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_base_init),
13275         (gst_rtp_pt_demux_class_init), (gst_rtp_pt_demux_init),
13276         (gst_rtp_pt_demux_finalize), (gst_rtp_pt_demux_chain),
13277         (gst_rtp_pt_demux_getcaps), (find_pad_for_pt),
13278         (gst_rtp_pt_demux_setup), (gst_rtp_pt_demux_release),
13279         (gst_rtp_pt_demux_change_state):
13280         * gst/rtpmanager/gstrtpptdemux.h:
13281         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_base_init),
13282         (gst_rtp_session_class_init), (gst_rtp_session_init),
13283         (gst_rtp_session_finalize), (gst_rtp_session_set_property),
13284         (gst_rtp_session_get_property), (gst_rtp_session_change_state),
13285         (gst_rtp_session_chain_recv_rtp),
13286         (gst_rtp_session_chain_recv_rtcp),
13287         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
13288         (create_recv_rtcp_sink), (create_send_rtp_sink), (create_rtcp_src),
13289         (gst_rtp_session_request_new_pad), (gst_rtp_session_release_pad):
13290         * gst/rtpmanager/gstrtpsession.h:
13291         Add RTP session management elements. Still in progress.
13292
13293 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
13294
13295         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
13296         (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps),
13297         (gst_wavpack_dec_clip_outgoing_buffer),
13298         (gst_wavpack_dec_post_tags), (gst_wavpack_dec_chain):
13299         * ext/wavpack/gstwavpackdec.h:
13300         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
13301         (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config),
13302         (gst_wavpack_enc_chain):
13303         * ext/wavpack/gstwavpackenc.h:
13304         * ext/wavpack/gstwavpackparse.c:
13305         Don't play audioconvert. As wavpack wants/outputs all samples with
13306         width==32 and depth=[1,32] accept this and let audioconvert convert
13307         to accepted formats instead of doing it in the element for n*8 depths.
13308         This also adds support for non-n*8 depths and prevents some useless
13309         memory allocations. Fixes #421598
13310         Also add a workaround for bug #421542 in wavpackenc for now...
13311         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
13312         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
13313         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
13314         Consider the change above in the unit tests and test if the correct
13315         caps are accepted and set. Also check for GST_BUFFER_OFFSET_END in
13316         the wavpackparse unit test.
13317
13318         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init),
13319         (gst_wavpack_dec_sink_set_caps):
13320         Set caps on the src pad as soon as possible.
13321
13322         * ext/wavpack/gstwavpackdec.h:
13323         * ext/wavpack/gstwavpackcommon.h:
13324         * ext/wavpack/gstwavpackenc.h:
13325         * ext/wavpack/gstwavpackparse.h:
13326         Fix indention. gst-indent is now called by cicl.
13327
13328 2007-03-28  Edward Hervey  <edward@fluendo.com>
13329
13330         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
13331         (gst_qtdemux_chain), (qtdemux_parse_samples):
13332         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_ctts):
13333         * gst/qtdemux/qtdemux_dump.h:
13334         * gst/qtdemux/qtdemux_fourcc.h:
13335         * gst/qtdemux/qtdemux_types.c:
13336         Process 'ctts' atoms, which are present in AVC ISO files (.mov files
13337         with h264 video).
13338         Use the offset present in 'ctts' to calculate the PTS for each packet
13339         and set the PTS on outgoing buffers.
13340         Fixes #423283
13341
13342 2007-03-27  Julien MOUTTE  <julien@moutte.net>
13343
13344         * ext/xvid/gstxviddec.c: (gst_xviddec_chain): Add some
13345         debug log and fix a stupid output buffer duration bug.
13346
13347 2007-03-25  Tim-Philipp Müller  <tim at centricular dot net>
13348
13349         Patch by: Michal Benes <michal.benes at itonis tv>
13350         Patch by: Josef Zlomek <josef.zlomek at itonis tv>
13351
13352         * configure.ac:
13353         * ext/Makefile.am:
13354         * ext/x264/Makefile.am:
13355         * ext/x264/gstx264enc.c: (gst_x264_enc_me_get_type),
13356         (gst_x264_enc_analyse_get_type),
13357         (gst_x264_enc_timestamp_queue_init),
13358         (gst_x264_enc_timestamp_queue_free),
13359         (gst_x264_enc_timestamp_queue_put),
13360         (gst_x264_enc_timestamp_queue_get), (gst_x264_enc_header_buf),
13361         (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps),
13362         (gst_x264_enc_base_init), (gst_x264_enc_class_init),
13363         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
13364         (gst_x264_enc_close_encoder), (gst_x264_enc_dispose),
13365         (gst_x264_enc_sink_event), (gst_x264_enc_chain),
13366         (gst_x264_enc_encode_frame), (gst_x264_enc_change_state),
13367         (gst_x264_enc_set_property), (gst_x264_enc_get_property),
13368         (plugin_init):
13369         * ext/x264/gstx264enc.h:
13370           Add libx264-based h264 encoder plugin (#421110). Probably doesn't
13371           handle 'odd' widths and heights correctly yet.
13372
13373 2007-03-24  Tim-Philipp Müller  <tim at centricular dot net>
13374
13375         * gst/interleave/deinterleave.c: (gst_deinterleave_sink_setcaps):
13376           Remove 'channel-positions' field when munging input caps into
13377           1-channel output caps (I guess technically we should set the
13378           position for each channel on the output caps if it's non-NONE,
13379           but I'll save that as a task for another day).
13380
13381 2007-03-23  Michael Smith  <msmith@fluendo.com>
13382
13383         * gst/vmnc/vmncdec.c: (gst_vmnc_dec_class_init),
13384         (gst_vmnc_dec_init), (vmnc_dec_finalize), (gst_vmnc_dec_reset),
13385         (vmnc_handle_wmvi_rectangle), (render_colour_cursor),
13386         (render_cursor), (vmnc_make_buffer), (vmnc_handle_wmvd_rectangle),
13387         (vmnc_handle_wmve_rectangle), (vmnc_handle_wmvf_rectangle),
13388         (vmnc_handle_wmvg_rectangle), (vmnc_handle_wmvh_rectangle),
13389         (vmnc_handle_wmvj_rectangle), (render_raw_tile), (render_subrect),
13390         (vmnc_handle_raw_rectangle), (vmnc_handle_copy_rectangle),
13391         (vmnc_handle_hextile_rectangle), (vmnc_handle_packet),
13392         (vmnc_dec_setcaps), (vmnc_dec_chain_frame), (vmnc_dec_chain),
13393         (vmnc_dec_set_property), (vmnc_dec_get_property):
13394           Redesign to include a parser for raw files (no timestamps in that
13395           mode yet, though).
13396
13397 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
13398
13399         * gst/interleave/deinterleave.c: (gst_deinterleave_add_new_pads),
13400         (gst_deinterleave_remove_pads), (gst_deinterleave_process),
13401         (gst_deinterleave_chain):
13402           Don't leak input buffer in chain function; maintain our own list of
13403           source pads - there are no guarantees about the order of the list
13404           in the GstElement struct, and we want a very specific order; lastly,
13405           some more debugging.
13406
13407 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
13408
13409         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_init):
13410           Alloc user agent string only once.
13411
13412 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13413
13414         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13415         Revert last commit, preventing infinite plugging loops with ranks
13416         is no clean solution and in general there's no reason why one wants
13417         to parse framed wavpack data again.
13418
13419 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13420
13421         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block):
13422         Send the new segment event in time format instead of bytes. This
13423         allows "wavpackenc ! wavpackdec ! someaudiosink" pipelines.
13424
13425         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13426         Accept framed and non-framed input, wavpackparse doesn't care. To
13427         prevent "wavpackparse ! wavpackparse ! ..." pipelines lower the
13428         rank of wavpackparse by one. This allows "wavpackenc ! wavpackparse !
13429         ..." pipelines.
13430
13431 2007-03-22  Thomas Vander Stichele  <thomas at apestaart dot org>
13432
13433         * gst-libs/gst/app/Makefile.am:
13434           Use GST_ALL_LDFLAGS, which actually exists, but maybe David
13435           can confirm that was what he wanted.
13436
13437 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13438
13439         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
13440         Revert to use gst_pad_alloc_buffer() here. We can and should use it.
13441         Thanks to Jan and Mike for noticing my mistake.
13442
13443 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13444
13445         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
13446         (gst_wavpack_enc_init), (gst_wavpack_enc_chain),
13447         (gst_wavpack_enc_rewrite_first_block):
13448         * ext/wavpack/gstwavpackenc.h:
13449         Put the write helpers into the GstWavpackEnc struct directly and not
13450         as a pointer to save two small, but useless mallocs. This also makes
13451         it possible to drop the finalize method.
13452         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_push_buffer):
13453         For consistency reasons also set GST_BUFFER_OFFSET_END on the outgoing
13454         buffers the same way wavpackenc does it.
13455
13456 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13457
13458         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
13459         Don't use gst_pad_alloc_buffer() as we might clip the buffer later and
13460         BaseTransform-based elements will likely break because of wrong
13461         unit-size. Also plug a possible memleak that happens when decoding
13462         fails for some reason.
13463
13464 2007-03-18  Wim Taymans  <wim@fluendo.com>
13465
13466         Based on patch by: Paul Davis <paul at linuxaudiosystems dot com>
13467
13468         * ext/jack/gstjackaudioclient.c: (gst_jack_audio_unref_connection):
13469         Don't need to take the connection lock, it will not be used and could
13470         cause deadlocks.
13471
13472 2007-03-16  Edward Hervey  <edward@fluendo.com>
13473
13474         * sys/osxvideo/osxvideosink.m:
13475         Fix previous commit, we want to pass the NSView in the message.
13476
13477 2007-03-16  Edward Hervey  <edward@fluendo.com>
13478
13479         * sys/osxvideo/osxvideosink.m:
13480         Emit 'have-ns-view' message when working in embedded mode. The message
13481         will contain a pointer to the newly created NSView.
13482
13483 2007-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13484
13485         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code),
13486         (collect_packets), (set_par_from_dar), (set_fps_from_code),
13487         (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr),
13488         (mpeg_util_parse_picture_hdr):
13489         * gst/mpegvideoparse/mpegpacketiser.h:
13490         * gst/mpegvideoparse/mpegvideoparse.c:
13491         (mpegvideoparse_handle_sequence), (mpegvideoparse_handle_picture),
13492         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain),
13493         (mpv_parse_sink_event), (plugin_init):
13494         * gst/mpegvideoparse/mpegvideoparse.h:
13495         Move the MPEG specific byte parsing into the mpegpacketiser code.
13496
13497         Add parsing of picture types, that just feeds into a debug message
13498         for now.
13499
13500         Fix some 64-bit format strings.
13501
13502 2007-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13503
13504         * gst/mpegaudioparse:
13505         Remove empty dir.
13506
13507 2007-03-16  Stefan Kost  <ensonic@users.sf.net>
13508
13509         * gst/equalizer/gstiirequalizer10bands.c:
13510         (gst_iir_equalizer_10bands_init):
13511           A 10 band EQ should be initialized to 10 bands and not to 3.
13512
13513 2007-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
13514
13515         * configure.ac:
13516         * gst/mpeg1videoparse/Makefile.am:
13517         * gst/mpeg1videoparse/gstmp1videoparse.c:
13518         * gst/mpeg1videoparse/gstmp1videoparse.h:
13519         * gst/mpeg1videoparse/mp1videoparse.vcproj:
13520         * gst/mpegvideoparse/Makefile.am:
13521         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_packetiser_init),
13522         (mpeg_packetiser_free), (mpeg_packetiser_add_buf),
13523         (mpeg_packetiser_flush), (mpeg_find_start_code),
13524         (get_next_free_block), (complete_current_block),
13525         (append_to_current_block), (start_new_block), (handle_packet),
13526         (collect_packets), (mpeg_packetiser_handle_eos),
13527         (mpeg_packetiser_get_block), (mpeg_packetiser_next_block):
13528         * gst/mpegvideoparse/mpegpacketiser.h:
13529         * gst/mpegvideoparse/mpegvideoparse.c: (mpegvideoparse_get_type),
13530         (gst_mpegvideoparse_base_init), (gst_mpegvideoparse_class_init),
13531         (mpv_parse_reset), (gst_mpegvideoparse_init),
13532         (gst_mpegvideoparse_dispose), (set_par_from_dar),
13533         (set_fps_from_code), (mpegvideoparse_parse_seq),
13534         (gst_mpegvideoparse_time_code), (gst_mpegvideoparse_flush),
13535         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain),
13536         (mpv_parse_sink_event), (gst_mpegvideoparse_change_state),
13537         (plugin_init):
13538         * gst/mpegvideoparse/mpegvideoparse.h:
13539         * gst/mpegvideoparse/mpegvideoparse.vcproj:
13540         Port mpeg1videoparse to 0.10 and give it rank SECONDARY-1, so
13541         that it's below existing decoders.
13542         
13543         Rename it to mpegvideoparse to reflect that it handles MPEG-1 and
13544         MPEG-2 now.
13545
13546         Re-write the parsing code so that it collects packets differently
13547         and timestamps Picture packets correctly.
13548
13549         Add a list of FIXME's at the top.
13550
13551 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
13552
13553         * tests/icles/equalizer-test.c: (equalizer_set_band_value),
13554         (equalizer_set_all_band_values),
13555         (equalizer_set_band_value_and_wait),
13556         (equalizer_set_all_band_values_and_wait), (do_slider_fiddling),
13557         (main):
13558           Port the example to new equalizer api.
13559
13560 2007-03-14  Edward Hervey  <edward@fluendo.com>
13561
13562         * sys/osxvideo/cocoawindow.h:
13563         * sys/osxvideo/cocoawindow.m:
13564         * sys/osxvideo/osxvideosink.h:
13565         * sys/osxvideo/osxvideosink.m:
13566         Fix leaks when running a NSApp.
13567         Accept any kind of resolutions.
13568         Works in fullscreen. Can maximize.
13569         Only thing left before being able to move this to -good is documentation
13570         and embedded window support.
13571
13572 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13573
13574         * po/hu.po:
13575         * po/it.po:
13576         * po/sv.po:
13577           Updated translations.
13578
13579 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
13580
13581         * gst/equalizer/Makefile.am:
13582         * gst/equalizer/gstiirequalizer.c: (_do_init),
13583         (gst_iir_equalizer_band_set_property),
13584         (gst_iir_equalizer_band_class_init),
13585         (gst_iir_equalizer_band_get_type),
13586         (gst_iir_equalizer_child_proxy_get_child_by_index),
13587         (gst_iir_equalizer_child_proxy_get_children_count),
13588         (gst_iir_equalizer_child_proxy_interface_init), (setup_filter),
13589         (gst_iir_equalizer_compute_frequencies),
13590         (gst_iir_equalizer_transform_ip), (plugin_init):
13591         * gst/equalizer/gstiirequalizer10bands.c:
13592         (gst_iir_equalizer_10bands_base_init),
13593         (gst_iir_equalizer_10bands_class_init),
13594         (gst_iir_equalizer_10bands_init),
13595         (gst_iir_equalizer_10bands_set_property),
13596         (gst_iir_equalizer_10bands_get_property):
13597         * gst/equalizer/gstiirequalizer10bands.h:
13598         * gst/equalizer/gstiirequalizer3bands.c:
13599         (gst_iir_equalizer_3bands_base_init),
13600         (gst_iir_equalizer_3bands_class_init),
13601         (gst_iir_equalizer_3bands_init),
13602         (gst_iir_equalizer_3bands_set_property),
13603         (gst_iir_equalizer_3bands_get_property):
13604         * gst/equalizer/gstiirequalizer3bands.h:
13605         * gst/equalizer/gstiirequalizernbands.c:
13606         (gst_iir_equalizer_nbands_base_init),
13607         (gst_iir_equalizer_nbands_init):
13608           Add 3 and 10 band version and add missing gst_object_sync_values.
13609
13610         * gst/spectrum/gstspectrum.c: (gst_spectrum_event),
13611         (gst_spectrum_transform_ip):
13612           Add some comments about float support.
13613
13614 2007-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
13615
13616         * gst/mpegaudioparse/Makefile.am:
13617         * gst/mpegaudioparse/gstmpegaudioparse.c:
13618         * gst/mpegaudioparse/gstmpegaudioparse.h:
13619         * gst/mpegaudioparse/mpegaudioparse.vcproj:
13620         Remove bogus 2nd copy of mp3parse - it's actually
13621         in -ugly.
13622
13623 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
13624
13625         * examples/app/.cvsignore:
13626         The buildbot demands .cvsignore files, and I comply.
13627
13628 2007-03-11  Sebastien Moutte  <sebastien@moutte.net>
13629
13630         * sys/directdraw/gstdirectdrawsink.c:
13631         * sys/directdraw/gstdirectdrawsink.h:
13632         Handle display mode changes during playback.
13633
13634 2007-03-10  David Schleef  <ds@schleef.org>
13635
13636         * configure.ac:
13637         * examples/Makefile.am:
13638         * examples/app/Makefile.am:
13639         * examples/app/appsrc_ex.c:
13640           Add appsrc/appsink example.
13641         * gst-libs/gst/app/Makefile.am:
13642         * gst-libs/gst/app/gstapp.c:
13643         * gst-libs/gst/app/gstappsink.c:
13644         * gst-libs/gst/app/gstappsink.h:
13645         * gst/app/gstapp.c:
13646           Add appsink.
13647
13648 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
13649
13650         * ext/nas/nassink.c: (NAS_createFlow):
13651         * ext/sndfile/gstsfsrc.c: (gst_sf_src_create):
13652           Printf format string fixes.
13653
13654 2007-03-09  Stefan Kost  <ensonic@users.sf.net>
13655
13656         * gst/equalizer/Makefile.am:
13657         * gst/equalizer/gstiirequalizer.c: (_do_init),
13658         (gst_iir_equalizer_band_set_property),
13659         (gst_iir_equalizer_band_get_property),
13660         (gst_iir_equalizer_band_class_init),
13661         (gst_iir_equalizer_band_get_type),
13662         (gst_iir_equalizer_child_proxy_get_child_by_index),
13663         (gst_iir_equalizer_child_proxy_get_children_count),
13664         (gst_iir_equalizer_child_proxy_interface_init),
13665         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
13666         (gst_iir_equalizer_finalize), (setup_filter),
13667         (gst_iir_equalizer_compute_frequencies),
13668         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
13669         (gst_iir_equalizer_setup), (plugin_init):
13670         * gst/equalizer/gstiirequalizer.h:
13671         * gst/equalizer/gstiirequalizernbands.c:
13672         (gst_iir_equalizer_nbands_base_init),
13673         (gst_iir_equalizer_nbands_class_init),
13674         (gst_iir_equalizer_nbands_init),
13675         (gst_iir_equalizer_nbands_set_property),
13676         (gst_iir_equalizer_nbands_get_property):
13677         * gst/equalizer/gstiirequalizernbands.h:
13678           Refactor plugin into a base class and a first subclass (nband eq). The
13679           nband eq uses GstChildProxy and is controlable. More subclasses will
13680           follow.
13681
13682 2007-03-08  Wim Taymans  <wim@fluendo.com>
13683
13684         Includes patch by: Paul Davis <paul at linuxaudiosystems dot com>
13685
13686         * ext/jack/Makefile.am:
13687         * ext/jack/gstjackaudioclient.c: (gst_jack_audio_client_init),
13688         (jack_process_cb), (jack_sample_rate_cb), (jack_buffer_size_cb),
13689         (jack_shutdown_cb), (connection_find),
13690         (gst_jack_audio_make_connection), (gst_jack_audio_get_connection),
13691         (gst_jack_audio_unref_connection),
13692         (gst_jack_audio_connection_add_client),
13693         (gst_jack_audio_connection_remove_client),
13694         (gst_jack_audio_client_new), (gst_jack_audio_client_free),
13695         (gst_jack_audio_client_get_client),
13696         (gst_jack_audio_client_set_active):
13697         * ext/jack/gstjackaudioclient.h:
13698         Make an object to manage client connections to the jack server which we
13699         will use in the future to run selected jack elements with the same jack
13700         connection.
13701         Make some stuff a bit more threadsafe.
13702         Activate the jack client ASAP.
13703
13704         * ext/jack/gstjackaudiosink.c:
13705         (gst_jack_audio_sink_allocate_channels),
13706         (gst_jack_audio_sink_free_channels), (jack_process_cb),
13707         (gst_jack_ring_buffer_open_device),
13708         (gst_jack_ring_buffer_close_device),
13709         (gst_jack_ring_buffer_acquire), (gst_jack_ring_buffer_release),
13710         (gst_jack_audio_sink_class_init), (gst_jack_audio_sink_init),
13711         (gst_jack_audio_sink_getcaps):
13712         * ext/jack/gstjackaudiosink.h:
13713         Use new client object to manage connections.
13714         Don't remove and recreate all ports, try to reuse them.
13715
13716 2007-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
13717
13718         * ext/wavpack/gstwavpack.c: (plugin_init):
13719         * ext/wavpack/gstwavpackcommon.c:
13720           Use a general wavpack debug category for common code.
13721         * ext/wavpack/gstwavpackstreamreader.c:
13722         (gst_wavpack_stream_reader_set_pos_abs),
13723         (gst_wavpack_stream_reader_set_pos_rel),
13724         (gst_wavpack_stream_reader_write_bytes):
13725           Use the general wavpack debug category here too and add debug
13726           output to the functions that should not be called at all by
13727           the wavpack library.
13728         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_plugin_init):
13729         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_plugin_init):
13730         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13731           Change debugging category names to conform to the conventions.
13732
13733 2007-03-07  Edward Hervey  <edward@fluendo.com>
13734
13735         * gst/qtdemux/qtdemux.c:
13736         * gst/qtdemux/qtdemux.h:
13737         Share qtdemux debug category across all files, otherwise all debugging
13738         in files other than qtdemux.c would end up in the default category.
13739
13740 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
13741
13742         * gst/spectrum/gstspectrum.c: (gst_spectrum_start),
13743         (gst_spectrum_event), (gst_spectrum_transform_ip):
13744         * gst/spectrum/gstspectrum.h:
13745           One FIXME less, by resolving message timestamps against the playback
13746           segment.
13747
13748 2007-03-06  Wim Taymans  <wim@fluendo.com>
13749
13750         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
13751         (gst_spectrum_init), (gst_spectrum_set_property),
13752         (gst_spectrum_transform_ip):
13753         Fix and cleanup default property values.
13754         Add FIXMEs for stuff that looks rather wrong.
13755
13756 2007-03-05  Stefan Kost  <ensonic@users.sf.net>
13757
13758         * gst/spectrum/demo-audiotest.c: (message_handler):
13759         * gst/spectrum/demo-osssrc.c: (message_handler):
13760           Remove two obsolete and confusing comments.
13761
13762 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
13763
13764         * ext/nas/nassink.c: (gst_nas_sink_class_init),
13765         (gst_nas_sink_init), (gst_nas_sink_getcaps),
13766         (gst_nas_sink_unprepare):
13767           Some more cleanups/changes; use boilerplate macro.
13768
13769 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
13770
13771         * ext/nas/Makefile.am:
13772         * ext/nas/README:
13773         * ext/nas/nassink.c: (gst_nas_sink_get_type),
13774         (gst_nas_sink_base_init), (gst_nas_sink_class_init),
13775         (gst_nas_sink_init), (gst_nas_sink_finalize),
13776         (gst_nas_sink_getcaps), (gst_nas_sink_prepare),
13777         (gst_nas_sink_unprepare), (gst_nas_sink_delay),
13778         (gst_nas_sink_reset), (gst_nas_sink_write),
13779         (gst_nas_sink_set_property), (gst_nas_sink_get_property),
13780         (gst_nas_sink_open), (gst_nas_sink_close), (NAS_flush),
13781         (NAS_sendData), (NAS_EventHandler), (gst_nas_sink_sink_get_format),
13782         (NAS_createFlow), (plugin_init):
13783         * ext/nas/nassink.h:
13784           Bunch of nassink clean-ups: make build by adding the right CFLAGS
13785           and LIBS to Makefile.am; rename structure, macros and functions
13786           according to canonical naming scheme; move some things around a bit;
13787           use GST_CAT_DEFAULT instead of GST_CAT_* everywhere; remove README
13788           file that didn't really contain any useful information anyway (the
13789           useful bits have been moved into the 'host' property description).
13790
13791 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
13792
13793         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_finalize):
13794         Chain up in finalize.
13795
13796 2007-03-03  Michael Smith  <msmith@fluendo.com>
13797
13798         * configure.ac:
13799         * gst/vmnc/Makefile.am:
13800           Fix up dist.
13801
13802 2007-03-03  Michael Smith  <msmith@fluendo.com>
13803
13804         * configure.ac:
13805         * gst/vmnc/Makefile.am:
13806         * gst/vmnc/vmncdec.c: (gst_vmnc_dec_base_init),
13807         (gst_vmnc_dec_class_init), (gst_vmnc_dec_init),
13808         (gst_vmnc_dec_reset), (vmnc_handle_wmvi_rectangle),
13809         (render_colour_cursor), (render_cursor), (vmnc_make_buffer),
13810         (vmnc_handle_wmvd_rectangle), (vmnc_handle_wmve_rectangle),
13811         (vmnc_handle_wmvf_rectangle), (vmnc_handle_wmvg_rectangle),
13812         (vmnc_handle_wmvh_rectangle), (vmnc_handle_wmvj_rectangle),
13813         (render_raw_tile), (render_subrect), (vmnc_handle_raw_rectangle),
13814         (vmnc_handle_hextile_rectangle), (vmnc_handle_packet),
13815         (vmnc_dec_setcaps), (vmnc_dec_chain), (vmnc_dec_change_state),
13816         (vmnc_dec_set_property), (vmnc_dec_get_property), (plugin_init):
13817           Add VMnc decoder.
13818           Still missing support for:
13819            - rectangle types I didn't find in my samples (e.g. copy, RRE,
13820              ZRLE)
13821            - alpha-composited cursors
13822
13823 2007-03-03  David Schleef  <ds@schleef.org>
13824
13825         * gst-libs/gst/app/Makefile.am:
13826           Install the headers.
13827
13828 2007-03-03  David Schleef  <ds@schleef.org>
13829
13830         * gst-libs/gst/app/Makefile.am:
13831         * gst-libs/gst/app/gstappbuffer.c:
13832         * gst-libs/gst/app/gstappbuffer.h:
13833         * gst-libs/gst/app/gstappsrc.c:
13834           Add GstAppBuffer that includes a callback and closure for
13835           proper handling of data chunks.
13836
13837 2007-03-03  David Schleef  <ds@schleef.org>
13838
13839         * gst-libs/gst/app/gstappsrc.c:
13840         * gst-libs/gst/app/gstappsrc.h:
13841           Hacking to address issues in 413418.
13842
13843 2007-03-03  David Schleef  <ds@schleef.org>
13844
13845         * Makefile.am:
13846         * configure.ac:
13847         * ext/Makefile.am:
13848         * gst-libs/gst/Makefile.am:
13849         * gst-libs/gst/app/Makefile.am:
13850         * gst-libs/gst/app/gstapp.c:
13851         * gst-libs/gst/app/gstappsrc.c:
13852         * gst-libs/gst/app/gstappsrc.h:
13853         * gst/app/Makefile.am:
13854         * gst/app/gstapp.c:
13855         * gst/app/gstappsrc.c:
13856         * gst/app/gstappsrc.h:
13857           Move the app library to gst-libs/gst/app (duh!)
13858
13859 2007-03-02 Christian Schaller <christian at fluendo dot com>
13860         
13861         Patch by: Nguyen Thai Ngoc Duy <pcloud@gmail.com>
13862
13863         * ext/nas: Upgrade of NAS plugin to 0.10 (#345633)
13864
13865 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13866
13867         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_sink_event):
13868           A few small clean-ups.
13869
13870         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
13871           More debug output for failure cases.
13872
13873 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13874
13875         Patch by: Young-Ho Cha  <ganadist at chollian net>
13876
13877         * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_frame),
13878         (gst_dtsdec_change_state):
13879           Don't do forced downmixing to stereo, but check what downstream
13880           can do and let libdts do the downmixing based on that (#400555).
13881
13882 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13883
13884         Patch by: Lutz Mueller  <lutz topfrose de>
13885
13886         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
13887         (gst_neonhttp_src_init), (gst_neonhttp_src_set_property),
13888         (gst_neonhttp_src_set_uri), (gst_neonhttp_src_set_proxy),
13889         (gst_neonhttp_src_send_request_and_redirect),
13890         (gst_neonhttp_src_uri_set_uri):
13891         * ext/neon/gstneonhttpsrc.h:
13892           Simplify _set_uri() and _set_proxy() and remove the unused ishttp
13893           member (#388050).
13894
13895         * tests/check/elements/neonhttpsrc.c: (GST_START_TEST):
13896           Fix bogus URI to something that actually exists, otherwise we just
13897           bypass the test (and also to something that doesn't redirect, since
13898           neonhttpsrc doesn't seem to handle this very gracefully yet)
13899
13900 2007-03-01  Chris Lord <chris@openedhand.com>
13901
13902         Reviewed by Christian Schaller <christian@fluendo.com>
13903
13904         Fixes Bug 357055
13905         * ext/ivorbis/Makefile.am:
13906         * ext/ivorbis/vorbisdec.c: Add support for Vorbis streams
13907         * ext/ivorbis/vorbisdec.h
13908         * ext/ivorbis/vorbis.c :
13909
13910 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
13911
13912         * tests/check/Makefile.am:
13913         Draw plugins in from the build tree sys/ dir, rather than
13914         picking up the already installed versions.
13915
13916 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
13917
13918         * configure.ac:
13919           Convert to new AG_GST style.
13920
13921 2007-02-27  Christian Schaller <christian at fluendo dot com>
13922
13923         * sys/direct*: Add Pioneers of the Inevitable to copyright
13924         * sys/macosxvideosink: Add Pioneers of the Inevitable to copyright
13925
13926 2007-02-27  Edward Hervey  <edward@fluendo.com>
13927
13928         * sys/osxvideo/cocoawindow.h:
13929         * sys/osxvideo/cocoawindow.m:
13930         * sys/osxvideo/osxvideosink.h:
13931         * sys/osxvideo/osxvideosink.m:
13932         Disable the cocoa event loop since it's a huge memory leak. Should only
13933         matter if the sink isn't used within an NSApp (which has already got
13934         a coca event loop).
13935         Remove all unused code.
13936
13937 2007-02-26  David Schleef  <ds@schleef.org>
13938
13939         * configure.ac:
13940         * gst/app/Makefile.am:
13941         * gst/app/gstapp.c:
13942         * gst/app/gstappsrc.c:
13943         * gst/app/gstappsrc.h:
13944           Add a new plugin/library to make it easy for apps to shove
13945           data into a pipeline.
13946
13947 2007-02-26  Tim-Philipp Müller  <tim at centricular dot net>
13948
13949         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_init):
13950         * gst/real/gstrealvideodec.c: (gst_real_video_dec_init):
13951           Use gst_pad_use_fixed_caps() on source pads, to avoid negotiation
13952           errors in certain situations (e.g. dec ! cs ! ximagesink and the
13953           imagesink window is resized); also, some minor clean-ups.
13954
13955 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
13956
13957         * configure.ac:
13958         * ext/gsm/Makefile.am:
13959         * ext/ladspa/Makefile.am:
13960         * ext/wavpack/Makefile.am:
13961         * gst/equalizer/Makefile.am:
13962         * gst/filter/Makefile.am:
13963         * gst/mve/Makefile.am:
13964         * gst/nsf/Makefile.am:
13965         * gst/replaygain/Makefile.am:
13966         * gst/speed/Makefile.am:
13967           Fix build with LDFLAGS='-Wl,-z,defs'.
13968
13969 2007-02-20  Sébastien Moutte  <sebastien@moutte.net>
13970
13971         * sys/directsound/gstdirectsoundsink.c:
13972         * sys/directsound/gstdirectsoundsink.h:
13973           Remove include of unused headers.
13974         * sys/waveform/gstwaveformplugin.c:
13975         * sys/waveform/gstwaveformsink.c:
13976         * sys/waveform/gstwaveformsink.h:
13977         * win32/vs6/libgstwaveform.dsp:
13978           Add a new waveform plugin which includes an audio sink 
13979           element using the WaveForm win32 API.
13980         * win32/MANIFEST:
13981           Add the new project file form waveform plugin.
13982         
13983 2007-02-18  Sébastien Moutte  <sebastien@moutte.net>
13984         
13985         * sys/directdraw/gstdirectdrawplugin.c:
13986         * sys/directdraw/gstdirectdrawsink.c:
13987         * sys/directdraw/gstdirectdrawsink.h:
13988           Prepare the plugin to move to good:
13989           Remove unused/untested code (rendering to an extern surface,
13990           yuv format rendering).Use GST_(DEBUG/*)_OBJECT macros
13991       Rename all functions from gst_directdrawsink to gst_directdraw_sink.
13992           Add gtk doc section
13993           Fix a bug in gst_directdraw_sink_show_frame, memcpy line by line
13994           respecting destination surface stride.
13995         * sys/directsound/gstdirectsoundplugin.c:
13996         * sys/directsound/gstdirectsoundsink.c:
13997         * sys/directsound/gstdirectsoundsink.h:
13998           Prepare the plugin to move to good:
13999           Rename all functions from gst_directsoundsink to gst_directsound_sink.
14000           Add gtk doc section
14001         * win32/common/config.h.in:
14002         * win32/MANIFEST:
14003           Add config.h.in
14004
14005 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
14006
14007         * configure.ac:
14008         * docs/plugins/Makefile.am:
14009           Add crossreferences to glib/gobject/gstream docs. Also fix typo in
14010           timidity.cfg check.
14011
14012         * ext/timidity/gsttimidity.c: (plugin_init):
14013           Also build if no config was detected at configure time.
14014
14015 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14016
14017         * configure.ac:
14018         * ext/timidity/Makefile.am:
14019         * ext/timidity/gsttimidity.c: (plugin_init):
14020         * ext/timidity/gstwildmidi.c: (gst_wildmidi_base_init),
14021         (gst_wildmidi_class_init), (gst_wildmidi_init),
14022         (gst_wildmidi_src_convert), (gst_wildmidi_src_query),
14023         (gst_wildmidi_get_upstream_size), (gst_wildmidi_get_segment),
14024         (gst_wildmidi_get_new_segment_event), (gst_wildmidi_src_event),
14025         (gst_wildmidi_activate), (gst_wildmidi_activatepull),
14026         (gst_wildmidi_allocate_buffer), (gst_wildmidi_clip_buffer),
14027         (gst_wildmidi_fill_buffer), (gst_wildmidi_get_buffer),
14028         (gst_wildmidi_loop), (gst_wildmidi_change_state),
14029         (gst_wildmidi_set_property), (gst_wildmidi_get_property),
14030         (gst_wildmidi_typefind), (wildmidi_open_config), (plugin_init):
14031         * ext/timidity/gstwildmidi.h:
14032           Add second midi renderer. Fix some double frees and leaks. Clean up
14033           logging.
14034
14035 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
14036
14037         * Makefile.am:
14038           Add win32 MANIFEST
14039         * sys/directdraw/gstdirectdrawsink.c:
14040         * sys/directdraw/gstdirectdrawsink.h:
14041           Clear unused code and add comments.
14042           Remove yuv from template caps, it only supports RGB
14043           actually.
14044           Implement XOverlay interface and remove window and fullscreen 
14045           properties.
14046           Add debug logs.
14047           Test for blit capabilities to return only the current colorspace if
14048           the hardware can't blit for one colorspace to another.
14049         * sys/directsound/gstdirectsoundsink.c:
14050           Add some debugs.
14051         * win32/MANIFEST:
14052           Add VS7 project files and solution.
14053         * win32/vs6/gst_plugins_bad.dsw:
14054         * win32/vs6/libgstdirectdraw.dsp:
14055         * win32/vs6/libgstdirectsound.dsp:
14056         * win32/vs6/libgstqtdemux.dsp:
14057           Update project files.
14058
14059 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14060
14061         * ext/faad/gstfaad.c:
14062           Also update the comment that describes the hack.
14063
14064 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14065
14066         * configure.ac:
14067           Tell the code which faad it is, so that we can adjust the hacks
14068           needed.
14069
14070         * ext/faad/gstfaad.c:
14071           Make our hacks dependent on the fadd lib in use.
14072
14073 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14074
14075         * configure.ac:
14076           Fix faad detection to support also fadd with new symbol prefix.
14077           ChangeLog surgery.
14078           
14079 2007-02-08  Stefan Kost  <ensonic@users.sf.net>
14080
14081         Patch by: Wouter Paesen <wouter@blue-gate.be>
14082
14083         * configure.ac:
14084         * ext/Makefile.am:
14085         * ext/timidity/Makefile.am:
14086         * ext/timidity/gsttimidity.c: (gst_timidity_base_init),
14087         (gst_timidity_class_init), (gst_timidity_init),
14088         (gst_timidity_set_song_options), (gst_timidity_src_convert),
14089         (gst_timidity_src_query), (gst_timidity_get_upstream_size),
14090         (gst_timidity_get_segment), (gst_timidity_get_new_segment_event),
14091         (gst_timidity_src_event), (gst_timidity_activate),
14092         (gst_timidity_activatepull), (gst_timidity_allocate_buffer),
14093         (gst_timidity_clip_buffer), (gst_timidity_fill_buffer),
14094         (gst_timidity_get_buffer), (gst_timidity_loop),
14095         (gst_timidity_change_state), (gst_timidity_typefind),
14096         (plugin_init):
14097         * ext/timidity/gsttimidity.h:
14098           Add timidity midi render plugin (#403992)
14099
14100 2007-02-07  Edward Hervey  <edward@fluendo.com>
14101
14102         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_query):
14103         GST_PAD_PARENT doesn't return a GstObject with an incremented refcount.
14104         Switched to using gst_pad_get_parent().
14105
14106 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14107
14108         * gst/modplug/gstmodplug.cc:
14109           Remove superfluous gst_caps_get_structure() call.
14110
14111 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14112
14113         * configure.ac:
14114           Increase required libsndfile version to a version that's known to
14115           have the function sf_write_sync() to make the build bots happy.
14116
14117 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14118
14119         * ext/sndfile/gstsfsrc.c:
14120           Fix build (installed setup).
14121
14122 2007-02-05  Andy Wingo  <wingo@pobox.com>
14123
14124         * ext/sndfile/Makefile.am:
14125         * ext/sndfile/gstsfsrc.h:
14126         * ext/sndfile/gstsfsrc.c: Port sfsrc to 0.10, pull or push, with
14127         random access woo.
14128
14129 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
14130
14131         * configure.ac:
14132         * gst/equalizer/Makefile.am:
14133         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init),
14134         (gst_iir_equalizer_class_init), (gst_iir_equalizer_init),
14135         (setup_filter), (gst_iir_equalizer_compute_frequencies),
14136         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14137         (gst_iir_equalizer_transform_ip), (gst_iir_equalizer_setup),
14138         (plugin_init):
14139         * gst/equalizer/gstiirequalizer.h:
14140           Fix up to use the newly ported (actually working) GstAudioFilter.
14141           Bump core/base requirements to CVS for this.
14142
14143         * tests/icles/.cvsignore:
14144         * tests/icles/Makefile.am:
14145         * tests/icles/equalizer-test.c: (check_bus),
14146         (equalizer_set_band_value), (equalizer_set_all_band_values),
14147         (equalizer_set_band_value_and_wait),
14148         (equalizer_set_all_band_values_and_wait), (do_slider_fiddling),
14149         (main):
14150           Add brain-dead interactive test for equalizer.
14151
14152 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14153
14154         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_class_init),
14155         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14156         (gst_iir_equalizer_filter_inplace):
14157           Rename "values" property to "band-values" and change type into a
14158           GValueArray, so it's more easily bindable and the range of the
14159           values passed in is defined and checked etc.; also do some
14160           locking.
14161
14162 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14163
14164         Patch by: James "Doc" Livingston  <doclivingston at gmail com>
14165
14166         * configure.ac:
14167         * gst/equalizer/Makefile.am:
14168         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
14169         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
14170         (gst_iir_equalizer_compute_frequencies),
14171         (gst_iir_equalizer_set_property),
14172         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
14173         (plugin_init):
14174           Port equalizer plugin to 0.10 (#403572).
14175
14176 2007-02-02  Andy Wingo  <wingo@pobox.com>
14177
14178         * configure.ac: 
14179         * ext/Makefile.am
14180         * ext/sndfile/Makefile.am:
14181         * ext/sndfile/gstsf.c:
14182         * ext/sndfile/gstsf.h:
14183         * ext/sndfile/gstsfsink.c:
14184         * ext/sndfile/gstsfsink.h: Port sfsink to 0.10. Works in pull or
14185         push mode with interleaved float or int data.
14186
14187 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14188
14189         * ext/alsaspdif/alsaspdifsink.c: (plugin_init):
14190           Set rank to NONE so that it doesn't get autoplugged by autoaudiosink
14191           (which didn't happen previously because the klass string didn't
14192           contain anything autoaudiosink was looking for).
14193
14194 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
14195
14196         * gst/real/gstrealaudiodec.c:
14197         * gst/real/gstrealvideodec.c:
14198           Fix classification in GstElementDetails.
14199
14200 2007-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
14201
14202         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
14203         (gst_wavpack_parse_handle_seek_event),
14204         (gst_wavpack_parse_create_src_pad):
14205         Fix a off by one that leads to the duration reported as one
14206         sample less than it is
14207
14208 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
14209
14210         * ext/alsaspdif/alsaspdifsink.c:
14211         * gst/nsf/gstnsf.c:
14212           Fix classification in GstElementDetails.
14213
14214         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init),
14215         (gst_ladspa_class_init):
14216           Improve Klassification and reduce code slighly.
14217
14218 2007-01-30  Edward Hervey  <edward@fluendo.com>
14219
14220         * configure.ac:
14221         Check for an Objective C compiler
14222         * sys/Makefile.am:
14223         * sys/osxvideo/Makefile.am:
14224         * sys/osxvideo/cocoawindow.h:
14225         * sys/osxvideo/cocoawindow.m:
14226         * sys/osxvideo/osxvideosink.h:
14227         * sys/osxvideo/osxvideosink.m:
14228         Port of osxvideo plugin to 0.10. Do NOT consider 100% stable !
14229         Fixes #402470
14230
14231 2007-01-28  Tim-Philipp Müller  <tim at centricular dot net>
14232
14233         * gst/videocrop/gstvideocrop.c:
14234         (gst_video_crop_get_image_details_from_caps),
14235         (gst_video_crop_transform_packed_complex):
14236           Fix cropping for packed 4:2:2 formats YUYV/YUY2 and UYVY.
14237
14238         * tests/icles/videocrop-test.c: (check_bus_for_errors),
14239         (test_with_caps), (main):
14240           Block streaming thread before changing filter caps while the
14241           pipeline is running so that we don't get random not-negotiated
14242           errors just because GStreamer can't handle that yet.
14243
14244 2007-01-28  Stefan Kost  <ensonic@users.sf.net>
14245
14246         * ext/ladspa/Makefile.am:
14247         * ext/ladspa/gstladspa.c: (gst_ladspa_class_get_param_spec):
14248           add GstController support to ladspa
14249
14250 2007-01-28  Tim-Philipp Müller  <tim at centricular dot net>
14251
14252         Patch by: Rosfran Borges <rosfran dot borges at idnt org br>
14253
14254         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_start),
14255         (gst_mythtv_src_next_program_chain):
14256           Remove sleep calls, they've been moved into the library now ...
14257           (#354451).
14258
14259 2007-01-27  Tim-Philipp Müller  <tim at centricular dot net>
14260
14261         * tests/icles/videocrop-test.c: (test_with_caps):
14262           Catch errors while the test is running.
14263
14264 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
14265
14266         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query):
14267         Fix the SEEKING query. We can seek if we are in pull mode, not the
14268         other way around. Also set the correct format in the seeking query and
14269         handle the case where the headers are not read yet and we can't say
14270         anything about our seeking capabilities.
14271         
14272 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
14273
14274         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
14275         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
14276         Fix spelling in 2 places: It's called Wavpack, not WavePack.
14277
14278 2007-01-25  Edward Hervey  <edward@fluendo.com>
14279
14280         * gst/multifile/gstmultifilesink.c:
14281         (gst_multi_file_sink_class_init):
14282         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init):
14283         * gst/mve/gstmvedemux.c: (gst_mve_video_create_buffer),
14284         (gst_mve_video_palette), (gst_mve_video_code_map),
14285         (gst_mve_audio_init), (gst_mve_audio_data), (gst_mve_timer_create),
14286         (gst_mve_demux_chain):
14287         * gst/mve/gstmvemux.c: (gst_mve_mux_push_chunk):
14288         * gst/mve/mveaudioenc.c: (mve_compress_audio):
14289         * gst/mve/mvevideodec16.c: (ipvideo_copy_block):
14290         * gst/mve/mvevideodec8.c: (ipvideo_copy_block):
14291         * gst/mve/mvevideoenc16.c: (mve_encode_frame16):
14292         * gst/mve/mvevideoenc8.c: (mve_encode_frame8):
14293         Use proper print statements.
14294         Fixes build on mac os x.
14295         <wingo> oo look at me my name is edward i'm hacking on macos wooo
14296
14297 2007-01-24  Wim Taymans  <wim@fluendo.com>
14298
14299         * gst/qtdemux/gstrtpxqtdepay.c:
14300         Fix caps on the depayloader.
14301
14302 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
14303
14304         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_set_property):
14305           Use break here instead of goto.
14306
14307 2007-01-13  Andy Wingo  <wingo@pobox.com>
14308
14309         * gst/interleave/deinterleave.c (gst_deinterleave_add_new_pads):
14310         Use fixed caps on src pads.
14311         (gst_deinterleave_remove_pads): Remove src pads, not sink pads. I
14312         seem to have reverse midas disease!
14313         (gst_deinterleave_process): Proxy timestamps, offsets, durations,
14314         and set caps on outgoing buffers. Fixes #395597, I think.
14315
14316         * gst/interleave/interleave.c (gst_interleave_init): Init the
14317         activation mode properly.
14318         (gst_interleave_src_setcaps, gst_interleave_src_getcaps)
14319         (gst_interleave_init): Set a setcaps and getcaps function on the
14320         src pad, so that we can implement pull-mode negotiation.
14321         (gst_interleave_sink_setcaps): Renamed from
14322         gst_interleave_setcaps, as it only does the sink logic now.
14323         Implement both for pull-mode and push-mode.
14324         (gst_interleave_process): Set caps on our outgoing buffer.
14325         (gst_interleave_src_activate_pull): Fix some more bogus casts.
14326         What is up with this.
14327
14328 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
14329
14330         * ext/mythtv/gstmythtvsrc.c: (do_read_request_response),
14331         (gst_mythtv_src_create), (gst_mythtv_src_get_position),
14332         (gst_mythtv_src_do_seek), (gst_mythtv_src_start),
14333         (gst_mythtv_src_next_program_chain), (gst_mythtv_src_get_size),
14334         (gst_mythtv_src_handle_event), (gst_mythtv_src_handle_query),
14335         (gst_mythtv_src_change_state), (gst_mythtv_src_set_property),
14336         (gst_mythtv_src_uri_get_type):
14337           Clean up a bit, mostly the debug statements; fix deadlock in
14338           _set_property() in the error cases; fix up query function.
14339
14340 2007-01-12  Andy Wingo  <wingo@pobox.com>
14341
14342         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_fixate)
14343         (gst_signal_processor_ouija_caps, gst_signal_processor_prepare):
14344         Remove fixate/ouija stuff, thankfully, due to the new
14345         part-negotiation.txt pull-mode negotiation scheme.
14346         (gst_signal_processor_setcaps_pull)
14347         (gst_signal_processor_setcaps): Implement upstream set_caps pull
14348         proxying for pull mode. Now this works: ladspa-sine-fcac !
14349         audioconvert ! alsasink.
14350
14351 2007-01-12  Edgard Lima <edgard.lima@indt.org.br>
14352
14353         Patch by: Rosfran Borges <rosfran.borges@indt.org.br>
14354
14355         * configure.ac:
14356         * gst-plugins-bad.spec.in:
14357         * ext/Makefile.am:
14358         * ext/mythtv/Makefile.am:
14359         * ext/mythtv/gstmythtvsrc.c:
14360         * ext/mythtv/gstmythtvsrc.h:
14361         MythTV client source plugin created (#354451).
14362
14363 2007-01-12  Wim Taymans  <wim@fluendo.com>
14364
14365         * gst/qtdemux/Makefile.am:
14366         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_base_init),
14367         (gst_rtp_xqt_depay_class_init), (gst_rtp_xqt_depay_init),
14368         (gst_rtp_xqt_depay_finalize), (gst_rtp_quicktime_parse_sd),
14369         (gst_rtp_xqt_depay_setcaps), (gst_rtp_xqt_depay_process),
14370         (gst_rtp_xqt_depay_set_property), (gst_rtp_xqt_depay_get_property),
14371         (gst_rtp_xqt_depay_change_state), (gst_rtp_xqt_depay_plugin_init):
14372         * gst/qtdemux/gstrtpxqtdepay.h:
14373         * gst/qtdemux/qtdemux.c: (gst_qtdemux_base_init),
14374         (gst_qtdemux_loop_state_header), (gst_qtdemux_loop),
14375         (qtdemux_parse_moov), (qtdemux_parse_container),
14376         (qtdemux_parse_node), (gst_qtdemux_add_stream),
14377         (qtdemux_parse_trak), (qtdemux_audio_caps):
14378         * gst/qtdemux/qtdemux.h:
14379         * gst/qtdemux/quicktime.c: (plugin_init):
14380         Add X-QT depayloader that will eventually share code with the demuxer.
14381         Make new plugin entry point with quicktime releated stuff.
14382
14383 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
14384
14385         * gst/qtdemux/Makefile.am:
14386           Dist all new files.
14387
14388 2007-01-12  Wim Taymans  <wim@fluendo.com>
14389
14390         * docs/plugins/Makefile.am:
14391         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
14392         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
14393         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
14394         * docs/plugins/gst-plugins-bad-plugins.signals:
14395         * docs/plugins/inspect/plugin-qtdemux.xml:
14396         Activate docs for jack, sdl and qtdemux.
14397
14398 2007-01-12  Wim Taymans  <wim@fluendo.com>
14399
14400         * ext/jack/gstjackaudiosink.c: (jack_sample_rate_cb),
14401         (jack_buffer_size_cb), (jack_shutdown_cb),
14402         (gst_jack_ring_buffer_acquire):
14403         * ext/jack/gstjackaudiosink.h:
14404         Improve docs.
14405
14406 2007-01-12  Wim Taymans  <wim@fluendo.com>
14407
14408         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init):
14409         Fix typo in docs.
14410
14411 2007-01-12  Wim Taymans  <wim@fluendo.com>
14412
14413         * gst/qtdemux/Makefile.am:
14414         * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc),
14415         (gst_qtdemux_loop_state_header), (gst_qtdemux_combine_flows),
14416         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
14417         (gst_qtdemux_chain), (qtdemux_sink_activate_pull),
14418         (qtdemux_inflate), (qtdemux_parse_moov), (qtdemux_parse_container),
14419         (qtdemux_parse_node), (qtdemux_tree_get_child_by_type),
14420         (qtdemux_tree_get_sibling_by_type), (gst_qtdemux_add_stream),
14421         (qtdemux_parse_samples), (qtdemux_parse_segments),
14422         (qtdemux_parse_trak), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
14423         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
14424         (qtdemux_parse_udta), (qtdemux_redirects_sort_func),
14425         (qtdemux_process_redirects), (qtdemux_parse_redirects),
14426         (qtdemux_parse_tree), (gst_qtdemux_handle_esds),
14427         (qtdemux_video_caps), (qtdemux_audio_caps):
14428         * gst/qtdemux/qtdemux.h:
14429         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_mvhd),
14430         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
14431         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
14432         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
14433         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
14434         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
14435         (qtdemux_dump_unknown), (qtdemux_node_dump_foreach),
14436         (qtdemux_node_dump):
14437         * gst/qtdemux/qtdemux_dump.h:
14438         * gst/qtdemux/qtdemux_fourcc.h:
14439         * gst/qtdemux/qtdemux_types.c: (qtdemux_type_get):
14440         * gst/qtdemux/qtdemux_types.h:
14441         * gst/qtdemux/qtpalette.h:
14442         Cleanup and refactor to make the code more readable.
14443         Move debugging/tables into separate files.
14444         Add 2/4/16 color palletee support.
14445         Fix raw 15 bit RGB handling.
14446         Use more FOURCC constants.
14447         Add some docs.
14448
14449 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14450
14451         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
14452
14453         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
14454         (gst_wavpack_enc_correction_mode_get_type),
14455         (gst_wavpack_enc_joint_stereo_mode_get_type):
14456           Minor clean-up: use enum values instead of hardcoded constants (#395536).
14457
14458 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14459
14460         * gst/mve/gstmvedemux.c: (gst_mve_demux_get_src_query_types),
14461         (gst_mve_demux_handle_src_query), (gst_mve_demux_handle_src_event),
14462         (gst_mve_add_stream):
14463           Support SEEKING query (bad news now delivered properly!); add event
14464           function to source pads to make sure seeks aren't propagated
14465           upstream, even if they aren't handled.
14466
14467 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14468
14469         Patch by: Jens Granseuer  <jensgr at gmx net>
14470
14471         * configure.ac:
14472         * gst/mve/Makefile.am:
14473         * gst/mve/TODO:
14474         * gst/mve/gstmve.c:
14475         * gst/mve/gstmvedemux.c:
14476         * gst/mve/gstmvedemux.h:
14477         * gst/mve/gstmvemux.c:
14478         * gst/mve/gstmvemux.h:
14479         * gst/mve/mve.h:
14480         * gst/mve/mveaudiodec.c:
14481         * gst/mve/mveaudioenc.c:
14482         * gst/mve/mvevideodec16.c:
14483         * gst/mve/mvevideodec8.c:
14484         * gst/mve/mvevideoenc16.c:
14485         * gst/mve/mvevideoenc8.c:
14486           Add Interplay MVE format demuxer/decoder and muxer/encoder. Demuxer
14487           doesn't support seeking yet, but seems to work fine otherwise.
14488           Closes #348973.
14489
14490 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
14491
14492         * gst/real/Makefile.am:
14493           Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
14494
14495 2007-01-07  Andy Wingo  <wingo@pobox.com>
14496
14497         * configure.ac: 
14498         * gst/interleave/Makefile.am: 
14499         * gst/interleave/plugin.h: 
14500         * gst/interleave/plugin.c: 
14501         * gst/interleave/interleave.c: 
14502         * gst/interleave/deinterleave.c: New elements interleave and
14503         deinterleave, implement channel interleaving and deinterleaving.
14504         The interleaver can operate in pull or push mode but the
14505         deinterleaver is more like a demuxer and can only operate in push
14506         mode.
14507         
14508 2007-01-06  Edward Hervey  <edward@fluendo.com>
14509
14510         * configure.ac:
14511         Properly detect the two architectures on which the real plugin can be
14512         built.
14513         Fixes #393622
14514
14515 2007-01-06  Andy Wingo  <wingo@pobox.com>
14516
14517         * ext/ladspa/gstsignalprocessor.c
14518         (gst_signal_processor_ouija_caps): Move around in the source
14519         file...
14520         (gst_signal_processor_prepare, gst_signal_processor_do_pulls):
14521         Call ouija_caps in prepare() instead of do_pulls(), a bit earlier.
14522         This allows us to have caps when we do the pad_alloc_buffer().
14523         (gst_pad_alloc_buffer_and_set_caps): Use self->caps instead of the
14524         pad caps, which might not be set yet.
14525
14526         * ext/ladspa/gstsignalprocessor.c: 
14527         (gst_signal_processor_add_pad_from_template)
14528         (gst_signal_processor_fixate): Add a fixate function, to assist in
14529         pathological ladspa-sine-fcac ! fakesink can-activate-pull=true
14530         cases.
14531         (gst_signal_processor_prepare, gst_signal_processor_process): Add
14532         nframes args so that getrange can tell ladspa how many frames to
14533         process.
14534         (gst_signal_processor_ouija_caps): setcaps needs to be called
14535         before processing, which normally happens when chaining a buffer
14536         to a pad. However in getrange mode with no sinks we need to check
14537         explicitly for this condition, guess some caps to use, and use
14538         those to setcaps(). Hence this mystical function.
14539         (gst_signal_processor_do_pulls): Pull in bytes, not samples.
14540         Divine the caps if necessary.
14541         (gst_signal_processor_getrange): Interpret the length as bytes,
14542         not samples.
14543         (gst_signal_processor_chain): nframes=G_MAXUINT, will be limited
14544         by incoming buffer sizes.
14545
14546 2007-01-06  Edward Hervey  <edward@fluendo.com>
14547
14548         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_finalize):
14549         Don't call the RAFreeDecoder since it randomly causes segfaults.
14550         * gst/real/gstrealaudiodec.h:
14551         indent properly.
14552
14553 2007-01-06  Edward Hervey  <edward@fluendo.com>
14554
14555         Patch by: Lutz Mueller <lutz@topfrose.de>
14556         
14557         * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode),
14558         (gst_real_video_dec_setcaps), (open_library), (close_library),
14559         (gst_real_video_dec_finalize):
14560         * gst/real/gstrealvideodec.h:
14561         Implement error recovery on setcaps failure.
14562
14563 2007-01-06  Edward Hervey  <edward@fluendo.com>
14564
14565         Patch by: Lutz Mueller <lutz@topfrose.de>
14566         
14567         * gst/real/Makefile.am:
14568         * gst/real/gstreal.c: (plugin_init):
14569         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
14570         (gst_real_audio_dec_setcaps), (gst_real_audio_dec_init),
14571         (gst_real_audio_dec_base_init), (gst_real_audio_dec_change_state),
14572         (gst_real_audio_dec_finalize), (gst_real_audio_dec_set_property),
14573         (gst_real_audio_dec_get_property), (gst_real_audio_dec_class_init):
14574         * gst/real/gstrealaudiodec.h:
14575         Added RealAudio wrapper elementfactory.
14576         Modified structures so it can also work on x86_64 using the
14577         adequate .so .
14578
14579 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14580
14581         * configure.ac:
14582         * gst/qtdemux/Makefile.am:
14583         * gst/qtdemux/qtdemux.c: (qtdemux_parse_moov):
14584           Check for zlib and if available pass it explicitly to the linker
14585           when linking qtdemux. If not available (or --disable-external has
14586           been specified!), disable the bits in qtdemux that use it. Fixes
14587           build on MingW (#392856).
14588
14589 2007-01-05  Edward Hervey  <edward@fluendo.com>
14590
14591         * configure.ac:
14592         Real video .so are now also available for x86_64, so we can build the
14593         Real plugin on i386 AND x86_64.
14594         * gst/real/Makefile.am:
14595         * gst/real/gstreal.c: (plugin_init):
14596         New plugin file for real .so wrapper plugins.
14597         * gst/real/gstrealvideodec.c: (gst_real_video_dec_alloc_buffer),
14598         (gst_real_video_dec_decode), (gst_real_video_dec_chain),
14599         (gst_real_video_dec_activate_push), (gst_real_video_dec_setcaps),
14600         (open_library), (close_library), (gst_real_video_dec_init),
14601         (gst_real_video_dec_base_init), (gst_real_video_dec_finalize),
14602         (gst_real_video_dec_set_property),
14603         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
14604         * gst/real/gstrealvideodec.h:
14605         Moved RealVideo element to separate file
14606         Cleaned up code some more.
14607         Make it work on x86_64.
14608         Try several possible locations for .so
14609         Separate opening/closing libraries in separate functions.
14610
14611 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14612
14613         * tests/icles/videocrop-test.c: (main):
14614           Call g_thread_init() right at the beginning. Remove superfluous
14615           gst_init() - we've already been inited via the GOption stuff.
14616
14617 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14618
14619         * configure.ac:
14620           Don't compile rfbsource if we don't have sys/socket.h.
14621           Should fix compilation on MingW.
14622
14623 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
14624
14625         * configure.ac:
14626         * ext/amrwb/Makefile.am:
14627         * ext/amrwb/amrwb-code/Makefile.am:
14628         * ext/amrwb/amrwb-code/run.sh:
14629         * gst-libs/Makefile.am:
14630         * gst-libs/ext/Makefile.am:
14631         * gst-libs/ext/amrwb/Makefile.am:
14632         * gst-libs/ext/amrwb/README:
14633           Move amrwb code getting and building to gst-libs/ext/amrwb
14634           Adapt everything else to match.
14635
14636 2007-01-04  Julien MOUTTE  <julien@moutte.net>
14637
14638         * ext/directfb/dfbvideosink.c:
14639         (gst_dfbvideosink_navigation_send_event),
14640         (gst_dfbvideosink_get_type):
14641         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_open):
14642         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_setcaps),
14643         (gst_sdlvideosink_show_frame),
14644         (gst_sdlvideosink_navigation_send_event):
14645         * ext/sdl/sdlvideosink.h: Fix various compiler warnings that 
14646         reveal potential bugs.
14647
14648 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
14649
14650         Patch by: Vincent Torri  <vtorri at univ-evry fr>
14651
14652         * configure.ac:
14653         * sys/Makefile.am:
14654         * sys/directsound/Makefile.am:
14655         * sys/directsound/gstdirectsoundsink.c:
14656         (gst_directsoundsink_reset):
14657           Add directsoundsink to build and dist it, so it gets built when
14658           compiling with MingW on win32 and the required headers and libraries
14659           are available (fixes: #392638). Also simplify DirectDraw check a bit.
14660
14661         * tests/check/elements/.cvsignore:
14662           Fix CVS ignore for neonhttpsrc test binary.
14663
14664 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
14665
14666         Patch by: Vincent Torri  <vtorri at univ-evry fr>
14667
14668         * configure.ac:
14669         * sys/Makefile.am:
14670         * sys/directdraw/Makefile.am:
14671           Add directdrawsink to build and dist it, so it gets built when
14672           compiling with MingW on win32 and the required headers and libraries
14673           are available (fixes: #392313).
14674
14675         * sys/directdraw/gstdirectdrawsink.c:
14676         (gst_directdrawsink_center_rect), (gst_directdrawsink_show_frame),
14677         (gst_directdrawsink_setup_ddraw),
14678         (gst_directdrawsink_surface_create):
14679           Comment out some unused things and fix some printf format issues in
14680           order to avoid warnings when buildling with MingW (#392313).
14681
14682 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
14683
14684         Patch by: Jens Granseuer  <jensgr at gmx net>
14685
14686         * ext/xvid/gstxvidenc.c: (gst_xvidenc_encode),
14687         (gst_xvidenc_get_property):
14688         * gst/filter/gstbpwsinc.c: (bpwsinc_transform_ip):
14689         * gst/filter/gstfilter.c: (plugin_init):
14690         * gst/filter/gstiir.c: (iir_transform_ip):
14691         * gst/filter/gstlpwsinc.c: (lpwsinc_transform_ip):
14692         * gst/modplug/gstmodplug.cc:
14693         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_header_load),
14694         (gst_nuv_demux_stream_extend_header):
14695           Fix build with gcc-2.x (declare variables at the beginning of a
14696           block etc.). Fixes #391971.
14697
14698 2007-01-02  Lutz Mueller <lutz@topfrose.de>
14699
14700         reviewed by: Edward Hervey  <edward@fluendo.com>
14701
14702         * gst/real/gstreal.c:
14703         (gst_realdec_setcaps): Use codec_data supplied in caps.
14704         (gst_realdec_get_property): Correctly return default path.
14705         (gst_realdec_class_init): Remove unused state_change method.
14706
14707 2007-01-01  Edward Hervey  <edward@fluendo.com>
14708
14709         * configure.ac:
14710         Only build the plugin on 32bit x86 architectures.
14711
14712 2007-01-01  Lutz Mueller <lutz@topfrose.de>
14713
14714         reviewed by: Edward Hervey  <edward@fluendo.com>
14715
14716         * configure.ac:
14717         * gst/real/Makefile.am:
14718         * gst/real/gstreal.c: (gst_realdec_alloc_buffer),
14719         (gst_realdec_decode), (gst_realdec_chain),
14720         (gst_realdec_activate_push), (gst_realdec_setcaps),
14721         (gst_realdec_init), (gst_realdec_base_init),
14722         (gst_realdec_change_state), (gst_realdec_finalize),
14723         (gst_realdec_set_property), (gst_realdec_get_property),
14724         (gst_realdec_class_init), (plugin_init):
14725         New plugin for decoding RealVideo Streams using the x86 32bit
14726         shared libraries.
14727         Closes #354174
14728
14729 2006-12-30  Tim-Philipp Müller  <tim at centricular dot net>
14730
14731         * tests/check/elements/videocrop.c: (GST_START_TEST),
14732         (videocrop_test_cropping_init_context):
14733           When we can't create an element needed for the test, print a message
14734           detailing which element it actually is that's missing (#390673).
14735
14736 2006-12-22 Edgard Lima <edgard.lima@indt.org.br>
14737
14738         * ext/neon/gstneonhttpsrc.c:
14739         * ext/neon/gstneonhttpsrc.h:
14740         Added seek support.
14741         Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
14742         Fixes: #375264.
14743
14744 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
14745
14746         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14747         (cleanup_mpeg2enc):
14748         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14749         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14750         (cleanup_wavpackdec):
14751         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14752         (cleanup_wavpackenc):
14753         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14754           reapply consistent pad (de)activation
14755
14756 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
14757
14758         * configure.ac:
14759         Back to CVS
14760
14761         * gst-plugins-bad.doap:
14762         Add release section for 0.10.4
14763
14764 === release 0.10.4 ===
14765
14766 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
14767
14768         * configure.ac:
14769           releasing 0.10.4, "Black Bugs"
14770
14771 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
14772
14773         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14774         (cleanup_mpeg2enc):
14775         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14776         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14777         (cleanup_wavpackdec):
14778         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14779         (cleanup_wavpackenc):
14780         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14781           revert my freeze breakage
14782
14783 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
14784
14785         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14786         (cleanup_mpeg2enc):
14787         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14788         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14789         (cleanup_wavpackdec):
14790         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14791         (cleanup_wavpackenc):
14792         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14793           consistent pad (de)activation
14794
14795 2006-12-18  Tim-Philipp Müller  <tim at centricular dot net>
14796
14797         * gst/qtdemux/qtdemux.c: (gst_qtdemux_post_progress),
14798         (gst_qtdemux_chain):
14799           Don't post BUFFERING messages in streaming mode if the stream
14800           headers are behind the movie data; instead, post "progress" element
14801           messages as a temporary solution. Apps might get confused and do
14802           silly things to the pipeline state if they see buffering messages
14803           from different sources and don't realize they come from different
14804           sources (#387160).
14805
14806 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14807
14808         * configure.ac:
14809         * ext/Makefile.am:
14810         * ext/ladspa/*:
14811           Move LADPSA plugin from -good for the release, as it's not quite
14812           ready to be enabled by default in the -good module yet.
14813
14814 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14815
14816         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain),
14817         (gst_qtdemux_add_stream):
14818           Don't output g_warning for an unsupported format, just send a
14819           GST_ELEMENT_WARNING and don't add the pad.
14820           Fix the case where it doesn't check for a NULL pad in streaming mode.
14821           Fixes #387137
14822
14823 2006-12-18  Tim-Philipp Müller  <tim at centricular dot net>
14824
14825         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
14826           Fix crash dereferencing NULL pointer if there's no stco atom.
14827           Fixes #387122.
14828
14829 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14830
14831         * ext/wavpack/gstwavpackenc.h:
14832         Use local copy of md5.h, as it disappeared in recent wavpack
14833         installs.
14834         Patch by: Sebastian Dröge <slomo at ubuntu dot com>
14835         Fixes: #387076
14836
14837 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
14838
14839         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
14840         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event):
14841           We don't support seeking in streaming mode, so don't even try.
14842           Implement seeking query so apps can query seekability properly
14843           (see #365414). Fix duration query.
14844
14845 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
14846
14847         * Makefile.am:
14848         * gst-plugins-bad.doap:
14849         * gst-plugins-bad.spec.in:
14850           add doap file
14851
14852 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
14853
14854         * ext/libmms/gstmms.c: (gst_mms_create):
14855           These debug statements should be using LOG level.
14856
14857 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
14858
14859         * gst/modplug/libmodplug/sndfile.cpp:
14860           Fix potential buffer overflow (CVE-2006-4192) (#385788).
14861
14862 2006-12-13  Wim Taymans  <wim@fluendo.com>
14863
14864         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14865         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14866         (qtdemux_audio_caps):
14867         Add AMR-WB to the list of supported formats.
14868
14869 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14870
14871         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create),
14872         (send_request_and_redirect):
14873           Fix minor mem leak in redirect code.
14874
14875         * tests/check/Makefile.am:
14876         * tests/check/elements/.cvsignore:
14877         * tests/check/elements/neonhttpsrc.c: (handoff_cb),
14878         (GST_START_TEST), (neonhttpsrc_suite):
14879         * tests/check/gst-plugins-bad.supp:
14880           Add super-basic unit test for #384140.
14881
14882 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14883
14884         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create),
14885         (send_request_and_redirect):
14886           Set offset on buffers pushed out (id3demux gets confused if the
14887           first buffer does not have an offset of 0). Fixes #384140.
14888
14889 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14890
14891         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
14892         (gst_neonhttp_src_create), (send_request_and_redirect),
14893         (gst_neonhttp_src_start), (oom_callback):
14894          Minor clean-ups; remove newlines at end of debug statements.
14895
14896 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
14897
14898         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
14899           Fix non-working redirects from inetfilm.com (handle 'alis' reference
14900           data type as well). Fixes #378613.
14901
14902 2006-12-11  Wim Taymans  <wim@fluendo.com>
14903
14904         Patch by: Jonathan Matthew <jonathan at kaolin wh9 net>).
14905
14906         * gst/modplug/gstmodplug.cc:
14907         Fix modplug duration query. Fixes #384294.
14908
14909 2006-12-08  Wim Taymans  <wim@fluendo.com>
14910
14911         Patch by: René Stadler  <mail at renestadler de>
14912
14913         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14914         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14915         (qtdemux_audio_caps):
14916         Fix caps for 24 bit raw PCM audio (2).
14917         Fixes #383471.
14918
14919 2006-12-07  Wim Taymans  <wim@fluendo.com>
14920
14921         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14922         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14923         (qtdemux_video_caps):
14924         Handle more H263 variants.
14925
14926 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
14927
14928         * ext/jack/.cvsignore:
14929         Ignore old files as requested by the build slave.
14930
14931 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
14932
14933         * configure.ac:
14934         Update the Jack requirement to the version where I think options_t
14935         appeared
14936
14937 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
14938
14939         * win32/MANIFEST:
14940         Fix compilation on win32 under VS8
14941         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
14942         Partially fixes #381175
14943
14944 2006-11-30  Wim Taymans  <wim@fluendo.com>
14945
14946         Patch by: René Stadler  <mail at renestadler de>
14947
14948         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_event):
14949           Call the base class handler.  Fixes #380610.
14950
14951 2006-11-30  Wim Taymans  <wim@fluendo.com>
14952
14953         * ext/Makefile.am:
14954         Fix build.
14955
14956         * ext/jack/gstjackaudiosink.c: (jack_process_cb),
14957         (jack_sample_rate_cb), (jack_buffer_size_cb), (jack_shutdown_cb),
14958         (gst_jack_ring_buffer_acquire):
14959         Small cleanups.
14960
14961 2006-11-30  Wim Taymans  <wim@fluendo.com>
14962
14963         * configure.ac:
14964         * ext/Makefile.am:
14965         * ext/jack/Makefile.am:
14966         * ext/jack/gstjack.c: (plugin_init):
14967         * ext/jack/gstjack.h:
14968         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_get_type),
14969         (gst_jack_ring_buffer_class_init), (jack_process_cb),
14970         (jack_sample_rate_cb), (jack_buffer_size_cb), (jack_shutdown_cb),
14971         (gst_jack_ring_buffer_init), (gst_jack_ring_buffer_dispose),
14972         (gst_jack_ring_buffer_finalize),
14973         (gst_jack_ring_buffer_open_device),
14974         (gst_jack_ring_buffer_close_device),
14975         (gst_jack_ring_buffer_acquire), (gst_jack_ring_buffer_release),
14976         (gst_jack_ring_buffer_start), (gst_jack_ring_buffer_pause),
14977         (gst_jack_ring_buffer_stop), (gst_jack_ring_buffer_delay),
14978         (gst_jack_connect_get_type), (gst_jack_audio_sink_base_init),
14979         (gst_jack_audio_sink_class_init), (gst_jack_audio_sink_init),
14980         (gst_jack_audio_sink_set_property),
14981         (gst_jack_audio_sink_get_property), (gst_jack_audio_sink_getcaps),
14982         (gst_jack_audio_sink_create_ringbuffer):
14983         * ext/jack/gstjackaudiosink.h:
14984           Added fully functional jackaudiosink.
14985
14986 2006-11-27  Wim Taymans  <wim@fluendo.com>
14987
14988         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14989         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak):
14990           Remove some asserts and replace them with a proper error
14991           message. Fixes #379261.
14992
14993 2006-11-26  Michael Smith  <msmith@fluendo.com>
14994
14995         * ext/theora/theoradec.c: (theora_dec_src_query),
14996         (theora_dec_src_event), (theora_handle_data_packet),
14997         (theora_dec_chain):
14998           Send events on the right pads, since they don't work very well if
14999           you send them in the wrong direction.
15000
15001 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
15002
15003         * ext/audiofile/gstafsink.c:
15004         * ext/polyp/plugin.c: (plugin_init):
15005         * ext/polyp/polypsink.c:
15006         * ext/polyp/polypsink.h:
15007         * sys/dxr3/dxr3audiosink.h:
15008         * sys/dxr3/dxr3spusink.h:
15009         * sys/dxr3/dxr3videosink.h:
15010           remove obsolete _factory_init protos and functions
15011
15012 2006-11-19  Michael Smith  <msmith@fluendo.com>
15013
15014         * gst/librfb/Makefile.am:
15015           Compile with appropriate cflags. Fixes build.
15016
15017 2006-11-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15018
15019         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_tune):
15020         Actually set the TONE parameter for DVB-S when we should.
15021
15022 2006-11-16  David Schleef  <ds@schleef.org>
15023
15024         * gst/librfb/rfbdecoder.c: Fixes for 64-bit architectures.
15025
15026 2006-11-16  David Schleef  <ds@schleef.org>
15027
15028         * gst/librfb/gstrfbsrc.h:  Oops, add this file.
15029
15030 2006-11-16  David Schleef  <ds@schleef.org>
15031
15032         Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
15033
15034         * configure.ac:
15035         * gst/librfb/Makefile.am:
15036         * gst/librfb/gstrfbsrc.c:
15037         * gst/librfb/rfb.c:
15038         * gst/librfb/rfb.h:
15039         * gst/librfb/rfbbuffer.c:
15040         * gst/librfb/rfbbuffer.h:
15041         * gst/librfb/rfbbytestream.c:
15042         * gst/librfb/rfbbytestream.h:
15043         * gst/librfb/rfbcontext.h:
15044         * gst/librfb/rfbdecoder.c:
15045         * gst/librfb/rfbdecoder.h:
15046         * gst/librfb/rfbutil.h:
15047           Port librfb to 0.10 (#376106).
15048
15049 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
15050
15051         * ext/spc/gstspc.c: (spc_play):
15052           Fix build with disabled gst-debug.
15053
15054 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
15055
15056         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
15057
15058         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
15059         (gst_wavpack_dec_init), (gst_wavpack_dec_change_state):
15060         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init),
15061         (gst_wavpack_enc_class_init), (gst_wavpack_enc_reset),
15062         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
15063         (gst_wavpack_enc_change_state):
15064         * ext/wavpack/gstwavpackparse.c:
15065           Some small clean-ups: use enums instead of hard-coded numbers,
15066           const-ify element details, re-factor some code into _reset()
15067           functions (#352605).
15068
15069 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
15070
15071         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_create):
15072         * sys/dvb/gstdvbsrc.h:
15073           Fix minor printf format issue; remove overly paranoid checks in
15074           create function; fix GObject boilerplate macros.
15075
15076 2006-11-14  Wim Taymans  <wim@fluendo.com>
15077
15078         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15079         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak):
15080         Don't parse extra sample params for raw pcm. Fixes #374914.
15081
15082 2006-11-14  Wim Taymans  <wim@fluendo.com>
15083
15084         * tests/check/elements/.cvsignore:
15085         Add cdaudio to ignore.
15086
15087 2006-11-14  Wim Taymans  <wim@fluendo.com>
15088
15089         * ext/Makefile.am:
15090         dist cdaudio dir.
15091
15092 2006-11-14  Wim Taymans  <wim@fluendo.com>
15093
15094         * configure.ac:
15095         * ext/Makefile.am:
15096         Fix cdaudio build.
15097
15098 2006-11-14  Wim Taymans  <wim@fluendo.com>
15099
15100         Patch by: Mark Nauwelaerts <manauw at skynet be>
15101
15102         * tests/check/Makefile.am:
15103         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc),
15104         (GST_START_TEST), (y4menc_suite), (main):
15105         Added y4m test. Fixes #372243.
15106
15107 2006-11-13  Wim Taymans  <wim@fluendo.com>
15108
15109         Patch by: Mark Nauwelaerts <manauw at skynet be>
15110
15111         * configure.ac:
15112         Enable cdaudio and y4m.
15113
15114         * gst/y4m/Makefile.am:
15115         * gst/y4m/gsty4mencode.c: (gst_y4m_encode_base_init),
15116         (gst_y4m_encode_class_init), (gst_y4m_encode_init),
15117         (gst_y4m_encode_reset), (gst_y4m_encode_setcaps),
15118         (gst_y4m_encode_get_stream_header),
15119         (gst_y4m_encode_get_frame_header), (gst_y4m_encode_chain),
15120         (gst_y4m_encode_set_property), (gst_y4m_encode_get_property),
15121         (gst_y4m_encode_change_state), (plugin_init):
15122         * gst/y4m/gsty4mencode.h:
15123         Port of y4mencode to 0.10. 
15124
15125 2006-11-10  David Schleef  <ds@schleef.org>
15126
15127         * configure.ac:
15128         * gst/videoparse/Makefile.am:
15129         * gst/videoparse/gstvideoparse.c:
15130           A little pluggy to make sense out of the random chunks we get
15131           from multifilesrc.
15132
15133 2006-11-10  David Schleef  <ds@schleef.org>
15134
15135         * gst/multifile/Makefile.am:
15136           Let's not depend on a file that doesn't exist.
15137
15138 2006-11-10  David Schleef  <ds@schleef.org>
15139
15140         * gst/multifilesink/Makefile.am:
15141         * gst/multifilesink/gstmultifilesink.c:
15142         * gst/multifilesink/gstmultifilesink.h:
15143         * gst/multifilesink/multifilesink.vcproj:
15144           Remove the old one.
15145
15146 2006-11-10  David Schleef  <ds@schleef.org>
15147
15148         * configure.ac:
15149         * gst/multifile/Makefile.am:
15150         * gst/multifile/gstmultifile.c:
15151         * gst/multifile/gstmultifilesink.c:
15152         * gst/multifile/gstmultifilesrc.c:
15153         * gst/multifile/multifile.vproj:
15154           Revive multifile[src|sink].
15155
15156 2006-11-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15157
15158         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_set_property)
15159         (gst_dvbsrc_create), (gst_dvbsrc_output_frontend_stats),
15160         (gst_dvbsrc_tune), (gst_dvbsrc_set_pes_filters):
15161         Rename set_pes_filter to set_pes_filters for consistency.
15162         Do run-time pid filtering.
15163
15164 2006-11-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15165
15166         * sys/dvb/gstdvbsrc.c: (read_device):
15167         Do not call output_frontend_stats from a method that does not
15168         have the gstdvbsrc object.
15169         This fixes the build, sorry guys!
15170
15171 2006-11-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15172
15173         * sys/dvb/gstdvbsrc.c: (read_device), (gst_dvbsrc_create),
15174         (gst_dvbsrc_output_frontend_stats), (gst_dvbsrc_tune),
15175         (gst_dvbsrc_set_pes_filter):
15176         * sys/dvb/gstdvbsrc.h:
15177         Force PAT to always be in the filter.
15178         Try to continue reading after failing 10 times.
15179
15180 2006-11-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15181
15182         * po/POTFILES.in:
15183           add dvbsrc
15184         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_class_init), (gst_dvbsrc_init),
15185         (gst_dvbsrc_set_property), (gst_dvbsrc_get_property),
15186         (gst_dvbsrc_open_frontend), (gst_dvbsrc_open_dvr),
15187         (gst_dvbsrc_finalize), (read_device), (gst_dvbsrc_create),
15188         (gst_dvbsrc_start), (gst_dvbsrc_frontend_status),
15189         (gst_dvbsrc_tune), (gst_dvbsrc_unset_pes_filters),
15190         (gst_dvbsrc_set_pes_filter):
15191         * sys/dvb/gstdvbsrc.h:
15192           adapter-prefix is a terrible name for a device, so replace it.
15193           strerror should be used immediately after the syscall related to it.
15194           Actually throw a reasonable GST_ELEMENT_ERROR if we fail to open
15195           (pretty easy to trigger by opening the same device twice).
15196           Use _OBJECT macros where it makes sense.
15197           This element is going to need some work before it moves.
15198
15199 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
15200
15201         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
15202
15203         * configure.ac:
15204         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
15205         (gst_wavpack_enc_correction_mode_get_type),
15206         (gst_wavpack_enc_joint_stereo_mode_get_type),
15207         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config):
15208           Fix enum nicks; only emit no-more-pads once; add support for very
15209           fast encoding mode in upcoming 4.40.0 release (#369539).
15210
15211 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
15212
15213         Patch by: Sergey Scobich  <sergey dot scobich at gmail com>
15214
15215         * sys/directdraw/gstdirectdrawsink.c:
15216         (gst_directdrawsink_window_thread),
15217         (gst_directdrawsink_create_default_window):
15218         * sys/directdraw/gstdirectdrawsink.h:
15219         * sys/directsound/gstdirectsoundsink.c:
15220           Wait until the window is created before using it; guard unistd.h
15221           includes with HAVE_UNISTD_H. (#366523)
15222
15223         * win32/vs8/libgstdirectdraw.vcproj:
15224         * win32/vs8/libgstdirectsound.vcproj:
15225           Update project files.
15226
15227 2006-10-31  Wim Taymans  <wim@fluendo.com>
15228
15229         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15230         (gst_qtdemux_handle_src_query), (qtdemux_parse_tree),
15231         (qtdemux_parse_trak):
15232         Handle unbounded length streams a bit better. Fixes #367696.
15233
15234 2006-10-29  Tim-Philipp Müller  <tim at centricular dot net>
15235
15236         * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_frame):
15237           Fix flow handling and buffer refcounting (gst_pad_push() takes
15238           ownership of the buffer passed to it, the buffer does not have
15239           to be unreffed no matter what flow value gst_pad_push() returns).
15240
15241 2006-10-26  Edgard Lima <edgard.lima@indt.org.br>
15242
15243         Patch by: Renato Filho <renato.filho@indt.org.br> 
15244
15245         * gst/nuvdemux/gstnuvdemux.c:
15246         * gst/nuvdemux/gstnuvdemux.h:
15247         Fixed bug for files with timestamps less than 0.
15248         
15249 2006-10-21  David Schleef  <ds@schleef.org>
15250
15251         * configure.ac:
15252         * gst/multifilesink/Makefile.am:
15253         * gst/multifilesink/gstmultifilesink.c:
15254         * gst/multifilesink/gstmultifilesink.h:
15255           I copied over filesink a while ago and modified it to work
15256           as multifilesink.  Might as well check it in.  This could
15257           use some work before being declared useful.
15258
15259 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15260
15261         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
15262         * ext/wavpack/gstwavpackparse.c:
15263         (gst_wavpack_parse_create_src_pad):
15264         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_create_pads):
15265         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad):
15266           Activate pads before adding them to running element.
15267
15268 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15269
15270         Patch by: Josep Torra Valles  <josep at fluendo com>
15271
15272         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
15273         (next_entry_size), (qtdemux_inflate), (qtdemux_parse_moov),
15274         (qtdemux_parse_tree), (qtdemux_parse_trak), (qtdemux_tag_add_str),
15275         (qtdemux_tag_add_num), (qtdemux_tag_add_date),
15276         (qtdemux_tag_add_gnre):
15277           Make compile with Forte compiler, mostly don't do pointer arithmetic
15278           with void pointers (#362626).
15279
15280 2006-10-17  Edgard Lima <edgard.lima@indt.org.br>
15281
15282         * gst/nuvdemux/gstnuvdemux.c:
15283         Just a cast to make it compile oos big_endian systems.
15284
15285 2006-10-17  Edgard Lima <edgard.lima@indt.org.br>
15286
15287         Patch by: Renato Filho <renato.filho@indt.org.br> and Rosfran Borges
15288         <rosfran.borges@indt.org.br>
15289
15290         * configure.ac:
15291         * gst/nuvdemux/:
15292         * gst/nuvdemux/Makefile.am:
15293         * gst/nuvdemux/gstnuvdemux.c:
15294         * gst/nuvdemux/gstnuvdemux.h:
15295         Created new element nuvdemux.
15296         
15297 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15298
15299         Patch by: Josep Torra Valles  <josep at fluendo com>
15300
15301         * gst/nsf/fds_snd.c:
15302         * gst/nsf/mmc5_snd.c:
15303         * gst/nsf/nsf.c:
15304         * gst/nsf/vrc7_snd.c:
15305         * gst/nsf/vrcvisnd.c:
15306           Fix some things the Forte compiler warns about (#362626).
15307
15308 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15309
15310         * gst/qtdemux/qtdemux.c: (qtdemux_parse_moov), (qtdemux_parse),
15311         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
15312         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
15313         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
15314         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
15315         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
15316         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
15317         (qtdemux_dump_unknown), (qtdemux_tree_get_child_by_type),
15318         (qtdemux_tree_get_sibling_by_type):
15319         * gst/qtdemux/qtdemux.h:
15320           Avoid void pointer usage, better use guint8 * instead.
15321
15322 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
15323
15324         * configure.ac:
15325         * gst/deinterlace/Makefile.am:
15326         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_base_init),
15327         (gst_deinterlace_class_init), (gst_deinterlace_init),
15328         (gst_deinterlace_stop), (gst_deinterlace_transform_caps),
15329         (gst_deinterlace_set_caps), (gst_deinterlace_transform_ip),
15330         (gst_deinterlace_set_property), (gst_deinterlace_get_property):
15331         * gst/deinterlace/gstdeinterlace.h:
15332           Port simple deinterlacer from 0.8. Use at your own risk, don't blame
15333           me for anything it does or does not do to your precious pictures.
15334
15335 2006-10-11  Edward Hervey  <edward@fluendo.com>
15336
15337         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
15338         Add some fourcc for DV format.
15339
15340 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
15341
15342         * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc),
15343         (gst_qtdemux_loop_state_header):
15344           Printf format fixes.
15345
15346         * sys/dvb/gstdvbsrc.c:
15347           Use "_stdint.h".
15348
15349 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15350
15351         * sys/dvb/Makefile.am:
15352         * sys/dvb/dvb-api/Makefile.am:
15353         * sys/dvb/dvb-api/audio.h:
15354         * sys/dvb/dvb-api/ca.h:
15355         * sys/dvb/dvb-api/dmx.h:
15356         * sys/dvb/dvb-api/frontend.h:
15357         * sys/dvb/dvb-api/net.h:
15358         * sys/dvb/dvb-api/osd.h:
15359         * sys/dvb/dvb-api/version.h:
15360         * sys/dvb/dvb-api/video.h:
15361         Remove these files, not needed use system files.
15362         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_set_property),
15363         (gst_dvbsrc_create), (gst_dvbsrc_output_frontend_stats),
15364         (gst_dvbsrc_tune):
15365         Fix warnings, uint16_t etc. is in stdint.h.
15366         Use system includes not our local ones.
15367
15368 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15369
15370         * configure.ac:
15371         * sys/Makefile.am:
15372         Add dvb detection and allow dvbsrc to be built.
15373
15374 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15375         
15376         * configure.ac:
15377         * sys/Makefile.am:
15378         * sys/dvb/AUTHORS:
15379         * sys/dvb/Makefile.am:
15380         * sys/dvb/README:
15381         * sys/dvb/dvb-api/Makefile.am:
15382         * sys/dvb/dvb-api/audio.h:
15383         * sys/dvb/dvb-api/ca.h:
15384         * sys/dvb/dvb-api/dmx.h:
15385         * sys/dvb/dvb-api/frontend.h:
15386         * sys/dvb/dvb-api/net.h:
15387         * sys/dvb/dvb-api/osd.h:
15388         * sys/dvb/dvb-api/version.h:
15389         * sys/dvb/dvb-api/video.h:
15390         * sys/dvb/gstdvbsrc.c: 
15391         * sys/dvb/gstdvbsrc.h:
15392         Initial import of dvbsrc.
15393         Currently won't be built.
15394
15395 2006-10-10  Wim Taymans  <wim@fluendo.com>
15396
15397         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
15398         (gst_qtdemux_push_event), (gst_qtdemux_do_seek),
15399         (gst_qtdemux_change_state), (extract_initial_length_and_fourcc),
15400         (gst_qtdemux_loop_state_header), (gst_qtdemux_activate_segment),
15401         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
15402         (gst_qtdemux_post_buffering), (gst_qtdemux_chain),
15403         (gst_qtdemux_add_stream), (qtdemux_process_redirects),
15404         (qtdemux_parse_tree), (qtdemux_parse_trak):
15405         Reorganise some stuff.
15406         Parse RTSP redirection URLS.
15407
15408 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
15409
15410         * docs/plugins/gst-plugins-bad-plugins.args:
15411         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
15412         * docs/plugins/gst-plugins-bad-plugins.interfaces:
15413         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
15414         * docs/plugins/inspect/plugin-dtsdec.xml:
15415         * docs/plugins/inspect/plugin-mms.xml:
15416         * docs/plugins/inspect/plugin-mpeg2enc.xml:
15417         * docs/plugins/inspect/plugin-neon.xml:
15418         * docs/plugins/inspect/plugin-replaygain.xml:
15419         * docs/plugins/inspect/plugin-soundtouch.xml:
15420         * docs/plugins/inspect/plugin-spcdec.xml:
15421         * docs/plugins/inspect/plugin-swfdec.xml:
15422         * docs/plugins/inspect/plugin-videocrop.xml:
15423         * docs/plugins/inspect/plugin-wavpack.xml:
15424           Add/update docs stuff.
15425
15426 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
15427
15428         Patch by: René Stadler  <mail at renestadler de>
15429
15430         * configure.ac:
15431         * docs/plugins/Makefile.am:
15432         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15433         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15434         * gst/replaygain/Makefile.am:
15435         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_base_init),
15436         (gst_rg_analysis_class_init), (gst_rg_analysis_init),
15437         (gst_rg_analysis_set_property), (gst_rg_analysis_get_property),
15438         (gst_rg_analysis_start), (gst_rg_analysis_set_caps),
15439         (gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
15440         (gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
15441         (gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
15442         (gst_rg_analysis_album_result), (plugin_init):
15443         * gst/replaygain/gstrganalysis.h:
15444         * gst/replaygain/rganalysis.c: (yule_filter), (butter_filter),
15445         (apply_filters), (reset_filters), (accumulator_add),
15446         (accumulator_clear), (accumulator_result), (rg_analysis_new),
15447         (rg_analysis_set_sample_rate), (rg_analysis_destroy),
15448         (rg_analysis_analyze_mono_float),
15449         (rg_analysis_analyze_stereo_float),
15450         (rg_analysis_analyze_mono_int16),
15451         (rg_analysis_analyze_stereo_int16), (rg_analysis_analyze),
15452         (rg_analysis_track_result), (rg_analysis_album_result),
15453         (rg_analysis_reset_album), (rg_analysis_reset):
15454         * gst/replaygain/rganalysis.h:
15455           Add ReplayGain analysis element (#357069).
15456
15457         * tests/check/Makefile.am:
15458         * tests/check/elements/.cvsignore:
15459         * tests/check/elements/rganalysis.c: (get_expected_gain),
15460         (setup_rganalysis), (cleanup_rganalysis), (set_playing_state),
15461         (send_eos_event), (send_tag_event), (poll_eos), (poll_tags),
15462         (fail_unless_track_gain), (fail_unless_track_peak),
15463         (fail_unless_album_gain), (fail_unless_album_peak),
15464         (fail_if_track_tags), (fail_if_album_tags),
15465         (fail_unless_num_tracks), (test_buffer_const_float_mono),
15466         (test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
15467         (test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
15468         (test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
15469         (test_buffer_square_int16_stereo), (push_buffer), (GST_START_TEST),
15470         (rganalysis_suite), (main):
15471           Unit tests for the new replaygain element.
15472
15473 2006-10-06  Wim Taymans  <wim@fluendo.com>
15474
15475         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain),
15476         (gst_faad_close_decoder):
15477         Some cleanups.
15478         Added some more debugging.
15479         Don't ever ignore unlinked, we're not a demuxer.
15480
15481         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
15482         Activate pad before adding it to the element.
15483
15484 2006-10-06  Michael Smith  <msmith@fluendo.com>
15485
15486         * ext/theora/theoradec.c: (gst_theoradec_reset),
15487         (theora_get_query_types), (theora_dec_src_query),
15488         (theora_dec_src_event), (theora_dec_sink_event),
15489         (theora_handle_comment_packet), (theora_handle_type_packet),
15490         (theora_handle_header_packet), (clip_buffer), (theora_dec_push),
15491         (theora_handle_422_image), (theora_handle_420_image),
15492         (theora_handle_data_packet), (theora_dec_chain),
15493         (theora_dec_change_state):
15494         * ext/theora/theoradec.h:
15495           Port lots of changes from theoradec to theoraexpdec.
15496           This catches this plugin up to theoradec. Note that duplicate frames
15497           are broken in theoradec at the moment.
15498
15499 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
15500
15501         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
15502           Fix mem leak, avoid unnecessary memcpy.
15503
15504 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
15505
15506         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15507         (gst_spectrum_transform_ip):
15508           Removed cruft code that was just commented out. Removed some obsolete
15509           debug logs statements.
15510
15511 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
15512
15513         * ext/dts/gstdtsdec.c: (gst_dtsdec_chain):
15514         * ext/musicbrainz/gsttrm.c: (gst_trm_setcaps):
15515         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
15516         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain), (qtdemux_parse),
15517         (qtdemux_parse_trak):
15518         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
15519           Another batch of printf format fixes.
15520
15521 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15522
15523         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
15524         (gst_video_crop_init),
15525         (gst_video_crop_get_image_details_from_caps),
15526         (gst_video_crop_transform_packed_complex),
15527         (gst_video_crop_transform_packed_simple),
15528         (gst_video_crop_transform), (gst_video_crop_transform_caps),
15529         (gst_video_crop_set_caps),
15530         (gst_videocrop_clear_negotiated_caps_locked),
15531         (gst_video_crop_set_property):
15532         * gst/videocrop/gstvideocrop.h:
15533           Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
15534           passthrough mode; lastly, clear negotiated basetransform caps when
15535           the cropping changes in order to force renegotiation.
15536
15537 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15538
15539         * tests/icles/.cvsignore:
15540         * tests/icles/Makefile.am:
15541         * tests/icles/videocrop-test.c: (quit_mainloop), (tick_cb),
15542         (test_with_caps), (video_crop_get_test_caps), (main):
15543           Visual test for videocrop, shows that packed yuv doesn't work right
15544           yet. --with-ffmpegcolorspace option doesn't work yet for unknown
15545           reasons (another basetransform issue?)
15546
15547 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15548
15549         * po/POTFILES.in:
15550         * sys/v4l2/.cvsignore:
15551           Remove more v4l2 stuff, hopefully fixing 'make distcheck' again.
15552
15553 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15554
15555         * docs/plugins/Makefile.am:
15556         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15557         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15558         * docs/plugins/inspect/plugin-video4linux2.xml:
15559         * gst-plugins-bad.spec.in:
15560           removed v4l2
15561
15562 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15563
15564         * configure.ac:
15565         * sys/Makefile.am:
15566         * sys/v4l2/Makefile.am:
15567         * sys/v4l2/README:
15568         * sys/v4l2/gstv4l2.c:
15569         * sys/v4l2/gstv4l2colorbalance.c:
15570         * sys/v4l2/gstv4l2colorbalance.h:
15571         * sys/v4l2/gstv4l2object.c:
15572         * sys/v4l2/gstv4l2object.h:
15573         * sys/v4l2/gstv4l2src.c:
15574         * sys/v4l2/gstv4l2src.h:
15575         * sys/v4l2/gstv4l2tuner.c:
15576         * sys/v4l2/gstv4l2tuner.h:
15577         * sys/v4l2/gstv4l2vidorient.c:
15578         * sys/v4l2/gstv4l2vidorient.h:
15579         * sys/v4l2/gstv4l2xoverlay.c:
15580         * sys/v4l2/gstv4l2xoverlay.h:
15581         * sys/v4l2/v4l2_calls.c:
15582         * sys/v4l2/v4l2_calls.h:
15583         * sys/v4l2/v4l2src_calls.c:
15584         * sys/v4l2/v4l2src_calls.h:
15585           moved to gst-plugins-good
15586
15587 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15588
15589         * sys/v4l2/gstv4l2object.c:
15590         (gst_v4l2_object_install_properties_helper):
15591           comment out the properties that are already part of the tuner
15592           interface.
15593
15594 2006-10-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15595
15596         * sys/v4l2/gstv4l2src.c:
15597         Improve docs.
15598
15599 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
15600
15601         * ext/xvid/gstxvid.c: (plugin_init):
15602           Set rank of xviddec to NONE until someone fixes it (too many crasher
15603           bug reports against totem, people should use gst-ffmpeg).
15604
15605 2006-09-28  Wim Taymans  <wim@fluendo.com>
15606
15607         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_all_caps),
15608         (gst_v4l2src_get_caps):
15609         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
15610         Framerate can be 0/1 too.
15611         Init framerate to 0/1 before querying it so that we can detect
15612         devices that don't know about a framerate.
15613         Add some more debugging info.
15614
15615 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
15616
15617         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
15618           Add support for 'yv12' fourcc.
15619
15620 2006-09-27  Edgard Lima <edgard.lima@indt.org.br>
15621
15622         * sys/v4l2/gstv4l2src.c:
15623         * sys/v4l2/gstv4l2src.h:
15624         * tests/icles/v4l2src-test.c:
15625         Removed set-undef-fps.
15626
15627 2006-09-27  Wim Taymans  <wim@fluendo.com>
15628
15629         * sys/v4l2/gstv4l2object.c:
15630         (gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
15631         (gst_v4l2_object_set_property_helper),
15632         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
15633         * sys/v4l2/gstv4l2object.h:
15634         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
15635         (gst_v4l2src_create):
15636         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
15637         (gst_v4l2_tuner_list_channels),
15638         (gst_v4l2_tuner_set_channel_and_notify),
15639         (gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
15640         (gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
15641         (gst_v4l2_tuner_get_norm):
15642         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15643         (gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
15644         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
15645         Renamed some properties to match the tuner interface naming.
15646
15647 2006-09-27  Wim Taymans  <wim@fluendo.com>
15648
15649         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_set_property_helper),
15650         (gst_v4l2_set_defaults):
15651         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15652         (gst_v4l2src_create):
15653         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
15654         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15655         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_set_norm),
15656         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
15657         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
15658         (gst_v4l2_set_attribute), (gst_v4l2_get_input),
15659         (gst_v4l2_set_input):
15660         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
15661         (gst_v4l2src_grab_frame), (gst_v4l2src_get_capture),
15662         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
15663         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
15664         (gst_v4l2src_buffer_new):
15665         * tests/icles/v4l2src-test.c: (my_bus_callback), (main):
15666         Small cleanups.
15667         Fix error messages.
15668         Use locks when getting timestamps.
15669         Fix leaks in test.
15670         Add licensing header to tests.
15671
15672 2006-09-27  Edgard Lima <edgard.lima@indt.org.br>
15673
15674         * sys/v4l2/gstv4l2colorbalance.c:
15675         * sys/v4l2/gstv4l2object.c:
15676         * sys/v4l2/gstv4l2src.c:
15677         * sys/v4l2/gstv4l2src.h:
15678         * sys/v4l2/gstv4l2tuner.c:
15679         * sys/v4l2/v4l2_calls.c:
15680         * sys/v4l2/v4l2src_calls.c:
15681         * tests/icles/v4l2src-test.c:
15682         Some cleanups and comments.
15683
15684 2006-09-26  Wim Taymans  <wim@fluendo.com>
15685
15686         * docs/plugins/Makefile.am:
15687         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15688         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15689         Add v4l2 plugin to the docs.
15690
15691         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15692         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15693         * sys/v4l2/gstv4l2src.h:
15694         * sys/v4l2/gstv4l2vidorient.c:
15695         Fix docs.
15696         Remove some more externs.
15697
15698 2006-09-26  Wim Taymans  <wim@fluendo.com>
15699
15700         * sys/v4l2/Makefile.am:
15701         Fix makefile, list libs in stack order.
15702
15703         * sys/v4l2/gstv4l2colorbalance.c:
15704         * sys/v4l2/gstv4l2colorbalance.h:
15705         * sys/v4l2/gstv4l2object.c: (gst_v4l2_device_get_type),
15706         (gst_v4l2_object_install_properties_helper):
15707         * sys/v4l2/gstv4l2object.h:
15708         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15709         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15710         * sys/v4l2/gstv4l2src.h:
15711         * sys/v4l2/gstv4l2tuner.h:
15712         * sys/v4l2/gstv4l2vidorient.h:
15713         * sys/v4l2/gstv4l2xoverlay.h:
15714         * sys/v4l2/v4l2_calls.h:
15715         * sys/v4l2/v4l2src_calls.h:
15716         Fix coding style:
15717         - Remove extern from functions.
15718         - Fix header indentation.
15719         Fix Flags, add defaults for properties.
15720         Remove unused enums.
15721         Fix TOO_LAZY in error messages.
15722
15723 2006-09-26  Wim Taymans  <wim@fluendo.com>
15724
15725         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices),
15726         (gst_v4l2_probe_needs_probe),
15727         (gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
15728         (gst_v4l2_object_destroy), (gst_v4l2_object_set_property_helper),
15729         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults),
15730         (gst_v4l2_object_start), (gst_v4l2_object_stop):
15731         * sys/v4l2/gstv4l2object.h:
15732         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
15733         (gst_v4l2src_init), (gst_v4l2src_dispose),
15734         (gst_v4l2src_set_property), (gst_v4l2src_get_property),
15735         (gst_v4l2src_fixate), (gst_v4l2src_get_caps),
15736         (gst_v4l2src_set_caps), (gst_v4l2src_get_read),
15737         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15738         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15739         (gst_v4l2_open), (gst_v4l2_close), (gst_v4l2_get_norm),
15740         (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
15741         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
15742         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
15743         (gst_v4l2_get_input), (gst_v4l2_set_input):
15744         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
15745         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
15746         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
15747         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
15748         (gst_v4l2src_capture_stop), (gst_v4l2src_capture_deinit),
15749         (gst_v4l2src_get_size_limits), (gst_v4l2src_set_fps),
15750         (gst_v4l2src_get_fps), (gst_v4l2src_buffer_finalize),
15751         (gst_v4l2src_buffer_new):
15752         Fix pass at code cleanups, move errors cases out of the normal
15753         flow for additional code clarity.
15754
15755 2006-09-23  Wim Taymans  <wim@fluendo.com>
15756
15757         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
15758         (gst_cdaudio_init), (gst_cdaudio_set_property),
15759         (gst_cdaudio_get_property), (gst_cdaudio_change_state),
15760         (gst_cdaudio_send_event), (gst_cdaudio_get_query_types),
15761         (gst_cdaudio_query), (cdaudio_uri_set_uri):
15762         Port to 0.10.
15763
15764 2006-09-22  David Schleef  <ds@schleef.org>
15765
15766         * sys/glsink/glimagesink.c:
15767           Fix problems when the element cannot open the display.
15768           (fixes #357212)
15769
15770 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
15771
15772         * configure.ac:
15773           Up requirements to -base CVS and core CVS (the format for the
15774           video orientation interface used by v4l2src and the latter
15775           since that's what -base CVS requires).
15776
15777 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
15778
15779         * ext/directfb/dfbvideosink.c: (plugin_init):
15780           Lower rank from SECONDARY to MARGINAL. Plugins in -bad that might
15781           be autoplugged shouldn't trump plugins in -base, -good or -ugly
15782           (in this case ximagesink).
15783
15784         * sys/glsink/glimagesink.c: (plugin_init):
15785           Set rank to NONE to prevent it from being autoplugged until
15786           errors are handled properly (see #357212).
15787
15788 2006-09-21  Edgard Lima <edgard.lima@indt.org.br>
15789
15790         * ext/neon/Makefile.am:
15791         * ext/neon/gstneonhttpsrc.c:
15792         * ext/neon/gstneonhttpsrc.h:
15793         Reverted previous commit (2006-09-19 - Allow internal codes from
15794         last.fm). As dicussed on #gstreamer it should be done in separete
15795         element.
15796
15797 2006-09-21  Wim Taymans  <wim@fluendo.com>
15798
15799         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad),
15800         (gst_faac_chain):
15801         Add decoder specific info on the caps.
15802         Some cleanups here and there.
15803
15804 2006-09019  Edgard Lima <edgard.lima@indt.org.br>
15805
15806         Patch by: Milosz Derezynski <internalerror@gmail.com> and
15807                   Rosfran Borges <rosfran.borges@indt.org.br>
15808
15809         * ext/neon/Makefile.am:
15810         * ext/neon/gstneonhttpsrc.c:
15811         * ext/neon/gstneonhttpsrc.h:
15812         Allow internal codes from last.fm
15813         
15814
15815 2006-09-19  Edgard Lima <edgard.lima@indt.org.br>
15816
15817         * tests/icles/v4l2src-test.c:
15818         Just a small fix to the app options.
15819
15820 2006-09-19  Edgard Lima <edgard.lima@indt.org.br>
15821
15822         * sys/v4l2/Makefile.am:
15823         * sys/v4l2/gstv4l2src.c:
15824         * sys/v4l2/gstv4l2vidorient.c:
15825         * sys/v4l2/gstv4l2vidorient.h:
15826         * tests/icles/v4l2src-test.c:
15827         Add Video Orientation interface support to v4l2src.
15828         
15829 2006-09-19  Wim Taymans  <wim@fluendo.com>
15830
15831         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init),
15832         (gst_gsmdec_sink_setcaps), (gst_gsmdec_sink_event),
15833         (gst_gsmdec_chain):
15834         * ext/gsm/gstgsmdec.h:
15835         Handle WAV49 variant (GSM in WAV).
15836         Some small cleanups.
15837
15838 2006-09-18  Edgard Lima <edgard.lima@indt.org.br>
15839
15840         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_buffer_new ):
15841         Fix GST_BUFFER_DURATION.
15842
15843 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
15844
15845         * ext/hermes/gsthermescolorspace.c:
15846         * ext/ivorbis/vorbisfile.c:
15847         * ext/lcs/gstcolorspace.c:
15848         * ext/wavpack/gstwavpackenc.h:
15849         * ext/xine/xineaudiodec.c:
15850         * ext/xine/xineaudiosink.c:
15851         * ext/xine/xineinput.c:
15852         * gst/chart/gstchart.c:
15853         * gst/equalizer/gstiirequalizer.c:
15854         * gst/games/gstpuzzle.c:
15855         * gst/librfb/gstrfbsrc.c:
15856         * gst/mixmatrix/mixmatrix.c:
15857         * gst/nsf/gstnsf.h:
15858         * gst/vbidec/gstvbidec.c:
15859         * gst/virtualdub/gstxsharpen.c:
15860           More G_OBJECT macro fixing.
15861
15862 2006-09-15  Edgard Lima <edgard.lima@indt.org.br>
15863
15864         * sys/v4l2/gstv4l2src.c:
15865         * sys/v4l2/gstv4l2src.h:
15866         * sys/v4l2/gstv4l2xoverlay.c:
15867         * sys/v4l2/v4l2_calls.c:
15868         * sys/v4l2/v4l2src_calls.c:
15869         * tests/icles/v4l2src-test.c:
15870         The test application and the plgind error messages has been improved.
15871         
15872 2006-09-12  Stefan Kost  <ensonic@users.sf.net>
15873
15874         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
15875         (gst_spectrum_start), (gst_spectrum_stop), (gst_spectrum_event):
15876           Implements stop() to clear the adapter and event() to clear the
15877           adapter on FLUSH_STOP and EOS.
15878
15879 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
15880
15881         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15882         (gst_spectrum_set_property):
15883         * gst/spectrum/gstspectrum.h:
15884           Fix type mixup in spectrum->interval (gdouble<->guint64). Spotted by
15885           René Stadler
15886
15887 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
15888
15889         * gst/spectrum/demo-osssrc.c: (draw_spectrum), (main):
15890           Use more defines
15891
15892         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15893         (gst_spectrum_dispose), (gst_spectrum_set_caps),
15894         (gst_spectrum_transform_ip):
15895         * gst/spectrum/gstspectrum.h:
15896           Apply some of the spectrum cleanup changes suggested in #348085.
15897
15898 2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>
15899
15900         * configure.ac:
15901           Bump requirements of -base (videocrop test case needs this).
15902
15903         * gst/videocrop/gstvideocrop.c:
15904           Document sloppy handling of subsampled chroma planes if
15905           left/top cropping is an odd number.
15906
15907         * tests/check/elements/videocrop.c: (handoff_cb),
15908         (videocrop_test_cropping_init_context),
15909         (videocrop_test_cropping_deinit_context),
15910         (videocrop_test_cropping), (check_1x1_buffer), (GST_START_TEST),
15911         (videocrop_suite), (main):
15912           Add another unit test that crops the input to 1x1 (and checks
15913           that that pixel has the expected values in a number of formats).
15914
15915 2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>
15916
15917         * gst/videocrop/Makefile.am:
15918         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
15919         (gst_video_crop_transform_packed),
15920         (gst_video_crop_transform_planar):
15921           Some quick tests indicate that it doesn't make a great deal
15922           of sense to use liboil here, at least not for the memcpy()s
15923           we do, so remove liboil usage until there is clear evidence
15924           it actually makes a positive difference somewhere.
15925
15926 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
15927
15928         * tests/check/elements/videocrop.c: (handoff_cb),
15929         (buffer_probe_cb), (test_caps_transform), (test_passthrough),
15930         (notgst_value_list_get_nth_int), (videocrop_suite):
15931           More tests: check passthrough mode and caps transform in
15932           both directions with fixed values, ranges and lists.
15933
15934 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
15935
15936         * docs/plugins/Makefile.am:
15937         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15938         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15939         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
15940           Add videocrop to docs.
15941
15942         * gst/videocrop/Makefile.am:
15943         * gst/videocrop/gstvideocrop.c:
15944         * gst/videocrop/gstvideocrop.h:
15945           Move boilerplate stuff and structures into a header file.
15946
15947         * tests/check/Makefile.am:
15948         * tests/check/elements/.cvsignore:
15949         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
15950         (test_unit_sizes), (videocrop_test_cropping_init_context),
15951         (videocrop_test_cropping_deinit_context),
15952         (videocrop_test_cropping), (test_cropping), (videocrop_suite):
15953           Add unit tests for videocrop.
15954
15955 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
15956
15957         * configure.ac:
15958         * gst/videocrop/Makefile.am:
15959         * gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
15960         (gst_video_crop_class_init), (gst_video_crop_init),
15961         (gst_video_crop_get_image_details_from_caps),
15962         (gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
15963         (gst_video_crop_transform_planar), (gst_video_crop_transform),
15964         (gst_video_crop_transform_dimension),
15965         (gst_video_crop_transform_dimension_value),
15966         (gst_video_crop_transform_caps), (gst_video_crop_set_caps),
15967         (gst_video_crop_set_property), (gst_video_crop_get_property),
15968         (plugin_init):
15969           Port/rewrite videocrop from scratch for GStreamer-0.10, and make
15970           it support all formats videoscale supports (#345653).
15971
15972 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
15973
15974         * sys/v4l2/gstv4l2.c:
15975         * sys/v4l2/gstv4l2colorbalance.c:
15976         * sys/v4l2/gstv4l2object.c:
15977         (gst_v4l2_object_install_properties_helper):
15978         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
15979         * sys/v4l2/gstv4l2src.h:
15980           Whitespace cleanups, dashify property-names.
15981
15982 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
15983
15984         * sys/v4l2/gstv4l2.c:
15985         * sys/v4l2/gstv4l2colorbalance.c:
15986         * sys/v4l2/gstv4l2colorbalance.h:
15987         * sys/v4l2/gstv4l2object.c:
15988         * sys/v4l2/gstv4l2object.h:
15989         * sys/v4l2/gstv4l2src.c:
15990         * sys/v4l2/gstv4l2src.h:
15991         * sys/v4l2/gstv4l2tuner.c:
15992         * sys/v4l2/gstv4l2tuner.h:
15993         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
15994         * sys/v4l2/gstv4l2xoverlay.h:
15995         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15996         (gst_v4l2_open):
15997         * sys/v4l2/v4l2_calls.h:
15998         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_queue_frame),
15999         (gst_v4l2src_capture_init):
16000         * sys/v4l2/v4l2src_calls.h:
16001           Cleanup error messages and unify header comments
16002
16003 2006-08-31  Jan Schmidt  <thaytan@mad.scientist.com>
16004
16005         * gst/nsf/Makefile.am:
16006         Add missing GST_LIBS
16007
16008 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
16009
16010         * sys/v4l2/gstv4l2src.c:
16011         Another small fix to set_caps function (sucks copy/paste error).
16012         
16013 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
16014
16015         * sys/v4l2/gstv4l2src.c:
16016         Send new_segment in GST_FORMAT_TIME instead of in GST_FORMAT_BYTES.
16017
16018 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
16019
16020         * sys/v4l2/gstv4l2src.c:
16021         A small fix to set_caps function.
16022
16023 2006-08-30  Edward Hervey  <edward@fluendo.com>
16024
16025         * gst/qtdemux/qtdemux.c:
16026         (gst_qtdemux_do_seek):
16027         Reset each streams last_flow to GST_FLOW_OK.
16028         (gst_qtdemux_activate_segment):
16029         Removing mystic modifications for good.
16030
16031 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
16032
16033         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16034         (qtdemux_parse_tree):
16035           put back 'segment start<=stop' change that was mystically reverted by
16036           the last commit
16037
16038 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
16039
16040         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16041         (qtdemux_parse_tree):
16042         Fix the build for disabled debug
16043
16044 2006-08-29  Edgard Lima <edgard.lima@indt.org.br>
16045
16046         * sys/v4l2/gstv4l2src.c:
16047         * sys/v4l2/v4l2src_calls.c:
16048         * sys/v4l2/v4l2src_calls.h:
16049         Fixed framerate negotiation.
16050         
16051 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
16052
16053         Patch by: Andrew Andkjar  <enki at goodship net>
16054
16055         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_close):
16056         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_supported),
16057         (gst_sdlvideosink_deinitsdl):
16058           Only de-init the subsystem we previously initialised. Avoids
16059           borkage when both sdlvideosink and sdlaudiosink are used
16060           at the same time and one is shut down.
16061
16062 2006-08-28  Wim Taymans  <wim@fluendo.com>
16063
16064         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16065         (gst_qtdemux_add_stream), (qtdemux_parse_trak),
16066         (qtdemux_video_caps):
16067         Make sure segment start<=stop in weird quicktime files.
16068
16069 2006-08-28  Stefan Kost  <ensonic@users.sf.net>
16070
16071         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
16072           add comments and more debug logging
16073
16074 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
16075
16076         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16077
16078         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_post_tags),
16079         (gst_wavpack_dec_chain):
16080           Post audio codec and average bitrate tags on bus (#344472).
16081
16082         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
16083         (gst_wavpack_parse_src_query):
16084           Forward queries in other formats (BYTE format in particular)
16085           upstream; add Sebastian to authors.
16086
16087 2006-08-23  Edgard Lima <edgard.lima@indt.org.br>
16088
16089         * sys/v4l2/gstv4l2src.c:
16090         * sys/v4l2/v4l2src_calls.c:
16091         * sys/v4l2/v4l2src_calls.h:
16092         Fix set_caps to set width and height to the values the driver is
16093         really working with.
16094
16095 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16096
16097         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block):
16098           Fix mem leak, send newsegment event on correction pad
16099           as well (#352476).
16100
16101         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
16102           Restore original author (on Sebastian's request).
16103
16104         * tests/check/Makefile.am:
16105         * tests/check/gst-plugins-bad.supp:
16106           Add (so far empty) suppression file for -bad. Remove
16107           wavpackenc test from VALGRIND_TO_FIX now that the leak
16108           is fixed.
16109
16110 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16111
16112         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16113
16114         * tests/check/Makefile.am:
16115         * tests/check/elements/.cvsignore:
16116         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
16117         (cleanup_wavpackdec), (GST_START_TEST), (wavpackdec_suite), (main):
16118         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
16119         (cleanup_wavpackenc), (GST_START_TEST), (wavpackenc_suite), (main):
16120         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
16121         (setup_wavpackparse), (cleanup_wavpackparse), (GST_START_TEST),
16122         (wavpackparse_suite), (main):
16123           Add unit tests for wavpack elements (#352476).
16124
16125 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16126
16127         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16128
16129         * docs/plugins/Makefile.am:
16130         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16131         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16132         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
16133         * docs/plugins/inspect/plugin-wavpack.xml:
16134         * ext/wavpack/gstwavpackdec.c:
16135         * ext/wavpack/gstwavpackdec.h:
16136         * ext/wavpack/gstwavpackenc.c:
16137         * ext/wavpack/gstwavpackenc.h:
16138         * ext/wavpack/gstwavpackparse.c:
16139         * ext/wavpack/gstwavpackparse.h:
16140           Add docs for wavpack elements (#352476).
16141
16142 2006-08-22  Edgard Lima <edgard.lima@indt.org.br>
16143
16144         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_size_limits)
16145         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fixate)
16146         Fixed query size to work with drivers that uses intermediate step
16147         like "width * height" to find closest size.
16148         
16149 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
16150
16151         * configure.ac:
16152         * docs/plugins/Makefile.am:
16153         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16154         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16155         * gst/gdp/Makefile.am:
16156         * gst/gdp/gstgdp.c:
16157         * gst/gdp/gstgdpdepay.c:
16158         * gst/gdp/gstgdpdepay.h:
16159         * gst/gdp/gstgdppay.c:
16160         * gst/gdp/gstgdppay.h:
16161         * tests/check/Makefile.am:
16162         * tests/check/elements/gdpdepay.c:
16163         * tests/check/elements/gdppay.c:
16164           move gdp plugin to good.
16165
16166 2006-08-21  Wim Taymans  <wim@fluendo.com>
16167
16168         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
16169         (qtdemux_node_dump_foreach), (qtdemux_parse_trak),
16170         (qtdemux_video_caps), (qtdemux_audio_caps):
16171         Some more constification.
16172         Fix some paletted data formats again.
16173         Fix ulaw/alaw in qt.
16174         Set correct caps for raw RGB.
16175         Add support for yuv2, which is like Yuv2.
16176         Add support for raw audio with the NONE fourcc, which is like raw.
16177
16178 2006-08-21  Wim Taymans  <wim@fluendo.com>
16179
16180         * ext/gsm/gstgsm.c: (plugin_init):
16181         Make rank PRIMARY now that GSM seems to work fine.
16182
16183 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
16184
16185         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init),
16186         (gst_wavpack_enc_finalize), (gst_wavpack_enc_sink_set_caps),
16187         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_format_samples),
16188         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain),
16189         (gst_wavpack_enc_rewrite_first_block),
16190         (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state),
16191         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
16192         * ext/wavpack/gstwavpackenc.h:
16193         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
16194         (gst_wavpack_parse_src_query), (gst_wavpack_parse_src_event),
16195         (gst_wavpack_parse_init), (gst_wavpack_parse_get_upstream_length),
16196         (gst_wavpack_parse_loop):
16197           More clean-ups: use shorter variable names to make code easier to
16198           read; prefix structures we define with 'Gst' to make it clearer
16199           where they come from.
16200
16201 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
16202
16203         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init),
16204         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
16205         (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block),
16206         (gst_wavpack_enc_sink_event):
16207           Fix caps set on buffers and template caps (output is framed)
16208           and make them match (#351663); use GST_WARNING_OBJECT instead of
16209           GST_ELEMENT_WARNING; simplify push_block(); do some small
16210           clean-ups here and there; fix memleak (#351663).
16211
16212 2006-08-18  Tim-Philipp Müller  <tim at centricular dot net>
16213
16214         Based on patch by: Sebastian Dröge <slomo at circular-chaos.org>
16215
16216         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_sink_event),
16217         (gst_wavpack_parse_get_upstream_length),
16218         (gst_wavpack_parse_find_marker), (gst_wavpack_parse_resync_loop),
16219         (gst_wavpack_parse_loop), (gst_wavpack_parse_resync_adapter):
16220           Fix resyncing in push mode not stopping re-syncing at embedded
16221           zeroes; skip garbage between frames in pull mode as well if
16222           necessary; use gst_pad_query_peer_duration(); push EOS and
16223           NEWSEGMENT event in right direction (#351659).
16224
16225 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
16226
16227         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16228
16229         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init):
16230         * ext/wavpack/gstwavpackparse.c:
16231         (gst_wavpack_parse_resync_adapter), (gst_wavpack_parse_chain):
16232           In push mode, re-sync to next wavpack header if sync is lost
16233           (#351557). Also use hyphens instead of underscores in
16234           GObject property names.
16235
16236 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
16237
16238         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16239
16240         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_class_init),
16241         (gst_wavpack_parse_reset), (gst_wavpack_parse_get_src_query_types),
16242         (gst_wavpack_parse_src_query),
16243         (gst_wavpack_parse_handle_seek_event),
16244         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_init),
16245         (gst_wavpack_parse_create_src_pad),
16246         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop),
16247         (gst_wavpack_parse_chain), (gst_wavpack_parse_sink_activate),
16248         (gst_wavpack_parse_sink_activate_pull):
16249         * ext/wavpack/gstwavpackparse.h:
16250           Make wavpackparse also work in push-mode (not seekable yet though);
16251           some small clean-ups along the way; add support for SEEKING query
16252           and query types function. (#351495).
16253
16254 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
16255
16256         * ext/libfame/gstlibfame.c: (gst_fameenc_get_property):
16257         * sys/glsink/glimagesink.c: (gst_glimage_sink_get_property):
16258           Fix leaks (#351502).
16259
16260 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
16261
16262         * gst/qtdemux/qtdemux.c: (qtdemux_redirects_sort_func),
16263         (qtdemux_process_redirects), (qtdemux_parse_tree):
16264           Extract all references/redirections if there is more
16265           than one and sort them; also extract minimum required
16266           bitrate information if available. (#350399)
16267           
16268 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
16269
16270         Patch by: Michal Benes  <michal.benes at itonis tv>
16271
16272         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad):
16273           Bitrate in the faac structure is per output channel,
16274           not total bitrate (#350741).
16275
16276 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
16277
16278         * ext/xvid/gstxvidenc.c: (gst_xvidenc_chain):
16279           Fix GST_ELEMENT_ERROR usage.
16280
16281 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
16282
16283         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
16284           Fix silly typo.
16285
16286 2006-08-08  Edward Hervey  <edward@fluendo.com>
16287
16288         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
16289         I forgot to include the file containing the #define :)
16290         Now includes "config.h"
16291
16292 2006-08-08  Edward Hervey  <edward@fluendo.com>
16293
16294         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
16295         Ignore test known to fail on PPC64. See #348114.
16296
16297 2006-08-04  Edgard Lima <edgard.lima@indt.org.br>
16298
16299         Patch by: Rosfran Borges <rosfran dot borges at indt dot org dot
16300         br>
16301
16302         * ext/neon/gstneonhttpsrc.c:
16303         * ext/neon/gstneonhttpsrc.h:
16304         Allow HTTP redirect (HTTP status code 302).
16305
16306 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16307
16308         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16309         Fix event parsing by gdpdepay.  Fixes #349916.
16310
16311 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
16312
16313         Patch by: Thadeu Lima de Souza Cascardo <cascardo at holoscopio dot
16314         com>
16315
16316         * ext/Makefile.am:
16317           Use right variables when USE_SPC is defined.
16318
16319 2006-08-02  Wim Taymans  <wim@fluendo.com>
16320
16321         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init),
16322         (gst_gdp_depay_finalize), (gst_gdp_depay_sink_event),
16323         (gst_gdp_depay_src_event), (gst_gdp_depay_chain),
16324         (gst_gdp_depay_change_state):
16325         Disable seeking.
16326         Small cleanups.
16327         Clear adapter on disconts.
16328         Clear caps when going to READY instead of NULL
16329
16330         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16331         (gst_gdp_pay_init), (gst_gdp_pay_finalize), (gst_gdp_pay_reset),
16332         (gst_gdp_buffer_from_caps), (gst_gdp_pay_buffer_from_buffer),
16333         (gst_gdp_buffer_from_event), (gst_gdp_pay_reset_streamheader),
16334         (gst_gdp_queue_buffer), (gst_gdp_pay_chain),
16335         (gst_gdp_pay_sink_event), (gst_gdp_pay_src_event),
16336         (gst_gdp_pay_change_state):
16337         * gst/gdp/gstgdppay.h:
16338         Reset payloader when going to READY.
16339         Fix leaked buffers in ->queue on push errors.
16340         Disable seeking.
16341         Code cleanups.
16342         Create packetizer in _init, free in _finalize.
16343
16344 2006-07-31  Julien MOUTTE  <julien@moutte.net>
16345
16346         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_change_state),
16347         (gst_dfbvideosink_buffer_alloc): Post an error message.
16348
16349 2006-07-31  Julien MOUTTE  <julien@moutte.net>
16350
16351         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_change_state),
16352         (gst_dfbvideosink_buffer_alloc): Don't try allocating if we are not
16353         setup yet. Fail changing state if setup fails.
16354
16355 2006-07-31  Wim Taymans  <wim@fluendo.com>
16356
16357         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init),
16358         (gst_gdp_depay_sink_event), (gst_gdp_depay_chain):
16359         Consume all events except EOS because we generate events from
16360         the gdp payload instead. Fixes #349204
16361
16362 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
16363
16364         * ext/xvid/gstxviddec.c: (gst_xviddec_init), (gst_xviddec_reset),
16365         (gst_xviddec_unset), (gst_xviddec_handle_sink_event),
16366         (gst_xviddec_setup), (gst_xviddec_negotiate), (gst_xviddec_chain),
16367         (gst_xviddec_flush_buffers), (gst_xviddec_src_getcaps),
16368         (gst_xviddec_setcaps), (gst_xviddec_change_state):
16369         * ext/xvid/gstxviddec.h:
16370           Clean-ups and code reflows. Pass return value from
16371           gst_pad_alloc_buffer() upstream among other things. Also check
16372           for NULL GValue before using GST_VALUE_TYPE macro (#348976).
16373           Mass rename of xviddec -> dec variable for better
16374           code readability.
16375
16376 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
16377
16378         * ext/xvid/gstxvid.c: (gst_xvid_image_fill):
16379           Fix size calculation for I420/YV12. Fixes #348976.
16380
16381 2006-07-27  Wim Taymans  <wim@fluendo.com>
16382
16383         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init),
16384         (gst_gsmdec_sink_setcaps), (gst_gsmdec_sink_event):
16385         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_setcaps):
16386         Fix negotiation.
16387
16388 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16389
16390         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init):
16391           proxying get/set caps is the wrong thing to do, since we really
16392           do change caps quite fundamentally
16393         * tests/check/elements/gdpdepay.c:
16394         * tests/check/elements/gdppay.c:
16395           remove declaration of buffers, it's already done in gstcheck.h
16396
16397 2006-07-24  Sebastien Moutte  <sebastien@moutte.net>
16398
16399         * sys/directsound/gstdirectsoundsink.h:
16400         * sys/directsound/gstdirectsoundsink.c:
16401         Add an attenuation property that will directly attenuate the 
16402         directsound buffer.
16403         Change the size of the directsound secondary buffer to a half second.
16404         Add more debug logs.
16405         Add a lock to protect dsound buffer write access.
16406         Fix a bad implementation of reset.
16407         * sys/directsound/gstdirectdrawsink.c:
16408         * sys/directsound/gstdirectdrawsink.h:
16409         Add a keep_aspect_ratio property.
16410         Do not use overlay if not supported.
16411         Add more debug logs.
16412         Remove overwrite of WM_ERASEBKGND message handling. It was not
16413         redrawing border when keep_aspect_ratio was enabled.
16414         * win32/common/config.h:
16415         update version waiting an auto-generated config.h
16416
16417 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
16418
16419         Patch by: Chris Lee  <clee at kde org>
16420
16421         * configure.ac:
16422         * ext/Makefile.am:
16423         * ext/spc/Makefile.am:
16424         * ext/spc/gstspc.c: (spc_negotiate), (gst_spc_dec_base_init),
16425         (gst_spc_dec_class_init), (gst_spc_dec_init), (gst_spc_dec_chain),
16426         (gst_spc_dec_sink_event), (gst_spc_dec_src_event),
16427         (gst_spc_dec_src_query), (spc_play), (spc_setup),
16428         (gst_spc_dec_change_state), (plugin_init):
16429         * ext/spc/gstspc.h:
16430           Add libopenspc-based SPC decoder element (#348220).
16431
16432 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
16433
16434         Patch by: Martin Szulecki
16435
16436         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_get_property_helper):
16437           If "device-name" is requested and the device is not
16438           open, try to temporarily open it to obtain this
16439           information (#342494).
16440
16441 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
16442
16443         * gst/nsf/nsf.c: (nsf_load):
16444           Really fix compilation. Apparently it's not enough to
16445           just check the return value for errors, but we need to
16446           check for short reads as well (now if only we handled
16447           them too ...). Fixes #347935.
16448
16449 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16450
16451         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
16452           Fix caps after previous change to byte order endianness.
16453
16454         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
16455         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_init),
16456         (gst_wavpack_parse_loop):
16457         * ext/wavpack/gstwavpackparse.h:
16458           Queue incoming events if there's no source pad yet and
16459           send them downstream later when the pad is there.
16460
16461 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16462
16463         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init),
16464         (gst_wavpack_dec_format_samples),
16465         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16466         (gst_wavpack_dec_change_state):
16467         * ext/wavpack/gstwavpackdec.h:
16468           Output audio in native byte order (which is also how we get
16469           samples from wavpack); output samples with 21-24 bit depth
16470           with 32 bit width (makes things easier for us).
16471
16472 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16473
16474         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init),
16475         (gst_wavpack_dec_class_init), (gst_wavpack_dec_init),
16476         (gst_wavpack_dec_finalize), (gst_wavpack_dec_format_samples),
16477         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16478         (gst_wavpack_dec_sink_event), (gst_wavpack_dec_change_state):
16479         * ext/wavpack/gstwavpackdec.h:
16480           More clean-ups: remove most of the disfunctional correction
16481           pad stuff for now, if it ever gets implemented a lot of stuff
16482           will have to be rewritten anyway; redo chain function, move
16483           errors to end, error out instead of g_assert()ing. Also rename
16484           overly long variable 'wavpackdec' to just 'dec'; miscellaneous
16485           other small stuff.
16486
16487 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16488
16489         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16490
16491         * configure.ac:
16492           Check for wavpack version and define WAVPACK_OLD_API if
16493           necessary.
16494
16495         * ext/wavpack/Makefile.am:
16496         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_read_header),
16497         (gst_wavpack_read_metadata):
16498         * ext/wavpack/gstwavpackcommon.h:
16499         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init),
16500         (gst_wavpack_dec_class_init), (gst_wavpack_dec_init),
16501         (gst_wavpack_dec_finalize), (gst_wavpack_dec_format_samples),
16502         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16503         (gst_wavpack_dec_sink_event), (gst_wavpack_dec_change_state),
16504         (gst_wavpack_dec_request_new_pad), (gst_wavpack_dec_plugin_init):
16505         * ext/wavpack/gstwavpackdec.h:
16506         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
16507         (gst_wavpack_enc_init), (gst_wavpack_enc_finalize),
16508         (gst_wavpack_enc_set_wp_config):
16509         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
16510         (gst_wavpack_parse_finalize), (gst_wavpack_parse_class_init),
16511         (gst_wavpack_parse_index_get_entry_from_sample),
16512         (gst_wavpack_parse_scan_to_find_sample),
16513         (gst_wavpack_parse_handle_seek_event),
16514         (gst_wavpack_parse_create_src_pad):
16515         * ext/wavpack/gstwavpackstreamreader.c:
16516         * ext/wavpack/gstwavpackstreamreader.h:
16517           Port to new/official wavpack API, don't use API that was exported
16518           in wavpack header files and in the lib but meant to be private, at
16519           least not for recent wavpack versions; misc. 'cleanups' (#347443).
16520
16521 2006-07-18  Wim Taymans  <wim@fluendo.com>
16522
16523         * gst/nsf/nsf.c: (nsf_load):
16524         Fix compilation by not ignoring return values of fread.
16525
16526 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16527
16528         * docs/plugins/inspect/plugin-alsaspdif.xml:
16529         * docs/plugins/inspect/plugin-filter.xml:
16530         * docs/plugins/inspect/plugin-h264parse.xml:
16531         * docs/plugins/inspect/plugin-musepack.xml:
16532         * docs/plugins/inspect/plugin-nsfdec.xml:
16533         * docs/plugins/inspect/plugin-sdl.xml:
16534         * docs/plugins/inspect/plugin-spectrum.xml:
16535           adding more inspect docs
16536
16537 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16538
16539         * docs/plugins/inspect/plugin-gdp.xml:
16540           actually commit inspectation of gdp element
16541
16542 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16543
16544         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_class_init):
16545         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16546           remove parent_class setting, BOILERPLATE does this
16547         (gst_gdp_pay_reset_streamheader):
16548           fix typo in comment
16549
16550 2006-07-17  Wim Taymans  <wim@fluendo.com>
16551
16552         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
16553         (gst_qtdemux_prepare_current_sample),
16554         (gst_qtdemux_loop_state_movie):
16555         Store duration in uint64 too instead of clipping.
16556         When we do a keyframe seek and the requested time is at the
16557         keyframe, don't seek back to the beginning of the keyframe.
16558         Fixes #347439.
16559
16560 2006-07-16  Wim Taymans  <wim@fluendo.com>
16561
16562         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_sync):
16563         Don't crash on small buffers.
16564
16565 2006-07-15  Stefan Kost  <ensonic@users.sf.net>
16566
16567         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_sink_activate):
16568         Reset adapter.
16569
16570 2006-07-15  Stefan Kost  <ensonic@users.sf.net>
16571
16572         * gst/spectrum/demo-audiotest.c: (main):
16573         * gst/spectrum/demo-osssrc.c: (main):
16574         Do not use deprecated gtk functions.
16575
16576 2006-07-14  Wim Taymans  <wim@fluendo.com>
16577
16578         * gst/nsf/Makefile.am:
16579         * gst/nsf/memguard.c:
16580         * gst/nsf/memguard.h:
16581         * gst/nsf/types.h:
16582         Remove crack malloc/free replacement.
16583
16584 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16585
16586         * docs/plugins/Makefile.am:
16587         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16588         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16589           add more plugins and elements to docs
16590         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16591           fix segfaults due to wrong g_free
16592           add example
16593         * gst/gdp/gstgdppay.c:
16594           add example
16595
16596 2006-07-13  Wim Taymans  <wim@fluendo.com>
16597
16598         * gst/nsf/Makefile.am:
16599         Fix build.
16600
16601 2006-07-13  Wim Taymans  <wim@fluendo.com>
16602
16603         Based on patches by: Johan Dahlin <johan at gnome dot org>
16604                 Ronald Bultje <rbultje at ronald dot bitfreak dot net>
16605
16606         * configure.ac:
16607         * gst/nsf/Makefile.am:
16608         * gst/nsf/dis6502.h:
16609         * gst/nsf/fds_snd.c:
16610         * gst/nsf/fds_snd.h:
16611         * gst/nsf/fmopl.c:
16612         * gst/nsf/fmopl.h:
16613         * gst/nsf/gstnsf.c:
16614         * gst/nsf/gstnsf.h:
16615         * gst/nsf/log.c:
16616         * gst/nsf/log.h:
16617         * gst/nsf/memguard.c:
16618         * gst/nsf/memguard.h:
16619         * gst/nsf/mmc5_snd.c:
16620         * gst/nsf/mmc5_snd.h:
16621         * gst/nsf/nes6502.c:
16622         * gst/nsf/nes6502.h:
16623         * gst/nsf/nes_apu.c:
16624         * gst/nsf/nes_apu.h:
16625         * gst/nsf/nsf.c:
16626         * gst/nsf/nsf.h:
16627         * gst/nsf/osd.h:
16628         * gst/nsf/types.h:
16629         * gst/nsf/vrc7_snd.c:
16630         * gst/nsf/vrc7_snd.h:
16631         * gst/nsf/vrcvisnd.c:
16632         * gst/nsf/vrcvisnd.h:
16633         Added NSF decoder plugin. Fixes 151192. 
16634
16635 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16636
16637         * tests/check/Makefile.am:
16638           Only run mpeg2enc unit test if we built the mpeg2enc plugin.
16639
16640 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16641
16642         * configure.ac:
16643           Don't error out in configure if mjpegtools dev is not there.
16644
16645 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16646
16647         Patch by: Mark Nauwelaerts <manauw at skynet be>
16648
16649         * configure.ac:
16650         * ext/Makefile.am:
16651         * ext/mpeg2enc/Makefile.am:
16652         * ext/mpeg2enc/gstmpeg2enc.cc:
16653         * ext/mpeg2enc/gstmpeg2enc.hh:
16654         * ext/mpeg2enc/gstmpeg2encoder.cc:
16655         * ext/mpeg2enc/gstmpeg2encoder.hh:
16656         * ext/mpeg2enc/gstmpeg2encoptions.cc:
16657         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
16658         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
16659         * ext/mpeg2enc/gstmpeg2encstreamwriter.cc:
16660         * ext/mpeg2enc/gstmpeg2encstreamwriter.hh:
16661           Port mpeg2enc to 0.10 (#343184).
16662
16663         * tests/check/Makefile.am:
16664         * tests/check/elements/.cvsignore:
16665         * tests/check/elements/mpeg2enc.c:
16666           Add unit test for mpeg2enc.
16667
16668         * tests/icles/.cvsignore:
16669           Ignore pitch-test.
16670
16671 2006-07-12  Tim-Philipp Müller  <tim at centricular dot net>
16672
16673         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
16674           Fix typo in property nick.
16675
16676 2006-07-10  Wim Taymans  <wim@fluendo.com>
16677
16678         * gst/filter/gstbpwsinc.h:
16679         * gst/filter/gstiir.h:
16680         * gst/filter/gstlpwsinc.h:
16681         Don't forget new files.
16682
16683 2006-07-10  Wim Taymans  <wim@fluendo.com>
16684
16685         Patch by: Mathis Hofer <mathis dot hofer at dreamlab dot net>
16686
16687         * configure.ac:
16688         * gst/filter/Makefile.am:
16689         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
16690         (gst_bpwsinc_base_init), (gst_bpwsinc_class_init),
16691         (gst_bpwsinc_init), (bpwsinc_set_caps), (bpwsinc_transform_ip),
16692         (bpwsinc_set_property), (bpwsinc_get_property):
16693         * gst/filter/gstfilter.c: (plugin_init):
16694         * gst/filter/gstfilter.h:
16695         * gst/filter/gstiir.c: (gst_iir_dispose), (gst_iir_base_init),
16696         (gst_iir_class_init), (gst_iir_init), (iir_set_caps),
16697         (iir_transform_ip), (iir_set_property), (iir_get_property):
16698         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
16699         (gst_lpwsinc_base_init), (gst_lpwsinc_class_init),
16700         (gst_lpwsinc_init), (lpwsinc_set_caps), (lpwsinc_transform_ip),
16701         (lpwsinc_set_property), (lpwsinc_get_property):
16702         Ported the gstfilter plugin to GStreamer 0.10.
16703         Fixes #346853.
16704
16705 2006-07-10  Wim Taymans  <wim@fluendo.com>
16706
16707         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
16708           Extract comment information!!
16709
16710 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
16711
16712         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
16713         (qtdemux_tag_add_date):
16714           Extract year/date information (fixes #347079).
16715
16716 2006-07-07  Wim Taymans  <wim@fluendo.com>
16717
16718         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
16719         Don't crash on twos/sowt/raw audio. #345830.
16720
16721 2006-07-07  Wim Taymans  <wim@fluendo.com>
16722
16723         Patch by: Lutz Mueller <lutz at topfrose dot de>
16724
16725         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
16726         (gst_neonhttp_src_init), (gst_neonhttp_src_finalize),
16727         (request_dispatch), (gst_neonhttp_src_create),
16728         (gst_neonhttp_src_start), (gst_neonhttp_src_get_size),
16729         (gst_neonhttp_src_stop), (set_proxy), (set_uri),
16730         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
16731         (gst_neonhttp_src_uri_set_uri), (size_header_handler):
16732         * ext/neon/gstneonhttpsrc.h:
16733         Remove unlock function. start/stop will do everything needed
16734         Removed code that was never called.
16735         Use gst_pad_alloc_buffer. Don't send EOS - parent class does that for us.
16736         Do not escape path. Fixes #346723.
16737         Additional code cleanups.
16738
16739 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
16740
16741         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16742         (gst_qtdemux_loop_state_header), (qtdemux_video_caps):
16743           Fix silly crasher in state change function; add
16744           IV41 fourcc (see bug #171111); don't output confusing
16745           debug message when skipping atoms.
16746
16747 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
16748
16749         * ext/directfb/dfbvideosink.c:
16750         * ext/gsm/gstgsmdec.c:
16751         * ext/gsm/gstgsmenc.c:
16752         * ext/libmms/gstmms.c:
16753         * ext/neon/gstneonhttpsrc.c:
16754         * ext/theora/theoradec.c:
16755         * gst/freeze/gstfreeze.c:
16756         * gst/gdp/gstgdpdepay.c:
16757         * gst/gdp/gstgdppay.c:
16758         * sys/glsink/glimagesink.c:
16759           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
16760           and fix one GObject boilerplate macro.
16761
16762 2006-06-20  Wim Taymans  <wim@fluendo.com>
16763
16764         * gst/modplug/libmodplug/stdafx.h:
16765         Fix modplug on AMD64. Fixes #345336.
16766
16767 2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>
16768
16769         * configure.ac:
16770           Fix check so that future libneon API changes won't break the build.
16771
16772         * ext/neon/gstneonhttpsrc.c:
16773           Fix build with libneon-0.26.x (#345182).
16774
16775 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
16776
16777         * configure.ac:
16778           Fix --disable-external (can't set conditionals conditionally,
16779           #343602).
16780           
16781 2006-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16782
16783         * gst/spectrum/Makefile.am:
16784         Fix build.
16785
16786 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
16787
16788         * gst/spectrum/demo-audiotest.c: (on_window_destroy),
16789         (draw_spectrum), (message_handler), (main):
16790         * gst/spectrum/demo-osssrc.c: (on_window_destroy), (draw_spectrum),
16791         (message_handler), (main):
16792         port to use message to get results, cleanly exit when closing the window
16793         
16794         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
16795         (gst_spectrum_init), (gst_spectrum_dispose),
16796         (gst_spectrum_set_property), (gst_spectrum_get_property),
16797         (gst_spectrum_set_caps), (gst_spectrum_start),
16798         (gst_spectrum_message_new), (gst_spectrum_transform_ip):
16799         * gst/spectrum/gstspectrum.h:
16800         port to derive from basetransform and send results via messages
16801         (like level element)
16802
16803 2006-06-15  Wim Taymans  <wim@fluendo.com>
16804
16805         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
16806         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie),
16807         (gst_qtdemux_loop), (gst_qtdemux_chain), (qtdemux_parse_trak):
16808         Combine return values from src pad pushes.
16809
16810 2006-06-15  Wim Taymans  <wim@fluendo.com>
16811
16812         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
16813         (gst_qtdemux_prepare_current_sample), (gst_qtdemux_advance_sample),
16814         (gst_qtdemux_add_stream):
16815         Don't crash on files with 0 samples, EOS immediatly instead.
16816         Fixes #344944.
16817
16818 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
16819
16820         Patch by: Wouter Paesen  <wouter at kangaroot net>
16821
16822         * ext/soundtouch/Makefile.am:
16823         * ext/soundtouch/gstpitch.cc:
16824           Make pitch element controllable via GstController interface
16825           (#344821).
16826           
16827         * configure.ac:
16828           Up core requirements to 0.10.8.1/CVS because earlier
16829           GstControllers can't handle float properties correctly.
16830           Check for GstController CFLAGS and LIBS.
16831
16832         * tests/icles/Makefile.am:
16833         * tests/icles/pitch-test.c: (main):
16834           Add small test program for the above (welcome to the 80s!).
16835
16836 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
16837
16838         Patch by: Sebastian Dröge  <slomo at circular-chaos org>
16839
16840         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init),
16841         (gst_wavpack_enc_class_init), (gst_wavpack_enc_set_wp_config),
16842         (gst_wavpack_enc_chain), (gst_wavpack_enc_sink_event),
16843         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
16844         * ext/wavpack/gstwavpackenc.h:
16845           Use bitrate property solely for bitrates and add new
16846           bits-per-sample property for the other stuff. Set duration
16847           to 'unknown' in initial header and resend header with proper
16848           duration on EOS; update Sebastian's e-mail address.
16849
16850 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16851
16852         * examples/directfb/.cvsignore:
16853         * ext/directfb/.cvsignore:
16854           #define red green
16855
16856 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16857
16858         * gst/spectrum/.cvsignore:
16859           Ignore more.
16860
16861 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16862
16863         * ext/libmms/gstmms.c: (gst_mms_create):
16864           Set caps on outgoing buffers.
16865
16866         * sys/directdraw/gstdirectdrawsink.c: (gst_directdrawsink_init):
16867           Comment out unused global instance variable.
16868
16869 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
16870
16871         Patch by: Sebastian Dröge  <mail at slomosnail de>
16872
16873         * ext/wavpack/Makefile.am:
16874         * ext/wavpack/gstwavpack.c: (plugin_init):
16875         * ext/wavpack/gstwavpackcommon.h:
16876         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
16877         (gst_wavpack_enc_correction_mode_get_type),
16878         (gst_wavpack_enc_joint_stereo_mode_get_type),
16879         (gst_wavpack_enc_base_init), (gst_wavpack_enc_class_init),
16880         (gst_wavpack_enc_init), (gst_wavpack_enc_dispose),
16881         (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config),
16882         (gst_wavpack_enc_format_samples), (gst_wavpack_enc_push_block),
16883         (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block),
16884         (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state),
16885         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property),
16886         (gst_wavpack_enc_plugin_init):
16887         * ext/wavpack/gstwavpackenc.h:
16888         * ext/wavpack/md5.c:
16889         * ext/wavpack/md5.h:
16890           Add wavpack encoder element (#343131).
16891
16892 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
16893
16894         * configure.ac:
16895           Check for X before using X_CFLAGS in the check for opengl (#343866).
16896           
16897         * ext/musepack/Makefile.am:
16898         * ext/wavpack/Makefile.am:
16899         * gst/speed/Makefile.am:
16900           Add missing GST_LIBS, fixes build on cygwin (#343866).
16901
16902 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16903
16904         * configure.ac:
16905           enable building of GDP elements
16906         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16907         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16908         (gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
16909         (gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
16910         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_sink_event),
16911         (gst_gdp_pay_set_property), (gst_gdp_pay_get_property),
16912         (gst_gdp_pay_change_state):
16913         * gst/gdp/gstgdppay.h:
16914           add version 1.0
16915
16916 2006-06-02  Michael Smith  <msmith@fluendo.com>
16917
16918         * ext/theora/theoradec.c: (theora_dec_src_convert),
16919         (theora_handle_type_packet), (theora_handle_422_image),
16920         (theora_handle_444_image), (theora_handle_420_image),
16921         (theora_handle_data_packet):
16922           Theora 4:4:4 pixel format support.
16923
16924 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16925
16926         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16927         (gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
16928         (gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
16929         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain),
16930         (gst_gdp_pay_sink_event), (gst_gdp_pay_set_property),
16931         (gst_gdp_pay_get_property):
16932           add crc-header and crc-payload properties
16933           don't error out on some things that are recoverable
16934         * tests/check/elements/gdppay.c: (GST_START_TEST), (gdppay_suite):
16935           add test for crc
16936
16937 2006-06-02  Stefan Kost  <ensonic@users.sf.net>
16938
16939         * ext/alsaspdif/alsaspdifsink.h:
16940         * ext/amrwb/gstamrwbdec.h:
16941         * ext/amrwb/gstamrwbenc.h:
16942         * ext/amrwb/gstamrwbparse.h:
16943         * ext/arts/gst_arts.h:
16944         * ext/artsd/gstartsdsink.h:
16945         * ext/audiofile/gstafparse.h:
16946         * ext/audiofile/gstafsink.h:
16947         * ext/audiofile/gstafsrc.h:
16948         * ext/audioresample/gstaudioresample.h:
16949         * ext/bz2/gstbz2dec.h:
16950         * ext/bz2/gstbz2enc.h:
16951         * ext/dirac/gstdiracdec.h:
16952         * ext/directfb/dfbvideosink.h:
16953         * ext/divx/gstdivxdec.h:
16954         * ext/divx/gstdivxenc.h:
16955         * ext/dts/gstdtsdec.h:
16956         * ext/faac/gstfaac.h:
16957         * ext/gsm/gstgsmdec.h:
16958         * ext/gsm/gstgsmenc.h:
16959         * ext/ivorbis/vorbisenc.h:
16960         * ext/libfame/gstlibfame.h:
16961         * ext/nas/nassink.h:
16962         * ext/neon/gstneonhttpsrc.h:
16963         * ext/polyp/polypsink.h:
16964         * ext/sdl/sdlaudiosink.h:
16965         * ext/sdl/sdlvideosink.h:
16966         * ext/shout/gstshout.h:
16967         * ext/snapshot/gstsnapshot.h:
16968         * ext/sndfile/gstsf.h:
16969         * ext/swfdec/gstswfdec.h:
16970         * ext/tarkin/gsttarkindec.h:
16971         * ext/tarkin/gsttarkinenc.h:
16972         * ext/theora/theoradec.h:
16973         * ext/wavpack/gstwavpackdec.h:
16974         * ext/wavpack/gstwavpackparse.h:
16975         * ext/xine/gstxine.h:
16976         * ext/xvid/gstxviddec.h:
16977         * ext/xvid/gstxvidenc.h:
16978         * gst/cdxaparse/gstcdxaparse.h:
16979         * gst/cdxaparse/gstcdxastrip.h:
16980         * gst/colorspace/gstcolorspace.h:
16981         * gst/festival/gstfestival.h:
16982         * gst/freeze/gstfreeze.h:
16983         * gst/gdp/gstgdpdepay.h:
16984         * gst/gdp/gstgdppay.h:
16985         * gst/modplug/gstmodplug.h:
16986         * gst/mpeg1sys/gstmpeg1systemencode.h:
16987         * gst/mpeg1videoparse/gstmp1videoparse.h:
16988         * gst/mpeg2sub/gstmpeg2subt.h:
16989         * gst/mpegaudioparse/gstmpegaudioparse.h:
16990         * gst/multifilesink/gstmultifilesink.h:
16991         * gst/overlay/gstoverlay.h:
16992         * gst/playondemand/gstplayondemand.h:
16993         * gst/qtdemux/qtdemux.h:
16994         * gst/rtjpeg/gstrtjpegdec.h:
16995         * gst/rtjpeg/gstrtjpegenc.h:
16996         * gst/smooth/gstsmooth.h:
16997         * gst/smoothwave/gstsmoothwave.h:
16998         * gst/spectrum/gstspectrum.h:
16999         * gst/speed/gstspeed.h:
17000         * gst/stereo/gststereo.h:
17001         * gst/switch/gstswitch.h:
17002         * gst/tta/gstttadec.h:
17003         * gst/tta/gstttaparse.h:
17004         * gst/videodrop/gstvideodrop.h:
17005         * gst/xingheader/gstxingmux.h:
17006         * sys/directdraw/gstdirectdrawsink.h:
17007         * sys/directsound/gstdirectsoundsink.h:
17008         * sys/dxr3/dxr3audiosink.h:
17009         * sys/dxr3/dxr3spusink.h:
17010         * sys/dxr3/dxr3videosink.h:
17011         * sys/qcam/gstqcamsrc.h:
17012         * sys/vcd/vcdsrc.h:
17013         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
17014
17015 2006-05-31  Edward Hervey  <edward@fluendo.com>
17016
17017         * ext/faad/gstfaad.h:
17018         Forgot to commit the header file too.
17019
17020 2006-05-31  Edward Hervey  <edward@fluendo.com>
17021
17022         * ext/faad/gstfaad.c: (gst_faad_class_init), (gst_faad_init),
17023         (gst_faad_dispose), (gst_faad_sink_event), (clip_outgoing_buffer),
17024         (gst_faad_chain), (gst_faad_change_state):
17025         Added GstSegment to control segments.
17026         Added clipping/dropping of outgoing buffers in order to have accurate
17027         seeking working properly.
17028
17029 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
17030
17031         Patch by: Lutz Müller  <lutz at topfrose de>
17032
17033         * ext/bz2/Makefile.am:
17034         * ext/bz2/gstbz2dec.c: (gst_bz2dec_chain), (gst_bz2dec_init),
17035         (gst_bz2dec_change_state), (gst_bz2dec_class_init):
17036           Use gst_type_find_helper_* functions for typefinding; use
17037           correct caps with gst_pad_alloc_buffer(); add state change
17038           function and reset decoder in it; don't unref buffer if
17039           pad_push fails; use fixed caps on source pad. (#341524).
17040
17041 2006-05-27  Stefan Kost  <ensonic@users.sf.net>
17042
17043         * gst/spectrum/Makefile.am:
17044         * gst/spectrum/demo-audiotest.c: (on_frequency_changed),
17045         (spectrum_chain), (main):
17046         * gst/spectrum/demo-osssrc.c:
17047         added another example
17048         
17049         * sys/v4l2/gstv4l2src.c:
17050         fix typo
17051
17052 2006-05-26  Edward Hervey  <edward@fluendo.com>
17053
17054         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment): 
17055         Clip the outputed NEWSEGMENT stop time to the configured segment stop
17056         time.
17057
17058 2006-05-26  Wim Taymans  <wim@fluendo.com>
17059
17060         * gst/qtdemux/qtdemux.c: (gst_qtdemux_do_seek):
17061         Don't clear the running variable in the seek code.
17062
17063 2006-05-24  Wim Taymans  <wim@fluendo.com>
17064
17065         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_esds):
17066         Detect QCELP in mp4a descriptors.
17067
17068 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
17069
17070         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak), (plugin_init):
17071           po/POTFILES.in:
17072           Throw an error when the file is encrypted. Move plugin_init stuff
17073           to the end of the file, add stuff for i18n, make debug category
17074           static.
17075
17076 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
17077
17078         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
17079
17080         * configure.ac:
17081         * gst/h264parse/Makefile.am:
17082         * gst/h264parse/gsth264parse.c: (gst_h264_parse_base_init),
17083         (gst_h264_parse_finalize), (gst_h264_parse_class_init),
17084         (gst_h264_parse_init), (gst_h264_parse_chain),
17085         (gst_h264_parse_handle_event), (plugin_init):
17086         * gst/h264parse/gsth264parse.h:
17087           New plugin: h264parse (#340638)
17088
17089 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17090
17091         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain),
17092         (gst_gdp_depay_change_state):
17093         * gst/gdp/gstgdpdepay.h:
17094         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader),
17095         (gst_gdp_pay_chain), (gst_gdp_pay_sink_event),
17096         (gst_gdp_pay_change_state):
17097         * gst/gdp/gstgdppay.h:
17098           Handle error cases when calling functions
17099           do downwards state change after parent's change_state
17100         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
17101         * tests/check/elements/gdppay.c: (GST_START_TEST):
17102           clean up more
17103
17104 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17105
17106         * gst/gdp/Makefile.am:
17107         * gst/gdp/gstgdp.c: (plugin_init):
17108         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_base_init),
17109         (gst_gdp_depay_class_init), (gst_gdp_depay_init),
17110         (gst_gdp_depay_finalize), (gst_gdp_depay_chain),
17111         (gst_gdp_depay_change_state), (gst_gdp_depay_plugin_init):
17112         * gst/gdp/gstgdpdepay.h:
17113         * gst/gdp/gstgdppay.c: (gst_gdp_pay_base_init),
17114         (gst_gdp_pay_class_init), (gst_gdp_pay_init),
17115         (gst_gdp_pay_dispose), (gst_gdp_stamp_buffer),
17116         (gst_gdp_buffer_from_caps), (gst_gdp_pay_buffer_from_buffer),
17117         (gst_gdp_buffer_from_event), (gst_gdp_pay_reset_streamheader),
17118         (gst_gdp_queue_buffer), (gst_gdp_pay_chain),
17119         (gst_gdp_pay_sink_event), (gst_gdp_pay_change_state),
17120         (gst_gdp_pay_plugin_init):
17121         * gst/gdp/gstgdppay.h:
17122         * tests/check/Makefile.am:
17123         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
17124         (cleanup_gdpdepay), (gdpdepay_push_per_byte), (GST_START_TEST),
17125         (setup_gdpdepay_streamheader), (gdpdepay_suite), (main):
17126         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay),
17127         (GST_START_TEST), (setup_gdppay_streamheader), (gdppay_suite),
17128         (main):
17129           adding GDP payloader and depayloader.  Build integration will
17130           follow later when the GDP issues for core are sorted out.
17131
17132 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17133
17134         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
17135         (gst_spectrum_init), (gst_spectrum_set_sink_caps),
17136         (gst_spectrum_get_sink_caps), (gst_spectrum_chain):
17137           Use boilerplate macro, fix strings to match plugin-moval-requirements
17138
17139 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17140
17141         * gst/spectrum/Makefile.am:
17142           Link to base libraries
17143
17144         * gst/spectrum/demo-osssrc.c: (main):
17145           use new threshhold property
17146
17147         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
17148         (gst_spectrum_init), (gst_spectrum_dispose),
17149         (gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
17150         (gst_spectrum_get_sink_caps), (gst_spectrum_chain),
17151         (gst_spectrum_change_state):
17152         * gst/spectrum/gstspectrum.h:
17153         Use gst_adapter, support multiple-channels, add threshold property for
17154         result, add docs, fix resulting spectrum range (was including mirrored
17155         results)
17156
17157 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17158
17159         * configure.ac:
17160         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main):
17161         * gst/spectrum/fix_fft.c: (gst_spectrum_fix_dot):
17162         * gst/spectrum/gstspectrum.c: (gst_spectrum_get_type),
17163         (gst_spectrum_base_init), (gst_spectrum_class_init),
17164         (gst_spectrum_init), (gst_spectrum_dispose),
17165         (gst_spectrum_set_property), (gst_spectrum_chain):
17166         * gst/spectrum/gstspectrum.h:
17167         Initial port of the spectrum element
17168
17169 2006-05-19  Edgard Lima <edgard.lima@indt.org.br>
17170
17171         * sys/v4l2/gstv4l2.c:
17172         * sys/v4l2/gstv4l2object.c:
17173         * sys/v4l2/gstv4l2object.h:
17174         * sys/v4l2/gstv4l2src.c:
17175         * sys/v4l2/gstv4l2xoverlay.c:
17176         Some clean-ups requested by wingo in bug #338818.       
17177
17178 2006-05-19  Michael Smith  <msmith@fluendo.com>
17179
17180         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_base_init),
17181         (alsaspdifsink_class_init), (alsaspdifsink_init),
17182         (alsaspdifsink_dispose), (alsaspdifsink_set_property),
17183         (alsaspdifsink_get_property), (alsaspdifsink_set_caps),
17184         (alsaspdifsink_get_time), (alsaspdifsink_open),
17185         (alsaspdifsink_close), (alsaspdifsink_find_pcm_device),
17186         (alsaspdifsink_write_frame), (alsaspdifsink_event),
17187         (alsaspdifsink_get_times), (alsaspdifsink_current_delay),
17188         (generate_iec958_zero_frame), (alsaspdifsink_render),
17189         (ignore_alsa_err), (alsaspdifsink_change_state), (plugin_init):
17190         * ext/alsaspdif/alsaspdifsink.h:
17191           Use sampling rate from set_caps. Comment out some more unused code.
17192
17193 2006-05-18  Stefan Kost  <ensonic@users.sf.net>
17194
17195         * configure.ac:
17196           Check for X11
17197         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
17198         * sys/v4l2/gstv4l2object.h:
17199         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_iface_supported):
17200         * sys/v4l2/gstv4l2src.h:
17201         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
17202         * sys/v4l2/gstv4l2xoverlay.h:
17203           Code cleanups, fix debug macros
17204
17205 2006-05-18  Michael Smith  <msmith@fluendo.com>
17206
17207         * ext/Makefile.am:
17208           Fix distcheck?
17209
17210 2006-05-18  Michael Smith  <msmith@fluendo.com>
17211
17212         * configure.ac:
17213         * ext/Makefile.am:
17214         * ext/alsaspdif/Makefile.am:
17215         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_base_init),
17216         (alsaspdifsink_class_init), (alsaspdifsink_init),
17217         (alsaspdifsink_dispose), (alsaspdifsink_set_property),
17218         (alsaspdifsink_get_property), (alsaspdifsink_provide_clock),
17219         (alsaspdifsink_get_time), (alsaspdifsink_open),
17220         (alsaspdifsink_close), (alsaspdifsink_find_pcm_device),
17221         (alsaspdifsink_write_frame), (alsaspdifsink_event),
17222         (alsaspdifsink_get_times), (alsaspdifsink_current_delay),
17223         (generate_iec958_zero_frame), (alsaspdifsink_render),
17224         (ignore_alsa_err), (alsaspdifsink_change_state), (plugin_init):
17225         * ext/alsaspdif/alsaspdifsink.h:
17226           Add an alsa plugin to output IEC958 frames over S/PDIF
17227
17228 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
17229
17230         * ext/faad/gstfaad.c: (gst_faad_update_caps), (gst_faad_chain):
17231           Remove unused caps cruft from chain function altogether.
17232
17233 2006-05-17  Edward Hervey  <edward@fluendo.com>
17234
17235         * ext/faad/gstfaad.c: (gst_faad_chain): 
17236         There's no guarantee that caps was set to something, and if it did, the
17237         function called to fill that variable actually sets the caps on the
17238         sourcpad, so we call gst_pad_alloc_buffer_and_set_caps() using
17239         GST_PAD_CAPS(faad->srcpad).
17240
17241 2006-05-13  Tim-Philipp Müller  <tim at centricular dot net>
17242
17243         Patch by: Young-Ho Cha  <ganadist chollian net>
17244
17245         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chain),
17246         (gst_faad_change_state):
17247         * ext/faad/gstfaad.h:
17248           If we encounter a decoding error, don't error out immediately,
17249           but try to resync (or see if we have better luck with the next
17250           buffer in case of framed input). Only error out after five
17251           consecutive errors. Fixes #341563.
17252
17253 2006-05-12  Wim Taymans  <wim@fluendo.com>
17254
17255         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init),
17256         (gst_xvidenc_init), (gst_xvidenc_finalize),
17257         (gst_xvidenc_handle_sink_event), (gst_xvidenc_setup),
17258         (gst_xvidenc_setcaps), (gst_xvidenc_encode), (gst_xvidenc_chain),
17259         (gst_xvidenc_flush_buffers), (gst_xvidenc_set_property),
17260         (gst_xvidenc_get_property):
17261         Compile fixes.
17262
17263 2006-05-12  Wim Taymans  <wim@fluendo.com>
17264
17265         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
17266
17267         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_structure_to_csp),
17268         (gst_xvid_csp_to_caps), (gst_xvid_image_get_size),
17269         (gst_xvid_image_fill):
17270         * ext/xvid/gstxvid.h:
17271         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
17272         (gst_xviddec_init), (gst_xviddec_reset), (gst_xviddec_unset),
17273         (gst_xviddec_handle_sink_event), (gst_xviddec_setup),
17274         (gst_xviddec_add_par), (gst_xviddec_negotiate),
17275         (gst_xviddec_decode), (gst_xviddec_chain),
17276         (gst_xviddec_flush_buffers), (gst_xviddec_src_getcaps),
17277         (gst_xviddec_src_link), (gst_xviddec_setcaps),
17278         (gst_xviddec_change_state):
17279         * ext/xvid/gstxviddec.h:
17280         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
17281         (gst_xvidenc_quant_type_get_type), (gst_xvidenc_pass_get_type),
17282         (gst_xvidenc_get_type), (gst_xvidenc_base_init),
17283         (gst_xvidenc_class_init), (gst_xvidenc_init),
17284         (gst_xvidenc_finalize), (gst_xvidenc_handle_sink_event),
17285         (gst_xvidenc_setup), (gst_xvidenc_setcaps), (gst_xvidenc_encode),
17286         (gst_xvidenc_chain), (gst_xvidenc_flush_buffers),
17287         (gst_xvidenc_set_property), (gst_xvidenc_get_property),
17288         (gst_xvidenc_change_state):
17289         * ext/xvid/gstxvidenc.h:
17290         xvid plugin to support more capabilities of XviD codec.
17291         Fixes #339462.
17292         Some more cleanups here and there.
17293
17294 2006-05-11  Edgard Lima <edgard.lima@indt.org.br>
17295
17296         * sys/v4l2/Makefile.am:
17297         * sys/v4l2/gstv4l2.c:
17298         * sys/v4l2/gstv4l2colorbalance.c:
17299         * sys/v4l2/gstv4l2colorbalance.h:
17300         * sys/v4l2/gstv4l2element.c:
17301         * sys/v4l2/gstv4l2element.h:
17302         * sys/v4l2/gstv4l2object.c:
17303         * sys/v4l2/gstv4l2object.h:
17304         * sys/v4l2/gstv4l2src.c:
17305         * sys/v4l2/gstv4l2src.h:
17306         * sys/v4l2/gstv4l2tuner.c:
17307         * sys/v4l2/gstv4l2tuner.h:
17308         * sys/v4l2/gstv4l2xoverlay.c:
17309         * sys/v4l2/gstv4l2xoverlay.h:
17310         * sys/v4l2/v4l2_calls.c:
17311         * sys/v4l2/v4l2_calls.h:
17312         * sys/v4l2/v4l2src_calls.c:
17313         * sys/v4l2/v4l2src_calls.h:
17314         Changes proposed by Wingo in bug #338818.
17315
17316 2006-05-11  Wim Taymans  <wim@fluendo.com>
17317
17318         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_parse_trak),
17319         (gst_qtdemux_handle_esds):
17320         Figure out the real audio type in mp4a boxes by parsing the
17321         optional descriptors in the optional esds box. Promote the
17322         default AAC to mp3 when indicated. Fixes #330632.
17323
17324 2006-05-10  Wim Taymans  <wim@fluendo.com>
17325
17326         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_dump_unknown),
17327         (qtdemux_parse_trak), (gst_qtdemux_handle_esds):
17328         Parse version 2 sample descriptions. Fixes #341231
17329         Don't #define gst_util_dump_mem(), use something more
17330         specific instead to avoid confusion.
17331
17332 2006-05-08  Edgard Lima <edgard.lima@indt.org.br>
17333
17334         * sys/v4l2/gstv4l2src.c:
17335         * sys/v4l2/v4l2src_calls.c:
17336         Fix fourcc name printed out. Patch from Martin Rubli.
17337
17338 2006-05-08  Wim Taymans  <wim@fluendo.com>
17339
17340         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_query),
17341         (qtdemux_dump_mvhd):
17342         Don't cause side effects in a debugging function.
17343         Also report duration in push mode since we can.
17344
17345 2006-05-08  Edward Hervey  <edward@fluendo.com>
17346
17347         * autogen.sh: (CONFIGURE_DEF_OPT): 
17348         libtoolize on Darwin/MacOSX is called glibtoolize
17349
17350 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
17351
17352         * ext/amrwb/gstamrwbdec.c:
17353         * ext/amrwb/gstamrwbenc.c:
17354         * ext/sdl/sdlaudiosink.c:
17355         * ext/sdl/sdlvideosink.c:
17356         * ext/wavpack/gstwavpackdec.c:
17357         * ext/xine/xine.c:
17358         * ext/xine/xineaudiodec.c:
17359         * ext/xine/xineaudiosink.c:
17360         * ext/xine/xineinput.c:
17361         * gst/cdxaparse/gstcdxaparse.c:
17362         * gst/freeze/gstfreeze.c:
17363         * sys/v4l2/gstv4l2element.c:
17364         Add semicolons after GST_BOILERPLATE[_FULL] so that
17365         indent doesn't mess up following lines.
17366
17367 2006-05-05  Edgard Lima <edgard.lima@indt.org.br>
17368
17369         * sys/v4l2/gstv4l2element.c:
17370         * sys/v4l2/gstv4l2element.h:
17371         * sys/v4l2/gstv4l2src.c:
17372         * sys/v4l2/gstv4l2src.h:
17373         * sys/v4l2/gstv4l2tuner.c:
17374         * sys/v4l2/gstv4l2tuner.h:
17375         * sys/v4l2/v4l2_calls.c:
17376         * sys/v4l2/v4l2_calls.h:
17377         * sys/v4l2/v4l2src_calls.c:
17378         * sys/v4l2/v4l2src_calls.h:
17379         * tests/icles/v4l2src-test.c:
17380         Some changes proposed by wingo in bug #338818 (but not everything
17381         yet). Patch from Martin Rubli to fix framerate detection.
17382
17383 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
17384
17385         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_prepare):
17386           Use (NULL) instead of just NULL in GST_ELEMENT_ERROR macro.
17387
17388 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
17389
17390         * configure.ac:
17391           Back to CVS
17392
17393 === release 0.10.3 ===
17394
17395 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
17396
17397         * configure.ac:
17398           releasing 0.10.3, "Petition to request permission"
17399
17400 2006-05-04  Julien MOUTTE  <julien@moutte.net>
17401
17402         * tests/icles/Makefile.am: Fix build.
17403
17404 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17405
17406         * ext/musicbrainz/Makefile.am:
17407           Add GST_PLUGINS_BASE_CFLAGS to CFLAGS for gst/tag/tag.h
17408
17409 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
17410
17411         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17412         Clean up one piece of logic slightly and remove a 
17413         dead code block.
17414
17415 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17416
17417         * docs/plugins/Makefile.am:
17418         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17419         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17420         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
17421         * docs/plugins/inspect/plugin-musicbrainz.xml:
17422         * ext/musicbrainz/gsttrm.c:
17423         * ext/musicbrainz/gsttrm.h:
17424           Everybody loves docs - add docs for musicbrainz plugin.
17425
17426 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17427
17428         * ext/Makefile.am:
17429           Add musicbrainz dir to DIST_SUBDIRS as well (fixes distcheck).
17430           
17431 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17432
17433         * ext/Makefile.am:
17434           Forgot to commit this one.
17435
17436 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17437
17438         Patch by: James "Doc" Livingston  <doclivingston gmail com>
17439
17440         * configure.ac:
17441         * ext/musicbrainz/Makefile.am:
17442         * ext/musicbrainz/gsttrm.c: (gst_trm_base_init),
17443         (gst_trm_class_init), (gst_trm_init), (gst_trm_setcaps),
17444         (gst_trm_chain), (gst_trm_emit_signature), (gst_trm_set_property),
17445         (gst_trm_get_property), (gst_trm_change_state), (plugin_init):
17446         * ext/musicbrainz/gsttrm.h:
17447           Port MusicBrainz TRM plugin (#336898).
17448
17449 2006-05-03  Michael Smith  <msmith@fluendo.com>
17450
17451         * ext/faad/gstfaad.c: (gst_faad_setcaps),
17452         (looks_like_valid_header), (gst_faad_chain):
17453           Fix #334748: use fake_codec_data if the first bytes of the first
17454           buffer we process doesn't look like plausible AAC data (e.g.
17455           reserved values for rate, or channels). Fixes playback of Apple's
17456           movie trailers.
17457
17458 2006-05-02  Edgard Lima <edgard.lima@indt.org.br>
17459
17460         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_caps):
17461         Fix get_caps func to work when no framerate is available and the caps
17462         isn't simple.
17463
17464 2006-05-01  Edgard Lima <edgard.lima@indt.org.br>
17465
17466         * sys/v4l2/Makefile.am:
17467         * sys/v4l2/gstv4l2colorbalance.c:
17468         * sys/v4l2/gstv4l2xoverlay.c:
17469         * sys/v4l2/v4l2_calls.c:
17470         * tests/icles/Makefile.am:
17471         * tests/icles/v4l2src-test.c:
17472         Few improvements to move to good.
17473
17474 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17475
17476         * configure.ac:
17477         * docs/plugins/Makefile.am:
17478         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17479         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17480         * docs/plugins/inspect/plugin-taglib.xml:
17481         * ext/Makefile.am:
17482         * ext/taglib/Makefile.am:
17483         * ext/taglib/gstid3v2mux.cc:
17484         * ext/taglib/gstid3v2mux.h:
17485         * ext/taglib/gsttaglib.cc:
17486         * ext/taglib/gsttaglib.h:
17487         * tests/check/Makefile.am:
17488         * tests/check/elements/tagid3v2mux.c:
17489           moved to good.  Closes #336110
17490
17491 2006-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17492
17493         * docs/plugins/Makefile.am:
17494         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
17495         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
17496         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17497         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17498         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
17499           Fix up docs for taglib plugin
17500           Also scan .cc files
17501
17502 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
17503
17504         * ext/taglib/gsttaglib.cc:
17505           Post an error message on the bus in the (extremely unlikely)
17506           case of an error.
17507
17508 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
17509
17510         * ext/taglib/Makefile.am:
17511         * ext/taglib/gstid3v2mux.cc:
17512         * ext/taglib/gstid3v2mux.h:
17513         * ext/taglib/gsttaglib.cc:
17514         * ext/taglib/gsttaglib.h:
17515           Split the actual ID3v2 tag rendering code into
17516           its own subclass.
17517
17518 2006-04-29  Sebastien Moutte  <sebastien@moutte.net>
17519
17520         * ext/neon/gstneonhttpsrc.c:
17521         * ext/neon/gstneonhttpsrc.h:
17522           added iradio-mode support as in gnomevfssrc to enable 
17523           connections with icydemux that will send title tag messages on 
17524           shoutcast/icecast streams. I've also added iradio properties
17525           iradio-name, iradio-genre, iradio-url.
17526           added user-agent property because some shoutcast streams don't return 
17527           data if the GET requests don't have a User-Agent.
17528         * win32/common/libgstneon.dsp:
17529           use debug version of libneon in debug mode
17530 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
17531
17532         * configure.ac:
17533         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
17534         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
17535         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17536         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
17537         * sys/Makefile.am:
17538         * sys/ximagesrc/Makefile.am:
17539         * sys/ximagesrc/ximagesrc.c:
17540         * sys/ximagesrc/ximagesrc.h:
17541         * sys/ximagesrc/ximageutil.c:
17542         * sys/ximagesrc/ximageutil.h:
17543         * tests/Makefile.am:
17544         * tests/icles/.cvsignore:
17545         * tests/icles/Makefile.am:
17546         * tests/icles/ximagesrc-test.c:
17547           moved ximagesrc to good (See #336756)
17548
17549 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
17550
17551         * ext/faad/gstfaad.c: (gst_faad_init), (aac_rate_idx),
17552         (gst_faad_setcaps), (gst_faad_chain), (gst_faad_open_decoder),
17553         (gst_faad_close_decoder), (gst_faad_change_state):
17554         * ext/faad/gstfaad.h:
17555           If we run into a decoding error, try re-opening the decoder
17556           with faacDecInit2() using fake codec data created from the
17557           data the demuxer gave us. Should fix a whole bunch of
17558           GStreamer-faad problems incl. 'channel coupling not
17559           implemented', 'maximum number of scalefactor bands exceeded'
17560           etc. (#173007, #332892).
17561
17562 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
17563
17564         * ext/amrwb/gstamrwbdec.c:
17565         * ext/amrwb/gstamrwbenc.c:
17566         * ext/amrwb/gstamrwbparse.c:
17567         * ext/arts/gst_arts.c:
17568         * ext/artsd/gstartsdsink.c:
17569         * ext/audiofile/gstafparse.c:
17570         * ext/audiofile/gstafsink.c:
17571         * ext/audiofile/gstafsrc.c:
17572         * ext/audioresample/gstaudioresample.c:
17573         * ext/bz2/gstbz2dec.c:
17574         * ext/bz2/gstbz2enc.c:
17575         * ext/cdaudio/gstcdaudio.c:
17576         * ext/directfb/dfbvideosink.c:
17577         * ext/divx/gstdivxdec.c:
17578         * ext/divx/gstdivxenc.c:
17579         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17580         * ext/faac/gstfaac.c: (gst_faac_base_init):
17581         * ext/faad/gstfaad.c:
17582         * ext/gsm/gstgsmdec.c:
17583         * ext/gsm/gstgsmenc.c:
17584         * ext/hermes/gsthermescolorspace.c:
17585         * ext/ivorbis/vorbisfile.c:
17586         * ext/lcs/gstcolorspace.c:
17587         * ext/libfame/gstlibfame.c:
17588         * ext/libmms/gstmms.c: (gst_mms_base_init):
17589         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init):
17590         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17591         * ext/nas/nassink.c: (gst_nassink_base_init):
17592         * ext/neon/gstneonhttpsrc.c:
17593         * ext/sdl/sdlaudiosink.c:
17594         * ext/sdl/sdlvideosink.c:
17595         * ext/shout/gstshout.c:
17596         * ext/snapshot/gstsnapshot.c:
17597         * ext/sndfile/gstsf.c:
17598         * ext/swfdec/gstswfdec.c:
17599         * ext/tarkin/gsttarkindec.c:
17600         * ext/tarkin/gsttarkinenc.c:
17601         * ext/theora/theoradec.c:
17602         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
17603         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
17604         * ext/xvid/gstxviddec.c:
17605         * ext/xvid/gstxvidenc.c:
17606         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_base_init):
17607         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_base_init):
17608         * gst/chart/gstchart.c:
17609         * gst/colorspace/gstcolorspace.c:
17610         * gst/deinterlace/gstdeinterlace.c:
17611         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init):
17612         * gst/festival/gstfestival.c:
17613         * gst/filter/gstbpwsinc.c:
17614         * gst/filter/gstiir.c:
17615         * gst/filter/gstlpwsinc.c:
17616         * gst/freeze/gstfreeze.c:
17617         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17618         * gst/librfb/gstrfbsrc.c:
17619         * gst/mixmatrix/mixmatrix.c:
17620         * gst/mpeg1sys/gstmpeg1systemencode.c:
17621         * gst/mpeg1videoparse/gstmp1videoparse.c:
17622         * gst/mpeg2sub/gstmpeg2subt.c:
17623         * gst/mpegaudioparse/gstmpegaudioparse.c:
17624         * gst/multifilesink/gstmultifilesink.c:
17625         * gst/overlay/gstoverlay.c:
17626         * gst/passthrough/gstpassthrough.c:
17627         * gst/playondemand/gstplayondemand.c:
17628         * gst/qtdemux/qtdemux.c:
17629         * gst/rtjpeg/gstrtjpegdec.c:
17630         * gst/rtjpeg/gstrtjpegenc.c:
17631         * gst/smooth/gstsmooth.c:
17632         * gst/smoothwave/gstsmoothwave.c:
17633         * gst/spectrum/gstspectrum.c:
17634         * gst/speed/gstspeed.c:
17635         * gst/stereo/gststereo.c:
17636         * gst/switch/gstswitch.c:
17637         * gst/tta/gstttadec.c: (gst_tta_dec_base_init):
17638         * gst/tta/gstttaparse.c: (gst_tta_parse_base_init):
17639         * gst/vbidec/gstvbidec.c:
17640         * gst/videocrop/gstvideocrop.c:
17641         * gst/videodrop/gstvideodrop.c:
17642         * gst/virtualdub/gstxsharpen.c:
17643         * gst/xingheader/gstxingmux.c: (gst_xing_mux_base_init):
17644         * gst/y4m/gsty4mencode.c:
17645         * sys/cdrom/gstcdplayer.c:
17646         * sys/directdraw/gstdirectdrawsink.c:
17647         * sys/directsound/gstdirectsoundsink.c:
17648         * sys/glsink/glimagesink.c:
17649         * sys/qcam/gstqcamsrc.c:
17650         * sys/v4l2/gstv4l2src.c:
17651         * sys/vcd/vcdsrc.c: (gst_vcdsrc_base_init):
17652         * sys/ximagesrc/ximagesrc.c:
17653           Define GstElementDetails as const and also static (when defined as
17654           global)
17655
17656 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17657
17658         * ext/musepack/gstmusepackdec.c:
17659         (gst_musepackdec_handle_seek_event), (gst_musepackdec_loop):
17660           Add support for segment seeks.
17661
17662 2006-04-20  Edgard Lima  <edgard.lima@indt.org.br>
17663
17664         * sys/v4l2/gstv4l2src.c:
17665         Added a couple of ifdefs to make it compile with other kernels.
17666         
17667 2006-04-20  Wim Taymans  <wim@fluendo.com>
17668
17669         Patch by: j^ <j at bootlab dot org>
17670
17671         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
17672         (qtdemux_video_caps):
17673         Never treat video streams as an audio stream.
17674         Add qtdrw mime type.
17675         Fixes #339041
17676
17677 2006-04-19  Wim Taymans  <wim@fluendo.com>
17678
17679         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17680         For VBR audio, don't try to calculate the samples_per_frame.
17681         Fixes #338935.
17682
17683 2006-04-13  Edgard Lima  <edgard.lima@indt.org.br>
17684
17685         * sys/v4l2/gstv4l2src.c:
17686         Just added a gtk-doc comment.
17687
17688 2006-04-17  Michael Smith  <msmith@fluendo.com>
17689
17690         * ext/theora/theoradec.c: (theora_dec_src_convert),
17691         (theora_handle_type_packet), (theora_handle_422_image),
17692         (theora_handle_420_image), (theora_handle_data_packet):
17693         * ext/theora/theoradec.h:
17694           Apply fix from j^ for API change in libtheoradec.
17695
17696           Implement 4:2:2 pixel format. Untested at the moment.
17697
17698 2006-04-14  Tim-Philipp Müller  <tim at centricular dot net>
17699
17700         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_init),
17701         (gst_musepack_stream_init):
17702           Fix track/album peak tag values; use GST_DEBUG_FUNCPTR and
17703           gst_pad_new_from_static_template().
17704
17705 2006-04-13  Edgard Lima  <edgard.lima@indt.org.br>
17706
17707         * sys/v4l2/gstv4l2src.c: (gst_v4l2element_class_init),
17708         (gst_v4l2src_dispose):
17709         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_buffer_new):
17710         Fixed some memory leaks.
17711
17712 2006-04-12  Edgard Lima  <edgard.lima@indt.org.br>
17713
17714         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
17715         Fix to work in read mode.
17716
17717 2006-04-10  Wim Taymans  <wim@fluendo.com>
17718
17719         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17720         Fix parsing of newer stsd chunks again.
17721
17722 2006-04-10  Wim Taymans  <wim@fluendo.com>
17723
17724         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
17725         (qtdemux_parse_trak):
17726         Fix framerate calculation.
17727
17728 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17729
17730         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_class_init):
17731           Fix build (class_init declaration/definition mismatch).
17732
17733 2006-04-10  Wim Taymans  <wim@fluendo.com>
17734
17735         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17736         force mono 8000 Hz on AMR samples.
17737
17738 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17739
17740         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start):
17741           remove atoll by using g_ascii_strtoull (atoll is not supported on WIN32)
17742         * sys/directdraw/gstdirectdrawsink.c:
17743         * sys/directsound/gstdirectsoundsink.c:
17744           done some cleans in sources
17745         * win32/vs6:
17746           add project files for neon, qtdemux
17747           
17748 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17749
17750         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_class_init):
17751         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_class_init):
17752         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_class_init):
17753         * ext/arts/gst_arts.c: (gst_arts_class_init):
17754         * ext/artsd/gstartsdsink.c: (gst_artsdsink_class_init):
17755         * ext/audiofile/gstafsink.c: (gst_afsink_class_init):
17756         * ext/audiofile/gstafsrc.c: (gst_afsrc_class_init):
17757         * ext/audioresample/gstaudioresample.c:
17758         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
17759         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_class_init):
17760         * ext/divx/gstdivxdec.c: (gst_divxdec_class_init):
17761         * ext/hermes/gsthermescolorspace.c:
17762         (gst_hermes_colorspace_class_init):
17763         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_class_init):
17764         * ext/jack/gstjack.c: (gst_jack_class_init):
17765         * ext/jack/gstjackbin.c: (gst_jack_bin_class_init):
17766         * ext/lcs/gstcolorspace.c: (gst_colorspace_class_init):
17767         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init):
17768         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
17769         * ext/nas/nassink.c: (gst_nassink_class_init):
17770         * ext/shout/gstshout.c: (gst_icecastsend_class_init):
17771         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17772         * ext/sndfile/gstsf.c: (gst_sf_class_init):
17773         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_class_init),
17774         (gst_swfdec_class_init):
17775         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_class_init):
17776         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_class_init):
17777         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_class_init):
17778         * gst/chart/gstchart.c: (gst_chart_class_init):
17779         * gst/colorspace/gstcolorspace.c: (gst_colorspace_class_init):
17780         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_class_init):
17781         * gst/festival/gstfestival.c: (gst_festival_class_init):
17782         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init):
17783         * gst/filter/gstiir.c: (gst_iir_class_init):
17784         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
17785         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init):
17786         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_class_init):
17787         * gst/mpeg1sys/gstmpeg1systemencode.c:
17788         (gst_system_encode_class_init):
17789         * gst/mpeg1videoparse/gstmp1videoparse.c:
17790         (gst_mp1videoparse_class_init):
17791         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_class_init):
17792         * gst/mpegaudioparse/gstmpegaudioparse.c:
17793         (gst_mp3parse_class_init):
17794         * gst/overlay/gstoverlay.c: (gst_overlay_class_init):
17795         * gst/passthrough/gstpassthrough.c: (passthrough_class_init):
17796         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init):
17797         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_class_init):
17798         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_class_init):
17799         * gst/smooth/gstsmooth.c: (gst_smooth_class_init):
17800         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init):
17801         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
17802         * gst/stereo/gststereo.c: (gst_stereo_class_init):
17803         * gst/switch/gstswitch.c: (gst_switch_class_init):
17804         * gst/tta/gstttadec.c: (gst_tta_dec_class_init):
17805         * gst/tta/gstttaparse.c: (gst_tta_parse_class_init):
17806         * gst/vbidec/gstvbidec.c: (gst_vbidec_class_init):
17807         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init):
17808         * gst/virtualdub/gstxsharpen.c: (gst_xsharpen_class_init):
17809         * gst/y4m/gsty4mencode.c: (gst_y4mencode_class_init):
17810         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
17811         * sys/directsound/gstdirectsoundsink.c:
17812         (gst_directsoundsink_class_init):
17813         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_class_init):
17814         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
17815         * sys/dxr3/dxr3videosink.c: (dxr3videosink_class_init):
17816         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_class_init):
17817         * sys/v4l2/gstv4l2colorbalance.c:
17818         (gst_v4l2_color_balance_channel_class_init):
17819         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_channel_class_init),
17820         (gst_v4l2_tuner_norm_class_init):
17821         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_class_init):
17822         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17823
17824 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17825
17826         * gst/colorspace/gstcolorspace.h:
17827         * gst/deinterlace/gstdeinterlace.h:
17828         * gst/passthrough/gstpassthrough.h:
17829         * gst/y4m/gsty4mencode.h:
17830         Fix more broken GObject macros
17831
17832 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17833
17834         * ext/xine/gstxine.h:
17835         * gst-libs/gst/play/play.h:
17836         * sys/v4l2/gstv4l2element.h:
17837         * sys/ximagesrc/ximageutil.h:
17838         Fix broken GObject macros
17839
17840 2006-04-08  Wim Taymans  <wim@fluendo.com>
17841
17842         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
17843         (gst_qtdemux_chain), (gst_qtdemux_add_stream), (qtdemux_dump_stsz),
17844         (qtdemux_dump_stco), (qtdemux_parse_trak):
17845         Don't make rounding errors in timestamp/duration calculations.
17846         Fix timestamps for AMR and IMA4.  Fixes (#337436).
17847         Create a dummy segment even when there is no edit list.
17848
17849 2006-04-07  Julien MOUTTE  <julien@moutte.net>
17850
17851         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt: Updates.
17852         * examples/directfb/Makefile.am: Add example resource files to
17853         dist.
17854
17855 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17856
17857         * ext/amrwb/amrwb-code/Makefile.am:
17858         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
17859         (gst_ximagesrc_create), (gst_ximagesrc_set_property):
17860         Typo fix, s/XFree86/X11 and added doc blurb saying that it fixates to
17861         25fps
17862
17863 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17864
17865         * tests/icles/ximagesrc-test.c: (main):
17866         Actually assert that pipeline goes to playing
17867
17868 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17869
17870         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
17871         (composite_pixel), (gst_ximagesrc_ximage_get),
17872         (gst_ximagesrc_create), (gst_ximagesrc_set_property):
17873         Fix typo, C++ style comments and other small cleanups
17874         
17875 2006-04-06  Wim Taymans  <wim@fluendo.com>
17876
17877         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
17878         (gst_qtdemux_handle_src_query), (gst_qtdemux_find_index),
17879         (gst_qtdemux_find_keyframe), (gst_qtdemux_find_segment),
17880         (gst_qtdemux_move_stream), (gst_qtdemux_perform_seek),
17881         (gst_qtdemux_do_seek), (gst_qtdemux_change_state),
17882         (gst_qtdemux_activate_segment),
17883         (gst_qtdemux_prepare_current_sample), (gst_qtdemux_advance_sample),
17884         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
17885         (qtdemux_parse_trak):
17886         Added full edit list support.
17887         Avoid overflows in prologue image detection code.
17888         Avoid roundoff errors in timestamp calculations.
17889
17890 2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17891
17892         * configure.ac:
17893           clean up so report properly on missing stuff
17894           fix modplug detection
17895
17896 2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17897
17898         * ext/Makefile.am:
17899         * ext/amrwb/amrwb-code/Makefile.am:
17900           don't dist amr wb source code
17901
17902 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17903
17904         Patch by: j^  <j at bootlab dot org>
17905
17906         * ext/amrwb/gstamrwbdec.c:
17907         * ext/amrwb/gstamrwbenc.c:
17908         * ext/amrwb/gstamrwbparse.c:
17909         * ext/arts/gst_arts.c:
17910         * ext/artsd/gstartsdsink.c:
17911         * ext/audiofile/gstafparse.c:
17912         * ext/audiofile/gstafsink.c:
17913         * ext/audiofile/gstafsrc.c:
17914         * ext/cdaudio/gstcdaudio.c:
17915         * ext/directfb/dfbvideosink.c:
17916         * ext/divx/gstdivxdec.c:
17917         * ext/divx/gstdivxenc.c:
17918         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17919         * ext/faac/gstfaac.c: (gst_faac_base_init):
17920         * ext/faad/gstfaad.c:
17921         * ext/gsm/gstgsmdec.c:
17922         * ext/gsm/gstgsmenc.c:
17923         * ext/hermes/gsthermescolorspace.c:
17924         * ext/ivorbis/vorbisfile.c:
17925         * ext/lcs/gstcolorspace.c:
17926         * ext/libfame/gstlibfame.c:
17927         * ext/libmms/gstmms.c: (gst_mms_base_init):
17928         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17929         * ext/nas/nassink.c: (gst_nassink_base_init):
17930         * ext/neon/gstneonhttpsrc.c:
17931         * ext/polyp/polypsink.c: (gst_polypsink_base_init):
17932         * ext/sdl/sdlaudiosink.c:
17933         * ext/sdl/sdlvideosink.c:
17934         * ext/shout/gstshout.c:
17935         * ext/snapshot/gstsnapshot.c:
17936         * ext/sndfile/gstsf.c:
17937         * ext/tarkin/gsttarkindec.c:
17938         * ext/tarkin/gsttarkinenc.c:
17939         * ext/theora/theoradec.c:
17940         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
17941         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
17942         * ext/xvid/gstxviddec.c:
17943         * ext/xvid/gstxvidenc.c:
17944         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_base_init):
17945         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_base_init):
17946         * gst/chart/gstchart.c:
17947         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init):
17948         * gst/festival/gstfestival.c:
17949         * gst/filter/gstiir.c:
17950         * gst/filter/gstlpwsinc.c:
17951         * gst/freeze/gstfreeze.c:
17952         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17953         * gst/mixmatrix/mixmatrix.c:
17954         * gst/mpeg1sys/gstmpeg1systemencode.c:
17955         * gst/mpeg1videoparse/gstmp1videoparse.c:
17956         * gst/mpeg2sub/gstmpeg2subt.c:
17957         * gst/mpegaudioparse/gstmpegaudioparse.c:
17958         * gst/multifilesink/gstmultifilesink.c:
17959         * gst/overlay/gstoverlay.c:
17960         * gst/passthrough/gstpassthrough.c:
17961         * gst/playondemand/gstplayondemand.c:
17962         * gst/qtdemux/qtdemux.c:
17963         * gst/rtjpeg/gstrtjpegdec.c:
17964         * gst/rtjpeg/gstrtjpegenc.c:
17965         * gst/smooth/gstsmooth.c:
17966         * gst/tta/gstttadec.c: (gst_tta_dec_base_init):
17967         * gst/tta/gstttaparse.c: (gst_tta_parse_base_init):
17968         * gst/videocrop/gstvideocrop.c:
17969         * gst/videodrop/gstvideodrop.c:
17970         * gst/virtualdub/gstxsharpen.c:
17971         * gst/xingheader/gstxingmux.c: (gst_xing_mux_base_init):
17972         * gst/y4m/gsty4mencode.c:
17973           Unify the long descriptions in the plugin details (#337263).
17974
17975 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17976
17977         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
17978         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property):
17979           Add back "uri" property and mark it as deprecated; undoes
17980           API/ABI breakage from 2006-02-24.
17981
17982 2006-04-05  Wim Taymans  <wim@fluendo.com>
17983
17984         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
17985         (gst_qtdemux_do_seek), (gst_qtdemux_loop_state_movie),
17986         (gst_qtdemux_loop):
17987         Use duration as segment stop position if none is
17988         explicitly configured.
17989         Also perform EOS when we run past the segment stop.
17990
17991 2006-04-04  Wim Taymans  <wim@fluendo.com>
17992
17993         * gst/qtdemux/qtdemux.c: (gst_qtdemux_go_back),
17994         (gst_qtdemux_perform_seek), (gst_qtdemux_do_seek),
17995         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
17996         (gst_qtdemux_chain), (qtdemux_parse_tree), (qtdemux_parse_trak):
17997         More cleanups, added comments.
17998         Mark discontinuities on outgoing buffers.
17999         Post better errors when something goes wrong.
18000         Handle EOS and segment end properly.
18001
18002 2006-04-04  Wim Taymans  <wim@fluendo.com>
18003
18004         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18005         (gst_qtdemux_push_event), (gst_qtdemux_go_back),
18006         (gst_qtdemux_perform_seek), (gst_qtdemux_do_seek),
18007         (gst_qtdemux_handle_src_event), (plugin_init),
18008         (gst_qtdemux_change_state), (gst_qtdemux_loop_state_movie),
18009         (gst_qtdemux_loop), (gst_qtdemux_chain),
18010         (qtdemux_sink_activate_pull), (gst_qtdemux_add_stream),
18011         (qtdemux_parse), (qtdemux_parse_tree), (qtdemux_parse_trak),
18012         (qtdemux_parse_udta), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18013         (qtdemux_tag_add_gnre), (gst_qtdemux_handle_esds):
18014         * gst/qtdemux/qtdemux.h:
18015         Handle stss boxes so we can mark and find keyframes.
18016         Implement correct accurate and keyframe seeking.
18017         Use _DEBUG_OBJECT when possible.
18018         Fixes #332155
18019
18020 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18021
18022         * tests/check/Makefile.am:
18023           Only run the id3v2mux check if taglib is available and
18024           the taglib plugin has been built.
18025
18026 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18027
18028         * ext/swfdec/Makefile.am:
18029           Don't set plugindir.
18030
18031         * ext/swfdec/gstswfdec.c:
18032           GST_PLUGIN_DEFINE_STATIC isn't a good idea for installed plugins.
18033
18034 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18035
18036         * configure.ac:
18037           Add AX_CREATE_STDINT_H to create _stdint.h, needed by
18038           the dts plugin.
18039
18040 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18041
18042         * ext/soundtouch/gstpitch.cc:
18043         * ext/theora/theoradec.c:
18044         * gst/modplug/gstmodplug.cc:
18045           GST_ORIGIN => GST_PACKAGE_ORIGIN
18046           GST_PACKAGE => GST_PACKAGE_NAME
18047
18048 2006-04-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18049
18050         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
18051         * docs/plugins/inspect/plugin-bz2.xml:
18052         * docs/plugins/inspect/plugin-cdxaparse.xml:
18053         * docs/plugins/inspect/plugin-freeze.xml:
18054         * docs/plugins/inspect/plugin-glimagesink.xml:
18055         * docs/plugins/inspect/plugin-modplug.xml:
18056         * docs/plugins/inspect/plugin-neon.xml:
18057         * docs/plugins/inspect/plugin-sdl.xml:
18058         * docs/plugins/inspect/plugin-video4linux2.xml:
18059         * docs/plugins/inspect/plugin-ximagesrc.xml:
18060         * docs/plugins/inspect/plugin-xingheader.xml:
18061           add more plugins to docs
18062
18063 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18064
18065         * sys/dxr3/ac3_padder.h:
18066           fix up doc strings
18067         * docs/plugins/Makefile.am:
18068         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18069         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
18070         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
18071         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
18072         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
18073         * docs/plugins/inspect/plugin-qtdemux.xml:
18074         * docs/plugins/inspect/plugin-speed.xml:
18075         * docs/plugins/inspect/plugin-taglib.xml:
18076         * docs/plugins/inspect/plugin-tta.xml:
18077           commit updates
18078         * configure.ac:
18079         * ext/taglib/gsttaglib.cc:
18080         * tests/Makefile.am:
18081         * tests/check/.cvsignore:
18082         * tests/check/Makefile.am:
18083         * tests/check/elements/.cvsignore:
18084         * tests/check/elements/tagid3v2mux.c:
18085         (test_taglib_id3mux_create_tags), (test_taglib_id3mux_check_tags),
18086         (fill_mp3_buffer), (got_buffer), (demux_pad_added),
18087         (test_taglib_id3mux_check_output_buffer),
18088         (test_taglib_id3mux_with_tags), (GST_START_TEST),
18089         (tagid3v2mux_suite), (main):
18090            add the tagid3v2mux check from #336110
18091
18092 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18093
18094         * configure.ac:
18095           rework like the other configure.ac files
18096         * Makefile.am:
18097         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18098         * ext/amrwb/gstamrwb.c:
18099         * ext/arts/gst_arts.c:
18100         * ext/artsd/gstartsdsink.c:
18101         * ext/audiofile/gstaf.c:
18102         * ext/audioresample/gstaudioresample.c:
18103         * ext/bz2/gstbz2.c:
18104         * ext/cdaudio/gstcdaudio.c:
18105         * ext/directfb/dfbvideosink.c:
18106         * ext/dts/gstdtsdec.c:
18107         * ext/faac/gstfaac.c:
18108         * ext/faad/gstfaad.c:
18109         * ext/hermes/gsthermescolorspace.c:
18110         * ext/ivorbis/vorbis.c:
18111         * ext/jack/gstjack.c:
18112         * ext/lcs/gstcolorspace.c:
18113         * ext/musepack/gstmusepackdec.c:
18114         * ext/musicbrainz/gsttrm.c:
18115         * ext/nas/nassink.c:
18116         * ext/sdl/gstsdl.c:
18117         * ext/snapshot/gstsnapshot.c:
18118         * ext/sndfile/gstsf.c:
18119         * ext/swfdec/gstswfdec.c:
18120         * ext/tarkin/gsttarkin.c:
18121         * ext/xine/xine.c:
18122         * ext/xvid/gstxvid.c:
18123         * gst/cdxaparse/gstcdxaparse.c:
18124         * gst/chart/gstchart.c:
18125         * gst/colorspace/gstcolorspace.c:
18126         * gst/deinterlace/gstdeinterlace.c:
18127         * gst/equalizer/gstiirequalizer.c:
18128         * gst/festival/gstfestival.c:
18129         * gst/filter/gstfilter.c:
18130         * gst/freeze/gstfreeze.c:
18131         * gst/games/gstpuzzle.c:
18132         * gst/librfb/gstrfbsrc.c:
18133         * gst/mixmatrix/mixmatrix.c:
18134         * gst/mpeg1sys/gstmpeg1systemencode.c:
18135         * gst/mpeg1videoparse/gstmp1videoparse.c:
18136         * gst/mpeg2sub/gstmpeg2subt.c:
18137         * gst/mpegaudioparse/gstmpegaudioparse.c:
18138         * gst/multifilesink/gstmultifilesink.c:
18139         * gst/overlay/gstoverlay.c:
18140         * gst/passthrough/gstpassthrough.c:
18141         * gst/playondemand/gstplayondemand.c:
18142         * gst/qtdemux/qtdemux.c:
18143         * gst/rtjpeg/gstrtjpeg.c:
18144         * gst/smooth/gstsmooth.c:
18145         * gst/smoothwave/gstsmoothwave.c:
18146         * gst/spectrum/gstspectrum.c:
18147         * gst/speed/gstspeed.c:
18148         * gst/stereo/gststereo.c:
18149         * gst/switch/gstswitch.c:
18150         * gst/vbidec/gstvbidec.c:
18151         * gst/videocrop/gstvideocrop.c:
18152         * gst/videodrop/gstvideodrop.c:
18153         * gst/virtualdub/gstvirtualdub.c:
18154         * gst/xingheader/gstxingmux.c:
18155         * gst/y4m/gsty4mencode.c:
18156         * sys/cdrom/gstcdplayer.c:
18157         * sys/directdraw/gstdirectdrawplugin.c:
18158         * sys/directsound/gstdirectsoundplugin.c:
18159         * sys/dxr3/dxr3init.c:
18160         * sys/glsink/glimagesink.c:
18161         * sys/qcam/gstqcamsrc.c:
18162         * sys/v4l2/gstv4l2.c:
18163         * sys/vcd/vcdsrc.c:
18164         * sys/ximagesrc/ximagesrc.c:
18165           update to use correct defines
18166         * po/POTFILES.in:
18167         * po/af.po:
18168         * po/az.po:
18169         * po/cs.po:
18170         * po/en_GB.po:
18171         * po/hu.po:
18172         * po/it.po:
18173         * po/nb.po:
18174         * po/nl.po:
18175         * po/or.po:
18176         * po/sq.po:
18177         * po/sr.po:
18178         * po/sv.po:
18179         * po/uk.po:
18180         * po/vi.po:
18181           v4l2 has translations, pick them up
18182
18183 2006-03-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18184
18185         * sys/ximagesrc/ximagesrc.c: 
18186           Add docs to ximagesrc
18187
18188 2006-03-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18189
18190         * sys/ximagesrc/ximagesrc.c: (composite_pixel),
18191         (gst_ximagesrc_ximage_get), (gst_ximagesrc_set_property),
18192         (gst_ximagesrc_get_caps), (gst_ximagesrc_class_init):
18193         * sys/ximagesrc/ximagesrc.h:
18194         * sys/ximagesrc/ximageutil.c: (ximageutil_xcontext_get):
18195         * sys/ximagesrc/ximageutil.h:
18196           Fix ximagesrc so a) the cursor doesnt trail and b) there are no
18197           yellow rectangles with the cursor
18198
18199 2006-03-31  Michael Smith  <msmith@fluendo.com>
18200
18201         * configure.ac:
18202           Add autoconfery for theoradec.
18203         * ext/Makefile.am:
18204           Add theora directory.
18205         * ext/theora/Makefile.am:
18206         * ext/theora/theoradec.c: (gst_theoradec_base_init),
18207         (gst_theoradec_class_init), (gst_theoradec_init),
18208         (gst_theoradec_reset), (inc_granulepos), (theora_get_query_types),
18209         (gst_theoradec_granule_clocktime), (theora_dec_src_convert),
18210         (theora_dec_sink_convert), (theora_dec_src_query),
18211         (theora_dec_sink_query), (theora_dec_src_event),
18212         (theora_dec_sink_event), (theora_handle_comment_packet),
18213         (theora_handle_type_packet), (theora_handle_header_packet),
18214         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
18215         (theora_dec_change_state), (plugin_init):
18216         * ext/theora/theoradec.h:
18217           Add theora plugin for theora-exp decoder. Very heavily based on the
18218           existing theora decoder plugin.
18219
18220 2006-03-29  Wim Taymans  <wim@fluendo.com>
18221
18222         * ext/gsm/gstgsmdec.c: (gst_gsmdec_class_init), (gst_gsmdec_init),
18223         (gst_gsmdec_finalize), (gst_gsmdec_sink_event), (gst_gsmdec_chain):
18224         * ext/gsm/gstgsmdec.h:
18225         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
18226         (gst_gsmenc_finalize), (gst_gsmenc_chain):
18227         Cleanups, fix leaks.
18228         Handle events and DISCONT.
18229         Use adapter in the decoder.
18230
18231 2006-03-29  Wim Taymans  <wim@fluendo.com>
18232
18233         Patch by: Renato Araujo Oliveira Filho <renatox at gmail dot com>
18234
18235         * configure.ac:
18236         * ext/Makefile.am:
18237         * ext/amrwb/Makefile.am:
18238         * ext/amrwb/README:
18239         * ext/amrwb/amrwb-code/Makefile.am:
18240         * ext/amrwb/amrwb-code/run.sh:
18241         * ext/amrwb/gstamrwb.c: (plugin_init):
18242         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init),
18243         (gst_amrwbdec_class_init), (gst_amrwbdec_init),
18244         (gst_amrwbdec_setcaps), (gst_amrwbdec_event), (gst_amrwbdec_chain),
18245         (gst_amrwbdec_state_change):
18246         * ext/amrwb/gstamrwbdec.h:
18247         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_base_init),
18248         (gst_amrwbenc_class_init), (gst_amrwbenc_init),
18249         (gst_amrwbenc_finalize), (gst_amrwbenc_setcaps),
18250         (gst_amrwbenc_chain), (gst_amrwbenc_state_change):
18251         * ext/amrwb/gstamrwbenc.h:
18252         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init),
18253         (gst_amrwbparse_class_init), (gst_amrwbparse_init),
18254         (gst_amrwbparse_querytypes), (gst_amrwbparse_query),
18255         (gst_amrwbparse_chain), (gst_amrwbparse_read_header),
18256         (gst_amrwbparse_loop), (gst_amrwbparse_sink_activate),
18257         (gst_amrwbparse_sink_activate_pull), (gst_amrwbparse_state_change):
18258         * ext/amrwb/gstamrwbparse.h:
18259         Added new plugin amrwb parse.
18260         Renamed audio/AMR to audio/AMR-WB as per spec.
18261         Fixes #333307
18262
18263 2006-03-27  Edgard Lima <edgard.lima@indt.org.br>
18264
18265         * gst-plugins-bad/sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init):
18266         Small fix, now pwc driver can tell about its buffers.
18267
18268 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
18269
18270         * configure.ac:
18271           Remove CXX tag from AS_LIBTOOL_TAGS, just like we
18272           did for -good and -ugly. Fixes build on some systems
18273           and doesn't seem to be required for C++ code.
18274
18275 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
18276
18277         * ext/taglib/gsttaglib.cc:
18278         * ext/taglib/gsttaglib.h:
18279           Fix newsegment event handling a bit. We need to
18280           cache the first newsegment event, because we can't
18281           adjust offsets yet when we get it, as we don't
18282           know the size of the tag yet for sure at that point.
18283           Also do some minor cleaning up here and there and add
18284           some debug statements.
18285
18286 2006-03-25  Tim-Philipp Müller  <tim at centricular dot net>
18287
18288         * ext/taglib/gsttaglib.cc:
18289           We do not want to proxy the caps on the sink pad; our 
18290           source pad should have application/x-id3 caps; also,
18291           don't use already-freed strings in debug messages;
18292           finally, adjust buffer offsets on buffers sent out.
18293
18294 2006-03-25  Tim-Philipp Müller  <tim at centricular dot net>
18295
18296         * sys/v4l2/gstv4l2src.c:
18297           Older kernels don't seem to have this particular v4l2 format,
18298           so comment out until this gets fixed properly (and make
18299           buildbots happy).
18300
18301 2006-03-25  Edgard Lima  <edgard.lima@indt.org.br>
18302
18303         * sys/v4l2/gstv4l2colorbalance.c:
18304         * sys/v4l2/gstv4l2colorbalance.h:
18305         * sys/v4l2/gstv4l2element.c:
18306         * sys/v4l2/gstv4l2src.c:
18307         * sys/v4l2/gstv4l2src.h:
18308         * sys/v4l2/gstv4l2tuner.c:
18309         * sys/v4l2/v4l2_calls.c:
18310         * sys/v4l2/v4l2src_calls.c:
18311         * sys/v4l2/v4l2src_calls.h:
18312         Just make few things more robust and also some identation.
18313
18314 2006-03-23  Wim Taymans  <wim@fluendo.com>
18315
18316         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
18317
18318         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init), (gst_xvidenc_setup),
18319         (gst_xvidenc_chain):
18320         Patch to mark outgoing encoded buffers as delta-units (or not).
18321         Note that this patch also patches:
18322         - the setting of fincr and fbase in xvid-encoder creation based on
18323           caps framerate
18324         - makes 0, rather than 2, the default max_b_frames, as the current
18325           xvidenc does not seem "fully prepared" to handle b-frame 
18326           "effects", such as encoder returning 0 encoded bytes, etc.
18327         Fixes #335585
18328
18329 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18330
18331         * gst/modplug/libmodplug/Makefile.am:
18332         * gst/modplug/libmodplug/load_it.cpp:
18333           Try that again (not only should it be MODPLUG_ instead
18334           of MODFILE, also that define is already set in stdafx.h;
18335           what we really need is some more #ifndefs).
18336
18337 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18338
18339         * gst/modplug/libmodplug/Makefile.am:
18340           More gcc-4.1 fixes (we don't need file saving, so just
18341           define MODPLUG_NO_FILESAVE. That way, the compiler won't
18342           complain about modplug ignoring the return value of fwrite
18343           any longer and we might even save a few bytes as well).
18344
18345 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18346
18347         Patch by: Wouter Paeson  <wouter at kangaroot dot net>
18348
18349         * configure.ac:
18350         * ext/Makefile.am:
18351         * ext/soundtouch/Makefile.am:
18352         * ext/soundtouch/gstpitch.cc:
18353         * ext/soundtouch/gstpitch.hh:
18354           Add new libsoundtouch-based pitch plugin (#331335).
18355
18356 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
18357
18358         * gst/modplug/libmodplug/load_ptm.cpp:
18359           Fix compilation with gcc-4.1 and -Werror (#327355).
18360
18361 2006-03-20  Tim-Philipp Müller  <tim at centricular dot net>
18362
18363         * ext/taglib/gsttaglib.h:
18364           Fix left-over gst_my_filter_get_type.
18365
18366 2006-03-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18367
18368         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_open_display),
18369         (gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
18370         (gst_ximagesrc_class_init), (gst_ximagesrc_init):
18371         Have a show mouse pointer property and use it if we can
18372
18373 2006-03-15  Edward Hervey  <edward@fluendo.com>
18374
18375         * gst/qtdemux/qtdemux.c: (gst_qtdemux_dispose):
18376         Let's not forget to chain up to the parent dispose.
18377
18378 2006-03-15  Edward Hervey  <edward@fluendo.com>
18379
18380         * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
18381         (gst_qtdemux_init), (gst_qtdemux_dispose),
18382         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
18383         Series of memleak fixes:
18384         - Unref the GstAdapter in finalize.
18385         - Use gst_pad_new_from_static_template(), shorter and safer.
18386         - Free unused QtDemuxStream when not used.
18387
18388 2006-03-14  Edward Hervey  <edward@fluendo.com>
18389
18390         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_base_init),
18391         (gst_v4l2src_class_init):
18392         Initialization of the debugging category should be as early as possible,
18393         moving it from _class_init() to beginning of _base_init().
18394
18395 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
18396
18397         * ext/taglib/gsttaglib.cc:
18398           Add gtk-doc blurb (unused for the time being); match registered
18399           plugin name to the filename of the plugin (taglibmux => taglib)
18400
18401 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
18402
18403         Patch by: Mikhail Zabaluev  <mhz altlinux org>
18404
18405         * autogen.sh:
18406           Don't check for file that only exists in CVS but isn't
18407           disted (#334417)
18408
18409 2006-03-13  Julien MOUTTE  <julien@moutte.net>
18410
18411         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18412         * sys/v4l2/Makefile.am: Fix build of v4l2 (sigh)
18413
18414 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18415
18416         * Makefile.am:
18417         * configure.ac:
18418           Fix distcheck.
18419
18420 2006-03-12  Edward Hervey  <edward@fluendo.com>
18421
18422         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
18423         (gst_v4l2src_buffer_pool_free):
18424         g_atomic_int_set is only available in glib-0.10, use gst_atomic_int_et
18425         instead.
18426
18427 2006-03-12  Edward Hervey  <edward@fluendo.com>
18428
18429         * sys/v4l2/gstv4l2element.h:
18430         Remove tim's addition of "_stdint.h" since it doesn't make the PPC
18431         buildbot happy.
18432         I will just use the same comment Ronald used when he added these lines:
18433         Yet Another Hack (tm) for kernel header borkedness.
18434
18435 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18436
18437         * ext/taglib/Makefile.am:
18438         * ext/taglib/gsttaglib.cc:
18439         * ext/taglib/gsttaglib.h:
18440           Add support for writing MusicBrainz IDs.
18441
18442 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18443
18444         * sys/v4l2/gstv4l2element.h:
18445           Include "_stdint.h" in an attempt to make the
18446           PPC-buildbot happy.
18447
18448 2006-03-11  Edgard Lima  <edgard.lima@indt.org.br>
18449
18450         * configure.ac:
18451         * sys/Makefile.am:
18452         * sys/v4l2/Makefile.am:
18453         * sys/v4l2/gstv4l2.c:
18454         * sys/v4l2/gstv4l2colorbalance.h:
18455         * sys/v4l2/gstv4l2element.c:
18456         * sys/v4l2/gstv4l2element.h:
18457         * sys/v4l2/gstv4l2src.c:
18458         * sys/v4l2/gstv4l2src.h:
18459         * sys/v4l2/gstv4l2tuner.c:
18460         * sys/v4l2/gstv4l2tuner.h:
18461         * sys/v4l2/gstv4l2xoverlay.c:
18462         * sys/v4l2/gstv4l2xoverlay.h:
18463         * sys/v4l2/v4l2_calls.c:
18464         * sys/v4l2/v4l2_calls.h:
18465         * sys/v4l2/v4l2src_calls.c:
18466         * sys/v4l2/v4l2src_calls.h:
18467         V4L2 ported to 0.10.
18468         
18469 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
18470
18471         * configure.ac:
18472           Only compile the taglib plugin if a C++ compiler is
18473           present. Use GST_DEFAULT_ELEMENTS macro from common/
18474           for all the defaults stuff.
18475
18476 2006-03-11  Christophe Fergeau  <teuf@gnome.org>
18477
18478         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18479
18480         * configure.ac:
18481         * gst/xingheader/Makefile.am:
18482         * gst/xingheader/gstxingmux.c: 
18483         * gst/xingheader/gstxingmux.h: added new element to add Xing headers
18484         to MP3 files (this allows decoder to figure out the length of VBR
18485         files) 
18486
18487 2006-03-11  Christophe Fergeau  <teuf@gnome.org>
18488         
18489         Patch by: Alex Lancaster
18490         
18491         * ext/taglib/gsttaglib.cc: fix writing of TPOS tags (album number),
18492         and add support for TCOP (copyright)
18493
18494 2006-03-10  Julien MOUTTE  <julien@moutte.net>
18495
18496         * gst/modplug/Makefile.am:
18497         * gst/modplug/gstmodplug.cc: Fix modplug compilation.
18498
18499 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
18500
18501         * configure.ac:
18502         * gst/modplug/Makefile.am:
18503         * gst/modplug/gstmodplug.cc:
18504         * gst/modplug/gstmodplug.h:
18505         * gst/modplug/libmodplug/sndfile.cpp:
18506         * gst/modplug/libmodplug/sndfile.h:
18507           modplug plugin ported to 0.10 (#332598, patch by:
18508           Jonathan Matthew <jonathan at kaolin wh9 net>).
18509
18510 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
18511
18512         * ext/libmms/gstmms.c: (gst_mms_urihandler_init),
18513         (gst_mms_base_init), (gst_mms_class_init), (gst_mms_init),
18514         (gst_mms_finalize), (gst_mms_create), (gst_mms_start),
18515         (gst_mms_set_property), (gst_mms_get_property),
18516         (gst_mms_uri_get_uri):
18517         * ext/libmms/gstmms.h:
18518           Some clean-ups; more debug output; use blocksize property
18519           of GstBaseSrc instead of re-registering our own; make debug
18520           category actually be used.
18521
18522 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
18523
18524         * gst/qtdemux/qtdemux.c: (gst_qtdemux_send_event):
18525           Fix build with gcc-4.1 (#327355).
18526
18527 2006-03-09  Christophe Fergeau  <teuf@gnome.org>
18528
18529         reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18530
18531         * configure.ac:
18532         * ext/Makefile.am:
18533         * ext/taglib/Makefile.am:
18534         * ext/taglib/gsttaglib.cc:
18535         * ext/taglib/gsttaglib.h: new id3v2 muxer based on TagLib
18536
18537 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
18538
18539         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
18540           Extract disc number and count from files that use
18541           'disk' instead of 'disc' as node identifier for that
18542           (fixes #332066).
18543
18544 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
18545
18546         * ext/musepack/gstmusepackdec.h:
18547         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek):
18548           Forgot those two.
18549
18550 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
18551
18552         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
18553         (gst_musepackdec_init), (gst_musepackdec_send_newsegment),
18554         (gst_musepackdec_handle_seek_event),
18555         (gst_musepackdec_get_src_query_types), (gst_musepackdec_src_query),
18556         (gst_musepack_stream_init), (gst_musepackdec_sink_activate),
18557         (gst_musepackdec_sink_activate_pull), (gst_musepackdec_loop),
18558         (gst_musepackdec_change_state):
18559           Some cleanups; pause task when push fails.
18560
18561 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
18562
18563         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
18564           Add support for '3IVD' fourcc (#333403).
18565
18566 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18567
18568         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_send_tags),
18569         (gst_faad_setcaps), (gst_faad_do_raw_seek), (gst_faad_src_event),
18570         (gst_faad_sink_event), (gst_faad_src_convert),
18571         (gst_faad_src_query), (gst_faad_chain), (gst_faad_change_state):
18572           Add query function for position/duration querying (mostly for
18573           raw AAC streams); make seeking in raw AAC streams work; post
18574           tags with codec name if this is a raw AAC stream.
18575
18576 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
18577
18578         * sys/directdraw:
18579         * sys/directsound:
18580           sinks are now using GST_RANK_PRIMARY to be used with autodectection
18581         * win32/vs6:
18582           project files updated to fix some bugs
18583         * win32/vs7:
18584         * win32/vs8:
18585           vs7 and vs8 project files added
18586         
18587 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18588
18589         * ext/xvid/gstxviddec.c: (gst_xviddec_chain):
18590           Declare variable at the beginning of the block and make gcc-2.9x
18591           happy (fixes #333283; patch by: Jens Granseuer).
18592
18593 2006-03-03  Edward Hervey  <edward@fluendo.com>
18594
18595         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_parse_trak):
18596         Use GST_WARNING instead of GST_ERROR for all the too short/long atoms
18597         when parsing.
18598         Also let's be a bit less vulgar in our warning messages :)
18599
18600 2006-02-28  Tim-Philipp Müller  <tim at centricular dot net>
18601
18602         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18603           Can't divide through zero (suppress warning in case of
18604           stream with one single still picture) (see #327083)
18605
18606 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18607
18608         * sys/glsink/glimagesink.c: It doesn't seem we need GLU.h
18609
18610 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18611
18612         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
18613         (qtdemux_parse_trak), (qtdemux_video_caps):
18614           Add support for palettised Apple SMC videos (#327075, based on
18615           patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>).
18616
18617 2006-02-24  Michael Smith  <msmith@fluendo.com>
18618
18619         * autogen.sh:
18620           Allow automake 1.9
18621
18622 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18623
18624         * ext/neon/gstneonhttpsrc.c:
18625         Changed property name from "uri" to "location" 
18626
18627 2006-02-22  Jan Schmidt  <thaytan@mad.scientist.com>
18628
18629         * configure.ac:
18630         * sys/glsink/Makefile.am:
18631         Merge patch from #317048 for building on Cygwin. Patch by 
18632         Cygwin Ports maintainer.
18633         * sys/glsink/glimagesink.c: (gst_glimage_sink_init_display):
18634         Move normal debug output to LOG level not ERROR.
18635
18636 2006-02-19  Jan Gerber  <j@bootlab.org>
18637
18638         Reviewed by : Edward Hervey <edward@fluendo.com>
18639
18640         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
18641           Add 'dvsd' and 'dv25' to list of possible fourcc values for DV Video.
18642           Add image/png for fourcc 'png '
18643  
18644 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
18645
18646         * configure.ac:
18647           Surely this is supposed to be >= a.b, not == a.b
18648
18649 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18650
18651         * configure.ac:
18652         * sys/Makefile.am:
18653         * sys/ximagesrc/Makefile.am:
18654         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
18655         (gst_ximagesrc_open_display), (gst_ximagesrc_start),
18656         (gst_ximagesrc_stop), (gst_ximagesrc_unlock),
18657         (gst_ximagesrc_recalc), (composite_pixel),
18658         (gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
18659         (gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
18660         (gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
18661         (gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
18662         (gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
18663         (gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
18664         (gst_ximagesrc_init), (plugin_init):
18665         * sys/ximagesrc/ximagesrc.h:
18666         * sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
18667         (ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
18668         (ximageutil_xcontext_clear),
18669         (ximageutil_calculate_pixel_aspect_ratio),
18670         (gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
18671         (gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
18672         (gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
18673         (gst_ximageutil_ximage_destroy):
18674         * sys/ximagesrc/ximageutil.h:
18675
18676         Port ximagesrc to 0.10 (Closes #304795)
18677
18678 2006-02-20  Edgard Lima <edgard.lima@indt.org.br>
18679
18680         * gst/freeze/gstfreeze.c:
18681         * gst/freeze/gstfreeze.h:
18682         Some event handling added by Renato Filho <renato.filho@indt.org.br>
18683
18684 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18685
18686         * configure.ac:
18687         Back to CVS nano
18688
18689 === release 0.10.1 ===
18690
18691 2006-02-20  Jan Schmidt <thaytan@mad.scientist.com>
18692
18693         * configure.ac:
18694           releasing 0.10.1, "Slimy - yet satisfying"
18695
18696 2006-02-19  Jan Schmidt <thaytan@mad.scientist.com>
18697
18698         * configure.ac:
18699           Release 0.10.0.3 - pre-release for 0.10.1
18700
18701 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
18702
18703         * ext/bz2/gstbz2.c:
18704         * ext/bz2/gstbz2dec.c:
18705         * ext/bz2/gstbz2dec.h:
18706         * ext/bz2/gstbz2enc.c:
18707         * ext/bz2/gstbz2enc.h:
18708           Add proper copyright headers identifying Lutz Müller
18709           as the author and copyright holder (#331600).
18710
18711 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18712
18713         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
18714           Don't GST_LOG timestamps from nonexistent index
18715           entries (#331582).
18716
18717 2006-02-17  Edward Hervey  <edward@fluendo.com>
18718
18719         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header):
18720         Check that the size of the returned buffer is of the correct size
18721         because the parser assumes that.
18722         Fixes #331543.
18723
18724 2006-02-17  Jan Schmidt <thaytan@mad.scientist.com>
18725
18726         * configure.ac:
18727           Release 0.10.0.2 - pre-release for 0.10.1
18728
18729 2006-02-16  Edward Hervey  <edward@fluendo.com>
18730
18731         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event),
18732         (gst_qtdemux_loop), (qtdemux_sink_activate_pull):
18733         Don't stop the task if the pad isn't linked.
18734
18735 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
18736
18737         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain):
18738           It appears 100% equals 1/1 and not 100/1 ...
18739
18740 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
18741
18742         * gst/qtdemux/qtdemux.c: (gst_qtdemux_post_buffering),
18743         (gst_qtdemux_chain):
18744           When buffering MDAT data, show the user something is
18745           happening by posting 'buffering' messages on the bus.
18746
18747 2006-02-14  Edward Hervey  <edward@fluendo.com>
18748
18749         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18750         (gst_qtdemux_handle_src_query), (gst_qtdemux_change_state),
18751         (next_entry_size), (gst_qtdemux_chain):
18752         * gst/qtdemux/qtdemux.h:
18753         Make push-based work if mdat atom is before moov atom.
18754         Don't answer duration query. This should be transformed into replying
18755         FALSE to seek events.
18756
18757 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18758
18759         * ext/libmms/gstmms.c: (gst_mms_class_init), (gst_mms_create),
18760         (gst_mms_start):
18761           Return FLOW_UNEXPECTED on EOS, not FLOW_ERROR. Also, no need to
18762           push our own EOS event on EOS, the base class will do that for us;
18763           fix bogus query code; post semi-decent errors on the bus when an
18764           error occurs in ::start(), otherwise the user will get to see
18765           whatever cryptic default message GstBaseSrc comes up with.
18766
18767 2006-02-14  Andy Wingo  <wingo@pobox.com>
18768
18769         * sys/glsink/glimagesink.c (gst_glimage_sink_init): Come on
18770         schleef, don't break me gst-inspect -a.
18771
18772 2006-02-14  Edward Hervey  <edward@fluendo.com>
18773
18774         * gst/qtdemux/qtdemux.c: (next_entry_size), (gst_qtdemux_chain):
18775         Handle the case where data atoms are before moov atoms in push-based mode.
18776         Errors out gracefully.
18777
18778 2006-02-13  Edward Hervey  <edward@fluendo.com>
18779
18780         * gst/qtdemux/Makefile.am:
18781         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18782         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
18783         (extract_initial_length_and_fourcc),
18784         (gst_qtdemux_loop_state_header), (gst_qtdemux_loop_state_movie),
18785         (gst_qtdemux_loop_header), (next_entry_size), (gst_qtdemux_chain),
18786         (qtdemux_sink_activate), (qtdemux_sink_activate_pull),
18787         (qtdemux_sink_activate_push), (qtdemux_parse_trak):
18788         * gst/qtdemux/qtdemux.h:
18789         QtDemux can now work push-based.
18790         It still needs some love for seeking.
18791
18792 2006-02-13  Edgard Lima  <edgard.lima@indt.org.br>
18793
18794         * configure.ac:
18795         * gst/freeze/Makefile.am:
18796         * gst/freeze/gstfreeze.c:
18797         * gst/freeze/gstfreeze.h:
18798         * gst/freeze/FAQ:
18799         freeze plugin ported to 0.10 by
18800         Renato Filho <renato.filho@indt.org.br>
18801
18802 2006-02-10  Tim-Philipp Müller  <tim at centricular dot net>
18803
18804         * configure.ac:
18805         * gst/cdxaparse/Makefile.am:
18806         * gst/cdxaparse/gstcdxaparse.c:
18807         * gst/cdxaparse/gstcdxaparse.h:
18808           Port cdxaparse, makes VCD playback work.
18809
18810 2006-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18811
18812         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18813         (qtdemux_parse_trak):
18814           use the correct variable to check if we can calculate
18815           the last chunk.  Looks like an obvious bug, and makes
18816           the dump of offsets comparable to other tools
18817
18818 2006-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18819
18820         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18821         (qtdemux_parse_trak):
18822           clean up some debugging, using _OBJECT, moving recurring
18823           messages to LOG level
18824
18825 2006-02-06  Edgard Lima <edgard.lima@indt.org.br>
18826
18827         * configure.ac:
18828         * ext/neon/gstneonhttpsrc.c:
18829         Now it uses libneon 0.25.5 that supports shoutcast.
18830
18831 2006-02-06  Lutz Mueller <lutz@topfrose.de>
18832
18833         Reviewed by: Edward Hervey <edward@fluendo.com>
18834         
18835         * ext/bz2/gstbz2enc.c: Accepd "ANY" caps. Use "x-bzip" instead of
18836         "x-bz2".
18837         * ext/bz2/gstbz2dec.c: Use "x-bzip" instead of "x-bz2". Initial
18838         caps are "ANY".
18839         (gst_bz2dec_chain): Configure the source pad if we can figure out
18840         the mime type of the decompressed data.
18841         (gst_bz2dec_[get,set]_property):
18842         (gst_bz2dec_class_init: New property "first_buffer_size".
18843         
18844
18845 2006-02-06  Wim Taymans  <wim@fluendo.com>
18846
18847         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_query),
18848         (gst_qtdemux_handle_src_event), (gst_qtdemux_loop_header),
18849         (qtdemux_inflate), (qtdemux_parse), (qtdemux_parse_trak),
18850         (qtdemux_parse_udta), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18851         (qtdemux_tag_add_gnre), (gst_qtdemux_handle_esds),
18852         (qtdemux_video_caps), (qtdemux_audio_caps):
18853         * gst/qtdemux/qtdemux.h:
18854         Some QT demux loving.
18855         Handle seeking in a less broken way.
18856         Fix AMR caps to match the AMR decoder.
18857         Set first timestamp on AMR samples to 0 for now.
18858         Remove some \n in DEBUG strings.
18859         Use _scale_int for maximum precision.
18860
18861 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18862
18863         * gst/apetag/Makefile.am:
18864         * gst/apetag/apedemux.c:
18865         * gst/apetag/apedemux.h:
18866         * gst/apetag/apetag.c:
18867           Remove old files, apetag is in gst-plugins-good now.
18868
18869 2006-02-06  Andy Wingo  <wingo@pobox.com>
18870
18871         * ext/bz2/gstbz2enc.c (gst_bz2enc_class_init): 
18872         * ext/bz2/gstbz2dec.c (gst_bz2dec_class_init): No need to init
18873         parent_class, the boilerplate does it for you.
18874
18875 2006-02-05  Lutz Mueller <lutz@topfrose.de>
18876
18877         reviewed by: Andy Wingo <wingo@pobox.com>
18878
18879         * configure.ac:
18880         * ext/Makefile.am: Hook it up.
18881         * ext/bz2/gstbz2.c:
18882         * ext/bz2/gstbz2dec.h:
18883         * ext/bz2/gstbz2dec.c:
18884         * ext/bz2/gstbz2enc.h:
18885         * ext/bz2/gstbz2enc.c: New plugin, implements bz2 encoding and
18886         decoding (#303167).
18887         
18888 2006-01-30  Andy Wingo  <wingo@pobox.com>
18889
18890         * sys/glsink/Makefile.am (libgstglimagesink_la_LIBADD) 
18891         (libgstglimagesink_la_CFLAGS): Add PLUGINS_BASE cflags and libs.
18892
18893 2006-01-29  Tim-Philipp Müller  <tim at centricular dot net>
18894
18895         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_setcaps),
18896         (gst_wavpack_dec_base_init), (gst_wavpack_dec_dispose),
18897         (gst_wavpack_dec_class_init), (gst_wavpack_dec_sink_event),
18898         (gst_wavpack_dec_init), (gst_wavpack_dec_format_samples),
18899         (gst_wavpack_dec_chain), (gst_wavpack_dec_plugin_init):
18900           Add debug category, use boilerplate macros, fix handling
18901           of widths of 32 bits.
18902
18903         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
18904         (gst_wavpack_parse_dispose), (gst_wavpack_parse_class_init),
18905         (gst_wavpack_parse_index_get_last_entry),
18906         (gst_wavpack_parse_index_get_entry_from_sample),
18907         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
18908         (gst_wavpack_parse_src_query),
18909         (gst_wavpack_parse_scan_to_find_sample),
18910         (gst_wavpack_parse_send_newsegment),
18911         (gst_wavpack_parse_handle_seek_event),
18912         (gst_wavpack_parse_src_event), (gst_wavpack_parse_init),
18913         (gst_wavpack_parse_get_upstream_length),
18914         (gst_wavpack_parse_pull_buffer),
18915         (gst_wavpack_parse_create_src_pad), (gst_wavpack_parse_loop),
18916         (gst_wavpack_parse_change_state),
18917         (gst_wavepack_parse_sink_activate),
18918         (gst_wavepack_parse_sink_activate_pull),
18919         (gst_wavpack_parse_plugin_init):
18920         * ext/wavpack/gstwavpackparse.h:
18921           Rewrite a bit, mostly to fix flow logic and to make seeking work.
18922           Fix buffer/event refcounting. Add some debug statements. Add
18923           width of 32 to source pad template caps. Use boilerplate macros.
18924
18925 2006-01-28  Edward Hervey  <edward@fluendo.com>
18926
18927         * sys/glsink/Makefile.am:
18928         glimagesink.h is dead, long live glimagesink.h
18929
18930 2006-01-27  David Schleef  <ds@schleef.org>
18931
18932         * configure.ac:
18933         * sys/Makefile.am:
18934         * sys/glsink/Makefile.am:
18935         * sys/glsink/glimagesink.c:
18936         * sys/glsink/glimagesink.h:
18937           revival of glimagesink.  Kind of works.
18938
18939 2006-01-27  Tim-Philipp Müller  <tim at centricular dot net>
18940
18941         * ext/faad/gstfaad.c: (gst_faad_setcaps),
18942         (gst_faad_chanpos_to_gst), (gst_faad_sync), (gst_faad_chain):
18943           Handle 'framed' field in caps; Port syncing for raw streams
18944           from 0.8 branch (for AAC+ radio streams) (#328854, #328721).
18945
18946 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18947
18948         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_supported),
18949         (gst_sdlvideosink_xoverlay_set_xwindow_id),
18950         (gst_sdlvideosink_deinitsdl), (gst_sdlv_process_events),
18951         (gst_sdlvideosink_event_thread), (gst_sdlvideosink_initsdl),
18952         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
18953         (gst_sdlvideosink_setcaps), (gst_sdlvideosink_show_frame),
18954         (gst_sdlvideosink_change_state),
18955         (gst_sdlvideosink_navigation_send_event):
18956         * ext/sdl/sdlvideosink.h:
18957           Fix output stride copying, so that it displays correctly on 
18958           framebuffer devices that don't match our implict GStreamer stride
18959           arrangement.
18960
18961           Fix locking things. Offer XOverlay only when SDL is running against
18962           X. Make non-scaled (and ugly) embedding work via X Overlay. It can't
18963           actually match the embedded window size because there's no way to
18964           figure out what size that should be from the XOverlay interface.
18965           See comment in sdlvideosink.c
18966
18967 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18968
18969         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18970           Fix wrong memcpy source pointer.
18971
18972 2006-01-25  Edgard Lima <edgard.lima@indt.org.br>
18973
18974         * ext/libmms/gstmms.c: (gst_mms_finalize):
18975         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_finalize):
18976         Just chain up finalize calls (calling parent_class->finalize).
18977
18978 2006-01-25  Edgard Lima <edgard.lima@indt.org.br>
18979
18980         * ext/libmms/gstmms.c: (gst_mms_finalize), (gst_mms_set_property),
18981         (gst_mms_get_property), (gst_mms_src_query), (gst_mms_class_init):
18982         Finalize method has been created and others small changes.
18983
18984 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
18985
18986         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
18987         (gst_musepackdec_class_init), (gst_musepackdec_init),
18988         (gst_musepackdec_send_newsegment),
18989         (gst_musepackdec_handle_seek_event), (gst_musepackdec_src_event),
18990         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
18991         (gst_musepack_stream_init), (gst_musepackdec_sink_activate_pull),
18992         (gst_musepackdec_loop), (gst_musepackdec_change_state):
18993         * ext/musepack/gstmusepackdec.h:
18994         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
18995         (gst_musepack_reader_seek), (gst_musepack_reader_tell),
18996         (gst_musepack_reader_get_size):
18997         * ext/musepack/gstmusepackreader.h:
18998           Fix seeking in musepack files (it's still incredibly slow, but I
18999           don't think that is our plugin's fault). Clean up code and get
19000           rid of old cruft. Post tags with all kind of neat information like
19001           replay gain and such on the bus, if it is available. Add a
19002           'musepackdec' debug category.
19003
19004 2006-01-24  Edward Hervey  <edward@fluendo.com>
19005
19006         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19007         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
19008         More coherent framerate setting on caps.
19009         If sample_size is available, use that for the samples' duration in
19010         the index. This enables single frame streams to work (and I imagine
19011         fixes some other cases).
19012         Tested on testsuite, no regression.
19013
19014 2006-01-23  Edward Hervey  <edward@fluendo.com>
19015
19016         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
19017         (qtdemux_video_caps), (qtdemux_audio_caps):
19018         Added codec recognition for:
19019         _ VP31 : video/x-vp3
19020         _ AVDJ : image/jpeg
19021         _ dvcp, dvc  : video/x-dv, systemstream=(boolean)false
19022         _ 0x6d730017 : audio/x-adpcm, layout=(string)quicktime
19023
19024 2006-01-21  David Schleef  <ds@schleef.org>
19025
19026         * configure.ac:
19027         * ext/swfdec/gstswfdec.c: Update from swfdec.
19028
19029 2006-01-21  Tim-Philipp Müller  <tim at centricular dot net>
19030
19031         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
19032         (qtdemux_audio_caps):
19033           'twos' and 'sowt' fourcc can be 16bit or 8bit audio.
19034           Fix 8bit case (#327133, based on patch by: Fabrizio
19035           Gennari <fabrizio dot ge at tiscali dot it>).
19036           Also, "G_LITTLE_ENDIAN" and "G_BIG_ENDIAN" are not
19037           valid literals for endianness in caps strings,
19038           only "LITTLE_ENDIAN" and "BIG_ENDIAN" are valid. 
19039
19040 2006-01-20  Edgard Lima <edgard.lima@indt.org.br>
19041
19042         * ext/ivorbis/vorbisfile.c:
19043         * ext/neon/gstneonhttpsrc.c:
19044         Fixed state transictions PLAYING->NULL->PLAYING.
19045         
19046 2006-01-19  Edgard Lima <edgard.lima@indt.org.br>
19047
19048         * ext/tremor/vorbisfile.c:
19049         Some minor improvements on log messages.
19050
19051 2006-01-18  Edgard Lima <edgard.lima@indt.org.br>
19052
19053         * gst/qtdemux/qtdemux.c: qtdemux_parse_trak:
19054         Ronald's patch applied. see bug #326318.
19055
19056 2006-01-17  Tim-Philipp Müller  <tim at centricular dot net>
19057
19058         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
19059         (gst_qtdemux_send_event), (gst_qtdemux_handle_src_event),
19060         (gst_qtdemux_change_state), (gst_qtdemux_loop_header):
19061         * gst/qtdemux/qtdemux.h:
19062           Fix seeking for quicktime files. Could still use some more
19063           love and sophistication.
19064
19065 2006-01-16  Edgard Lima <edgard.lima@indt.org.br>
19066
19067         * ext/libmms/gstmms.c: gst_mms_init:
19068         * ext/neon/gstneonhttpsrc.c: gst_neonhttp_src_init:
19069         * ext/sdl/sdlaudiosink.c: gst_sdlaudio_sink_dispose:
19070         Removed gst_base_src_set_live from mms and neon, and now calling
19071         parent_class->dispose in dispose on sdlaudio.
19072         
19073 2006-01-11  Edgard Lima <edgard.lima@indt.org.br>
19074
19075         * ext/sdl/sdlvideosink.c:
19076         Now implementing navigation interface and using
19077         GST_BOILER_PLATE_FULL.
19078         
19079 2006-01-11  Christian Schaller  <christian@fluendo.com>
19080
19081         Remove SunAudio plugin as Brian's new one is in -good
19082
19083         * sys/Makefile.am:
19084         * sys/sunaudio/Makefile.am:
19085         * sys/sunaudio/gstsunaudio.c:
19086         * sys/sunaudio/gstsunaudiosrc.c:
19087         * sys/sunaudio/gstsunaudiosrc.h:
19088         * sys/sunaudio/gstsunelement.c:
19089         * sys/sunaudio/gstsunelement.h:
19090         * sys/sunaudio/gstsunmixer.c:
19091         * sys/sunaudio/gstsunmixer.h:
19092
19093 2006-01-11  Edgard Lima <edgard.lima@indt.org.br>
19094
19095         * ext/sdl/sdlaudiosink.c:
19096         Replaced wrong style code by GST_BOILERPLATE.
19097         
19098 2006-01-11  Fabrizio Gennari <fabrizio.ge@tiscali.it>
19099
19100         reviewed by: Edward Hervey  <edward@fluendo.com>
19101
19102         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
19103         Add support for Indeo3 video in Quicktime files.
19104         Closes #326524
19105
19106 2006-01-09  Edgard Lima <edgard.lima@indt.org.br>
19107
19108         * configure.ac:
19109         * ext/sdl/Makefile.am:
19110         * ext/sdl/gstsdl.c:
19111         * ext/sdl/sdlaudiosink.c:
19112         * ext/sdl/sdlaudiosink.h:
19113         * ext/sdl/sdlvideosink.c:
19114         Created new element, sdlaudiosink.
19115         
19116 2006-01-05  Sebastien Moutte  <sebastien@moutte.net>
19117
19118         * added sys/directdraw
19119         * added sys/directsound
19120         * added win32/vs6/gst_plugins_bad.dsw
19121         * added win32/vs6/libgstdirectsound.dsp
19122         * added win32/vs6/libgstdirectdraw.dsp
19123         * added win32/common/config.h
19124         
19125 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19126
19127         * gst/games/gstpuzzle.c: (plugin_init):
19128           call oil_init() when using liboil
19129
19130 2006-01-04  Edgard Lima <edgard.lima@indt.org.br>
19131
19132         * ext/neon/gstneonhttpsrc.c:
19133         * ext/neon/gstneonhttpsrc.h:
19134         Some improvements in cancellation and debug messages.
19135                         
19136 2006-01-04  Edgard Lima <edgard.lima@indt.org.br>
19137
19138         * ext/neon/gstneonhttpsrc.c:
19139         * ext/neon/gstneonhttpsrc.h:
19140         Removed not need thread and changed to push out blocksize bytes.
19141         
19142 2005-12-28  Edgard Lima <edgard.lima@indt.org.br>
19143
19144         * configure.ac:
19145         * ext/Makefile.am
19146         * ext/neon:
19147         * ext/neon/Makefile.am:
19148         * ext/neon/gstneonhttpsrc.c:
19149         * ext/neon/gstneonhttpsrc.h:
19150         Created new element neonhttpsrc.
19151
19152 2005-12-19  Edward Hervey  <edward@fluendo.com>
19153
19154         * ext/swfdec/gstswfdec.c: (gst_swfdec_class_init),
19155         (gst_swfdec_chain), (gst_swfdec_render):
19156         Add debugging category and return GstFlowReturn in the right places
19157         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link):
19158         Get something from the peer pad once we've checked if there is a peer pad.
19159         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
19160         (qtdemux_tree_get_child_by_type), (qtdemux_parse_trak),
19161         (qtdemux_video_caps):
19162         Couple of fixes
19163
19164 2005-12-19  Edgard Lima <edgard.lima@indt.org.br>
19165
19166         * ext/divx/Makefile.am:
19167         just a small fix. I have to pay more attention when commiting ;-)
19168
19169 2005-12-19  Edgard Lima <edgard.lima@indt.org.br>
19170
19171         * configure.ac:
19172         * ext/Makefile.am:
19173         * ext/divx/Makefile.am:
19174         * ext/divx/gstdivxdec.c:
19175         * ext/divx/gstdivxdec.h:
19176         * ext/divx/gstdivxenc.c:
19177         * ext/divx/gstdivxenc.h:
19178         divxdec and divxenc ported to 0.10
19179         
19180 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19181
19182         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19183         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19184         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices),
19185         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19186         (gst_dfbvideosink_can_blit_from_format),
19187         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19188         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc),
19189         (gst_dfbsurface_finalize),
19190         (gst_dfbvideosink_navigation_send_event),
19191         (gst_dfbvideosink_update_colorbalance),
19192         (gst_dfbvideosink_set_property), (gst_dfbvideosink_init): Some
19193         more refactoring, handle exotic DirectFB row stride.
19194
19195 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19196
19197         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19198         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt: Updates.
19199         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19200         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices),
19201         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19202         (gst_dfbvideosink_can_blit_from_format),
19203         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19204         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc),
19205         (gst_dfbsurface_finalize),
19206         (gst_dfbvideosink_navigation_send_event),
19207         (gst_dfbvideosink_update_colorbalance),
19208         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19209         (gst_dfbvideosink_finalize), (gst_dfbvideosink_init),
19210         (gst_dfbvideosink_class_init):
19211         * ext/directfb/dfbvideosink.h: Implement pixel-aspect-ratio.
19212         This should work both for hardware accelerated scaling and
19213         reverse caps negotiation with a scaling element.
19214
19215 2005-12-17  Julien MOUTTE  <julien@moutte.net>
19216
19217         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19218         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
19219         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19220         * docs/plugins/gst-plugins-bad-plugins.args:
19221         * docs/plugins/gst-plugins-bad-plugins.interfaces:
19222         * docs/plugins/gst-plugins-bad-plugins.signals:
19223         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19224         * docs/plugins/inspect/plugin-qtdemux.xml:
19225         * docs/plugins/inspect/plugin-sdlvideosink.xml:
19226         * docs/plugins/inspect/plugin-speed.xml:
19227         * docs/plugins/inspect/plugin-tta.xml: Updates.
19228         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19229         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_vmodes),
19230         (gst_dfbvideosink_enum_devices), (gst_dfbvideosink_setup),
19231         (gst_dfbvideosink_cleanup),
19232         (gst_dfbvideosink_can_blit_from_format),
19233         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19234         (gst_dfbvideosink_setcaps), (gst_dfbvideosink_show_frame),
19235         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19236         (gst_dfbvideosink_interface_supported),
19237         (gst_dfbvideosink_navigation_send_event),
19238         (gst_dfbvideosink_update_colorbalance),
19239         (gst_dfbvideosink_colorbalance_list_channels),
19240         (gst_dfbvideosink_colorbalance_set_value),
19241         (gst_dfbvideosink_colorbalance_get_value),
19242         (gst_dfbvideosink_colorbalance_init),
19243         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19244         (gst_dfbvideosink_init), (gst_dfbvideosink_class_init):
19245         * ext/directfb/dfbvideosink.h: Implement vertical sync and 
19246         color balance interface.
19247
19248 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19249
19250         * ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio):
19251         * gst/festival/gstfestival.c: (socket_receive_file_to_buff):
19252         * gst/vbidec/vbidata.c:
19253         * gst/vbidec/vbidata.h:
19254         * gst/vbidec/vbiscreen.c:
19255         * sys/dxr3/ac3_padder.c:
19256           don't use doc comments for non-docs
19257           change some char* into char[]
19258
19259 2005-12-16  Julien MOUTTE  <julien@moutte.net>
19260
19261         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19262         (gst_dfbvideosink_init): Always prefer the primary layer.
19263
19264 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19265
19266         * ext/wavpack/gstwavpackdec.c:
19267           Oops, remove trailing comma from caps string.
19268
19269 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19270
19271         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link):
19272         * ext/wavpack/gstwavpackparse.c:
19273           Wavpack supports samplerates from 6-192kHz, fix pad template
19274           caps (fixes #322973; patch by: gcocatre@gmail.com). Also
19275           remove buffer-frames from caps, they are gone in 0.10.
19276
19277 2005-12-15  Edgard Lima <edgard.lima@indt.org.br>
19278
19279         * ext/xvid/Makefile.am:
19280         * ext/xvid/gstxviddec.c:
19281         * ext/xvid/gstxvidenc.c:
19282         Fixed some mem-leaks in xvid.
19283
19284 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19285
19286         * configure.ac:
19287         * ext/Makefile.am:
19288         * ext/xvid/gstxvid.c:
19289         * ext/xvid/gstxvid.h:
19290         * ext/xvid/gstxviddec.c:
19291         * ext/xvid/gstxviddec.h:
19292         * ext/xvid/gstxvidenc.c:
19293         * ext/xvid/gstxvidenc.h:
19294         xviddec and xvideenc ported to 0.10
19295                 
19296
19297 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19298
19299         * configure.ac:
19300         * ext/Makefile.am:
19301         * ext/dts/Makefile.am:
19302         * ext/dts/gstdtsdec.c:
19303         * ext/dts/gstdtsdec.h:
19304         dtsdec ported to 0.10
19305
19306 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19307
19308         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
19309         * ext/libmms/gstmms.c: (gst_mms_src_query), (gst_mms_create):
19310         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_src_query),
19311         (gst_musepackdec_loop):
19312         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_link),
19313         (gst_swfdec_src_query):
19314         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query):
19315           GstObjects must be unref'ed with gst_object_unref() instead of
19316           g_object_unref(), otherwise things break for GLib-2.6 users.
19317
19318 2005-12-12  David Schleef  <ds@schleef.org>
19319
19320         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_get_type),
19321         (gst_swfdecbuffer_class_init), (gst_swfdecbuffer_finalize),
19322         (gst_swfdec_buffer_from_swf), (gst_swfdec_render): Add a subclass
19323         of GstBuffer that wraps SwfdecBuffers.  Fix a massive memleak
19324         because the video buffers previously never got freed.
19325
19326 2005-12-11  Edgard Lima <edgard.lima@indt.org.br>
19327
19328         * ext/libmms/gstmms.c:
19329         Just removed a weird printf ;-)
19330
19331 2005-12-11  Edgard Lima <edgard.lima@indt.org.br>
19332
19333         * configure.ac:
19334         * ext/libmms/gstmms.c:
19335         * ext/libmms/gstmms.h:
19336         Added suport to mmsh. There's still a sucks msg "ERROR: Pipeline cant
19337         PREROOL..." to be fixed.
19338
19339 2005-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
19340
19341         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst),
19342         (gst_faad_update_caps):
19343           Assume that an unknown channel mapping with 2 channels
19344           is stereo and play it that way instead of erroring.
19345
19346         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19347         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
19348           Handle e.g. jpeg streams with 0 duration frames as having 0 framerate.
19349           Debug fixes. Some 64 bit variable fixes
19350
19351 2005-12-09  Edgard Lima <edgard.lima@indt.org.br>
19352
19353         * configure.ac:
19354         * ext/Makefile.am:
19355         * ext/swfdec/Makefile.am:
19356         * ext/swfdec/gstswfdec.c:
19357         * ext/swfdec/gstswfdec.h:
19358         swfdec Ported to 0.10.
19359
19360 2005-12-07  Edward Hervey  <edward@fluendo.com>
19361
19362         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19363         (gst_qtdemux_add_stream):
19364         Memleak fixes.
19365         Send out EOS for valid reasons (couldn't pull_range() from upstream
19366         for example).
19367
19368 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19369
19370         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19371         * ext/audiofile/gstafparse.h:
19372         * ext/audiofile/gstafsink.c: (gst_afsink_chain):
19373         * ext/audiofile/gstafsink.h:
19374         * ext/audiofile/gstafsrc.c: (gst_afsrc_close_file):
19375         * ext/audiofile/gstafsrc.h:
19376         * ext/cdaudio/gstcdaudio.c:
19377         * ext/divx/gstdivxenc.c:
19378         * ext/dts/gstdtsdec.h:
19379         * ext/faac/gstfaac.h:
19380         * ext/ivorbis/vorbisenc.h:
19381         * ext/ivorbis/vorbisfile.c:
19382         * ext/musepack/gstmusepackdec.h:
19383         * ext/nas/nassink.c:
19384         * ext/snapshot/gstsnapshot.c:
19385         * ext/sndfile/gstsf.h:
19386         * ext/tarkin/gsttarkindec.h:
19387         * ext/tarkin/gsttarkinenc.h:
19388         * ext/xine/gstxine.h:
19389         * ext/xine/xinecaps.c:
19390         * ext/xvid/gstxvid.h:
19391         * gst-libs/gst/play/play.h:
19392         * gst/apetag/apedemux.h:
19393         * gst/cdxaparse/gstcdxaparse.h:
19394         * gst/cdxaparse/gstcdxastrip.h:
19395         * gst/colorspace/yuv2rgb.c:
19396         * gst/colorspace/yuv2rgb.h:
19397         * gst/equalizer/gstiirequalizer.c:
19398         * gst/festival/gstfestival.h:
19399         * gst/games/gstpuzzle.c:
19400         * gst/games/gstvideoimage.c:
19401         * gst/games/gstvideoimage.h:
19402         * gst/modplug/gstmodplug.h:
19403         * gst/modplug/libmodplug/it_defs.h:
19404         * gst/modplug/libmodplug/modplug.h:
19405         * gst/modplug/libmodplug/sndfile.h:
19406         * gst/modplug/libmodplug/stdafx.h:
19407         * gst/mpeg1sys/buffer.c:
19408         * gst/mpeg1sys/gstmpeg1systemencode.h:
19409         * gst/mpeg1sys/main.h:
19410         * gst/mpeg1sys/systems.c:
19411         * gst/mpeg1videoparse/gstmp1videoparse.h:
19412         * gst/mpeg2sub/gstmpeg2subt.h:
19413         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19414         * gst/mpegaudioparse/gstmpegaudioparse.h:
19415         * gst/multifilesink/gstmultifilesink.h:
19416         * gst/overlay/gstoverlay.h:
19417         * gst/qtdemux/qtdemux.c:
19418         * gst/qtdemux/qtdemux.h:
19419         * gst/rtjpeg/RTjpeg.c: (RTjpeg_dctY), (RTjpeg_idct):
19420         * gst/rtjpeg/RTjpeg.h:
19421         * gst/tta/crc32.h:
19422         * gst/tta/filters.h:
19423         * gst/tta/ttadec.h:
19424         * gst/videodrop/gstvideodrop.h:
19425         * sys/cdrom/gstcdplayer.h:
19426         * sys/cdrom/gstcdplayer_ioctl.c:
19427         * sys/cdrom/gstcdplayer_ioctl.h:
19428         * sys/cdrom/gstcdplayer_ioctl_bsd.h:
19429         * sys/cdrom/gstcdplayer_ioctl_irix.h:
19430         * sys/cdrom/gstcdplayer_ioctl_solaris.h:
19431         * sys/dxr3/dxr3audiosink.c:
19432         * sys/dxr3/dxr3audiosink.h:
19433         * sys/dxr3/dxr3spusink.c:
19434         * sys/dxr3/dxr3spusink.h:
19435         * sys/dxr3/dxr3videosink.c:
19436         * sys/dxr3/dxr3videosink.h:
19437         * sys/qcam/dark.c:
19438         * sys/qcam/gstqcamsrc.c:
19439         * sys/v4l2/gstv4l2colorbalance.h:
19440         * sys/v4l2/gstv4l2element.h:
19441         * sys/v4l2/gstv4l2src.h:
19442         * sys/v4l2/gstv4l2tuner.h:
19443         * sys/v4l2/gstv4l2xoverlay.h:
19444         * sys/v4l2/v4l2_calls.c:
19445         * sys/v4l2/v4l2_calls.h:
19446         * sys/v4l2/v4l2src_calls.c:
19447         * sys/v4l2/v4l2src_calls.h:
19448         * sys/vcd/vcdsrc.h:
19449           expand tabs
19450
19451 === release 0.10.0 ===
19452
19453 2005-12-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19454
19455         * configure.ac:
19456           releasing 0.10.0, "Camembert"
19457
19458 2005-12-05  Andy Wingo  <wingo@pobox.com>
19459
19460         * ext/faac/gstfaac.c: (gst_faac_sink_event), (gst_faac_chain):
19461         * ext/faad/gstfaad.c: (gst_faad_chain):
19462         * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_chain):
19463         * ext/lcs/gstcolorspace.c: (gst_colorspace_chain):
19464         * ext/xine/xineinput.c: (gst_xine_input_get):
19465         * gst/colorspace/gstcolorspace.c: (gst_colorspace_chain):
19466         * gst/speed/gstspeed.c: (speed_chain):
19467         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain): Update for
19468         alloc_buffer changes.
19469
19470 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19471
19472         * ext/Makefile.am:
19473           Add missing $(WAVPACK_DIR) (#322962).
19474
19475 === release 0.9.7 ===
19476
19477 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19478
19479         * configure.ac:
19480           releasing 0.9.7, "Arrigato Gasuimas Skebisan"
19481
19482 2005-11-28  Edgard Lima <edgard.lima@indt.org.br>
19483
19484         * PORTED_09:
19485         * configure.ac:
19486         * ext/Makefile.am:
19487         * ext/libmms/Makefile.am:
19488         * ext/libmms/gstmms.c:
19489         * ext/libmms/gstmms.h:
19490         libmm ported to 0.9. It works fine, but print some error messages. I
19491         ll fix them soon. Tested with  mmssrc location=mms:// ! filesink.
19492         
19493 2005-11-28  Edward Hervey  <edward@fluendo.com>
19494
19495         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
19496         Handle gracefully the consequence of "Maximum number of scalefactor
19497         bands exceeded", which results in 0 channels with samplerates of 0.
19498         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state):
19499         Do upward transitions, then call parent state_change, then do
19500         downward transitions.
19501
19502 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19503
19504         * ext/Makefile.am:
19505           alphabets, so hard to master.  Should fix distcheck.
19506
19507 2005-11-25  Edgard Lima  <edgard.lima@indt.org.br>
19508
19509         * configure.ac:
19510         * PORTED_09:
19511         * ext/Makefile.am:
19512         * ext/wavpack/Makefile.am:
19513         * ext/wavpack/gstwavpackdec.c:
19514         * ext/wavpack/gstwavpackdec.h:
19515         * ext/wavpack/gstwavpackparse.c:
19516         * ext/wavpack/gstwavpackparse.h:
19517         Wavpack ported to 0.9. No support for correction file yet.
19518
19519 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19520
19521         * ext/wavpack/Makefile.am:
19522         * ext/wavpack/gstwavpack.c: (plugin_init):
19523         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_read_header):
19524         * ext/wavpack/gstwavpackcommon.h:
19525         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link),
19526         (gst_wavpack_dec_wvclink), (gst_wavpack_dec_get_type),
19527         (gst_wavpack_dec_base_init), (gst_wavpack_dec_dispose),
19528         (gst_wavpack_dec_class_init), (gst_wavpack_dec_src_query),
19529         (gst_wavpack_dec_init), (gst_wavpack_dec_setup_context),
19530         (gst_wavpack_dec_format_samples), (gst_wavpack_dec_loop),
19531         (gst_wavpack_dec_plugin_init):
19532         * ext/wavpack/gstwavpackdec.h:
19533         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_get_type),
19534         (gst_wavpack_parse_base_init), (gst_wavpack_parse_dispose),
19535         (gst_wavpack_parse_class_init), (gst_wavpack_parse_src_query),
19536         (gst_wavpack_parse_src_event), (find_header), (find_sample),
19537         (gst_wavpack_parse_seek), (gst_wavpack_parse_init),
19538         (gst_wavpack_parse_handle_event), (gst_wavpack_parse_loop),
19539         (gst_wavpack_parse_change_state), (gst_wavpack_parse_plugin_init):
19540         * ext/wavpack/gstwavpackparse.h:
19541           put back wavpack - still needs porting
19542
19543 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19544
19545         * configure.ac: back to HEAD
19546
19547 === release 0.9.6 ===
19548
19549 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
19550
19551         * configure.ac:
19552           releasing 0.9.6, "Hot Tea"
19553
19554 2005-11-23  Julien MOUTTE  <julien@moutte.net>
19555
19556         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19557         * ext/directfb/dfb-example.c: (main):
19558         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_destroy),
19559         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_setup),
19560         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19561         (gst_dfbvideosink_change_state), (gst_dfbvideosink_get_times),
19562         (gst_dfbvideosink_bufferpool_clear),
19563         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19564         (gst_dfbvideosink_navigation_send_event),
19565         (gst_dfbvideosink_finalize), (gst_dfbvideosink_init),
19566         (gst_dfbvideosink_class_init):
19567         * ext/directfb/dfbvideosink.h: Use fraction for framerate, various
19568         fixes.
19569
19570 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19571
19572         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init),
19573         (gst_sdlvideosink_get_times), (gst_sdlvideosink_init),
19574         (gst_sdlvideosink_setcaps), (gst_sdlvideosink_change_state):
19575         * ext/sdl/sdlvideosink.h:
19576         Updates for fractional framerates and XOverlay interface changes
19577
19578 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19579
19580         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19581         (gst_qtdemux_add_stream), (qtdemux_dump_mvhd),
19582         (qtdemux_parse_trak):
19583         Convert to fractional framerates
19584
19585 2005-11-23  Edward Hervey  <edward@fluendo.com>
19586
19587         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_loop):
19588         Fix for latest API changes
19589
19590 2005-11-22  Edgard Lima <edgard.lima@indt.org.br>
19591         * configure.ac:
19592         * PORTED_09:
19593         * extt/Makefile.am:
19594         * ext/musepack/gstmusepackdec.c:
19595         * ext/musepack/gstmusepackdec.h:
19596         * ext/musepack/gstmusepackreader.c:
19597         * ext/musepack/gstmusepackreader.h:
19598         Musepackdec ported to 0.9. There is still a small problem to be
19599         solved, after the end of file, the pipeline doens't stop.
19600
19601 2005-11-22  Andy Wingo  <wingo@pobox.com>
19602
19603         * ext/faad/gstfaad.c (gst_faad_event)
19604         * ext/ivorbis/vorbisfile.c (gst_ivorbisfile_loop)
19605         * gst/qtdemux/qtdemux.c (gst_qtdemux_loop_header)
19606         * gst/speed/gstspeed.c (speed_sink_event)
19607         * gst/tta/gstttaparse.c (gst_tta_parse_src_event)
19608         (gst_tta_parse_parse_header): Run update-funcnames.
19609
19610 2005-11-21  Michael Smith <msmith@fluendo.com>
19611
19612         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_event):
19613           Don't take STREAM_LOCK in sink event handlers any more.
19614
19615 2005-11-21  Wim Taymans  <wim@fluendo.com>
19616
19617         * ext/faac/gstfaac.c: (gst_faac_sink_event):
19618         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event):
19619         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event):
19620         Fix for stream lock updates.
19621
19622 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19623
19624         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
19625           Add DX50, DIVX and DIV3 fourccs (patch by
19626           j@bootlab.org, #321903).
19627
19628 2005-11-21  Andy Wingo  <wingo@pobox.com>
19629
19630         * *.h:
19631         * *.c: Ran scripts/update-macros. Oh yes.
19632
19633 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19634
19635         * ext/directfb/dfbvideosink.c:
19636         (gst_dfbvideosink_get_format_from_caps):
19637         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create):
19638         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19639         (qtdemux_parse), (qtdemux_type_get), (qtdemux_node_dump_foreach),
19640         (qtdemux_dump_hdlr), (qtdemux_dump_dref), (qtdemux_dump_stsd),
19641         (qtdemux_dump_dcom), (qtdemux_parse_trak), (qtdemux_video_caps),
19642         (qtdemux_audio_caps):
19643         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
19644         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
19645         (gst_v4l2src_capture_init), (gst_v4l2src_get_size_limits):
19646           Update for GST_FOURCC_FORMAT API change.
19647
19648 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19649
19650         * ext/audioresample/gstaudioresample.c:
19651         * ext/polyp/polypsink.c: (gst_polypsink_sink_fixate):
19652         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_fixate):
19653         * gst/modplug/gstmodplug.cc:
19654         * sys/glsink/glimagesink.c: (gst_glimagesink_fixate):
19655         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
19656         Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
19657         (#322027)
19658
19659 2005-11-21  Edgard Lima <edgard.lima@indt.org.br>
19660
19661         * ext/Makefile.am:
19662         * ext/ivorbis/vorbisfile.c:
19663         Now it works in push-mode. Tested with gnomevfssrc location=http://..
19664         ! tremor ! alsasink. Some issues to be solved yet:
19665         1- set correct timestamps
19666         2- seek is forced to disabled in pull-mode
19667         
19668 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
19669
19670         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
19671         (gst_faac_sink_setcaps), (gst_faac_configure_source_pad),
19672         (gst_faac_chain):
19673           Set proper caps on source pad (#320532).
19674
19675         * ext/faad/gstfaad.c:
19676           Don't use gtk-doc markers for comment block.
19677
19678 2005-11-14  Andy Wingo  <wingo@pobox.com>
19679
19680         * configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better
19681         debugging, allows dll builds on windows. Fixes #316076.
19682
19683 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19684
19685         * configure.ac: back to HEAD
19686
19687 === release 0.9.5 ===
19688
19689 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
19690
19691         * configure.ac:
19692           releasing 0.9.5, "Thrice Belgian Bar"
19693
19694 2005-11-11  Michael Smith <msmith@fluendo.com>
19695
19696         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain):
19697           Make this compile on systems with broken headers. 
19698
19699 2005-11-11  Michael Smith <msmith@fluendo.com>
19700
19701         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain):
19702           Call functions with the correct API. Unfortunately, unless your
19703           distribution patches upstream, the public header file for FAAD
19704           doesn't actually declare the API accurately. So, some nastiness
19705           ensues...
19706
19707 2005-11-10  Daniel Amelang  <daniel dot amelang at gmail dot com>
19708
19709         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19710
19711         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
19712           Add support for custom genre tags.
19713
19714 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
19715
19716         * ext/tarkin/wavelet.c:
19717         * ext/tarkin/wavelet.h:
19718         * gst/mpegaudioparse/gstmpegaudioparse.c:
19719         * gst/vbidec/vbidata.c:
19720         * gst/vbidec/vbiscreen.h:
19721         * sys/dxr3/ac3_padder.c:
19722         * sys/dxr3/dxr3audiosink.c:
19723         * sys/dxr3/dxr3spusink.c:
19724         * sys/dxr3/dxr3videosink.c:
19725         * sys/qcam/dark.c:
19726           Don't use gtk-doc markers for normal comments. Fix
19727           gtk-doc formatting where required.
19728
19729 2005-11-08  Edgard Lima <edgard.lima@indt.org.br>
19730
19731         * configure.ac:
19732         * PORTED_09:
19733         * ext/Makefile.am:
19734         * ext/ivorbis/vorbis.c:
19735         * ext/ivorbis/vorbisfile.c:
19736         Ported to 0.9. Some issues to be solved yet:
19737         1- set correct timestamps
19738         2- seg fault when eos
19739         3- seek is now disabled
19740
19741 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19742
19743         * examples/Makefile.am: Cleanup non existing
19744         examples.
19745
19746 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19747
19748         * docs/plugins/inspect.stamp: Add missing files.
19749
19750 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19751
19752         * examples/Makefile.am: Make buildbot happy.
19753
19754 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19755
19756         * Makefile.am: examples in dist subdirs.
19757         * configure.ac: enable parameter for building 
19758         examples.
19759         * docs/plugins/gst-plugins-bad-plugins.args:
19760         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19761         * examples/Makefile.am: Updates.
19762
19763 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19764
19765         * Makefile.am:
19766         * autogen.sh:
19767         * configure.ac:
19768         * docs/Makefile.am:
19769         * docs/plugins/.cvsignore:
19770         * docs/plugins/Makefile.am:
19771         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
19772         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19773         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
19774         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
19775         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19776         * docs/plugins/gst-plugins-bad-plugins.args:
19777         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
19778         * docs/plugins/gst-plugins-bad-plugins.interfaces:
19779         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
19780         * docs/plugins/gst-plugins-bad-plugins.signals:
19781         * docs/plugins/gst-plugins-bad-plugins.types:
19782         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19783         * docs/version.entities.in: Enable documentation.
19784         * examples/Makefile.am:
19785         * examples/directfb/Makefile.am:
19786         * examples/directfb/decker.ttf:
19787         * examples/directfb/dfblogo.png:
19788         * examples/directfb/gstdfb.c: (myclock), (dynamic_link),
19789         (size_changed), (setup_dynamic_link), (main): Add an example
19790         application for DirectFB.
19791
19792 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19793
19794         * ext/directfb/Makefile.am: Add the example application.
19795         * ext/directfb/dfb-example.c: (get_me_out), (main):
19796         Here is an example application that runs videotestsrc for 20
19797         seconds. It's included in the documentation.
19798         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19799         (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format),
19800         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_buffer_alloc):
19801         More fixes, calculate new size of the buffer when renegotiating.
19802         This completely breaks ffmpegcolorspace but i need to discuss 
19803         that with Wim on monday. Add documentation.
19804
19805 2005-11-05  Julien MOUTTE  <julien@moutte.net>
19806
19807         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19808         (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format),
19809         (gst_dfbvideosink_getcaps): Make acceleration detection work, 
19810         better, add safety checks and ARGB support for cards that
19811         support it.
19812
19813 2005-11-04  Julien MOUTTE  <julien@moutte.net>
19814
19815         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19816         (gst_dfbvideosink_surface_destroy),
19817         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19818         (gst_dfbvideosink_center_rect), (gst_dfbvideosink_show_frame),
19819         (gst_dfbvideosink_buffer_alloc):
19820         * ext/directfb/dfbvideosink.h: Now does clipping when surface
19821         is too small, handles upstream elements that are not calling
19822         gst_pad_alloc_buffer, fixes a lot of bugs.
19823
19824 2005-11-03  Julien MOUTTE  <julien@moutte.net>
19825
19826         * ext/directfb/Makefile.am: Prepare for liboil usage.
19827         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_show_frame),
19828         (gst_dfbvideosink_buffer_alloc):  Prepare for liboil, handle
19829         rendering in external surface correctly. Will commit a neat
19830         example soon.
19831
19832 2005-11-03  Edgard Lima <edgard.lima@indt.org.br>
19833
19834         * ext/sdl/sdlvideosink.c: (SDL_WaitEventTimeout),
19835         (gst_sdlvideosink_event_thread), (gst_sdlvideosink_initsdl),
19836         (gst_sdlvideosink_change_state), (gst_sdlvideosink_deinitsdl):
19837         * ext/sdl/sdlvideosink.h:
19838         Add support to exit when 'Esc' key is pressed.
19839
19840 2005-11-02  Julien MOUTTE  <julien@moutte.net>
19841
19842         * configure.ac: Requires DirectFB 0.9.24
19843
19844 2005-11-02  Julien MOUTTE  <julien@moutte.net>
19845
19846         * configure.ac:
19847         * ext/Makefile.am:
19848         * ext/directfb/Makefile.am:
19849         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_get_format_name),
19850         (gst_dfbvideosink_surface_create),
19851         (gst_dfbvideosink_surface_destroy),
19852         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_layers),
19853         (gst_dfbvideosink_enum_vmodes), (gst_dfbvideosink_enum_devices),
19854         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19855         (gst_dfbvideosink_get_format_from_caps),
19856         (gst_dfbvideosink_get_caps_from_format),
19857         (gst_dfbvideosink_can_blit_from_format),
19858         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19859         (gst_dfbvideosink_setcaps), (gst_dfbvideosink_change_state),
19860         (gst_dfbvideosink_get_times), (gst_dfbvideosink_center_rect),
19861         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_bufferpool_clear),
19862         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19863         (gst_dfbsurface_init), (gst_dfbsurface_class_init),
19864         (gst_dfbsurface_get_type), (gst_dfbvideosink_interface_supported),
19865         (gst_dfbvideosink_interface_init),
19866         (gst_dfbvideosink_navigation_send_event),
19867         (gst_dfbvideosink_navigation_init),
19868         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19869         (gst_dfbvideosink_init), (gst_dfbvideosink_base_init),
19870         (gst_dfbvideosink_class_init), (gst_dfbvideosink_get_type),
19871         (plugin_init):
19872         * ext/directfb/dfbvideosink.h:
19873         * ext/directfb/directfbvideosink.c:
19874         * ext/directfb/directfbvideosink.h: Complete rewrite/port of
19875         DirectFB video sink to 0.9. Handles reverse negotiation, hardware
19876         scaling, navigation, buffer allocation from video memory etc...
19877
19878 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
19879
19880         * gst-plugins-bad/ext/sdl/sdlvideosink.c:
19881         gst_sdlvideosink_set_property, gst_sdlvideosink_init,
19882         gst_sdlvideosink_create:
19883         Changed property full-screen to fullscreen, using SDL_SWSURFACE
19884         instead of SDL_HWSURFACE when in full screen mode.
19885         
19886 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
19887
19888         * gst-plugins-bad/ext/sdl/sdlvideosink.c: gst_sdlvideosink_class_init,
19889         gst_sdlvideosink_set_property, gst_sdlvideosink_get_property,
19890         gst_sdlvideosink_init, gst_sdlvideosink_create:
19891         * gst-plugins-bad/ext/sdl/sdlvideosink.h:
19892         Added a property that allows full-screen.
19893
19894 2005-10-28  Tim-Philipp Müller  <tim at centricular dot net>
19895
19896         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init),
19897         (gst_sdlvideosink_class_init),
19898         (gst_sdlvideosink_get_sdl_from_fourcc), (gst_sdlvideosink_setcaps),
19899         (gst_sdlvideosink_show_frame):
19900         * ext/sdl/sdlvideosink.h:
19901           Fix I420 output on some machines (not very nice, but should work).
19902           Add an 'sdlvideosink' debug category. Disable formats that do
19903           not work. Fix some vararg function issues.
19904
19905 2005-10-27  Wim Taymans  <wim@fluendo.com>
19906
19907         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19908         (gst_sdlvideosink_get_times), (gst_sdlvideosink_class_init),
19909         (gst_sdlvideosink_init), (gst_sdlvideosink_lock),
19910         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create),
19911         (gst_sdlvideosink_show_frame), (gst_sdlvideosink_set_property),
19912         (gst_sdlvideosink_get_property), (gst_sdlvideosink_change_state):
19913         Fix SDL videosink and did some cleanups.
19914
19915 2005-10-27  Edgard Lima <edgard.lima@indt.org.br>
19916
19917         * ext/sdl/sdlvideosink.c:
19918         * ext/sdl/sdlvideosink.h:
19919         Trying to fix videos out of sync (not fixed yet)
19920         
19921 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
19922
19923         * gst/qtdemux/qtdemux.h:
19924           Remove got_redirect from class structure as well.
19925
19926 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
19927
19928         * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
19929         (qtdemux_parse_tree):
19930           Remove 'got-redirect' signal and post element message
19931           on the bus instead.
19932
19933 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
19934
19935         * ext/gsm/gstgsm.c:
19936         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
19937         * ext/gsm/gstgsmdec.h:
19938         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
19939         (gst_gsmenc_chain):
19940         Fixing stuff as wingo pointed out.
19941
19942 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
19943
19944         * ext/gsm/gstgsm.c: (plugin_init):
19945         * ext/gsm/gstgsmdec.c: (gst_gsmdec_class_init), (gst_gsmdec_init),
19946         (gst_gsmdec_chain):
19947         * ext/gsm/gstgsmdec.h:
19948         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
19949         (gst_gsmenc_chain):
19950         * ext/gsm/gstgsmenc.h:
19951         Over-writing Wim's gsm plugins (currently not working) with that from the 
19952         farsight repo. Also made sure that they work with the RTP (de)payloader.
19953
19954 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
19955
19956         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), 
19957         (gst_gsmenc_sink_event), (gst_gsmenc_chain):
19958         * ext/gsm/gstgsmenc.h:
19959         Fixed event handling
19960
19961 2005-10-24  Christian Schaller  <christian@fluendo.com>
19962
19963         * configure.ac: port over thomas's plugin listing from base
19964
19965 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19966
19967         * configure.ac:
19968           back to HEAD
19969
19970 === release 0.9.4 ===
19971
19972 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19973
19974         * NEWS:
19975         * RELEASE:
19976         * configure.ac:
19977           Releasing 0.9.4, "Utahraptor"
19978
19979 2005-10-23  Julien MOUTTE  <julien@moutte.net>
19980
19981         * gst/tta/gstttaparse.c: (gst_tta_parse_loop): STOPPED->FAILED.
19982
19983 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
19984
19985         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_class_init),
19986         (gst_faad_init), (gst_faad_srcgetcaps), (gst_faad_event),
19987         (gst_faad_chain), (gst_faad_change_state):
19988         * ext/faad/gstfaad.h:
19989           Do some timestamp smoothing (matroskademux apparently sends
19990           multiple buffers in a row with the same timestamp); fix
19991           duration on outgoing buffers; fix change state function; use
19992           GST_DEBUG_FUNCPTR for pad functions.
19993
19994 2005-10-19  Wim Taymans  <wim@fluendo.com>
19995
19996         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
19997         (gst_qtdemux_handle_src_query):
19998         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query):
19999         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
20000         (gst_tta_parse_get_query_types), (gst_tta_parse_query):
20001         API change fix.
20002
20003 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
20004
20005         * configure.ac:
20006           All the cool kids use GST_DOCBOOK_CHECK now.
20007
20008 2005-10-18  Julien MOUTTE  <julien@moutte.net>
20009
20010         * gst/speed/Makefile.am: Fix build of speed. 
20011
20012 2005-10-17  Edgard Lima <edgard.lima@indt.org.br>
20013
20014         * gst/speed/gstspeed.c: (speed_chain), (speed_setcaps),
20015         (speed_parse_caps), (speed_src_event), (speed_sink_event),
20016         (speed_src_query), (speed_init), (speed_set_property),
20017         (speed_change_state), (gst_speed_convert):
20018         Fixed speed - the previous version, 1.38, has been ported to 0.9
20019         from a wrong version, 1.37 (from 1.36). That fix already includes
20020         the changes done in 1.36.2.4.
20021
20022 2005-10-16  Tim-Philipp Müller  <tim at centricular dot net>
20023
20024         * configure.ac:
20025           Fix glib check
20026
20027 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
20028
20029         * examples/stats/mp2ogg.c:
20030         * ext/tarkin/tarkin.c: (tarkin_analysis_framein),
20031         (tarkin_synthesis_packetin):
20032           and more typos fixed
20033
20034 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
20035
20036         * ext/faac/gstfaac.c: (gst_faac_class_init), (gst_faac_init),
20037         (gst_faac_sink_setcaps), (gst_faac_src_setcaps),
20038         (gst_faac_sink_event), (gst_faac_chain), (gst_faac_set_property),
20039         (gst_faac_get_property), (gst_faac_change_state):
20040           Gst09-ize code a little bit more: use gst_pad_alloc_buffer(),
20041           move event handling from chain function into an event function,
20042           add some locks here and there, do some cleanups; disable 32-bit
20043           integer and float input formats until we're sure that those 
20044           actually work (couldn't play back the produced files with 
20045           anything).
20046
20047 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
20048
20049         * examples/indexing/indexmpeg.c: (main):
20050         * ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
20051         (gst_artsdsink_close_audio), (gst_artsdsink_change_state):
20052         * ext/artsd/gstartsdsink.h:
20053         * ext/audiofile/gstafparse.c: (gst_afparse_open_file),
20054         (gst_afparse_close_file):
20055         * ext/audiofile/gstafparse.h:
20056         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
20057         (gst_afsink_close_file), (gst_afsink_chain),
20058         (gst_afsink_change_state):
20059         * ext/audiofile/gstafsink.h:
20060         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
20061         (gst_afsrc_close_file), (gst_afsrc_change_state):
20062         * ext/audiofile/gstafsrc.h:
20063         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
20064         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
20065         * ext/dts/gstdtsdec.c: (gst_dtsdec_init):
20066         * ext/jack/gstjack.h:
20067         * ext/jack/gstjackbin.c: (gst_jack_bin_init),
20068         (gst_jack_bin_change_state):
20069         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
20070         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
20071         * ext/nas/nassink.c: (gst_nassink_open_audio),
20072         (gst_nassink_close_audio), (gst_nassink_change_state):
20073         * ext/nas/nassink.h:
20074         * ext/polyp/polypsink.c: (gst_polypsink_init):
20075         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
20076         * ext/sdl/sdlvideosink.h:
20077         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
20078         * ext/sndfile/gstsf.c: (gst_sf_set_property),
20079         (gst_sf_change_state), (gst_sf_release_request_pad),
20080         (gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
20081         * ext/sndfile/gstsf.h:
20082         * ext/swfdec/gstswfdec.c: (gst_swfdec_init):
20083         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
20084         * gst/apetag/apedemux.c: (gst_ape_demux_init):
20085         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
20086         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
20087         * gst/festival/gstfestival.c: (gst_festival_change_state):
20088         * gst/festival/gstfestival.h:
20089         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
20090         * gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
20091         (gst_multifilesink_set_location), (gst_multifilesink_open_file),
20092         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
20093         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
20094         (gst_multifilesink_chain), (gst_multifilesink_change_state):
20095         * gst/multifilesink/gstmultifilesink.h:
20096         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
20097         * sys/cdrom/gstcdplayer.c: (cdplayer_init):
20098         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
20099         (dxr3audiosink_open), (dxr3audiosink_close),
20100         (dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
20101         (dxr3audiosink_change_state):
20102         * sys/dxr3/dxr3audiosink.h:
20103         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
20104         (dxr3spusink_close), (dxr3spusink_chain),
20105         (dxr3spusink_change_state):
20106         * sys/dxr3/dxr3spusink.h:
20107         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
20108         (dxr3videosink_open), (dxr3videosink_close),
20109         (dxr3videosink_write_data), (dxr3videosink_change_state):
20110         * sys/dxr3/dxr3videosink.h:
20111         * sys/glsink/glimagesink.c: (gst_glimagesink_init):
20112         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
20113         (gst_qcamsrc_open), (gst_qcamsrc_close):
20114         * sys/qcam/gstqcamsrc.h:
20115         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
20116         * sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
20117         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
20118         (gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
20119         * sys/vcd/vcdsrc.h:
20120         renamed GST_FLAGS macros to GST_OBJECT_FLAGS
20121         moved bitshift from macro to enum definition
20122
20123 2005-10-12  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20124
20125         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20126
20127         * ext/faac/gstfaac.c: (gst_faac_sink_setcaps):
20128           Fix depth/width handling for float audio (#318659).
20129
20130 2005-10-12  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20131
20132         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20133
20134         * ext/faac/gstfaac.c: (gst_faac_sink_setcaps),
20135         (gst_faac_src_setcaps), (gst_faac_chain):
20136           Refcount fixes (#318660)
20137
20138 2005-10-12  Julien MOUTTE  <julien@moutte.net>
20139
20140         * ext/Makefile.am: libvisual and snapshot are not here anymore. Makes
20141         automake-1.7 happy again.
20142
20143 2005-10-12  Tim-Philipp Müller  <tim at centricular dot net>
20144
20145         * ext/faad/gstfaad.c: (gst_faad_event):
20146           newsegment API update
20147
20148 2005-10-11  Wim Taymans  <wim@fluendo.com>
20149
20150         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
20151         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
20152         (gst_tta_parse_parse_header):
20153         newsegment API update.
20154
20155 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20156
20157         * configure.ac:
20158           back to development
20159
20160 === release 0.9.3 ===
20161
20162 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20163
20164         * configure.ac:
20165           Releasing 0.9.3, "Porthos"
20166
20167 2005-09-28  Wim Taymans  <wim@fluendo.com>
20168
20169         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
20170         No need to take stream lock here.
20171
20172 2005-09-26  Christian Schaller  <uraeus@gnome.org>
20173
20174         * configure.ac: add speed and rfb where needed
20175         * gst/librfb/Makefile.am: add rfbsrc.c file to files getting disted
20176
20177 2005-09-23  Edgard Lima  <edgard.lima@indt.org.br>
20178
20179         * ext/gsm/Makefile.am:
20180         * ext/gsm/gstgsm.c:
20181         * ext/gsm/gstgsmdec.c:
20182         * PORTED_09:
20183         Gsmdec ported to 0.9.
20184
20185 2005-09-22  Arwed v. Merkatz  <v.merkatz@gmx.net>
20186
20187         * configure.ac:
20188         * gst/tta/gstttadec.c: (gst_tta_dec_setcaps), (gst_tta_dec_init),
20189         (gst_tta_dec_chain):
20190         * gst/tta/gstttaparse.c: (gst_tta_parse_dispose),
20191         (gst_tta_parse_class_init), (gst_tta_parse_reset),
20192         (gst_tta_parse_init), (gst_tta_parse_src_event),
20193         (gst_tta_parse_get_query_types), (gst_tta_parse_query),
20194         (gst_tta_parse_activate), (gst_tta_parse_activate_pull),
20195         (gst_tta_parse_parse_header), (gst_tta_parse_stream_data),
20196         (gst_tta_parse_loop), (gst_tta_parse_change_state):
20197         * gst/tta/gstttaparse.h:
20198           Ported tta plugin to 0.9.
20199
20200
20201 2005-09-20  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20202
20203         * ext/gsm/gstgsmenc.c:
20204           Setting caps on the outgoing buffers.
20205           Need to fix: rtpencoder does not know what it is handling and
20206           errors out
20207
20208 2005-09-20  Edgard Lima  <edgard.lima@indt.org.br>
20209
20210         * configure.ac:
20211         * ext/sdl/Makefile.am:
20212           Fixed Makefile.am - removed hard coded flags from Makefile.am.
20213           Added AC_PATH_XTRA to configure.ac to be used by Makefile.am.
20214
20215 2005-09-19  Edgard Lima  <edgard.lima@indt.org.br>
20216
20217         * Makefile.am:
20218         * configure.ac:
20219         * ext/sdl/Makefile.am:
20220         * ext/sdl/sdlvideosink.c:
20221         * PORTED_09:
20222           Ported to 0.9.
20223
20224 === release 0.9.1 ===
20225
20226 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20227
20228         * configure.ac:
20229         * gst/speed/Makefile.am:
20230         * gst/speed/gstspeed.c: Ported to GStreamer 0.9.
20231         * PORTED_09:
20232
20233 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20234
20235         * NEWS:
20236         * README:
20237         * RELEASE:
20238         * configure.ac:
20239         * autogen.sh:
20240           releasing 0.9.1, "Angel Eyes"
20241
20242 2005-09-05  Jan Schmidt  <thaytan@mad.scientist.com>
20243         * examples/gstplay/player.c: (main):
20244         * examples/stats/mp2ogg.c: (main):
20245         * ext/artsd/gstartsdsink.c: (gst_artsdsink_change_state):
20246         * ext/audiofile/gstafsink.c: (gst_afsink_change_state):
20247         * ext/audiofile/gstafsrc.c: (gst_afsrc_change_state):
20248         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_change_state):
20249         * ext/dirac/gstdiracdec.cc:
20250         * ext/directfb/directfbvideosink.c:
20251         (gst_directfbvideosink_change_state):
20252         * ext/dts/gstdtsdec.c: (gst_dtsdec_change_state):
20253         * ext/faac/gstfaac.c: (gst_faac_change_state):
20254         * ext/hermes/gsthermescolorspace.c:
20255         (gst_hermes_colorspace_change_state):
20256         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_change_state):
20257         * ext/jack/gstjack.c: (gst_jack_change_state):
20258         * ext/jack/gstjackbin.c: (gst_jack_bin_change_state):
20259         * ext/lcs/gstcolorspace.c: (gst_colorspace_change_state):
20260         * ext/libmms/gstmms.c: (gst_mms_change_state):
20261         * ext/mpeg2enc/gstmpeg2enc.cc:
20262         * ext/mplex/gstmplex.cc:
20263         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_change_state):
20264         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_change_state):
20265         * ext/nas/nassink.c: (gst_nassink_change_state):
20266         * ext/polyp/polypsink.c: (gst_polypsink_change_state),
20267         (context_state_callback), (gst_polypsink_link):
20268         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
20269         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
20270         * ext/smoothwave/gstsmoothwave.c: (gst_sw_change_state):
20271         * ext/sndfile/gstsf.c: (gst_sf_change_state):
20272         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
20273         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_change_state):
20274         * ext/xine/xine.c: (gst_xine_change_state):
20275         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_change_state):
20276         * ext/xine/xineaudiosink.c: (gst_xine_audio_sink_change_state):
20277         * ext/xine/xineinput.c: (gst_xine_input_change_state):
20278         * ext/xvid/gstxviddec.c: (gst_xviddec_change_state):
20279         * ext/xvid/gstxvidenc.c: (gst_xvidenc_change_state):
20280         * gst/apetag/apedemux.c: (gst_ape_demux_change_state):
20281         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_change_state):
20282         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_change_state):
20283         * gst/colorspace/gstcolorspace.c: (gst_colorspace_change_state):
20284         * gst/festival/gstfestival.c: (gst_festival_change_state):
20285         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state):
20286         * gst/modplug/gstmodplug.cc:
20287         * gst/mpeg1videoparse/gstmp1videoparse.c:
20288         (gst_mp1videoparse_change_state):
20289         * gst/mpegaudioparse/gstmpegaudioparse.c:
20290         (gst_mp3parse_change_state):
20291         * gst/multifilesink/gstmultifilesink.c:
20292         (gst_multifilesink_change_state):
20293         * gst/speed/gstspeed.c: (speed_change_state):
20294         * gst/switch/gstswitch.c: (gst_switch_change_state):
20295         * gst/videocrop/gstvideocrop.c: (gst_video_crop_change_state):
20296         * gst/videodrop/gstvideodrop.c: (gst_videodrop_change_state):
20297         * gst/y4m/gsty4mencode.c: (gst_y4mencode_change_state):
20298         * po/af.po:
20299         * po/az.po:
20300         * po/cs.po:
20301         * po/en_GB.po:
20302         * po/hu.po:
20303         * po/it.po:
20304         * po/nb.po:
20305         * po/nl.po:
20306         * po/or.po:
20307         * po/sq.po:
20308         * po/sr.po:
20309         * po/sv.po:
20310         * po/uk.po:
20311         * po/vi.po:
20312         * sys/cdrom/gstcdplayer.c: (cdplayer_change_state):
20313         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_change_state):
20314         * sys/dxr3/dxr3spusink.c: (dxr3spusink_change_state):
20315         * sys/dxr3/dxr3videosink.c: (dxr3videosink_change_state):
20316         * sys/glsink/glimagesink.c: (gst_glimagesink_change_state):
20317         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state):
20318         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_change_state):
20319         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_change_state):
20320         * sys/sunaudio/gstsunelement.c: (gst_sunaudioelement_change_state):
20321         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_change_state):
20322         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_change_state):
20323         * sys/vcd/vcdsrc.c: (gst_vcdsrc_change_state):
20324           Fix up all the state change functions.
20325
20326 2005-09-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20327
20328         * created gst-plugins-bad
20329
20330 2005-09-02  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20331
20332         * configure.ac:
20333         * ext/Makefile.am:
20334         * ext/gsm/Makefile.am:
20335         * ext/gsm/gstgsm.c: 
20336         * ext/gsm/gstgsmenc.c: Ported GSM Encoder to GStreamer 0.9.
20337         * PORTED_09:
20338
20339 2005-08-31  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20340
20341         * configure.ac:
20342         * ext/Makefile.am:
20343         * ext/faac/Makefile.am:
20344         * ext/faac/gstfaac.c: Ported to GStreamer 0.9.