gst/flv/: Put the GstSegment directly into the instance struct instead of allocating...
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-10-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2
3         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
4         (gst_flv_demux_loop), (gst_flv_demux_handle_seek_push),
5         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_sink_event),
6         (gst_flv_demux_dispose), (gst_flv_demux_init):
7         * gst/flv/gstflvdemux.h:
8         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9         (gst_flv_parse_tag_video), (gst_flv_parse_tag_timestamp):
10         Put the GstSegment directly into the instance struct instead of
11         allocating and free'ing it again.
12
13         Push tags already if only one pad was added, no need to wait for
14         the second one.
15
16         When generating our index set has_video and has_audio if we find
17         video or audio in case the FLV header has incorrect data.
18
19 2008-10-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
20
21         * gst/speexresample/gstspeexresample.c:
22         (gst_speex_resample_class_init), (gst_speex_resample_fixate_caps),
23         (gst_speex_resample_process):
24         Fixate to the nearest supported rate instead of the first one.
25
26 2008-10-28  Sebastian Dröge  <slomo@circular-chaos.org>
27
28         * gst/speexresample/README:
29         * gst/speexresample/arch.h:
30         * gst/speexresample/fixed_arm4.h:
31         * gst/speexresample/fixed_arm5e.h:
32         * gst/speexresample/fixed_bfin.h:
33         * gst/speexresample/fixed_debug.h:
34         * gst/speexresample/fixed_generic.h:
35         * gst/speexresample/resample.c: (compute_func), (main), (sinc),
36         (cubic_coef), (resampler_basic_direct_single),
37         (resampler_basic_direct_double),
38         (resampler_basic_interpolate_single),
39         (resampler_basic_interpolate_double), (update_filter),
40         (speex_resampler_init_frac), (speex_resampler_process_native),
41         (speex_resampler_magic), (speex_resampler_process_float),
42         (speex_resampler_process_int),
43         (speex_resampler_process_interleaved_float),
44         (speex_resampler_process_interleaved_int),
45         (speex_resampler_set_rate_frac), (speex_resampler_skip_zeros),
46         (speex_resampler_reset_mem):
47         * gst/speexresample/speex_resampler.h:
48         Update Speex resampler with latest version from Speex GIT.
49
50 2008-10-27  Michael Smith <msmith@songbirdnest.com>
51
52         * gst/aiffparse/aiffparse.c:
53         * gst/aiffparse/aiffparse.h:
54           Calculate width from depth correctly.
55           Read SSND header properly (fixes 24 bit AIFF reading).
56
57 2008-10-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
58
59         * ext/x264/gstx264enc.c: (gst_x264_enc_init_encoder):
60         Adapt to slightly modified x264 API.  Fixes #555238.
61
62 2008-10-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
63
64         * ext/faac/gstfaac.c: (gst_faac_sink_event):
65         Prevent endless loop if buffer alloc error.
66
67 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
68
69         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain),
70         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header),
71         (gst_flv_demux_create_index):
72         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_script),
73         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
74         (gst_flv_parse_tag_timestamp), (gst_flv_parse_tag_type),
75         (gst_flv_parse_header):
76         * gst/flv/gstflvparse.h:
77         Don't memcpy() all data we want to push downstream, instead just
78         create subbuffers and push them downstream.
79
80         Fix some minor memory leaks.
81
82 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
83
84         * configure.ac:
85         Require CVS of core for the last change.
86
87 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
88
89         * gst/flv/Makefile.am:
90         Fix (non-critical) syntax error and add all required CFLAGS and LIBS.
91
92         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
93         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
94         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
95         (gst_flv_parse_tag_timestamp), (gst_flv_parse_tag_type):
96         Rewrite the script tag parsing to make sure we don't try to read
97         more data than we have. Also use GST_READ_UINT24_BE directly and
98         fix some minor memory leaks.
99         This should make all crashes on fuzzed FLV files disappear.
100
101 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
102
103         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
104         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
105         (gst_flv_parse_tag_type), (gst_flv_parse_header):
106         Properly check everywhere that we have enough data to parse and
107         don't read outside the allocated memory region. 
108
109 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
110
111         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
112         (gst_flv_parse_tag_video):
113         If the caps change during playback and negotiation fails error out
114         instead of trying to continue.
115
116 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
117
118         * gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
119         (gst_flv_mux_request_new_pad), (gst_flv_mux_write_buffer),
120         (gst_flv_mux_collected):
121         * gst/flv/gstflvmux.h:
122         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate):
123         Add support for Speex audio and allow buffers without valid
124         timestamp in the muxer.
125
126 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
127
128         * gst/flv/gstflvdemux.c: (gst_flv_demux_loop),
129         (gst_flv_demux_find_offset), (gst_flv_demux_handle_seek_push),
130         (gst_flv_demux_handle_seek_pull):
131         Don't post an error message on the bus if sending EOS downstream
132         didn't work. Fixes bug #550454.
133
134         Fix seek event handling to look at the flags of the seek event
135         instead of assuming some random flags, don't send segment-start
136         messages when operating in push mode and push seek events upstream
137         if we couldn't handle them.
138
139 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
140
141         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag):
142         Error out early if pulling a tag failed.
143
144 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
145
146         * gst/flv/gstflvdemux.c: (gst_flv_demux_create_index),
147         (gst_flv_demux_loop):
148         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_script),
149         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
150         (gst_flv_parse_tag_timestamp):
151         * gst/flv/gstflvparse.h:
152         In pull mode we create our own index before doing anything else
153         and don't use the index provided by some files (which are more than
154         often incorrect and cause failed seeks).
155
156         For push mode we still use the index provided by the file and extend it
157         while doing the playback.
158
159 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
160
161         * gst/flv/gstflvdemux.c: (gst_flv_demux_push_src_event),
162         (gst_flv_demux_loop), (gst_flv_demux_handle_seek_pull),
163         (gst_flv_demux_sink_event):
164         Instead of using gst_pad_event_default() use a small
165         gst_pad_push_event() wrapper that only does what we want and is much
166         more simple.
167
168 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
169
170         * gst/flv/gstflvdemux.c: (gst_flv_demux_change_state),
171         (gst_flv_demux_set_index), (gst_flv_demux_init):
172         * gst/flv/gstflvdemux.h:
173         If our index was created by the element and not provided from the
174         outside we should destroy it when starting a new stream to get
175         all old entries removed.
176
177 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
178
179         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_range):
180         Improve debugging a bit when pulling a buffer from upstream fails.
181
182 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
183
184         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
185         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_dispose):
186         * gst/flv/gstflvdemux.h:
187         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
188         (gst_flv_parse_tag_video):
189         Close the currently playing segment from the streaming thread
190         instead of the thread where the seek event is handled.
191
192 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
193
194         Patch by: David Härdeman <david at hardeman dot nu>
195
196         * gst/mpegdemux/mpegtspacketizer.c: (mpegts_packetizer_parse_nit):
197         Add support for the frequency list descriptor, which provides
198         additional frequencies that should be scanned by a DVB application.
199         Fixes bug #557814.
200
201 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
202
203         Patch by: vanista <vanista at gmail dot com>
204
205         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_choose_best_stream):
206         Fix EOS logic by correctly popping the collect pad buffers only
207         when we've chosen to use them instead of popping them always and
208         storing them in a private queue.
209
210         Before the pipeline would deadlock if all pads go EOS at the same
211         time. Fixes bug #557763.
212
213 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
214
215         * configure.ac:
216         Back to development -> 0.10.9.1
217
218 === release 0.10.9 ===
219
220 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
221
222         * configure.ac:
223           releasing 0.10.9, "Matters of fact"
224
225 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
226
227         * configure.ac:
228         Commit 0.10.8.4 pre-release
229
230 2008-10-20  Edward Hervey  <edward.hervey@collabora.co.uk>
231
232         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data):
233         Fix reverse playback regression.
234         Fixes #557080
235
236 2008-10-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
237
238         * ext/apexsink/gstapexplugin.c: (plugin_init):
239           Set apexsink's rank to NONE so it doesn't get used by
240           autoaudiosink (there's no point really). (#556588)
241
242 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
243
244         * configure.ac:
245         0.10.8.3 pre-release
246
247 2008-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
248
249         Patch by: Josep Torra
250
251         * gst/mpegdemux/gstmpegtsdemux.c:
252         * gst/mpegdemux/gstmpegtsdemux.h:
253         Properly handle some resync cases in the optimised
254         buffering strategy.
255
256 2008-10-16  Michael Smith <msmith@songbirdnest.com>
257         * sys/acmenc/Makefile.am:
258           Remove incorrect use of DIRECTSOUND_LDFLAGS
259
260 2008-10-16  Sebastian Dröge  <slomo@circular-chaos.org>
261
262         * gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
263         (gst_flv_mux_write_buffer):
264         Don't set video_codec to the value that actually should go
265         into audio codec, otherwise we create invalid files.
266         Fixes bug #556564.
267
268 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
269
270         * tests/check/Makefile.am:
271         Leave apexsink out of the states test.
272
273 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
274
275         * gst/rtpmanager/gstrtpjitterbuffer.c:
276         (gst_jitter_buffer_sink_parse_caps),
277         (gst_rtp_jitter_buffer_flush_start),
278         (gst_rtp_jitter_buffer_flush_stop), (gst_rtp_jitter_buffer_chain),
279         (gst_rtp_jitter_buffer_loop):
280         Fix problem with using the output seqnum counter to check for input
281         seqnum discontinuities.
282         Improve gap detection and recovery, reset and flush the jitterbuffer on
283         seqnum restart. Fixes #556520.
284
285         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_insert):
286         Fix wrong G_LIKELY.
287
288 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
289
290         * configure.ac:
291         Commit 0.10.8.2 pre-release bump, that actually went out in a
292         tarball on 2008-10-11
293
294 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
295
296         * gst/rtpmanager/gstrtpsession.c:
297         (gst_rtp_session_event_send_rtcp_src), (create_send_rtcp_src):
298         Install event handler on the rtcp_src pad, make LATENCY event return
299         TRUE.
300
301 2008-10-16  Edward Hervey  <edward.hervey@collabora.co.uk>
302
303         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data):
304         Make sure the mpegpsdemux element creates valid newsegment events.
305         Fixes #556428
306
307 2008-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
308
309         patch by: Sebastian Pölsterl
310         
311         * gst/mpegdemux/mpegtspacketizer.c:
312         Fixes segfault in get_encoding_and_convert.
313         Fixes #556482
314
315 2008-10-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
316
317         patch by: Josep Torra
318
319         * gst/mpegdemux/gstmpegtsdemux.c:
320         Fixes a segfault in the adaptation buffer size strategy.
321         Fixes #556440
322
323 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
324
325         * gst/selector/gstinputselector.c: (gst_input_selector_event),
326         (gst_input_selector_query):
327         Gracefully handle the cases when we dont' have otherpad.
328         Fixes #556430
329
330 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
331
332         * gst/aiffparse/aiffparse.c: (plugin_init):
333         Fix debugging category initialization.
334         Fixes #556274   
335
336 2008-10-14  Jan Schmidt  <jan.schmidt@sun.com>
337
338         * ext/apexsink/gstapexsink.c:
339         Fix some more format string compiler warnings (from OS/X)
340
341 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
342
343         * ext/apexsink/gstapexraop.c: (gst_apexraop_connect),
344         (gst_apexraop_set_volume):
345         Fix format string compiler warnings.
346
347 2008-10-12  Jan Schmidt  <jan.schmidt@sun.com>
348
349         * sys/oss4/oss4-mixer.c:
350         * sys/oss4/oss4-sink.c:
351         * sys/oss4/oss4-source.c:
352         Add some spaces in translateable strings.
353         Fixes: #555969 #555968 #555965
354
355 2008-10-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
356
357         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag),
358         (gst_flv_demux_pull_header):
359         Fix regression of handling flow returns in pull mode.
360         Fixes bug #556003.
361
362 2008-10-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
363
364         * ext/Makefile.am:
365         Add apexsink to SUBDIRS. Fixes bug #555912.
366
367 2008-10-11  Jan Schmidt  <jan.schmidt@sun.com>
368
369         * tests/check/pipelines/metadata.c:
370         Make the metadata test not fail when jpegenc isn't available....
371         as it isn't here, because it's not in this module, and
372         therefore not in the plugin path when the check runs.
373
374 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
375
376         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
377         (gst_flv_parse_tag_video):
378         Use gst_pad_alloc_buffer_and_set_caps() to make sure we get
379         a buffer with caps that we can work with (i.e. the pad's caps).
380
381         Add non-keyframe video frames to the index too but without the
382         keyframe flag.
383
384         Add audio frames to the index only if we have no video stream.
385
386 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
387
388         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
389         (gst_flv_parse_tag_video):
390         Create pads from the pad templates, use fixed caps on them
391         and only activate them after the caps are set.
392
393 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
394
395         * configure.ac:
396         Disable flacparse for this release as it's too buggy.
397
398 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
399
400         * gst/flacparse/gstbaseparse.c (gst_base_parse_push_buffer),
401         (gst_base_parse_update_upstream_durations):
402         Fix compiler warning on OS/X about parameters not matching
403         the debug format string.
404
405 2008-10-09  Sebastian Dröge  <slomo@circular-chaos.org>
406
407         * gst/deinterlace2/tvtime/tomsmocomp.c:
408         (gst_deinterlace_method_tomsmocomp_class_init):
409         Fix unused variable compiler warning when not building
410         X86 assembly.
411
412 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
413
414         * gst/flv/gstflvdemux.c: (gst_flv_demux_loop):
415         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_timestamp):
416         * gst/flv/gstflvparse.h:
417         Get an approximate duration of the file by looking at the timestamp
418         of the last tag in pull mode. If we get (maybe better) duration from
419         metadata later we'll use that instead.
420
421 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
422
423         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_range),
424         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header):
425         Refactor _pull_range() logic with checks into a seperate function
426         to make things a bit more readable.
427
428 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
429
430         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain),
431         (gst_flv_demux_base_init):
432         Use gst_element_class_set_details_simple().
433
434         If we get GST_FLOW_NOT_LINKED in the parse loop but at least
435         one of the pads is linked continue the loop.
436
437 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
438
439         * ext/amrwb/gstamrwbenc.c:
440         * ext/amrwb/gstamrwbenc.h:
441           Pass the discont flag from the input buffer on to the output buffer in
442           the AMR encoder.
443
444 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
445
446         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate),
447         (gst_flv_parse_tag_audio), (gst_flv_parse_video_negotiate):
448         Correct caps for video codec id 5: It's On2 VP6 with alpha channel
449         which needs a different decoder and has different caps.
450
451         Add support for audio codec id 14, which is MP3 with 8kHz sampling
452         rate.
453
454         Fix endianness and signedness for raw audio codec ids.
455
456         Add support for alaw and mulaw audio.
457
458 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
459
460         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain):
461         Go out of the parse loop as soon as we get an error instead
462         of parsing until the GstAdapter is empty.
463
464         Add some explanations about the header and tag size.
465
466         Don't print synchronizing message if everything is fine.
467
468 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
469
470         * gst/flv/Makefile.am:
471         * gst/flv/gstflvdemux.c: (plugin_init):
472         * gst/flv/gstflvmux.c: (gst_flv_mux_base_init),
473         (gst_flv_mux_class_init), (gst_flv_mux_init),
474         (gst_flv_mux_finalize), (gst_flv_mux_reset),
475         (gst_flv_mux_handle_src_event), (gst_flv_mux_handle_sink_event),
476         (gst_flv_mux_video_pad_setcaps), (gst_flv_mux_audio_pad_setcaps),
477         (gst_flv_mux_request_new_pad), (gst_flv_mux_release_pad),
478         (gst_flv_mux_write_header), (gst_flv_mux_write_buffer),
479         (gst_flv_mux_collected), (gst_flv_mux_change_state):
480         * gst/flv/gstflvmux.h:
481         Add first version of a FLV muxer. The only missing feature is writing
482         of stream metadata.
483
484 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
485
486         * ext/amrwb/gstamrwbparse.c:
487         * ext/amrwb/gstamrwbparse.h:
488           Add flush seek handler. Taken from recent armnbparse changes.
489           Sync the code more and use #defines for HEADER.
490
491 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
492
493         * ext/amrwb/gstamrwbparse.c:
494         * ext/amrwb/gstamrwbparse.h:
495           Fix the duration query. Also set caps on the pads and buffers more
496           correctly. Taken from recent armnbparse changes.
497
498 2008-10-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
499
500         * gst/mpegdemux/gstmpegdemux.c:
501         * gst/mpegdemux/gstmpegtsdemux.c:
502         Add Fluendo to the Long Name.
503
504 2008-10-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
505
506         * configure.ac:
507         * gst-plugins-bad.spec.in:
508         * gst/mpegdemux/Makefile.am:
509         * gst/mpegdemux/flumpegdemux.c:
510         * gst/mpegdemux/gstmpegdesc.c:
511         * gst/mpegdemux/gstmpegdesc.h:
512         * gst/mpegdemux/mpegtspacketizer.c:
513         * gst/mpegdemux/mpegtspacketizer.h:
514         * gst/mpegdemux/mpegtsparse.c:
515         * gst/mpegdemux/mpegtsparse.h:
516         Move of mpegtsparse to mpegdemux.
517         Fixes #555193.
518
519 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
520
521         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data),
522         (gst_flups_demux_parse_pack_start):
523         Prevent a division by zero if last mux rate was zero.
524
525         If we're going to send a NEWSEGMENT event but the segment start
526         and the current buffer timestamp differ by more than a second we
527         will start the NEWSEGMENT at the buffer timestamp.
528
529         This fixes playback of the tv2-1_25.mpg file, which has 0 as first SCR
530         but the first PTS are around 1 hour and 40 minutes.
531
532         Fixes bug #553755.
533
534 2008-10-07  Jan Schmidt  <jan.schmidt@sun.com>
535
536         * ext/resindvd/resindvdsrc.c:
537         Fix next/prev chapter seeking at the beginning or end.
538         Use 64-bit scaling utility functions for converting MPEG
539         timestamps.
540
541 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
542
543         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
544
545         * gst/rtpmanager/gstrtpbin-marshal.list:
546         Add marshaller for new action signal.
547
548         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_get_internal_session),
549         (gst_rtp_bin_class_init):
550         * gst/rtpmanager/gstrtpbin.h:
551         Add action signal to retrieve the internal RTPSession object.
552
553         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
554         (gst_rtp_session_get_property), (gst_rtp_session_release_pad):
555         Add property to access the internal RTPSession object.
556
557         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
558         (check_collision):
559         * gst/rtpmanager/rtpsession.h:
560         Add action signal to retrieve an RTPSource object by SSRC. 
561         See #555396.
562
563 2008-10-07  Stefan Kost  <ensonic@users.sf.net>
564
565         * gst/selector/gstoutputselector.c:
566           Choose right pad for sending events. Fixes #555244
567
568 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
569
570         * gst/rtpmanager/gstrtpbin.c: (find_session_by_pad),
571         (free_session), (gst_rtp_bin_dispose), (remove_recv_rtp),
572         (remove_recv_rtcp), (remove_send_rtp), (remove_rtcp),
573         (gst_rtp_bin_release_pad):
574         Release pads of the session manager.
575         Start implementing releasing pads of gstrtpbin.
576
577         * gst/rtpmanager/gstrtpsession.c: (remove_recv_rtp_sink),
578         (remove_recv_rtcp_sink), (remove_send_rtp_sink),
579         (remove_send_rtcp_src), (gst_rtp_session_release_pad):
580         Implement releasing pads in gstrtpsession.
581
582 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
583
584         * gst/rtpmanager/gstrtpjitterbuffer.c:
585         (gst_jitter_buffer_sink_parse_caps):
586         Only update the seqnum-base when it was not already configured for the
587         streams.
588
589 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
590
591         * configure.ac
592         * ext/metadata/README:
593         * ext/metadata/metadataexif.c:
594         * ext/metadata/metadatatags.c:
595         * ext/metadata/metadatatags.h:
596           Start using core geo tags (bump req). Fix handling of location
597           references.
598
599         * tests/check/Makefile.am:
600           Sort blacklisted elements and remove moved ones. Add new test.
601
602         * tests/check/pipelines/metadata.c:
603           Add first tests for metadata element.
604
605         * tests/icles/metadata_editor.c:
606           Move free to correct place.
607
608 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
609
610         * tests/check/generic/states.c:
611           Stop test on state-change error. Should be applied on other modules if
612           we agree that it makes sense.
613
614 2008-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
615
616         * gst/mpegtsparse/mpegtsparse.c:
617         Actually copy the structure passed in when assigning it because
618         it gets freed straight after the function call.
619         Re: pat_info and pmt_info GstStructures.
620
621 2008-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
622
623         Patch by: Josep Torra
624
625         * gst/mpegdemux/gstmpegtsdemux.c:
626         Fix wrong firing of critical introduced by previous optimisation.
627
628 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
629
630         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad):
631         Warn and clamp to max bitrate for samplerate.
632         Fixes #550486.
633
634 2008-10-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
635
636         * gst/mpegtsparse/mpegtsparse.c:
637         Fix possible crash where pat is pointing to a freed structure.
638
639 2008-10-03  Stefan Kost  <ensonic@users.sf.net>
640
641         * ext/metadata/README:
642         * ext/metadata/metadataexif.c:
643         * ext/metadata/metadatatags.c:
644         * ext/metadata/metadatatags.h:
645           Use core gps tags.
646
647 2008-10-03  Stefan Kost  <ensonic@users.sf.net>
648
649         * ext/metadata/metadata_mapping.htm:
650         * ext/metadata/metadataxmp.c:
651         * ext/metadata/Makefile.am:
652           Add mapping of format and mime type to xmp.
653
654 2008-10-02  Stefan Kost  <ensonic@users.sf.net>
655
656         * ext/metadata/README:
657         * ext/metadata/metadataexif.c:
658         * ext/metadata/metadatatags.c:
659         * ext/metadata/metadatatags.h:
660           Reverting. Will need to wait for core 0.10.21 release.
661
662 2008-10-02  Stefan Kost  <ensonic@users.sf.net>
663
664         * ext/metadata/README:
665         * ext/metadata/metadataexif.c:
666         * ext/metadata/metadatatags.c:
667         * ext/metadata/metadatatags.h:
668           Use core gps tags.
669
670 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
671
672         * gst/flacparse/gstbaseparse.c: (gst_base_parse_finalize),
673         (gst_base_parse_class_init), (gst_base_parse_push_buffer),
674         (gst_base_parse_change_state), (gst_base_parse_set_index),
675         (gst_base_parse_get_index):
676         Add support for GstIndex.
677
678 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
679
680         * gst/flacparse/gstbaseparse.c: (gst_base_parse_class_init),
681         (gst_base_parse_push_buffer),
682         (gst_base_parse_update_upstream_durations),
683         (gst_base_parse_convert), (gst_base_parse_frame_in_segment):
684         * gst/flacparse/gstbaseparse.h:
685         Provide a vfunc for the subclass to decide whether a frame is inside
686         the segment or not and add a default implementation.
687
688         Fix approximate bitrate calculations.
689
690 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
691
692         * gst/flacparse/gstbaseparse.c: (gst_base_parse_class_init),
693         (gst_base_parse_init), (gst_base_parse_push_buffer),
694         (gst_base_parse_update_upstream_durations), (gst_base_parse_chain),
695         (gst_base_parse_loop), (gst_base_parse_activate),
696         (gst_base_parse_convert), (gst_base_parse_query):
697         Approximate the average bitrate, duration and size if possible
698         and add a default conversion function which uses this for
699         time<->byte conversions.
700
701         * gst/flacparse/gstflacparse.c: (gst_flac_parse_get_frame_size):
702         Fix parsing if upstream gives -1 as duration.
703
704 2008-09-30  Wim Taymans  <wim.taymans@collabora.co.uk>
705
706         * gst/rtpmanager/rtpsession.c: (on_new_ssrc), (on_ssrc_collision),
707         (on_ssrc_validated), (on_ssrc_active), (on_ssrc_sdes),
708         (on_bye_ssrc), (on_bye_timeout), (on_timeout), (on_sender_timeout):
709         Ref the rtpsource object before we release the session lock when we emit
710         the signals.
711
712 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
713
714         * sys/Makefile.am:
715         * sys/wasapi/Makefile.am:
716         * sys/wasapi/gstwasapi.c:
717         * sys/wasapi/gstwasapisink.c:
718         * sys/wasapi/gstwasapisink.h:
719         * sys/wasapi/gstwasapisrc.c:
720         * sys/wasapi/gstwasapisrc.h:
721         * sys/wasapi/gstwasapiutil.c:
722         * sys/wasapi/gstwasapiutil.h:
723         New plugin for audio capture and playback using Windows Audio Session
724         API (WASAPI) available with Vista and newer (#520901).
725
726         Comes with hardcoded caps and obviously needs lots of love. Haven't
727         had time to work on this code since it was written, was initially just
728         a quick experiment to play around with this new API.
729
730 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
731
732         * sys/dshowdecwrapper/gstdshowaudiodec.cpp
733           (AudioFakeSink.DoRenderSample):
734         Fix a couple of signed/unsigned comparison warnings.
735
736 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
737
738         * sys/dshowdecwrapper/gstdshowaudiodec.h (AudioFakeSink.AudioFakeSink):
739         * sys/dshowdecwrapper/gstdshowvideodec.h (VideoFakeSink.VideoFakeSink):
740         Use the _T() macro to support both Unicode and MBCS.
741
742 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
743
744         * ext/libmms/gstmms.c (plugin_init):
745         Fix return type of the GstURIHandler::get_type() implementation.
746
747 2008-09-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
748
749         * configure.ac:
750         * gst/flacparse/Makefile.am:
751         * gst/flacparse/gstbaseparse.c: (gst_base_parse_get_type),
752         (gst_base_parse_base_init), (gst_base_parse_base_finalize),
753         (gst_base_parse_finalize), (gst_base_parse_class_init),
754         (gst_base_parse_init), (gst_base_parse_check_frame),
755         (gst_base_parse_parse_frame), (gst_base_parse_bytepos_to_time),
756         (gst_base_parse_sink_event), (gst_base_parse_sink_eventfunc),
757         (gst_base_parse_src_event), (gst_base_parse_src_eventfunc),
758         (gst_base_parse_is_seekable), (gst_base_parse_push_buffer),
759         (gst_base_parse_handle_and_push_buffer), (gst_base_parse_drain),
760         (gst_base_parse_chain), (gst_base_parse_pull_range),
761         (gst_base_parse_loop), (gst_base_parse_sink_activate),
762         (gst_base_parse_activate), (gst_base_parse_sink_activate_push),
763         (gst_base_parse_sink_activate_pull), (gst_base_parse_set_duration),
764         (gst_base_parse_set_min_frame_size),
765         (gst_base_parse_get_querytypes), (gst_base_parse_query),
766         (gst_base_parse_handle_seek), (gst_base_parse_sink_setcaps):
767         * gst/flacparse/gstbaseparse.h:
768         * gst/flacparse/gstbitreader.c: (gst_bit_reader_new),
769         (gst_bit_reader_new_from_buffer), (gst_bit_reader_free),
770         (gst_bit_reader_init), (gst_bit_reader_init_from_buffer),
771         (gst_bit_reader_set_pos), (gst_bit_reader_get_pos),
772         (gst_bit_reader_get_remaining), (gst_bit_reader_skip),
773         (gst_bit_reader_skip_to_byte):
774         * gst/flacparse/gstbitreader.h:
775         * gst/flacparse/gstbytereader.c: (GDOUBLE_SWAP_LE_BE),
776         (GFLOAT_SWAP_LE_BE), (gst_byte_reader_new),
777         (gst_byte_reader_new_from_buffer), (gst_byte_reader_free),
778         (gst_byte_reader_init), (gst_byte_reader_init_from_buffer),
779         (gst_byte_reader_set_pos), (gst_byte_reader_get_pos),
780         (gst_byte_reader_get_remaining), (gst_byte_reader_skip),
781         (gst_byte_reader_get_uint8), (gst_byte_reader_get_int8),
782         (gst_byte_reader_peek_uint8), (gst_byte_reader_peek_int8),
783         (gst_byte_reader_get_uint24_le), (gst_byte_reader_get_uint24_be),
784         (gst_byte_reader_get_int24_le), (gst_byte_reader_get_int24_be),
785         (gst_byte_reader_peek_uint24_le), (gst_byte_reader_peek_uint24_be),
786         (gst_byte_reader_peek_int24_le), (gst_byte_reader_peek_int24_be):
787         * gst/flacparse/gstbytereader.h:
788         * gst/flacparse/gstflac.c: (plugin_init):
789         * gst/flacparse/gstflacparse.c: (gst_flac_parse_base_init),
790         (gst_flac_parse_class_init), (gst_flac_parse_init),
791         (gst_flac_parse_finalize), (gst_flac_parse_start),
792         (gst_flac_parse_stop), (gst_flac_parse_get_frame_size),
793         (gst_flac_parse_check_valid_frame),
794         (gst_flac_parse_handle_streaminfo),
795         (gst_flac_parse_handle_vorbiscomment),
796         (gst_flac_parse_handle_picture), (_value_array_append_buffer),
797         (gst_flac_parse_handle_headers), (gst_flac_parse_generate_headers),
798         (gst_flac_parse_parse_frame):
799         * gst/flacparse/gstflacparse.h:
800         Add FLAC parser, based on GstBaseParse. Also add the bit and byte reader
801         that will be added to libgstbase later.
802
803         The FLAC parser is currently not 100% bug free and fails to get the
804         correct frame size for some frames in some streams.
805
806 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
807
808         * ext/resindvd/gstmpegdemux.c:
809         * ext/resindvd/gstmpegdemux.h:
810         * ext/resindvd/resindvdbin.c:
811         * ext/resindvd/resindvdsrc.c:
812         * ext/resindvd/rsnstreamselector.c:
813         Add in Title/Chapter seeking, and simple but buggy audio
814         and subtitle stream selection.
815
816 2008-09-24  Michael Smith <msmith@songbirdnest.com>
817
818         * sys/dshowdecwrapper/gstdshowaudiodec.cpp:
819         * sys/dshowdecwrapper/gstdshowaudiodec.h:
820         * sys/dshowdecwrapper/gstdshowfakesrc.cpp:
821         * sys/dshowdecwrapper/gstdshowutil.cpp:
822         * sys/dshowdecwrapper/gstdshowutil.h:
823         * sys/dshowdecwrapper/gstdshowvideodec.cpp:
824         * sys/dshowdecwrapper/gstdshowvideodec.h:
825           Prefer known-good filters, create directly by GUID if possible,
826           fall back to creating highest-merit filter otherwise.
827           Fixes playback with random dshow filters installed in some
828           cases.
829
830 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
831
832         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_insert),
833         (rtp_jitter_buffer_get_sync):
834         * gst/rtpmanager/rtpsession.c: (on_sender_timeout),
835         (session_cleanup):
836         * gst/rtpmanager/rtpsource.c:
837         Fix some docs.
838
839 2008-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
840
841         Patch from: Josep Torra
842
843         * gst/mpegdemux/gstmpegtsdemux.c:
844         * gst/mpegdemux/gstmpegtsdemux.h:
845         Use a preallocated buffer per stream for PES packets sent on src pads.
846         Adaptively adjust buffer size appropriately.
847
848 2008-09-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
849
850         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start),
851           (gst_neonhttp_src_send_request_and_redirect):
852           Clean up the debug logging code and #ifdef mess a bit: whether or not
853           gstreamer debug messages should be output should not depend on an
854           element property; also, GST_ELEMENT_ERROR will leave a line in the log
855           already, so merge the more useful debug log messages with the less useful
856           error debug strings.
857
858 2008-09-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
859
860         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start):
861           Don't post LIBRARY_INIT errors where we should be posting
862           RESOURCE OPEN_READ errors. Fixes #552506.
863
864 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
865
866         * ext/jack/gstjackaudiosink.c: (jack_process_cb):
867         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
868         Fix compiler warnings on OS/X
869
870 2008-09-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
871
872         patch by: Michael Krufky
873
874         * sys/dvb/gstdvbsrc.c:
875         Add adapter_name for bus message in ATSC case. Fixes #552536.
876
877 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
878
879         * ext/celt/gstceltenc.h:
880           Help gtk-doc to parse this correctly.
881
882         * gst/pcapparse/gstpcapparse.c:
883           Add missing include.
884
885 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
886
887         * examples/Makefile.am:
888           Only built scaletempo example if we have gtk.
889
890 2008-09-13  Wim Taymans  <wim.taymans@collabora.co.uk>
891
892         * gst/rtpmanager/gstrtpbin.c: (create_session),
893         (gst_rtp_bin_associate), (gst_rtp_bin_sync_chain):
894         Do not try to adjust the offset of streams for which we have not yet
895         seen an SR packet. Avoids large ts-offsets in some cases.
896
897 2008-09-10  Michael Smith <msmith@songbirdnest.com>
898
899         * sys/dshowdecwrapper/Makefile.am:
900         * sys/dshowdecwrapper/gstdshowaudiodec.c:
901         * sys/dshowdecwrapper/gstdshowaudiodec.cpp:
902         * sys/dshowdecwrapper/gstdshowaudiodec.h:
903         * sys/dshowdecwrapper/gstdshowdecwrapper.c:
904         * sys/dshowdecwrapper/gstdshowdecwrapper.cpp:
905         * sys/dshowdecwrapper/gstdshowdecwrapper.h:
906         * sys/dshowdecwrapper/gstdshowfakesrc.cpp:
907         * sys/dshowdecwrapper/gstdshowfakesrc.h:
908         * sys/dshowdecwrapper/gstdshowutil.cpp:
909         * sys/dshowdecwrapper/gstdshowutil.h:
910         * sys/dshowdecwrapper/gstdshowvideodec.c:
911         * sys/dshowdecwrapper/gstdshowvideodec.cpp:
912         * sys/dshowdecwrapper/gstdshowvideodec.h:
913           Major rewrite of dshowdecwrapper. Converts code to
914           C++, moves to direct use of DirectShow base classes,
915           make a lot of code clearer, simplify, etc.
916           Fix decode of MP3 on Vista by working around an apparent
917           bug in the decoder.
918
919 2008-09-10  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
920
921         * sys/winks/gstksclock.c (gst_ks_clock_worker_thread_func,
922           gst_ks_clock_start):
923           Synchronize KS clock as a single-shot operation for now, there's not
924           much point in doing it periodically until we're actually using the
925           KS timestamps for anything else than just discarding old frames.
926         * sys/winks/gstksvideosrc.c (gst_ks_video_src_open_device):
927           Provide the GstClock when opening the device if we already have one.
928
929 2008-09-10  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
930
931         * sys/winks/gstksvideodevice.c (GST_DEBUG_IS_ENABLED, last_timestamp,
932           gst_ks_video_device_prepare_buffers, gst_ks_video_device_create_pin,
933           gst_ks_video_device_set_state, gst_ks_video_device_request_frame,
934           gst_ks_video_device_read_frame):
935           Guard against capturing old frames by keeping track of the last
936           timestamp and also zero-fill the buffers before each capture.
937           Only assign a master clock if the pin hasn't already got one.
938           Actually free buffers on the way down to avoid a huge memory leak,
939           as this was previously done when changing state to ACQUIRE downwards
940           and we now skip that state on the way down.
941           Add some debug.
942         * sys/winks/gstksvideosrc.c (DEFAULT_DEVICE_PATH, DEFAULT_DEVICE_NAME,
943           DEFAULT_DEVICE_INDEX, KS_WORKER_LOCK, KS_WORKER_UNLOCK,
944           KS_WORKER_WAIT, KS_WORKER_NOTIFY, KS_WORKER_WAIT_FOR_RESULT,
945           KS_WORKER_NOTIFY_RESULT, KS_WORKER_STATE_STARTING,
946           KS_WORKER_STATE_READY, KS_WORKER_STATE_STOPPING,
947           KS_WORKER_STATE_ERROR, KsWorkerState, device_path, device_name,
948           device_index, running, worker_thread, worker_lock,
949           worker_notify_cond, worker_result_cond, worker_state,
950           worker_pending_caps, worker_setcaps_result, worker_pending_run,
951           worker_run_result, gst_ks_video_src_reset,
952           gst_ks_video_src_apply_driver_quirks, gst_ks_video_src_open_device,
953           gst_ks_video_src_close_device, gst_ks_video_src_worker_func,
954           gst_ks_video_src_start_worker, gst_ks_video_src_stop_worker,
955           gst_ks_video_src_change_state, gst_ks_video_src_set_clock,
956           gst_ks_video_src_set_caps, gst_ks_video_src_timestamp_buffer,
957           gst_ks_video_src_create):
958           Remove ENABLE_CLOCK_DEBUG define, it's GST_LEVEL_DEBUG after all.
959           Get rid of PROP_ENSLAVE_KSCLOCK and always slave the ks clock to the
960           GStreamer clock, it doesn't seem to hurt and matches DirectShow's
961           behavior. As an added bonus we usually get PresentationTime set for
962           each frame, so we can expand on this later for smarter latency
963           reporting (by looking at the diff between the timestamp from the
964           driver and the time according to the GStreamer clock).
965           Use an internal worker thread for opening the device, setting caps,
966           changing its state and closing it. This way we're a lot more
967           compatible with drivers that rely on hacks to do video-effects
968           between the low-level NT API and the application. Ick.
969           Start the ks clock and set the pin to KSSTATE_RUN on the first
970           create() so that we'll hopefully get hold of the GStreamer clock
971           from the very beginning. This way there's no chance that the
972           timestamps will make a sudden jump in the beginning of the stream
973           when we're running with a clock.
974         * sys/winks/kshelpers.c (CHECK_OPTIONS_FLAG,
975           ks_options_flags_to_string):
976           Reorder the flags to match the headerfile order, and make the string
977           a bit more compact.
978         * sys/winks/ksvideohelpers.c (ks_video_probe_filter_for_caps):
979           Avoid leaking KSPROPERTY_PIN_DATARANGES.
980
981 2008-09-09  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
982
983         * configure.ac:
984         * ext/Makefile.am:
985         * ext/jp2k/Makefile.am:
986         * ext/jp2k/gstjasperdec.c: (gst_jasper_dec_base_init),
987         (gst_jasper_dec_class_init), (gst_jasper_dec_init),
988         (gst_jasper_dec_reset), (gst_jasper_dec_sink_setcaps),
989         (gst_jasper_dec_negotiate), (gst_jasper_dec_get_picture),
990         (gst_jasper_dec_chain), (gst_jasper_dec_set_property),
991         (gst_jasper_dec_get_property), (gst_jasper_dec_change_state),
992         (plugin_init):
993         * ext/jp2k/gstjasperdec.h:
994         Add jp2k plugin.  Fixes #550657.
995
996 2008-09-09  Edward Hervey  <edward.hervey@collabora.co.uk>
997
998         * gst/mpegdemux/flumpegdemux.c: (plugin_init):
999         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_sync_get_type),
1000         (gst_flups_demux_get_type), (gst_flups_demux_plugin_init):
1001         * gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_get_type),
1002         (gst_fluts_demux_plugin_init):
1003         Fix conflicting public names in new mpeg demuxers.
1004         Fixes #550468
1005
1006 2008-09-08  Michael Smith <msmith@songbirdnest.com>
1007
1008         * gst/aiffparse/aiffparse.c:
1009           Support chunks in AIFF in any order in pull mode, and any order so
1010           long as we get COMM before the actual data (SSND) in push mode.
1011           Fixes playback of AIFC files.
1012
1013 2008-09-08  Wim Taymans  <wim.taymans@collabora.co.uk>
1014
1015         * gst/selector/gstinputselector.c: (gst_selector_pad_reset),
1016         (gst_input_selector_reset), (gst_input_selector_change_state):
1017         Reset the selector state when going to READY.
1018
1019 2008-09-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1020
1021         * gst/rtpmanager/gstrtpbin.c: (on_sender_timeout),
1022         (create_session), (gst_rtp_bin_associate),
1023         (gst_rtp_bin_sync_chain), (gst_rtp_bin_class_init),
1024         (gst_rtp_bin_request_new_pad):
1025         * gst/rtpmanager/gstrtpbin.h:
1026         Add signal to notify listeners when a sender becomes a receiver.
1027         Tweak lip-sync code, don't store our own copy of the ts-offset of the
1028         jitterbuffer, don't adjust sync if the change is less than 4msec.
1029         Get the RTP timestamp <-> GStreamer timestamp relation directly from
1030         the jitterbuffer instead of our inaccurate version from the source.
1031
1032         * gst/rtpmanager/gstrtpjitterbuffer.c:
1033         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop),
1034         (gst_rtp_jitter_buffer_get_sync):
1035         * gst/rtpmanager/gstrtpjitterbuffer.h:
1036         Add G_LIKELY macros, use global defines for max packet reorder and
1037         dropouts.
1038         Reset the jitterbuffer clock skew detection when packets seqnums are
1039         changed unexpectedly.
1040
1041         * gst/rtpmanager/gstrtpsession.c: (on_sender_timeout),
1042         (gst_rtp_session_class_init), (gst_rtp_session_init):
1043         * gst/rtpmanager/gstrtpsession.h:
1044         Add sender timeout signal.
1045
1046         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_reset_skew),
1047         (calculate_skew), (rtp_jitter_buffer_insert),
1048         (rtp_jitter_buffer_get_sync):
1049         * gst/rtpmanager/rtpjitterbuffer.h:
1050         Add some G_LIKELY macros.
1051         Keep track of the extended RTP timestamp so that we can report the RTP
1052         timestamp <-> GStreamer timestamp relation for lip-sync.
1053         Remove server timestamp gap detection code, the server can sometimes
1054         make a huge gap in timestamps (talk spurts,...) see #549774.
1055         Detect timetamp weirdness instead by observing the sender/receiver
1056         timestamp relation and resync if it changes more than 1 second.
1057         Add method to report about the current rtp <-> gst timestamp relation
1058         which is needed for lip-sync.
1059
1060         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
1061         (on_sender_timeout), (check_collision), (rtp_session_process_sr),
1062         (session_cleanup):
1063         * gst/rtpmanager/rtpsession.h:
1064         Add sender timeout signal.
1065         Remove inaccurate rtp <-> gst timestamp relation code, the
1066         jitterbuffer can now do an accurate reporting about this.
1067
1068         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
1069         (rtp_source_update_caps), (calculate_jitter),
1070         (rtp_source_process_rtp):
1071         * gst/rtpmanager/rtpsource.h:
1072         Remove inaccurate rtp <-> gst timestamp relation code.
1073
1074         * gst/rtpmanager/rtpstats.h:
1075         Define global max-reorder and max-dropout constants for use in various
1076         subsystems.
1077
1078 2008-09-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1079
1080         patch by: Sebastian Pölsterl
1081
1082         * sys/dvb/gstdvbsrc.c:
1083         Add DVB Adapter name to structure sent over bus.
1084
1085 2008-09-02  Edward Hervey  <edward.hervey@collabora.co.uk>
1086
1087         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_parse_pack_start):
1088         * gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_data_cb):
1089         Fix build on macosx.
1090
1091 2008-09-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1092
1093         * configure.ac:
1094         * gst/mpegdemux/Makefile.am:
1095         * gst/mpegdemux/flumpegdemux.c:
1096         * gst/mpegdemux/flutspatinfo.c:
1097         * gst/mpegdemux/flutspatinfo.h:
1098         * gst/mpegdemux/flutspmtinfo.c:
1099         * gst/mpegdemux/flutspmtinfo.h:
1100         * gst/mpegdemux/flutspmtstreaminfo.c:
1101         * gst/mpegdemux/flutspmtstreaminfo.h:
1102         * gst/mpegdemux/gstmpegdefs.h:
1103         * gst/mpegdemux/gstmpegdemux.c:
1104         * gst/mpegdemux/gstmpegdemux.h:
1105         * gst/mpegdemux/gstmpegdesc.c:
1106         * gst/mpegdemux/gstmpegdesc.h:
1107         * gst/mpegdemux/gstmpegtsdemux.c:
1108         * gst/mpegdemux/gstmpegtsdemux.h:
1109         * gst/mpegdemux/gstpesfilter.c:
1110         * gst/mpegdemux/gstpesfilter.h:
1111         * gst/mpegdemux/gstsectionfilter.c:
1112         * gst/mpegdemux/gstsectionfilter.h:
1113         Add Fluendo MPEG PS and TS demuxers to gst-plugins-bad. This
1114         is now dual licensed MPL and LGPL.
1115
1116 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1117
1118         * gst/mpegtsmux/mpegtsmux.c: (new_packet_cb):
1119         Set caps on outgoing buffers.
1120
1121 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1122
1123         * ext/resindvd/plugin.c: (plugin_init):
1124         * ext/resindvd/resindvdsrc.c:
1125         * ext/twolame/gsttwolame.c: (plugin_init):
1126         * gst/aiffparse/aiffparse.c: (plugin_init):
1127           Enable/fix up translations for these plugins.
1128
1129         * po/LINGUAS:
1130           Add 'ca' to LINGUAS.
1131
1132         * po/POTFILES.in:
1133         * po/POTFILES.skip:
1134           Add more files for translation and more files which tools
1135           should skip.
1136
1137 2008-09-02  Edward Hervey  <edward.hervey@collabora.co.uk>
1138
1139         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_write_ts_header):
1140         Fix build on macosx.
1141
1142 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1143
1144         * gst/mpegtsmux/mpegtsmux_aac.c: (mpegtsmux_prepare_aac):
1145         Allocate a fixed size buffer on the stack instead of using malloc().
1146
1147         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_new), (tsmux_free),
1148         (tsmux_program_new), (tsmux_program_free):
1149         * gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
1150         (tsmux_stream_free), (tsmux_stream_consume),
1151         (tsmux_stream_add_data):
1152         Use GSlice.
1153
1154 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1155
1156         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_create_stream):
1157         Add support for muxing MPEG4 video.
1158
1159 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
1160
1161         * gst/mpegtsmux/tsmux/tsmux.h:
1162         * gst/mpegtsmux/tsmux/tsmuxstream.h:
1163         Fix build of mpegtsmux.
1164         
1165 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1166
1167         * configure.ac:
1168         * gst/mpegtsmux/Makefile.am:
1169         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_base_init),
1170         (mpegtsmux_class_init), (mpegtsmux_init), (mpegtsmux_dispose),
1171         (gst_mpegtsmux_set_property), (gst_mpegtsmux_get_property),
1172         (release_buffer_cb), (mpegtsmux_create_stream),
1173         (mpegtsmux_create_streams), (mpegtsmux_choose_best_stream),
1174         (mpegtsmux_collected), (mpegtsmux_request_new_pad),
1175         (mpegtsmux_release_pad), (new_packet_cb),
1176         (mpegtsdemux_prepare_srcpad), (mpegtsmux_change_state),
1177         (plugin_init):
1178         * gst/mpegtsmux/mpegtsmux.h:
1179         * gst/mpegtsmux/mpegtsmux_aac.c: (mpegtsmux_prepare_aac):
1180         * gst/mpegtsmux/mpegtsmux_aac.h:
1181         * gst/mpegtsmux/mpegtsmux_h264.c: (mpegtsmux_prepare_h264):
1182         * gst/mpegtsmux/mpegtsmux_h264.h:
1183         * gst/mpegtsmux/tsmux/Makefile.am:
1184         * gst/mpegtsmux/tsmux/crc.h:
1185         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_new), (tsmux_set_write_func),
1186         (tsmux_set_pat_frequency), (tsmux_get_pat_frequency), (tsmux_free),
1187         (tsmux_program_new), (tsmux_set_pmt_frequency),
1188         (tsmux_get_pmt_frequency), (tsmux_program_add_stream),
1189         (tsmux_program_set_pcr_stream), (tsmux_get_new_pid),
1190         (tsmux_create_stream), (tsmux_find_stream), (tsmux_packet_out),
1191         (tsmux_write_adaptation_field), (tsmux_write_ts_header),
1192         (tsmux_write_stream_packet), (tsmux_program_free),
1193         (tsmux_write_section), (tsmux_write_section_hdr),
1194         (tsmux_write_pat), (tsmux_write_pmt):
1195         * gst/mpegtsmux/tsmux/tsmux.h:
1196         * gst/mpegtsmux/tsmux/tsmuxcommon.h:
1197         * gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
1198         (tsmux_stream_get_pid), (tsmux_stream_free),
1199         (tsmux_stream_set_buffer_release_func), (tsmux_stream_consume),
1200         (tsmux_stream_at_pes_start), (tsmux_stream_bytes_avail),
1201         (tsmux_stream_bytes_in_buffer), (tsmux_stream_get_data),
1202         (tsmux_stream_pes_header_length),
1203         (tsmux_stream_find_pts_dts_within),
1204         (tsmux_stream_write_pes_header), (tsmux_stream_add_data),
1205         (tsmux_stream_get_es_descrs), (tsmux_stream_pcr_ref),
1206         (tsmux_stream_pcr_unref), (tsmux_stream_is_pcr),
1207         (tsmux_stream_get_pts):
1208         * gst/mpegtsmux/tsmux/tsmuxstream.h:
1209         Add Fluendo MPEG-TS muxer and libtsmux to gst-plugins-bad. This
1210         is renamed to mpegtsmux to prevent conflicts. Also all relevant
1211         informations about copyright and license are added to the top of
1212         every file but apart from that no changes compared to the latest
1213         SVN versions happened.
1214
1215 2008-09-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1216
1217         * gst/selector/gstinputselector.c: (gst_input_selector_init),
1218         (gst_input_selector_event), (gst_input_selector_query):
1219         Reuse the get_linked_pads for both source and sinkpads because they are
1220         the same.
1221         Implement a custum event handler and get the internally linked pad
1222         directly instead of relying on the default (slower) implementation.
1223
1224 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1225
1226         * ext/celt/gstceltdec.c: (celt_dec_chain_parse_data):
1227         Correctly take the granulepos from upstream if possible and
1228         correctly handle the granulepos in various calculations: the
1229         granulepos is the sample number of the _last_ sample in a frame, not
1230         the first. 
1231
1232         * ext/celt/gstceltenc.c: (gst_celt_enc_sinkevent),
1233         (gst_celt_enc_encode), (gst_celt_enc_chain),
1234         (gst_celt_enc_change_state):
1235         * ext/celt/gstceltenc.h:
1236         Handle non-zero start timestamps in the encoder and detect/handle
1237         stream discontinuities. Fixes bug #547075.
1238
1239 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1240
1241         Patch by: Rov Juvano <rovjuvano at users dot sourceforge dot net>
1242
1243         * configure.ac:
1244         * docs/plugins/Makefile.am:
1245         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1246         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1247         * docs/plugins/inspect/plugin-scaletempo.xml:
1248         * examples/scaletempo/Makefile.am:
1249         * examples/scaletempo/demo-gui.c: (pop_status_bar),
1250         (status_bar_printf), (demo_gui_seek_bar_format), (update_position),
1251         (demo_gui_seek_bar_change), (demo_gui_do_change_rate),
1252         (demo_gui_do_set_rate), (demo_gui_do_rate_entered),
1253         (demo_gui_do_toggle_advanced), (demo_gui_do_toggle_disabled),
1254         (demo_gui_do_seek), (demo_gui_do_play), (demo_gui_do_pause),
1255         (demo_gui_do_play_pause), (demo_gui_do_open_file),
1256         (demo_gui_do_playlist_prev), (demo_gui_do_playlist_next),
1257         (demo_gui_do_about_dialog), (demo_gui_do_quit),
1258         (demo_gui_request_set_stride), (demo_gui_request_set_overlap),
1259         (demo_gui_request_set_search), (demo_gui_rate_changed),
1260         (demo_gui_playing_started), (demo_gui_playing_paused),
1261         (demo_gui_playing_ended), (demo_gui_player_errored),
1262         (demo_gui_stride_changed), (demo_gui_overlap_changed),
1263         (demo_gui_search_changed), (demo_gui_set_player_func),
1264         (demo_gui_set_playlist_func), (build_gvalue_array),
1265         (create_action), (demo_gui_show_func), (demo_gui_set_player),
1266         (demo_gui_set_playlist), (demo_gui_show), (demo_gui_get_property),
1267         (demo_gui_set_property), (demo_gui_init), (demo_gui_class_init),
1268         (demo_gui_get_type):
1269         * examples/scaletempo/demo-gui.h:
1270         * examples/scaletempo/demo-main.c: (handle_error_message),
1271         (handle_quit), (main):
1272         * examples/scaletempo/demo-player.c: (no_pipeline),
1273         (demo_player_event_listener), (demo_player_state_changed_cb),
1274         (demo_player_eos_cb), (demo_player_build_pipeline), (_set_rate),
1275         (demo_player_scale_rate_func), (demo_player_set_rate_func),
1276         (_set_state_and_wait), (demo_player_load_uri_func),
1277         (demo_player_play_func), (demo_player_pause_func), (_seek_to),
1278         (demo_player_seek_by_func), (demo_player_seek_to_func),
1279         (demo_player_get_position_func), (demo_player_get_duration_func),
1280         (demo_player_scale_rate), (demo_player_set_rate),
1281         (demo_player_load_uri), (demo_player_play), (demo_player_pause),
1282         (demo_player_seek_by), (demo_player_seek_to),
1283         (demo_player_get_position), (demo_player_get_duration),
1284         (demo_player_get_property), (demo_player_set_property),
1285         (demo_player_init), (demo_player_class_init),
1286         (demo_player_get_type):
1287         * examples/scaletempo/demo-player.h:
1288         * gst/scaletempo/Makefile.am:
1289         * gst/scaletempo/gstscaletempo.c: (best_overlap_offset_float),
1290         (best_overlap_offset_s16), (output_overlap_float),
1291         (output_overlap_s16), (fill_queue), (reinit_buffers),
1292         (gst_scaletempo_transform), (gst_scaletempo_transform_size),
1293         (gst_scaletempo_sink_event), (gst_scaletempo_set_caps),
1294         (gst_scaletempo_get_property), (gst_scaletempo_set_property),
1295         (gst_scaletempo_base_init), (gst_scaletempo_class_init),
1296         (gst_scaletempo_init):
1297         * gst/scaletempo/gstscaletempo.h:
1298         * gst/scaletempo/gstscaletempoplugin.c: (plugin_init):
1299         Add scaletempo plugin, which allows to scale the speed of audio without
1300         changing the pitch by handling seeks with a rate!=1.0.
1301         Integrate it into the docs and add the example application for it.
1302         Fixes bug #537700.
1303
1304 2008-08-30  David Schleef  <ds@schleef.org>
1305
1306         * ext/dirac/gstdiracenc.cc: Fix some memleaks.
1307
1308 2008-08-29  David Schleef  <ds@schleef.org>
1309
1310         * ext/dirac/gstdiracenc.cc: Fix EOS handling.  Clean up at
1311           object disposal.  Handle 4:2:2 and 4:4:4 video.
1312
1313 2008-08-29  Jan Schmidt  <Jan.Schmidt@sun.com>
1314
1315         * ext/resindvd/resindvdbin.c:
1316         Fix compiler warning on Forte.
1317
1318 2008-08-29  Jan Schmidt  <Jan.Schmidt@sun.com>
1319
1320         * configure.ac:
1321         Commit FIONREAD check, needed for the dccp src.
1322
1323 2008-08-29  Edward Hervey  <edward.hervey@collabora.co.uk>
1324
1325         * ext/faac/gstfaac.c: (gst_faac_init), (gst_faac_sink_event),
1326         (gst_faac_chain), (gst_faac_change_state):
1327         * ext/faac/gstfaac.h:
1328         Add code for calculating proper timestamp/duration for the trailing
1329         encoded buffers that faac will output when receiving EOS.
1330
1331 2008-08-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1332
1333         * configure.ac:
1334         Fix CFLAGS and LIBS for the apexsink.
1335
1336 2008-08-28  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1337
1338         * sys/winks/ksvideohelpers.c (ks_video_media_type_free):
1339           Avoid leaking the KSDATARANGE member of each KsVideoMediaType.
1340
1341 2008-08-28  Jan Schmidt  <Jan.Schmidt@sun.com>
1342
1343         * gst/dccp/gstdccp.c:
1344         * gst/dccp/gstdccpclientsrc.c:
1345         Fix compilation on Solaris by including filio.h as needed.
1346
1347         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
1348         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
1349         Fix compilation with Forte - apparently it hates concatenating a
1350         macro argument that starts with an underscore??
1351
1352 2008-08-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1353
1354         Patch by: Jérémie Bernard <gremimail at gmail dot com>
1355
1356         * configure.ac:
1357         * ext/apexsink/LGPL-3.0.txt:
1358         * ext/apexsink/Makefile.am:
1359         * ext/apexsink/gstapexplugin.c: (plugin_init):
1360         * ext/apexsink/gstapexraop.c: (g_strdel), (gst_apexraop_send),
1361         (gst_apexraop_recv), (gst_apexraop_new), (gst_apexraop_free),
1362         (gst_apexraop_set_host), (gst_apexraop_get_host),
1363         (gst_apexraop_set_port), (gst_apexraop_get_port),
1364         (gst_apexraop_set_useragent), (gst_apexraop_get_useragent),
1365         (gst_apexraop_connect), (gst_apexraop_get_jacktype),
1366         (gst_apexraop_get_jackstatus), (gst_apexraop_close),
1367         (gst_apexraop_set_volume), (gst_apexraop_write_bits),
1368         (gst_apexraop_write), (gst_apexraop_flush):
1369         * ext/apexsink/gstapexraop.h:
1370         * ext/apexsink/gstapexsink.c: (gst_apexsink_jackstatus_get_type),
1371         (gst_apexsink_jacktype_get_type), (gst_apexsink_interfaces_init),
1372         (gst_apexsink_implements_interface_init),
1373         (gst_apexsink_mixer_interface_init),
1374         (gst_apexsink_interface_supported),
1375         (gst_apexsink_mixer_list_tracks), (gst_apexsink_mixer_set_volume),
1376         (gst_apexsink_mixer_get_volume), (gst_apexsink_base_init),
1377         (gst_apexsink_class_init), (gst_apexsink_init),
1378         (gst_apexsink_set_property), (gst_apexsink_get_property),
1379         (gst_apexsink_finalise), (gst_apexsink_open),
1380         (gst_apexsink_prepare), (gst_apexsink_write),
1381         (gst_apexsink_unprepare), (gst_apexsink_delay),
1382         (gst_apexsink_reset), (gst_apexsink_close):
1383         * ext/apexsink/gstapexsink.h:
1384         Add apexsink for audio output to Apple AirPort Express Wireless
1385         devices. Fixes bug #542510.
1386
1387 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1388
1389         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_send_rtcp),
1390         (gst_rtp_session_event_send_rtp_sink):
1391         Send EOS when the session object instructs us to.
1392
1393         * gst/rtpmanager/rtpsession.c: (rtp_session_on_timeout):
1394         * gst/rtpmanager/rtpsession.h:
1395         Make it possible for the session manager to instruct us to send EOS. We
1396         currently will EOS when the session is a sender and when the sender part
1397         goes EOS. This is not entirely correct behaviour because the session
1398         could still participate as a receiver.
1399         Fixes #549409.
1400
1401 2008-08-27  Michael Smith <msmith@songbirdnest.com>
1402
1403         * gst/aiffparse/aiffparse.c:
1404           Read size of chunks preceeding the audio data with the
1405           correct endianness. Fixes playback of some files.
1406           Fixes #538500
1407
1408 2008-08-27  Michael Smith <msmith@songbirdnest.com>
1409
1410         * configure.ac:
1411         * gst/aiffparse/Makefile.am:
1412         * gst/aiffparse/aiffparse.c:
1413         * gst/aiffparse/aiffparse.h:
1414           Add an AIFF parsing element, heavily based on wavparse.
1415
1416 2008-08-27  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1417
1418         * sys/winks/gstksvideodevice.c (gst_ks_video_device_class_init,
1419           gst_ks_video_device_set_state):
1420           Don't set the pin state to KSSTATE_RUN from the streaming thread.
1421           Skip KSSTATE_ACQUIRE when changing pin state downwards.
1422           Be nice and specify G_PARAM_STATIC_STRINGS.
1423           Remove unused finalize method.
1424
1425         * sys/winks/gstksvideosrc.c (DEFAULT_ENABLE_QUIRKS, PROP_ENABLE_QUIRKS,
1426           enable_quirks, gst_ks_video_src_class_init, gst_ks_video_src_init,
1427           gst_ks_video_src_finalize, gst_ks_video_src_get_property,
1428           gst_ks_video_src_set_property, gst_ks_video_src_reset,
1429           gst_ks_video_src_apply_driver_quirks, gst_ks_video_src_change_state,
1430           gst_ks_video_src_set_caps):
1431           First driver quirk: work around Logitech's hostile driver software to
1432           improve stability and performance. See comments for details.
1433           Provide a property to disable driver quirks (enabled by default).
1434           Be nice and specify G_PARAM_STATIC_STRINGS.
1435           Remove unused dispose method.
1436           Tweak include order.
1437
1438 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1439
1440         * gst/selector/gstinputselector.c: (gst_input_selector_init),
1441         (gst_input_selector_query):
1442         Implement the LATENCY query in a better way by taking the latency of all
1443         sinkpads and taking the min/max instead of just taking a random pad.
1444
1445 2008-08-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1446
1447         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1448         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
1449         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
1450         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
1451         Unroll the loop to handle two bytes at once. This should give
1452         a small speedup and makes it possible to handle chroma and luma
1453         different which is needed later.
1454
1455 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1456
1457         * gst/dccp/gstdccpserversink.c:
1458         * gst/dccp/gstdccpserversink.h:
1459         Don't put globals only used by one '.c' file in a header !
1460         Declare it as static, fixes build on macosx.
1461
1462 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1463
1464         * gst/dccp/gstdccp.c: (gst_dccp_send_buffer):
1465         Whoops, that was one fix too much :)
1466
1467 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1468
1469         * gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
1470         (gst_dccp_send_buffer), (gst_dccp_set_sock_windowsize):
1471         size_t's size varies by platform/architecture. Use glib convenience
1472         macro instead. Fixes build on macosx.
1473         Remove ending '\n' in debug statements.
1474
1475 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1476
1477         * gst/pcapparse/gstpcapparse.c: (gst_pcap_parse_class_init):
1478         Remove unused code and fix includes.
1479
1480 2008-08-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1481
1482         * gst/deinterlace2/gstdeinterlace2.c:
1483         (gst_deinterlace_method_class_init):
1484         * gst/deinterlace2/gstdeinterlace2.h:
1485         * gst/deinterlace2/tvtime/tomsmocomp.c:
1486         (gst_deinterlace_method_tomsmocomp_class_init):
1487         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1488         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
1489         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
1490         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
1491         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
1492         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
1493         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
1494         First part of the C implementation of the tomsmocomp deinterlacing
1495         algorithm. This only supports search-effort=0 currently, is painfully
1496         slow and needs some cleanup later when all search-effort settings
1497         are implemented in C.
1498
1499 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1500
1501         * configure.ac:
1502         * sys/Makefile.am:
1503         * sys/winks/Makefile.am:
1504         * sys/winks/gstksclock.c:
1505         * sys/winks/gstksclock.h:
1506         * sys/winks/gstksvideodevice.c:
1507         * sys/winks/gstksvideodevice.h:
1508         * sys/winks/gstksvideosrc.c:
1509         * sys/winks/gstksvideosrc.h:
1510         * sys/winks/kshelpers.c:
1511         * sys/winks/kshelpers.h:
1512         * sys/winks/ksvideohelpers.c:
1513         * sys/winks/ksvideohelpers.h:
1514           New plugin for low-latency video capture on Windows (#519935).
1515
1516           Uses Kernel Streaming, the lowest level API for doing video capture
1517           on Windows (more or less just raw ioctls).
1518
1519 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1520
1521         * gst/pcapparse/gstpcapparse.c:
1522         * sys/winscreencap/gstdx9screencapsrc.c:
1523         * sys/winscreencap/gstgdiscreencapsrc.c:
1524           Added documentation blobs. Thanks to Stefan for noticing!
1525
1526 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1527
1528         * configure.ac:
1529         * gst/pcapparse/Makefile.am:
1530         * gst/pcapparse/gstpcapparse.c:
1531         * gst/pcapparse/gstpcapparse.h:
1532           New plugin: pcapparse (#520899).
1533
1534 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1535
1536         patch by: Haakon Sporsheim <hakon.sporsheim@tandberg.com>
1537
1538         * configure.ac:
1539         * sys/Makefile.am:
1540         * sys/winscreencap/Makefile.am:
1541         * sys/winscreencap/gstdx9screencapsrc.c:
1542         * sys/winscreencap/gstdx9screencapsrc.h:
1543         * sys/winscreencap/gstgdiscreencapsrc.c:
1544         * sys/winscreencap/gstgdiscreencapsrc.h:
1545         * sys/winscreencap/gstwinscreencap.c:
1546         * sys/winscreencap/gstwinscreencap.h:
1547           New plugin: winscreencap (#463941).
1548
1549 2008-08-22  Michael Smith <msmith@songbirdnest.com>
1550
1551         * sys/dshowdecwrapper/gstdshowaudiodec.c:
1552           Flip mpeg1/mpeg2 arrays for mpeg audio. Detect which type the audio
1553           is correctly, instead of backwards. No functional changes, since this
1554           mistake was completely self-consistent.
1555
1556 2008-08-22  Stefan Kost  <ensonic@users.sf.net>
1557
1558         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1559           Add, but commented out xml/element-dc1394.xml. Its documented, but
1560           I can't get it to be build.
1561
1562         * ext/celt/gstceltdec.c:
1563         * ext/celt/gstceltenc.c:
1564           Fix doc warnings and reformat the doc block.
1565
1566 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
1567
1568         patch by: Leandro Melo de Sales <leandroal@gmail.com>
1569
1570         * configure.ac:
1571         * docs/plugins/Makefile.am:
1572         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1573         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1574         * docs/plugins/gst-plugins-bad-plugins.args:
1575         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1576         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1577         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1578         * docs/plugins/gst-plugins-bad-plugins.signals:
1579         * docs/plugins/inspect/plugin-dccp.xml:
1580         * gst/dccp/Makefile.am:
1581         * gst/dccp/gstdccp.c:
1582         * gst/dccp/gstdccp.h:
1583         * gst/dccp/gstdccpclientsink.c:
1584         * gst/dccp/gstdccpclientsink.h:
1585         * gst/dccp/gstdccpclientsrc.c:
1586         * gst/dccp/gstdccpclientsrc.h:
1587         * gst/dccp/gstdccpplugin.c:
1588         * gst/dccp/gstdccpserversink.c:
1589         * gst/dccp/gstdccpserversink.h:
1590         * gst/dccp/gstdccpserversrc.c:
1591         * gst/dccp/gstdccpserversrc.h:
1592         * tests/icles/dccp/README:
1593         * tests/icles/dccp/call/README:
1594         * tests/icles/dccp/call/DCCPClient.c:
1595         * tests/icles/dccp/call/DCCPServer.c:
1596         * tests/icles/dccp/file/DCCPClientSaveFile.c:
1597         * tests/icles/dccp/file/DCCPServerSendFile.c:
1598         * tests/icles/dccp/mic/DCCPClientPlayMic.c:
1599         * tests/icles/dccp/mic/DCCPServerMic.c:
1600         * tests/icles/dccp/mp3/DCCPClientPlayMP3.c:
1601         * tests/icles/dccp/mp3/DCCPServerSendMP3.c:
1602         * tests/icles/dccp/mp3Speex/DCCPClientPlaySpeexMP3.c:
1603         * tests/icles/dccp/mp3Speex/DCCPServerSendSpeexMP3.c:
1604         * tests/icles/dccp/mp3Stream/DCCPClientPlayMP3Stream.c:
1605         * tests/icles/dccp/mp3Stream/DCCPServerSendMP3Stream.c:
1606           Add dccp plugin. Fixes #542390.
1607
1608 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
1609
1610         * configure.ac:
1611           Remove bits that presumably weren't supposed to be committed.
1612
1613 2008-08-20  Michael Smith <msmith@songbirdnest.com>
1614
1615         * configure.ac:
1616         * sys/Makefile.am:
1617         * sys/acmenc/Makefile.am:
1618         * sys/acmenc/acmenc.c:
1619           Add new windows ACM encoder wrapper.
1620
1621 2008-08-18  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1622
1623         patch by: Michael Krufky
1624
1625         * sys/dvb/gstdvbsrc.c:
1626         * sys/dvb/parsechannels.c:
1627         Add ATSC tunning and channels.conf parsing support.
1628         Fixes #537455
1629
1630 2008-08-13  Michael Smith <msmith@songbirdnest.com>
1631
1632         * sys/dshowdecwrapper/gstdshowaudiodec.c:
1633         * sys/dshowdecwrapper/gstdshowaudiodec.h:
1634         * sys/dshowdecwrapper/gstdshowvideodec.c:
1635         * sys/dshowdecwrapper/gstdshowvideodec.h:
1636         * sys/dshowvideosink/dshowvideosink.cpp:
1637         * sys/dshowvideosink/dshowvideosink.h:
1638           Initialise COM with default flags.
1639           Only deinitialise if the initialisation was successful.
1640
1641 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1642
1643         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
1644         (gst_rtp_bin_sync_chain), (new_ssrc_pad_found):
1645         Reset rtp timestamp interpollation when we detect a gap when the
1646         clock_base changed.
1647         Don't try to adjust the ts-offset when it's too big (> 3seconds)
1648
1649         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_set_ssrc):
1650         * gst/rtpmanager/gstrtpsession.h:
1651         Add method to set session SSRC.
1652
1653         * gst/rtpmanager/rtpsession.c: (check_collision),
1654         (rtp_session_set_internal_ssrc), (rtp_session_get_internal_ssrc),
1655         (rtp_session_on_timeout):
1656         * gst/rtpmanager/rtpsession.h:
1657         Added debugging for the collision checks.
1658         Add method to change the internal SSRC of the session.
1659
1660         * gst/rtpmanager/rtpsource.c: (rtp_source_process_rtp):
1661         Reset the clock base when we detect large jumps in the seqnums.
1662
1663 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1664
1665         * ext/x264/gstx264enc.c: (gst_x264_enc_reset),
1666         (gst_x264_enc_chain), (gst_x264_enc_encode_frame):
1667         * ext/x264/gstx264enc.h:
1668         Do not deal with duplicated input (timestamps).  If needed,
1669         a generic element can do so.
1670         Do not manipulate input timestamps on the way out,
1671         since that shifts the timeline and A/V sync.
1672
1673 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1674
1675         * docs/plugins/gst-plugins-bad-plugins.args:
1676         Integrate new properties into documentation.
1677         * ext/x264/gstx264enc.c: (gst_x264_enc_class_init),
1678         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1679         (gst_x264_enc_set_property), (gst_x264_enc_get_property):
1680         Fix up API prior to eventual plugin move.
1681         API: GstX264Enc:pass (provides more options, and changed to enum)
1682
1683 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1684
1685         * docs/plugins/Makefile.am:
1686         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1687         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1688         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1689         * docs/plugins/inspect/plugin-mplex.xml:
1690         * ext/mplex/gstmplex.cc:
1691         Update and add documentation for mplex.
1692         * ext/mpeg2enc/gstmpeg2enc.cc:
1693         Documentation update.
1694
1695 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1696
1697         * docs/plugins/Makefile.am:
1698         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1699         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1700         * ext/x264/gstx264enc.c:
1701         * tests/check/Makefile.am:
1702         * tests/check/elements/x264enc.c: (setup_x264enc),
1703         (cleanup_x264enc), (GST_START_TEST), (x264enc_suite), (main):
1704         Add documentation and unit test for x264enc.
1705
1706 2008-08-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1707
1708         * ext/x264/gstx264enc.c: (gst_x264_enc_init),
1709         (gst_x264_enc_header_buf), (gst_x264_enc_encode_frame):
1710         Allocate some buffers in more adaptive and economical fashion.
1711
1712 2008-08-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1713
1714         * configure.ac:
1715         Check for sufficiently up-to-date x264 API.
1716         * ext/x264/gstx264enc.c: (gst_x264_enc_pass_get_type),
1717         (gst_x264_enc_base_init), (gst_x264_enc_class_init),
1718         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1719         (gst_x264_enc_set_property), (gst_x264_enc_get_property):
1720         * ext/x264/gstx264enc.h:
1721         Expose some more parameters of the x264 encoder as properties.
1722
1723 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1724
1725         * gst/rtpmanager/gstrtpbin.c:
1726           Print the pad-name in debug log.
1727
1728         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
1729         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
1730           Use "-" instead of "_" in property names. Can we call them just
1731           "device" like everywhere else?
1732
1733 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1734
1735         * ext/x264/gstx264enc.c: (gst_x264_enc_log_callback),
1736         (gst_x264_enc_finalize), (gst_x264_enc_header_buf),
1737         (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps),
1738         (gst_x264_enc_flush_frames):
1739         Coding style and layout; re-order some functions in more
1740         typical and natural flow.
1741
1742 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1743
1744         * ext/x264/Makefile.am:
1745         * ext/x264/gstx264enc.c: (gst_x264_enc_set_src_caps),
1746         (gst_x264_enc_sink_set_caps), (gst_x264_enc_init),
1747         (gst_x264_enc_reset), (gst_x264_enc_finalize),
1748         (gst_x264_enc_flush_frames), (gst_x264_enc_sink_event),
1749         (gst_x264_enc_chain), (gst_x264_enc_encode_frame),
1750         (gst_x264_enc_change_state), (gst_x264_enc_set_property):
1751         * ext/x264/gstx264enc.h:
1752         Use GQueue in stead of custom queue code.
1753         Factorize flushing out encoder delayed frames.
1754         Factorize initialization and state change reset.
1755
1756 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1757
1758         * ext/x264/gstx264enc.h:
1759         * sys/fbdev/gstfbdevsink.c:
1760         Use configure-generated _stdint.h.
1761
1762 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1763
1764         * ext/x264/Makefile.am:
1765         * ext/x264/gstx264enc.c: (gst_x264_enc_header_buf),
1766         (gst_x264_enc_sink_set_caps), (gst_x264_enc_base_init),
1767         (gst_x264_enc_class_init), (gst_x264_enc_log_callback),
1768         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1769         (gst_x264_enc_finalize), (gst_x264_enc_chain),
1770         (gst_x264_enc_encode_frame), (plugin_init):
1771         * ext/x264/gstx264enc.h:
1772         Use video format library and GST_WRITE_*_BE macros where applicable.
1773         Use finalize in stead of dispose.
1774         Set up debug category and log callback.
1775
1776 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1777
1778         Patch by: Frederic Crozat <fcrozat@mandriva.org>
1779
1780         * ext/sndfile/gstsf.c: (plugin_init):
1781         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_plugin_init):
1782         * sys/oss4/oss4-audio.c: (plugin_init):
1783         Make sure gettext returns translations in UTF-8 encoding rather
1784         than in the current locale encoding (#546822).
1785
1786 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1787
1788         * ext/twolame/gsttwolame.c: (gst_two_lame_sink_setcaps),
1789         (gst_two_lame_chain):
1790         * ext/twolame/gsttwolame.h:
1791         Allow raw float samples as input for encoding.
1792
1793 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1794
1795         * ext/jack/gstjackaudiosrc.c:
1796           Try committing this once again. Now properly renamed.
1797
1798 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1799
1800         * docs/plugins/Makefile.am:
1801         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1802         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1803         * docs/plugins/gst-plugins-bad-plugins.args:
1804         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1805         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1806         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1807         * docs/plugins/inspect/plugin-jack.xml
1808           Add new element to docs.
1809
1810         * ext/jack/gstjack.h
1811           Add missing file.
1812
1813         * ext/jack/gstjackaudiosrc.c:
1814         * ext/jack/gstjackaudiosrc.h:
1815           Rename jackaudiosrc to jack_audio_src.
1816
1817 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1818
1819         patch by: Tristan Matthews <tristan@sat.qc.ca>
1820
1821         * ext/jack/Makefile.am:
1822         * ext/jack/gstjack.c:
1823         * ext/jack/gstjackaudioclient.c:
1824         * ext/jack/gstjackaudiosink.c:
1825         * ext/jack/gstjackaudiosink.h:
1826         * ext/jack/gstjackaudiosrc.c:
1827         * ext/jack/gstjackaudiosrc.h:
1828         * ext/jack/gstjackringbuffer.h:
1829           Add a jackaudiosrc. Refactor sink slightly for better code reuse.
1830           Fixes #545197.
1831
1832 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1833
1834         * docs/plugins/Makefile.am:
1835         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1836         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1837         * docs/plugins/gst-plugins-bad-plugins.args:
1838         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1839         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1840         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1841         * docs/plugins/inspect/plugin-celt.xml:
1842         * docs/plugins/inspect/plugin-twolame.xml:
1843         Add twolame and celt plugins to the docs.
1844
1845 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1846
1847         Based on patch by: Olivier Crete <tester at tester dot ca>
1848
1849         * gst/rtpmanager/gstrtpjitterbuffer.c:
1850         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
1851         Make the buffer metadata writable before inserting it in the
1852         jitterbuffer because the jitterbuffer will modify the timestamps.
1853
1854         * gst/rtpmanager/rtpjitterbuffer.c:
1855         Update method comment about requiring writable metadata on buffers.
1856
1857         * gst/rtpmanager/rtpsession.c: (rtp_session_process_sr),
1858         (rtp_session_process_rtcp):
1859         Make the RTCP buffer metadata writable because we want to modify the
1860         metadata.
1861         Fixes #546312.
1862
1863 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1864
1865         * gst/selector/gstinputselector.c: (gst_selector_pad_bufferalloc),
1866         (gst_selector_pad_chain), (gst_input_selector_getcaps),
1867         (gst_input_selector_activate_sinkpad):
1868         Move the select-all logic into the activation of the currently selected
1869         pad. We want to remember the last pad with activity in select-all mode.
1870         Fix the getcaps function, we can produce the union of the upstream caps
1871         in select-all mode, not the intersection like proxy_getcaps() does.
1872
1873 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1874
1875         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
1876
1877         * gst/rtpmanager/gstrtpjitterbuffer.c:
1878         (gst_rtp_jitter_buffer_chain):
1879         Fix debug by logging the right seqnum.
1880
1881 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1882
1883         Patch by: Olivier Crete <tester at tester dot ca>
1884
1885         * gst/rtpmanager/gstrtpbin.c: (get_pt_map):
1886         Release lock before emitting the request-pt-map signal.
1887         Fixes #543480.
1888
1889 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1890
1891         * gst/deinterlace2/gstdeinterlace2.c:
1892         (gst_deinterlace_simple_method_interpolate_scanline),
1893         (gst_deinterlace_simple_method_copy_scanline),
1894         (gst_deinterlace_simple_method_deinterlace_frame):
1895         * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy):
1896         * gst/deinterlace2/tvtime/greedyh.c:
1897         (deinterlace_frame_di_greedyh):
1898         * gst/deinterlace2/tvtime/scalerbob.c:
1899         (deinterlace_scanline_scaler_bob):
1900         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy):
1901         * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave),
1902         (copy_scanline):
1903         * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave),
1904         (copy_scanline):
1905         * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave),
1906         (copy_scanline):
1907         Use oil_memcpy() instead of memcpy() as it's faster for the sizes that
1908         are usually used here.
1909
1910 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1911
1912         * gst/deinterlace2/Makefile.am:
1913         * gst/deinterlace2/gstdeinterlace2.c:
1914         (gst_deinterlace_simple_method_deinterlace_frame),
1915         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method):
1916         * gst/deinterlace2/gstdeinterlace2.h:
1917         * gst/deinterlace2/tvtime/linear.c:
1918         (deinterlace_scanline_linear_c), (deinterlace_scanline_linear_mmx),
1919         (deinterlace_scanline_linear_mmxext),
1920         (gst_deinterlace_method_linear_class_init),
1921         (gst_deinterlace_method_linear_init):
1922         * gst/deinterlace2/tvtime/linearblend.c:
1923         (deinterlace_scanline_linear_blend_c),
1924         (deinterlace_scanline_linear_blend2_c),
1925         (deinterlace_scanline_linear_blend_mmx),
1926         (deinterlace_scanline_linear_blend2_mmx),
1927         (gst_deinterlace_method_linear_blend_class_init),
1928         (gst_deinterlace_method_linear_blend_init):
1929         * gst/deinterlace2/tvtime/plugins.h:
1930         * gst/deinterlace2/tvtime/scalerbob.c:
1931         (deinterlace_scanline_scaler_bob),
1932         (gst_deinterlace_method_scaler_bob_class_init),
1933         (gst_deinterlace_method_scaler_bob_init):
1934         * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave),
1935         (copy_scanline), (gst_deinterlace_method_weave_class_init),
1936         (gst_deinterlace_method_weave_init):
1937         * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave),
1938         (copy_scanline), (gst_deinterlace_method_weave_bff_class_init),
1939         (gst_deinterlace_method_weave_bff_init):
1940         * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave),
1941         (copy_scanline), (gst_deinterlace_method_weave_tff_class_init),
1942         (gst_deinterlace_method_weave_tff_init):
1943         Add the remaining tvtime deinterlacing methods and fix the
1944         deinterlace_frame() implementation of GstDeinterlaceSimpleMethod.
1945
1946 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1947
1948         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
1949         (deinterlace_line_mmx), (gst_deinterlace_method_vfir_class_init):
1950         Implement the VFIR deinterlacing method as simple method.
1951
1952 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1953
1954         * gst/deinterlace2/gstdeinterlace2.c:
1955         (gst_deinterlace_simple_method_interpolate_scanline),
1956         (gst_deinterlace_simple_method_copy_scanline),
1957         (gst_deinterlace_simple_method_deinterlace_frame),
1958         (gst_deinterlace_simple_method_class_init),
1959         (gst_deinterlace_simple_method_init):
1960         * gst/deinterlace2/gstdeinterlace2.h:
1961         Add a GstDeinterlaceSimpleMethod subclass of GstDeinterlaceMethod that
1962         can be used by simple deinterlacing methods. They only have to provide
1963         a function for interpolating a scanline or copying a scanline.
1964
1965 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1966
1967         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_chain):
1968         Respect the latency of the deinterlacing algorithm for the timestamps
1969         of every buffer.
1970
1971 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1972
1973         * gst/deinterlace2/tvtime/greedyh.asm:
1974         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1975         Add the MMX registers to the clobbered registers only if __MMX__ is
1976         defined.
1977
1978 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1979
1980         * gst/deinterlace2/Makefile.am:
1981         * gst/deinterlace2/gstdeinterlace2.c:
1982         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method),
1983         (gst_deinterlace2_class_init):
1984         Enable tomsmocomp again as the C port will be ready for the next
1985         release.
1986
1987 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1988
1989         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_init),
1990         (gst_greatest_common_divisor), (gst_fraction_double),
1991         (gst_deinterlace2_getcaps), (gst_deinterlace2_setcaps):
1992         Don't use proxy_getcaps() but implement our own getcaps() function
1993         that doubles/halfs the framerate if all fields should be sent out.
1994
1995 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1996
1997         * configure.ac:
1998         * ext/Makefile.am:
1999         * ext/twolame/Makefile.am:
2000         * ext/twolame/gsttwolame.c: (gst_two_lame_mode_get_type),
2001         (gst_two_lame_padding_get_type), (gst_two_lame_emphasis_get_type),
2002         (gst_two_lame_release_memory), (gst_two_lame_finalize),
2003         (gst_two_lame_base_init), (gst_two_lame_class_init),
2004         (gst_two_lame_src_setcaps), (gst_two_lame_sink_setcaps),
2005         (gst_two_lame_init), (gst_two_lame_set_property),
2006         (gst_two_lame_get_property), (gst_two_lame_sink_event),
2007         (gst_two_lame_chain), (gst_two_lame_setup),
2008         (gst_two_lame_change_state), (gst_two_lame_get_default_settings),
2009         (plugin_init):
2010         * ext/twolame/gsttwolame.h:
2011         Add TwoLAME MP2 encoding element, based on the LAME element.
2012
2013 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2014
2015         * configure.ac:
2016         * ext/Makefile.am:
2017         * ext/celt/Makefile.am:
2018         * ext/celt/gstcelt.c: (plugin_init):
2019         * ext/celt/gstceltdec.c: (gst_celt_dec_base_init),
2020         (gst_celt_dec_class_init), (gst_celt_dec_reset),
2021         (gst_celt_dec_init), (celt_dec_convert),
2022         (celt_get_sink_query_types), (celt_dec_sink_query),
2023         (celt_get_src_query_types), (celt_dec_src_query),
2024         (celt_dec_src_event), (celt_dec_sink_event),
2025         (celt_dec_chain_parse_header), (celt_dec_chain_parse_comments),
2026         (celt_dec_chain_parse_data), (celt_dec_chain),
2027         (celt_dec_change_state):
2028         * ext/celt/gstceltdec.h:
2029         * ext/celt/gstceltenc.c: (gst_celt_enc_setup_interfaces),
2030         (gst_celt_enc_base_init), (gst_celt_enc_class_init),
2031         (gst_celt_enc_finalize), (gst_celt_enc_sink_setcaps),
2032         (gst_celt_enc_sink_getcaps), (gst_celt_enc_convert_src),
2033         (gst_celt_enc_convert_sink), (gst_celt_enc_get_latency),
2034         (gst_celt_enc_get_query_types), (gst_celt_enc_src_query),
2035         (gst_celt_enc_sink_query), (gst_celt_enc_init),
2036         (gst_celt_enc_create_metadata_buffer), (gst_celt_enc_setup),
2037         (gst_celt_enc_buffer_from_data), (gst_celt_enc_push_buffer),
2038         (gst_celt_enc_set_header_on_caps), (gst_celt_enc_sinkevent),
2039         (gst_celt_enc_chain), (gst_celt_enc_get_property),
2040         (gst_celt_enc_set_property), (gst_celt_enc_change_state):
2041         * ext/celt/gstceltenc.h:
2042         Add CELT encoder and decoder elements based on the Speex elements.
2043
2044 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2045
2046         Patch by: Tal Shalif <tshalif at nargila dot org>
2047
2048         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_initsdl):
2049         Use g_setenv() and g_unsetenv() instead of setenv() to fix compilation
2050         with mingw. Fixes bug #545247.
2051
2052 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2053
2054         * configure.ac:
2055         Back to development -> 0.10.8.1
2056
2057 === release 0.10.8 ===
2058
2059 2008-07-28  Jan Schmidt <jan.schmidt@sun.com>
2060
2061         * configure.ac:
2062           releasing 0.10.8, "Vapour Trails"
2063
2064 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
2065
2066         * configure.ac:
2067         0.10.7.3 pre-release
2068
2069         * po/LINGUAS:
2070         * po/id.po:
2071         Add Indonesian translation.
2072
2073 2008-07-23  Michael Smith <msmith@songbirdnest.com>
2074
2075         * gst/festival/gstfestival.c:
2076           Guard unistd.h with HAVE_UNISTD_H
2077         * gst/modplug/libmodplug/load_it.cpp:
2078         * gst/modplug/libmodplug/sndfile.cpp:
2079         * gst/modplug/libmodplug/sndfile.h:
2080         * gst/modplug/libmodplug/stdafx.h:
2081           Support for compiling with MSVC: use _MSC_VER for detecting MSVC instead
2082           of MSC_VER. Make CanPackSamples take the type it's passed. Change scope
2083           of a variable in load_it.cpp to MSVC's scoping rules.
2084         * gst/sdp/gstsdpdemux.c:
2085           Guard unistd.h with HAVE_UNISTD_H
2086           Fixes #544457.
2087
2088 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
2089
2090         * ext/timidity/gsttimidity.c:
2091           Fix compiler warning. Fixes #544050.
2092
2093 2008-07-21  Jan Schmidt  <jan.schmidt@sun.com>
2094
2095         * configure.ac:
2096         Don't check for nav_print.h any more - it should be included in
2097         the libdvdnav development package if libdvdnav headers depend on it.
2098         Fixes: #543846
2099
2100 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2101
2102         * configure.ac:
2103         * ext/ladspa/Makefile.am:
2104         Link the ladspa plugin with -ldl. It's needed for dlopen() and friends
2105         for loading the ladspa plugins and previously was linked in by
2106         gmodule. Fixes bug #543848.
2107
2108 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2109
2110         * gst/modplug/libmodplug/Makefile.am:
2111         Use GST_CXXFLAGS instead of GST_CFLAGS for CXXFLAGS. GST_CFLAGS
2112         can contain compiler parameters that are invalid for C++.
2113         Fixes bug #543860.
2114
2115 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2116
2117         * ext/resindvd/Makefile.am:
2118         Dist missing header files. Fixes bug #543861.
2119
2120 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2121
2122         * configure.ac:
2123         0.10.7.2 pre-release
2124
2125 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2126
2127         * ext/Makefile.am:
2128         Dist and recurse into resindvd subdir
2129
2130 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2131
2132         * configure.ac:
2133         Remove interleave and replaygain configure.ac pieces too
2134
2135 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2136
2137         * po/LINGUAS:
2138         * po/lt.po:
2139         Add new lithunian translation, and add french to the LINGUAS
2140         file.
2141
2142 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2143
2144         * docs/plugins/Makefile.am:
2145         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2146         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2147         * docs/plugins/gst-plugins-bad-plugins.args:
2148         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
2149         * docs/plugins/gst-plugins-bad-plugins.interfaces:
2150         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
2151         * docs/plugins/inspect/plugin-interleave.xml:
2152         * docs/plugins/inspect/plugin-replaygain.xml:
2153         * gst/interleave/Makefile.am:
2154         * gst/interleave/deinterleave.c:
2155         * gst/interleave/deinterleave.h:
2156         * gst/interleave/interleave.c:
2157         * gst/interleave/interleave.h:
2158         * gst/interleave/plugin.c:
2159         * gst/interleave/plugin.h:
2160         * gst/replaygain/Makefile.am:
2161         * gst/replaygain/gstrganalysis.c:
2162         * gst/replaygain/gstrganalysis.h:
2163         * gst/replaygain/gstrglimiter.c:
2164         * gst/replaygain/gstrglimiter.h:
2165         * gst/replaygain/gstrgvolume.c:
2166         * gst/replaygain/gstrgvolume.h:
2167         * gst/replaygain/replaygain.c:
2168         * gst/replaygain/replaygain.h:
2169         * gst/replaygain/rganalysis.c:
2170         * gst/replaygain/rganalysis.h:
2171         * tests/check/Makefile.am:
2172         * tests/check/elements/deinterleave.c:
2173         * tests/check/elements/interleave.c:
2174         * tests/check/elements/rganalysis.c:
2175         * tests/check/elements/rglimiter.c:
2176         * tests/check/elements/rgvolume.c:
2177         Remove interleave and replaygain plugins that have moved to -good
2178
2179 2008-07-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2180
2181         * configure.ac:
2182         * gst/deinterlace2/Makefile.am:
2183         * gst/deinterlace2/gstdeinterlace2.c:
2184         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method),
2185         (gst_deinterlace2_class_init), (gst_deinterlace2_init):
2186         * gst/deinterlace2/gstdeinterlace2.h:
2187         * gst/deinterlace2/tvtime/greedy.c:
2188         (gst_deinterlace_method_greedy_l_class_init):
2189         * gst/deinterlace2/tvtime/greedyh.c:
2190         (gst_deinterlace_method_greedy_h_class_init):
2191         * gst/deinterlace2/tvtime/vfir.c:
2192         (gst_deinterlace_method_vfir_class_init):
2193         Disable the tomsmocomp algorithm for this release as it's buggy
2194         and has no C implementation yet.
2195
2196         Build the deinterlace2 plugin on all architectures but still mark it
2197         as experimental.
2198         
2199         Build the x86 inline assembly only if GCC inline assembly is supported
2200         and only on x86 or amd64. Fixes bug #543286.
2201
2202 2008-07-16  Jan Schmidt  <Jan.Schmidt@sun.com>
2203
2204         * gst/real/gstrealvideodec.c: (open_library):
2205         Add some casts to fix the build on Forte
2206
2207 2008-07-14  Edward Hervey  <edward.hervey@collabora.co.uk>
2208
2209         * gst/deinterlace2/tvtime/greedy.c:
2210         (gst_deinterlace_method_greedy_l_class_init):
2211         * gst/deinterlace2/tvtime/greedyh.c:
2212         (gst_deinterlace_method_greedy_h_class_init):
2213         * gst/deinterlace2/tvtime/vfir.c:
2214         (gst_deinterlace_method_vfir_class_init):
2215         Fix build on x86_64
2216
2217 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
2218
2219         * ext/resindvd/gstmpegdemux.c:
2220         Remove whitespace line.
2221
2222         * ext/resindvd/resindvdbin.c:
2223         * ext/resindvd/resindvdbin.h:
2224         Make it so that audio/video pads aren't added to the bin
2225         until after data flow starts.
2226
2227         * ext/resindvd/resin-play:
2228         Move video buffer queue outside resindvdbin
2229
2230         * ext/resindvd/resindvdsrc.c:
2231         Check that the nav_clock_id didn't already get unscheduled.
2232
2233         * gst/dvdspu/gstdvdspu.c:
2234         Remove assert that sometimes triggers erroneously.
2235
2236 2008-07-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2237
2238         * gst/deinterlace2/tvtime/greedyh.asm:
2239         Always use the C implementation if width is not a multiple of 4. The
2240         assembly optimized version only handle this and calling the C
2241         implementation for the remaining part doesn't work because it needs
2242         previous calculations.
2243
2244 2008-07-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2245
2246         * gst/deinterlace2/tvtime/greedyh.asm:
2247         * gst/deinterlace2/tvtime/greedyh.c:
2248         * gst/deinterlace2/tvtime/greedyhmacros.h:
2249         Some cleanup, use 3DNOW instead of TDNOW in macros.
2250
2251         * gst/deinterlace2/tvtime/tomsmocomp.c:
2252         (gst_deinterlace_method_tomsmocomp_class_init):
2253         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2254         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2255         The SSE method in fact only needs MMXEXT, declare it as such.
2256
2257 2008-07-11  Jan Schmidt  <thaytan@noraisin.net>
2258
2259         * docs/plugins/.cvsignore:
2260         Ignore *-undeclared.txt
2261
2262         * ext/resindvd/rsnaudiomunge.c:
2263         Turn g_print's into debug statements.
2264
2265         * ext/resindvd/resin-play:
2266         * ext/resindvd/Makefile.am:
2267         * ext/resindvd/resindvdbin.c:
2268         * ext/resindvd/resindvdbin.h:
2269         * ext/resindvd/rsnparsetter.c:
2270         * ext/resindvd/rsnparsetter.h:
2271         * ext/resindvd/rsnwrappedbuffer.c:
2272         * ext/resindvd/rsnwrappedbuffer.h:
2273         Add a bloated implementation of a really simple idea: Replace the
2274         pixel-aspect-ratio in the output video with a prescribed one when
2275         necessary. There must be an easier way.
2276
2277         Split the dvdspu out of the resindvdbin and put out the subpicture
2278         stream on the subpicture pad.
2279
2280         * ext/resindvd/gstmpegdemux.c:
2281         Send video-aspect events down the pipe from the demuxer.
2282
2283         * ext/resindvd/resindvdsrc.c:
2284         * ext/resindvd/resindvdsrc.h:
2285         Handle timed-stills somewhat using g_cond_timed_wait, with a FIXME
2286         to make it use clock-waiting later.
2287
2288         * ext/resindvd/rsnbasesrc.c:
2289         Don't overwrite the last_stop in the basesrc segment after a seamless
2290         seek.
2291
2292 2008-07-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2293
2294         * gst/mpegtsparse/mpegtspacketizer.c:
2295         Convert extended event text to UTF-8.
2296
2297 2008-07-10  Stefan Kost  <ensonic@users.sf.net>
2298
2299         * docs/plugins/Makefile.am:
2300         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2301         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2302         * docs/plugins/gst-plugins-bad-plugins.args:
2303         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
2304         * docs/plugins/gst-plugins-bad-plugins.interfaces:
2305         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
2306         * docs/plugins/gst-plugins-bad-plugins.signals:
2307         * docs/plugins/inspect/plugin-stereo.xml:
2308         * gst/stereo/gststereo.c:
2309           Document one more.
2310
2311 2008-07-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2312
2313         * gst/mpegtsparse/gstmpegdesc.h:
2314         Fix extended event descriptor parsing, out by 1 in position of
2315         text length.
2316
2317 2008-07-09  Stefan Kost  <ensonic@users.sf.net>
2318
2319         * gst/festival/gstfestival.c:
2320           Add a note to the docs, that festival need to be running. Also log an
2321           error it it is not. Fixes #541327
2322
2323 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2324
2325         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2326
2327         * gst/librfb/gstrfbsrc.c:
2328         * gst/librfb/gstrfbsrc.h:
2329         Add view-only property to ignore the navigation events
2330
2331 2008-07-08  Michael Smith <msmith@songbirdnest.com>
2332
2333         * sys/dshowdecwrapper/gstdshowaudiodec.c:
2334           Revert previous patch apart from typo fixes; the patch was not
2335           independently useful.
2336
2337 2008-07-08  Michael Smith <msmith@songbirdnest.com>
2338
2339         Based on patch by: Alessandro Decina <alessandro@nnva.org>
2340         * sys/dshowdecwrapper/gstdshowaudiodec.c:
2341         * sys/dshowdecwrapper/gstdshowdecwrapper.h:
2342         * sys/dshowdecwrapper/gstdshowvideodec.c:
2343           Add AAC, AC3 to handled codecs.
2344           Fix handling of flush events.
2345           Improve debug/error output.
2346           Fix a number of typos in comments and variable names.
2347
2348 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2349
2350         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2351
2352         * gst/librfb/rfbdecoder.c:
2353         Implement ServerCutText message
2354
2355 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2356
2357         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2358
2359         * gst/librfb/gstrfbsrc.c:
2360         * gst/librfb/rfbdecoder.c:
2361         Add property for shared desktop
2362
2363 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2364
2365         * configure.ac:
2366         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
2367         flags that are invalid for C++.
2368
2369 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2370
2371         * ext/spc/gstspc.c: (spc_setup):
2372         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
2373         Don't use declarations after statements in the remaining code.
2374
2375 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2376
2377         Patch by:
2378           Jonathan Rosser <jonathan dot rosser at rd dot bbc dot co dot uk>
2379
2380         * ext/metadata/metadataexif.c: (metadataparse_handle_unit_tags):
2381         * ext/metadata/metadataxmp.c:
2382         (metadataparse_xmp_iter_add_to_tag_list):
2383         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_start):
2384         * ext/timidity/gstwildmidi.c: (gst_wildmidi_loop):
2385         Don't use declarations after statements.
2386
2387 2008-07-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2388
2389         patch by: Alessandro Decina
2390
2391         * gst/mpegtsparse/mpegtsparse.c:
2392         Fix memory leak by unreffing structures when not needed.
2393         Fixes #539292.
2394
2395 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
2396
2397         * gst/sdp/gstsdpdemux.c:
2398           Use floating point math for latencies < 0 sec in log output.
2399
2400 2008-07-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2401
2402         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
2403         Mark internal processing functions as static inline for quite some
2404         speedup as they're used only once and need to get many local variables
2405         passed as parameter.
2406
2407 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2408
2409         * gst/deinterlace2/gstdeinterlace2.c:
2410         (gst_deinterlace_method_deinterlace_frame),
2411         (gst_deinterlace2_set_method), (gst_deinterlace2_init),
2412         (gst_deinterlace2_reset_history), (gst_deinterlace2_reset),
2413         (gst_deinterlace2_set_property), (gst_deinterlace2_get_property),
2414         (gst_deinterlace2_pop_history), (gst_deinterlace2_head_history),
2415         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2416         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
2417         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
2418         (gst_deinterlace2_src_query):
2419         * gst/deinterlace2/gstdeinterlace2.h:
2420         Call the current instance "self" instead of "object".
2421
2422 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2423
2424         * gst/deinterlace2/gstdeinterlace2.c:
2425         (gst_deinterlace_method_get_latency),
2426         (gst_deinterlace2_set_method), (gst_deinterlace2_class_init),
2427         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2428         (gst_deinterlace2_setcaps), (gst_deinterlace2_src_query):
2429         * gst/deinterlace2/gstdeinterlace2.h:
2430         Include latency of the method in the returned latency.
2431
2432         Fix outputting of all fields, i.e. doubling of the framerate.
2433
2434 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2435
2436         * gst/deinterlace2/Makefile.am:
2437         * gst/deinterlace2/gstdeinterlace2.c:
2438         (gst_deinterlace_method_class_init), (gst_deinterlace_method_init),
2439         (gst_deinterlace_method_deinterlace_frame),
2440         (gst_deinterlace_method_get_fields_required),
2441         (gst_deinterlace2_methods_get_type), (_do_init),
2442         (gst_deinterlace2_set_method), (gst_deinterlace2_class_init),
2443         (gst_deinterlace2_child_proxy_get_child_by_index),
2444         (gst_deinterlace2_child_proxy_get_children_count),
2445         (gst_deinterlace2_child_proxy_interface_init),
2446         (gst_deinterlace2_init), (gst_deinterlace2_finalize),
2447         (gst_deinterlace2_chain), (gst_deinterlace2_src_query):
2448         * gst/deinterlace2/gstdeinterlace2.h:
2449         * gst/deinterlace2/tvtime/greedy.c:
2450         (deinterlace_greedy_packed422_scanline_c),
2451         (deinterlace_greedy_packed422_scanline_mmx),
2452         (deinterlace_greedy_packed422_scanline_mmxext),
2453         (deinterlace_frame_di_greedy),
2454         (gst_deinterlace_method_greedy_l_set_property),
2455         (gst_deinterlace_method_greedy_l_get_property),
2456         (gst_deinterlace_method_greedy_l_class_init),
2457         (gst_deinterlace_method_greedy_l_init):
2458         * gst/deinterlace2/tvtime/greedyh.asm:
2459         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C),
2460         (deinterlace_frame_di_greedyh),
2461         (gst_deinterlace_method_greedy_h_set_property),
2462         (gst_deinterlace_method_greedy_h_get_property),
2463         (gst_deinterlace_method_greedy_h_class_init),
2464         (gst_deinterlace_method_greedy_h_init):
2465         * gst/deinterlace2/tvtime/greedyh.h:
2466         * gst/deinterlace2/tvtime/plugins.h:
2467         * gst/deinterlace2/tvtime/tomsmocomp.c:
2468         (gst_deinterlace_method_tomsmocomp_set_property),
2469         (gst_deinterlace_method_tomsmocomp_get_property),
2470         (gst_deinterlace_method_tomsmocomp_class_init),
2471         (gst_deinterlace_method_tomsmocomp_init):
2472         * gst/deinterlace2/tvtime/tomsmocomp.h:
2473         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2474         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir),
2475         (gst_deinterlace_method_vfir_class_init),
2476         (gst_deinterlace_method_vfir_init):
2477         Use a GstObject subtype for the deinterlacing methods and export
2478         the different settings for each deinterlacing method via GObject
2479         properties.
2480
2481         Implement GstChildProxy interface to allow access to the used
2482         deinterlacing method and to allow adjusting the different settings.
2483
2484         Move global variables of the tomsmocomp deinterlacing method into
2485         function local variables to make it possible to use this deinterlacing
2486         method from different instances.
2487
2488 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2489
2490         * gst/deinterlace2/tvtime/greedyh.asm:
2491         Support widths that are not a multiply of 4 when using the assembly
2492         optimized greedyh implementations.
2493
2494 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2495
2496         * gst/deinterlace2/tvtime/greedyh.c:
2497         (deinterlace_frame_di_greedyh):
2498         Only build the assembly optimized implementations on x86.
2499
2500 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2501
2502         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2503
2504         * configure.ac:
2505         Fix checking of headers for the OSS4 plugin to fail if a single
2506         header doesn't exist already. AC_CHECK_HEADERS only fails if none
2507         of the headers is found. Fixes bug #541543.
2508
2509 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2510
2511         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2512
2513         * configure.ac:
2514         * gst/festival/Makefile.am:
2515         * gst/festival/gstfestival.c:
2516         Fix built of the festival plugin with mingw32 by linking to ws2_32.dll
2517         and including winsock headers. Fixes bug #541522.
2518
2519 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2520
2521         * ChangeLog:
2522         * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_loop):
2523         * gst/rtpmanager/rtpsource.c: (rtp_source_get_new_sr):
2524         Corrected a typo (interpollate -> interpolate).
2525
2526 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2527
2528         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
2529         (gst_rtp_session_send_rtp), (gst_rtp_session_send_rtcp),
2530         (gst_rtp_session_sync_rtcp), (gst_rtp_session_chain_recv_rtp),
2531         (gst_rtp_session_chain_recv_rtcp), (gst_rtp_session_chain_send_rtp):
2532         * gst/rtpmanager/rtpsession.c: (source_push_rtp),
2533         (rtp_session_send_rtp):
2534         * gst/rtpmanager/rtpsource.c: (push_packet), (calculate_jitter),
2535         (rtp_source_process_rtp), (rtp_source_send_rtp):
2536         Changed some GST_DEBUG() to GST_LOG() to reduce the spam when a
2537         pipeline is running normally.
2538
2539 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2540
2541         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_init),
2542         (gst_rtp_session_finalize), (rtcp_thread),
2543         (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_recv_rtcp),
2544         (gst_rtp_session_event_send_rtp_sink),
2545         (gst_rtp_session_chain_send_rtp):
2546         * gst/rtpmanager/rtpsession.c: (check_collision),
2547         (update_arrival_stats), (rtp_session_process_rtp),
2548         (rtp_session_process_rtcp), (rtp_session_send_rtp),
2549         (rtp_session_send_bye_locked), (rtp_session_send_bye),
2550         (rtp_session_next_timeout), (session_report_blocks), (session_cleanup),
2551         (is_rtcp_time), (rtp_session_on_timeout):
2552         * gst/rtpmanager/rtpsession.h:
2553         Do not mix the use of g_get_current_time() with gst_clock_get_time().
2554
2555 2008-07-01  Jan Schmidt  <jan.schmidt@sun.com>
2556
2557         * gst/mpegvideoparse/mpegvideoparse.c:
2558         * gst/mpegvideoparse/mpegvideoparse.h:
2559         Queue new-segment events and send them after caps have been
2560         determined and set, so that the decoder will have been auto-plugged.
2561
2562 2008-07-01  Edward Hervey  <edward.hervey@collabora.co.uk>
2563
2564         Patch by : Michael Smith <msmith @ xiph dot org>
2565         
2566         * sys/qtwrapper/audiodecoders.c: (qtwrapper_audio_decoder_init),
2567         (clear_AudioStreamBasicDescription), (fill_indesc_mp3),
2568         (fill_indesc_aac), (make_samr_magic_cookie), (write_len),
2569         (make_aac_magic_cookie), (open_decoder), (process_buffer_cb),
2570         (qtwrapper_audio_decoder_chain),
2571         (qtwrapper_audio_decoder_sink_event),
2572         (qtwrapper_audio_decoder_base_init),
2573         (qtwrapper_audio_decoder_class_init),
2574         (qtwrapper_audio_decoders_register):
2575         * sys/qtwrapper/codecmapping.h:
2576         * sys/qtwrapper/imagedescription.c: (image_description_for_avc1),
2577         (image_description_for_mp4v), (image_description_from_stsd_buffer):
2578         * sys/qtwrapper/imagedescription.h:
2579         * sys/qtwrapper/qtutils.c: (get_name_info_from_component),
2580         (dump_avcc_atom), (dump_image_description),
2581         (AllocateAudioBufferList):
2582         * sys/qtwrapper/qtutils.h:
2583         * sys/qtwrapper/qtwrapper.c: (plugin_init):
2584         * sys/qtwrapper/qtwrapper.h:
2585         * sys/qtwrapper/videodecoders.c:
2586         (qtwrapper_video_decoder_base_init), (open_decoder),
2587         (decompressCb), (qtwrapper_video_decoder_chain),
2588         (qtwrapper_video_decoders_register):
2589         Make qtwrapper compile/work on win32.
2590         Lots of fixes
2591         Fixes #531840
2592
2593 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
2594
2595         * gst/rawparse/gstvideoparse.c:
2596         Fix size calculation for RGB buffers -> bpp is in bits, so divide by 8
2597
2598 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2599
2600         * gst/deinterlace2/Makefile.am:
2601         * gst/deinterlace2/tvtime/tomsmocomp.c: (tomsmocomp_init),
2602         (tomsmocomp_filter_mmx), (tomsmocomp_filter_3dnow),
2603         (tomsmocomp_filter_sse), (deinterlace_frame_di_tomsmocomp):
2604         * gst/deinterlace2/tvtime/tomsmocomp.h:
2605         Remove useless file and mark everything possible as static.
2606
2607         * gst/deinterlace2/tvtime/greedy.c:
2608         * gst/deinterlace2/tvtime/greedyh.c:
2609         Use "_stdint.h" instead of <stdint.h>.
2610
2611 2008-06-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2612
2613         * gst/deinterlace2/Makefile.am:
2614         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_init):
2615         * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy):
2616         * gst/deinterlace2/tvtime/greedyh.c:
2617         (deinterlace_frame_di_greedyh):
2618         * gst/deinterlace2/tvtime/speedtools.h:
2619         * gst/deinterlace2/tvtime/speedy.c:
2620         * gst/deinterlace2/tvtime/speedy.h:
2621         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy):
2622         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2623         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir):
2624         Get rid of speedy.[ch] as we don't use most of it's code anyway
2625         and it doesn't seem to be relicensed to LGPL. Use memcpy() instead
2626         of the speedy memcpy everywhere instead.
2627         
2628         * gst/deinterlace2/gstdeinterlace2.h:
2629         Remove many unused declarations.
2630
2631 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2632
2633         * ext/mpeg2enc/gstmpeg2encoptions.cc:
2634         * ext/mpeg2enc/gstmpeg2encoptions.hh:
2635         Expose the additional MPEG HDTV format profiles available in latest
2636         mjpegtools version.
2637
2638 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2639
2640         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_src_query):
2641         Divide latency be 2 to convert from fields to frames.
2642
2643 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2644
2645         * gst/deinterlace2/tvtime/greedy.c:
2646         (deinterlace_greedy_packed422_scanline_c),
2647         (deinterlace_greedy_packed422_scanline_mmx),
2648         (deinterlace_greedy_packed422_scanline_mmxext),
2649         (deinterlace_frame_di_greedy):
2650         Don't use scanlines function from gstdeinterlace2 as it's
2651         not appropiate for this method. Instead implement deinterlace_frame
2652         function by taking the one from greedyh.
2653         
2654         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C):
2655         Small fix for the C implementation.
2656
2657         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir):
2658         Don't use the scanlines function from gstdeinterlace2 as it's only
2659         used for this method and will be removed. Instead implement
2660         deinterlace_frame function and make it a bit more efficient.
2661
2662         * gst/deinterlace2/gstdeinterlace2.c:
2663         (gst_deinterlace2_class_init), (gst_deinterlace2_set_method),
2664         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2665         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
2666         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
2667         (gst_deinterlace2_src_query):
2668         Fix coding style and remove scanlines function as it's unused now.
2669
2670 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2671
2672         * gst/deinterlace2/tvtime/greedyh.asm:
2673         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C),
2674         (deinterlace_frame_di_greedyh), (dscaler_greedyh_get_method):
2675         * gst/deinterlace2/tvtime/greedyhmacros.h:
2676         Add a C implementation for the greedyh deinterlacing method, clean
2677         up the code a bit and mark the SSE version as MMXEXT as it doesn't
2678         require any SSE instructions.
2679
2680 2008-06-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2681
2682         * gst/deinterlace2/gstdeinterlace2.c:
2683         (gst_deinterlace2_set_property), (gst_deinterlace2_chain),
2684         (gst_deinterlace2_setcaps):
2685         If we're outputting all fields the framerate has to be doubled.
2686
2687         Set duration on the outgoing buffers.
2688
2689 2008-06-26  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2690
2691         * docs/plugins/Makefile.am:
2692         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2693         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2694         * gst/y4m/gsty4mencode.c:
2695         Add documentation for YUV4MPEG2 encoder element.
2696
2697 2008-06-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2698
2699         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2700         Remove unneeded macros that break build on macosx.
2701
2702 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
2703
2704         * configure.ac:
2705           Depend on released versions of core and -base.
2706
2707 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2708
2709         * gst/deinterlace2/tvtime/greedy.c:
2710         (deinterlace_greedy_packed422_scanline_mmx),
2711         (deinterlace_greedy_packed422_scanline_mmxext):
2712         Optimize MMX/MMXEXT implementations a bit by requiring two less
2713         memory accesses and fix the workaround for the missing right shift
2714         on bytes to unset the highest bit of every byte.
2715
2716 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2717
2718         * gst/deinterlace2/tvtime/greedy.c:
2719         (deinterlace_greedy_packed422_scanline_mmxext):
2720         Remove sfence instruction as it's not needed and actually is an SSE
2721         instruction.
2722
2723 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2724
2725         * gst/deinterlace2/tvtime/greedy.c:
2726         (deinterlace_greedy_packed422_scanline_mmx),
2727         (deinterlace_greedy_packed422_scanline):
2728         Add plain MMX implementation for the greedyl method.
2729
2730 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2731
2732         * gst/deinterlace2/Makefile.am:
2733         Move the assembly includes to noinst_HEADERS where they belong.
2734
2735         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
2736         (deinterlace_line_mmx):
2737         Fix C and MMX implementations a bit more.
2738
2739 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2740
2741         * gst/deinterlace2/tvtime/greedy.c:
2742         (deinterlace_greedy_packed422_scanline_c),
2743         (deinterlace_greedy_packed422_scanline_mmxext),
2744         (deinterlace_greedy_packed422_scanline):
2745         Fix the C implementation to produce correct results and optimize the
2746         MMXEXT implementation.
2747
2748         Handle odd widths and don't read over array boundaries in the MMXEXT
2749         implementation.
2750
2751         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
2752         (deinterlace_line_mmx), (deinterlace_scanline_vfir):
2753         Fix a small rounding bug in the MMX implementation, the MMX
2754         implementation doesn't actually need MMXEXT instructions so don't mark
2755         it as such.
2756
2757         Handle odd widths in both implementations.
2758
2759 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
2760
2761         * ext/resindvd/rsnbasesrc.c:
2762           Use the right i18n header.
2763
2764 2008-06-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2765
2766         * gst/deinterlace2/tvtime/greedy.c:
2767         (deinterlace_greedy_packed422_scanline_sse),
2768         (deinterlace_greedy_packed422_scanline_c),
2769         (deinterlace_greedy_packed422_scanline):
2770         Implement a C version of the greedy low motion algorithm and mark the
2771         assembly optimized version as SSE as it uses SSE instructions
2772         additional to MMX instructions.
2773
2774 2008-06-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2775
2776         Patch by: Sebastian Pölsterl
2777
2778         * gst/mpegtsparse/mpegtspacketizer.c:
2779         Fix problem when empty string is provided.
2780
2781 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2782
2783         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_mmxext),
2784         (deinterlace_line_c), (deinterlace_scanline_vfir):
2785         Make it possible to use the vfir method on X86 CPUs without MMXEXT too
2786         but use the MMXEXT optimized code whenever possible.
2787
2788 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2789
2790         * gst/deinterlace2/gstdeinterlace2.c:
2791         (gst_deinterlace2_class_init), (gst_deinterlace2_init),
2792         (gst_deinterlace2_reset_history), (gst_deinterlace2_reset),
2793         (gst_deinterlace2_finalize), (gst_deinterlace2_chain),
2794         (gst_deinterlace2_sink_event), (gst_deinterlace2_change_state),
2795         (gst_deinterlace2_src_query):
2796         * gst/deinterlace2/gstdeinterlace2.h:
2797         Reset element state on PAUSED->READY properly, don't leak any buffers
2798         when finalizing, allocate buffers with gst_pad_alloc_buffer() and
2799         properly return flow returns from gst_pad_push() instead of ignoring them.
2800
2801 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2802
2803         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2804         Add missing header.
2805
2806 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2807
2808         * configure.ac:
2809         * gst/deinterlace2/Makefile.am:
2810         * gst/deinterlace2/tvtime/greedyh.asm:
2811         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
2812         Fix compilation on generic x86/amd64 and include deinterlace2 in the
2813         build system. Because of several bugs it's still enabled only
2814         by --enable-experimental.
2815
2816 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
2817
2818         * ext/resindvd/resindvdsrc.c:
2819         * ext/resindvd/resindvdsrc.h:
2820         Schedule NAV packets and activate them with an async clock callback
2821         at the right moment. This makes delayed menu highlights appear
2822         at the correct time and fixes Back To The Future.
2823
2824         When outputting new segment in do_seek(), calculate our position
2825         value properly, so we report the right time when popping in and
2826         out of the menus.
2827
2828         * ext/resindvd/rsnbasesrc.c:
2829         When handling a non-flushing seek, accumulate the segment,
2830         rather than having every seek start from 0 and messing with sync
2831
2832 2008-06-19  Stefan Kost  <ensonic@users.sf.net>
2833
2834         * gst/selector/gstoutputselector.c:
2835         * tests/icles/output-selector-test.c:
2836           Use BOILERPLATE macro and update test to the latest api changes.
2837
2838 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
2839
2840         * examples/app/appsink-src.c: (on_new_buffer_from_source):
2841         Don't use a buffer after unreffing it.
2842
2843 2008-06-18  Stefan Kost  <ensonic@users.sf.net>
2844
2845         * ext/metadata/metadataexif.c:
2846           Add description tag mapping.
2847
2848 2008-06-18  Stefan Kost  <ensonic@users.sf.net>
2849
2850         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2851         * examples/app/appsrc-ra.c:
2852         * examples/app/appsrc-seekable.c:
2853         * examples/app/appsrc-stream.c:
2854         * examples/app/appsrc-stream2.c:
2855         * ext/directfb/dfbvideosink.h:
2856         * ext/metadata/gstbasemetadata.c:
2857         * ext/metadata/gstbasemetadata.h:
2858         * ext/metadata/metadata.c:
2859         * ext/metadata/metadataexif.c:
2860         * ext/theora/theoradec.h:
2861         * gst/deinterlace2/gstdeinterlace2.h:
2862         * gst/deinterlace2/tvtime/speedy.c:
2863         * gst/deinterlace2/tvtime/speedy.h:
2864         * gst/deinterlace2/tvtime/vfir.c:
2865          Fix gtk-doc warnings. Also don't misuse api-doc comments for normal
2866          comments.
2867
2868 2008-06-17  Jan Schmidt  <jan.schmidt@sun.com>
2869
2870         * ext/resindvd/resindvdbin.c:
2871         Parse the URI argument into the device name so dvd:///path/to/image
2872         works.
2873
2874         * ext/resindvd/resindvdsrc.c:
2875         Implement a trivial duration query reporting the current PGC length.
2876
2877         * gst/dvdspu/gstdvdspu.c:
2878         Rename typo in the function name.
2879
2880 2008-06-17  Sebastian Dröge  <slomo@circular-chaos.org>
2881
2882         * configure.ac:
2883         Disable deinterlace2 plugin again which was accidently enabled
2884         with last commit.
2885
2886 2008-06-17  Sebastian Dröge  <slomo@circular-chaos.org>
2887
2888         * configure.ac:
2889         * ext/resindvd/resindvdsrc.h:
2890         Make resindvd work with libdvdnav >= 4.0.0.
2891
2892 2008-06-17  Jan Schmidt  <thaytan@noraisin.net>
2893
2894         * configure.ac:
2895         Check for libdvdnav to build resindvd.
2896
2897         * ext/Makefile.am:
2898         * ext/resindvd/Makefile.am:
2899         * ext/resindvd/gstmpegdefs.h:
2900         * ext/resindvd/gstmpegdemux.c:
2901         * ext/resindvd/gstmpegdemux.h:
2902         * ext/resindvd/gstmpegdesc.c:
2903         * ext/resindvd/gstmpegdesc.h:
2904         * ext/resindvd/gstpesfilter.c:
2905         * ext/resindvd/gstpesfilter.h:
2906         * ext/resindvd/plugin.c:
2907         * ext/resindvd/resin-play:
2908         * ext/resindvd/resindvdbin.c:
2909         * ext/resindvd/resindvdbin.h:
2910         * ext/resindvd/resindvdsrc.c:
2911         * ext/resindvd/resindvdsrc.h:
2912         * ext/resindvd/rsnaudiomunge.c:
2913         * ext/resindvd/rsnaudiomunge.h:
2914         * ext/resindvd/rsnbasesrc.c:
2915         * ext/resindvd/rsnbasesrc.h:
2916         * ext/resindvd/rsnpushsrc.c:
2917         * ext/resindvd/rsnpushsrc.h:
2918         * ext/resindvd/rsnstreamselector.c:
2919         * ext/resindvd/rsnstreamselector.h:
2920
2921         First commit of DVD-Video playback component 'rsndvdbin'
2922         and helper elements.
2923
2924         Use --enable-experimental for now, but feel free to give it a
2925         try using the resin-play script.
2926
2927         * gst/dvdspu/gstdvdspu.c:
2928         Add some extra guards for malformed events.
2929
2930 2008-06-16  David Schleef  <ds@schleef.org>
2931
2932         * configure.ac:
2933         Bump dirac requirement to 0.10 due to api changes.
2934
2935 2008-06-16  Andy Wingo  <wingo@pobox.com>
2936
2937         * gst-libs/gst/app/gstappsrc.c (gst_app_src_set_max_bytes)
2938         (gst_app_src_get_max_bytes, gst_app_src_push_buffer): Use
2939         G_GUINT64_FORMAT. Avoid overflow in get_max_bytes().
2940
2941 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2942
2943         * sys/dvb/gstdvbsrc.c:
2944           Move docblob upwards. Balance tags and restore blank line.
2945
2946 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2947
2948         * sys/dvb/gstdvbsrc.c:
2949         Fix out of date docs.
2950
2951 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2952
2953         Patch from: Vincent Genieux
2954
2955         * gst/mpegtsparse/mpegtsparse.c:
2956         Fix refcount issues, fixes #538560.
2957
2958 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2959
2960         * gst/mpegtsparse/gstmpegdesc.h:
2961         * gst/mpegtsparse/mpegtspacketizer.c:
2962         Parse the extended event descriptor.
2963
2964 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2965
2966         * gst/rtpmanager/gstrtpjitterbuffer.c:
2967         * gst/speed/gstspeed.c:
2968         * gst/speexresample/gstspeexresample.c:
2969         * gst/videosignal/gstvideoanalyse.c:
2970         * gst/videosignal/gstvideodetect.c:
2971         * gst/videosignal/gstvideomark.c:
2972         * sys/dvb/gstdvbsrc.c:
2973         * sys/oss4/oss4-mixer.c:
2974         * sys/oss4/oss4-sink.c:
2975         * sys/oss4/oss4-source.c:
2976         * sys/wininet/gstwininetsrc.c:
2977           Final round of doc updates.
2978
2979 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2980
2981         * gst/deinterlace/gstdeinterlace.c:
2982         * gst/rtpmanager/gstrtpbin.c:
2983         * gst/rtpmanager/gstrtpclient.c:
2984         * gst/rtpmanager/gstrtpjitterbuffer.c:
2985         * gst/rtpmanager/gstrtpptdemux.c:
2986         * gst/rtpmanager/gstrtpsession.c:
2987         * gst/rtpmanager/gstrtpssrcdemux.c:
2988         * gst/sdp/gstsdpdemux.c:
2989           More doc updates. More xrefs.
2990
2991 2008-06-14  Julien Moutte  <julien@fluendo.com>
2992
2993         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
2994         (gst_flv_demux_dispose):
2995         * gst/flv/gstflvdemux.h:
2996         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate),
2997         (gst_flv_parse_tag_audio), (gst_flv_parse_video_negotiate),
2998         (gst_flv_parse_tag_video): Introduce demuxing support for AAC and
2999         H.264/AVC inside FLV.
3000         * sys/dshowdecwrapper/gstdshowaudiodec.c: (gst_dshowaudiodec_init),
3001         (gst_dshowaudiodec_chain), (gst_dshowaudiodec_push_buffer),
3002         (gst_dshowaudiodec_sink_event), (gst_dshowaudiodec_setup_graph):
3003         * sys/dshowdecwrapper/gstdshowaudiodec.h:
3004         * sys/dshowdecwrapper/gstdshowvideodec.c: (gst_dshowvideodec_init),
3005         (gst_dshowvideodec_sink_event), (gst_dshowvideodec_chain),
3006         (gst_dshowvideodec_push_buffer), (gst_dshowvideodec_src_getcaps):
3007         * sys/dshowdecwrapper/gstdshowvideodec.h: Lot of random fixes 
3008         to improve stability (ref counting, safety checks...)
3009
3010 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3011
3012         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_probe_modules):
3013         Disable sipro on 64bits, it crashes.
3014
3015 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3016
3017         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
3018         (close_library), (open_library),
3019         (gst_real_audio_dec_probe_modules), (gst_real_audio_dec_getcaps),
3020         (gst_real_audio_dec_setcaps), (gst_real_audio_dec_init),
3021         (gst_real_audio_dec_change_state), (gst_real_audio_dec_finalize):
3022         Add raversions we can support on the caps.
3023         Refactor the loading of the real codecs like realvideo so that we can
3024         implement probing.
3025         Probe all supported formats by trying to load the .so files, only report
3026         the versions on the caps that we can actually load.
3027
3028         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
3029         (gst_real_video_dec_getcaps), (gst_real_video_dec_setcaps),
3030         (open_library), (close_library),
3031         (gst_real_video_dec_probe_modules),
3032         (gst_real_video_dec_change_state), (gst_real_video_dec_init),
3033         (gst_real_video_dec_finalize), (gst_real_video_dec_class_init):
3034         * gst/real/gstrealvideodec.h:
3035         Change the loading of the library like the audio decoder.
3036         Probe the supported formats by trying to load the .so files and only
3037         report the versions on the caps that we can actually load.
3038
3039 2008-06-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
3040
3041         patch by: Sebastian Pölsterl
3042
3043         * gst/mpegtsparse/mpegtspacketizer.c:
3044         Handle character sets in strings coming from DVB SI according
3045         to the DVB SI spec.
3046
3047 2008-06-13  Stefan Kost  <ensonic@users.sf.net>
3048
3049         * gst/replaygain/gstrganalysis.c:
3050         * gst/replaygain/gstrglimiter.c:
3051         * gst/replaygain/gstrgvolume.c:
3052           More doc updates.
3053
3054 2008-06-13  Stefan Kost  <ensonic@users.sf.net>
3055
3056         * docs/plugins/Makefile.am:
3057         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
3058         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
3059         * docs/plugins/gst-plugins-bad-plugins.args:
3060         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
3061         * docs/plugins/gst-plugins-bad-plugins.interfaces:
3062         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
3063         * docs/plugins/gst-plugins-bad-plugins.signals:
3064         * docs/plugins/inspect/plugin-alsaspdif.xml:
3065         * docs/plugins/inspect/plugin-amrwb.xml:
3066         * docs/plugins/inspect/plugin-app.xml:
3067         * docs/plugins/inspect/plugin-bayer.xml:
3068         * docs/plugins/inspect/plugin-bz2.xml:
3069         * docs/plugins/inspect/plugin-cdaudio.xml:
3070         * docs/plugins/inspect/plugin-cdxaparse.xml:
3071         * docs/plugins/inspect/plugin-dtsdec.xml:
3072         * docs/plugins/inspect/plugin-dvb.xml:
3073         * docs/plugins/inspect/plugin-dvdspu.xml:
3074         * docs/plugins/inspect/plugin-faac.xml:
3075         * docs/plugins/inspect/plugin-faad.xml:
3076         * docs/plugins/inspect/plugin-fbdevsink.xml:
3077         * docs/plugins/inspect/plugin-festival.xml:
3078         * docs/plugins/inspect/plugin-filter.xml:
3079         * docs/plugins/inspect/plugin-flvdemux.xml:
3080         * docs/plugins/inspect/plugin-freeze.xml:
3081         * docs/plugins/inspect/plugin-gsm.xml:
3082         * docs/plugins/inspect/plugin-gstinterlace.xml:
3083         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
3084         * docs/plugins/inspect/plugin-h264parse.xml:
3085         * docs/plugins/inspect/plugin-interleave.xml:
3086         * docs/plugins/inspect/plugin-jack.xml:
3087         * docs/plugins/inspect/plugin-ladspa.xml:
3088         * docs/plugins/inspect/plugin-metadata.xml:
3089         * docs/plugins/inspect/plugin-mms.xml:
3090         * docs/plugins/inspect/plugin-modplug.xml:
3091         * docs/plugins/inspect/plugin-mpeg2enc.xml:
3092         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
3093         * docs/plugins/inspect/plugin-mpegtsparse.xml:
3094         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
3095         * docs/plugins/inspect/plugin-musepack.xml:
3096         * docs/plugins/inspect/plugin-musicbrainz.xml:
3097         * docs/plugins/inspect/plugin-mve.xml:
3098         * docs/plugins/inspect/plugin-mythtv.xml
3099         * docs/plugins/inspect/plugin-nas.xml:
3100         * docs/plugins/inspect/plugin-neon.xml:
3101         * docs/plugins/inspect/plugin-nsfdec.xml:
3102         * docs/plugins/inspect/plugin-nuvdemux.xml:
3103         * docs/plugins/inspect/plugin-oss4.xml
3104         * docs/plugins/inspect/plugin-rawparse.xml:
3105         * docs/plugins/inspect/plugin-real.xml:
3106         * docs/plugins/inspect/plugin-replaygain.xml:
3107         * docs/plugins/inspect/plugin-rfbsrc.xml:
3108         * docs/plugins/inspect/plugin-sdl.xml:
3109         * docs/plugins/inspect/plugin-sdp.xml:
3110         * docs/plugins/inspect/plugin-selector.xml:
3111         * docs/plugins/inspect/plugin-sndfile.xml:
3112         * docs/plugins/inspect/plugin-soundtouch.xml:
3113         * docs/plugins/inspect/plugin-spcdec.xml:
3114         * docs/plugins/inspect/plugin-speed.xml:
3115         * docs/plugins/inspect/plugin-speexresample.xml:
3116         * docs/plugins/inspect/plugin-stereo.xml:
3117         * docs/plugins/inspect/plugin-subenc.xml
3118         * docs/plugins/inspect/plugin-timidity.xml:
3119         * docs/plugins/inspect/plugin-tta.xml:
3120         * docs/plugins/inspect/plugin-vcdsrc.xml:
3121         * docs/plugins/inspect/plugin-videosignal.xml:
3122         * docs/plugins/inspect/plugin-vmnc.xml:
3123         * docs/plugins/inspect/plugin-wildmidi.xml:
3124         * docs/plugins/inspect/plugin-x264.xml:
3125         * docs/plugins/inspect/plugin-xvid.xml:
3126         * docs/plugins/inspect/plugin-y4menc.xml:
3127         * ext/amrwb/gstamrwbdec.c:
3128         * ext/amrwb/gstamrwbenc.c:
3129         * ext/amrwb/gstamrwbparse.c:
3130         * ext/dc1394/gstdc1394.c:
3131         * ext/directfb/dfbvideosink.c:
3132         * ext/ivorbis/vorbisdec.c:
3133         * ext/jack/gstjackaudiosink.c:
3134         * ext/mpeg2enc/gstmpeg2enc.cc:
3135         * ext/mplex/gstmplex.cc:
3136         * ext/musicbrainz/gsttrm.c:
3137         * ext/mythtv/gstmythtvsrc.c:
3138         * ext/theora/theoradec.c:
3139         * ext/timidity/gsttimidity.c:
3140         * ext/timidity/gstwildmidi.c:
3141         * gst-libs/gst/app/gstappsink.c:
3142         * gst/deinterlace/gstdeinterlace.c:
3143         * gst/dvdspu/gstdvdspu.c:
3144         * gst/festival/gstfestival.c:
3145         * gst/freeze/gstfreeze.c:
3146         * gst/interleave/deinterleave.c:
3147         * gst/interleave/interleave.c:
3148         * gst/modplug/gstmodplug.cc:
3149         * gst/nuvdemux/gstnuvdemux.c:
3150           Add missing elements to docs. Fix doc-markup: use convinience syntax
3151           for examples (produces valid docbook), add several refsec2 when we
3152           have several titles. Fix some types.
3153
3154 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3155
3156         * examples/app/.cvsignore:
3157         * examples/app/Makefile.am:
3158         * examples/app/appsink-src.c: (on_new_buffer_from_source),
3159         (on_source_message), (on_sink_message), (main):
3160         Add beefed up example app from bug #413418. It now also uses appsink
3161         instead of fakesink for more ultimate coolness.
3162
3163         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
3164         (gst_app_src_init), (gst_app_src_set_property),
3165         (gst_app_src_get_property), (gst_app_src_unlock),
3166         (gst_app_src_unlock_stop), (gst_app_src_create),
3167         (gst_app_src_set_max_bytes), (gst_app_src_push_buffer),
3168         (gst_app_src_end_of_stream):
3169         * gst-libs/gst/app/gstappsrc.h:
3170         Add block property to allow push based implementation to block when we
3171         fill up the appsrc queues.
3172         Emit the enough-data signal while releasing our lock.
3173
3174 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3175
3176         * examples/app/.cvsignore:
3177           Ignore more.
3178
3179 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3180
3181         * ext/dc1394/gstdc1394.c:
3182         * ext/ivorbis/vorbisdec.c:
3183         * ext/jack/gstjackaudiosink.c:
3184         * ext/metadata/gstmetadatademux.c:
3185         * ext/mythtv/gstmythtvsrc.c:
3186         * ext/theora/theoradec.c:
3187         * gst-libs/gst/app/gstappsink.c:
3188         * gst/bayer/gstbayer2rgb.c:
3189         * gst/deinterlace/gstdeinterlace.c:
3190         * gst/rawparse/gstaudioparse.c:
3191         * gst/rawparse/gstvideoparse.c:
3192         * gst/rtpmanager/gstrtpbin.c:
3193         * gst/rtpmanager/gstrtpclient.c:
3194         * gst/rtpmanager/gstrtpjitterbuffer.c:
3195         * gst/rtpmanager/gstrtpptdemux.c:
3196         * gst/rtpmanager/gstrtpsession.c:
3197         * gst/rtpmanager/gstrtpssrcdemux.c:
3198         * gst/selector/gstinputselector.c:
3199         * gst/selector/gstoutputselector.c:
3200         * gst/videosignal/gstvideoanalyse.c:
3201         * gst/videosignal/gstvideodetect.c:
3202         * gst/videosignal/gstvideomark.c:
3203         * sys/oss4/oss4-mixer.c:
3204         * sys/oss4/oss4-sink.c:
3205         * sys/oss4/oss4-source.c:
3206           Do not use short_description in section docs for elements. We extract
3207           them from element details and there will be warnings if they differ.
3208           Also fixing up the ChangeLog order.
3209
3210 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3211
3212         Patch by: Sebastien Merle <sylane at gmail dot com>
3213
3214         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_chain):
3215         Fix the sign of the data we pass to the decoder so that the decoder
3216         compiles with newer reference code as well. Fixes #528618.
3217
3218 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3219
3220         * tests/icles/test-oss4.c:
3221           Include stdlib.h.
3222
3223 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3224
3225         Based on a patch by: Martin Eikermann <meiker at upb dot de>
3226
3227         * gst/deinterlace2/Makefile.am:
3228         * gst/deinterlace2/gstdeinterlace2.c:
3229         (gst_deinterlace2_method_get_type),
3230         (gst_deinterlace2_fields_get_type),
3231         (gst_deinterlace2_field_layout_get_type),
3232         (gst_deinterlace2_base_init), (gst_deinterlace2_class_init),
3233         (gst_deinterlace2_init), (gst_deinterlace2_set_method),
3234         (gst_deinterlace2_set_property), (gst_deinterlace2_get_property),
3235         (gst_deinterlace2_finalize), (gst_deinterlace2_pop_history),
3236         (gst_deinterlace2_head_history), (gst_deinterlace2_push_history),
3237         (gst_deinterlace2_deinterlace_scanlines), (gst_deinterlace2_chain),
3238         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
3239         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
3240         (gst_deinterlace2_src_query), (gst_deinterlace2_src_query_types),
3241         (plugin_init):
3242         * gst/deinterlace2/gstdeinterlace2.h:
3243         * gst/deinterlace2/tvtime/greedy.c: (copy_scanline),
3244         (deinterlace_greedy_packed422_scanline_mmxext),
3245         (dscaler_greedyl_get_method):
3246         * gst/deinterlace2/tvtime/greedyh.asm:
3247         * gst/deinterlace2/tvtime/greedyh.c:
3248         (deinterlace_frame_di_greedyh), (dscaler_greedyh_get_method),
3249         (greedyh_init), (greedyh_filter_mmx), (greedyh_filter_3dnow),
3250         (greedyh_filter_sse):
3251         * gst/deinterlace2/tvtime/greedyh.h:
3252         * gst/deinterlace2/tvtime/greedyhmacros.h:
3253         * gst/deinterlace2/tvtime/mmx.h:
3254         * gst/deinterlace2/tvtime/plugins.h:
3255         * gst/deinterlace2/tvtime/speedtools.h:
3256         * gst/deinterlace2/tvtime/speedy.c: (multiply_alpha), (clip255),
3257         (comb_factor_packed422_scanline_mmx),
3258         (diff_factor_packed422_scanline_c),
3259         (diff_factor_packed422_scanline_mmx),
3260         (diff_packed422_block8x8_mmx), (diff_packed422_block8x8_c),
3261         (packed444_to_packed422_scanline_c),
3262         (packed422_to_packed444_scanline_c),
3263         (packed422_to_packed444_rec601_scanline_c),
3264         (vfilter_chroma_121_packed422_scanline_mmx),
3265         (vfilter_chroma_121_packed422_scanline_c),
3266         (vfilter_chroma_332_packed422_scanline_mmx),
3267         (vfilter_chroma_332_packed422_scanline_c),
3268         (kill_chroma_packed422_inplace_scanline_mmx),
3269         (kill_chroma_packed422_inplace_scanline_c),
3270         (invert_colour_packed422_inplace_scanline_mmx),
3271         (invert_colour_packed422_inplace_scanline_c),
3272         (mirror_packed422_inplace_scanline_c),
3273         (interpolate_packed422_scanline_c),
3274         (convert_uyvy_to_yuyv_scanline_mmx),
3275         (convert_uyvy_to_yuyv_scanline_c),
3276         (interpolate_packed422_scanline_mmx),
3277         (interpolate_packed422_scanline_mmxext),
3278         (blit_colour_packed422_scanline_c),
3279         (blit_colour_packed422_scanline_mmx),
3280         (blit_colour_packed422_scanline_mmxext),
3281         (blit_colour_packed4444_scanline_c),
3282         (blit_colour_packed4444_scanline_mmx),
3283         (blit_colour_packed4444_scanline_mmxext), (small_memcpy),
3284         (speedy_memcpy_c), (speedy_memcpy_mmx), (speedy_memcpy_mmxext),
3285         (blit_packed422_scanline_c), (blit_packed422_scanline_mmx),
3286         (blit_packed422_scanline_mmxext),
3287         (composite_colour4444_alpha_to_packed422_scanline_c),
3288         (composite_colour4444_alpha_to_packed422_scanline_mmxext),
3289         (composite_packed4444_alpha_to_packed422_scanline_c),
3290         (composite_packed4444_alpha_to_packed422_scanline_mmxext),
3291         (composite_packed4444_to_packed422_scanline_c),
3292         (composite_packed4444_to_packed422_scanline_mmxext),
3293         (composite_alphamask_to_packed4444_scanline_c),
3294         (composite_alphamask_to_packed4444_scanline_mmxext),
3295         (composite_alphamask_alpha_to_packed4444_scanline_c),
3296         (premultiply_packed4444_scanline_c),
3297         (premultiply_packed4444_scanline_mmxext),
3298         (blend_packed422_scanline_c), (blend_packed422_scanline_mmxext),
3299         (quarter_blit_vertical_packed422_scanline_mmxext),
3300         (quarter_blit_vertical_packed422_scanline_c),
3301         (subpix_blit_vertical_packed422_scanline_c),
3302         (a8_subpix_blit_scanline_c), (myround), (init_RGB_to_YCbCr_tables),
3303         (init_YCbCr_to_RGB_tables), (rgb24_to_packed444_rec601_scanline_c),
3304         (rgba32_to_packed4444_rec601_scanline_c),
3305         (packed444_to_rgb24_rec601_scanline_c),
3306         (packed444_to_nonpremultiplied_packed4444_scanline_c),
3307         (aspect_adjust_packed4444_scanline_c), (setup_speedy_calls),
3308         (speedy_get_accel):
3309         * gst/deinterlace2/tvtime/speedy.h:
3310         * gst/deinterlace2/tvtime/sse.h:
3311         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy),
3312         (deinterlace_frame_di_tomsmocomp), (dscaler_tomsmocomp_get_method),
3313         (tomsmocomp_init), (tomsmocomp_filter_mmx),
3314         (tomsmocomp_filter_3dnow), (tomsmocomp_filter_sse):
3315         * gst/deinterlace2/tvtime/tomsmocomp.h:
3316         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoop0A.inc:
3317         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
3318         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopEdgeA.inc:
3319         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopEdgeA8.inc:
3320         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA.inc:
3321         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA2.inc:
3322         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA6.inc:
3323         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddAH.inc:
3324         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddAH2.inc:
3325         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
3326         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopVA.inc:
3327         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopVAH.inc:
3328         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
3329         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
3330         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
3331         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
3332         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line),
3333         (deinterlace_scanline_vfir), (copy_scanline),
3334         (dscaler_vfir_get_method):
3335         * gst/deinterlace2/tvtime/x86-64_macros.inc:
3336         Add a deinterlacer plugin based on the tvtime/DScaler deinterlacer,
3337         which was relicensed to LGPL for GStreamer and in theory provides
3338         better and faster results than the simple deinterlace element.
3339         Fixes bug #163578.
3340
3341         Ported to GStreamer 0.10 but still not enabled or included in the
3342         build system by default because of bad artefacts caused by a bug
3343         somewhere and as it can be only build on x86/amd64 ATM and requires
3344         special CFLAGS. Will be fixed soon.
3345
3346 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3347
3348         Based on a patch by: Ryan Houdek <Sonicadvance1 at GMAIL dot COM>
3349
3350         * ext/timidity/gstwildmidi.c: (gst_wildmidi_init),
3351         (gst_wildmidi_change_state), (plugin_init):
3352         * ext/timidity/gstwildmidi.h:
3353         Initialize wildmidi only once in the plugin init function instead
3354         of once for every instance. The second and following calls to the
3355         wildmidi initialization function will fail. Fixes bug #525613.
3356
3357         Also don't register the element at all if wildmidi initialization
3358         fails.
3359
3360 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3361
3362         * ext/soundtouch/gstpitch.cc:
3363         Call gst_element_no_more_pads() after all pads are added.
3364
3365 2008-06-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3366
3367         * gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
3368         (gst_raw_parse_loop), (gst_raw_parse_handle_seek_push),
3369         (gst_raw_parse_handle_seek_pull):
3370         Add simple reverse playback.
3371
3372 2008-06-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3373
3374         * gst/rawparse/gstrawparse.c: (gst_raw_parse_reset),
3375         (gst_raw_parse_push_buffer), (gst_raw_parse_chain),
3376         (gst_raw_parse_loop), (gst_raw_parse_sink_activatepull),
3377         (gst_raw_parse_convert), (gst_raw_parse_sink_event),
3378         (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
3379         (gst_raw_parse_src_query), (gst_raw_parse_get_fps):
3380         * gst/rawparse/gstrawparse.h:
3381         Fix seeking, timestamps, duration and some more. Fixes #536309.
3382
3383 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3384
3385         * examples/app/Makefile.am:
3386         * examples/app/appsrc-ra.c: (feed_data), (seek_data),
3387         (found_source), (bus_message), (main):
3388         * examples/app/appsrc-seekable.c: (feed_data), (seek_data),
3389         (found_source), (bus_message), (main):
3390         * examples/app/appsrc-stream2.c: (feed_data), (found_source),
3391         (bus_message), (main):
3392         Added 3 more example application for using appsrc in random-access mode,
3393         pull-mode streaming and pull mode seekable.
3394
3395         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
3396         (gst_app_src_start), (gst_app_src_do_get_size),
3397         (gst_app_src_create):
3398         * gst-libs/gst/app/gstappsrc.h:
3399         Make stream-type property writable.
3400         Unset flushing when starting so that we reuse appsrc.
3401         Inform basesrc about the configured size.
3402         Emit seek-data signal when we are going to a different offset in
3403         random-access mode.
3404
3405 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3406
3407         * examples/app/appsrc-stream.c: (found_source), (main):
3408         Use deep-notify until we can depend on a playbin2 with support for the
3409         source property.
3410
3411 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3412
3413         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_init),
3414         (gst_rtp_bin_finalize), (gst_rtp_bin_change_state):
3415         Fix deadlock when shutting down, use a new lock instead to properly
3416         shutdown.
3417
3418 2008-06-05  Wim Taymans  <wim.taymans@collabora.co.uk>
3419
3420         * examples/app/.cvsignore:
3421         * examples/app/Makefile.am:
3422         * examples/app/appsrc-stream.c: (read_data), (start_feed),
3423         (stop_feed), (found_source), (bus_message), (main):
3424         Added an example on how to use appsrc in playbin in streaming mode from
3425         an mmapped file.
3426
3427         * examples/app/appsrc_ex.c: (main):
3428         Set pipeline to NULL to free queued buffers.
3429
3430         * gst-libs/gst/app/gstapp-marshal.list:
3431         * gst-libs/gst/app/gstappsrc.c: (stream_type_get_type), (_do_init),
3432         (gst_app_src_class_init), (gst_app_src_init),
3433         (gst_app_src_flush_queued), (gst_app_src_dispose),
3434         (gst_app_src_set_property), (gst_app_src_get_property),
3435         (gst_app_src_unlock), (gst_app_src_unlock_stop),
3436         (gst_app_src_start), (gst_app_src_stop), (gst_app_src_is_seekable),
3437         (gst_app_src_check_get_range), (gst_app_src_do_seek),
3438         (gst_app_src_create), (gst_app_src_set_stream_type),
3439         (gst_app_src_get_stream_type), (gst_app_src_set_max_bytes),
3440         (gst_app_src_get_max_bytes), (gst_app_src_push_buffer),
3441         (gst_app_src_end_of_stream), (gst_app_src_uri_get_type),
3442         (gst_app_src_uri_get_protocols), (gst_app_src_uri_get_uri),
3443         (gst_app_src_uri_set_uri), (gst_app_src_uri_handler_init):
3444         * gst-libs/gst/app/gstappsrc.h:
3445         Measure max queue size in bytes instead.
3446         Add support for 3 modes of operation, streaming, seekable and
3447         random-access, making basesrc handle the scheduling modes for each.
3448         Add appsrc:// uri handler so that automatic plugging can be done from
3449         playbin2 or uridecodebin, for example.
3450         Added support for custom segment formats.
3451         Add support for push and pull based operations from the application.
3452         Expand the methods so that errors can be detected.
3453         Flush the queued buffers on seeks and when shutting down.
3454         Add signals to inform the app that a seek must happen.
3455
3456 2008-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
3457
3458         * gst/interleave/deinterleave.c: (gst_deinterleave_add_new_pads),
3459         (gst_deinterleave_src_query):
3460         * gst/interleave/interleave.c: (gst_interleave_src_query_duration),
3461         (gst_interleave_src_query):
3462         Properly implement duration and position queries in bytes format. We
3463         have to take the upstream reply and divide/multiply it by the number
3464         of channels to get the correct result.
3465
3466 2008-06-04  Michael Smith <msmith@songbirdnest.com>
3467
3468         * sys/dshowvideosink/dshowvideofakesrc.cpp:
3469         * sys/dshowvideosink/dshowvideofakesrc.h:
3470         * sys/dshowvideosink/dshowvideosink.cpp:
3471         * sys/dshowvideosink/dshowvideosink.h:
3472           Fix up copyright notice on new plugin.
3473
3474 2008-06-04  David Schleef  <ds@schleef.org>
3475
3476         * ext/dirac/gstdiracenc.cc: Update properties for recent
3477           dirac changes.  Patch from Jonathan Rosser.
3478
3479 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
3480
3481         * ext/x264/gstx264enc.c: (gst_x264_enc_header_buf),
3482           (gst_x264_enc_sink_event), (gst_x264_enc_chain),
3483           (gst_x264_enc_encode_frame):
3484           Try harder not to crash when we get an EOS event but haven't set
3485           up the encoder yet (as may happen when upstream errors out with
3486           not-negotiated, for example). Also, always push the EOS event
3487           downstream.
3488
3489 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
3490
3491         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3492         (gst_interleave_pad_get_property), (gst_interleave_pad_class_init),
3493         (gst_interleave_request_new_pad), (gst_interleave_release_pad):
3494         * gst/interleave/interleave.h:
3495         Use an always increasing integer for the number in the name of the
3496         requested sink pads to guarantuee a unique name. Add a "channel"
3497         property to GstInterleavePad to make it possible for applications
3498         to retrieve the channel number in the output for every pad.
3499
3500         Use g_type_register_static_simple() instead of
3501         g_type_register_static() to save some relocations.
3502
3503 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3504
3505         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3506         (gst_interleave_change_state):
3507         Stop GstCollectPads before calling the parent's state change function
3508         when going from PAUSED to READY as we otherwise deadlock.
3509         Fixes bug #536258.
3510
3511 2008-06-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3512
3513         * gst/h264parse/gsth264parse.c: (gst_nal_bs_init),
3514         (gst_h264_parse_sink_setcaps), (gst_h264_parse_chain_forward),
3515         (gst_h264_parse_queue_buffer), (gst_h264_parse_chain_reverse),
3516         (gst_h264_parse_chain):
3517         * gst/h264parse/gsth264parse.h:
3518         Parse codec_data and use the nalu_size_length field to get the NALU
3519         length in packetized h264.
3520         When queueing a packetized buffer in reverse mode, don't unref the
3521         buffer twice.
3522         Avoid accessing the buffer TIMESTAMP field after we pushed it on
3523         the adaptor.
3524
3525 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3526
3527         * gst/interleave/interleave.c:
3528         (gst_interleave_check_channel_positions),
3529         (gst_interleave_set_channel_positions),
3530         (gst_interleave_class_init):
3531         Use new gst_audio_check_channel_positions() function and register
3532         the GstInterleavePad type from a threadsafe context.
3533
3534 2008-06-02  Michael Smith <msmith@songbirdnest.com>
3535
3536         * configure.ac:
3537           Revert accidental addition in configure.ac. Sorry.
3538
3539 2008-06-02  Michael Smith <msmith@songbirdnest.com>
3540
3541         * configure.ac:
3542         * sys/Makefile.am:
3543         * sys/dshowvideosink/Makefile.am:
3544         * sys/dshowvideosink/README:
3545         * sys/dshowvideosink/dshowvideofakesrc.cpp:
3546         * sys/dshowvideosink/dshowvideofakesrc.h:
3547         * sys/dshowvideosink/dshowvideosink.cpp:
3548         * sys/dshowvideosink/dshowvideosink.h:
3549         Add a new win32 videosink. Uses the DirectShow renderers for
3550         high-performance video rendering on win32.
3551         Currently only supports some YUV formats.
3552         Rank PRIMARY, since it's much more useful for the common cases that the
3553         directdraw sink (which only does RGB).
3554
3555 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
3556
3557         * ext/spc/Makefile.am:
3558           Dist tag.h
3559
3560 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3561
3562         * ext/faad/gstfaad.c: (gst_faad_sink_event):
3563         Always drain before activating the new segment.
3564
3565 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
3566
3567         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3568         (gst_interleave_finalize), (gst_audio_check_channel_positions),
3569         (gst_interleave_set_channel_positions),
3570         (gst_interleave_class_init), (gst_interleave_init),
3571         (gst_interleave_set_property), (gst_interleave_get_property),
3572         (gst_interleave_request_new_pad), (gst_interleave_release_pad),
3573         (gst_interleave_sink_setcaps), (gst_interleave_src_query_duration),
3574         (gst_interleave_src_query_latency), (gst_interleave_collected):
3575         * gst/interleave/interleave.h:
3576         Allow setting channel positions via a property and allow using the
3577         channel positions on the input as the channel positions of the output.
3578
3579         Fix some broken logic and memory leaks.
3580
3581         * tests/check/Makefile.am:
3582         * tests/check/elements/interleave.c: (src_handoff_float32),
3583         (sink_handoff_float32), (GST_START_TEST), (interleave_suite):
3584         Add unit tests for checking correct handling of channel positions.
3585
3586 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3587
3588         * ext/faad/gstfaad.c: (gst_faad_dispose), (clear_queued),
3589         (flush_queued), (gst_faad_drain), (gst_faad_do_raw_seek),
3590         (gst_faad_src_event), (gst_faad_sink_event), (gst_faad_chain),
3591         (gst_faad_change_state):
3592         * ext/faad/gstfaad.h:
3593         Add basic reverse playback support.
3594         Clear decoder state after disconts.
3595         Remove some unused code.
3596         Mark output buffers with a discont after a decoding error.
3597
3598 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
3599
3600         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3601
3602         * gst/mpeg4videoparse/mpeg4videoparse.c:
3603         (gst_mpeg4vparse_handle_vos):
3604         Fix mpeg4videoparse on big endian architectures. Fixes bug #536042.
3605
3606 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
3607
3608         * tests/check/elements/mplex.c: (setup_src_pad),
3609         (teardown_src_pad):
3610         Don't use the deprecated gst_element_get_pad().
3611
3612 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
3613
3614         * examples/directfb/gstdfb.c: (main):
3615         Don't use the deprecated gst_element_get_pad().
3616
3617 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3618
3619         Based on patch by: <onkarshinde at gmail dot com>
3620
3621         * sys/vcd/vcdsrc.c: (gst_vcdsrc_uri_get_uri),
3622         (gst_vcdsrc_uri_set_uri):
3623         Allow the track to be set by using the uri. Fixes #535043.
3624
3625 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
3626
3627         * gst/interleave/interleave.c: (gst_interleave_src_query_duration),
3628         (gst_interleave_src_query_latency), (gst_interleave_src_query):
3629         Implement latency query.
3630
3631 2008-05-27  Thijs Vermeir  <thijsvermeir@gmail.com>
3632
3633         * gst/mpegvideoparse/mpegvideoparse.c:
3634         Add GST_BUFFER_FLAG_DELTA_UNIT to not I frame buffers
3635
3636 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3637
3638         * gst/rtpmanager/gstrtpbin.c:
3639         (gst_rtp_bin_propagate_property_to_jitterbuffer),
3640         (gst_rtp_bin_change_state), (new_payload_found),
3641         (new_ssrc_pad_found):
3642         Break out of callbacks when we are shutting down.
3643         Make sure no state changes can happen when we reconfigure.
3644
3645 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3646
3647         * configure.ac:
3648         Require CVS core and base for new audio clock reset method.
3649
3650         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_change_state):
3651         Reset the audio clock. See #521761.
3652
3653 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3654
3655         * ext/jack/gstjackaudiosink.c:
3656         (gst_jack_audio_sink_allocate_channels):
3657         Include the element name in the port name to avoid duplicate port names.
3658
3659 2008-05-26  Sebastian Dröge  <slomo@circular-chaos.org>
3660
3661         * gst/interleave/deinterleave.c:
3662         Add another example launch line.
3663
3664         * gst/interleave/interleave.c: (interleave_24),
3665         (gst_interleave_finalize), (gst_interleave_base_init),
3666         (gst_interleave_class_init), (gst_interleave_init),
3667         (gst_interleave_request_new_pad), (gst_interleave_release_pad),
3668         (gst_interleave_change_state), (__remove_channels),
3669         (__set_channels), (gst_interleave_sink_getcaps),
3670         (gst_interleave_set_process_function),
3671         (gst_interleave_sink_setcaps), (gst_interleave_sink_event),
3672         (gst_interleave_src_query_duration), (gst_interleave_src_query),
3673         (forward_event_func), (forward_event), (gst_interleave_src_event),
3674         (gst_interleave_collected):
3675         * gst/interleave/interleave.h:
3676         Major rewrite of interleave using GstCollectpads. This new version
3677         also supports almost all raw audio formats and has better caps
3678         negotiation. Fixes bug #506594.
3679
3680         Also update docs and add some more examples.
3681
3682         * tests/check/elements/interleave.c: (interleave_chain_func),
3683         (GST_START_TEST), (src_handoff_float32), (sink_handoff_float32),
3684         (interleave_suite):
3685         Add some more extensive unit tests for interleave.
3686
3687 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3688
3689         * gst/rtpmanager/gstrtpjitterbuffer.c:
3690         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
3691         When checking the seqnum, reset the jitterbuffer if the gap is too big,
3692         we need to do this so that we can better handle a restarted source.
3693         Fix some comments.
3694
3695         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew),
3696         (rtp_jitter_buffer_insert):
3697         Tweak the skew resync diff.
3698         Use our working seqnum compare function in -base.
3699         Rework the jitterbuffer insert code to make it clearer and more
3700         performant by only retrieving the seqnum of the input buffer once and by
3701         adding some G_LIKELY compiler hints.
3702         Improve debugging for duplicate packets.
3703
3704         * gst/rtpmanager/rtpsource.c: (rtp_source_process_rtp):
3705         Fix a comment, we don't do skew correction here..
3706
3707 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3708
3709         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
3710
3711         * gst/rtpmanager/gstrtpbin.c:
3712         (gst_rtp_bin_propagate_property_to_jitterbuffer),
3713         (gst_rtp_bin_set_property):
3714         Propagate the do-lost and latency properties to the jitterbuffers when
3715         they are changed on rtpbin.
3716
3717 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3718
3719         * examples/switch/switcher.c: (switch_timer):
3720         * gst/replaygain/gstrgvolume.c: (gst_rg_volume_init):
3721         * gst/rtpmanager/gstrtpclient.c: (create_stream):
3722         * gst/sdp/gstsdpdemux.c: (gst_sdp_demux_stream_configure_udp),
3723         (gst_sdp_demux_stream_configure_udp_sink):
3724         * tests/check/elements/deinterleave.c: (GST_START_TEST),
3725         (pad_added_setup_data_check_float32_8ch_cb):
3726         * tests/check/elements/rganalysis.c: (send_eos_event),
3727         (send_tag_event):
3728         Don't use _gst_pad().
3729
3730 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
3731
3732         * docs/plugins/Makefile.am:
3733         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
3734         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
3735         * docs/plugins/gst-plugins-bad-plugins.args:
3736         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
3737         * docs/plugins/gst-plugins-bad-plugins.interfaces:
3738         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
3739         * docs/plugins/gst-plugins-bad-plugins.signals:
3740         * docs/plugins/inspect/plugin-alsaspdif.xml:
3741         * docs/plugins/inspect/plugin-amrwb.xml:
3742         * docs/plugins/inspect/plugin-app.xml:
3743         * docs/plugins/inspect/plugin-bayer.xml:
3744         * docs/plugins/inspect/plugin-bz2.xml:
3745         * docs/plugins/inspect/plugin-cdaudio.xml:
3746         * docs/plugins/inspect/plugin-cdxaparse.xml:
3747         * docs/plugins/inspect/plugin-dfbvideosink.xml:
3748         * docs/plugins/inspect/plugin-dtsdec.xml:
3749         * docs/plugins/inspect/plugin-dvb.xml:
3750         * docs/plugins/inspect/plugin-dvdspu.xml:
3751         * docs/plugins/inspect/plugin-faac.xml:
3752         * docs/plugins/inspect/plugin-faad.xml:
3753         * docs/plugins/inspect/plugin-fbdevsink.xml:
3754         * docs/plugins/inspect/plugin-festival.xml:
3755         * docs/plugins/inspect/plugin-filter.xml:
3756         * docs/plugins/inspect/plugin-flvdemux.xml:
3757         * docs/plugins/inspect/plugin-freeze.xml:
3758         * docs/plugins/inspect/plugin-gsm.xml:
3759         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
3760         * docs/plugins/inspect/plugin-h264parse.xml:
3761         * docs/plugins/inspect/plugin-interleave.xml:
3762         * docs/plugins/inspect/plugin-jack.xml:
3763         * docs/plugins/inspect/plugin-ladspa.xml:
3764         * docs/plugins/inspect/plugin-metadata.xml:
3765         * docs/plugins/inspect/plugin-mms.xml:
3766         * docs/plugins/inspect/plugin-modplug.xml:
3767         * docs/plugins/inspect/plugin-mpeg2enc.xml:
3768         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
3769         * docs/plugins/inspect/plugin-mpegtsparse.xml:
3770         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
3771         * docs/plugins/inspect/plugin-musepack.xml:
3772         * docs/plugins/inspect/plugin-musicbrainz.xml:
3773         * docs/plugins/inspect/plugin-mve.xml:
3774         * docs/plugins/inspect/plugin-nas.xml:
3775         * docs/plugins/inspect/plugin-neon.xml:
3776         * docs/plugins/inspect/plugin-nsfdec.xml:
3777         * docs/plugins/inspect/plugin-nuvdemux.xml:
3778         * docs/plugins/inspect/plugin-rawparse.xml:
3779         * docs/plugins/inspect/plugin-real.xml:
3780         * docs/plugins/inspect/plugin-replaygain.xml:
3781         * docs/plugins/inspect/plugin-rfbsrc.xml:
3782         * docs/plugins/inspect/plugin-sdl.xml:
3783         * docs/plugins/inspect/plugin-sdp.xml:
3784         * docs/plugins/inspect/plugin-selector.xml:
3785         * docs/plugins/inspect/plugin-sndfile.xml:
3786         * docs/plugins/inspect/plugin-soundtouch.xml:
3787         * docs/plugins/inspect/plugin-spcdec.xml:
3788         * docs/plugins/inspect/plugin-speed.xml:
3789         * docs/plugins/inspect/plugin-speexresample.xml:
3790         * docs/plugins/inspect/plugin-stereo.xml:
3791         * docs/plugins/inspect/plugin-tta.xml:
3792         * docs/plugins/inspect/plugin-vcdsrc.xml:
3793         * docs/plugins/inspect/plugin-videosignal.xml:
3794         * docs/plugins/inspect/plugin-vmnc.xml:
3795         * docs/plugins/inspect/plugin-wildmidi.xml:
3796         * docs/plugins/inspect/plugin-x264.xml:
3797         * docs/plugins/inspect/plugin-xvid.xml:
3798         * docs/plugins/inspect/plugin-y4menc.xml:
3799         Add interleave/deinterleave to the docs and while at that
3800         run make update in docs/plugins.
3801
3802         * gst/interleave/deinterleave.c:
3803         Add a parapraph about using a queue and audioconvert after the source
3804         pads to the docs.
3805
3806 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
3807
3808         * gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
3809         (gst_deinterleave_class_init), (gst_deinterleave_init),
3810         (gst_deinterleave_add_new_pads), (gst_deinterleave_sink_getcaps):
3811         * gst/interleave/deinterleave.h:
3812         Don't set a getcaps() function on the src pads as it's not required
3813         and the default getcaps() function returns the correct results for
3814         our src pads.
3815
3816         Complete documentation and add myself to the authors of the element.
3817
3818 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
3819
3820         * tests/icles/.cvsignore:
3821         * tests/icles/Makefile.am:
3822         * tests/icles/test-oss4.c: (opt_show_mixer_messages), (WAIT_TIME),
3823           (show_mixer_messages), (probe_mixer_tracks), (probe_pad),
3824           (probe_details), (probe_element), (main):
3825           Small oss4 test that probes for available devices and retrieves
3826           their caps and mixer tracks and all that. Also allows testing of
3827           mixer change messages on the bus.
3828
3829 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
3830
3831         * sys/oss4/oss4-mixer.c: (gst_oss4_mixer_open):
3832         * sys/oss4/oss4-property-probe.c:
3833           (gst_oss4_property_probe_find_device_name),
3834           (gst_oss4_property_probe_find_device_name_nofd):
3835         * sys/oss4/oss4-property-probe.h:
3836         * sys/oss4/oss4-sink.c: (gst_oss4_sink_get_property):
3837         * sys/oss4/oss4-source.c: (gst_oss4_source_get_property):
3838           Make device-name probing in NULL state work better (e.g. for the
3839           gnome-control-center sound capplet).
3840
3841 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
3842
3843         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3844
3845         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_push),
3846         (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain),
3847         (gst_mpeg4vparse_change_state):
3848         Move some code around to integrate the startcode searching with the
3849         other bits of parsing, avoid a whole bunch of peeks.
3850         Get rid of invalid data that should not happen according to the specs.
3851         Fixes #533559.
3852
3853 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3854
3855         Patch by: Bastien Nocera <hadess at hadess dot net>
3856
3857         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_class_init),
3858         (gst_mythtv_src_init), (gst_mythtv_src_clear),
3859         (do_read_request_response), (gst_mythtv_src_create),
3860         (gst_mythtv_src_start):
3861         Correctly set duration to get a more correct seek bar in totem.
3862
3863         Disable query and event functions as they don't work and do some
3864         smaller cleanup.
3865
3866         Fixes bug #533736.
3867
3868 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3869
3870         Patch by: Brian Koropoff <brianhk at cs dot washington dot edu>
3871
3872         * ext/spc/Makefile.am:
3873         * ext/spc/gstspc.c: (gst_spc_dec_class_init),
3874         (gst_spc_dec_src_query_type), (gst_spc_dec_init),
3875         (gst_spc_dec_dispose), (gst_spc_dec_sink_event),
3876         (gst_spc_duration), (gst_spc_fadeout), (gst_spc_dec_src_event),
3877         (gst_spc_dec_src_query), (spc_play), (spc_setup):
3878         * ext/spc/gstspc.h:
3879         * ext/spc/tag.c: (spc_tag_is_extended), (spc_tag_is_text_format),
3880         (spc_tag_is_present), (spc_tag_unpack_date), (spc_tag_clear),
3881         (spc_tag_get_info), (spc_tag_free):
3882         * ext/spc/tag.h:
3883         Add support for some essential features like seeking, reading song
3884         duration and extended tags. Fixes bug #454151.
3885
3886 2008-05-19  Sebastian Dröge  <slomo@circular-chaos.org>
3887
3888         * tests/check/elements/deinterleave.c: (GST_START_TEST):
3889         Set keep-positions property to TRUE for the 8 channel test to ensure
3890         that the original channel position is set on the output.
3891
3892 2008-05-19  Sebastian Dröge  <slomo@circular-chaos.org>
3893
3894         * gst/interleave/deinterleave.c: (gst_deinterleave_class_init),
3895         (gst_deinterleave_init), (gst_deinterleave_add_new_pads),
3896         (gst_deinterleave_set_pads_caps), (gst_deinterleave_set_property),
3897         (gst_deinterleave_get_property):
3898         * gst/interleave/deinterleave.h:
3899         Add a property to select whether channel positions should be kept on
3900         the mono output buffers or should be dropped.
3901
3902 2008-05-18  Jan Schmidt  <jan.schmidt@sun.com>
3903
3904         * docs/Makefile.am:
3905         Oops - fix the spelling of the variable I added.
3906
3907 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
3908
3909         * gst/interleave/deinterleave.c: (gst_deinterleave_finalize),
3910         (gst_deinterleave_init), (gst_deinterleave_sink_event),
3911         (gst_deinterleave_process), (gst_deinterleave_sink_activate_push):
3912         * gst/interleave/deinterleave.h:
3913         Queue events until src pads were added and they can be sent. Otherwise
3914         downstream will never get the first newsegment event.
3915
3916 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
3917
3918         * gst/interleave/deinterleave.c: (gst_deinterleave_sink_setcaps),
3919         (gst_deinterleave_getcaps):
3920         Always set the channel positions when gst_audio_get_channel_positions()
3921         returns something, even if they're not set in the caps. This makes
3922         sure that the output channels can be interleaved again correctly
3923         in the mono/stereo cases too.
3924
3925         Don't ask for the peercaps of the current pad in getcaps() as this
3926         might call getcaps() again and deadlock.
3927
3928 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3929
3930         * ext/timidity/gstwildmidi.c: (wildmidi_open_config):
3931         Check some more common locations for a valid configuration file.
3932         Fixes bug #533435. Packagers should still #define WILDMIDI_CFG
3933         to the distributions default location.
3934
3935 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3936
3937         * gst/interleave/Makefile.am:
3938         * gst/interleave/deinterleave.c: (deinterleave_24),
3939         (gst_deinterleave_finalize), (gst_deinterleave_base_init),
3940         (gst_deinterleave_class_init), (gst_deinterleave_init),
3941         (gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
3942         (gst_deinterleave_set_process_function),
3943         (gst_deinterleave_sink_setcaps), (__remove_channels),
3944         (__set_channels), (gst_deinterleave_getcaps),
3945         (gst_deinterleave_process), (gst_deinterleave_chain),
3946         (gst_deinterleave_sink_activate_push):
3947         * gst/interleave/deinterleave.h:
3948         Add support for all raw audio formats and provide better negotiation
3949         if the caps are changing.
3950
3951         Don't allow changes of the channel positions and set the position of
3952         the corresponding channel on the src pad caps.
3953
3954         General cleanup and smaller bugfixes.
3955
3956         * tests/check/elements/deinterleave.c: (float_buffer_check_probe):
3957         Check the channel positions on the output buffer caps.
3958
3959 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
3960
3961         * docs/Makefile.am:
3962         Don't attempt to build plugin docs when they're disabled.
3963
3964         * gst/bayer/Makefile.am:
3965         Add libgstvideo to the link.
3966
3967         * gst/rtpmanager/Makefile.am:
3968         Fix link order, and move LIBS things to _LIBS
3969
3970 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
3971
3972         * docs/plugins/gst-plugins-bad-plugins.types:
3973         Remove bogus attempt to pull 'metadata' plugin's base
3974         class into the docs.
3975
3976 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3977
3978         * gst/rtpmanager/gstrtpjitterbuffer.c:
3979         (gst_rtp_jitter_buffer_chain):
3980         Simply drop bad RTP packets with a warning instead of just posting an
3981         error and stopping. This is a perfectly recoverable event and we don't
3982         force people to use an rtpbin to filter out bad packets first.
3983
3984 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3985
3986         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_init):
3987         Set fixed caps on the srcpad after we created the pad...
3988
3989 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3990
3991         * tests/check/Makefile.am:
3992           Remove deinterleave test from VALGRIND_TO_FIX again now that
3993           there are suppressions in gst.supp which make this work for me.
3994
3995 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3996
3997         * tests/check/Makefile.am:
3998           Add deinterleave unit test to VALGRIND_TO_FIX, since it causes
3999           weird invalid free errors in valgrind/libc after _exit for some
4000           reason.
4001
4002         * tests/check/elements/deinterleave.c: (pads_created),
4003           (set_channel_positions), (src_handoff_float32_8ch),
4004           (float_buffer_check_probe),
4005           (pad_added_setup_data_check_float32_8ch_cb),
4006           (make_fake_src_8chans_float32), (GST_START_TEST),
4007           (deinterleave_suite):
4008           Add some more deinterleave unit test bits I had locally.
4009
4010 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
4011
4012         * gst/interleave/Makefile.am:
4013         * gst/interleave/deinterleave.h:
4014         * gst/interleave/interleave.h:
4015         * gst/interleave/plugin.h:
4016         Split definitions into separate header files for better documentation
4017         generation.
4018         
4019         * gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
4020         (gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
4021         (gst_deinterleave_process):
4022         Don't use alloca, allow caps changes as long as the number of channels
4023         does not change, don't use g_warning, return NOT_NEGOTIATED as early
4024         as possible and some other cleanup.
4025
4026         * gst/interleave/interleave.c: (gst_interleave_base_init),
4027         (gst_interleave_class_init):
4028         Do some random cleanup.
4029
4030         * tests/check/Makefile.am:
4031         * tests/check/elements/deinterleave.c: (GST_START_TEST),
4032         (deinterleave_chain_func), (deinterleave_pad_added),
4033         (deinterleave_suite):
4034         Add unit tests for the deinterleave element.
4035
4036 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4037
4038         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4039
4040         * gst/mpeg4videoparse/mpeg4videoparse.c:
4041         (gst_mpeg4vparse_set_new_caps), (gst_mpeg4vparse_align),
4042         (get_bits), (next_start_code), (gst_mpeg4vparse_handle_vos),
4043         (gst_mpeg4vparse_push), (gst_mpeg4vparse_drain),
4044         (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps),
4045         (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_src_query),
4046         (gst_mpeg4vparse_set_property), (gst_mpeg4vparse_get_property),
4047         (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init):
4048         * gst/mpeg4videoparse/mpeg4videoparse.h:
4049         Parse the config data (either outbound or in the stream) to set   
4050         width/height, apect ration, framerate in the caps if applicable.
4051         Mark frames as GST_BUFFER_FLAG_DELTA_UNIT when they are not
4052         intra frames
4053         Set the timestamps of outgoing buffers to the buffer in
4054         which the VOP header was found.
4055         Drop incoming data untill configuration is found (by default,
4056         configurable using a property).
4057         Report a 1 frame latency. Fixes #532723.
4058
4059 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4060
4061         * gst/real/gstrealvideodec.c: (open_library):
4062         Add some debug for where we are searching for libraries.
4063
4064 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4065
4066         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
4067         Actually add the do-lost property to the object.
4068
4069 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4070
4071         * gst/rtpmanager/gstrtpjitterbuffer.c:
4072         (gst_rtp_jitter_buffer_loop):
4073         Avoid waiting for a negative (huge) duration when the last packet has a
4074         lower timestamp than the current packet.
4075
4076 2008-05-12  Peter Kjellerstedt  <pkj@axis.com>
4077
4078         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_query_send_rtcp_src):
4079         Make sure to unref the rtpsession returned by gst_pad_get_parent() to
4080         prevent a memory leak.
4081
4082
4083 2008-05-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4084
4085         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4086         Quieten some docs output
4087
4088 2008-05-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4089
4090         * gst/rtpmanager/gstrtpjitterbuffer.c:
4091         (gst_rtp_jitter_buffer_loop):
4092         Initialise with GST_CLOCK_TIME_NONE to avoid compiler warning.
4093
4094 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
4095
4096         * docs/plugins/Makefile.am:
4097         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
4098         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4099         * docs/plugins/inspect/plugin-gstinterlace.xml:
4100         * gst/deinterlace/gstdeinterlace.c:
4101         * gst/deinterlace/gstdeinterlace.h:
4102         Random doc of the day: the deinterlace element.
4103
4104 2008-05-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4105
4106         * gst/mpegtsparse/mpegtspacketizer.c:
4107         * gst/mpegtsparse/mpegtsparse.c:
4108         Make sure all schedule EIT and non-actual transport stream
4109         EITs are parsed. Also add present-following flag and
4110         actual-transport-stream flag to eit bus message.
4111
4112 2008-05-09  Peter Kjellerstedt  <pkj@axis.com>
4113
4114         * gst/rtpmanager/rtpsource.c: (rtp_source_finalize):
4115         Make sure to unref the caps used by RTPSource to prevent a memory leak.
4116
4117 2008-05-08  Tim-Philipp Müller  <tim.muller at collabora co uk>
4118
4119         Based on patch by: Clive Wright <clive_wright ntlworld com>
4120
4121         * sys/oss4/oss4-mixer-slider.c: (gst_oss4_mixer_slider_unpack_volume):
4122           Apparently mono sliders have the mono value repeated in the upper bits,
4123           so mask those out when reading them. Probably makes the mixer applet
4124           work properly in some more cases.
4125
4126 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4127
4128         Patch by: Olivier Crete <tester at tester dot ca>
4129
4130         * gst/rtpmanager/rtpsession.c: (source_clock_rate),
4131         (rtp_session_process_bye), (rtp_session_send_bye_locked):
4132         Unlock the session lock when calling one of our callbacks. 
4133         Fixes #532011.
4134
4135 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
4136
4137         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4138
4139         * gst/rtpmanager/gstrtpsession.c:
4140         (gst_rtp_session_event_send_rtp_sink):
4141         Send RTP BYE command on EOS. Fixes bug #531955.
4142
4143 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4144
4145         * win32/common/config.h.in:
4146           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
4147           use the real thing than having "???" unconditionally.
4148
4149 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4150
4151         * gst-libs/gst/app/.cvsignore:
4152         * gst-libs/gst/app/Makefile.am:
4153         * gst-libs/gst/app/gstapp-marshal.list:
4154         Add marshal.list, make it compile and add to cvsignore.
4155
4156         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_dispose),
4157         (gst_app_sink_stop):
4158         Small cleanups.
4159
4160         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
4161         (gst_app_src_init), (gst_app_src_set_property),
4162         (gst_app_src_get_property), (gst_app_src_unlock),
4163         (gst_app_src_unlock_stop), (gst_app_src_start), (gst_app_src_stop),
4164         (gst_app_src_create), (gst_app_src_set_caps),
4165         (gst_app_src_get_caps), (gst_app_src_set_size),
4166         (gst_app_src_get_size), (gst_app_src_set_seekable),
4167         (gst_app_src_get_seekable), (gst_app_src_set_max_buffers),
4168         (gst_app_src_get_max_buffers), (gst_app_src_push_buffer),
4169         (gst_app_src_end_of_stream):
4170         * gst-libs/gst/app/gstappsrc.h:
4171         Beat appsrc in shape, add signals and actions.
4172         Add some docs.
4173         Add properties for caps, size, seekability and max-buffers.
4174         Fix unlock/stop code.
4175
4176 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4177
4178         * configure.ac:
4179           Error out if we don't have the required versions of core/base.
4180
4181 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
4182
4183         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init),
4184         (gst_app_sink_init), (gst_app_sink_set_property),
4185         (gst_app_sink_get_property), (gst_app_sink_unlock_start),
4186         (gst_app_sink_unlock_stop), (gst_app_sink_flush_unlocked),
4187         (gst_app_sink_start), (gst_app_sink_stop), (gst_app_sink_event),
4188         (gst_app_sink_preroll), (gst_app_sink_render),
4189         (gst_app_sink_set_caps), (gst_app_sink_set_drop),
4190         (gst_app_sink_get_drop):
4191         * gst-libs/gst/app/gstappsink.h:
4192         Start some docs.
4193         Add property to drop buffers when the queue is filled
4194         Fix unlocking and flushing when the queues are filled.
4195
4196 2008-04-29  Sebastian Dröge  <slomo@circular-chaos.org>
4197
4198         Patch by: Jens Granseuer <jensgr at gmx dot net>
4199
4200         * gst/subenc/gstsrtenc.c: (gst_srt_enc_timestamp_to_string):
4201         Declare variables at the beginning of blocks. Fixes compilation with
4202         gcc 2.x and other compilers. Fixes bug #530611.
4203
4204 2008-04-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4205
4206         * gst/mpegtsparse/mpegtspacketizer.c:
4207         * gst/mpegtsparse/mpegtspacketizer.h:
4208         * gst/mpegtsparse/mpegtsparse.c:
4209         Detect SI pids (NIT, SDT, EIT etc.) based on table id and not
4210         by pid number. This allows for example the EPG data from UK's
4211         freesat to be picked up.
4212
4213 2008-04-26  Sebastian Dröge  <slomo@circular-chaos.org>
4214
4215         * ext/mpeg2enc/gstmpeg2enc.cc:
4216         * ext/soundtouch/gstbpmdetect.cc:
4217         Cast NULL sentinels to void * as NULL is defined as an integer
4218         constant in most environments when using C++ and it's size might
4219         be different from a pointer.
4220
4221 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4222
4223         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init),
4224         (gst_app_sink_init), (gst_app_sink_set_property),
4225         (gst_app_sink_get_property), (gst_app_sink_event),
4226         (gst_app_sink_preroll), (gst_app_sink_render),
4227         (gst_app_sink_set_emit_signals), (gst_app_sink_get_emit_signals),
4228         (gst_app_sink_set_max_buffers), (gst_app_sink_get_max_buffers),
4229         (gst_app_sink_pull_buffer):
4230         * gst-libs/gst/app/gstappsink.h:
4231         Add more docs.
4232         Add signals for when preroll and render buffers are available.
4233         Add property to control signal emission.
4234         Add property to control the max queue size.
4235
4236 2008-04-25  Michael Smith <msmith@songbirdnest.com>
4237
4238         * gst-libs/gst/dshow/Makefile.am:
4239           Use CXXFLAGS rather than CFLAGS; these are C++ files.
4240           Define required constants appropriately.
4241         * sys/dshowdecwrapper/Makefile.am:
4242           Add required include dir, libraries.
4243           Define required constants appropriately.
4244
4245 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4246
4247         * gst/rtpmanager/gstrtpbin.c: (create_stream), (gst_rtp_bin_init),
4248         (gst_rtp_bin_set_property), (gst_rtp_bin_get_property):
4249         * gst/rtpmanager/gstrtpbin.h:
4250         Expose new jitterbuffer property in rtpbin too.
4251
4252 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4253
4254         * gst/rtpmanager/gstrtpjitterbuffer.c:
4255         (gst_rtp_jitter_buffer_class_init), (gst_rtp_jitter_buffer_init),
4256         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property),
4257         (gst_rtp_jitter_buffer_get_property):
4258         Disable sending out rtp packet lost events by default and make a
4259         property to enabe it. We will likely enable it by default when the base
4260         depayloaders have a default handler for them so that we don't send these
4261         events all through the pipeline for now.
4262
4263 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4264
4265         * gst/rtpmanager/gstrtpjitterbuffer.c:
4266         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_flush_stop),
4267         (gst_rtp_jitter_buffer_src_event), (gst_rtp_jitter_buffer_chain),
4268         (gst_rtp_jitter_buffer_loop):
4269         Remove private version of a function that is in -base now.
4270         Add src event handler.
4271         Rework the jitterbuffer pushing loop so that it can quickly react to
4272         lost packets and instruct the depayloader of them. This can then be used
4273         to implement error concealment data.
4274
4275 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4276
4277         * gst/rtpmanager/gstrtpsession.c:
4278         (gst_rtp_session_query_send_rtcp_src), (create_recv_rtcp_sink),
4279         (create_send_rtcp_src):
4280         Set up some internal links functions for the RTCP and sync pads because
4281         the defaults are really not correct.
4282         Implement a query handler for the RTCP src pad, mostly to correctly
4283         report about the latency.
4284
4285 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4286
4287         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
4288         (gst_rtp_bin_sync_chain):
4289         * gst/rtpmanager/rtpsession.c: (update_arrival_stats),
4290         (rtp_session_process_sr), (rtp_session_on_timeout):
4291         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
4292         (calculate_jitter):
4293         * gst/rtpmanager/rtpsource.h:
4294         * gst/rtpmanager/rtpstats.h:
4295         Also keep track of the first buffer timestamp together with the first
4296         RTP timestamp as they both are needed to construct the timing of
4297         outgoing packets in the jitterbuffer and are therefore also needed to
4298         manage lip-sync. This fixes lip-sync if the first RTP packets arrive
4299         with a wildly different gap.
4300
4301 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4302
4303         * gst/flv/gstflvdemux.c: (gst_flv_demux_query):
4304         Forward unknown queries upstream instead of returning FALSE on them.
4305
4306 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
4307
4308         * configure.ac:
4309         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
4310         (gst_musepackdec_init), (gst_musepackdec_dispose),
4311         (gst_musepackdec_handle_seek_event), (gst_musepack_stream_init),
4312         (gst_musepackdec_loop), (plugin_init):
4313         * ext/musepack/gstmusepackdec.h:
4314         * ext/musepack/gstmusepackreader.c:
4315         * ext/musepack/gstmusepackreader.h:
4316         Add support for the new libmpcdec API which magically gets us support
4317         for SV8 files. Also do some random cleanup. Fixes bug #526905.
4318
4319 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
4320
4321         * configure.ac:
4322         Back to development -> 0.10.7.1
4323
4324 === release 0.10.7 ===
4325
4326 2008-04-24  Jan Schmidt <jan.schmidt@sun.com>
4327
4328         * configure.ac:
4329           releasing 0.10.7, "House of Cards"
4330
4331 2008-04-22  Stefan Kost  <ensonic@users.sf.net>
4332
4333         * ext/faad/gstfaad.c:
4334           Don't leak GstAudioChannelPosition. Fixes #529378.
4335
4336 2008-04-22  Wim Taymans  <wim.taymans@collabora.co.uk>
4337
4338         * gst/sdp/gstsdpdemux.c: (request_pt_map):
4339         Ref caps, see #528245.
4340
4341 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
4342
4343         * configure.ac:
4344         0.10.6.4 pre-release
4345
4346 2008-04-21  Sebastian Dröge  <slomo@circular-chaos.org>
4347
4348         * tests/check/elements/rganalysis.c: (GST_START_TEST):
4349         Don't leak a tag list. Fixes bug #529285.
4350
4351 2008-04-21  Sebastian Dröge  <slomo@circular-chaos.org>
4352
4353         * tests/check/elements/ofa.c: (bus_handler):
4354         Don't leak the tags string and tag list. Fixes bug #529283.
4355
4356 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4357
4358         Patch by: Olivier Crete <tester at tester dot ca>
4359
4360         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
4361         (new_ssrc_pad_found):
4362         Ref caps when inserting into the cache.
4363         Don't leak pads.
4364
4365         * gst/rtpmanager/gstrtpjitterbuffer.c:
4366         (gst_rtp_jitter_buffer_get_clock_rate),
4367         (gst_rtp_jitter_buffer_query):
4368         Avoid a caps leak.
4369         Don't leak refcount in query.
4370
4371         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps),
4372         (gst_rtp_pt_demux_chain):
4373         Avoid caps leaks.
4374
4375         * gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
4376         (gst_rtp_session_init), (return_true),
4377         (gst_rtp_session_clear_pt_map), (gst_rtp_session_cache_caps),
4378         (gst_rtp_session_clock_rate):
4379         Ref caps when inserting into the cache.
4380         Fix some more caps leaks. Fixes #528245.
4381
4382 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
4383
4384         * tests/icles/metadata_editor.c:
4385           Add cast to placate gcc 4.1.2.
4386
4387 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
4388
4389         * configure.ac:
4390         0.10.6.3 pre-release
4391
4392 2008-04-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4393
4394         * sys/dvb/gstdvbsrc.c:
4395         Revert patch that added a loop timeout.
4396         Fixes #528614.
4397
4398 2008-04-17  Wim Taymans  <wim.taymans@collabora.co.uk>
4399
4400         * gst/rtpmanager/gstrtpbin.c: (get_pt_map), (free_client),
4401         (gst_rtp_bin_associate), (gst_rtp_bin_get_free_pad_name):
4402         * gst/rtpmanager/gstrtpjitterbuffer.c:
4403         (gst_rtp_jitter_buffer_get_clock_rate):
4404         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps):
4405         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
4406         Unset GValues after g_signal_emitv so that we avoid a refcount leak.
4407         Don't leak a padname.
4408         Don't leak client streams list.
4409         Lock rtpbin when associating streams. Fixes #528245.
4410
4411 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4412
4413         * tests/check/Makefile.am:
4414         Don't inlcude dc1394src in the generic/states test as it requires
4415         special hardware. Fixes bug #528011.
4416
4417 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4418
4419         * tests/check/elements/ofa.c: (bus_handler), (GST_START_TEST):
4420         Only check if the generated fingerprints are valid Base64. The
4421         fingerprints are different when running on different architectures
4422         which is a) no problem because the fingerprints are tolerant enough
4423         and b) is caused by libofa. Fixes bug #528266.
4424
4425 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4426
4427         * ext/timidity/Makefile.am:
4428         Dist all source files, no matter if only timidity or wildmidi or
4429         nothing is found by configure. Fixes bug #528000.
4430
4431 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
4432
4433         * gst-plugins-bad.spec.in:
4434           Remove souphttpsrc plugin from spec files, it's moved to -good.
4435
4436 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
4437
4438         * tests/check/Makefile.am:
4439         Remove soup test certificates from the dist.
4440
4441 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
4442
4443         * ext/dirac/gstdiracenc.cc:
4444         Fix compilation by casting string constants.
4445
4446         * sys/Makefile.am:
4447         Fix WININET_DIR variable reference.
4448
4449 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
4450
4451         * configure.ac:
4452         * docs/plugins/Makefile.am:
4453         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
4454         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4455         * docs/plugins/gst-plugins-bad-plugins.args:
4456         * docs/plugins/inspect/plugin-soup.xml:
4457         * ext/Makefile.am:
4458         * ext/soup/Makefile.am:
4459         * ext/soup/gstsouphttpsrc.c:
4460         * ext/soup/gstsouphttpsrc.h:
4461         * tests/check/Makefile.am:
4462         * tests/check/elements/souphttpsrc.c:
4463         * tests/check/test-cert.pem:
4464         * tests/check/test-key.pem:
4465
4466         Remove soup plugin that's moved to -good (#523124)
4467
4468 2008-04-12  Tim-Philipp Müller  <tim at centricular dot net>
4469
4470         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
4471           (gst_flv_parse_tag_script):
4472           Handle NULL returns from FLV_GET_STRING() more gracefully. Fixes
4473           crash caused by a strlen on a NULL string (#527622).
4474
4475 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4476
4477         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4478
4479         * sys/dshowsrcwrapper/gstdshowvideosrc.c: (PROP_DEVICE_NAME),
4480           (gst_dshowvideosrc_class_init), (gst_dshowvideosrc_init),
4481           (gst_dshowvideosrc_dispose), (gst_dshowvideosrc_stop),
4482           (gst_dshowvideosrc_unlock), (gst_dshowvideosrc_unlock_stop),
4483           (gst_dshowvideosrc_create), (gst_dshowvideosrc_push_buffer):
4484         * sys/dshowsrcwrapper/gstdshowvideosrc.h:
4485           Don't increase latency by queuing buffers in an async queue when
4486           the streaming thread can't keep up or isn't scheduled often
4487           enough for some other reason, but just drop the previous buffer
4488           in that case. Also implement GstBaseSrc::unlock for faster
4489           unlocking when shutting down. (#520892).
4490
4491 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4492
4493         * tests/icles/metadata_editor.c: (ENC_UNKNOWN), (last_pixbuf),
4494           (draw_pixbuf), (change_tag_list), (update_draw_pixbuf),
4495           (ui_drawing_size_allocate_cb), (on_drawingMain_expose_event),
4496           (on_buttonSaveFile_clicked), (ui_create), (me_gst_bus_callback_view),
4497           (me_gst_setup_view_pipeline), (process_file):
4498         * tests/icles/metadata_editor.glade:
4499           Remove GstXOverlay stuff and use gdkpixbufsink plus some rather crude
4500           drawing/scaling logic to make this compile and work on all platforms.
4501           Fixes #518227.
4502
4503 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4504
4505         * configure.ac:
4506           Bump core/base requirements to released versions to avoid
4507           confusion.
4508
4509         * gst/deinterlace/gstdeinterlace.c: (deinterlace_debug),
4510           (GST_CAT_DEFAULT), (gst_deinterlace_base_init),
4511           (gst_deinterlace_set_caps), (plugin_init):
4512           Add debug category, use _set_element_details_simple and
4513           remove special code path for Y42B to calculate offsets and
4514           strides; libgstvideo knows how to handle this format now.
4515
4516 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4517
4518         * gst/cdxaparse/Makefile.am:
4519         * gst/cdxaparse/gstcdxaparse.c:
4520         * gst/cdxaparse/gstcdxastrip.c:
4521         * gst/cdxaparse/gstcdxastrip.h:
4522         * gst/cdxaparse/gstvcdparse.c:
4523         * gst/cdxaparse/gstvcdparse.h:
4524           Port VCD parser (formerly cdxastrip) from 0.8 to 0.10. Doesn't do
4525           anything the 0.8 version didn't do though.
4526
4527 2008-04-11  Julien Moutte  <julien@fluendo.com>
4528
4529         * sys/oss4/oss4-mixer-enum.c:
4530         (gst_oss4_mixer_enum_get_values_locked):
4531         * sys/oss4/oss4-source.c: (gst_oss4_source_delay): Fix arguments
4532         format in debug statements.
4533
4534 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
4535
4536         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4537
4538         * configure.ac:
4539         * sys/Makefile.am:
4540         * sys/wininet/Makefile.am:
4541         * sys/wininet/gstwininetsrc.c:
4542         * sys/wininet/gstwininetsrc.h:
4543           Add wininetsrc for basic http/ftp support on windows (#520897).
4544
4545 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
4546
4547         * gst/nsf/nsf.h:
4548           Change prototype of process function here too to avoid
4549           'incompatible assignment' warnings.
4550
4551 2008-04-10  Sebastian Dröge  <slomo@circular-chaos.org>
4552
4553         * tests/check/elements/souphttpsrc.c: (got_buffer),
4554         (souphttpsrc_suite):
4555         Increase the timeout for the internet tests to 250 seconds
4556         and check for NULL caps instead of just crashing.
4557         The real fix would be to implement an shoutcast server for the unit test
4558         instead of relying on a working internet connection.
4559         Fixes bug #521749.
4560
4561 2008-04-10  Peter Kjellerstedt  <pkj@axis.com>
4562
4563         * gst/rtpmanager/gstrtpbin.c: (free_session):
4564         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_finalize):
4565         Avoid leaking pads in the RTP manager.
4566
4567 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
4568
4569         * gst/nsf/nes_apu.c: (apu_process):
4570         * gst/nsf/nes_apu.h:
4571         Don't do void pointer arithmetic - it's a gcc extension.
4572
4573 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
4574
4575         * ext/jack/gstjackaudiosink.c: (gst_jack_audio_sink_class_init):
4576           Work around missing bits of thread-safety on older GLibs some
4577           more to avoid assertions when starting up multiple playbin
4578           objects concurrently (see #512382).
4579
4580 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
4581
4582         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4583
4584         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_response_cb):
4585         Only ignore actual redirects not all responses when in state
4586         GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING. Fixes bug #526337.
4587
4588 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
4589
4590         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
4591
4592         * configure.ac:
4593         Actually build dlls when cross-compiling with mingw32.
4594         Fixes bug #526247.
4595
4596 2008-04-05  Sebastian Dröge  <slomo@circular-chaos.org>
4597
4598         * tests/check/elements/ofa.c: (GST_START_TEST):
4599         Also check that we have processed at least 135 seconds of audio
4600         until we stop and calculated a fingerprint.
4601
4602 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
4603
4604         * gst/subenc/gstsrtenc.c:
4605         * gst/subenc/gstsrtenc.h:
4606           GstSrtenc => GstSrtEnc and gst_srtenc_ => gst_srt_enc_.
4607
4608 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
4609
4610         * tests/check/Makefile.am:
4611         * tests/check/elements/.cvsignore:
4612         * tests/check/elements/ofa.c: (bus_handler), (GST_START_TEST),
4613         (ofa_suite), (main):
4614         Add simple unit tests for the OFA plugin.
4615
4616 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
4617
4618         * configure.ac:
4619         * sys/Makefile.am:
4620         * sys/oss4/Makefile.am:
4621         * sys/oss4/oss4-audio.c:
4622         * sys/oss4/oss4-audio.h:
4623         * sys/oss4/oss4-mixer-enum.c:
4624         * sys/oss4/oss4-mixer-enum.h:
4625         * sys/oss4/oss4-mixer-slider.c:
4626         * sys/oss4/oss4-mixer-slider.h:
4627         * sys/oss4/oss4-mixer-switch.c:
4628         * sys/oss4/oss4-mixer-switch.h:
4629         * sys/oss4/oss4-mixer.c:
4630         * sys/oss4/oss4-mixer.h:
4631         * sys/oss4/oss4-property-probe.c:
4632         * sys/oss4/oss4-property-probe.h:
4633         * sys/oss4/oss4-sink.c:
4634         * sys/oss4/oss4-sink.h:
4635         * sys/oss4/oss4-soundcard.h:
4636         * sys/oss4/oss4-source.c:
4637         * sys/oss4/oss4-source.h:
4638           Add initial support for OSSv4. Mixer still needs a bit more love,
4639           but even magic has its limits.
4640
4641 2008-04-01  Tim-Philipp Müller  <tim at centricular dot net>
4642
4643         * configure.ac:
4644         * gst-plugins-bad.spec.in:
4645         * gst/srtenc/Makefile.am:
4646         * gst/srtenc/gstsrtenc.c:
4647         * gst/srtenc/gstsrtenc.h:
4648         * gst/subenc/Makefile.am:
4649         * gst/subenc/gstsrtenc.c: (plugin_init):
4650           Rename new srtenc plugin to subenc.
4651
4652 2008-04-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4653
4654         * gst/mpegtsparse/mpegtspacketizer.c:
4655         Cable delivery subsystem descriptors' frequency's bcd
4656         is measured in 100Hz units so adjust multiplier accordingly.
4657
4658 2008-04-01  Thijs Vermeir  <thijsvermeir@gmail.com>
4659
4660         * configure.ac:
4661         * gst/srtenc/Makefile.am:
4662         * gst/srtenc/gstsrtenc.c:
4663         * gst/srtenc/gstsrtenc.h:
4664         Add srt subtitle encoder
4665
4666 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
4667
4668         Patch by: Kapil Agrawal <kapil at fluendo dot com>
4669
4670         * ext/gsm/gstgsmdec.c: (gst_gsmdec_sink_setcaps),
4671         (gst_gsmdec_chain):
4672         * ext/gsm/gstgsmdec.h:
4673         Increase the allowed samplerates for the ms-gsm format.
4674         Fixes #481354.
4675
4676 2008-03-30  Tim-Philipp Müller  <tim at centricular dot net>
4677
4678         Patch by: Jan de Groot <jan at jgc homeip net>
4679
4680         * configure.ac:
4681           Fix build with --disable-external (#525100).
4682
4683 2008-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4684
4685         * sys/dvb/gstdvbsrc.c:
4686         Repeat diseqc call to allow for some diseqc switches.
4687
4688 2008-03-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4689
4690         * ext/Makefile.am:
4691         Dist ofa correctly! Fixes non-uninstalled build.
4692
4693 2008-03-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4694
4695         * sys/dvb/gstdvbsrc.c:
4696         Make diseqc work more reliably.
4697
4698 2008-03-26  Sebastian Dröge  <slomo@circular-chaos.org>
4699
4700         * gst/nsf/Makefile.am:
4701         * gst/nsf/fds_snd.c:
4702         * gst/nsf/mmc5_snd.c:
4703         * gst/nsf/nsf.c:
4704         * gst/nsf/types.h:
4705         * gst/nsf/vrc7_snd.c:
4706         * gst/nsf/vrcvisnd.c:
4707         * gst/nsf/memguard.c:
4708         * gst/nsf/memguard.h:
4709         Remove memguard again and apply hopefully all previously dropped
4710         local patches. Should be really better than the old version now.
4711
4712 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4713
4714         * gst/nsf/memguard.c: (_my_free):
4715         * gst/nsf/types.h:
4716         Unbreak compilation by disabling memguard and doing some dirty hack
4717         fixes to make it compile on 64bits.
4718
4719 2008-03-25  Sebastian Dröge  <slomo@circular-chaos.org>
4720
4721         Patch by: Andreas Henriksson <andreas at fatal dot set>
4722
4723         * gst/nsf/Makefile.am:
4724         * gst/nsf/dis6502.h:
4725         * gst/nsf/fds_snd.c:
4726         * gst/nsf/fds_snd.h:
4727         * gst/nsf/fmopl.c:
4728         * gst/nsf/fmopl.h:
4729         * gst/nsf/gstnsf.c:
4730         * gst/nsf/log.c:
4731         * gst/nsf/log.h:
4732         * gst/nsf/memguard.c:
4733         * gst/nsf/memguard.h:
4734         * gst/nsf/mmc5_snd.c:
4735         * gst/nsf/mmc5_snd.h:
4736         * gst/nsf/nes6502.c:
4737         * gst/nsf/nes6502.h:
4738         * gst/nsf/nes_apu.c:
4739         * gst/nsf/nes_apu.h:
4740         * gst/nsf/nsf.c:
4741         * gst/nsf/nsf.h:
4742         * gst/nsf/osd.h:
4743         * gst/nsf/types.h:
4744         * gst/nsf/vrc7_snd.c:
4745         * gst/nsf/vrc7_snd.h:
4746         * gst/nsf/vrcvisnd.c:
4747         * gst/nsf/vrcvisnd.h:
4748         Update our internal nosefart to nosefart-2.7-mls to fix segfaults
4749         on some files. Fixes bug #498237.
4750
4751         Remove some // comments, fix some compiler warnings and use pow()
4752         instead of a slow, selfmade implementation.
4753
4754 2008-03-25  Sebastian Dröge  <slomo@circular-chaos.org>
4755
4756         Patch by: Ed Catmur <ed at catmur dot co dot uk>
4757
4758         * configure.ac:
4759         Add support for neon 0.28, which didn't change API. Fixes bug #524035.
4760
4761 2008-03-24  Rene Stadler  <mail@renestadler.de>
4762
4763         * gst/replaygain/gstrganalysis.c (gst_rg_analysis_init),
4764           (gst_rg_analysis_transform_ip):
4765         * gst/replaygain/gstrglimiter.c (gst_rg_limiter_init),
4766           (gst_rg_limiter_transform_ip):
4767         Make rganalysis and rglimiter elements GAP-flag aware.
4768
4769         * tests/check/elements/rganalysis.c: (test_gap_buffers),
4770           (rganalysis_suite):
4771         * tests/check/elements/rglimiter.c (test_gap), (rglimiter_suite):
4772         Add tests to verify gap-awareness.
4773
4774 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4775
4776         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb),
4777         (gst_soup_http_src_chunk_allocator),
4778         (gst_soup_http_src_got_chunk_cb),
4779         (gst_soup_http_src_uri_get_protocols):
4780         Don't autoplug souphttpsrc for dav/davs. This is better handled by
4781         GIO and GnomeVFS as they provide authentication.
4782
4783         Don't leak the icy caps if we already set them and get a new
4784         icy-metaint header.
4785
4786         Try harder to set the icy caps on the output buffer to have correct
4787         caps for the first buffer already.
4788
4789         * tests/check/elements/souphttpsrc.c: (got_buffer),
4790         (GST_START_TEST):
4791         Check that we get a buffer with application/x-icy caps if iradio-mode
4792         is enabled and we have an icecast URL.
4793
4794 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4795
4796         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_chunk_allocator):
4797         Actually set the icy caps on our src pad if we have icecast data.
4798         Fixes bug #523854.
4799
4800 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4801
4802         * configure.ac:
4803         Check if the compiler supports do { } while (0) macros. This fixes
4804         a warning when compiling with g++ 4.3, resulting in a build failure
4805         because of -Werror.
4806
4807         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
4808         * ext/mplex/gstmplex.cc:
4809         Include <string.h> for memcpy and friends to fix the build with
4810         gcc 4.3.
4811
4812         * tests/check/Makefile.am:
4813         Remove trailing backslash.
4814
4815 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4816
4817         * gst/selector/gstinputselector.c:
4818         (gst_input_selector_set_active_pad), (gst_input_selector_switch):
4819         Do g_object_notify() only when not holding the lock to get the property
4820         because otherwise we run into a deadlock with the deep-notify handlers
4821         that are possibly installed.
4822
4823 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4824
4825         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4826         (gst_selector_pad_event), (gst_selector_pad_bufferalloc),
4827         (gst_selector_pad_chain), (gst_input_selector_set_active_pad):
4828         Release the selector lock when pad alloc happens on a non selected pad.
4829
4830 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4831
4832         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4833         (gst_selector_pad_init), (gst_selector_pad_set_property),
4834         (gst_selector_pad_get_property), (gst_selector_pad_event),
4835         (gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
4836         (gst_input_selector_set_active_pad):
4837         Add pad property to configure behaviour of the unselected pad, it can
4838         return OK or NOT_LINKED, based on the use case.
4839
4840 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4841
4842         * gst/selector/gstinputselector.c:
4843         (gst_selector_pad_get_running_time), (gst_selector_pad_reset),
4844         (gst_selector_pad_event), (gst_selector_pad_bufferalloc),
4845         (gst_input_selector_wait), (gst_selector_pad_chain),
4846         (gst_input_selector_class_init), (gst_input_selector_init),
4847         (gst_input_selector_dispose), (gst_segment_set_start),
4848         (gst_input_selector_set_active_pad),
4849         (gst_input_selector_set_property),
4850         (gst_input_selector_get_property),
4851         (gst_input_selector_get_linked_pad),
4852         (gst_input_selector_is_active_sinkpad),
4853         (gst_input_selector_activate_sinkpad),
4854         (gst_input_selector_request_new_pad),
4855         (gst_input_selector_release_pad),
4856         (gst_input_selector_change_state), (gst_input_selector_block),
4857         (gst_input_selector_switch):
4858         * gst/selector/gstinputselector.h:
4859         Figure out the locking a bit more.
4860         Mark buffers with discont after switching.
4861         Fix initial segment forwarding, make sure to only forward one segment
4862         regardless of what the sequence of buffers/segments is. See #522203.
4863         Improve flushing when blocked.
4864         Return NOT_LINKED when a stream is not selected.
4865         Not API change for the switch signal in the docs.
4866         Fix start/time/accum values of the new segment.
4867         Correctly unlock and flush a blocking selector when going to READY.
4868
4869 2008-03-20  Stefan Kost  <ensonic@users.sf.net>
4870
4871         * ext/ladspa/gstladspa.c:
4872         * ext/ladspa/gstsignalprocessor.c:
4873           Add some thoughts and FIXME's.
4874
4875 2008-03-20  Stefan Kost  <ensonic@users.sf.net>
4876
4877         * gst/bayer/gstbayer2rgb.c:
4878           Include stdlib.h for abs.
4879
4880 2008-03-19  Stefan Kost  <ensonic@users.sf.net>
4881
4882         * gst/freeze/FAQ:
4883         * gst/freeze/Makefile.am:
4884         * gst/freeze/gstfreeze.c:
4885           Add example to source code documentation blob and remove the 3 line
4886           FAQ.
4887
4888         * gst/interleave/interleave.c:
4889           Add a source code documentation blob.
4890
4891 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4892
4893         * ext/ofa/gstofa.c: (create_fingerprint), (gst_ofa_event),
4894         (gst_ofa_transform_ip), (plugin_init):
4895         Improve debugging, clean up a bit and really generate the fingerprint
4896         after 135 seconds.
4897
4898 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4899
4900         * ext/ofa/gstofa.c:
4901         Use GPL as license, the plugin itself is LGPL but libofa is GPL.
4902
4903 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4904
4905         Based on a patch by: Eric Buehl <eric dot buehl at gmail dot com>
4906
4907         * configure.ac:
4908         * ext/ofa/Makefile.am:
4909         * ext/ofa/gstofa.c: (gst_ofa_base_init), (gst_ofa_finalize),
4910         (gst_ofa_class_init), (create_fingerprint), (gst_ofa_event),
4911         (gst_ofa_init), (gst_ofa_transform_ip), (gst_ofa_get_property),
4912         (plugin_init):
4913         * ext/ofa/gstofa.h:
4914         Add an OFA element, the successor of MusicBrainz TRM fingerprinting.
4915         Fixes bug #351309.
4916
4917 2008-03-18  Andy Wingo  <wingo@pobox.com>
4918
4919         * ext/faad/gstfaad.c (gst_faad_chain): Fix a bad format argument,
4920         and a potential int overflow.
4921
4922         * ext/faad/gstfaad.h: Include <neaacdec.h> if faad is neaac.
4923         Avoids a #warning about an ignored #pragma.
4924
4925 2008-03-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4926
4927         * examples/switch/switcher.c:
4928         Update switch example to use input selector.
4929
4930 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
4931
4932         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
4933         (gst_neonhttp_src_send_request_and_redirect):
4934         Handle HTTP status code 303 (See Other) the same way
4935         as 302 (Found). Not sure what to do about all the other 3xx
4936         redirect status codes. Fixes bug #522884.
4937
4938 2008-03-14  Edward Hervey  <edward.hervey@collabora.co.uk>
4939
4940         * gst-libs/gst/dshow/Makefile.am:
4941         Make sure the dshow helper library headers get distributed in the next
4942         release.
4943
4944 2008-03-14  David Schleef  <ds@schleef.org>
4945
4946         Patch by: William M. Brack
4947
4948         * gst/bayer/gstbayer2rgb.c: Significant improvements.  Fixes #521392.
4949
4950 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4951
4952         * gst/selector/gstinputselector.c: (gst_selector_pad_event),
4953         (gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
4954         (gst_input_selector_class_init),
4955         (gst_input_selector_set_active_pad),
4956         (gst_input_selector_set_property),
4957         (gst_input_selector_push_pending_stop):
4958         Add lots of debugging. 
4959         Fix time member in the newsegment event.
4960
4961 2008-03-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4962
4963         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4964         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
4965         (gst_selector_pad_event), (gst_input_selector_class_init),
4966         (gst_input_selector_init), (gst_input_selector_set_active_pad),
4967         (gst_input_selector_set_property),
4968         (gst_input_selector_get_property),
4969         (gst_input_selector_request_new_pad),
4970         (gst_input_selector_release_pad),
4971         (gst_input_selector_push_pending_stop),
4972         (gst_input_selector_switch):
4973         * gst/selector/gstinputselector.h:
4974         Various cleanups.
4975         Added tags to the pads.
4976         Select active pad based on the pad object instead of its name.
4977         Fix refcount in set_active_pad.
4978         Add property to get the number of pads.
4979
4980         * gst/selector/gstoutputselector.c:
4981         (gst_output_selector_class_init),
4982         (gst_output_selector_set_property),
4983         (gst_output_selector_get_property):
4984         Various cleanups.
4985         Select the active pad based on the pad object instead of its name.
4986         Fix locking when setting the active pad.
4987
4988         * gst/selector/gstselector-marshal.list:
4989         * tests/check/elements/selector.c: (cleanup_pad),
4990         (selector_set_active_pad), (run_input_selector_buffer_count):
4991         Fixes for pad instead of padname for pad selection.
4992
4993 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
4994
4995         * ext/alsaspdif/alsaspdifsink.c:
4996         * ext/gsm/gstgsm.c:
4997         * ext/jack/gstjack.c:
4998         * ext/libmms/gstmms.c:
4999         * ext/neon/gstneonhttpsrc.c:
5000         * ext/shout/gstshout.c:
5001         * ext/timidity/gsttimidity.c:
5002         * ext/timidity/gstwildmidi.c:
5003         * gst/nuvdemux/gstnuvdemux.c:
5004         * gst/tta/gsttta.c:
5005         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
5006         of hardcoding values where possible. Fixes bug #522212.
5007
5008 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
5009
5010         Patch by: Wouter Cloetens <wouter at mind dot be>
5011
5012         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_init),
5013         (gst_soup_http_src_finished_cb), (gst_soup_http_src_response_cb),
5014         (gst_soup_http_src_build_message), (gst_soup_http_src_create):
5015         * ext/soup/gstsouphttpsrc.h:
5016         Try to resume on server disconnect. Fixes bug #522134.
5017
5018 2008-03-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5019
5020         * ext/xvid/gstxvidenc.c: (gst_xvidenc_chain):
5021         Set correct pixel aspect ratio for the encoder.
5022
5023 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5024
5025         Patch by: Olivier Crete <tester at tester dot ca>
5026
5027         * gst/rtpmanager/rtpsession.c: (find_add_conflicting_addresses),
5028         (check_collision), (obtain_source), (rtp_session_create_new_ssrc),
5029         (rtp_session_create_source), (rtp_session_process_rtp),
5030         (rtp_session_process_sr), (rtp_session_process_rr),
5031         (rtp_session_process_sdes), (rtp_session_process_bye),
5032         (rtp_session_send_bye_locked), (rtp_session_send_bye),
5033         (rtp_session_on_timeout):
5034         * gst/rtpmanager/rtpsession.h:
5035         Implement collision and loop detection in rtpmanager.
5036         Fixes #520626.
5037
5038         * gst/rtpmanager/rtpsource.c: (rtp_source_reset),
5039         (rtp_source_init):
5040         * gst/rtpmanager/rtpsource.h:
5041         Add method to reset stats.
5042
5043 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5044
5045         Based on patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5046
5047         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_init),
5048         (rtcp_thread), (start_rtcp_thread), (stop_rtcp_thread),
5049         (join_rtcp_thread), (gst_rtp_session_change_state):
5050         Avoid a deadlock when joining the RTCP thread in PAUSED because it might
5051         be blocked downstream. Also avoid spawning multiple rtcp threads.
5052         Fixes #520894.
5053
5054 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5055
5056         Patch by: Stefan Kost <ensonic@users.sf.net>
5057
5058         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
5059         Don't try to reset the clock skew when we have no timestamps.
5060         Fixes #519005.
5061
5062 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5063
5064         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5065
5066         * ext/faad/gstfaad.c: (looks_like_valid_header):
5067         Improve the header checking to look for what faad2 looks
5068         for too. Fixes playback of same apple trailers.
5069         Fixes bug #469979.
5070
5071 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5072
5073         * configure.ac:
5074         Really check for libdc1394 >= 2.0.0, pkg-config thinks that
5075         2.0.0-rcX is newer than 2.0.0 so we check for this too.
5076
5077 2008-03-05  David Schleef  <ds@schleef.org>
5078
5079         * ext/dirac/gstdiracenc.cc: Add a bunch of properties cribbed
5080           from the encoder program in dirac.
5081
5082 2008-03-05  David Schleef  <ds@schleef.org>
5083
5084         * configure.ac:
5085         * ext/Makefile.am:
5086         * ext/dirac/Makefile.am:
5087         * ext/dirac/gstdirac.cc:
5088         * ext/dirac/gstdiracenc.cc:
5089           Rewrite Dirac encoder plugin based on Schroedinger gstreamer
5090           elements.
5091
5092 2008-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5093
5094         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
5095
5096         * configure.ac:
5097         * ext/Makefile.am:
5098         * ext/mplex/Makefile.am:
5099         * ext/mplex/gstmplex.cc:
5100         * ext/mplex/gstmplex.hh:
5101         * ext/mplex/gstmplexibitstream.cc:
5102         * ext/mplex/gstmplexibitstream.hh:
5103         * ext/mplex/gstmplexjob.cc:
5104         * ext/mplex/gstmplexjob.hh:
5105         * ext/mplex/gstmplexoutputstream.cc:
5106         * ext/mplex/gstmplexoutputstream.hh:
5107         Port mplex element to 0.10. Fixes bug #520329.
5108
5109         * tests/check/Makefile.am:
5110         * tests/check/elements/mplex.c: (test_sink_event), (setup_src_pad),
5111         (teardown_src_pad), (setup_mplex), (cleanup_mplex),
5112         (GST_START_TEST), (mplex_suite), (main):
5113         Add unit test for the mplex element.
5114
5115 2008-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5116
5117         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
5118
5119         * configure.ac:
5120         Clean up detection of different mjpegtoolsAPI versions.
5121
5122         * ext/mpeg2enc/gstmpeg2enc.cc:
5123         * ext/mpeg2enc/gstmpeg2enc.hh:
5124         * ext/mpeg2enc/gstmpeg2encoder.cc:
5125         * ext/mpeg2enc/gstmpeg2encoptions.cc:
5126         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5127         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
5128         * ext/mpeg2enc/gstmpeg2encstreamwriter.cc:
5129         * ext/mpeg2enc/gstmpeg2encstreamwriter.hh:
5130         Streamline conditional code for evolving mjpegtools API,
5131         optimize and fix/prevent crash in log handling, use
5132         names/nicks for enums in the usual way andm inor updates
5133         in code and properties/settings. Partially fixes bug #520329.
5134
5135 2008-03-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5136
5137         * gst/mpegtsparse/gstmpegdesc.h:
5138         * gst/mpegtsparse/mpegtspacketizer.c:
5139         Add parsing of cable delivery system descriptor.
5140
5141 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5142
5143         * configure.ac:
5144         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
5145         plug-ins are included/excluded. (#498222)
5146
5147 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
5148
5149         Patch by: Jens Granseuer <jensgr at gmx dot net>
5150
5151         * gst/mve/gstmvedemux.c: (gst_mve_audio_data),
5152         (gst_mve_demux_get_type):
5153         Fix audio discontinuity that happens when silent chunks are
5154         followed by real data again. Fixes bug #519905.
5155
5156 2008-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5157
5158         * sys/dvb/gstdvbsrc.c:
5159         * sys/dvb/parsechannels.c:
5160         Add DVB-C support. Special thanks to Christian Schaller
5161         for a testing ground.
5162
5163 2008-02-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5164
5165         * gst/mpegtsparse/mpegtsparse.c:
5166         Only send PMTs to program pads that the PMT is for even if
5167         on same pid.
5168         As a by-product, we now no longer hardcode any psi pid numbers.
5169         Also remove pcr stream from old pmt when we apply a new pmt.
5170
5171 2008-02-28  Edgard Lima  <edgard.lima@indt.org.br>
5172
5173         * ext/metadata/TODO:
5174         * ext/metadata/metadata_mapping.htm:
5175         * ext/metadata/metadataexif.c:
5176         * ext/metadata/metadatatags.c:
5177         * ext/metadata/metadatatags.h:
5178         * tests/icles/metadata_editor.c:
5179         Map Date-Time and GPS tags and Convert from EXIF to XMP Datatime as
5180         local time (those changes has been done in previous comit but had to
5181         be revert in 2008-02-10 due to frozen)
5182
5183 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5184
5185         * sys/dvb/camutils.c:
5186         Remove the G_VALUE_HOLDS_BOXED checks. They were
5187         only added to help debug the data corruption.
5188
5189 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5190
5191         * sys/dvb/camutils.c:
5192         Don't free the program descriptors, this structure
5193         containing them is still stored after.
5194         Fixes data corruption.
5195
5196 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5197
5198         * sys/dvb/camutils.c:
5199         Extra checks to prevent data corruption/segfaults.
5200
5201 2008-02-26  Stefan Kost  <ensonic@users.sf.net>
5202
5203         * ext/nas/nassink.c:
5204           Fix build warning by using portable API.
5205
5206 2008-02-26  Stefan Kost  <ensonic@users.sf.net>
5207
5208         * gst/selector/gstoutputselector.c:
5209           Fix changing to same pad twice before a chain call.     
5210
5211 2008-02-26  Sebastian Dröge  <slomo@circular-chaos.org>
5212
5213         Patch by: Daniel Fischer <dan at f3c dot com>
5214
5215         * configure.ac:
5216         * ext/dc1394/gstdc1394.c: (gst_dc1394_change_state),
5217         (gst_dc1394_get_cam_caps), (gst_dc1394_open_cam_with_best_caps):
5218         * ext/dc1394/gstdc1394.h:
5219         Add support for libdc1394 2.0.0 and above and require this version
5220         now. Fixes bug #514964.
5221
5222 2008-02-26  Sebastian Dröge  <slomo@circular-chaos.org>
5223
5224         Patch by: Wouter Cloetens <wouter at mind dot be>
5225
5226         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
5227         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
5228         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
5229         (gst_soup_http_src_create):
5230         * ext/soup/gstsouphttpsrc.h:
5231         * tests/check/elements/souphttpsrc.c: (run_test), (GST_START_TEST),
5232         (souphttpsrc_suite):
5233         Add support for specifying a list of cookies to be passed in
5234         the HTTP request. Fixes bug #518722.
5235
5236 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
5237
5238         * gst/selector/gstinputselector.c:
5239         * gst/selector/gstinputselector.h:
5240           Added "select-all" property to make it work like aggregator in 0.8.
5241
5242         * gst/selector/gstoutputselector.c:
5243           Fix resend-latest behavoiur.
5244           
5245         * tests/check/Makefile.am:
5246         * tests/check/elements/.cvsignore:
5247         * tests/check/elements/selector.c:
5248           Add unit tests for selector.
5249
5250 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
5251
5252         * configure.ac:
5253         * ext/timidity/gsttimidity.c: (plugin_init):
5254         * ext/timidity/gstwildmidi.c: (plugin_init):
5255         Remove midi typefinders and require base CVS as they moved there.
5256
5257 2008-02-24  Sebastian Dröge  <slomo@circular-chaos.org>
5258
5259         * ext/Makefile.am:
5260         Only disable the ext/timidity directory if both, wildmidi
5261         _and_ timidity are not available.
5262
5263 2008-02-24  Sebastian Dröge  <slomo@circular-chaos.org>
5264
5265         Patch by: Emilio Pozuelo Monfort <pochu at ubuntu dot com>
5266
5267         * ext/Makefile.am:
5268         Build the wildmidi plugin if it's enabled and not only when
5269         both, the timidity and wildmidi plugin, are enabled.
5270
5271 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5272
5273         * configure.ac:
5274         * ext/mpeg2enc/Makefile.am:
5275         * ext/soundtouch/Makefile.am:
5276         * gst/modplug/Makefile.am:
5277           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
5278           when building C++ code.
5279
5280 2008-02-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5281
5282         * sys/dvb/gstdvbsrc.c:
5283         Add initial support for multiproto driver (not yet merged into
5284         v4l-dvb mainline yet).
5285         Only works for DVB-S not DVB-S2, DVB-T, DVB-C or other.
5286
5287 2008-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5288
5289         * docs/plugins/inspect/plugin-alsaspdif.xml:
5290         * docs/plugins/inspect/plugin-app.xml:
5291         * docs/plugins/inspect/plugin-bayer.xml:
5292         * docs/plugins/inspect/plugin-bz2.xml:
5293         * docs/plugins/inspect/plugin-cdaudio.xml:
5294         * docs/plugins/inspect/plugin-cdxaparse.xml:
5295         * docs/plugins/inspect/plugin-dfbvideosink.xml:
5296         * docs/plugins/inspect/plugin-dtsdec.xml:
5297         * docs/plugins/inspect/plugin-dvb.xml:
5298         * docs/plugins/inspect/plugin-dvdspu.xml:
5299         * docs/plugins/inspect/plugin-faac.xml:
5300         * docs/plugins/inspect/plugin-faad.xml:
5301         * docs/plugins/inspect/plugin-fbdevsink.xml:
5302         * docs/plugins/inspect/plugin-festival.xml:
5303         * docs/plugins/inspect/plugin-filter.xml:
5304         * docs/plugins/inspect/plugin-flvdemux.xml:
5305         * docs/plugins/inspect/plugin-freeze.xml:
5306         * docs/plugins/inspect/plugin-gsm.xml:
5307         * docs/plugins/inspect/plugin-gstinterlace.xml:
5308         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
5309         * docs/plugins/inspect/plugin-h264parse.xml:
5310         * docs/plugins/inspect/plugin-interleave.xml:
5311         * docs/plugins/inspect/plugin-jack.xml:
5312         * docs/plugins/inspect/plugin-ladspa.xml:
5313         * docs/plugins/inspect/plugin-metadata.xml:
5314         * docs/plugins/inspect/plugin-mms.xml:
5315         * docs/plugins/inspect/plugin-modplug.xml:
5316         * docs/plugins/inspect/plugin-mpeg2enc.xml:
5317         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
5318         * docs/plugins/inspect/plugin-mpegtsparse.xml:
5319         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
5320         * docs/plugins/inspect/plugin-musepack.xml:
5321         * docs/plugins/inspect/plugin-musicbrainz.xml:
5322         * docs/plugins/inspect/plugin-mve.xml:
5323         * docs/plugins/inspect/plugin-neon.xml:
5324         * docs/plugins/inspect/plugin-nsfdec.xml:
5325         * docs/plugins/inspect/plugin-nuvdemux.xml:
5326         * docs/plugins/inspect/plugin-rawparse.xml:
5327         * docs/plugins/inspect/plugin-real.xml:
5328         * docs/plugins/inspect/plugin-replaygain.xml:
5329         * docs/plugins/inspect/plugin-rfbsrc.xml:
5330         * docs/plugins/inspect/plugin-sdl.xml:
5331         * docs/plugins/inspect/plugin-sdp.xml:
5332         * docs/plugins/inspect/plugin-selector.xml:
5333         * docs/plugins/inspect/plugin-sndfile.xml:
5334         * docs/plugins/inspect/plugin-soundtouch.xml:
5335         * docs/plugins/inspect/plugin-spcdec.xml:
5336         * docs/plugins/inspect/plugin-speed.xml:
5337         * docs/plugins/inspect/plugin-speexresample.xml:
5338         * docs/plugins/inspect/plugin-stereo.xml:
5339         * docs/plugins/inspect/plugin-tremor.xml:
5340         * docs/plugins/inspect/plugin-tta.xml:
5341         * docs/plugins/inspect/plugin-vcdsrc.xml:
5342         * docs/plugins/inspect/plugin-videosignal.xml:
5343         * docs/plugins/inspect/plugin-vmnc.xml:
5344         * docs/plugins/inspect/plugin-x264.xml:
5345         * docs/plugins/inspect/plugin-xvid.xml:
5346         * docs/plugins/inspect/plugin-y4menc.xml:
5347           Update to version 0.10.6.1.
5348
5349 2008-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5350
5351         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5352         * docs/plugins/inspect/plugin-gdp.xml:
5353         * docs/plugins/inspect/plugin-quicktime.xml:
5354         * docs/plugins/inspect/plugin-switch.xml:
5355         * docs/plugins/inspect/plugin-videocrop.xml:
5356           Remove docs for elements that have moved to other modules
5357           or been renamed.
5358
5359 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5360
5361         Patch by: Wouter Cloetens <wouter at mind dot be>
5362
5363         * configure.ac:
5364         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_cancel_message),
5365         (gst_soup_http_src_finished_cb), (gst_soup_http_src_chunk_free),
5366         (gst_soup_http_src_chunk_allocator),
5367         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_create),
5368         (gst_soup_http_src_start), (gst_soup_http_src_set_proxy):
5369         * ext/soup/gstsouphttpsrc.h:
5370         Implement zero-copy and make the buffer size configurable.
5371         Prefix proxy URIs with "http://" if they don't start with it
5372         already and catch errors earlier, fixes hanging in some situations.
5373         Fixes bug #514948.
5374
5375 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5376
5377         * tests/check/gst-plugins-bad.supp:
5378         Add suppressions for SoundTouch valgrind warnings and
5379         a valgrind warning caused by the LADSPA sine plugin and
5380         happening on every exit().
5381         Remove GIO suppressions as it's now in -base.
5382
5383 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5384
5385         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_create):
5386         Don't allocate and copy the data to a new place but instead
5387         put the data from gmyth (which we own) into the buffers that
5388         are passed downstream.
5389
5390 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5391
5392         * ext/timidity/gstwildmidi.c:
5393         If WILDMIDI_CFG is not defined, define it to the default
5394         timidity configure file.
5395
5396 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5397
5398         Based on a patch by:
5399           Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
5400
5401         * configure.ac:
5402         * ext/mpeg2enc/gstmpeg2enc.cc:
5403         Remove hack to work with mjpegtools 1.9.0rc3 and above and instead
5404         use mjpeg_loglev_t() for getting the log levels. Check for this
5405         function in configure.ac as the pkg-config file doesn't tell us
5406         which release candidate we have. Fixes bug #517896.
5407
5408 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5409
5410         * configure.ac:
5411         Check for X for the nas plugin to make it possible to build it
5412         again. Fixes bug #517895.
5413
5414 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5415
5416         * tests/check/Makefile.am:
5417         Ignore some more elements for the states unit test, like
5418         dfbvideosink which produces a segfault. Fixes bug #517854.
5419
5420 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5421
5422         Patch by: Jens Granseuer <jensgr at gmx dot net>
5423
5424         * gst/librfb/gstrfbsrc.c: (gst_rfb_property_set_version):
5425         * gst/librfb/rfbdecoder.c: (rfb_decoder_message_set_encodings),
5426         (rfb_decoder_state_set_encodings):
5427         * gst/mpegtsparse/mpegtspacketizer.c:
5428         (mpegts_packetizer_parse_nit), (mpegts_packetizer_parse_sdt),
5429         (mpegts_packetizer_parse_eit):
5430         * sys/fbdev/gstfbdevsink.c: (gst_fbdevsink_getcaps),
5431         (gst_fbdevsink_setcaps), (gst_fbdevsink_render):
5432         Some C89 fixes, moving variable declarations to the beginning
5433         of a block. Fixes bug #517937.
5434
5435 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
5436
5437         * configure.ac:
5438         Back to development...
5439
5440 === release 0.10.6 ===
5441
5442 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
5443
5444         * configure.ac:
5445           releasing 0.10.6, "A Big Deep Breath"
5446
5447 2008-02-20  Bastien Nocera  <hadess@hadess.net>
5448
5449         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_do_seek),
5450         (gst_mythtv_src_start): Using the wrong GstFormat for the filesize,
5451         and fail seek properly on anything but _BYTES format
5452         Fixes bug #517684
5453
5454 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
5455
5456         Patch by: Olivier Crete <tester at tester dot ca>
5457
5458         * gst/rtpmanager/gstrtpbin.c: (new_ssrc_pad_found):
5459         Fix small memory leak, leaking caps. Fixes bug #517571.
5460
5461 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
5462
5463         * gst/tta/Makefile.am:
5464         Link tta plugin with libm. Fixes bug #517391.
5465
5466 2008-02-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5467
5468         * sys/dvb/camutils.c:
5469         Do not assume "descriptors" property in the pmt structure
5470         is present.
5471         Fixes #516499.
5472
5473 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5474
5475         Patch by: Olivier Crete <tester@tester.ca>
5476
5477         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate):
5478         Ignore streams that did not receive an SR packet when doing
5479         synchronisation. Fixes #516160.
5480
5481 2008-02-14  Sebastian Dröge  <slomo@circular-chaos.org>
5482
5483         * gst/dvdspu/gstdvdspu.c: (gst_dvd_spu_handle_new_spu_buf):
5484         Set n_line_ctrl_i to 0 whenever we free line_ctrl_i. Patch based
5485         on an idea by Jan Schmidt, fixes bug #516436.
5486
5487 2008-02-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5488
5489         * gst/mpegtsparse/gstmpegdesc.c:
5490         * gst/mpegtsparse/gstmpegdesc.h:
5491         * gst/mpegtsparse/mpegtsparse.c:
5492         Make sure the gstmpegdesc debug lines do not critical
5493         when GST_DEBUG is enabled and also actually output.
5494         Thanks to Alessandro Decina for spotting.
5495         Fixes #516448
5496
5497 2008-02-13  Jan Schmidt  <jan.schmidt@sun.com>
5498
5499         * gst-libs/gst/Makefile.am:
5500         * sys/Makefile.am:
5501         Also add dshow pieces to the disted subdirs to fix distcheck.
5502
5503 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5504
5505         Patch by: Josep Torra Valles <josep@fluendo.com>
5506
5507         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_reverse):
5508         Fix potential buffer leak in reverse mode. Re-Fixes #516061.
5509
5510 2008-02-13  Sebastian Dröge  <slomo@circular-chaos.org>
5511
5512         * configure.ac:
5513         Allow gmyth versions from 0.4 up to 0.7.99, the API didn't change
5514         until 0.7 fortunately.
5515
5516 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5517
5518         * configure.ac:
5519         Generate the directshow Makefiles so that the directories
5520         get disted. Still needs some configure time detection to enable
5521         building them under MingW.
5522
5523 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5524
5525         * ext/metadata/Makefile.am:
5526         Don't install a header file. We will have to merge these
5527         tags into libgsttag after the release and use them from there.
5528         Fixes: #515860
5529
5530 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
5531
5532         * gst-libs/gst/dshow/Makefile.am:
5533         * sys/dshowdecwrapper/Makefile.am:
5534         * sys/dshowsrcwrapper/Makefile.am:
5535         Add Makefiles to win32 plugins and lib.
5536         They will need to be tested and probably fixed by developers
5537         working with mingw. This is a first step to include source files 
5538         with releases.
5539         
5540 2008-02-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5541
5542         * sys/dvb/dvbbasebin.c:
5543         Fix leak of location string returned from gst_uri_get_location.
5544         Fixes bug #516114
5545
5546 2008-02-12  David Schleef  <ds@schleef.org>
5547
5548         * configure.ac:
5549         * docs/plugins/Makefile.am:
5550         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5551         * docs/plugins/inspect/plugin-glimagesink.xml:
5552         * sys/Makefile.am:
5553         * sys/glsink/BUGS:
5554         * sys/glsink/Makefile.am:
5555         * sys/glsink/color_matrix.c:
5556         * sys/glsink/glextensions.c:
5557         * sys/glsink/glextensions.h:
5558         * sys/glsink/glimagesink.c:
5559         * sys/glsink/glimagesink.h:
5560         * sys/glsink/gltestsrc.c:
5561         * sys/glsink/gltestsrc.h:
5562         * sys/glsink/gstglbuffer.c:
5563         * sys/glsink/gstglbuffer.h:
5564         * sys/glsink/gstglconvert.c:
5565         * sys/glsink/gstgldisplay.c:
5566         * sys/glsink/gstgldisplay.h:
5567         * sys/glsink/gstgldownload.c:
5568         * sys/glsink/gstglfilter.c:
5569         * sys/glsink/gstglfilter.h:
5570         * sys/glsink/gstglfilterexample.c:
5571         * sys/glsink/gstgltestsrc.c:
5572         * sys/glsink/gstgltestsrc.h:
5573         * sys/glsink/gstglupload.c:
5574         * sys/glsink/gstopengl.c:
5575           Remove glimagesink, as it's been moved to gst-plugins-gl.
5576           Fixes #516094.
5577
5578 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5579
5580         Patch by: Josep Torra Valles <josep@fluendo.com>
5581
5582         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_reverse):
5583         Fix potential buffer leak in reverse mode. Fixes #516061.
5584
5585 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5586
5587         * sys/dshowdecwrapper/gstdshowaudiodec.c:
5588         (gst_dshowaudiodec_dispose):
5589         * sys/dshowdecwrapper/gstdshowvideodec.c:
5590         (gst_dshowvideodec_dispose):
5591         Chain up dispose methods properly. Fixes bug #515970.
5592
5593 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5594
5595         * gst/mpegvideoparse/mpegvideoparse.c:
5596         (mpegvideoparse_handle_sequence), (mpegvideoparse_drain_avail),
5597         (gst_mpegvideoparse_change_state):
5598         Fix leaking caps.
5599         Fix potential buffer leak in forward mode.
5600         Cleanup queues when going to READY. Fixes #515815.
5601
5602 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5603
5604         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5605         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5606         * docs/plugins/inspect/plugin-gio.xml:
5607         Remove documentation for the GIO plugin as it was moved to
5608         gst-plugins-base. Fixes bug #515964.
5609
5610 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5611
5612         * ext/xvid/gstxvidenc.c:
5613         * gst/vmnc/vmncdec.c:
5614         * sys/glsink/glimagesink.c:
5615         * sys/glsink/gstgldisplay.c:
5616         Fix some finalize leaks by chaining up to the parent method.
5617         Fixes: #515919
5618
5619 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5620
5621         * tests/check/elements/souphttpsrc.c:
5622         Include glib/gprintf.h for g_vasprintf(). Fixes bug #515564.
5623
5624 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5625
5626         * gst/librfb/gstrfbsrc.c: (gst_rfb_src_dispose):
5627         Free the rfb decoder on finalize. Fixes bug #515721.
5628
5629 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5630
5631         * sys/fbdev/gstfbdevsink.c: (gst_fbdevsink_class_init),
5632         (gst_fbdevsink_finalize):
5633         Free the device string in finalize. Fixes bug #515722.
5634
5635 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5636
5637         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init):
5638         Unset GValues after using them. Fixes bug #515720.
5639
5640 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5641
5642         * tests/check/Makefile.am:
5643         Disable the dvb plugin for the states test. Fixes bug #515567.
5644
5645 2008-02-10  Edgard Lima,,,,  <edgard.lima@indt.org.br>
5646
5647         * ext/metadata/TODO:
5648         * ext/metadata/metadata_mapping.htm:
5649         * ext/metadata/metadataexif.c:
5650         * ext/metadata/metadatatags.c:
5651         * ext/metadata/metadatatags.h:
5652         * tests/icles/metadata_editor.c:
5653           Revert changes to 2008-02-09 due to frozen.
5654
5655 2008-02-10  Jan Schmidt  <jan.schmidt@sun.com>
5656
5657         * ext/ivorbis/vorbisfile.c:
5658         Trivial fix for build warning.
5659         Patch by: Josep Torra Valles <josep@fluendo.com>
5660         Fixes: #515588
5661
5662 2008-02-10  Edgard Lima  <edgard.lima@indt.org.br>
5663
5664         * ext/metadata/TODO:
5665         * ext/metadata/metadataexif.c:
5666           Convert from EXIF to XMP DataTime as local time.
5667
5668 2008-02-10  Edgard Lima  <edgard.lima@indt.org.br>
5669
5670         * ext/metadata/TODO:
5671         * ext/metadata/metadata_mapping.htm:
5672         * ext/metadata/metadataexif.c:
5673         * ext/metadata/metadatatags.c:
5674         * ext/metadata/metadatatags.h:
5675         * tests/icles/metadata_editor.c:
5676           Map Date-Time and GPS tags.
5677           
5678
5679 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
5680
5681         * gst/selector/Makefile.am:
5682
5683         Listing the marshal.h in the nodist_HEADERS breaks distcheck, so
5684         let's not do that
5685
5686         * tests/check/Makefile.am:
5687         Disable the crashing cdaudio plugin from the states test so I can make
5688         pre-releases.
5689
5690 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
5691
5692         * win32/vs6/libgstdshowdecwrapper.dsp:
5693         * win32/vs6/libgstflv.dsp:
5694         Convert to DOS line endings, and set -kb
5695
5696 2008-02-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5697
5698         * sys/dvb/Makefile.am:
5699         * sys/dvb/dvbbasebin.c:
5700         Add URI Handler for dvb.
5701         Re-order pad templates to workaround a bug in playbasebin.
5702         * sys/dvb/parsechannels.c:
5703         * sys/dvb/parsechannels.h:
5704         Add code to parse channels from zap-style channels.conf files.
5705
5706 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5707
5708         * configure.ac:
5709         * docs/plugins/Makefile.am:
5710         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5711         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5712         * docs/plugins/gst-plugins-bad-plugins.args:
5713         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5714         * docs/plugins/inspect/plugin-multifile.xml:
5715         * gst/multifile/Makefile.am:
5716         * gst/multifile/gstmultifile.c:
5717         * gst/multifile/gstmultifilesink.c:
5718         * gst/multifile/gstmultifilesink.h:
5719         * gst/multifile/gstmultifilesrc.c:
5720         * gst/multifile/gstmultifilesrc.h:
5721         * gst/multifile/multifile.vproj:
5722         * tests/check/Makefile.am:
5723         * tests/check/elements/multifile.c:
5724
5725         Remove multifile plugin, which has moved to -good
5726
5727 2008-02-07  David Schleef  <ds@schleef.org>
5728
5729         * gst/multifile/gstmultifilesink.c:
5730         * gst/multifile/gstmultifilesrc.c:
5731           Use g_file_[sg]et_contents() instead of using stdio functions.
5732           Should be less error prone.
5733         * tests/check/elements/multifile.c:
5734           Create a temporary directory using standard functions instead of
5735           creating a directory in the current dir.
5736
5737 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5738
5739         * configure.ac:
5740         * docs/plugins/Makefile.am:
5741         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5742         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5743         * docs/plugins/gst-plugins-bad-plugins.args:
5744         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5745         * docs/plugins/inspect/plugin-spectrum.xml:
5746         * gst/spectrum/.cvsignore:
5747         * gst/spectrum/Makefile.am:
5748         * gst/spectrum/README:
5749         * gst/spectrum/demo-audiotest.c:
5750         * gst/spectrum/demo-osssrc.c:
5751         * gst/spectrum/gstspectrum.c:
5752         * gst/spectrum/gstspectrum.h:
5753         * gst/spectrum/spectrum.vcproj:
5754         * tests/check/Makefile.am:
5755         * tests/check/elements/spectrum.c:
5756
5757         Remove spectrum plugin, which has moved to -good
5758
5759 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5760
5761         * docs/plugins/gst-plugins-bad-plugins.args:
5762         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5763         * docs/plugins/gst-plugins-bad-plugins.interfaces:
5764         Remove equalizer plugin docs
5765
5766         * tests/check/Makefile.am:
5767         Add GST_OPTION_CFLAGS, to get -Werror -Wall into the tests as for
5768         other modules.
5769
5770         * tests/check/elements/multifile.c:
5771         * tests/check/elements/rganalysis.c:
5772         * tests/check/elements/rglimiter.c:
5773
5774         Fix compiler warnings from -Wall -Werror
5775
5776 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5777
5778         * configure.ac:
5779         * docs/plugins/Makefile.am:
5780         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5781         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5782         * docs/plugins/inspect/plugin-equalizer.xml:
5783         * gst/equalizer/.cvsignore:
5784         * gst/equalizer/Makefile.am:
5785         * gst/equalizer/demo.c:
5786         * gst/equalizer/gstiirequalizer.c:
5787         * gst/equalizer/gstiirequalizer.h:
5788         * gst/equalizer/gstiirequalizer10bands.c:
5789         * gst/equalizer/gstiirequalizer10bands.h:
5790         * gst/equalizer/gstiirequalizer3bands.c:
5791         * gst/equalizer/gstiirequalizer3bands.h:
5792         * gst/equalizer/gstiirequalizernbands.c:
5793         * gst/equalizer/gstiirequalizernbands.h:
5794         * tests/check/Makefile.am:
5795         * tests/check/elements/.cvsignore:
5796         * tests/check/elements/equalizer.c:
5797
5798         Remove the equalizer plugin, which has moved to -good
5799
5800 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5801
5802         * configure.ac:
5803         Make DISABLE_DEPRECATED defined *only* during CVS, not during
5804         pre-releases or releases.
5805
5806 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5807
5808         * docs/plugins/Makefile.am:
5809         Don't scan deleted xingmux header.
5810
5811 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5812
5813         * configure.ac:
5814         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5815         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5816         * docs/plugins/inspect/plugin-xingheader.xml:
5817         * gst/xingheader/Makefile.am:
5818         * gst/xingheader/gstxingmux.c:
5819         * gst/xingheader/gstxingmux.h:
5820         * tests/check/Makefile.am:
5821         * tests/check/elements/.cvsignore:
5822         * tests/check/elements/xingmux.c:
5823         * tests/check/elements/xingmux_testdata.h:
5824         Remove the xingmux plugin, as the element has moved into
5825         mpegaudioparse in -ugly.
5826
5827 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5828
5829         * docs/plugins/Makefile.am:
5830         Remove mention of non-existent headers to fix the build.
5831
5832 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5833
5834         * configure.ac:
5835         * ext/Makefile.am:
5836         * ext/gio/Makefile.am:
5837         * ext/gio/gstgio.c:
5838         * ext/gio/gstgio.h:
5839         * ext/gio/gstgiobasesink.c:
5840         * ext/gio/gstgiobasesink.h:
5841         * ext/gio/gstgiobasesrc.c:
5842         * ext/gio/gstgiobasesrc.h:
5843         * ext/gio/gstgiosink.c:
5844         * ext/gio/gstgiosink.h:
5845         * ext/gio/gstgiosrc.c:
5846         * ext/gio/gstgiosrc.h:
5847         * ext/gio/gstgiostreamsink.c:
5848         * ext/gio/gstgiostreamsink.h:
5849         * ext/gio/gstgiostreamsrc.c:
5850         * ext/gio/gstgiostreamsrc.h:
5851         * tests/check/Makefile.am:
5852         * tests/check/pipelines/.cvsignore:
5853         * tests/check/pipelines/gio.c:
5854
5855         Remove GIO plugin which has now moved to -base.
5856
5857 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5858
5859         * docs/plugins/Makefile.am:
5860         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5861         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5862         * docs/plugins/gst-plugins-bad-plugins.args:
5863         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5864         * gst/filter/Makefile.am:
5865         * gst/filter/filter.vcproj:
5866         * gst/filter/gstbpwsinc.c:
5867         * gst/filter/gstbpwsinc.h:
5868         * gst/filter/gstfilter.c:
5869         * gst/filter/gstfilter.h:
5870         * gst/filter/gstlpwsinc.c:
5871         * gst/filter/gstlpwsinc.h:
5872         * tests/check/Makefile.am:
5873         * tests/check/elements/bpwsinc.c:
5874         * tests/check/elements/lpwsinc.c:
5875
5876         Remove lpwsinc and bpwsinc elements - they've become
5877         audiowsinclimit and audiowsincband respectively, in the
5878         gst-plugins-good audiofx plugin.
5879
5880 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
5881
5882         * ext\neon\gstneonhttpsrc.c:
5883         Include unistd.h only if _HAVE_UNISTD_H is defined
5884         * gst\mpegvideoparse\mpegvideoparse.c:
5885         Use G_GUINT64_CONSTANT GLIB macro for constant
5886         * sys\dshowsrcwrapper\gstdshowaudiosrc.c:
5887         * sys\dshowsrcwrapper\gstdshowvideosrc.c:
5888         * sys\dshowdecwrapper\gstdshowaudiodec.c:
5889         * sys\dshowdecwrapper\gstdshowaudiodec.h:
5890         * sys\dshowdecwrapper\gstdshowdecwrapper.c:
5891         * sys\dshowdecwrapper\gstdshowdecwrapper.h:
5892         * sys\dshowdecwrapper\gstdshowvideodec.c
5893         * sys\dshowdecwrapper\gstdshowvideodec.h:
5894         Add a DirectShow decoder wrapper.
5895         * win32\MANIFEST:
5896         Add new win32 files to MANIFEST
5897         * win32\vs6\gst_plugins_bad.dsw:
5898         * win32\vs6\libgstdshow.dsp:
5899         * win32\vs6\libgstdshowdecwrapper.dsp:
5900         * win32\vs6\libgstflv.dsp:
5901         Add new projects to bad workspace
5902
5903 2008-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5904
5905         * gst/mpegtsparse/mpegtspacketizer.c:
5906         Parse component descriptor.
5907         * gst/mpegtsparse/mpegtsparse.c:
5908         Add SI pids to every program (but hardcoded currently).
5909
5910 2008-02-07  Edgard Lima  <edgard.lima@indt.org.br>
5911
5912         * ext/metadata/metadata_mapping.htm:
5913         * ext/metadata/metadataexif.c:
5914         * ext/metadata/metadatatags.c:
5915         * ext/metadata/metadatatags.h:
5916         * tests/icles/metadata_editor.c:
5917         * tests/icles/metadata_editor.glade:
5918           Add more tags. Improve test app.
5919
5920 2008-02-07  Stefan Kost  <ensonic@users.sf.net>
5921
5922         * gst/multifile/gstmultifilesink.c:
5923           Add a fixme comment.
5924
5925         * gst/selector/gstoutputselector.c:
5926           Fix same leak as in input-selector.
5927
5928         * tests/icles/output-selector-test.c:
5929           Improve the test.
5930
5931 2008-02-07  Stefan Kost  <ensonic@users.sf.net>
5932
5933         * gst/spectrum/gstspectrum.c:
5934           Improve the docs.
5935
5936 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
5937
5938         * configure.ac:
5939           The dc1394 plugin seems to use API that was removed or changed
5940           before the final 2.0.0 release, so only build it if 2.0.0-rc5
5941           is available. Someone needs to port it to the final API.
5942
5943         * ext/dc1394/gstdc1394.c: (gst_dc1394_change_camera_transmission):
5944           Include string.h for memcpy and use g_usleep instead of usleep.
5945
5946 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
5947
5948         * gst/filter/gstlpwsinc.c:
5949         Fix typo in the long description of the element.
5950
5951 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5952
5953         * gst/xingheader/Makefile.am:
5954         Put CFLAGS and LIBS in the right order
5955
5956 2008-02-06  Tim-Philipp Müller  <tim at centricular dot net>
5957
5958         * configure.ac:
5959           ximagesrc has moved to -good, so no need to check for
5960           the required X libs here any more.
5961
5962 2008-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
5963
5964         Patch by: Wouter Cloetens <wouter at mind dot be>
5965
5966         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_chunk_cb),
5967         (gst_soup_http_src_create):
5968         Fix memory leak and improve debugging a bit.
5969
5970 2008-02-05  Edgard Lima  <edgard.lima@indt.org.br>
5971
5972         * ext/metadata/metadata_mapping.htm:
5973         * ext/metadata/metadataexif.c:
5974         * ext/metadata/metadatatags.c:
5975         * ext/metadata/metadatatags.h:
5976           Add more tags mapping.
5977
5978 2008-02-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5979
5980         * gst/mpegtsparse/mpegtsparse.c:
5981         Handle latency queries in src pads.
5982
5983 2008-02-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5984
5985         * gst/mpegtsparse/mpegtspacketizer.c:
5986         Add flag to both sdt and nit structures to say
5987         whether the table is for the actual network/ts
5988         or not.
5989
5990 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5991
5992         Patch by: Josep Torra Valles <josep@fluendo.com>
5993
5994         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_flush):
5995         Flush packetizer too.
5996
5997 2008-02-04  Sebastian Dröge  <slomo@circular-chaos.org>
5998
5999         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init),
6000         (gst_ladspa_class_init), (ladspa_describe_plugin), (plugin_init):
6001         Don't use GST_BOILERPLATE as the stuff generated from it is not used
6002         anyway and can't be used.
6003         Store the class struct of the correct type in parent_class.
6004         Pass the LADSPA_Descriptor as class_data to the class_init function
6005         as preparation for the time, when we can add pad templates and friends
6006         in class_init and add a FIXME for that.
6007         Don't use a custom hash table for passing the LADSPA_Descriptors to
6008         base_init but use g_type_set_qdata and g_type_get_qdata.
6009
6010 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
6011
6012         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6013         Really fix the build.
6014         TODO : Apply spankOmatic2000 on thaytan's rear end.
6015
6016 2008-02-04  Tim-Philipp Müller  <tim at centricular dot net>
6017
6018         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6019           (GstMpeg2EncPictureReader.StreamPictureParams):
6020           Fix compilation with libmjpegtools 1.8.x.
6021
6022 2008-02-04  Sebastian Dröge  <slomo@circular-chaos.org>
6023
6024         * ext/ladspa/gstsignalprocessor.c:
6025         (gst_signal_processor_class_add_pad_template):
6026         Don't unref the pad template after adding it.
6027         gst_element_class_add_pad_template takes ownership of it.
6028
6029 2008-02-03  Jan Schmidt  <jan.schmidt@sun.com>
6030
6031         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6032         Use the incoming pixel-aspect-ratio if provided to infer a 
6033         default aspect ratio, which can be overridden using the 'aspect'
6034         property.
6035
6036         Fixes: #499008
6037
6038 2008-02-03  Sebastian Dröge  <slomo@circular-chaos.org>
6039
6040         Patch by: Andrzej Mendel <andrzej dot mendel at gmail dot com>
6041
6042         * configure.ac:
6043         Fix variable naming to make it possible to build the glimagesink
6044         plugin. Fixes bug #514093.
6045
6046 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
6047
6048         * ext/metadata/gstmetadatademux.c:
6049           Demote metadatademux to GST_RANK_NONE for the release, it's not
6050           ready to be autoplugged yet.
6051
6052         * tests/icles/metadata_editor.c:
6053           Fix printf format warning for GType on ppc32 by removing it,
6054           since it doesn't make sense to print the GType value anyway.
6055
6056 2008-02-02  Edgard Lima  <edgard.lima@indt.org.br>
6057
6058         * ext/metadata/TODO:
6059         * ext/metadata/gstmetadatamux.c:
6060         * ext/metadata/metadata_mapping.htm:
6061         * ext/metadata/metadataexif.c:
6062         * ext/metadata/metadatatags.c:
6063         * ext/metadata/metadatatags.h:
6064           Map more Exif tags.
6065
6066 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
6067
6068         * gst/selector/gstinputselector.c: (gst_selector_pad_event):
6069         Don't leak event on pads that are not linked. Fixes #512826.
6070
6071 2008-02-01  Tim-Philipp Müller  <tim at centricular dot net>
6072
6073         * configure.ac:
6074           Bump core/base requirements to released versions, to avoid confusion.
6075
6076         * gst/deinterlace/Makefile.am:
6077         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_set_caps):
6078           Use the new GstVideoFormat API to get strides, plane offsets etc..
6079           For Y42B we still need to calculate these ourselves, since the lib
6080           in -base doesn't know about this format yet and we can't bump the
6081           requirement to CVS right now. Fix the Y42B stride, offset and size
6082           calculations for odd widths and heights while we're at it though
6083           (to match those in videotestsrc).
6084
6085 2008-01-31  Edgard Lima  <edgard.lima@indt.org.br>
6086
6087         * ext/metadata/metadata_mapping.htm:
6088         * ext/metadata/metadataexif.c:
6089         * ext/metadata/metadataiptc.c:
6090         * ext/metadata/metadatatags.c:
6091         * ext/metadata/metadatatags.h:
6092         * ext/metadata/metadataxmp.c:
6093           Add documentation.
6094
6095 2008-01-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6096
6097         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_reading):
6098         Fix compilation.
6099
6100 2008-01-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6101
6102         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_dispose):
6103         Really clean up the queue instead of just unreffing all buffers
6104         in it.
6105
6106         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_base_init),
6107         (gst_app_src_class_init), (gst_app_src_init),
6108         (gst_app_src_dispose), (gst_app_src_finalize):
6109         Fix dispose/finalize.
6110
6111 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6112
6113         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst):
6114         Fix compiler warning by making the function signature match what
6115         everyone is passing in...
6116
6117         * tests/icles/Makefile.am:
6118         Fix the build on Solaris by removing GNU ld specific flags that
6119         look unnecessary.
6120
6121 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6122
6123         * ext/metadata/Makefile.am:
6124         Add some relevant variables to CFLAGS and LIBADD, for example our
6125         compiler warnings paramters.
6126
6127         * ext/metadata/gstbasemetadata.c:
6128         (gst_base_metadata_strip_push_buffer),
6129         (gst_base_metadata_calculate_offsets),
6130         (gst_base_metadata_src_event), (gst_base_metadata_sink_activate):
6131         * ext/metadata/gstmetadatademux.c: (gst_metadata_demux_init),
6132         (gst_metadata_demux_set_property), (gst_metadata_demux_dispose):
6133         * ext/metadata/gstmetadatamux.c: (gst_metadata_mux_init),
6134         (gst_metadata_mux_set_property), (gst_metadata_mux_get_property),
6135         (gst_metadata_mux_dispose),
6136         (gst_metadata_mux_create_chunks_from_tags):
6137         * ext/metadata/metadata.c: (metadata_dispose):
6138         * ext/metadata/metadataexif.c:
6139         (metadataparse_exif_content_foreach_entry_func),
6140         (metadatamux_exif_for_each_tag_in_list):
6141         * ext/metadata/metadataiptc.c:
6142         (metadatamux_iptc_for_each_tag_in_list):
6143         * ext/metadata/metadatamuxjpeg.c: (metadatamux_jpeg_lazy_update),
6144         (metadatamux_jpeg_reading):
6145         * ext/metadata/metadatamuxpng.c: (metadatamux_png_reading):
6146         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_reading):
6147         * ext/metadata/metadataparsepng.c:
6148         * ext/metadata/metadataparseutil.h:
6149         * ext/metadata/metadataxmp.c: (metadataparse_xmp_tag_list_add),
6150         (metadatamux_xmp_create_chunk_from_tag_list):
6151         Fix a million warnings that showed up after the above change.
6152
6153 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6154
6155         * ext/soup/gstsouphttpsrc.c: (_do_init),
6156         (gst_soup_http_src_base_init), (gst_soup_http_src_class_init),
6157         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
6158         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
6159         (gst_soup_http_src_unicodify), (gst_soup_http_src_cancel_message),
6160         (gst_soup_http_src_queue_message),
6161         (gst_soup_http_src_add_range_header),
6162         (gst_soup_http_src_session_unpause_message),
6163         (gst_soup_http_src_session_pause_message),
6164         (gst_soup_http_src_session_close),
6165         (gst_soup_http_src_got_headers_cb),
6166         (gst_soup_http_src_got_body_cb), (gst_soup_http_src_finished_cb),
6167         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_response_cb),
6168         (gst_soup_http_src_parse_status), (gst_soup_http_src_create),
6169         (gst_soup_http_src_start), (gst_soup_http_src_stop),
6170         (gst_soup_http_src_unlock), (gst_soup_http_src_unlock_stop),
6171         (gst_soup_http_src_get_size), (gst_soup_http_src_is_seekable),
6172         (gst_soup_http_src_do_seek), (gst_soup_http_src_set_location),
6173         (gst_soup_http_src_set_proxy), (gst_soup_http_src_uri_get_type),
6174         (gst_soup_http_src_uri_get_protocols),
6175         (gst_soup_http_src_uri_get_uri), (gst_soup_http_src_uri_set_uri),
6176         (gst_soup_http_src_uri_handler_init), (plugin_init):
6177         Add changes to gstsouphttpsrc.c that were missing from last commit.
6178
6179 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6180
6181         Patch by: Wouter Cloetens <wouter at mind dot be>
6182
6183         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6184         * docs/plugins/gst-plugins-bad-plugins.args:
6185         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6186         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6187         * docs/plugins/inspect/plugin-soup.xml:
6188         (gst_soup_http_src_base_init), (gst_soup_http_src_class_init),
6189         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
6190         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
6191         (gst_soup_http_src_unicodify), (gst_soup_http_src_cancel_message),
6192         (gst_soup_http_src_queue_message),
6193         (gst_soup_http_src_add_range_header),
6194         (gst_soup_http_src_session_unpause_message),
6195         (gst_soup_http_src_session_pause_message),
6196         (gst_soup_http_src_session_close),
6197         (gst_soup_http_src_got_headers_cb),
6198         (gst_soup_http_src_got_body_cb), (gst_soup_http_src_finished_cb),
6199         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_response_cb),
6200         (gst_soup_http_src_parse_status), (gst_soup_http_src_create),
6201         (gst_soup_http_src_start), (gst_soup_http_src_stop),
6202         (gst_soup_http_src_unlock), (gst_soup_http_src_unlock_stop),
6203         (gst_soup_http_src_get_size), (gst_soup_http_src_is_seekable),
6204         (gst_soup_http_src_do_seek), (gst_soup_http_src_set_location),
6205         (gst_soup_http_src_set_proxy), (gst_soup_http_src_uri_get_type),
6206         (gst_soup_http_src_uri_get_protocols),
6207         (gst_soup_http_src_uri_get_uri), (gst_soup_http_src_uri_set_uri),
6208         (gst_soup_http_src_uri_handler_init), (plugin_init):
6209         * ext/soup/gstsouphttpsrc.h:
6210         Make coding style more consistent, including class renaming.
6211
6212 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6213
6214         * configure.ac:
6215         Fix configure check for soundtouch to not produce syntax errors.
6216
6217 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6218
6219         * configure.ac:
6220         * ext/metadata/metadataxmp.c:
6221         (metadatamux_xmp_for_each_tag_in_list):
6222         Fix build with exempi >= 1.99.5 and fix the include
6223         path for exempi.
6224
6225 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6226
6227         * ext/metadata/TODO:
6228           Just uptade the ToDo list.
6229
6230 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6231
6232         * ext/metadata/gstbasemetadata.c:
6233         * ext/metadata/metadatamuxjpeg.c:
6234         * ext/metadata/metadatamuxpng.c:
6235         * ext/metadata/metadataparsejpeg.c:
6236         * ext/metadata/metadatatypes.c:
6237         * ext/metadata/metadatatypes.h:
6238         * ext/metadata/metadataxmp.c:
6239           Add documentation. Speed up a bit png muxer. Fix xmp muxer.
6240
6241 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6242
6243         Patch by: Wouter Cloetens <wouter at mind dot be>
6244
6245         * ext/soup/gstsouphttpsrc.c:
6246         Update documentation a bit.
6247
6248         * docs/plugins/gst-plugins-bad-plugins.args:
6249         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6250         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6251         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
6252         * docs/plugins/inspect/plugin-alsaspdif.xml:
6253         * docs/plugins/inspect/plugin-dvb.xml:
6254         * docs/plugins/inspect/plugin-filter.xml:
6255         * docs/plugins/inspect/plugin-glimagesink.xml:
6256         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
6257         * docs/plugins/inspect/plugin-quicktime.xml:
6258         * docs/plugins/inspect/plugin-rawparse.xml:
6259         * docs/plugins/inspect/plugin-replaygain.xml:
6260         * docs/plugins/inspect/plugin-sdl.xml:
6261         * docs/plugins/inspect/plugin-soundtouch.xml:
6262         * docs/plugins/inspect/plugin-soup.xml:
6263         * docs/plugins/inspect/plugin-spcdec.xml:
6264         * docs/plugins/inspect/plugin-spectrum.xml:
6265         * docs/plugins/inspect/plugin-speed.xml:
6266         * docs/plugins/inspect/plugin-speexresample.xml:
6267         * docs/plugins/inspect/plugin-switch.xml:
6268         * docs/plugins/inspect/plugin-videocrop.xml:
6269         Regenerate everything for the documentation changes we had.
6270
6271 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6272
6273         * ext/gio/gstgiobasesink.c: (close_stream_cb),
6274         (gst_gio_base_sink_stop), (gst_gio_base_sink_event),
6275         (gst_gio_base_sink_render), (gst_gio_base_sink_set_stream):
6276         * ext/gio/gstgiobasesrc.c: (close_stream_cb),
6277         (gst_gio_base_src_stop), (gst_gio_base_src_create),
6278         (gst_gio_base_src_set_stream):
6279         Use async variants of the close stream functions to prevent blocking
6280         for a long time there and add some more sanity checks for a correct
6281         stream.
6282
6283 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6284
6285         * tests/icles/Makefile.am:
6286         Move -Wl parameter from _LDADD to _LDFLAGS to fix autogen.sh.
6287
6288 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6289
6290         Patch by: Wouter Cloetens <wouter at mind dot be>
6291
6292         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_init):
6293         Let the proxy property default to the content of the $http_proxy
6294         environment variable.
6295
6296 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6297
6298         Patch by: Wouter Cloetens <wouter at mind dot be>
6299
6300         * tests/check/test-cert.pem:
6301         * tests/check/test-key.pem:
6302         Add missing files for the unit test.
6303
6304 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6305
6306         Patch by: Wouter Cloetens <wouter at mind dot be>
6307
6308         * docs/plugins/Makefile.am:
6309         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6310         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6311         Add souphttpsrc to the docs.
6312
6313         * configure.ac:
6314         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
6315         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
6316         (gst_souphttp_src_set_property), (gst_souphttp_src_get_property),
6317         (gst_souphttp_src_cancel_message),
6318         (gst_souphttp_src_queue_message),
6319         (gst_souphttp_src_add_range_header),
6320         (gst_souphttp_src_session_unpause_message),
6321         (gst_souphttp_src_session_pause_message),
6322         (gst_souphttp_src_session_close),
6323         (gst_souphttp_src_got_headers_cb), (gst_souphttp_src_got_body_cb),
6324         (gst_souphttp_src_finished_cb), (gst_souphttp_src_got_chunk_cb),
6325         (gst_souphttp_src_response_cb), (gst_souphttp_src_parse_status),
6326         (gst_souphttp_src_create), (gst_souphttp_src_start),
6327         (gst_souphttp_src_stop), (gst_souphttp_src_unlock),
6328         (gst_souphttp_src_unlock_stop), (gst_souphttp_src_get_size),
6329         (gst_souphttp_src_is_seekable), (gst_souphttp_src_do_seek),
6330         (gst_souphttp_src_set_location), (gst_souphttp_src_set_proxy),
6331         (plugin_init):
6332         * ext/soup/gstsouphttpsrc.h:
6333         Add support for libsoup2.4 and require it. Also implement redirection
6334         and manual proxy specification. Fixes bug #510708.
6335
6336         * tests/check/Makefile.am:
6337         * tests/check/elements/.cvsignore:
6338         * tests/check/elements/souphttpsrc.c:
6339         Add unit test for souphttpsrc.
6340
6341 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6342
6343         * ext/Makefile.am:
6344         * ext/metadata/TODO:
6345         * ext/metadata/gstbasemetadata.c:
6346         * ext/metadata/gstbasemetadata.h:
6347         * ext/metadata/metadatamuxjpeg.c:
6348         * ext/metadata/metadatamuxjpeg.h:
6349         * ext/metadata/metadatamuxpng.c:
6350         * ext/metadata/metadatamuxpng.h:
6351         * ext/metadata/metadataparsejpeg.c:
6352         * ext/metadata/metadataparsepng.c:
6353         * tests/icles/Makefile.am:
6354           Add documentation. Fix test app compilation. Fix pull mode.
6355
6356 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6357
6358         Patch by: Thijs Vermeir  <thijsvermeir at gmail dot com>
6359
6360         * gst/rtpmanager/gstrtpjitterbuffer.c:
6361         (gst_rtp_jitter_buffer_chain):
6362         Try to get the new clock-rate from the buffer caps when we receive a new
6363         payload type instead of always firing the signal. Fixes #512774.
6364
6365 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
6366
6367         * ext/mpeg2enc/gstmpeg2enc.cc:
6368         Define LOG_NONE and friends if they're not defined yet. mjpegtools
6369         1.9.0rc3 removed their definitions but without it doesn't make much
6370         sense to write a log handler.
6371
6372 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6373
6374         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6375         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6376         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6377         * docs/plugins/gst-plugins-bad-plugins.types:
6378           Add base classes for metadata and equalizer (no introspection yet).
6379
6380 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6381
6382         * ext/metadata/README:
6383           Formatting.
6384         * tests/icles/metadata_editor.c:
6385           Include stdlib.h.
6386
6387 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6388
6389         * configure.ac:
6390         * docs/plugins/Makefile.am:
6391         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6392         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6393         * docs/plugins/gst-plugins-bad-plugins.args:
6394         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6395         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6396         * docs/plugins/gst-plugins-bad-plugins.signals:
6397         * docs/plugins/inspect/plugin-metadata.xml:
6398         * docs/plugins/inspect/plugin-selector.xml:
6399         * docs/plugins/inspect/plugin-soundtouch.xml:
6400         * docs/plugins/inspect/plugin-switch.xml:
6401         * gst/selector/.cvsignore:
6402         * gst/selector/Makefile.am:
6403         * gst/selector/gstinputselector.c:
6404         * gst/selector/gstinputselector.h:
6405         * gst/selector/gstoutputselector.c:
6406         * gst/selector/gstoutputselector.h:
6407         * gst/selector/gstselector-marshal.list:
6408         * gst/selector/gstselector.c:
6409         * gst/selector/selector.vcproj:
6410         * gst/switch/.cvsignore:
6411         * gst/switch/Makefile.am:
6412         * gst/switch/gstswitch-marshal.list:
6413         * gst/switch/gstswitch.c:
6414         * gst/switch/gstswitch.h:
6415         * gst/switch/switch.vcproj:
6416         * tests/icles/.cvsignore:
6417         * tests/icles/Makefile.am:
6418         * tests/icles/output-selector-test.c:
6419           Replace the switch plugin with the selector plugin. Add output-
6420           selector as the opposite of input-selectoo (was switch). Add a test
6421           for output-selector. Add docs for the elements. The vcproj needs
6422           update. Fixes #500142.
6423
6424 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6425
6426         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_forward):
6427           Try to avoid 'unused variable' compiler warning if debugging is
6428           disabled (not bullet proof, but seems to do for now). (#512654)
6429
6430 2008-01-28  Sebastian Dröge  <slomo@circular-chaos.org>
6431
6432         * ext/soundtouch/gstbpmdetect.cc:
6433         Clean up a bit and only allocate a temporary buffer for the data
6434         if processing stereo data as BPMDetect downmixes from stereo to
6435         mono and stores the result in the input data. Thanks to
6436         Stefan Kost for the suggestions.
6437
6438 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6439
6440         * ext/soundtouch/gstpitch.cc:
6441         Cast a double to a GstClockTimeDiff to fix a compiler warning.
6442
6443 2008-01-27  Stefan Kost  <ensonic@users.sf.net>
6444
6445         * tests/icles/metadata_editor.c:
6446           Printf format fix.
6447
6448 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6449
6450         * ext/soundtouch/gstpitch.cc:
6451         Don't send a LATENCY event for now until we get the usage right.
6452
6453 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6454
6455         * ext/soundtouch/gstpitch.cc:
6456         * ext/soundtouch/gstpitch.hh:
6457         Implement LATENCY query and notify about latency changes.
6458         Unfortunately we don't have a fixed latency but it changes
6459         a bit with each buffer so we only send an LATENCY event with
6460         the maximum latency if it changes.
6461
6462         Always calculate the timestamp, duration, etc from the sample
6463         rate instead of using a pre-calculated duration for one sample
6464         to prevent large rounding errors.
6465
6466 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6467
6468         Based on a patch by:
6469             Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
6470
6471         * configure.ac:
6472         * ext/mpeg2enc/gstmpeg2encoder.cc:
6473         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6474         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
6475         Add support for building against mjpegtools 1.9 while keeping
6476         compatiblity with older versions.
6477
6478 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6479
6480         * ext/soundtouch/gstbpmdetect.cc:
6481         Only consider a BPM value above 1.0 as valid.
6482
6483 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6484
6485         * ext/soundtouch/Makefile.am:
6486         * ext/soundtouch/gstbpmdetect.cc:
6487         * ext/soundtouch/gstbpmdetect.hh:
6488         * ext/soundtouch/plugin.c: (plugin_init):
6489         Add BPM detection plugin based on SoundTouch's libBPM.
6490
6491         * ext/soundtouch/gstpitch.cc:
6492         Allow sample rates until MAX instead of only 48kHz and remove the
6493         buffer-frames field from that caps.
6494         Clear the remaining samples completely when necessary to get into
6495         a clean state again.
6496
6497 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6498
6499         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init):
6500         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
6501         Don't implement get_unit_size() ourselves, the GstAudioFilter base
6502         class already does this for us.
6503
6504 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6505
6506         * ext/soundtouch/gstpitch.cc:
6507         Allow seeking only in TIME and DEFAULT format, other formats will
6508         not work as expected. Also handle a stop position of -1 correctly
6509         for seeks, newsegment events and the queries. This fixes playback
6510         with the pitch element if upstream doesn't know the duration or has
6511         -1 as stop position in NEWSEGMENT events for other reasons. Before
6512         simply nothing was played as the segment was going from 0 to 0.
6513
6514         Send a GST_MESSAGE_DURATION whenever the rate or tempo is changed
6515         so applications can update their cached duration. Fixes bug #503308.
6516
6517         Some random cleanup and memory leak closing.
6518
6519 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6520
6521         * ext/musepack/gstmusepackdec.h:
6522         * ext/musepack/gstmusepackreader.c:
6523         First include the libmpcdec headers before everything else as they
6524         #define TRUE and FALSE unconditionally and we otherwise get conflicts
6525         with the ones that GLib defines.
6526
6527 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6528
6529         * configure.ac:
6530         * ext/soundtouch/gstpitch.cc:
6531         Add support for libsoundtouch 1.3.1 and add an ugly workaround for
6532         the header definined PACKAGE and other variables for which we need
6533         our own values from config.h.
6534
6535 2008-01-26  Tim-Philipp Müller  <tim at centricular dot net>
6536
6537         * configure.ac:
6538           Check for libglade-2.0, for the metadata-editor example.
6539
6540         * tests/icles/Makefile.am:
6541           Only try to build the metadata-editor example if we have gtk and
6542           glade (otherwise the build would just fail ...); fix build in
6543           uninstalled setup.
6544
6545         * tests/icles/metadata_editor.c: (on_cell_edited), (ui_add_columns):
6546           Fix compiler warnings (use GLib macros to cast pointer <-> int).
6547
6548 2008-01-25  Edgard Lima  <edgard.lima@indt.org.br>
6549
6550         * ext/metadata/TODO:
6551         * ext/metadata/gstbasemetadata.c:
6552         * ext/metadata/metadata.c:
6553         * ext/metadata/metadata.h:
6554         * ext/metadata/metadataexif.c:
6555         * ext/metadata/metadataexif.h:
6556         * ext/metadata/metadataiptc.c:
6557         * ext/metadata/metadataiptc.h:
6558         * ext/metadata/metadataparsejpeg.c:
6559         * ext/metadata/metadataparsejpeg.h:
6560         * ext/metadata/metadataparsepng.c:
6561         * ext/metadata/metadataparsepng.h:
6562         * ext/metadata/metadataparseutil.c:
6563         * ext/metadata/metadataparseutil.h:
6564         * ext/metadata/metadatatags.c:
6565         * ext/metadata/metadatatags.h:
6566         * ext/metadata/metadatatypes.c:
6567         * ext/metadata/metadatatypes.h:
6568         * ext/metadata/metadataxmp.c:
6569         * ext/metadata/metadataxmp.h:
6570         * ext/metadata/test/Makefile:
6571         * ext/metadata/test/MetadataEditorMain.glade:
6572         * ext/metadata/test/metadata_editor.c:
6573         * tests/icles/Makefile.am:
6574         * tests/icles/metadata_editor.c:
6575         * tests/icles/metadata_editor.glade:
6576           Add lot of documentation.
6577
6578 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6579
6580         * sys/dvb/gstdvbsrc.c:
6581         Open frontend in NULL->READY so caps about dvb adapter can be
6582         seen by the app.
6583
6584 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6585
6586         Patch by: Olivier Crete <tester@tester.ca>
6587
6588         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
6589         (create_stream), (payload_type_change), (new_ssrc_pad_found):
6590         Also handle lip-sync when the clock-rate is not provided with caps but
6591         with a signal.
6592
6593 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6594
6595         Patch by: Olivier Crete <tester@tester.ca>
6596
6597         * gst/rtpmanager/gstrtpjitterbuffer.c:
6598         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_chain):
6599         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew),
6600         (rtp_jitter_buffer_insert):
6601         * gst/rtpmanager/rtpjitterbuffer.h:
6602         Remove the fixed clock-rate from the jitterbuffer and extend it so that
6603         a clock-rate can be provided with each buffer instead. Fixes #511686.
6604
6605 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6606
6607         Patch by: Olivier Crete <tester@tester.ca>
6608
6609         * gst/rtpmanager/gstrtpjitterbuffer.c:
6610         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_change_state),
6611         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
6612         Remove old unused variable.
6613         Track pt on input buffers and get the clock-rate when it changes.
6614         Ignore packets with unknown clock-rate. Fixes #511146.
6615
6616 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6617
6618         * sys/dvb/gstdvbsrc.c:
6619         Post bus message about adapter type and it's capabilities,
6620         when opening the frontend.
6621         After failing to read from the dvr, post a bus message to
6622         inform the app.
6623
6624 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6625
6626         * gst/mpegtsparse/mpegtspacketizer.c:
6627         The logic for the guard interval calculation was totally wrong.
6628         Fixed.
6629
6630 2008-01-24  David Schleef  <ds@schleef.org>
6631
6632         Patch by: Olivier Crete <tester@tester.ca>
6633
6634         * gst/rtpmanager/rtpsource.c: Fix unref of buffer using the
6635           wrong function.  Fixes #511920
6636
6637 2008-01-24  Stefan Kost  <ensonic@users.sf.net>
6638
6639         * docs/plugins/Makefile.am:
6640         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6641         * docs/plugins/gst-plugins-bad-plugins.args:
6642         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6643         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6644         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
6645         * docs/plugins/gst-plugins-bad-plugins.signals:
6646           Now we have full hierarchy.
6647
6648         * docs/plugins/inspect/plugin-metadata.xml:
6649           Regenerate.
6650
6651         * ext/amrwb/gstamrwbdec.h:
6652           Add doc blob for object instance.
6653
6654 2008-01-24  Tim-Philipp Müller  <tim at centricular dot net>
6655
6656         * docs/plugins/gst-plugins-bad-plugins.args:
6657         * docs/plugins/inspect/plugin-metadata.xml:
6658           Update this too, hopefully fixes the docs build (does at least
6659           for me, after make clean in docs/plugins).
6660
6661 2008-01-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6662
6663         * gst/mpegtsparse/gstmpegdesc.h:
6664         * gst/mpegtsparse/mpegtspacketizer.c:
6665         Fix network name descriptor, the length is actually the
6666         descriptor length not stored in the byte after.
6667         Fix bounds checking to be more correct.
6668
6669 2008-01-23  Edgard Lima  <edgard.lima@indt.org.br>
6670
6671         * docs/plugins/Makefile.am:
6672         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6673         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6674         * ext/metadata/TODO:
6675         * ext/metadata/gstbasemetadata.c:
6676         * ext/metadata/gstbasemetadata.h:
6677         * ext/metadata/gstmetadatademux.c:
6678         * ext/metadata/gstmetadatademux.h:
6679         * ext/metadata/gstmetadatamux.c:
6680         * ext/metadata/gstmetadatamux.h:
6681         * ext/metadata/metadatatags.c:
6682           Add some documentation.
6683
6684 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6685
6686         * configure.ac:
6687         * ext/dts/gstdtsdec.c:
6688         Add support for building against libdca (with the libdts compat
6689         header). Fixes bug #511530.
6690
6691         Should probably be ported to libdca as some points as it's the
6692         successor of libdts.
6693
6694 2008-01-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6695
6696         * sys/dvb/gstdvbsrc.c:
6697         Do not go on forever if problem with reading from dvr, rather
6698         return NULL.
6699         Handle some cleanup issues of closing filedescriptors when
6700         failing to tune or similar.
6701
6702 2008-01-23 Christian Schaller <christian.schaller@collabora.co.uk>
6703
6704         * gst/rawparse/Makefile.am: Add missing header files to noinst_headers
6705         * gst-plugins-bad.spec: update for latest changes
6706
6707 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6708
6709         * docs/plugins/Makefile.am:
6710         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6711         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6712         * gst/xingheader/gstxingmux.c:
6713         * gst/xingheader/gstxingmux.h:
6714         Add documentation for the xingheader plugin.
6715
6716         * tests/check/elements/xingmux.c: (GST_START_TEST):
6717         Set element state to PLAYING before doing something else.
6718
6719 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6720
6721         * tests/check/Makefile.am:
6722         * tests/check/elements/.cvsignore:
6723         * tests/check/elements/xingmux.c: (setup_xingmux),
6724         (cleanup_xingmux), (GST_START_TEST), (xingmux_suite), (main):
6725         * tests/check/elements/xingmux_testdata.h:
6726         Add simple unit test for the xingmux element.
6727
6728         * gst/xingheader/gstxingmux.c: (generate_xing_header),
6729         (gst_xing_mux_finalize), (xing_reset):
6730         Fix a memleak and invalid seek tables with less than 100 MP3 frames.
6731
6732 2008-01-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6733
6734         * gst/mpegtsparse/gstmpegdesc.h:
6735         * gst/mpegtsparse/mpegtspacketizer.c:
6736         Parsed the satellite delivery system descriptor and
6737         added into nit's transport structure for delivery
6738         over the bus.
6739
6740 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6741
6742         * gst/mpegtsparse/mpegtspacketizer.c:
6743         Parsed and added network name to the nit structure sent
6744         in the bus message.
6745
6746 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6747
6748         * gst/mpegtsparse/mpegtspacketizer.c:
6749         Remove leaks introduced by not freeing g_strndup'd strings.
6750         Fix start_time and duration parsing in EIT.
6751
6752 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6753
6754         * gst/mpegtsparse/mpegtspacketizer.c:
6755         Add event name and description to the eit structure
6756         sent in the bus message.
6757
6758 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6759
6760         * gst/mpegtsparse/mpegtsparse.c:
6761         Revert const removal from previous commit.
6762
6763 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6764
6765         * gst/mpegtsparse/Makefile.am:
6766         * gst/mpegtsparse/gstmpegdesc.c:
6767         * gst/mpegtsparse/gstmpegdesc.h:
6768         * gst/mpegtsparse/mpegtspacketizer.c:
6769         * gst/mpegtsparse/mpegtsparse.c:
6770         Added descriptor searching infrastructure from Fluendo TS demuxer.
6771         Add channel name and provider to the sdt structure sent in the
6772         bus message.
6773
6774 2008-01-22  Julien Moutte  <julien@fluendo.com>
6775
6776         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_forward):
6777         Parse NAL units in forward mode to mark delta units flags.
6778
6779 2008-01-22  Stefan Kost  <ensonic@users.sf.net>
6780
6781         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6782         * docs/plugins/gst-plugins-bad-plugins.args:
6783         * docs/plugins/inspect/plugin-mpeg2enc.xml:
6784         * docs/plugins/inspect/plugin-musepack.xml:
6785           Regenerate.
6786   
6787         * docs/plugins/inspect/plugin-tremor.xml:
6788           Add vorbisidec aka trmor.
6789
6790         * ext/dc1394/gstdc1394.c:
6791           Add short description.
6792
6793 2008-01-22  Stefan Kost  <ensonic@users.sf.net>
6794
6795         * docs/plugins/Makefile.am:
6796           Add missing eol \
6797
6798         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6799           Place object names to standard sectionas plugin dont document those.
6800
6801         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6802         * docs/plugins/gst-plugins-bad-plugins.args:
6803         * docs/plugins/gst-plugins-bad-plugins.signals:
6804         * docs/plugins/inspect/plugin-dvb.xml:
6805         * docs/plugins/inspect/plugin-nuvdemux.xml:
6806           regenerate.
6807           
6808         * ext/ivorbis/vorbisdec.c:
6809         * ext/ivorbis/vorbisdec.h:
6810           Mark private vars and add short desc.
6811
6812         * ext/mythtv/gstmythtvsrc.c:
6813         * ext/theora/theoradec.c:
6814           Add short desc.
6815
6816 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6817
6818         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6819         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6820         * gst/nuvdemux/gstnuvdemux.c:
6821           One less to do. Its 'nuv' not 'nvu'. As an extra bonus I mention what
6822           it actually is.
6823
6824 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6825
6826         * docs/plugins/Makefile.am:
6827         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6828         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6829           Update lists again. Those whole can build ivorbisdec, mythtvsrc,
6830           nvudemux and theoradecexp, please commit the inspect/plugin-xxx.xml.
6831
6832         * docs/plugins/inspect/plugin-gstinterlace.xml:
6833         * docs/plugins/inspect/plugin-rawparse.xml
6834         * docs/plugins/inspect/plugin-videoparse.xml:
6835           Replace videoparse with rawparse.
6836
6837         * gst/dvdspu/gstdvdspu.h:
6838           Help gtk-doc to recognize the object struct.
6839
6840 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6841
6842         * gst/librfb/rfbdecoder.c:
6843         * gst/librfb/rfbdecoder.h:
6844           Don't use gtk-doc comment style for non gtk-doc comments.
6845           Make one static function static.
6846
6847 2008-01-21  Wim Taymans  <wim.taymans@collabora.co.uk>
6848
6849         Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
6850
6851         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_class_init),
6852         (gst_deinterlace_init), (gst_deinterlace_set_caps),
6853         (gst_deinterlace_transform_ip), (gst_deinterlace_set_property),
6854         (gst_deinterlace_get_property):
6855         * gst/deinterlace/gstdeinterlace.h:
6856         Provide 4:2:2 support
6857         Also deinterlace chroma planes
6858         Allow to turn on/off deinterlacing
6859         Change of default thresholds, in order to provide acceptable results
6860         with default params. Fixes #511001.
6861
6862 2008-01-21  Tim-Philipp Müller  <tim at centricular dot net>
6863
6864         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6865           Update docs file too.
6866
6867 2008-01-21  Tim-Philipp Müller  <tim at centricular dot net>
6868
6869         * gst/dvdspu/gstdvdspu-render.c: (gst_dvd_spu_render_spu):
6870         * gst/dvdspu/gstdvdspu.c: (dvdspu_debug), (GST_CAT_DEFAULT),
6871           (subpic_sink_factory), (gst_dvd_spu_base_init),
6872           (gst_dvd_spu_class_init), (gst_dvd_spu_init), (gst_dvd_spu_clear),
6873           (gst_dvd_spu_dispose), (gst_dvd_spu_finalize),
6874           (gst_dvd_spu_flush_spu_info), (gst_dvd_spu_buffer_alloc),
6875           (gst_dvd_spu_src_event), (gst_dvd_spu_video_set_caps),
6876           (gst_dvd_spu_video_proxy_getcaps), (gst_dvd_spu_video_event),
6877           (gst_dvd_spu_video_chain), (dvspu_handle_vid_buffer),
6878           (gst_dvd_spu_redraw_still), (gst_dvd_spu_parse_chg_colcon),
6879           (gst_dvd_spu_exec_cmd_blk), (gst_dvd_spu_finish_spu_buf),
6880           (gst_dvd_spu_setup_cmd_blk), (gst_dvd_spu_handle_new_spu_buf),
6881           (gst_dvd_spu_handle_dvd_event), (gst_dvd_spu_advance_spu),
6882           (gst_dvd_spu_check_still_updates), (gst_dvd_spu_subpic_chain),
6883           (gst_dvd_spu_subpic_event), (gst_dvd_spu_change_state),
6884           (gst_dvd_spu_plugin_init):
6885         * gst/dvdspu/gstdvdspu.h: (GST_TYPE_DVD_SPU):
6886           Fix up dvdspu element again after previous namespace mangling:
6887           rename debug category variable to old name, matching that in
6888           dvdspu-render.c, to avoid undefined symbol error when loading
6889           the module; same for the _render function in dvdspu-render.c:
6890           we must use the same name in both .c files; change functions
6891           now called gstgst_* back to gst_* again; and while we're at it,
6892           we may as well canonicalise the namespace properly, namely to
6893           gst_dvd_spu_*.
6894
6895 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6896
6897         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6898         * ext/theora/theoradec.c:
6899         * ext/theora/theoradec.h:
6900           Coherent namespace usage and adding symbold from unused to sections.
6901
6902 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6903
6904         * docs/plugins/Makefile.am:
6905         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6906           Add symbols from -unused.txt to the right place.
6907
6908         * gst/dvdspu/gstdvdspu.c:
6909         * gst/dvdspu/gstdvdspu.h:
6910           Coherent namespace usage.
6911
6912         * gst/spectrum/gstspectrum.c:
6913           Fix broken XML fragment in doc snippet even more.
6914
6915 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6916
6917         * docs/plugins/Makefile.am:
6918           Update include list.
6919
6920         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6921           Update xml includes.
6922
6923         * docs/plugins/inspect/plugin-alsaspdif.xml:
6924         * docs/plugins/inspect/plugin-amrwb.xml:
6925         * docs/plugins/inspect/plugin-bayer.xml:
6926         * docs/plugins/inspect/plugin-bz2.xml:
6927         * docs/plugins/inspect/plugin-cdxaparse.xml:
6928         * docs/plugins/inspect/plugin-dtsdec.xml:
6929         * docs/plugins/inspect/plugin-dvbsrc.xml:
6930         * docs/plugins/inspect/plugin-dvdspu.xml:
6931         * docs/plugins/inspect/plugin-equalizer.xml:
6932         * docs/plugins/inspect/plugin-faac.xml:
6933         * docs/plugins/inspect/plugin-faad.xml:
6934         * docs/plugins/inspect/plugin-fbdevsink.xml:
6935         * docs/plugins/inspect/plugin-festival.xml:
6936         * docs/plugins/inspect/plugin-filter.xml:
6937         * docs/plugins/inspect/plugin-flvdemux.xml:
6938         * docs/plugins/inspect/plugin-freeze.xml:
6939         * docs/plugins/inspect/plugin-gsm.xml:
6940         * docs/plugins/inspect/plugin-gstinterlace.xml:
6941         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
6942         * docs/plugins/inspect/plugin-h264parse.xml:
6943         * docs/plugins/inspect/plugin-interleave.xml:
6944         * docs/plugins/inspect/plugin-ladspa.xml:
6945         * docs/plugins/inspect/plugin-metadata.xml:
6946         * docs/plugins/inspect/plugin-modplug.xml:
6947         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
6948         * docs/plugins/inspect/plugin-mpegtsparse.xml:
6949         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
6950         * docs/plugins/inspect/plugin-musicbrainz.xml:
6951         * docs/plugins/inspect/plugin-mve.xml:
6952         * docs/plugins/inspect/plugin-nsfdec.xml:
6953         * docs/plugins/inspect/plugin-nuvdemux.xml:
6954         * docs/plugins/inspect/plugin-qtdemux.xml:
6955         * docs/plugins/inspect/plugin-quicktime.xml:
6956         * docs/plugins/inspect/plugin-real.xml:
6957         * docs/plugins/inspect/plugin-replaygain.xml:
6958         * docs/plugins/inspect/plugin-sdl.xml:
6959         * docs/plugins/inspect/plugin-sdp.xml:
6960         * docs/plugins/inspect/plugin-spectrum.xml:
6961         * docs/plugins/inspect/plugin-speed.xml:
6962         * docs/plugins/inspect/plugin-speexresample.xml:
6963         * docs/plugins/inspect/plugin-stereo.xml:
6964         * docs/plugins/inspect/plugin-switch.xml:
6965         * docs/plugins/inspect/plugin-timidity.xml:
6966         * docs/plugins/inspect/plugin-tta.xml:
6967         * docs/plugins/inspect/plugin-videocrop.xml:
6968         * docs/plugins/inspect/plugin-videoparse.xml:
6969         * docs/plugins/inspect/plugin-videosignal.xml:
6970         * docs/plugins/inspect/plugin-vmnc.xml:
6971         * docs/plugins/inspect/plugin-wildmidi.xml:
6972         * docs/plugins/inspect/plugin-x264.xml:
6973         * docs/plugins/inspect/plugin-xingheader.xml:
6974         * docs/plugins/inspect/plugin-xvid.xml:
6975         * docs/plugins/inspect/plugin-y4menc.xml:
6976           Regenerate files.
6977
6978         * gst/spectrum/gstspectrum.c:
6979           Fix broken XML fragment in doc snippet.
6980
6981         * tests/check/elements/.cvsignore:
6982           Add test binary to ignores.
6983
6984 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6985
6986         * gst/h264parse/gsth264parse.c:
6987           Fix the build. GST_TIME_ARGS takes a timestamp not a buffer.
6988
6989 2008-01-20  Sebastian Dröge  <slomo@circular-chaos.org>
6990
6991         Patch by: Wouter Cloetens <wouter at mind dot be>
6992
6993         * ext/soup/gstsouphttpsrc.c: (soup_got_headers):
6994         Report the size of the stream as the total size instead of
6995         the remaining Content-Length, which is wrong after a seek.
6996
6997 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6998
6999         * gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
7000         (gst_raw_parse_loop):
7001         Handle framesizes > 4096 with multiple frames per buffer correctly
7002         in pull mode and handle short reads better.
7003         Also put offset and offset_end on outgoing buffers.
7004
7005 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
7006
7007         * gst/rawparse/gstrawparse.c: (gst_raw_parse_loop):
7008         Improve handling of unknown or too small upstream sizes in
7009         pull mode.
7010
7011 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
7012
7013         * gst/rawparse/gstrawparse.c: (gst_raw_parse_loop),
7014         (gst_raw_parse_handle_seek_push):
7015         Improve debugging a bit and for handling multiple frames per buffer
7016         in pull mode choose the next smallest multiply of framesize below
7017         4096 instead of always handling 1024 frames.
7018
7019 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
7020
7021         Patch by: Wouter Cloetens <wouter at mind dot be>
7022
7023         * ext/soup/gstsouphttpsrc.c: (soup_got_headers):
7024         Correctly set duration on the GstBaseSrc segment when we know it
7025         to fix failing the duration query.
7026
7027 2008-01-18  Wim Taymans  <wim.taymans@collabora.co.uk>
7028
7029         * gst/h264parse/gsth264parse.c: (gst_h264_parse_flush_decode),
7030         (gst_h264_parse_queue_buffer), (gst_h264_parse_chain_reverse):
7031         Set timestamps more correctly.
7032
7033 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7034
7035         * gst/rawparse/gstrawparse.c: (gst_raw_parse_class_init),
7036         (gst_raw_parse_init), (gst_raw_parse_reset),
7037         (gst_raw_parse_set_src_caps), (gst_raw_parse_push_buffer),
7038         (gst_raw_parse_chain), (gst_raw_parse_loop),
7039         (gst_raw_parse_sink_activate), (gst_raw_parse_sink_activatepull),
7040         (gst_raw_parse_change_state), (gst_raw_parse_sink_event),
7041         (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
7042         (gst_raw_parse_src_event), (gst_raw_parse_src_query):
7043         * gst/rawparse/gstrawparse.h:
7044         Implement pull mode.
7045
7046 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7047
7048         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
7049         Fix memory leak spotted by the unit test.
7050
7051 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7052
7053         * tests/check/Makefile.am:
7054         Enable spectrum test again.
7055
7056         * tests/check/gst-plugins-bad.supp:
7057         Add suppressions for a singleton in GIO that can't be freed.
7058
7059 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7060
7061         * tests/check/Makefile.am:
7062         * tests/check/elements/.cvsignore:
7063         * tests/check/elements/equalizer.c: (setup_equalizer),
7064         (cleanup_equalizer), (GST_START_TEST), (equalizer_suite), (main):
7065         Add some minimal tests for the equalizer plugin.
7066
7067 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7068
7069         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_finalize):
7070         Unparent all bands from the equalizer when finalizing to stop
7071         leaking them.
7072
7073 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7074
7075         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_uri_get_protocols):
7076         Add support for WebDAV.
7077
7078 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7079
7080         Patch by: Wouter Cloetens <wouter at mind dot be>
7081
7082         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
7083         (gst_souphttp_src_init), (gst_souphttp_src_create),
7084         (gst_souphttp_src_is_seekable), (gst_souphttp_src_do_seek),
7085         (soup_add_range_header), (soup_got_headers), (soup_got_chunk):
7086         * ext/soup/gstsouphttpsrc.h:
7087         Add support for seeking to souphttpsrc. Fixes bug #502335.
7088
7089 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
7090
7091         * gst/h264parse/gsth264parse.c: (gst_h264_parse_clear_queues),
7092         (gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
7093         (gst_h264_parse_find_start_reverse),
7094         (gst_h264_parse_chain_reverse), (gst_h264_parse_chain):
7095         * gst/h264parse/gsth264parse.h:
7096         Improve debugging.
7097         Fix buffer splitting at sync codes and leftover buffer after
7098         scanning.
7099
7100 2008-01-17  Edgard Lima  <edgard.lima@indt.org.br>
7101
7102         * ext/metadata/TODO:
7103         * ext/metadata/metadataexif.c:
7104         * ext/metadata/metadataxmp.c:
7105           Fixed adding EXIF tags to correct IFD. Mapped some XMP tags.
7106
7107 2008-01-16  Wim Taymans  <wim.taymans@collabora.co.uk>
7108
7109         * gst/h264parse/gsth264parse.c: (gst_nal_list_new),
7110         (gst_nal_list_prepend_link), (gst_nal_list_delete_head),
7111         (gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
7112         (gst_nal_bs_read_ue), (gst_h264_parse_class_init),
7113         (gst_h264_parse_init), (gst_h264_parse_set_property),
7114         (gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
7115         (gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
7116         (gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
7117         (gst_h264_parse_find_start_reverse),
7118         (gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
7119         (gst_h264_parse_sink_event), (gst_h264_parse_change_state):
7120         * gst/h264parse/gsth264parse.h:
7121         Add reverse playback support for containers that don't know how to
7122         properly send data between I-frames.
7123
7124 2008-01-16  Sebastian Dröge  <slomo@circular-chaos.org>
7125
7126         * configure.ac:
7127         * tests/check/pipelines/gio.c: (GST_START_TEST):
7128         Update for API changes in GIO and require GIO 2.15.2 for this.
7129
7130 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7131
7132         * gst/xingheader/gstxingmux.c: (generate_xing_header):
7133         Bitrate is 4 bits, not 8 so check for 0xe as maximum value instead
7134         of 0xfe.
7135
7136 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7137
7138         * gst/xingheader/gstxingmux.c: (generate_xing_header):
7139         Remove accidentially leftover debug printf.
7140
7141 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7142
7143         * gst/xingheader/gstxingmux.c: (has_xing_header),
7144         (generate_xing_header), (gst_xing_mux_chain),
7145         (gst_xing_mux_sink_event):
7146         Choose smallest possible frame size for the Xing header, properly
7147         set the timestamp, duration and offset on the outgoing buffers,
7148         only send NEWSEGMENT events in BYTE format downstream and also
7149         drop VBRI headers if already existing.
7150
7151 2008-01-12  Sebastian Dröge  <slomo@circular-chaos.org>
7152
7153         * gst/xingheader/Makefile.am:
7154         * gst/xingheader/gstxingmux.c: (parse_header), (get_xing_offset),
7155         (has_xing_header), (generate_xing_header),
7156         (gst_xing_mux_base_init), (gst_xing_mux_finalize), (xing_reset),
7157         (gst_xing_mux_init), (gst_xing_mux_chain),
7158         (gst_xing_mux_sink_event), (gst_xing_mux_change_state):
7159         * gst/xingheader/gstxingmux.h:
7160         Major cleanup and rewrite of xingmux with less bugs and new features:
7161         - Handles other layers as 3
7162         - Write TOC
7163
7164 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
7165
7166         * tests/check/elements/rganalysis.c: (test_buffer_const_float_mono),
7167           (test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
7168           (test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
7169           (test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
7170           (test_buffer_square_int16_stereo):
7171         * tests/check/elements/rglimiter.c: (create_test_buffer):
7172         * tests/check/elements/rgvolume.c: (test_buffer_new):
7173           It's "endianness", not "endianess". Fixes unit tests.
7174
7175 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7176
7177         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
7178         If we find the caps in the cache, use it to parse the clock-rate instead
7179         of returning an error. Fixes a TODO as found by Youness Alaoui.
7180
7181 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7182
7183         Patch by: Youness Alaoui <youness dot alaoui at collabora dot co dot uk>
7184
7185         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
7186         * gst/rtpmanager/rtpsession.c: (rtp_session_set_callbacks),
7187         (rtp_session_set_process_rtp_callback),
7188         (rtp_session_set_send_rtp_callback),
7189         (rtp_session_set_send_rtcp_callback),
7190         (rtp_session_set_sync_rtcp_callback),
7191         (rtp_session_set_clock_rate_callback),
7192         (rtp_session_set_reconsider_callback), (source_push_rtp),
7193         (source_clock_rate), (rtp_session_process_bye),
7194         (rtp_session_process_rtcp), (rtp_session_send_bye),
7195         (rtp_session_on_timeout):
7196         * gst/rtpmanager/rtpsession.h:
7197         Make it possible to use different user_data for each of the callbacks.
7198         Fixes #508587.
7199
7200 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7201
7202         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code):
7203         Small meaningless cleanup.
7204
7205         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_flush),
7206         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain_forward),
7207         (scan_keyframe), (gst_mpegvideoparse_flush_decode),
7208         (gst_mpegvideoparse_chain_reverse), (gst_mpegvideoparse_chain),
7209         (mpv_parse_sink_event), (gst_mpegvideoparse_change_state):
7210         * gst/mpegvideoparse/mpegvideoparse.h:
7211         Track segment events.
7212         Do the first part of reverse playback by sending data between two
7213         I-frames to the decoder.
7214
7215 2008-01-10  Thijs Vermeir  <thijsvermeir@gmail.com>
7216
7217         * gst/rtpmanager/gstrtpbin.c:
7218         Fix documentation for latest patch
7219
7220 2008-01-10  Thijs Vermeir  <thijsvermeir@gmail.com>
7221
7222         * gst/rtpmanager/gstrtpbin.c:
7223         Allow request_new_pad with name NULL (bug #508515)
7224
7225 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
7226
7227         * autogen.sh:
7228           Add -Wno-portability to the automake parameters to stop warnings
7229           about GNU make extensions being used. We require GNU make in almost
7230           every Makefile anyway.
7231           
7232         * configure.ac:
7233           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
7234           at the same time is required for per target flags.
7235
7236 2008-01-09  Wim Taymans  <wim.taymans@collabora.co.uk>
7237
7238         * gst/rtpmanager/gstrtpsession.c: (create_send_rtp_sink):
7239         Don't set fixed caps, we can basically do everything the upsteam peer
7240         pad can renegotiate to. Fixes #507940.
7241
7242 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
7243
7244         * Makefile.am:
7245           Include lcov.mak to allow building coverage reports. Add top-level
7246           check targets similar to other gst packages.
7247
7248 2008-01-06  David Schleef  <ds@schleef.org>
7249
7250         * ext/directfb/Makefile.am:
7251           Add GST_CFLAGS.  Otherwise we don't get -Wall -Werror.
7252         * ext/directfb/dfbvideosink.c:
7253           Getting tired of directfb's chatter.  Quiet it.
7254
7255 2008-01-06  David Schleef  <ds@schleef.org>
7256
7257         Patch by: Sean D'Epagnier <sean@depagnier.com>
7258
7259         * configure.ac:
7260         * sys/Makefile.am:
7261         * sys/fbdev/Makefile.am:
7262         * sys/fbdev/gstfbdevsink.c:
7263         * sys/fbdev/gstfbdevsink.h:
7264           Add fbdev-based video sink.  Linux-only.  See bug #506549.
7265
7266 2008-01-06  Sebastian Dröge  <slomo@circular-chaos.org>
7267
7268         * configure.ac:
7269         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
7270         * tests/check/pipelines/gio.c: (free_input), (GST_START_TEST):
7271         Update to GMemoryInputStream API changes in GLib SVN and require
7272         gio-2.0 >= 2.15.1 for this. Fixes bug #507584.
7273         We can also report the duration for every GSeekable, not only
7274         GFileInputStream and GMemoryInputStream.
7275
7276 2008-01-05  David Schleef  <ds@schleef.org>
7277
7278         * sys/glsink/glimagesink.c:
7279         * sys/glsink/glimagesink.h:
7280         * sys/glsink/gstglbuffer.h:
7281         * sys/glsink/gstgldisplay.c:
7282         * sys/glsink/gstgldisplay.h:
7283         * sys/glsink/gstglupload.c:
7284           Handle xoverlay exposes correctly.  This means glimagesink works
7285           correctly most of the time in totem (fullscreening being an
7286           execption).  Doesn't handle expose events directly to the GL
7287           window.
7288
7289 2008-01-05  David Schleef  <ds@schleef.org>
7290
7291         * sys/glsink/glextensions.c:
7292         * sys/glsink/glextensions.h:
7293         * sys/glsink/glimagesink.c:
7294         * sys/glsink/glimagesink.h:
7295         * sys/glsink/gstgldisplay.c:
7296         * sys/glsink/gstgldisplay.h:
7297         * sys/glsink/gstopengl.c:
7298           Reenable video/x-raw-rgb and x-raw-yuv for glimagesink.  Enable
7299           vblank synchronization.  Remove unused code.
7300
7301 2008-01-04  Wim Taymans  <wim.taymans@collabora.co.uk>
7302
7303         * gst/rtpmanager/gstrtpjitterbuffer.c:
7304         (gst_rtp_jitter_buffer_loop):
7305         Don't unref the popped buffer when we don't have ownership.
7306         Fixes #507020.
7307
7308 2008-01-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7309
7310         * gst/mpegtsparse/Makefile.am:
7311         * gst/mpegtsparse/flutspatinfo.c:
7312         * gst/mpegtsparse/flutspatinfo.h:
7313         * gst/mpegtsparse/flutspmtinfo.c:
7314         * gst/mpegtsparse/flutspmtinfo.h:
7315         * gst/mpegtsparse/flutspmtstreaminfo.c:
7316         * gst/mpegtsparse/flutspmtstreaminfo.h:
7317         Remove no longer needed files.
7318
7319 2008-01-02  David Schleef  <ds@schleef.org>
7320
7321         * tests/check/Makefile.am:
7322           Disable vcdsrc in states test because it takes too much time
7323           to get to PLAYING if it can find a device.
7324
7325 2007-12-31  David Schleef  <ds@schleef.org>
7326
7327         * ext/musicbrainz/gsttrm.c:
7328           Don't emit signiture when going to READY, because it might
7329           not be ready.
7330         * ext/nas/nassink.c:
7331           Remove useless call that sleeps for 5 seconds.  Yup, it calls
7332           sleep(1) 5 times.  Go NAS.
7333         * gst/librfb/gstrfbsrc.c:
7334         * gst/librfb/rfbdecoder.c:
7335           Initialize our debug categories properly.
7336         * gst/rawparse/gstrawparse.c:
7337           Don't register element details for a non-element.  Be much more
7338           rude when subclass doesn't set a pad template (assert!).  Don't
7339           unref the pad template; we don't own it.
7340         * gst/videosignal/gstvideoanalyse.c:
7341           Initialize debug category.
7342         * tests/check/Makefile.am:
7343           Ignore nassink element in tests because it has unavoidable
7344           long timeouts.
7345
7346 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7347
7348         * gst/rtpmanager/gstrtpssrcdemux.c:
7349         (gst_rtp_ssrc_demux_change_state):
7350         Don't clean up pads when going to PAUSED.
7351
7352 2007-12-30  David Schleef  <ds@schleef.org>
7353
7354         * configure.ac:
7355         * sys/glsink/Makefile.am:
7356           Switch to using pkgconfig to detect libGL.  Since we use
7357           recent features added to Mesa, there's no point in adding
7358           a check for pre-pkgconfig versions.
7359
7360 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7361
7362         * ext/ladspa/gstladspa.c: (gst_ladspa_get_property):
7363         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_show_frame):
7364         * gst/mve/gstmvemux.c: (gst_mve_mux_request_new_pad):
7365         * sys/dvb/dvbbasebin.c: (dvb_base_bin_class_init):
7366         Fix 'xyz may be used uninitialized' compiler warnings caused
7367         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7368         abort() in any case but properly report the error.
7369
7370 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7371
7372         * configure.ac:
7373         * ext/gio/gstgio.c:
7374         * ext/gio/gstgio.h:
7375         * ext/gio/gstgiobasesink.h:
7376         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
7377         * ext/gio/gstgiobasesrc.h:
7378         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
7379         * ext/gio/gstgiosink.h:
7380         * ext/gio/gstgiosrc.h:
7381         * ext/gio/gstgiostreamsink.h:
7382         * ext/gio/gstgiostreamsrc.h:
7383         * tests/check/pipelines/gio.c:
7384         Update to latest API changes in GLib/GIO and require at least
7385         gio-2.0 2.15.0 for this.
7386         
7387         * ext/gio/Makefile.am:
7388         Add GST_PLUGIN_LDFLAGS to LDFLAGS.
7389
7390 2007-12-28  David Schleef  <ds@schleef.org>
7391
7392         * configure.ac:
7393         * sys/glsink/glextensions.c:
7394         * sys/glsink/glextensions.h:
7395         * sys/glsink/glimagesink.c:
7396         * sys/glsink/glimagesink.h:
7397         * sys/glsink/gstglbuffer.c:
7398         * sys/glsink/gstglbuffer.h:
7399         * sys/glsink/gstglconvert.c:
7400         * sys/glsink/gstgldisplay.c:
7401         * sys/glsink/gstgldisplay.h:
7402         * sys/glsink/gstgldownload.c:
7403         * sys/glsink/gstglfilter.c:
7404         * sys/glsink/gstglfilter.h:
7405         * sys/glsink/gstglfilterexample.c:
7406         * sys/glsink/gstgltestsrc.c:
7407         * sys/glsink/gstglupload.c:
7408           Major cleanup of code.  Convert glupload to BaseTransform.
7409           Handle caps negotiation mostly correctly.  Reenable in build.
7410
7411 2007-12-28  Tim-Philipp Müller  <tim at centricular dot net>
7412
7413         * ext/soup/Makefile.am:
7414         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_get_property),
7415           (gst_souphttp_src_unicodify), (soup_got_headers):
7416           Use gst_tag_freeform_string_to_utf8() and post radio station
7417           info as tags on the bus.
7418
7419 2007-12-26  David Schleef  <ds@schleef.org>
7420
7421         * sys/glsink/glimagesink.c:
7422         * sys/glsink/gstglupload.c:
7423           Change glimagesink over to using GL buffers.  This breaks
7424           glimagesink for normal operation, but should be fixed soon.
7425
7426 2007-12-26  David Schleef  <ds@schleef.org>
7427
7428         * sys/glsink/gltestsrc.c:
7429         * sys/glsink/gstglbuffer.c:
7430         * sys/glsink/gstglbuffer.h:
7431         * sys/glsink/gstgldownload.c:
7432         * sys/glsink/gstglfilter.c:
7433         * sys/glsink/gstglfilterexample.c:
7434         * sys/glsink/gstgltestsrc.c:
7435         * sys/glsink/gstglupload.c:
7436           Convert gldownload to BaseTransform.  Make glfilterexample
7437           visually interesting.  Add support for various formats to
7438           downloading.  Fix a few places where we leak GL state to
7439           other elements (bad, but hard to prevent).
7440
7441 2007-12-26  David Schleef  <ds@schleef.org>
7442
7443         * sys/glsink/BUGS:
7444         * sys/glsink/Makefile.am:
7445         * sys/glsink/gstglbuffer.c:
7446         * sys/glsink/gstglbuffer.h:
7447         * sys/glsink/gstglconvert.c:
7448         * sys/glsink/gstgldisplay.c:
7449         * sys/glsink/gstglfilter.c:
7450         * sys/glsink/gstglfilter.h:
7451         * sys/glsink/gstglfilterexample.c:
7452         * sys/glsink/gstgltestsrc.c:
7453         * sys/glsink/gstglupload.c:
7454         * sys/glsink/gstopengl.c:
7455           Remove code that handles non-texture buffers.  Add a
7456           GstGLBufferFormat type that corresponds to how to use the
7457           texture, not the original video format.  Convert gstflfilter.c
7458           into a base class, add glfilterexample and glconvert elements.
7459         * sys/glsink/color_matrix.c:
7460           Minor ramblings about color conversion matrices.
7461
7462 2007-12-24  David Schleef  <ds@schleef.org>
7463
7464         * sys/glsink/Makefile.am:
7465         * sys/glsink/gltestsrc.c:
7466         * sys/glsink/gltestsrc.h:
7467         * sys/glsink/gstgldisplay.c:
7468         * sys/glsink/gstgldownload.c:
7469         * sys/glsink/gstglfilter.c:
7470         * sys/glsink/gstgltestsrc.c:
7471         * sys/glsink/gstgltestsrc.h:
7472         * sys/glsink/gstglupload.c:
7473         * sys/glsink/gstopengl.c:
7474           Add gltestsrc element, a duplicate of videotestsrc that uses
7475           GL rendering to create images.  More cleanup.
7476
7477 2007-12-24  David Schleef  <ds@schleef.org>
7478
7479         * sys/glsink/gstglbuffer.c:
7480         * sys/glsink/gstgldownload.c:
7481         * sys/glsink/gstglfilter.c:
7482           Clean up code.  Fix a few leaks.
7483
7484 2007-12-24  David Schleef  <ds@schleef.org>
7485
7486         * sys/glsink/Makefile.am:
7487         * sys/glsink/glimagesink.h:
7488         * sys/glsink/glvideo.c:
7489         * sys/glsink/glvideo.h:
7490         * sys/glsink/gstglbuffer.c:
7491         * sys/glsink/gstglbuffer.h:
7492         * sys/glsink/gstgldisplay.c:
7493         * sys/glsink/gstgldisplay.h:
7494           Rename glvideo.[ch] to gstgldisplay.[ch].
7495
7496 2007-12-24  David Schleef  <ds@schleef.org>
7497
7498         * sys/glsink/glimagesink.c:
7499         * sys/glsink/glimagesink.h:
7500         * sys/glsink/glvideo.c:
7501         * sys/glsink/glvideo.h:
7502         * sys/glsink/gstglbuffer.c:
7503         * sys/glsink/gstglbuffer.h:
7504         * sys/glsink/gstgldownload.c:
7505         * sys/glsink/gstglfilter.c:
7506         * sys/glsink/gstglupload.c:
7507           Rewrite a bunch of code to use textures as the intermediate
7508           instead of renderbuffers.  upload, download, filtering all
7509           work.
7510
7511 2007-12-23  David Schleef  <ds@schleef.org>
7512
7513         * gst/videoparse/Makefile.am:
7514         * gst/videoparse/README:
7515         * gst/videoparse/gstvideoparse.c:
7516           Remove videoparse element, because it was moved to gst/rawparse/
7517
7518 2007-12-23  Sebastian Dröge  <slomo@circular-chaos.org>
7519
7520         * gst/rawparse/gstrawparse.c: (gst_raw_parse_src_event):
7521         Always seek on frame boundaries, will produce nothing useful
7522         otherwise.
7523
7524 2007-12-23  Sebastian Dröge  <slomo@circular-chaos.org>
7525
7526         * configure.ac:
7527         * gst/rawparse/Makefile.am:
7528         * gst/rawparse/README:
7529         * gst/rawparse/gstaudioparse.c: (gst_audio_parse_format_get_type),
7530         (gst_audio_parse_endianness_get_type), (gst_audio_parse_base_init),
7531         (gst_audio_parse_class_init), (gst_audio_parse_init),
7532         (gst_audio_parse_set_property), (gst_audio_parse_get_property),
7533         (gst_audio_parse_update_frame_size), (gst_audio_parse_get_caps):
7534         * gst/rawparse/gstaudioparse.h:
7535         * gst/rawparse/gstrawparse.c: (gst_raw_parse_base_init),
7536         (gst_raw_parse_class_init), (gst_raw_parse_init),
7537         (gst_raw_parse_dispose),
7538         (gst_raw_parse_class_set_src_pad_template),
7539         (gst_raw_parse_class_set_multiple_frames_per_buffer),
7540         (gst_raw_parse_reset), (gst_raw_parse_chain),
7541         (gst_raw_parse_convert), (gst_raw_parse_sink_event),
7542         (gst_raw_parse_src_event), (gst_raw_parse_src_query_type),
7543         (gst_raw_parse_src_query), (gst_raw_parse_set_framesize),
7544         (gst_raw_parse_set_fps), (gst_raw_parse_get_fps),
7545         (gst_raw_parse_is_negotiated):
7546         * gst/rawparse/gstrawparse.h:
7547         * gst/rawparse/gstvideoparse.c: (gst_video_parse_format_get_type),
7548         (gst_video_parse_endianness_get_type), (gst_video_parse_base_init),
7549         (gst_video_parse_class_init), (gst_video_parse_init),
7550         (gst_video_parse_set_property), (gst_video_parse_get_property),
7551         (gst_video_parse_format_to_fourcc),
7552         (gst_video_parse_update_frame_size), (gst_video_parse_get_caps):
7553         * gst/rawparse/gstvideoparse.h:
7554         * gst/rawparse/plugin.c: (plugin_init):
7555         Add new plugin rawparse that contains a base class for raw data
7556         parsers and the two elements audioparse and videoparse that can
7557         be used to parse raw audio and video. These are inspired by the
7558         old videoparse element which the new rawparse plugin deprecates.
7559
7560 2007-12-21  David Schleef  <ds@schleef.org>
7561
7562         * sys/glsink/glextensions.c:
7563         * sys/glsink/glextensions.h:
7564         * sys/glsink/glvideo.c:
7565         * sys/glsink/glvideo.h:
7566         * sys/glsink/gstglbuffer.c:
7567         * sys/glsink/gstgldownload.c:
7568         * sys/glsink/gstglupload.c:
7569           A careful read of the documentation reveals that I can't use
7570           renderbuffers as textures.  Duh.  Checkpoint because I'm about
7571           to rewrite a bunch of code.
7572
7573 2007-12-21  Edgard Lima,,,,  <edgard.lima@indt.org.br>
7574
7575         * ext/metadata/TODO:
7576         * ext/metadata/gstbasemetadata.c:
7577         * ext/metadata/gstbasemetadata.h:
7578         * ext/metadata/metadata.h:
7579         * ext/metadata/metadataiptc.c:
7580         * ext/metadata/metadatamuxjpeg.c:
7581         * ext/metadata/metadataparsejpeg.c:
7582         * ext/metadata/metadataparseutil.c:
7583           Some IPTC tags mapped.
7584
7585 2007-12-21  Edgard Lima  <edgard.lima@indt.org.br>
7586
7587         * ext/metadata/Makefile.am:
7588         * ext/metadata/TODO:
7589         * ext/metadata/gstbasemetadata.c:
7590         * ext/metadata/gstbasemetadata.h:
7591         * ext/metadata/gstmetadatacommon.c:
7592         * ext/metadata/gstmetadatacommon.h:
7593         * ext/metadata/metadata.c:
7594         * ext/metadata/metadata.h:
7595           Removed gstmetadatacommon.
7596
7597 2007-12-20  David Schleef  <ds@schleef.org>
7598
7599         * sys/glsink/Makefile.am:
7600         * sys/glsink/glextensions.c:
7601         * sys/glsink/glextensions.h:
7602         * sys/glsink/glimagesink.c:
7603         * sys/glsink/glimagesink.h:
7604         * sys/glsink/glvideo.c:
7605         * sys/glsink/glvideo.h:
7606         * sys/glsink/gstglbuffer.c:
7607         * sys/glsink/gstglbuffer.h:
7608         * sys/glsink/gstgldownload.c:
7609         * sys/glsink/gstglfilter.c:
7610         * sys/glsink/gstglupload.c:
7611         * sys/glsink/gstopengl.c:
7612           Switch to using framebuffer_objects instead of GLXPixmaps,
7613           because that's what my driver supports.  Remove GLDrawable,
7614           since GstGLDisplay now has a default drawable and context.
7615
7616 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
7617
7618         * gst/equalizer/.cvsignore:
7619         * gst/switch/.cvsignore:
7620           Ignore more.
7621
7622 2007-12-19  Edgard Lima  <edgard.lima@indt.org.br>
7623
7624         * ext/metadata/Makefile.am:
7625         * ext/metadata/TODO:
7626         * ext/metadata/gstbasemetadata.c:
7627         * ext/metadata/gstbasemetadata.h:
7628         * ext/metadata/gstmetadatacommon.c:
7629         * ext/metadata/gstmetadatacommon.h:
7630         * ext/metadata/gstmetadatademux.c:
7631         * ext/metadata/gstmetadatademux.h:
7632         * ext/metadata/gstmetadatamux.c:
7633         * ext/metadata/gstmetadatamux.h:
7634         * ext/metadata/metadata.c:
7635         * ext/metadata/metadata.h:
7636         * ext/metadata/metadataexif.c:
7637         * ext/metadata/metadataparsejpeg.c:
7638         * ext/metadata/metadataparsepng.c:
7639         * ext/metadata/metadatatags.c:
7640         * ext/metadata/metadatatags.h:
7641         * ext/metadata/test/metadata_editor.c:
7642           New base class for metadata elements.
7643
7644 2007-12-18  Andy Wingo  <wingo@pobox.com>
7645
7646         * gst/switch/gstswitch-marshal.list:
7647         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7648         * gst/switch/gstswitch.c (enum, gst_selector_pad_class_init)
7649         (gst_selector_pad_get_property)
7650         (gst_selector_pad_get_running_time)
7651         (gst_stream_selector_class_init, gst_segment_get_timestamp)
7652         (gst_segment_set_stop, gst_segment_set_start)
7653         (gst_stream_selector_set_active_pad, gst_stream_selector_block)
7654         (gst_stream_selector_push_pending_stop)
7655         (gst_stream_selector_switch): Change so that the signals and
7656         properties deal in running time, not buffer time. Document the
7657         signals more. Change uint64 in API to int64, to reflect what's in
7658         GstSegment.
7659
7660 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7661
7662         * Makefile.am:
7663           Include common/win32.mak for CRLF check of win32 project
7664           files (see #393626).
7665
7666         * configure.ac:
7667           Bump requirements to -base CVS for libgstvideo additions in
7668           glimagesink. Disable glimagesink until the missing files get
7669           checked in.
7670
7671 2007-12-17  David Schleef  <ds@schleef.org>
7672
7673         * sys/glsink/Makefile.am:
7674         * sys/glsink/glimagesink.c:
7675         * sys/glsink/glimagesink.h:
7676         * sys/glsink/glvideo.c:
7677         * sys/glsink/glvideo.h:
7678         * sys/glsink/gstopengl.c:
7679         * sys/glsink/gstglupload.c:
7680           Use new GstVideoFormat checked into -base.  Add new glupload
7681           element to upload raw video into a GLXPixbuf.  Untested.  Will
7682           likely crash your motorcycle if you try it.
7683         * sys/glsink/gstvideo-common.c:
7684         * sys/glsink/gstvideo-common.h:
7685           Remove.
7686
7687 2007-12-17  David Schleef  <ds@schleef.org>
7688
7689         * gst/multifile/gstmultifilesrc.c:
7690         * gst/multifile/gstmultifilesrc.h:
7691           When subsequent files are read, if the file doesn't exist, send
7692           an EOS instead of causing an error.
7693
7694 2007-12-17  Andy Wingo  <wingo@pobox.com>
7695
7696         * gst/switch/gstswitch.c (gst_selector_pad_chain): Return OK when
7697         a buffer is ignored, not NOT_LINKED. No sense in making a source
7698         element error out; at least fdsrc considers NOT_LINKED to be a
7699         fatal error. Patch 11/12. There is no patch 12/12. Foo.
7700
7701         * gst/switch/gstswitch-marshal.list:
7702         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7703         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7704         (gst_stream_selector_block): Make the block() signal return the
7705         last stop time of the active pad. Patch 10/12.
7706
7707         * gst/switch/gstswitch.c (gst_selector_pad_get_property)
7708         (gst_selector_pad_class_init, gst_stream_selector_class_init)
7709         (gst_stream_selector_get_property): Expose 'last-stop-time' as a
7710         pad property, not an element property.
7711         (gst_selector_pad_chain): Mark the last_stop time as timestamp +
7712         duration, not timestamp. Patch 9/12.
7713
7714         * gst/switch/gstswitch.c (gst_stream_selector_change_state)
7715         (gst_stream_selector_block, gst_stream_selector_switch): Use the
7716         cond mechanism instead of blocked pads. Patch 8/12.
7717
7718         * gst/switch/gstswitch.h (struct _GstStreamSelector): 
7719
7720         * gst/switch/gstswitch.c (gst_stream_selector_wait)
7721         (gst_selector_pad_chain, gst_stream_selector_init)
7722         (gst_stream_selector_dispose): Add infrastructure for new blocking
7723         mechanism that does not use gst_pad_set_blocked, which does not
7724         work on sink pads. Patch 7/12.
7725
7726         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7727         (gst_stream_selector_get_property): Add last-stop-time readable
7728         property. Patch 6/12.
7729
7730         * gst/switch/gstswitch.h (struct _GstStreamSelector): Add some
7731         state variables.
7732
7733         * gst/switch/gstswitch.c (gst_stream_selector_push_pending_stop)
7734         (gst_selector_pad_chain): Push any pending stop event.
7735         (gst_stream_selector_set_active_pad)
7736         (gst_stream_selector_set_property): Factor out setting the active
7737         pad to a function. Close the segment of the previous active pad if
7738         told to do so via a stop_time != GST_CLOCK_TIME_NONE.
7739         (gst_stream_selector_switch): Implement switch vmethod. Patch 5/12.
7740
7741         * gst/switch/gstswitch.c (gst_stream_selector_block): Implement
7742         the block() signal. This implementation will be replaced in future
7743         patches, however. Patch 4/12.
7744
7745         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): Fix
7746         vmethod prototypes.
7747
7748         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7749         (gst_stream_selector_block, gst_stream_selector_switch): Add empty
7750         vmethod definitions. Patch 3/12.
7751
7752         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7753         * gst/switch/gstswitch.c (gst_stream_selector_class_init): Add
7754         `block' and `switch' signals.
7755
7756         * gst/switch/Makefile.am: 
7757         * gst/switch/gstswitch-marshal.list: Add foo to generate a
7758         marshaller for the `switch' signal. Patch 2/12.
7759
7760         * gst/switch/gstswitch.h: 
7761         * gst/switch/gstswitch.c: Replace with files from
7762         gststreamselector.[ch], registered as the "switch" plugin, with
7763         "GstSwitch" types. Patch 1/12.
7764
7765 2007-12-17  Edgard Lima  <edgard.lima@indt.org.br>
7766
7767         * ext/metadata/TODO:
7768         * ext/metadata/gstmetadatademux.c:
7769         * ext/metadata/metadata.c:
7770         * ext/metadata/metadata.h:
7771         * ext/metadata/metadataparsejpeg.c:
7772         * ext/metadata/metadataparsejpeg.h:
7773         * ext/metadata/metadataparsepng.c:
7774         * ext/metadata/metadataparsepng.h:
7775         * ext/metadata/test/MetadataEditorMain.glade:
7776         * ext/metadata/test/metadata_editor.c:
7777           Added "parse-only" property to metadatademux.
7778
7779 2007-12-16  David Schleef  <ds@schleef.org>
7780
7781         * sys/glsink/glimagesink.c:
7782         * sys/glsink/glimagesink.h:
7783         * sys/glsink/glvideo.c:
7784         * sys/glsink/glvideo.h:
7785           Rename GLVideo* to GstGL*.
7786
7787 2007-12-15  David Schleef  <ds@schleef.org>
7788
7789         * sys/glsink/Makefile.am:
7790         * sys/glsink/glextensions.c:
7791         * sys/glsink/glextensions.h:
7792         * sys/glsink/glvideo.c:
7793           Add vblank synchronization.  Isn't really working on my
7794           driver. :(
7795
7796 2007-12-15  David Schleef  <ds@schleef.org>
7797
7798         * sys/glsink/Makefile.am:
7799         * sys/glsink/glimagesink.c:
7800         * sys/glsink/glvideo.c:
7801         * sys/glsink/glvideo.h:
7802         * sys/glsink/gstvideo-common.c:
7803         * sys/glsink/gstvideo-common.h:
7804           Add support for xRGB, xBGR, and AYUV.  Re-add support for
7805           power-of-2 textures.
7806
7807 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7808
7809         * gst/videoparse/gstvideoparse.c: (gst_video_parse_dispose),
7810         (gst_video_parse_sink_event):
7811         Free the adapter on dispose and correctly reset on newsegment events.
7812
7813 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7814
7815         * gst/videoparse/gstvideoparse.c: (gst_video_parse_sink_event),
7816         (gst_video_parse_src_event), (gst_video_parse_src_query):
7817         Improve duration query by first asking upstream and if it can't handle
7818         the query try to get the duration in bytes from upstream and convert.
7819         For seeks, try if upstream handles this already first and do our
7820         conversion to byte format only if it doesn't and if we get a
7821         newsegment event in time format keep it and only do our conversions
7822         if the event has another format.
7823
7824 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7825
7826         * gst/videoparse/gstvideoparse.c:
7827         (gst_video_parse_format_get_type),
7828         (gst_video_parse_endianness_get_type),
7829         (gst_video_parse_class_init), (gst_video_parse_init),
7830         (gst_video_parse_set_property), (gst_video_parse_get_property),
7831         (gst_video_parse_format_to_fourcc),
7832         (gst_video_parse_update_block_size), (gst_video_parse_chain),
7833         (gst_video_parse_sink_event):
7834         Add support for video/x-raw-rgb and video/x-raw-gray. Also send
7835         downstream elements downstream, not upstream.
7836
7837 2007-12-14  David Schleef  <ds@schleef.org>
7838
7839         * sys/glsink/gstvideo-common.c:
7840         * sys/glsink/gstvideo-common.h:
7841           Pull together some common raw video functions into one location.
7842           This should eventually move to -base.
7843         * sys/glsink/Makefile.am:
7844         * sys/glsink/glimagesink.c:
7845         * sys/glsink/glimagesink.h:
7846         * sys/glsink/glvideo.c:
7847         * sys/glsink/glvideo.h:
7848         * sys/glsink/gstopengl.c:
7849           Use the new video-common.h stuff.  Readd support for RGB video.
7850
7851 2007-12-14  Edgard Lima  <edgard.lima@indt.org.br>
7852
7853         * ext/metadata/Makefile.am:
7854         * ext/metadata/TODO:
7855         * ext/metadata/gstmetadata.c:
7856         * ext/metadata/gstmetadatacommon.c:
7857         * ext/metadata/gstmetadatacommon.h:
7858         * ext/metadata/gstmetadatademux.c:
7859         * ext/metadata/gstmetadatademux.h:
7860         * ext/metadata/gstmetadatamux.c:
7861         * ext/metadata/gstmetadatamux.h:
7862         * ext/metadata/gstmetadataparse.c:
7863         * ext/metadata/gstmetadataparse.h:
7864         * ext/metadata/metadataexif.c:
7865         * ext/metadata/metadatatags.c:
7866         * ext/metadata/test/metadata_editor.c:
7867           Added new module for common functions. Using GST_TYPE_FRACTION for
7868           Exif (S)Rational types.
7869
7870 2007-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7871
7872         * gst/mpegtsparse/mpegtspacketizer.c:
7873         * gst/mpegtsparse/mpegtspacketizer.h:
7874         Hash streams by pid again. Add a linked list inside each
7875         stream with a list of sub_tables. Fix multiple sections
7876         as it was borked with my last commit.
7877
7878 2007-12-14  Christian Schaller <christian.schaller@collabora.co.uk>
7879
7880         * sys/glsink/Makefile.am: add glvideo.h
7881         * gst/speexresample/Makefile.am: add speex_resampler_wrapper.h
7882         * gst-plugins-bad.spec.in: add latest plugins
7883
7884 2007-12-13  Edgard Lima  <edgard.lima@indt.org.br>
7885
7886         * ext/metadata/TODO:
7887         * ext/metadata/gstmetadatamux.c:
7888         * ext/metadata/gstmetadataparse.c:
7889         * ext/metadata/metadata.c:
7890         * ext/metadata/metadata.h:
7891         * ext/metadata/metadataiptc.c:
7892         * ext/metadata/metadatamuxjpeg.c:
7893         * ext/metadata/metadatamuxjpeg.h:
7894         * ext/metadata/metadatamuxpng.c:
7895         * ext/metadata/metadatamuxpng.h:
7896         * ext/metadata/metadataparsejpeg.c:
7897         * ext/metadata/metadataparsejpeg.h:
7898         * ext/metadata/metadataparsepng.c:
7899         * ext/metadata/metadataparsepng.h:
7900         * ext/metadata/metadataparseutil.c:
7901         * ext/metadata/metadataparseutil.h:
7902         * ext/metadata/metadatatypes.h:
7903         * ext/metadata/metadataxmp.c:
7904           Code documentation.
7905
7906 2007-12-13  Edgard Lima  <edgard.lima@indt.org.br>
7907
7908         * configure.ac:
7909         * ext/metadata/Makefile.am:
7910         * ext/metadata/gstmetadatamux.c:
7911         * ext/metadata/gstmetadataparse.c:
7912         * ext/metadata/metadataexif.c:
7913         * ext/metadata/metadatatags.c:
7914         * ext/metadata/test/Makefile:
7915         * ext/metadata/test/MetadataEditorMain.glade:
7916         * ext/metadata/test/metadata_editor.c:
7917           Added a test application. Added some EXIF tags. Fixed a muxer bug.
7918
7919 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7920
7921         * gst/videoparse/gstvideoparse.c: (gst_video_parse_init),
7922           (gst_video_parse_src_event), (gst_video_parse_src_query_type):
7923           Implement a query type function for the src pad, implement seeking
7924           and use ANY caps for the sink pad as the element doesn't care what
7925           caps the input has and everything is handled via properties.
7926
7927 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7928
7929         * gst/videoparse/gstvideoparse.c: (gst_video_parse_convert),
7930           (gst_video_parse_sink_event):
7931           Handle -1 values for the CONVERT query too.
7932
7933 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7934
7935         * gst/videoparse/gstvideoparse.c: (gst_video_parse_sink_event):
7936           Add YV12 to the pad templates as it is supported too and allow
7937           -1 as stop position for NEWSEGMENT events.
7938
7939 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7940
7941         * gst/videoparse/Makefile.am:
7942           Add $(GST_PLUGINS_BASE_CFLAGS) to CFLAGS to fix the build.
7943
7944         * gst/videoparse/gstvideoparse.c: (gst_video_parse_init),
7945           (gst_video_parse_set_property), (gst_video_parse_get_property):
7946           Use g_value_[sg]et_enum() for enum properties, g_value_[sg]et_int()
7947           gives a g_critical().
7948
7949 2007-12-12  David Schleef  <ds@schleef.org>
7950
7951         * gst/videoparse/README:
7952         * gst/videoparse/gstvideoparse.c:
7953           Add a bunch of features: handle format specification, handle
7954           queries and conversion.  Works much like a normal parser now.
7955
7956 2007-12-12  Wim Taymans  <wim.taymans@collabora.co.uk>
7957
7958         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_finalize),
7959         (gst_rtp_pt_demux_setup), (gst_rtp_pt_demux_release),
7960         (gst_rtp_pt_demux_change_state):
7961         * gst/rtpmanager/gstrtpssrcdemux.c: (gst_rtp_ssrc_demux_reset),
7962         (gst_rtp_ssrc_demux_dispose), (gst_rtp_ssrc_demux_src_query),
7963         (gst_rtp_ssrc_demux_change_state):
7964         Clean up the dynamic pads when going to READY.
7965
7966 2007-12-12  Wim Taymans  <wim.taymans@collabora.co.uk>
7967
7968         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_finalize),
7969         (gst_rtp_bin_set_sdes_string), (gst_rtp_bin_get_sdes_string),
7970         (gst_rtp_bin_handle_message):
7971         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize),
7972         (rtp_session_send_bye):
7973         * gst/rtpmanager/rtpsource.c: (rtp_source_finalize):
7974         Fix some leaks.
7975
7976 2007-12-12  Sebastian Dröge  <slomo@circular-chaos.org>
7977
7978         * ext/dts/gstdtsdec.c: (gst_dtsdec_init),
7979           (gst_dtsdec_sink_setcaps), (gst_dtsdec_chain_raw),
7980           (gst_dtsdec_chain):
7981         * ext/dts/gstdtsdec.h:
7982           Add support for "audio/x-private1-dts" as used by flupsparse. Most
7983           changes adapted from a52dec.
7984
7985 2007-12-11  David Schleef  <ds@schleef.org>
7986
7987         * sys/glsink/Makefile.am:
7988         * sys/glsink/glimagesink.c:
7989         * sys/glsink/glvideo.c:
7990         * sys/glsink/glvideo.h:
7991           Split out gl-related code into a separate file with a
7992           sensible API.  Major cleanup.  Still crashes occasionally
7993           due to different threads touching bits at the same time.
7994
7995 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7996
7997         Patch by: Wouter Cloetens <wouter at mind dot be>
7998
7999         * ext/soup/gstsouphttpsrc.c: (_do_init),
8000         (gst_souphttp_src_class_init), (gst_souphttp_src_init),
8001         (gst_souphttp_src_dispose), (gst_souphttp_src_set_property),
8002         (gst_souphttp_src_get_property), (unicodify),
8003         (gst_souphttp_src_unicodify), (gst_souphttp_src_create),
8004         (gst_souphttp_src_start), (gst_souphttp_src_stop),
8005         (gst_souphttp_src_unlock), (gst_souphttp_src_unlock_stop),
8006         (gst_souphttp_src_get_size), (gst_souphttp_src_is_seekable),
8007         (soup_got_headers), (soup_got_body), (soup_finished),
8008         (soup_got_chunk), (soup_response), (soup_parse_status),
8009         (gst_souphttp_src_uri_get_type),
8010         (gst_souphttp_src_uri_get_protocols),
8011         (gst_souphttp_src_uri_get_uri), (gst_souphttp_src_uri_set_uri),
8012         (gst_souphttp_src_uri_handler_init):
8013         * ext/soup/gstsouphttpsrc.h:
8014         Do not try to unpause I/O in the "queued" state.
8015         Reorganise a bunch of things and cleanups.
8016         Uses G_GUINT64_FORMAT instead of hard-coding %llu.
8017         See #502335.
8018
8019 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
8020
8021         * ext/x264/gstx264enc.c: (gst_x264_enc_set_src_caps):
8022         Fix caps memleak.
8023
8024 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
8025
8026         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8027           (gst_flv_parse_tag_video):
8028           Don't strdup (and thus leak) codec name strings when passing
8029           them to gst_tag_list_add().
8030
8031 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8032
8033         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
8034         (gst_rtp_bin_handle_message):
8035         * gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
8036         (on_ssrc_sdes):
8037         Post a message when the SDES infor changes for a source.
8038
8039         * gst/rtpmanager/rtpsession.c:
8040         * gst/rtpmanager/rtpsource.c:
8041         Update some comments.
8042
8043 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8044
8045         Based on patch by: <mutex at runbox dot com>
8046
8047         * gst/videoparse/gstvideoparse.c: (gst_video_parse_src_query):
8048         Forward the query upstream, the default element event handler does
8049         something different. Fixes #502879.
8050
8051 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8052
8053         * gst/rtpmanager/gstrtpbin.c: (on_ssrc_sdes), (create_session),
8054         (gst_rtp_bin_class_init):
8055         * gst/rtpmanager/gstrtpbin.h:
8056         * gst/rtpmanager/gstrtpclient.c:
8057         * gst/rtpmanager/gstrtpclient.h:
8058         * gst/rtpmanager/gstrtpjitterbuffer.h:
8059         * gst/rtpmanager/gstrtpmanager.c:
8060         * gst/rtpmanager/gstrtpptdemux.c:
8061         * gst/rtpmanager/gstrtpptdemux.h:
8062         * gst/rtpmanager/gstrtpsession.c: (on_ssrc_sdes),
8063         (gst_rtp_session_class_init), (gst_rtp_session_init):
8064         * gst/rtpmanager/gstrtpsession.h:
8065         * gst/rtpmanager/gstrtpssrcdemux.c:
8066         * gst/rtpmanager/gstrtpssrcdemux.h:
8067         * gst/rtpmanager/rtpjitterbuffer.c:
8068         * gst/rtpmanager/rtpjitterbuffer.h:
8069         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
8070         (on_ssrc_sdes), (rtp_session_process_sdes):
8071         * gst/rtpmanager/rtpsession.h:
8072         * gst/rtpmanager/rtpsource.c:
8073         * gst/rtpmanager/rtpsource.h:
8074         * gst/rtpmanager/rtpstats.c:
8075         * gst/rtpmanager/rtpstats.h:
8076         Add signal to notify of an SDES change.
8077         Fix object type in the signal callbacks.
8078
8079 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
8080
8081         * gst/rtpmanager/gstrtpbin.c: (create_session),
8082         (gst_rtp_bin_class_init), (gst_rtp_bin_init), (sdes_type_to_name),
8083         (gst_rtp_bin_set_sdes_string), (gst_rtp_bin_get_sdes_string),
8084         (gst_rtp_bin_set_property), (gst_rtp_bin_get_property):
8085         * gst/rtpmanager/gstrtpbin.h:
8086         Expose SDES items as properties and configure the session managers with
8087         them.
8088
8089         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
8090         (rtp_source_set_property):
8091         Fix SSRC property.
8092
8093 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
8094
8095         * gst/rtpmanager/gstrtpbin.c: (create_session):
8096         * gst/rtpmanager/rtpjitterbuffer.c:
8097         Update comment.
8098
8099         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
8100         (gst_rtp_session_set_property), (gst_rtp_session_get_property):
8101         Define some GObject properties to set SDES and other configuration.
8102
8103         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
8104         (rtp_session_init), (rtp_session_finalize),
8105         (rtp_session_set_property), (rtp_session_get_property),
8106         (on_ssrc_sdes), (rtp_session_set_bandwidth),
8107         (rtp_session_get_bandwidth), (rtp_session_set_rtcp_fraction),
8108         (rtp_session_get_rtcp_fraction), (rtp_session_set_sdes_string),
8109         (rtp_session_get_sdes_string), (obtain_source),
8110         (rtp_session_get_internal_source), (rtp_session_process_sdes),
8111         (rtp_session_send_rtp), (rtp_session_next_timeout), (session_sdes),
8112         (is_rtcp_time):
8113         * gst/rtpmanager/rtpsession.h:
8114         Add signal when new SDES infor has been found for a source.
8115         Create properties for SDES and other info.
8116         Simplify the SDES API.
8117         Add method for getting the internal source object of the session.
8118
8119         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
8120         (rtp_source_finalize), (rtp_source_set_property),
8121         (rtp_source_get_property), (rtp_source_set_callbacks),
8122         (rtp_source_get_ssrc), (rtp_source_set_as_csrc),
8123         (rtp_source_is_as_csrc), (rtp_source_is_active),
8124         (rtp_source_is_validated), (rtp_source_is_sender),
8125         (rtp_source_received_bye), (rtp_source_get_bye_reason),
8126         (rtp_source_set_sdes), (rtp_source_set_sdes_string),
8127         (rtp_source_get_sdes), (rtp_source_get_sdes_string),
8128         (rtp_source_get_new_sr), (rtp_source_get_new_rb):
8129         * gst/rtpmanager/rtpsource.h:
8130         Add GObject properties for various things.
8131         Don't leak the bye reason.
8132
8133 2007-12-09  Edward Hervey  <edward@collabora.co.uk>
8134
8135         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8136         (gst_flv_parse_tag_video):
8137         Fix list of supported and known codecs.
8138         Emit tag with the codec name so it gets properly reported in totem and
8139         other applications.
8140
8141 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
8142
8143         * configure.ac:
8144         Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
8145
8146 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8147
8148         * gst/equalizer/gstiirequalizer.c:
8149         (gst_iir_equalizer_transform_ip):
8150         Fix compilation.
8151
8152 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8153
8154         * gst/equalizer/gstiirequalizer.c:
8155         (gst_iir_equalizer_transform_ip):
8156         Don't process buffers in passthrough mode.
8157
8158 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8159
8160         * gst/filter/gstbpwsinc.c: (bpwsinc_transform):
8161         * gst/filter/gstlpwsinc.c: (lpwsinc_transform):
8162         The transform() methods are not called in passthrough mode so
8163         there's no need for checking if the element is in passthrough mode.
8164
8165 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8166
8167         * gst/filter/gstbpwsinc.c: (bpwsinc_transform):
8168         * gst/filter/gstlpwsinc.c: (lpwsinc_transform):
8169         Sync the GObject properties with the controller even in passthrough
8170         mode to get consistent property values.
8171
8172 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
8173
8174         * gst/mpegtsparse/mpegtsparse.c: (crc_tab):
8175           Mark crc values table as constant.
8176
8177 2007-12-05  Edgard Lima  <edgard.lima@indt.org.br>
8178
8179         * ext/metadata/metadataexif.c:
8180         * ext/metadata/metadataiptc.c:
8181         * ext/metadata/metadatatags.c:
8182         * ext/metadata/metadatatags.h:
8183         * ext/metadata/metadataxmp.c:
8184           Added some tags to exif parser.
8185
8186 2007-12-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8187
8188         * gst/mpegtsparse/mpegtspacketizer.c:
8189         * gst/mpegtsparse/mpegtsparse.c:
8190         A sub table is identified by the pair table_id and 
8191         sub_table_identifier, not by pid. So hash with that.
8192         * sys/dvb/dvbbasebin.c:
8193         Make sure initial pids are added properly to filter,
8194
8195 2007-12-05  Andy Wingo  <wingo@pobox.com>
8196
8197         * gst/switch/gstswitch.c (gst_switch_set_property): Don't push
8198         buffers from app thread when unsetting `queue-buffers', it's
8199         dangerous and the chain function will do it for us anyway.
8200
8201 2007-12-04  Edgard Lima  <edgard.lima@indt.org.br>
8202
8203         * ext/metadata/metadatamuxjpeg.c: (metadatamux_wrap_chunk),
8204         (metadatamux_jpeg_lazy_update):
8205         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_parse),
8206         (metadataparse_jpeg_reading):
8207           Now compiles even when libiptc is missing.
8208
8209 2007-12-04  Edgard Lima  <edgard.lima@indt.org.br>
8210
8211         * ext/metadata/gstmetadatamux.c:
8212         * ext/metadata/gstmetadatamux.h:
8213         * ext/metadata/gstmetadataparse.c:
8214         * ext/metadata/gstmetadataparse.h:
8215         * ext/metadata/metadata.c:
8216         * ext/metadata/metadata.h:
8217         * ext/metadata/metadatamuxjpeg.c:
8218         * ext/metadata/metadatamuxjpeg.h:
8219         * ext/metadata/metadatamuxpng.c:
8220         * ext/metadata/metadatamuxpng.h:
8221           Fixed element properties and now muxer writes to png also.
8222
8223 2007-12-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8224
8225         * gst/mpegtsparse/Makefile.am:
8226         * gst/mpegtsparse/mpegtspacketizer.c:
8227         * gst/mpegtsparse/mpegtsparse.c:
8228         Remove signals for pat, pmt, nit, eit, sdt. Replace with bus
8229         messages.
8230         * sys/dvb/dvbbasebin.c:
8231         Instead of attaching to signals, use the bus messages.
8232         Also fix up so the dvbsrc starts only outputting the info tables
8233         like PAT, CAT, NIT, SDT, EIT instead of the whole ts.
8234
8235 2007-12-03  Edgard Lima  <edgard.lima@indt.org.br>
8236
8237         * ext/metadata/gstmetadatamux.c:
8238         * ext/metadata/gstmetadatamux.h:
8239         * ext/metadata/metadataexif.c:
8240         * ext/metadata/metadataexif.h:
8241         * ext/metadata/metadataiptc.c:
8242         * ext/metadata/metadataiptc.h:
8243         * ext/metadata/metadatamuxjpeg.c:
8244         * ext/metadata/metadataxmp.c:
8245         * ext/metadata/metadataxmp.h:
8246           Muxer writes (in jpeg only) whole IPTC chunk sent as tag. Muxer
8247           implemets GstTagSetter interface.
8248
8249 2007-12-03  Thijs Vermeir  <thijsvermeir@gmail.com>
8250
8251         * gst/librfb/rfbdecoder.c:
8252                 Should fix the 64-bit build
8253
8254 2007-11-30  Edgard Lima  <edgard.lima@indt.org.br>
8255
8256         * ext/metadata/gstmetadatamux.c:
8257         * ext/metadata/gstmetadatamux.h:
8258         * ext/metadata/gstmetadataparse.c:
8259         * ext/metadata/gstmetadataparse.h:
8260         * ext/metadata/metadataexif.c:
8261         * ext/metadata/metadataexif.h:
8262         * ext/metadata/metadataiptc.c:
8263         * ext/metadata/metadataiptc.h:
8264         * ext/metadata/metadatamuxjpeg.c:
8265         * ext/metadata/metadatamuxpng.c:
8266         * ext/metadata/metadataparsejpeg.c:
8267         * ext/metadata/metadataparsepng.c:
8268         * ext/metadata/metadataxmp.c:
8269         * ext/metadata/metadataxmp.h:
8270           Muxer writes (in jpeg only) whole EXIF and XMP chunks sent as tags.
8271
8272 2007-11-30  Thijs Vermeir  <thijsvermeir@gmail.com>
8273
8274         * gst/librfb/rfbdecoder.c:
8275         * gst/librfb/rfbdecoder.h:
8276                 Add CoRRE encoding
8277
8278 2007-11-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8279
8280         * gst/mpegtsparse/mpegtsparse.c:
8281         CRC check the psi pids. CRC checking code relicenced from MPL.
8282         Thanks Fluendo.
8283
8284 2007-11-30  Edgard Lima  <edgard.lima@indt.org.br>
8285
8286         * ext/metadata/Makefile.am:
8287         * ext/metadata/gstmetadatamux.c:
8288         * ext/metadata/gstmetadatamux.h:
8289         * ext/metadata/gstmetadataparse.c:
8290         * ext/metadata/metadata.c:
8291         * ext/metadata/metadata.h:
8292         * ext/metadata/metadatamuxjpeg.c:
8293         * ext/metadata/metadatamuxjpeg.h:
8294         * ext/metadata/metadatamuxpng.c:
8295         * ext/metadata/metadatamuxpng.h:
8296         * ext/metadata/metadataparsejpeg.c:
8297         * ext/metadata/metadataparsejpeg.h:
8298         * ext/metadata/metadataparsepng.c:
8299         * ext/metadata/metadataparsepng.h:
8300         * ext/metadata/metadatatypes.c:
8301         * ext/metadata/metadatatypes.h:
8302           Fixed get_range bug when injecting and stripping. And mux is almost
8303           done now.
8304
8305 2007-11-30  Thijs Vermeir  <thijsvermeir@gmail.com>
8306
8307         * gst/librfb/rfbdecoder.c:
8308                 Use glib macro for swapping
8309
8310 2007-11-29  Thijs Vermeir  <thijsvermeir@gmail.com>
8311
8312         * gst/librfb/gstrfbsrc.c:
8313         * gst/librfb/rfbdecoder.c:
8314         * gst/librfb/rfbdecoder.h:
8315                 Disable CopyRect encoding by default
8316                 Add RRE encoding
8317
8318 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
8319
8320         Patch by: Wouter Cloetens <wouter at mind dot be>
8321
8322         * configure.ac:
8323         Bump libsoup requirement as libsoup does not support async client
8324         operation prior to version 2.2.104 and it has some leaks.
8325
8326         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
8327         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
8328         (gst_souphttp_src_set_property), (gst_souphttp_src_create),
8329         (gst_souphttp_src_start), (gst_souphttp_src_stop),
8330         (gst_souphttp_src_unlock), (gst_souphttp_src_unlock_stop),
8331         (gst_souphttp_src_get_size), (soup_got_headers), (soup_got_body),
8332         (soup_finished), (soup_got_chunk), (soup_response),
8333         (soup_session_close):
8334         * ext/soup/gstsouphttpsrc.h:
8335         Implement unlock().
8336         Picks up the size from the Content-Length header and emit a duration
8337         message.
8338         Don't leak the GMainContext object.
8339         Fixes #500099.
8340
8341 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
8342
8343         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_set_caps),
8344         (alsaspdifsink_get_time), (alsaspdifsink_set_params),
8345         (alsaspdifsink_find_pcm_device):
8346         Don't free uninitialized data when we are in error.
8347
8348 2007-11-28  Edgard Lima  <edgard.lima@indt.org.br>
8349
8350         * ext/metadata/gstmetadatamux.c:
8351         * ext/metadata/gstmetadataparse.c:
8352         * ext/metadata/metadataexif.c:
8353         * ext/metadata/metadataexif.h:
8354         * ext/metadata/metadataiptc.c:
8355         * ext/metadata/metadataiptc.h:
8356         * ext/metadata/metadatatags.c:
8357         * ext/metadata/metadatatags.h:
8358         * ext/metadata/metadataxmp.c:
8359         * ext/metadata/metadataxmp.h:
8360           Sending make and model individual tags and muxer now links fine.
8361
8362 2007-11-28  Edgard Lima  <edgard.lima@indt.org.br>
8363
8364         * ext/metadata/Makefile.am:
8365         * ext/metadata/gstmetadata.c:
8366         * ext/metadata/gstmetadatamux.c:
8367         * ext/metadata/gstmetadatamux.h:
8368         * ext/metadata/gstmetadataparse.c:
8369         * ext/metadata/gstmetadataparse.h:
8370         * ext/metadata/metadata.c:
8371         * ext/metadata/metadata.h:
8372         * ext/metadata/metadataexif.c:
8373         * ext/metadata/metadataexif.h:
8374         * ext/metadata/metadataiptc.c:
8375         * ext/metadata/metadataiptc.h:
8376         * ext/metadata/metadataparse.c:
8377         * ext/metadata/metadataparse.h:
8378         * ext/metadata/metadataparseexif.c:
8379         * ext/metadata/metadataparseexif.h:
8380         * ext/metadata/metadataparseiptc.c:
8381         * ext/metadata/metadataparseiptc.h:
8382         * ext/metadata/metadataparsexmp.c:
8383         * ext/metadata/metadataparsexmp.h:
8384         * ext/metadata/metadatatags.c:
8385         * ext/metadata/metadatatags.h:
8386         * ext/metadata/metadataxmp.c:
8387         * ext/metadata/metadataxmp.h:
8388           Small fixes in get_range and better structure for generic muxer and
8389           demuxer.
8390
8391 2007-11-26  Julien Moutte  <julien@fluendo.com>
8392
8393         * configure.ac: Add QuickTime Wrapper plug-in.
8394         * gst/speexresample/gstspeexresample.c:
8395         (gst_speex_resample_push_drain), (gst_speex_resample_process): Fix
8396         build on Mac OS X Leopard. Incorrect printf format arguments.
8397         * sys/Makefile.am:
8398         * sys/qtwrapper/Makefile.am:
8399         * sys/qtwrapper/audiodecoders.c:
8400         (qtwrapper_audio_decoder_base_init),
8401         (qtwrapper_audio_decoder_class_init),
8402         (qtwrapper_audio_decoder_init),
8403         (clear_AudioStreamBasicDescription), (fill_indesc_mp3),
8404         (fill_indesc_aac), (fill_indesc_samr), (fill_indesc_generic),
8405         (make_samr_magic_cookie), (open_decoder),
8406         (qtwrapper_audio_decoder_sink_setcaps), (process_buffer_cb),
8407         (qtwrapper_audio_decoder_chain),
8408         (qtwrapper_audio_decoder_sink_event),
8409         (qtwrapper_audio_decoders_register):
8410         * sys/qtwrapper/codecmapping.c: (audio_caps_from_string),
8411         (fourcc_to_caps):
8412         * sys/qtwrapper/codecmapping.h:
8413         * sys/qtwrapper/imagedescription.c: (image_description_for_avc1),
8414         (image_description_for_mp4v), (image_description_from_stsd_buffer),
8415         (image_description_from_codec_data):
8416         * sys/qtwrapper/imagedescription.h:
8417         * sys/qtwrapper/qtutils.c: (get_name_info_from_component),
8418         (get_output_info_from_component), (dump_avcc_atom),
8419         (dump_image_description), (dump_codec_decompress_params),
8420         (addSInt32ToDictionary), (dump_cvpixel_buffer),
8421         (DestroyAudioBufferList), (AllocateAudioBufferList):
8422         * sys/qtwrapper/qtutils.h:
8423         * sys/qtwrapper/qtwrapper.c: (plugin_init):
8424         * sys/qtwrapper/qtwrapper.h:
8425         * sys/qtwrapper/videodecoders.c:
8426         (qtwrapper_video_decoder_base_init),
8427         (qtwrapper_video_decoder_class_init),
8428         (qtwrapper_video_decoder_init), (qtwrapper_video_decoder_finalize),
8429         (fill_image_description), (new_image_description), (close_decoder),
8430         (open_decoder), (qtwrapper_video_decoder_sink_setcaps),
8431         (decompressCb), (qtwrapper_video_decoder_chain),
8432         (qtwrapper_video_decoder_sink_event),
8433         (qtwrapper_video_decoders_register): Initial import of QuickTime
8434         wrapper jointly developped by Songbird authors (Pioneers of the
8435         Inevitable) and Fluendo.
8436
8437 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
8438
8439         * gst/spectrum/gstspectrum.c:
8440           Use dispose and finalize. Dispose can be called multiple times.
8441
8442 2007-11-26  Edgard Lima  <edgard.lima@indt.org.br>
8443
8444         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_init),
8445         (gst_metadata_parse_chain), (gst_metadata_parse_checkgetrange):
8446           Now works when get_range is not available upstream.
8447
8448 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
8449
8450         * gst/speexresample/README:
8451         * gst/speexresample/arch.h:
8452         * gst/speexresample/resample.c: (resampler_basic_direct_single),
8453         (resampler_basic_direct_double),
8454         (resampler_basic_interpolate_single),
8455         (resampler_basic_interpolate_double),
8456         (speex_resampler_process_native), (speex_resampler_process_float),
8457         (speex_resampler_process_int),
8458         (speex_resampler_process_interleaved_float),
8459         (speex_resampler_process_interleaved_int),
8460         (speex_resampler_get_input_latency),
8461         (speex_resampler_get_output_latency):
8462         * gst/speexresample/speex_resampler.h:
8463         Update speex resampler to latest SVN. We're now down to only the
8464         changes noted in README again.
8465
8466         * gst/speexresample/speex_resampler_wrapper.h:
8467         * gst/speexresample/gstspeexresample.c:
8468         (gst_speex_resample_push_drain), (gst_speex_resample_query):
8469         Adjust to API changes.
8470
8471 2007-11-25  Edward Hervey  <bilboed@bilboed.com>
8472
8473         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8474         (gst_flv_parse_tag_video):
8475         Output segment with proper 'stop' value, makes flvdemux 100% compatible
8476         with gnonlin.
8477
8478 2007-11-25  Stefan Kost  <ensonic@users.sf.net>
8479
8480         * ext/dc1394/gstdc1394.c:
8481           Set initial structure name to fix assertion, due to recent caps name
8482           constraints.
8483
8484 2007-11-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
8485
8486         patch by: Alessandro Decina
8487
8488         * gst/mpegtsparse/mpegtspacketizer.c:
8489         * gst/mpegtsparse/mpegtspacketizer.h:
8490         * gst/mpegtsparse/mpegtsparse.c:
8491         * gst/mpegtsparse/mpegtsparse.h:
8492         pat-info is now a signal not a GObject property that
8493         gets notified.
8494         pat-info, pmt-info now instead of passing a GObject as
8495         a parameter, pass a GstStructure.
8496         New signals: nit-info, sdt-info, eit-info for DVB SI information
8497         * sys/dvb/camconditionalaccess.c:
8498         * sys/dvb/camconditionalaccess.h:
8499         * sys/dvb/camdevice.c:
8500         * sys/dvb/camdevice.h:
8501         * sys/dvb/camswclient.c:
8502         * sys/dvb/camswclient.h:
8503         * sys/dvb/camutils.c:
8504         * sys/dvb/camutils.h:
8505         Cam code now uses the pmt GstStructure passed from mpegtsparse
8506         signals rather than the GObject.
8507         * sys/dvb/dvbbasebin.c:
8508         Use new signals in mpegtsparse and use GstStructures as per
8509         mpegtsparse's modified API.
8510         
8511 2007-11-23  Edgard Lima  <edgard.lima@indt.org.br>
8512
8513         * ext/metadata/Makefile.am:
8514         * ext/metadata/gstmetadata.c:
8515         * ext/metadata/gstmetadatamux.c:
8516         * ext/metadata/gstmetadatamux.h:
8517         * ext/metadata/gstmetadataparse.c:
8518         * ext/metadata/gstmetadataparse.h:
8519         * ext/metadata/metadataparse.c:
8520         * ext/metadata/metadataparse.h:
8521         * ext/metadata/metadataparsejpeg.c:
8522         * ext/metadata/metadataparsejpeg.h:
8523         * ext/metadata/metadataparsepng.c:
8524         * ext/metadata/metadataparsepng.h:
8525         * ext/metadata/metadataparsetypes.h:
8526         * ext/metadata/metadatatypes.c:
8527         * ext/metadata/metadatatypes.h:
8528           Now parser is generic (just add/remove a list of chunks). And a
8529           template of muxer has been created.
8530
8531 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8532
8533         * gst/speexresample/gstspeexresample.c:
8534         (gst_speex_resample_update_state):
8535         Only post the latency message if we have a resampler state already.
8536
8537 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8538
8539         * gst/speexresample/gstspeexresample.c:
8540         (gst_speex_resample_update_state):
8541         Also post GST_MESSAGE_LATENCY if the latency changes.
8542
8543 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8544
8545         * gst/speexresample/resample.c: (speex_resampler_get_latency),
8546         (speex_resampler_drain_float), (speex_resampler_drain_int),
8547         (speex_resampler_drain_interleaved_float),
8548         (speex_resampler_drain_interleaved_int):
8549         * gst/speexresample/speex_resampler.h:
8550         * gst/speexresample/speex_resampler_wrapper.h:
8551         Add functions to push the remaining samples and to get the latency
8552         of the resampler. These will get added to Speex SVN in this or a
8553         slightly changed form at some point too and should get merged then
8554         again.
8555
8556         * gst/speexresample/gstspeexresample.c: (gst_speex_resample_init),
8557         (gst_speex_resample_init_state),
8558         (gst_speex_resample_transform_size),
8559         (gst_speex_resample_push_drain), (gst_speex_resample_event),
8560         (gst_speex_fix_output_buffer), (gst_speex_resample_process),
8561         (gst_speex_resample_query), (gst_speex_resample_query_type):
8562         Drop the prepending zeroes and output the remaining samples on EOS.
8563         Also properly implement the latency query for this. speexresample
8564         should be completely ready for production use now.
8565
8566 2007-11-22  Wim Taymans  <wim.taymans@gmail.com>
8567
8568         * gst/rtpmanager/gstrtpjitterbuffer.c:
8569         (gst_rtp_jitter_buffer_query):
8570         jitterbuffer can buffer an unlimited amount of time and thus has no
8571         max_latency requirements.
8572
8573 2007-11-21  Sebastian Dröge  <slomo@circular-chaos.org>
8574
8575         * gst/speexresample/README:
8576         Add README explaining where the resampling code was taken from
8577         and which changes were done.
8578
8579         * gst/speexresample/resample.c: (speex_alloc), (speex_realloc),
8580         (speex_free):
8581         Use g_malloc() and friends instead of malloc() to achieve higher
8582         portability and define the functions inline.
8583
8584         * gst/speexresample/speex_resampler.h:
8585         Add back some useless preprocessor stuff to keep the diff between
8586         our version and the one from the Speex SVN repository lower.
8587
8588 2007-11-21  Sebastian Dröge  <slomo@circular-chaos.org>
8589
8590         * gst/filter/gstbpwsinc.c: (bpwsinc_set_property):
8591         * gst/filter/gstlpwsinc.c: (lpwsinc_set_property):
8592         Post a GST_MESSAGE_LATENCY if the latency changes.
8593
8594 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
8595
8596         * ext/faac/gstfaac.c: (gst_faac_sink_event):
8597         Don't try to flush the decoder on EOS when it was not initialized.
8598         Fixes #498667
8599
8600 2007-11-21  Julien Moutte  <julien@fluendo.com>
8601
8602         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_write): Fix build
8603         on Mac OS X. (missing format parameter)
8604
8605 2007-11-21  Stefan Kost  <ensonic@users.sf.net>
8606
8607         * gst/equalizer/gstiirequalizer10bands.c:
8608         * gst/equalizer/gstiirequalizer3bands.c:
8609           Remove preset iface again. We'll re-add this after its been released
8610           in -good.
8611
8612 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8613
8614         * gst/speexresample/gstspeexresample.c:
8615         (gst_speex_fix_output_buffer), (gst_speex_resample_transform):
8616         Some small cleanup and addition of a TODO item.
8617
8618 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8619
8620         * gst/speexresample/Makefile.am:
8621         Add missing file.
8622
8623 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8624
8625         * docs/plugins/inspect/plugin-app.xml:
8626         * docs/plugins/inspect/plugin-bayer.xml:
8627         * docs/plugins/inspect/plugin-cdaudio.xml:
8628         * docs/plugins/inspect/plugin-dvb.xml:
8629         * docs/plugins/inspect/plugin-dvbsrc.xml:
8630         * docs/plugins/inspect/plugin-dvdspu.xml:
8631         * docs/plugins/inspect/plugin-festival.xml:
8632         * docs/plugins/inspect/plugin-flvdemux.xml:
8633         * docs/plugins/inspect/plugin-gstinterlace.xml:
8634         * docs/plugins/inspect/plugin-interleave.xml:
8635         * docs/plugins/inspect/plugin-ladspa.xml:
8636         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
8637         * docs/plugins/inspect/plugin-mpegtsparse.xml:
8638         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
8639         * docs/plugins/inspect/plugin-mve.xml:
8640         * docs/plugins/inspect/plugin-nas.xml:
8641         * docs/plugins/inspect/plugin-nuvdemux.xml:
8642         * docs/plugins/inspect/plugin-quicktime.xml:
8643         * docs/plugins/inspect/plugin-real.xml:
8644         * docs/plugins/inspect/plugin-rfbsrc.xml:
8645         * docs/plugins/inspect/plugin-sdp.xml:
8646         * docs/plugins/inspect/plugin-sndfile.xml:
8647         * docs/plugins/inspect/plugin-soup.xml:
8648         * docs/plugins/inspect/plugin-speexresample.xml:
8649         * docs/plugins/inspect/plugin-stereo.xml:
8650         * docs/plugins/inspect/plugin-switch.xml:
8651         * docs/plugins/inspect/plugin-vcdsrc.xml:
8652         * docs/plugins/inspect/plugin-videocrop.xml:
8653         * docs/plugins/inspect/plugin-videoparse.xml:
8654         * docs/plugins/inspect/plugin-vmnc.xml:
8655         * docs/plugins/inspect/plugin-x264.xml:
8656         * docs/plugins/inspect/plugin-y4menc.xml:
8657         Add missing inspection files to CVS.
8658
8659 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8660
8661         * docs/plugins/Makefile.am:
8662         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
8663         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
8664         * docs/plugins/gst-plugins-bad-plugins.args:
8665         * docs/plugins/gst-plugins-bad-plugins.signals:
8666         * docs/plugins/inspect/plugin-bz2.xml:
8667         * docs/plugins/inspect/plugin-cdxaparse.xml:
8668         * docs/plugins/inspect/plugin-dtsdec.xml:
8669         * docs/plugins/inspect/plugin-equalizer.xml:
8670         * docs/plugins/inspect/plugin-faac.xml:
8671         * docs/plugins/inspect/plugin-faad.xml:
8672         * docs/plugins/inspect/plugin-filter.xml:
8673         * docs/plugins/inspect/plugin-freeze.xml:
8674         * docs/plugins/inspect/plugin-gio.xml:
8675         * docs/plugins/inspect/plugin-gsm.xml:
8676         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
8677         * docs/plugins/inspect/plugin-h264parse.xml:
8678         * docs/plugins/inspect/plugin-modplug.xml:
8679         * docs/plugins/inspect/plugin-mpeg2enc.xml:
8680         * docs/plugins/inspect/plugin-musepack.xml:
8681         * docs/plugins/inspect/plugin-musicbrainz.xml:
8682         * docs/plugins/inspect/plugin-nsfdec.xml:
8683         * docs/plugins/inspect/plugin-replaygain.xml:
8684         * docs/plugins/inspect/plugin-soundtouch.xml:
8685         * docs/plugins/inspect/plugin-spcdec.xml:
8686         * docs/plugins/inspect/plugin-spectrum.xml:
8687         * docs/plugins/inspect/plugin-speed.xml:
8688         * docs/plugins/inspect/plugin-tta.xml:
8689         * docs/plugins/inspect/plugin-videosignal.xml:
8690         * docs/plugins/inspect/plugin-xingheader.xml:
8691         * docs/plugins/inspect/plugin-xvid.xml:
8692         * gst/speexresample/gstspeexresample.h:
8693         Add speexresample to the docs and while at that do a make update.
8694
8695 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8696
8697         * gst/speexresample/gstspeexresample.c:
8698         (gst_speex_fix_output_buffer), (gst_speex_resample_process):
8699         If the resampler gives less output samples than expected
8700         adjust the output buffer and print a warning.
8701
8702 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8703
8704         * configure.ac:
8705         * gst/speexresample/arch.h:
8706         * gst/speexresample/fixed_generic.h:
8707         * gst/speexresample/gstspeexresample.c:
8708         (gst_speex_resample_base_init), (gst_speex_resample_class_init),
8709         (gst_speex_resample_init), (gst_speex_resample_start),
8710         (gst_speex_resample_stop), (gst_speex_resample_get_unit_size),
8711         (gst_speex_resample_transform_caps),
8712         (gst_speex_resample_init_state), (gst_speex_resample_update_state),
8713         (gst_speex_resample_reset_state), (gst_speex_resample_parse_caps),
8714         (gst_speex_resample_transform_size), (gst_speex_resample_set_caps),
8715         (gst_speex_resample_event), (gst_speex_resample_check_discont),
8716         (gst_speex_resample_process), (gst_speex_resample_transform),
8717         (gst_speex_resample_set_property),
8718         (gst_speex_resample_get_property), (plugin_init):
8719         * gst/speexresample/gstspeexresample.h:
8720         * gst/speexresample/resample.c: (speex_alloc), (speex_realloc),
8721         (speex_free), (compute_func), (main), (sinc), (cubic_coef),
8722         (resampler_basic_direct_single), (resampler_basic_direct_double),
8723         (resampler_basic_interpolate_single),
8724         (resampler_basic_interpolate_double), (update_filter),
8725         (speex_resampler_init), (speex_resampler_init_frac),
8726         (speex_resampler_destroy), (speex_resampler_process_native),
8727         (speex_resampler_process_float), (speex_resampler_process_int),
8728         (speex_resampler_process_interleaved_float),
8729         (speex_resampler_process_interleaved_int),
8730         (speex_resampler_set_rate), (speex_resampler_get_rate),
8731         (speex_resampler_set_rate_frac), (speex_resampler_get_ratio),
8732         (speex_resampler_set_quality), (speex_resampler_get_quality),
8733         (speex_resampler_set_input_stride),
8734         (speex_resampler_get_input_stride),
8735         (speex_resampler_set_output_stride),
8736         (speex_resampler_get_output_stride), (speex_resampler_skip_zeros),
8737         (speex_resampler_reset_mem), (speex_resampler_strerror):
8738         * gst/speexresample/speex_resampler.h:
8739         * gst/speexresample/speex_resampler_float.c:
8740         * gst/speexresample/speex_resampler_int.c:
8741         * gst/speexresample/speex_resampler_wrapper.h:
8742         Add resample element based on the Speex resampling algorithm.
8743
8744 2007-11-20  Edgard Lima  <edgard.lima@indt.org.br>
8745
8746         * ext/metadata/gstmetadataparse.c:
8747         * ext/metadata/gstmetadataparse.h:
8748           Fixed buffer strip (safer wil pull and after seek).
8749
8750 2007-11-19  Stefan Kost  <ensonic@users.sf.net>
8751
8752         * gst/equalizer/gstiirequalizer10bands.c:
8753         * gst/equalizer/gstiirequalizer3bands.c:
8754           Activate preset iface and upload two presets here.
8755
8756 2007-11-19  Edgard Lima  <edgard.lima@indt.org.br>
8757
8758         * ext/metadata/gstmetadataparse.c:
8759         * ext/metadata/gstmetadataparse.h:
8760           Strip out in pull mode also. Seek and Query functions added.
8761
8762 2007-11-18  Edgard Lima  <edgard.lima@indt.org.br>
8763
8764         * ext/metadata/gstmetadataparse.c:
8765         * ext/metadata/gstmetadataparse.h:
8766         * ext/metadata/metadataparse.c:
8767         * ext/metadata/metadataparse.h:
8768         * ext/metadata/metadataparsejpeg.c:
8769         * ext/metadata/metadataparsejpeg.h:
8770         * ext/metadata/metadataparsepng.c:
8771         * ext/metadata/metadataparsepng.h:
8772         * ext/metadata/metadataparsetypes.h:
8773           Strip out metadata chunks.
8774
8775 2007-11-16  Stefan Kost  <ensonic@users.sf.net>
8776
8777         * configure.ac:
8778           Als use AG_GST_PLUGIN_DOCS (see #344039).
8779
8780 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8781
8782         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
8783
8784         * gst/mpegtsparse/mpegtspacketizer.c: (foreach_stream_clear),
8785         (remove_all), (mpegts_packetizer_clear):
8786         Ensure that the plugin does not crash when the property pat-info is
8787         queried before a PAT is available. It also ensures that the PAT info is
8788         cleared when the changing from PLAYING to READY.
8789         Fixes #487892.
8790
8791 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8792
8793         Patch by: Wouter Paesen <wouter at blue-gate dot be>
8794
8795         * ext/soundtouch/gstpitch.cc:
8796         Handle seeking correctly. Fixes #461068.
8797
8798 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8799
8800         Patch by: Michael Kötter <m dot koetter at oraise dot de>
8801
8802         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_set_caps),
8803         (alsaspdifsink_get_time), (alsaspdifsink_open),
8804         (alsaspdifsink_set_params), (alsaspdifsink_delay), (plugin_init):
8805         Fix sample rate and clocking.
8806         Remove buffer_time and period_time as this seems to break on some
8807         hardware. Fixes #485462.
8808
8809 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8810
8811         Patch by: Wouter Cloetens <wouter at mind dot be>
8812
8813         * configure.ac:
8814         * ext/Makefile.am:
8815         * ext/soup/Makefile.am:
8816         * ext/soup/gstsouphttpsrc.c: (_do_init),
8817         (gst_souphttp_src_base_init), (gst_souphttp_src_class_init),
8818         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
8819         (gst_souphttp_src_set_property), (gst_souphttp_src_get_property),
8820         (gst_souphttp_src_create), (gst_souphttp_src_start),
8821         (gst_souphttp_src_stop), (gst_souphttp_src_unlock),
8822         (gst_souphttp_src_set_location), (soup_got_chunk), (soup_response),
8823         (soup_session_close), (plugin_init):
8824         * ext/soup/gstsouphttpsrc.h:
8825         Added HTTP source based on libsoup. Fixes #497020.
8826
8827 2007-11-15  Thijs Vermeir  <thijsvermeir@gmail.com>
8828
8829         * gst/librfb/gstrfbsrc.c:
8830         don't forget to handle the offset's
8831         * gst/librfb/rfbdecoder.c:
8832         * gst/librfb/rfbdecoder.h:
8833         precalculate some many used values
8834
8835 2007-11-15  Thijs Vermeir  <thijsvermeir@gmail.com>
8836
8837         patch by: Armando Taffarel Neto <taffarel@solis.coop.br>
8838         * gst/librfb/gstrfbsrc.c:
8839         Set the timestamp for the output buffers
8840
8841 2007-11-14  Sebastian Dröge  <slomo@circular-chaos.org>
8842
8843         * tests/check/elements/spectrum.c: (GST_START_TEST):
8844         Fix spectrum unit test for the latest spectrum changes.
8845
8846 2007-11-12  Sebastian Dröge  <slomo@circular-chaos.org>
8847
8848         Patch by: René Stadler <mail at renestadler dot de>
8849
8850         * gst/replaygain/rganalysis.c: (yule_filter):
8851         Avoid slowdown from denormals when processing near-silence input data.
8852         Spotted by Gabriel Bouvigne. Fixes #494499.
8853
8854 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
8855
8856         * gst/flv/gstflvparse.c:
8857         Add mapping for Nellymoser ASAO audio codec.
8858         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Make sure we
8859         actually have data to read at the end of the tag. This avoids trying
8860         to allocate negative buffers.
8861
8862 2007-11-12  Edgard Lima  <edgard.lima@indt.org.br>
8863
8864         * ext/metadata/README:
8865           Added a design proposal from metadata parse and mux.
8866
8867 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8868
8869         * gst/equalizer/demo.c: (draw_spectrum):
8870         * gst/spectrum/demo-audiotest.c: (draw_spectrum):
8871         * gst/spectrum/demo-osssrc.c: (draw_spectrum):
8872         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
8873         Change the meaning of the magnitude values given in the
8874         GstMessages by spectrum to decibel instead of
8875         decibel+threshold.
8876
8877 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8878
8879         * gst/equalizer/gstiirequalizer10bands.c:
8880         * gst/equalizer/gstiirequalizer3bands.c:
8881         * gst/equalizer/gstiirequalizernbands.c:
8882         And continue to update docs. Also include some sample code
8883         for the n-band equalizer in the docs.
8884
8885 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8886
8887         * gst/equalizer/gstiirequalizer10bands.c:
8888         (gst_iir_equalizer_10bands_class_init):
8889         * gst/equalizer/gstiirequalizer3bands.c:
8890         (gst_iir_equalizer_3bands_class_init):
8891         * gst/equalizer/gstiirequalizernbands.c:
8892         Update docs and property ranges to the real values.
8893
8894 2007-11-09  Sebastian Dröge  <slomo@circular-chaos.org>
8895
8896         * gst/spectrum/gstspectrum.c:
8897         Now do the scaling right for real. Also initialize a previously
8898         uninitialized variable.
8899
8900 2007-11-09  Edgard Lima  <edgard.lima@indt.org.br>
8901
8902         * ext/metadata/metadataparsexmp.c:
8903         (metadataparse_xmp_tag_list_add),
8904         (metadataparse_xmp_iter_simple_qual),
8905         (metadataparse_xmp_iter_simple), (metadataparse_xmp_iter_array),
8906         (metadataparse_xmp_iter):
8907           Extracting more detailed info from XMP.
8908
8909 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
8910
8911         * gst/equalizer/demo.c:
8912           Make default volume a bit less. Improve layout by giving more space to
8913           the slider with big-numbers and enable fill.
8914
8915 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8916
8917         * configure.ac:
8918         * tests/check/pipelines/gio.c: (GST_START_TEST):
8919         Require GIO >= 0.1.2 and adjust unit test for an API change.
8920
8921 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8922
8923         * tests/icles/equalizer-test.c: (do_slider_fiddling):
8924         Fix gain ranges for the latest equalizer changes.
8925
8926 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8927
8928         * ext/gio/gstgio.h:
8929         Add macro to check if a stream supports seeking.
8930
8931         * ext/gio/Makefile.am:
8932         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_base_init),
8933         (gst_gio_base_sink_class_init), (gst_gio_base_sink_init),
8934         (gst_gio_base_sink_finalize), (gst_gio_base_sink_start),
8935         (gst_gio_base_sink_stop), (gst_gio_base_sink_unlock),
8936         (gst_gio_base_sink_unlock_stop), (gst_gio_base_sink_event),
8937         (gst_gio_base_sink_render), (gst_gio_base_sink_query),
8938         (gst_gio_base_sink_set_stream):
8939         * ext/gio/gstgiobasesink.h:
8940         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_base_init),
8941         (gst_gio_base_src_class_init), (gst_gio_base_src_init),
8942         (gst_gio_base_src_finalize), (gst_gio_base_src_start),
8943         (gst_gio_base_src_stop), (gst_gio_base_src_get_size),
8944         (gst_gio_base_src_is_seekable), (gst_gio_base_src_unlock),
8945         (gst_gio_base_src_unlock_stop), (gst_gio_base_src_check_get_range),
8946         (gst_gio_base_src_create), (gst_gio_base_src_set_stream):
8947         * ext/gio/gstgiobasesrc.h:
8948         Refactor common GIO functions to GstGioBaseSink and GstGioBaseSrc
8949         base classes that only require a GInputStream or GOutputStream to
8950         work.
8951
8952         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
8953         (gst_gio_sink_class_init), (gst_gio_sink_init),
8954         (gst_gio_sink_finalize), (gst_gio_sink_start):
8955         * ext/gio/gstgiosink.h:
8956         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
8957         (gst_gio_src_class_init), (gst_gio_src_init),
8958         (gst_gio_src_finalize), (gst_gio_src_start):
8959         * ext/gio/gstgiosrc.h:
8960         Use the newly created base classes here.
8961
8962         * ext/gio/gstgio.c: (plugin_init):
8963         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_base_init),
8964         (gst_gio_stream_sink_class_init), (gst_gio_stream_sink_init),
8965         (gst_gio_stream_sink_finalize), (gst_gio_stream_sink_set_property),
8966         (gst_gio_stream_sink_get_property):
8967         * ext/gio/gstgiostreamsink.h:
8968         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_base_init),
8969         (gst_gio_stream_src_class_init), (gst_gio_stream_src_init),
8970         (gst_gio_stream_src_finalize), (gst_gio_stream_src_set_property),
8971         (gst_gio_stream_src_get_property):
8972         * ext/gio/gstgiostreamsrc.h:
8973         Implement GstGioStreamSink and GstGioStreamSrc that have a property
8974         to set the GInputStream/GOutputStream that should be used.
8975
8976         * tests/check/Makefile.am:
8977         * tests/check/pipelines/.cvsignore:
8978         * tests/check/pipelines/gio.c: (message_handler), (GST_START_TEST),
8979         (gio_testsuite), (main):
8980         Add unit test for giostreamsrc and giostreamsink.
8981
8982 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8983
8984         * ext/gio/gstgio.c: (plugin_init):
8985         Remove nowadays unnecessary workaround for a crash.
8986         
8987         * ext/gio/gstgiosink.c: (gst_gio_sink_finalize),
8988         (gst_gio_sink_start), (gst_gio_sink_stop),
8989         (gst_gio_sink_unlock_stop):
8990         * ext/gio/gstgiosink.h:
8991         * ext/gio/gstgiosrc.c: (gst_gio_src_finalize), (gst_gio_src_start),
8992         (gst_gio_src_stop), (gst_gio_src_unlock_stop):
8993         * ext/gio/gstgiosrc.h:
8994         Make the finalize function safer, clean up everything that could stay
8995         around.
8996
8997         Reset the cancellable instead of creating a new one after cancelling
8998         some operation.
8999
9000         Don't store the GFile in the element, it's only necessary for creating
9001         the streams.
9002
9003 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
9004
9005         * gst/spectrum/demo-audiotest.c: (main):
9006         Use autoaudiosink instead of alsasink and use a sine wave.
9007
9008         * gst/spectrum/gstspectrum.c:
9009         Fix the magnitude calculation.
9010
9011 2007-11-04  Tim-Philipp Müller  <tim at centricular dot net>
9012
9013         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
9014
9015         * gst-libs/gst/dshow/gstdshowfakesink.cpp:
9016           (CDshowFakeSink.CDshowFakeSink):
9017         * gst-libs/gst/dshow/gstdshowfakesink.h: (CDshowFakeSink.m_hres):
9018           Fix crasher in constructor due to the base class's constructor
9019           not necessarily being NULL-safe (depends on the SDK version used
9020           apparently; #492406).
9021
9022         * sys/dshowsrcwrapper/gstdshowaudiosrc.c: (gst_dshowaudiosrc_prepare):
9023         * sys/dshowsrcwrapper/gstdshowvideosrc.c: (gst_dshowvideosrc_set_caps):
9024           Fix a couple of MSVC compiler warnings (#492406).
9025
9026 2007-11-03  Sebastian Dröge  <slomo@circular-chaos.org>
9027
9028         * gst/equalizer/demo.c: (main):
9029         * gst/equalizer/gstiirequalizer.c:
9030         (gst_iir_equalizer_band_class_init), (setup_filter):
9031         Allow setting 0 as bandwidth and handle this correctly.
9032         Also handle a bandwidth of rate/2 properly.
9033
9034         * gst/equalizer/gstiirequalizernbands.c:
9035         (gst_iir_equalizer_nbands_class_init):
9036         Make it possible to generate a N-band equalizer with 1 bands. The
9037         previous limit of 2 was caused by a nowadays replaced calculation
9038         doing a division by zero if number of bands was 1.
9039
9040 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
9041
9042         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
9043
9044         * gst/rtpmanager/gstrtpsession.c:
9045           Fix bad function signatures (#492798).
9046
9047 2007-11-02  Edgard Lima  <edgard.lima@indt.org.br>
9048
9049         * ext/metadata/Makefile.am:
9050         * ext/metadata/gstmetadataparse.c:
9051         * ext/metadata/gstmetadataparse.h:
9052         * ext/metadata/metadataparse.c:
9053         * ext/metadata/metadataparse.h:
9054         * ext/metadata/metadataparseexif.c:
9055         * ext/metadata/metadataparseexif.h:
9056         * ext/metadata/metadataparseiptc.c:
9057         * ext/metadata/metadataparseiptc.h:
9058         * ext/metadata/metadataparsejpeg.c:
9059         * ext/metadata/metadataparsejpeg.h:
9060         * ext/metadata/metadataparsepng.c:
9061         * ext/metadata/metadataparsepng.h:
9062         * ext/metadata/metadataparseutil.c:
9063         * ext/metadata/metadataparseutil.h:
9064         * ext/metadata/metadataparsexmp.c:
9065         * ext/metadata/metadataparsexmp.h:
9066           Added support for PNG/XMP. Indentation. And fixed pull mode to parse
9067           the file. 
9068
9069 2007-11-02  Edgard Lima  <edgard.lima@indt.org.br>
9070
9071         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_init),
9072         (gst_metadata_parse_activate), (gst_metadata_parse_get_range),
9073         (gst_metadata_parse_element_activate_src_pull):
9074           Now metadataparse works in push or pull mode.
9075
9076 2007-11-01  Edgard Lima  <edgard.lima@indt.org.br>
9077
9078         * configure.ac:
9079         * ext/metadata/Makefile.am:
9080         * ext/metadata/metadataparseexif.c:
9081         (metadataparse_exif_tags_register),
9082         (metadataparse_exif_tag_list_add):
9083         * ext/metadata/metadataparseiptc.c:
9084         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_init),
9085         (metadataparse_jpeg_dispose), (metadataparse_jpeg_parse),
9086         (metadataparse_jpeg_reading), (metadataparse_jpeg_xmp):
9087         * ext/metadata/metadataparseutil.c:
9088         (metadataparse_tag_list_add_chunk):
9089         * ext/metadata/metadataparseutil.h:
9090         * ext/metadata/metadataparsexmp.c:
9091         (metadataparse_xmp_tags_register),
9092         (metadataparse_xmp_tag_list_add), (metadataparse_xmp_init),
9093         (metadataparse_xmp_dispose):
9094         * ext/metadata/metadataparsexmp.h:
9095           Some XMP stuff added.
9096
9097 2007-10-31  Edgard Lima  <edgard.lima@indt.org.br>
9098
9099         * ext/metadata/gstmetadataparse.c:
9100         (gst_metadata_parse_dispose_members),
9101         (gst_metadata_parse_init_members), (gst_metadata_parse_send_tags),
9102         (gst_metadata_parse_chain), (gst_metadata_parse_get_range),
9103         (gst_metadata_parse_change_state),
9104         (gst_metadata_parse_plugin_init):
9105         * ext/metadata/gstmetadataparse.h:
9106         * ext/metadata/metadataparseexif.c:
9107         (metadataparse_exif_tags_register),
9108         (metadataparse_exif_tag_list_add),
9109         (exif_data_foreach_content_func),
9110         (exif_content_foreach_entry_func):
9111         * ext/metadata/metadataparseexif.h:
9112         * ext/metadata/metadataparseiptc.c:
9113         (metadataparse_iptc_tags_register),
9114         (metadataparse_tag_list_add_chunk),
9115         (metadataparse_iptc_tag_list_add),
9116         (iptc_data_foreach_dataset_func):
9117         * ext/metadata/metadataparseiptc.h:
9118         * ext/metadata/metadataparsexmp.c:
9119         (metadataparse_xmp_tags_register),
9120         (metadataparse_xmp_tag_list_add):
9121         * ext/metadata/metadataparsexmp.h:
9122           Now sending iptc tag in whole chunk. Ready to also send exif and xmp
9123           in the same way (look at bug #486659).
9124
9125 2007-10-31  Thijs Vermeir  <thijsvermeir@gmail.com>
9126
9127         * gst/librfb/rfbdecoder.c:
9128                 Some refactoring in RAW encoding
9129
9130 2007-10-31  Thijs Vermeir  <thijsvermeir@gmail.com>
9131
9132         * gst/librfb/d3des.h:
9133         * gst/librfb/gstrfbsrc.c:
9134         * gst/librfb/gstrfbsrc.h:
9135         * gst/librfb/rfbbuffer.h:
9136         * gst/librfb/rfbcontext.h:
9137         * gst/librfb/rfbdecoder.c:
9138         * gst/librfb/rfbdecoder.h:
9139         * gst/librfb/rfbutil.h:
9140         * gst/librfb/vncauth.h:
9141                 Added copyrect encoding
9142
9143 2007-10-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9144
9145         * sys/dvb/camswclient.c:
9146         Warn on failed write.
9147
9148 2007-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
9149
9150         * gst/equalizer/Makefile.am:
9151         * gst/equalizer/demo.c: (on_window_destroy), (on_configure_event),
9152         (on_gain_changed), (on_bandwidth_changed), (on_freq_changed),
9153         (draw_spectrum), (message_handler), (main):
9154         Add small demo application based on the spectrum demo applications
9155         that gets white noise as input, pushes it through an equalizer and
9156         paints the spectrum. For every equalizer band it's possible to set
9157         gain, bandwidth and frequency.
9158         * gst/equalizer/gstiirequalizer.c: (setup_filter):
9159         Add some guarding against too large or too small frequencies and
9160         bandwidths. Also improve debugging a bit.
9161
9162 2007-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
9163
9164         * gst/equalizer/gstiirequalizer.c:
9165         (gst_iir_equalizer_band_set_property),
9166         (gst_iir_equalizer_band_get_property),
9167         (gst_iir_equalizer_band_class_init), (arg_to_scale),
9168         (setup_filter), (gst_iir_equalizer_compute_frequencies):
9169         Replace filters with a bit better filters for which we can actually
9170         find documentation, which don't change anything on zero gain, etc.
9171         
9172         Make the frequency property of the bands writable, rename the
9173         band-width property to bandwidth and change the meaning to the
9174         frequency difference between bandedges, change the meaning of the
9175         gain property to dB instead of a weird scale between -1 and 1 that
9176         has no real meaning.
9177
9178 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
9179
9180         * sys/dvb/dvbbasebin.c:
9181           Fix the build.
9182
9183 2007-10-30  Edgard Lima  <edgard.lima@indt.org.br>
9184
9185         * ext/metadata/.cvsignore:
9186         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_base_init),
9187         (gst_metadata_parse_init), (gst_metadata_parse_get_caps),
9188         (gst_metadata_parse_configure_srccaps),
9189         (gst_metadata_parse_set_caps), (gst_metadata_parse_activate),
9190         (gst_metadata_parse_plugin_init):
9191         * ext/metadata/metadataparse.c: (metadataparse_parse):
9192         * ext/metadata/metadataparse.h:
9193           Changed kclass to "Parser/Extracter/Metadata", changed caps to
9194           "image/jpeg, tags-extract=true/false" and changed priority to
9195           GST_RANK_PRIMARY+1. Also, srcpad can only work in push mode until
9196           fixed to also work in pull mode.
9197
9198 2007-10-30  Edgard Lima  <edgard.lima@indt.org.br>
9199
9200         * configure.ac:
9201         * ext/Makefile.am:
9202         * ext/metadata/:
9203         * ext/metadata/Makefile.am:
9204         * ext/metadata/gstmetadata.c:
9205         * ext/metadata/gstmetadataparse.c:
9206         * ext/metadata/gstmetadataparse.h:
9207         * ext/metadata/metadataparse.c:
9208         * ext/metadata/metadataparse.h:
9209         * ext/metadata/metadataparseexif.c:
9210         * ext/metadata/metadataparseexif.h:
9211         * ext/metadata/metadataparseiptc.c:
9212         * ext/metadata/metadataparseiptc.h:
9213         * ext/metadata/metadataparsejpeg.c:
9214         * ext/metadata/metadataparsejpeg.h:
9215         * ext/metadata/metadataparsexmp.c:
9216         * ext/metadata/metadataparsexmp.h:
9217           Created new plugin ('medadata') and element ('metadataparse') that
9218           extract metadata from images (look at bug #486659).
9219
9220 2007-10-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9221
9222         * sys/dvb/dvbbasebin.c:
9223         Uncomment the line that sets the pid filter. Wrong way to 
9224         work-around driver issues.
9225
9226 2007-10-28  Tim-Philipp Müller  <tim at centricular dot net>
9227
9228         * ext/faac/gstfaac.c: (gst_faac_profile_get_type),
9229           (gst_faac_class_init), (gst_faac_init):
9230           Fix bitrate ranges and change enum nick for low complexity
9231           profile from LOW to LC for consistency (#490060).
9232
9233 2007-10-27  Tim-Philipp Müller  <tim at centricular dot net>
9234
9235         * gst/interleave/interleave.c: (gst_interleave_request_new_pad):
9236           Let's not call every request pad we create "sink%d", that'll
9237           create problems if there's to be more than one pad. Fixes #490682.
9238
9239         * tests/check/Makefile.am:
9240         * tests/check/elements/.cvsignore:
9241         * tests/check/elements/interleave.c:
9242           Add unit test for the above.
9243
9244 2007-10-27  Julien MOUTTE  <julien@moutte.net>
9245
9246         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_align),
9247         (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain),
9248         (gst_mpeg4vparse_sink_setcaps), (gst_mpeg4vparse_sink_event),
9249         (gst_mpeg4vparse_cleanup), (gst_mpeg4vparse_change_state),
9250         (gst_mpeg4vparse_dispose), (gst_mpeg4vparse_base_init),
9251         (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init),
9252         (plugin_init):
9253         * gst/mpeg4videoparse/mpeg4videoparse.h: Improved version not
9254         damaging headers using a simple state machine.
9255
9256 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
9257
9258         * ext/x264/gstx264enc.c:
9259           Fix build against the libx264 version that ships with debian stable.
9260
9261 2007-10-26  Julien MOUTTE  <julien@moutte.net>
9262
9263         * configure.ac:
9264         * gst/mpeg4videoparse/Makefile.am:
9265         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_drain),
9266         (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps),
9267         (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_cleanup),
9268         (gst_mpeg4vparse_change_state), (gst_mpeg4vparse_dispose),
9269         (gst_mpeg4vparse_base_init), (gst_mpeg4vparse_class_init),
9270         (gst_mpeg4vparse_init), (plugin_init):
9271         * gst/mpeg4videoparse/mpeg4videoparse.h: Add a simple MPEG4 ES
9272         parser.
9273
9274 2007-10-25  David Schleef  <ds@schleef.org>
9275
9276         * gst/multifile/Makefile.am:
9277         * gst/multifile/gstmultifilesink.c:
9278         * gst/multifile/gstmultifilesrc.c:
9279         * tests/check/Makefile.am:
9280         * tests/check/elements/multifile.c:
9281           Improve documentation, write some tests for multifilesrc/sink
9282           for upcoming ->good review.
9283
9284 2007-10-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9285
9286         * sys/dvb/gstdvbsrc.c:
9287         Actually use the code-rate-hp parameter for DVB-S.
9288         It turns out setting to AUTO does not always work (
9289         especially in diseq situations). Set by default to 
9290         FEC_AUTO.
9291
9292 2007-10-22  Julien MOUTTE  <julien@moutte.net>
9293
9294         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9295         (gst_flv_parse_tag_video), (gst_flv_parse_tag_type): Don't
9296         emit no-more-pads for single pad scenarios as the header
9297         is definitely not reliable. We emit them for 2 pads scenarios
9298         though to speed up media discovery.
9299
9300 2007-10-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9301
9302         * sys/dvb/dvbbasebin.c:
9303         Added proxy property of diseqc-source
9304
9305 2007-10-18  Sebastian Dröge  <slomo@circular-chaos.org>
9306
9307         * gst/equalizer/gstiirequalizer.c:
9308         (gst_iir_equalizer_band_set_property):
9309         Add a missing break.
9310
9311 2007-10-18  Sebastian Dröge  <slomo@circular-chaos.org>
9312
9313         * gst/equalizer/gstiirequalizer.c:
9314         (gst_iir_equalizer_band_set_property),
9315         (gst_iir_equalizer_band_get_property),
9316         (gst_iir_equalizer_band_class_init), (gst_iir_equalizer_band_init),
9317         (gst_iir_equalizer_band_get_type), (gst_iir_equalizer_class_init),
9318         (setup_filter), (gst_iir_equalizer_setup):
9319         * gst/equalizer/gstiirequalizer.h:
9320         Move bandwidth property to the separate bands and add float64 support.
9321
9322 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9323
9324         * ext/cdaudio/Makefile.am:
9325           Add another missing GST_LIBS.
9326
9327 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9328
9329         Patch by: Richard Hult <richard imendio com>
9330
9331         * gst/dvdspu/Makefile.am:
9332           Fix LIBS - we need to link against libgstreamer (fixes #487496).
9333
9334 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9335
9336         * sys/dvb/camapplication.c:
9337         * sys/dvb/camresourcemanager.c:
9338           Fix some warnings.
9339
9340 2007-10-16  Thijs Vermeir  <thijsvermeir@gmail.com>
9341
9342         * gst/librfb/rfbdecoder.c:
9343           Add the set encodings client message
9344
9345 2007-10-16  Thijs Vermeir  <thijsvermeir@gmail.com>
9346
9347         * gst/librfb/Makefile.am:
9348         * gst/librfb/rfb.h:
9349         * gst/librfb/rfbbytestream.c:
9350         * gst/librfb/rfbbytestream.h:
9351         * gst/librfb/rfbdecoder.c:
9352         * gst/librfb/rfbdecoder.h:
9353           Remove the rfbbytestream dead code
9354
9355 2007-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9356
9357         patch by: Alessandro Decina
9358
9359         * sys/dvb/Makefile.am:
9360         * sys/dvb/cam.c:
9361         * sys/dvb/cam.h:
9362         * sys/dvb/camapplication.c:
9363         * sys/dvb/camapplication.h:
9364         * sys/dvb/camapplicationinfo.c:
9365         * sys/dvb/camapplicationinfo.h:
9366         * sys/dvb/camconditionalaccess.c:
9367         * sys/dvb/camconditionalaccess.h:
9368         * sys/dvb/camdevice.c:
9369         * sys/dvb/camdevice.h:
9370         * sys/dvb/camresourcemanager.c:
9371         * sys/dvb/camresourcemanager.h:
9372         * sys/dvb/camsession.c:
9373         * sys/dvb/camsession.h:
9374         * sys/dvb/camswclient.c:
9375         * sys/dvb/camswclient.h:
9376         * sys/dvb/camtransport.c:
9377         * sys/dvb/camtransport.h:
9378         * sys/dvb/camutils.c:
9379         * sys/dvb/camutils.h:
9380         * sys/dvb/dvbbasebin.c:
9381         * sys/dvb/dvbbasebin.h:
9382         * sys/dvb/gstdvb.c:
9383         * sys/dvb/gstdvbsrc.c:
9384         * sys/dvb/gstdvbsrc.h:
9385         Integrate SoC work done by Alessandro for the Freevo project.
9386         Adds cam support to the dvb stack in GStreamer and a new
9387         element (actually a bin) called dvbbasebin that integrates
9388         dvbsrc and mpegtsparse to a) handle decryption and b) allow 
9389         acquiring multiple channels on same transponder without 
9390         knowing pid numbers.
9391
9392 2007-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9393
9394         patch by: Alessandro Decina
9395
9396         * gst/mpegtsparse/mpegtspacketizer.c:
9397         * gst/mpegtsparse/mpegtsparse.c:
9398         * gst/mpegtsparse/mpegtsparse.h:
9399         Add request pad for getting the full transport stream coming in.
9400
9401 2007-10-14  Sebastian Dröge  <slomo@circular-chaos.org>
9402
9403         * configure.ac:
9404           Update the highest allowed neon version from 0.26.99 to 0.27.99.
9405           No code changes are required to work with the newest neon version.
9406
9407 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
9408
9409         * configure.ac:
9410           Require core CVS.  This is implicit in the -base CVS
9411           requirement already, so we might just well spell it
9412           out.  Also, we do need at least 0.10.14 for
9413           gst_element_class_set_details_simple().  Make check
9414           for gmyth a bit more restrictive so things don't break
9415           if the next version changes API.
9416
9417         * ext/alsaspdif/alsaspdifsink.c:
9418           Work around alsa alloca macros triggering 'always evaluates to
9419           true' warnings with gcc-4.2 and fix compilation with gcc-4.2.
9420           Also don't leak the device string.
9421
9422         * ext/mpeg2enc/gstmpeg2enc.cc:
9423         * ext/soundtouch/gstpitch.cc:
9424         * gst/modplug/gstmodplug.cc:
9425           Fix compilation with g++4.2 and -Wall -Werror (also needs plugin
9426           define fix from core CVS). Fixes #462737.
9427
9428 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
9429
9430         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
9431
9432         * gst/rtpmanager/gstrtpbin.c: (create_stream),
9433         (gst_rtp_bin_class_init):
9434         Fix memleak. Fixes #484990.
9435
9436 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
9437
9438         * gst/librfb/rfbbuffer.c: (rfb_buffer_new_and_alloc):
9439         * gst/librfb/rfbbuffer.h:
9440         * gst/librfb/rfbdecoder.c: (rfb_socket_get_buffer):
9441         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_chain):
9442         * gst/nsf/nes6502.c: (nes6502_execute):
9443         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
9444         * gst/real/gstrealvideodec.c: (open_library):
9445         * gst/real/gstrealvideodec.h:
9446         * gst/rtpmanager/gstrtpsession.c: (create_recv_rtp_sink),
9447         (create_recv_rtcp_sink), (create_send_rtp_sink):
9448         Fix compiler warnings shown by Forte.
9449
9450 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
9451
9452         * gst/rtpmanager/gstrtpbin.c: (get_pt_map),
9453         (gst_rtp_bin_clear_pt_map), (gst_rtp_bin_class_init):
9454         Fix caps refcounting for payload maps.
9455         When clearing payload maps, also clear sessions and streams payload
9456         maps.
9457
9458         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps),
9459         (gst_rtp_pt_demux_clear_pt_map), (gst_rtp_pt_demux_chain),
9460         (find_pad_for_pt):
9461         Implement clearing the payload map.
9462
9463         * gst/rtpmanager/gstrtpsession.c:
9464         (gst_rtp_session_event_send_rtp_sink):
9465         Forward flush events instead of leaking them.
9466
9467         * gst/rtpmanager/gstrtpssrcdemux.c:
9468         (gst_rtp_ssrc_demux_rtcp_sink_event):
9469         Correctly refcount events before pushing them.
9470
9471 2007-10-08  Sebastian Dröge  <slomo@circular-chaos.org>
9472
9473         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
9474         Use GIO function to get a list of supported URI schemes instead of
9475         hard coding something.
9476
9477 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
9478
9479         * gst/rtpmanager/rtpsession.c: (rtp_session_next_timeout),
9480         When reconsidering RTCP timeouts, set the next timeout against the last
9481         report time instead of the current clock time so that we don't end up
9482         reconsidering forever.
9483
9484 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
9485
9486         * gst/rtpmanager/gstrtpjitterbuffer.c:
9487         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
9488         Only peek at the tail element instead of popping it off, which allows
9489         us to greatly simplify things when the tail element changes.
9490
9491         * gst/rtpmanager/gstrtpsession.c:
9492         (gst_rtp_session_event_recv_rtp_sink):
9493         * gst/rtpmanager/gstrtpssrcdemux.c:
9494         (gst_rtp_ssrc_demux_sink_event):
9495         Forward FLUSH events instead of leaking them.
9496
9497         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_reset_skew),
9498         (calculate_skew), (rtp_jitter_buffer_insert):
9499         * gst/rtpmanager/rtpjitterbuffer.h:
9500         Remove the tail-changed callback in favour of a simple boolean when we
9501         insert a buffer in the queue.
9502         Add method to peek the tail of the buffer.
9503
9504 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
9505
9506         Patch by: Gautier Portet <kassoulet at gmail dot com>
9507
9508         * gst/xingheader/gstxingmux.c:
9509         The size of the Xing header is actually 417 as it's rounded to the
9510         next smaller integer. Fixes #397759.
9511
9512         * gst/xingheader/gstxingmux.c: (xing_generate_header),
9513         (xing_push_header):
9514         Some random cleanup, add FIXMEs and TODOs and check if the newsegment
9515         event to the beginning was successful before pushing the header again.
9516
9517 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
9518
9519         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
9520
9521         * gst/mpegtsparse/mpegtspacketizer.c:
9522         (mpegts_packetizer_stream_new):
9523         Don't skip PAT with version number 0. Fixes #483400.
9524         * gst/mpegtsparse/mpegtsparse.c: (mpegts_parse_apply_pat):
9525         Make all values above 0 mark a referenced program as they can be
9526         incremented and only 1 had marked a referenced program before, causing
9527         actually referenced programs to be unreferenced.
9528
9529 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9530
9531         * gst/sdp/gstsdpdemux.h:
9532         Change signature of pt to fix compilation on some platforms.
9533
9534 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9535
9536         * gst/rtpmanager/gstrtpjitterbuffer.c:
9537         (gst_rtp_jitter_buffer_flush_start),
9538         (gst_rtp_jitter_buffer_flush_stop),
9539         (gst_rtp_jitter_buffer_change_state), (apply_offset),
9540         (gst_rtp_jitter_buffer_loop):
9541         Remove some old unused variables.
9542         Don't add the latency to the skew corrected timestamp, latency is only
9543         used to sync against the clock.
9544         Improve debugging.
9545
9546         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9547         (rtp_jitter_buffer_reset_skew), (calculate_skew):
9548         * gst/rtpmanager/rtpjitterbuffer.h:
9549         Handle case where server timestamp goes backwards or wildly jumps by
9550         temporarily pausing the skew correction.
9551         Improve debugging.
9552
9553 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9554
9555         * gst/sdp/Makefile.am:
9556         Forgot to commit makefile.
9557
9558 2007-10-02  Sebastian Dröge  <slomo@circular-chaos.org>
9559
9560         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
9561         Update to API changes in GIO.
9562
9563 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
9564
9565         * gst/sdp/gstsdpdemux.c: (gst_sdp_demux_media_to_caps):
9566         Use new function in -base to get the default clock-rate.
9567
9568 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
9569
9570         * configure.ac:
9571         * gst/sdp/gstsdpdemux.c: (_do_init), (gst_sdp_demux_base_init),
9572         (gst_sdp_demux_class_init), (gst_sdp_demux_init),
9573         (gst_sdp_demux_finalize), (gst_sdp_demux_set_property),
9574         (gst_sdp_demux_get_property), (find_stream_by_id),
9575         (find_stream_by_pt), (find_stream_by_udpsrc), (find_stream),
9576         (gst_sdp_demux_stream_free), (gst_sdp_demux_create_stream),
9577         (gst_sdp_demux_cleanup), (get_default_rate_for_pt),
9578         (gst_sdp_demux_parse_rtpmap), (gst_sdp_demux_media_to_caps),
9579         (new_session_pad), (request_pt_map), (gst_sdp_demux_do_stream_eos),
9580         (on_bye_ssrc), (on_timeout), (gst_sdp_demux_configure_manager),
9581         (gst_sdp_demux_stream_configure_udp),
9582         (gst_sdp_demux_stream_configure_udp_sink),
9583         (gst_sdp_demux_combine_flows), (gst_sdp_demux_stream_push_event),
9584         (gst_sdp_demux_handle_message), (gst_sdp_demux_start),
9585         (gst_sdp_demux_sink_event), (gst_sdp_demux_sink_chain),
9586         (gst_sdp_demux_change_state):
9587         * gst/sdp/gstsdpdemux.h:
9588         * gst/sdp/gstsdpelem.c: (plugin_init):
9589         Added SDP demuxer element. Fixes #426657.
9590
9591 2007-10-01  Sebastian Dröge  <slomo@circular-chaos.org>
9592
9593         Patch by: mutex at runbox dot com
9594
9595         * gst/mpegtsparse/mpegtspacketizer.c:
9596         (mpegts_packetizer_parse_adaptation_field_control):
9597         * gst/mpegtsparse/mpegtsparse.c: (mpegts_parse_base_init),
9598         (mpegts_parse_init), (mpegts_parse_push):
9599         * gst/mpegtsparse/mpegtsparse.h:
9600         Remove useless src pad that only results in not linked errors,
9601         fix a broken pointer dereference and make MAX_CONTINUITY constant
9602         conform to the standard to stop outputting corrupted data.
9603         Fixes #481276, #481279.
9604
9605 2007-09-29  Tim-Philipp Müller  <tim at centricular dot net>
9606
9607         * ext/mythtv/gstmythtvsrc.c:
9608           Re-apply docs patch from #468039; fix tab.
9609
9610         * gst/mpegtsparse/.cvsignore:
9611           Ignore marshaller files generated at build time.
9612
9613 2007-09-29  Sebastian Dröge  <slomo@circular-chaos.org>
9614
9615         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
9616         (gst_gio_sink_set_property), (gst_gio_sink_render):
9617         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
9618         (gst_gio_src_set_property):
9619         Some minor cleanup and allow setting the location only when the
9620         element is not playing or paused.
9621
9622 2007-09-29  Sebastian Dröge  <slomo@circular-chaos.org>
9623
9624         * configure.ac:
9625         Update gio's pkg-config file name as currently in SVN.
9626
9627         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_location):
9628         Remove special casing for a NULL query string. g_strjoin won't add
9629         the separator if there's only one string.
9630
9631 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9632
9633         * gst/rtpmanager/gstrtpbin.c: (free_client):
9634         Fix crasher in dispose.
9635
9636         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
9637         Handle cases where input buffers have no timestamps so that no clock
9638         skew can be calculated, in this case interpolate timestamps based on
9639         rtp timestamp and assume a 0 clock skew.
9640
9641 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9642
9643         * gst/rtpmanager/gstrtpjitterbuffer.c: (apply_latency),
9644         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_query):
9645         Remove jitter correction code, it's now in the lower level object.
9646         Use new -core method for doing a peer query.
9647
9648         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9649         (calculate_skew), (rtp_jitter_buffer_insert):
9650         * gst/rtpmanager/rtpjitterbuffer.h:
9651         Move jitter correction to the lowlevel jitterbuffer.
9652         Increase the max window size.
9653         When filling the window, already start estimating the skew using a
9654         parabolic weighting factor so that we have a much better startup
9655         behaviour that gets more accurate with the more samples we have.
9656         Increase the default weighting factor for the steady state to get
9657         smoother timestamps.
9658
9659 2007-09-28  Sebastian Dröge  <slomo@circular-chaos.org>
9660
9661         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_proxy),
9662         (gst_neonhttp_src_send_request_and_redirect):
9663         Now that we require libneon >= 0.26 remove the neon 0.25 backward
9664         compatibility stuff. Also fix the default location.
9665
9666 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9667
9668         * configure.ac:
9669         We require libneon >= 26 now for the query field in ne_uri.
9670
9671 2007-09-28  Sebastian Dröge  <slomo@circular-chaos.org>
9672
9673         Patch by: Wouter Cloetens <wouter@mind.be>
9674
9675         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_dispose),
9676         (gst_neonhttp_src_set_location),
9677         (gst_neonhttp_src_send_request_and_redirect):
9678         * ext/neon/gstneonhttpsrc.h:
9679         Don't discard GET parameters from URL if existing.
9680         Fixes #481200.
9681
9682 2007-09-27  Thijs Vermeir  <thijsvermeir@gmail.com>
9683
9684         * gst/librfb/gstrfbsrc.c:
9685         * gst/librfb/gstrfbsrc.h:
9686                 Added a property for incremental screen updates
9687
9688 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
9689
9690         * ext/xvid/gstxvidenc.c:
9691         * ext/xvid/gstxvidenc.h:
9692           Remove superfluous 'frame-encoded' signal (people can
9693           use an upstream identity's 'handoff' signal or a pad
9694           probe for this if they must know).
9695
9696 2007-09-27  Julien MOUTTE  <julien@moutte.net>
9697
9698         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9699         (gst_flv_parse_tag_video): I got it wrong again, audio rate 
9700         was not detected correctly in all cases.
9701
9702 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
9703
9704         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_dispose),
9705         (gst_rtp_bin_finalize):
9706         Fix cleanup crasher.
9707
9708         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9709         (calculate_skew):
9710         * gst/rtpmanager/rtpjitterbuffer.h:
9711         Dynamically adjust the skew calculation window so that we calculate it
9712         over a period of around 2 seconds.
9713
9714 2007-09-26  Thijs Vermeir  <thijsvermeir@gmail.com>
9715
9716         * gst/librfb/gstrfbsrc.c:
9717                 fix bug from generic/states.gdb
9718
9719 2007-09-26  Julien MOUTTE  <julien@moutte.net>
9720
9721         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9722         (gst_flv_parse_tag_video): codec_data is needed for every tag
9723         not just the first one. (Fix a stupid bug i introduced without
9724         testing)
9725
9726 2007-09-26  Julien MOUTTE  <julien@moutte.net>
9727
9728         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9729         (gst_flv_parse_tag_video): Fix bit masks operations to be
9730         sure we detect the codec_tags and sample rates correctly.
9731         Fix raw audio caps generation.
9732
9733 2007-09-24  Stefan Kost  <ensonic@users.sf.net>
9734
9735         * ext/audioresample/gstaudioresample.c:
9736         * ext/x264/gstx264enc.c:
9737         * gst/dvdspu/gstdvdspu.c:
9738         * gst/dvdspu/gstdvdspu.h:
9739         * gst/festival/gstfestival.c:
9740         * gst/h264parse/gsth264parse.c:
9741         * gst/mpegtsparse/mpegtspacketizer.c:
9742         * gst/mpegtsparse/mpegtsparse.c:
9743         * gst/multifile/gstmultifilesink.c:
9744         * gst/multifile/gstmultifilesrc.c:
9745         * gst/nuvdemux/gstnuvdemux.c:
9746         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
9747         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
9748         * sys/vcd/vcdsrc.c:
9749           Massive leak fixing, plus code cleanups.
9750
9751 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9752
9753         * po/LINGUAS:
9754           Added translations.
9755
9756 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9757
9758         translated by: Jakub Bogusz <qboosh@pld-linux.org>
9759
9760         * po/pl.po:
9761           Added Polish translation.
9762
9763 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9764
9765         translated by: Ilkka Tuohela <hile@iki.fi>
9766
9767         * po/fi.po:
9768           Added Finnish translation.
9769
9770 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9771
9772         translated by: Jorge González González <aloriel@gmail.com>
9773
9774         * po/es.po:
9775           Added Spanish translation.
9776
9777 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9778
9779         translated by: Alexander Shopov <ash@contact.bg>
9780
9781         * po/bg.po:
9782           Added Bulgarian translation.
9783
9784 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9785
9786         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
9787         Update hierarchy.
9788         * ext/gio/gstgiosink.h:
9789         * ext/gio/gstgiosrc.h:
9790         Mark private fields of the instance structs private.
9791
9792 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9793
9794         * docs/plugins/Makefile.am:
9795         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
9796         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
9797         * docs/plugins/gst-plugins-bad-plugins.args:
9798         * docs/plugins/gst-plugins-bad-plugins.signals:
9799         * docs/plugins/inspect/plugin-bz2.xml:
9800         * docs/plugins/inspect/plugin-cdxaparse.xml:
9801         * docs/plugins/inspect/plugin-dfbvideosink.xml:
9802         * docs/plugins/inspect/plugin-dtsdec.xml:
9803         * docs/plugins/inspect/plugin-equalizer.xml:
9804         * docs/plugins/inspect/plugin-faac.xml:
9805         * docs/plugins/inspect/plugin-faad.xml:
9806         * docs/plugins/inspect/plugin-filter.xml:
9807         * docs/plugins/inspect/plugin-freeze.xml:
9808         * docs/plugins/inspect/plugin-gio.xml:
9809         * docs/plugins/inspect/plugin-gsm.xml:
9810         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
9811         * docs/plugins/inspect/plugin-h264parse.xml:
9812         * docs/plugins/inspect/plugin-modplug.xml:
9813         * docs/plugins/inspect/plugin-mpeg2enc.xml:
9814         * docs/plugins/inspect/plugin-musepack.xml:
9815         * docs/plugins/inspect/plugin-musicbrainz.xml:
9816         * docs/plugins/inspect/plugin-nsfdec.xml:
9817         * docs/plugins/inspect/plugin-replaygain.xml:
9818         * docs/plugins/inspect/plugin-soundtouch.xml:
9819         * docs/plugins/inspect/plugin-spcdec.xml:
9820         * docs/plugins/inspect/plugin-spectrum.xml:
9821         * docs/plugins/inspect/plugin-speed.xml:
9822         * docs/plugins/inspect/plugin-tta.xml:
9823         * docs/plugins/inspect/plugin-videosignal.xml:
9824         * docs/plugins/inspect/plugin-xingheader.xml:
9825         * docs/plugins/inspect/plugin-xvid.xml:
9826         Add the GIO plugin to the docs and do a make update
9827         while doing that.
9828
9829         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
9830         Fix a small memleak.
9831
9832 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9833
9834         Patch by: René Stadler <mail at renestadler dot de>
9835
9836         * configure.ac:
9837         * ext/Makefile.am:
9838         * ext/gio/Makefile.am:
9839         * ext/gio/gstgio.c: (gst_gio_error), (gst_gio_seek),
9840         (gst_gio_get_supported_protocols),
9841         (gst_gio_uri_handler_get_type_sink),
9842         (gst_gio_uri_handler_get_type_src),
9843         (gst_gio_uri_handler_get_protocols), (gst_gio_uri_handler_get_uri),
9844         (gst_gio_uri_handler_set_uri), (gst_gio_uri_handler_init),
9845         (gst_gio_uri_handler_do_init), (plugin_init):
9846         * ext/gio/gstgio.h:
9847         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
9848         (gst_gio_sink_class_init), (gst_gio_sink_init),
9849         (gst_gio_sink_finalize), (gst_gio_sink_set_property),
9850         (gst_gio_sink_get_property), (gst_gio_sink_start),
9851         (gst_gio_sink_stop), (gst_gio_sink_unlock),
9852         (gst_gio_sink_unlock_stop), (gst_gio_sink_event),
9853         (gst_gio_sink_render), (gst_gio_sink_query):
9854         * ext/gio/gstgiosink.h:
9855         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
9856         (gst_gio_src_class_init), (gst_gio_src_init),
9857         (gst_gio_src_finalize), (gst_gio_src_set_property),
9858         (gst_gio_src_get_property), (gst_gio_src_start),
9859         (gst_gio_src_stop), (gst_gio_src_get_size),
9860         (gst_gio_src_is_seekable), (gst_gio_src_unlock),
9861         (gst_gio_src_unlock_stop), (gst_gio_src_check_get_range),
9862         (gst_gio_src_create):
9863         * ext/gio/gstgiosrc.h:
9864         Add a GIO/GVFS plugin with source and sink elements. This will
9865         only be enabled when --enable-experimental is given to configure
9866         for now as the GIO API is not stable yet. Fixes #476916.
9867
9868 2007-09-21  Thijs Vermeir  <thijsvermeir@gmail.com>
9869
9870         * gst/librfb/gstrfbsrc.c:
9871         * gst/librfb/rfbdecoder.c:
9872         * gst/librfb/rfbdecoder.h:
9873                 Added offset-x, offset-y, width and height property
9874                 for selecting a region from the screen
9875
9876 2007-09-21  Thijs Vermeir  <thijsvermeir@gmail.com>
9877
9878         * gst/librfb/gstrfbsrc.c:
9879                 Minimum raw encoding is working now
9880         * gst/librfb/rfbdecoder.c:
9881                 fix address while reading from stream
9882
9883 2007-09-20  Thijs Vermeir  <thijsvermeir@gmail.com>
9884
9885         * gst/librfb/gstrfbsrc.c:
9886                 raw encoding is working, but it looks like the 
9887                 ffmpegcolorspace plugin can't handle high resolutions
9888
9889 2007-09-20  Thijs Vermeir  <thijsvermeir@gmail.com>
9890
9891         * gst/librfb/gstrfbsrc.c:
9892                 bpp, depth and endianness are now set from the
9893                 stream.
9894
9895 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9896
9897         * examples/app/appsrc_ex.c: (main):
9898         Fix compilation after changing the name of a method.
9899
9900 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
9901
9902         * ext/alsaspdif/alsaspdifsink.c:
9903         * ext/timidity/gsttimidity.c:
9904         * ext/timidity/gstwildmidi.c:
9905         * gst/mpegvideoparse/mpegvideoparse.c:
9906           Fix memory leaks. More to come.
9907
9908         * tests/check/Makefile.am:
9909         * tests/check/generic/states.c:
9910           Improved state change unit test.        
9911
9912 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9913
9914         * gst/rtpmanager/gstrtpbin.c: (on_ssrc_active), (create_session),
9915         (gst_rtp_bin_class_init):
9916         * gst/rtpmanager/gstrtpbin.h:
9917         * gst/rtpmanager/gstrtpsession.c: (on_ssrc_active),
9918         (gst_rtp_session_class_init), (gst_rtp_session_init),
9919         (gst_rtp_session_event_send_rtp_sink):
9920         * gst/rtpmanager/gstrtpsession.h:
9921         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
9922         (on_ssrc_active), (rtp_session_process_rb):
9923         * gst/rtpmanager/rtpsession.h:
9924         Add notification of active SSRCs to various RTP elements. Fixes #478566.
9925
9926 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9927
9928         * gst-libs/gst/app/gstappsink.c: (gst_app_marshal_OBJECT__VOID),
9929         (gst_app_sink_class_init), (gst_app_sink_init),
9930         (gst_app_sink_dispose), (gst_app_sink_finalize),
9931         (gst_app_sink_set_property), (gst_app_sink_get_property),
9932         (gst_app_sink_flush_unlocked), (gst_app_sink_start),
9933         (gst_app_sink_event), (gst_app_sink_getcaps),
9934         (gst_app_sink_set_caps), (gst_app_sink_get_caps),
9935         (gst_app_sink_is_eos), (gst_app_sink_pull_preroll),
9936         (gst_app_sink_pull_buffer):
9937         * gst-libs/gst/app/gstappsink.h:
9938         Add properties, signals and actions to access the element even without
9939         linking to the library.
9940         Fix some method names and signatures.
9941
9942 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
9943
9944         Patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
9945
9946         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst),
9947         (gst_faad_srcgetcaps), (gst_faad_update_caps):
9948         Don't set channel positions on regular mono and stereo cases.
9949         Fixes #476370.
9950
9951 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9952
9953         * gst/librfb/gstrfbsrc.c:
9954         * gst/librfb/rfbdecoder.c:
9955         * gst/librfb/rfbdecoder.h:
9956                 It is now possible to connect to a vncserver.
9957                 there are still some issues with the ouput of 
9958                 the screen. Looks like some lines are confused
9959
9960 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
9961
9962         * docs/plugins/.cvsignore:
9963         * tests/check/.cvsignore:
9964           Ignore registries in any format.
9965
9966 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
9967
9968         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
9969         (open_library), (gst_real_video_dec_init),
9970         (gst_real_video_dec_set_property),
9971         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
9972         * gst/real/gstrealvideodec.h:
9973         Don't generate an error for occasional decoding errors.
9974         Add max-errors property.
9975         Error out when we receive max-errors in a row. Fixes #478159.
9976
9977 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9978
9979         * gst/librfb/gstrfbsrc.c: 
9980                 Add password property (write only)
9981         * gst/librfb/rfbdecoder.c: 
9982                 Read the reason on failure
9983                 Use the password property for authentication
9984         * gst/librfb/rfbdecoder.h:
9985                 Add defines for version checking
9986
9987 2007-09-19  Sebastian Dröge  <slomo@circular-chaos.org>
9988
9989         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_destroy),
9990         (gst_dfbsurface_class_init):
9991         When finalizing GstDfbSurface, a subclass of GstBuffer, correctly
9992         chain up to the parent class to free everything, including caps.
9993
9994 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9995
9996         * gst/librfb/Makefile.am:
9997         * gst/librfb/d3des.c:
9998         * gst/librfb/d3des.h:
9999         * gst/librfb/rfbdecoder.c:
10000         * gst/librfb/vncauth.c:
10001         * gst/librfb/vncauth.h:
10002         VNC Authentication should be working now
10003         temperaly with fake password 'testtest'
10004
10005 2007-09-18  Thijs Vermeir  <thijsvermeir@gmail.com>
10006
10007         * gst/librfb/rfbdecoder.c:
10008         * gst/librfb/rfbdecoder.h:
10009         Added some documentation about security handling
10010         start implementing security handling for rfb 3.3
10011
10012 2007-09-18  Stefan Kost  <ensonic@users.sf.net>
10013
10014         * gst/spectrum/demo-audiotest.c:
10015         * gst/spectrum/demo-osssrc.c:
10016           Handling window resize.
10017
10018 2007-09-18  Stefan Kost  <ensonic@users.sf.net>
10019
10020         * ChangeLog:
10021           Add missing newline.
10022
10023         * gst/librfb/rfbdecoder.c:
10024           Fix the build (missing stdlib.h).
10025
10026         * gst/spectrum/gstspectrum.c:
10027         * gst/spectrum/gstspectrum.h:
10028           Use basetransform segment so that it is correctly managed on flushes
10029           and start/stop. Report message timestamp as stream time, which is what
10030           an application can understand. (Yes these are adapted from wim recent
10031           level element changes)
10032
10033 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10034
10035         * gst/rtpmanager/gstrtpbin.c: (new_ssrc_pad_found):
10036         Link to the right pads regardless of which one was created first in the
10037         ssrc demuxer.
10038
10039         * gst/rtpmanager/gstrtpjitterbuffer.c:
10040         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
10041         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
10042         (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_send_rtp):
10043         * gst/rtpmanager/rtpsource.c: (calculate_jitter):
10044         Improve debugging.
10045
10046         * gst/rtpmanager/gstrtpssrcdemux.c: (create_demux_pad_for_ssrc),
10047         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_finalize),
10048         (gst_rtp_ssrc_demux_sink_event),
10049         (gst_rtp_ssrc_demux_rtcp_sink_event), (gst_rtp_ssrc_demux_chain),
10050         (gst_rtp_ssrc_demux_rtcp_chain),
10051         (gst_rtp_ssrc_demux_internal_links):
10052         * gst/rtpmanager/gstrtpssrcdemux.h:
10053         Fix race in creating the RTP and RTCP pads when a new SSRC is detected.
10054
10055 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10056
10057         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_set_property),
10058         (gst_rtp_bin_get_property):
10059         Use lock to protect variable.
10060
10061         * gst/rtpmanager/gstrtpjitterbuffer.c:
10062         (gst_rtp_jitter_buffer_class_init),
10063         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_chain),
10064         (convert_rtptime_to_gsttime), (gst_rtp_jitter_buffer_loop):
10065         Reconstruct GST timestamp from RTP timestamps based on measured clock
10066         skew and sync offset.
10067
10068         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
10069         (rtp_jitter_buffer_set_tail_changed),
10070         (rtp_jitter_buffer_set_clock_rate),
10071         (rtp_jitter_buffer_get_clock_rate), (calculate_skew),
10072         (rtp_jitter_buffer_insert), (rtp_jitter_buffer_peek):
10073         * gst/rtpmanager/rtpjitterbuffer.h:
10074         Measure clock skew.
10075         Add callback to be notfied when a new packet was inserted at the tail.
10076
10077         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10078         (calculate_jitter), (rtp_source_send_rtp):
10079         * gst/rtpmanager/rtpsource.h:
10080         Remove clock skew detection, it's move to the jitterbuffer now.
10081
10082 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10083
10084         Patch by: Daniel Charles <dcharles at ti dot com>
10085
10086         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_bandmode_get_type),
10087         (gst_amrwbenc_set_property), (gst_amrwbenc_get_property),
10088         (gst_amrwbenc_class_init), (gst_amrwbenc_chain):
10089         * ext/amrwb/gstamrwbenc.h:
10090         Add property to control bandmode. Fixes #477306.
10091
10092 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
10093
10094         * gst/rtpmanager/gstrtpbin.c: (create_session):
10095         Also set NTP base time on new sessions.
10096
10097         * gst/rtpmanager/gstrtpjitterbuffer.c:
10098         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_query),
10099         (gst_rtp_jitter_buffer_set_property),
10100         (gst_rtp_jitter_buffer_get_property):
10101         Use the right lock to protect our variables.
10102         Fix some comment.
10103
10104         * gst/rtpmanager/gstrtpsession.c:
10105         (gst_rtp_session_getcaps_send_rtp),
10106         (gst_rtp_session_chain_send_rtp), (create_send_rtp_sink):
10107         Implement getcaps on the sender sinkpad so that payloaders can negotiate
10108         the right SSRC.
10109
10110 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
10111
10112         * gst/rtpmanager/gstrtpbin.c: (create_session), (free_session),
10113         (get_client), (free_client), (gst_rtp_bin_associate),
10114         (free_stream), (gst_rtp_bin_class_init), (gst_rtp_bin_dispose),
10115         (gst_rtp_bin_finalize):
10116         * gst/rtpmanager/gstrtpjitterbuffer.c:
10117         (gst_rtp_jitter_buffer_class_init),
10118         (gst_rtp_jitter_buffer_finalize):
10119         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_release):
10120         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_finalize),
10121         (gst_rtp_session_set_property), (gst_rtp_session_chain_recv_rtp),
10122         (gst_rtp_session_chain_send_rtp):
10123         * gst/rtpmanager/gstrtpssrcdemux.c:
10124         (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_dispose):
10125         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
10126         * gst/rtpmanager/rtpsession.h:
10127         Various leak fixes.
10128
10129 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
10130
10131         * gst/rtpmanager/gstrtpbin.c: (calc_ntp_ns_base),
10132         (gst_rtp_bin_change_state), (new_payload_found), (create_send_rtp):
10133         Calculate and configure the NTP base time so that we can generate better
10134         NTP times in SR packets.
10135         Set caps on new ghostpad.
10136
10137         * gst/rtpmanager/gstrtpjitterbuffer.c:
10138         (gst_rtp_jitter_buffer_loop):
10139         Clean debug statement.
10140
10141         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10142         (gst_rtp_session_init), (gst_rtp_session_set_property),
10143         (gst_rtp_session_get_property), (get_current_ntp_ns_time),
10144         (rtcp_thread), (gst_rtp_session_event_recv_rtp_sink),
10145         (gst_rtp_session_internal_links), (gst_rtp_session_chain_recv_rtp),
10146         (gst_rtp_session_event_send_rtp_sink),
10147         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
10148         (create_send_rtp_sink):
10149         * gst/rtpmanager/gstrtpsession.h:
10150         Add ntp-ns-base property to convert running_time to NTP time.
10151         Handle NEWSEGMENT events on send and recv RTP pads so that we can
10152         calculate the running time and thus NTP time of the packets.
10153         Simplify getting the current NTP time using the pipeline clock.
10154         Implement internal links functions.
10155         Use the buffer timestamp to calculate the NTP time instead of the clock.
10156
10157         * gst/rtpmanager/gstrtpssrcdemux.c: (create_demux_pad_for_ssrc),
10158         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_sink_event),
10159         (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_rtcp_chain),
10160         (gst_rtp_ssrc_demux_internal_links),
10161         (gst_rtp_ssrc_demux_src_query):
10162         * gst/rtpmanager/gstrtpssrcdemux.h:
10163         Implement internal links function.
10164         Calculate the diff between different streams, this might be used later
10165         to get the inter stream latency.
10166
10167         * gst/rtpmanager/rtpsession.c: (rtp_session_send_rtp):
10168         Simple cleanup.
10169
10170         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10171         (calculate_jitter), (rtp_source_send_rtp), (rtp_source_get_new_sr):
10172         Make the clock skew window a little bigger.
10173         Apply the clock skew to all buffers, not just one with a new timestamp.
10174         Calculate and debug sender clock drift.
10175         Use extended last timestamp to interpolate for SR reports.
10176
10177 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
10178
10179         Patch by: Peter Kjellerstedt  <pkj at axis com>
10180
10181         * gst-libs/gst/app/gstappsink.c:
10182         * gst/flv/gstflvdemux.c:
10183         * gst/flv/gstflvparse.c:
10184         * gst/interleave/deinterleave.c:
10185         * gst/switch/gstswitch.c:
10186           Printf format fixes (#476128).
10187
10188 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
10189
10190         Patch by: Thomas Green  <tom78999 gmail com>
10191
10192         * ext/neon/gstneonhttpsrc.c:
10193           With libneon 2.6, we need to set the NE_SESSFLAG_ICYPROTO
10194           flag if we want ICY streams to be handled too, otherwise
10195           libneon will error out with a 'can't parse reponse' error.
10196           Fixes #474696.
10197
10198         * tests/check/elements/neonhttpsrc.c:
10199           Unit test for the above by Yours Truly.
10200
10201 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
10202
10203         * configure.ac:
10204           Use AC_TRY_COMPILE instead of AC_TRY_RUN for the faad and the
10205           xvid configure checks, so they still work when cross-compiling.
10206           Fixes #452009.
10207
10208 2007-09-07  Sebastian Dröge  <slomo@circular-chaos.org>
10209
10210         * gst/spectrum/gstspectrum.c: (gst_spectrum_start),
10211         (gst_spectrum_transform_ip):
10212         Use the correct parameter order for the memset calls.
10213         Thanks to Christian Schaller for noticing.
10214
10215 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
10216
10217         * gst/mpegtsparse/mpegtsparse.c:
10218           Fix the build (missing stdlib.h).
10219
10220 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
10221
10222         * gst/spectrum/fix_fft.c:
10223         Remove fixed point FFT as it's not used anymore.
10224
10225 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
10226
10227         * configure.ac:
10228         * gst/spectrum/Makefile.am:
10229         * gst/spectrum/demo-audiotest.c: (draw_spectrum),
10230         (message_handler), (main):
10231         * gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
10232         * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
10233         (gst_spectrum_class_init), (gst_spectrum_init),
10234         (gst_spectrum_dispose), (gst_spectrum_set_property),
10235         (gst_spectrum_get_property), (gst_spectrum_start),
10236         (gst_spectrum_setup), (gst_spectrum_message_new),
10237         (gst_spectrum_transform_ip):
10238         * gst/spectrum/gstspectrum.h:
10239         Port GstSpectrum to GstAudioFilter and libgstfft, add support
10240         for int32, float and double, use floats for the message contents,
10241         average all FFTs done in one interval for better results, use
10242         a better windowing function, allow posting the phase in the message
10243         and actually do an FFT with the requested number of bands instead
10244         of interpolating.
10245
10246         * tests/check/elements/spectrum.c: (GST_START_TEST),
10247         (spectrum_suite):
10248         Improve the units tests by checking for a 11025Hz sine wave
10249         and add unit tests for all 4 supported sample types.
10250
10251 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
10252
10253         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
10254         (gst_real_video_dec_setcaps):
10255         Add some more debugging.
10256         Don't set LONG for width/height in caps.
10257         Set correct output buffer size when caps changed.
10258         The custom message sent to the decoder should not include the format and
10259         subformat. Fixes #471554.
10260
10261 2007-09-04  Tim-Philipp Müller  <tim at centricular dot net>
10262
10263         * gst/rtpmanager/gstrtpsession.c:
10264           Make compiler happy: fix compilation with -Wall -Werror
10265           (#473562).
10266
10267 2007-09-03  Johan Dahlin  <johan@gnome.org>
10268
10269         * gst/nsf/gstnsf.c: (gst_nsfdec_finalize), (start_play_tune):
10270         * gst/nsf/gstnsf.h:
10271         Add support for (very) basic tagging.
10272         
10273 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
10274
10275         * gst/rtpmanager/gstrtpbin-marshal.list:
10276         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_get_client),
10277         (gst_rtp_bin_associate), (gst_rtp_bin_sync_chain), (create_stream),
10278         (gst_rtp_bin_init), (caps_changed), (new_ssrc_pad_found),
10279         (create_recv_rtp), (create_recv_rtcp), (create_send_rtp):
10280         * gst/rtpmanager/gstrtpbin.h:
10281         Updated example pipelines in docs.
10282         Handle sync_rtcp buffers from the SSRC demuxer to perform lip-sync.
10283         Set the default latency correctly.
10284         Add some more points where we can get caps.
10285
10286         * gst/rtpmanager/gstrtpjitterbuffer.c:
10287         (gst_rtp_jitter_buffer_class_init),
10288         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_loop),
10289         (gst_rtp_jitter_buffer_query),
10290         (gst_rtp_jitter_buffer_set_property),
10291         (gst_rtp_jitter_buffer_get_property):
10292         Add ts-offset property to control timestamping.
10293
10294         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10295         (gst_rtp_session_init), (gst_rtp_session_set_property),
10296         (gst_rtp_session_get_property), (get_current_ntp_ns_time),
10297         (rtcp_thread), (stop_rtcp_thread), (gst_rtp_session_change_state),
10298         (gst_rtp_session_send_rtcp), (gst_rtp_session_sync_rtcp),
10299         (gst_rtp_session_cache_caps), (gst_rtp_session_clock_rate),
10300         (gst_rtp_session_sink_setcaps), (gst_rtp_session_chain_recv_rtp),
10301         (gst_rtp_session_event_send_rtp_sink),
10302         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
10303         (create_recv_rtcp_sink), (create_send_rtp_sink),
10304         (create_send_rtcp_src):
10305         Various cleanups.
10306         Feed rtpsession manager with NTP time based on pipeline clock when
10307         handling RTP packets and RTCP timeouts.
10308         Perform all RTCP with the system clock.
10309         Set caps on RTCP outgoing buffers.
10310
10311         * gst/rtpmanager/gstrtpssrcdemux.c: (find_demux_pad_for_ssrc),
10312         (create_demux_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init),
10313         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_sink_event),
10314         (gst_rtp_ssrc_demux_rtcp_sink_event), (gst_rtp_ssrc_demux_chain),
10315         (gst_rtp_ssrc_demux_rtcp_chain):
10316         * gst/rtpmanager/gstrtpssrcdemux.h:
10317         Also demux RTCP messages.
10318
10319         * gst/rtpmanager/rtpsession.c: (rtp_session_set_callbacks),
10320         (update_arrival_stats), (rtp_session_process_rtp),
10321         (rtp_session_process_rb), (rtp_session_process_sr),
10322         (rtp_session_process_rr), (rtp_session_process_rtcp),
10323         (rtp_session_send_rtp), (rtp_session_send_bye),
10324         (session_start_rtcp), (session_report_blocks), (session_cleanup),
10325         (rtp_session_on_timeout):
10326         * gst/rtpmanager/rtpsession.h:
10327         Remove the get_time callback, the GStreamer part will feed us with
10328         enough timing information.
10329         Split sync timing and RTCP timing information.
10330         Factor out common RB handling for SR and RR.
10331         Send out SR RTCP packets for lip-sync.
10332         Move SR and RR packet info generation to the source.
10333
10334         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10335         (rtp_source_update_caps), (get_clock_rate), (calculate_jitter),
10336         (rtp_source_process_rtp), (rtp_source_send_rtp),
10337         (rtp_source_process_sr), (rtp_source_process_rb),
10338         (rtp_source_get_new_sr), (rtp_source_get_new_rb),
10339         (rtp_source_get_last_sr):
10340         * gst/rtpmanager/rtpsource.h:
10341         * gst/rtpmanager/rtpstats.h:
10342         Use caps on incomming buffers to get timing information when they are
10343         there.
10344         Calculate clock scew of the receiver compared to the sender and adjust
10345         the rtp timestamps.
10346         Calculate the round trip in sources.
10347         Do SR and RR calculations in the source.
10348
10349 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
10350
10351         * configure.ac:
10352         updated gmyth version
10353
10354         * ext/mythtv/gstmythtvsrc.c:
10355         * ext/mythtv/gstmythtvsrc.h:
10356         Code rewrite
10357
10358 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
10359
10360         * gst/rtpmanager/gstrtpjitterbuffer.c:
10361         (gst_rtp_jitter_buffer_flush_stop),
10362         (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_loop):
10363         Use extended timestamp to release buffers from the jitterbuffer so that
10364         we can handle the rtp wraparound correctly.
10365
10366 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
10367
10368         * gst/rtpmanager/gstrtpjitterbuffer.c:
10369         (gst_rtp_jitter_buffer_loop):
10370         Improve Comments.
10371
10372         * gst/rtpmanager/gstrtpsession.c: (stop_rtcp_thread),
10373         (gst_rtp_session_change_state), (gst_rtp_session_parse_caps),
10374         (gst_rtp_session_clock_rate), (gst_rtp_session_sink_setcaps),
10375         (gst_rtp_session_event_send_rtp_sink), (create_recv_rtp_sink),
10376         (create_send_rtp_sink):
10377         Also parse the sink caps for clock-rate instead of only relying on the
10378         result of the signal.
10379
10380         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
10381         Make sure we fetch the clock rate for payloads we are sending out so
10382         that we can use it for SR reports.
10383
10384 2007-08-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10385
10386         * gst/switch/gstswitch.c (gst_switch_chain, gst_switch_set_property):
10387         If all information is known at time of setting start-time
10388         property, send new segments then.
10389
10390 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
10391
10392         * gst/rtpmanager/gstrtpsession.c: (stop_rtcp_thread),
10393         (gst_rtp_session_change_state),
10394         (gst_rtp_session_event_send_rtp_sink):
10395         * gst/rtpmanager/gstrtpsession.h:
10396         Distribute synchronisation parameters to the session manager so that it
10397         can generate correct SR packets for lip-sync.
10398
10399         * gst/rtpmanager/rtpsession.c: (rtp_session_set_base_time),
10400         (rtp_session_set_timestamp_sync), (session_start_rtcp):
10401         * gst/rtpmanager/rtpsession.h:
10402         Add methods for setting sync parameters.
10403         Set correct RTP time in SR packets using the sync params.
10404
10405         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
10406         * gst/rtpmanager/rtpsource.h:
10407         Record last RTP <-> GST timestamp so that we can use them to convert NTP
10408         to RTP timestamps in SR packets.
10409
10410 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
10411
10412         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map):
10413         Add some more advanced example pipelines.
10414
10415         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
10416         (stop_rtcp_thread), (gst_rtp_session_send_rtcp):
10417         Add some debug and FIXME.
10418         Release LOCK when performing session cleanup.
10419
10420         * gst/rtpmanager/rtpsession.c: (session_report_blocks):
10421         Add some debug.
10422
10423         * gst/rtpmanager/rtpsource.c: (calculate_jitter),
10424         (rtp_source_send_rtp):
10425         Make sure we always send RTP packets with the session SSRC.
10426
10427 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
10428
10429         * gst/dvdspu/gstdvdspu.c:
10430           Don't need this include (fixes compilation in uninstalled setup).
10431
10432 2007-08-27  Wim Taymans  <wim.taymans@gmail.com>
10433
10434         * gst/rtpmanager/gstrtpjitterbuffer.c:
10435         (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_loop),
10436         (gst_rtp_jitter_buffer_query):
10437         When synchronizing buffers, take peer latency into account.
10438         Don't try to add our latency to invalid peer max latency values.
10439
10440 2007-08-27  Julien MOUTTE  <julien@moutte.net>
10441
10442         * gst/flv/gstflvdemux.c: (gst_flv_demux_handle_seek_pull):
10443         Make sure we initialize the seek result.
10444
10445 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
10446
10447         * gst/dvdspu/Makefile.am:
10448         Commit the makefile too.
10449
10450 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
10451
10452         * configure.ac:
10453         * gst/dvdspu/.cvsignore:
10454         * gst/dvdspu/Notes.txt:
10455         * gst/dvdspu/gstdvdspu-render.c: (dvdspu_recalc_palette),
10456         (dvdspu_update_palettes), (dvdspu_clear_comp_buffers),
10457         (dvdspu_get_nibble), (dvdspu_get_rle_code), (dvdspu_draw_rle_run),
10458         (rle_end_x), (dvdspu_render_line), (dvdspu_update_chgcol),
10459         (dvdspu_render_line_with_chgcol), (dvdspu_blend_comp_buffers),
10460         (gstdvdspu_render_spu):
10461         * gst/dvdspu/gstdvdspu.c: (dvdspu_base_init), (dvdspu_class_init),
10462         (dvdspu_init), (dvdspu_clear), (dvdspu_dispose), (dvdspu_finalize),
10463         (dvdspu_flush_spu_info), (dvdspu_buffer_alloc), (dvdspu_src_event),
10464         (dvdspu_video_set_caps), (dvdspu_video_proxy_getcaps),
10465         (dvdspu_video_event), (dvdspu_video_chain),
10466         (dvspu_handle_vid_buffer), (dvdspu_redraw_still),
10467         (gstdvdspu_parse_chg_colcon), (dvdspu_exec_cmd_blk),
10468         (dvdspu_finish_spu_buf), (dvdspu_setup_cmd_blk),
10469         (dvdspu_handle_new_spu_buf), (dvdspu_handle_dvd_event),
10470         (dvdspu_dump_dcsq), (dvdspu_advance_spu),
10471         (dvdspu_check_still_updates), (dvdspu_subpic_chain),
10472         (dvdspu_subpic_event), (dvdspu_change_state),
10473         (gstdvdspu_plugin_init):
10474         * gst/dvdspu/gstdvdspu.h:
10475
10476         dvdspu element donated by Fluendo. It implements a DVD Sub-Picture 
10477         Unit, decoding and overlaying DVD subtitles and menu graphics.
10478
10479         * gst/mpeg2sub/.cvsignore:
10480         * gst/mpeg2sub/Makefile.am:
10481         * gst/mpeg2sub/Notes.txt:
10482         * gst/mpeg2sub/gstmpeg2subt.c:
10483         * gst/mpeg2sub/gstmpeg2subt.h:
10484         * gst/mpeg2sub/mpeg2subt.vcproj:
10485         Delete old and broken mpeg2subt element that was never ported from 0.8
10486
10487 2007-08-24  Julien MOUTTE  <julien@moutte.net>
10488
10489         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
10490         (gst_flv_demux_chain), (gst_flv_demux_pull_tag),
10491         (gst_flv_demux_find_offset), (gst_flv_demux_handle_seek_push),
10492         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_sink_event),
10493         (gst_flv_demux_src_event): Remove some useless ifdef.
10494
10495 2007-08-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10496
10497         * examples/switch/switcher.c (main):
10498         * gst/switch/gstswitch.c (gst_switch_chain):
10499         Make switch more reliable and also not lock up when
10500         sink pad caps change.
10501
10502 2007-08-24  Julien MOUTTE  <julien@moutte.net>
10503
10504         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
10505         (gst_flv_demux_cleanup), (gst_flv_demux_chain),
10506         (gst_flv_demux_pull_tag), (gst_flv_demux_find_offset),
10507         (gst_flv_demux_handle_seek_push), (gst_flv_demux_handle_seek_pull),
10508         (gst_flv_demux_sink_event), (gst_flv_demux_src_event): Implement
10509         seeking in push mode.
10510         * gst/flv/gstflvdemux.h:
10511
10512 2007-08-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10513
10514         * gst/mpegtsparse/flutspatinfo.c:
10515         * gst/mpegtsparse/flutspatinfo.h:
10516         * gst/mpegtsparse/flutspmtinfo.c:
10517         * gst/mpegtsparse/flutspmtinfo.h:
10518         Update licences to reflect LGPL-ness of these files also.
10519
10520 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10521
10522         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
10523         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
10524         * docs/plugins/gst-plugins-bad-plugins.interfaces:
10525         * docs/plugins/gst-plugins-bad-plugins.signals:
10526         * gst/rtpmanager/gstrtpbin.c:
10527         * gst/rtpmanager/gstrtpbin.h:
10528         * gst/rtpmanager/gstrtpclient.c:
10529         * gst/rtpmanager/gstrtpclient.h:
10530         * gst/rtpmanager/gstrtpjitterbuffer.c:
10531         * gst/rtpmanager/gstrtpjitterbuffer.h:
10532         * gst/rtpmanager/gstrtpptdemux.c:
10533         * gst/rtpmanager/gstrtpptdemux.h:
10534         * gst/rtpmanager/gstrtpsession.c:
10535         * gst/rtpmanager/gstrtpsession.h:
10536         * gst/rtpmanager/gstrtpssrcdemux.c:
10537         * gst/rtpmanager/gstrtpssrcdemux.h:
10538           Rename all GstRTPFoo structs to GstRtpFoo so that GST_BOILERPLATE
10539           registers a GType that's different than the GstRTPFoo types that
10540           farsight registers (luckily GType names are case sensitive). Should
10541           finally fix #430664.
10542
10543 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10544
10545         * configure.ac:
10546         * win32/common/config.h:
10547         * win32/common/config.h.in:
10548           Automatically generate win32/common/config.h via configure (this
10549           ensures the win32 version of config.h is up-to-date when a release
10550           is made, #433373). config.h.in file might need some more work.
10551
10552 2007-08-22  Tim-Philipp Müller  <tim at centricular dot net>
10553
10554         Patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
10555
10556         * configure.ac:
10557         * gst/festival/Makefile.am:
10558         * gst/festival/gstfestival.c:
10559           Port festival plugin to GStreamer-0.10 (#461377).
10560
10561 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
10562
10563         * ext/faad/gstfaad.c: (gst_faad_chain):
10564         Don't unref the buffer when it was clipped.
10565
10566 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
10567
10568         * ext/faad/gstfaad.c: (gst_faad_chain):
10569         Don't unref the buffer when it was clipped.
10570
10571 2007-08-22  Julien MOUTTE  <julien@moutte.net>
10572
10573         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
10574         (gst_flv_demux_pull_tag):
10575         * gst/flv/gstflvdemux.h:
10576         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
10577         (gst_flv_parse_tag_script), (gst_flv_parse_tag_audio),
10578         (gst_flv_parse_tag_video): Handle pixel aspect ratio through
10579         metadata tags like ASF does. Fluendo muxer supports this and 
10580         Flash players can support it as well this way.
10581
10582 2007-08-22  Julien MOUTTE  <julien@moutte.net>
10583
10584         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag):
10585         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
10586         (gst_flv_parse_tag_script), (gst_flv_parse_tag_audio),
10587         (gst_flv_parse_tag_video): Make sure we don't try filling up the
10588         index if no times object was parsed. Fix the way we decide to push
10589         tags and emit no-more-pads. Fix some printf typing in debugging.
10590
10591 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10592
10593         * gst/rtpmanager/gstrtpjitterbuffer.c:
10594         (gst_rtp_jitter_buffer_chain),
10595         (gst_rtp_jitter_buffer_set_property):
10596         When drop-on-latency is set but we have no latency configured, just push
10597         the buffer as fast as possible.
10598         Fix typo in comment.
10599
10600 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10601
10602         * gst/rtpmanager/rtpjitterbuffer.c:
10603         (rtp_jitter_buffer_get_ts_diff):
10604         * gst/rtpmanager/rtpjitterbuffer.h:
10605         Fix undefined overflow prone ts_diff handling.
10606
10607 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10608
10609         * gst/modplug/gstmodplug.cc:
10610         Fix compiler warning.
10611
10612 2007-08-21  Stefan Kost  <ensonic@users.sf.net>
10613
10614         * gst/modplug/gstmodplug.cc:
10615           Don't use NULL caps for srcpad is not yet connected.
10616
10617 2007-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10618
10619         * configure.ac:
10620         * gst/mpegtsparse/Makefile.am:
10621         * gst/mpegtsparse/flutspatinfo.c:
10622         * gst/mpegtsparse/flutspatinfo.h:
10623         * gst/mpegtsparse/flutspmtinfo.c:
10624         * gst/mpegtsparse/flutspmtinfo.h:
10625         * gst/mpegtsparse/flutspmtstreaminfo.c:
10626         * gst/mpegtsparse/flutspmtstreaminfo.h:
10627         * gst/mpegtsparse/mpegtspacketizer.c:
10628         * gst/mpegtsparse/mpegtspacketizer.h:
10629         * gst/mpegtsparse/mpegtsparse.c:
10630         * gst/mpegtsparse/mpegtsparse.h:
10631         * gst/mpegtsparse/mpegtsparsemarshal.list:
10632         Add mpeg transport stream parser written by:
10633         Alessandro Decina. Includes a couple of files from the
10634         Fluendo transport stream demuxer that Fluendo have 
10635         kindly allowed to be licenced under LGPL also.
10636
10637 2007-08-20  Tim-Philipp Müller  <tim at centricular dot net>
10638
10639         Patch by: Bastien Nocera  <hadess at hadess net>
10640
10641         * ext/mythtv/gstmythtvsrc.c:
10642           Add examples for live mythtv:// URIs to docs (#468039).
10643           Also convert some tabs into spaces.
10644
10645 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
10646
10647         * gst/filter/gstbpwsinc.c:
10648         * gst/filter/gstlpwsinc.c:
10649         Add small comparision with the chebyshev filters in the docs.
10650
10651 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
10652
10653         * tests/check/elements/bpwsinc.c: (GST_START_TEST),
10654         (bpwsinc_suite):
10655         * tests/check/elements/lpwsinc.c: (GST_START_TEST),
10656         (lpwsinc_suite):
10657         Also test everything in 32 bit float mode.
10658
10659 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
10660
10661         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10662         (bpwsinc_set_property), (bpwsinc_get_property):
10663         * gst/filter/gstbpwsinc.h:
10664         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10665         (gst_lpwsinc_init), (lpwsinc_build_kernel), (lpwsinc_set_property),
10666         (lpwsinc_get_property):
10667         * gst/filter/gstlpwsinc.h:
10668         * tests/check/elements/lpwsinc.c: (GST_START_TEST):
10669         Use generator macros for the process functions for the different
10670         sample types, add lower upper boundaries for the GObject properties
10671         so automatically generated UIs can use sliders and change frequency
10672         properties to floats to save a bit of memory, even ints would in
10673         theory be enough. Also rename frequency to cutoff for consistency
10674         reasons.
10675         * docs/plugins/gst-plugins-bad-plugins.args:
10676         * docs/plugins/gst-plugins-bad-plugins.signals:
10677         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
10678         Regenerated for the above changes.
10679
10680 2007-08-17  Stefan Kost  <ensonic@users.sf.net>
10681
10682         * ext/amrwb/gstamrwbparse.c:
10683           Don't leak the adapter.
10684
10685 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
10686
10687         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10688         (gst_bpwsinc_init), (process_32), (process_64),
10689         (bpwsinc_build_kernel), (bpwsinc_push_residue),
10690         (bpwsinc_transform), (bpwsinc_start), (bpwsinc_query),
10691         (bpwsinc_query_type), (bpwsinc_event), (bpwsinc_set_property):
10692         * gst/filter/gstbpwsinc.h:
10693         Implement latency query and only forward those samples downstream
10694         that actually contain the data we want, i.e. drop kernel_length/2
10695         in the beginning and append kernel_length/2 (created by convolving
10696         the filter kernel with zeroes) to the end.
10697
10698         * tests/check/elements/bpwsinc.c: (GST_START_TEST):
10699         Adjust the unit test for this slightly changed behaviour.
10700
10701         * gst/filter/gstlpwsinc.c: (lpwsinc_build_kernel):
10702         Reset residue length only when actually creating a residue.
10703
10704 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10705
10706         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init):
10707         Override the preroll vmethod instead of overriding the render method
10708         twice.
10709
10710 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10711
10712         * gst/rtpmanager/gstrtpjitterbuffer.c:
10713         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain),
10714         (gst_rtp_jitter_buffer_loop):
10715         Fix EOS handling.
10716         Convert some DEBUG into WARNINGs.
10717         Pause task when flushing.
10718
10719         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10720         (rtcp_thread), (gst_rtp_session_event_recv_rtcp_sink):
10721         Use system clock for RTCP session management timeouts.
10722
10723         * gst/rtpmanager/rtpsession.c: (on_new_ssrc), (on_ssrc_collision),
10724         (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout):
10725         Release the session lock when emiting signals.
10726
10727 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10728
10729         * ext/faad/gstfaad.c: (gst_faad_setcaps),
10730         (gst_faad_chanpos_to_gst):
10731         Add some debug info.
10732
10733 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
10734
10735         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10736         (gst_lpwsinc_init), (process_32), (process_64),
10737         (lpwsinc_build_kernel), (lpwsinc_push_residue),
10738         (lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
10739         (lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
10740         * gst/filter/gstlpwsinc.h:
10741         Implement latency query and only forward those samples downstream
10742         that actually contain the data we want, i.e. drop kernel_length/2
10743         in the beginning and append kernel_length/2 (created by convolving
10744         the filter kernel with zeroes) to the end.
10745         * tests/check/elements/lpwsinc.c: (GST_START_TEST):
10746         Adjust the unit test for this slightly changed behaviour.
10747
10748 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
10749
10750         * ext/ladspa/gstladspa.c:
10751           Don't leak like hell.
10752
10753 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
10754
10755         * tests/check/Makefile.am:
10756         * tests/check/generic/.cvsignore:
10757         * tests/check/generic/states.c:
10758           Add generic state-change test suite to help to fi leaks.
10759
10760 2007-08-15  Stefan Kost  <ensonic@users.sf.net>
10761
10762         * ext/timidity/gstwildmidi.c:
10763         * ext/timidity/gstwildmidi.h:
10764           Look harder for a config. Based on patch by Hans de Goede.
10765           Fixes #456912
10766
10767 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10768
10769         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_flush_unlocked):
10770         Don't use new API.
10771
10772 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10773
10774         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_base_init),
10775         (gst_app_sink_class_init), (gst_app_sink_dispose),
10776         (gst_app_sink_flush_unlocked), (gst_app_sink_start),
10777         (gst_app_sink_stop), (gst_app_sink_event), (gst_app_sink_preroll),
10778         (gst_app_sink_render), (gst_app_sink_get_caps),
10779         (gst_app_sink_set_caps), (gst_app_sink_end_of_stream),
10780         (gst_app_sink_pull_preroll), (gst_app_sink_pull_buffer):
10781         * gst-libs/gst/app/gstappsink.h:
10782         Make love to appsink.
10783         Make it support pulling of the preroll buffer.
10784         Add docs and debug statements.
10785         Fix some races wrt to EOS handling and stopping.
10786         Implement getcaps.
10787         Implement FLUSHING.
10788         API: gst_app_sink_pull_preroll()
10789
10790 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10791
10792         * gst/flv/gstflvdemux.c: (gst_flv_demux_set_index),
10793         (gst_flv_demux_get_index):
10794         Fix locking and refcounting on the index.
10795
10796 2007-08-14  Julien MOUTTE  <julien@moutte.net>
10797
10798         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
10799         (gst_flv_demux_adapter_flush), (gst_flv_demux_chain),
10800         (gst_flv_demux_pull_tag), (gst_flv_demux_do_seek),
10801         (gst_flv_demux_handle_seek), (gst_flv_demux_sink_event),
10802         (gst_flv_demux_src_event), (gst_flv_demux_query),
10803         (gst_flv_demux_change_state), (gst_flv_demux_set_index),
10804         (gst_flv_demux_get_index), (gst_flv_demux_dispose),
10805         (gst_flv_demux_class_init): First method for seeking in pull
10806         mode using the index built step by step or coming from metadata.
10807         * gst/flv/gstflvdemux.h:
10808         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
10809         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
10810         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Parse
10811         more metadata types and keyframes index.
10812
10813 2007-08-13  Sebastian Dröge  <slomo@circular-chaos.org>
10814
10815         * docs/plugins/Makefile.am:
10816         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
10817         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
10818         * docs/plugins/gst-plugins-bad-plugins.args:
10819         * docs/plugins/gst-plugins-bad-plugins.signals:
10820         * docs/plugins/inspect/plugin-bz2.xml:
10821         * docs/plugins/inspect/plugin-cdxaparse.xml:
10822         * docs/plugins/inspect/plugin-dtsdec.xml:
10823         * docs/plugins/inspect/plugin-faac.xml:
10824         * docs/plugins/inspect/plugin-faad.xml:
10825         * docs/plugins/inspect/plugin-filter.xml:
10826         * docs/plugins/inspect/plugin-freeze.xml:
10827         * docs/plugins/inspect/plugin-gsm.xml:
10828         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
10829         * docs/plugins/inspect/plugin-h264parse.xml:
10830         * docs/plugins/inspect/plugin-modplug.xml:
10831         * docs/plugins/inspect/plugin-mpeg2enc.xml:
10832         * docs/plugins/inspect/plugin-musepack.xml:
10833         * docs/plugins/inspect/plugin-musicbrainz.xml:
10834         * docs/plugins/inspect/plugin-nsfdec.xml:
10835         * docs/plugins/inspect/plugin-replaygain.xml:
10836         * docs/plugins/inspect/plugin-soundtouch.xml:
10837         * docs/plugins/inspect/plugin-spcdec.xml:
10838         * docs/plugins/inspect/plugin-spectrum.xml:
10839         * docs/plugins/inspect/plugin-speed.xml:
10840         * docs/plugins/inspect/plugin-tta.xml:
10841         * docs/plugins/inspect/plugin-videosignal.xml:
10842         * docs/plugins/inspect/plugin-xingheader.xml:
10843         * docs/plugins/inspect/plugin-xvid.xml:
10844         * gst/filter/gstbpwsinc.c:
10845         * gst/filter/gstbpwsinc.h:
10846         * gst/filter/gstlpwsinc.c:
10847         * gst/filter/gstlpwsinc.h:
10848         Add docs for lpwsinc and bpwsinc and integrate them
10849         into the build system. While doing that also update
10850         all other docs via make update in docs/plugins.
10851
10852 2007-08-13  Stefan Kost  <ensonic@users.sf.net>
10853
10854         * gst/rtpmanager/rtpjitterbuffer.c:
10855           Include stdlib.
10856
10857 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10858
10859         * tests/check/elements/bpwsinc.c: (GST_START_TEST):
10860         Make one test constraint a bit stricter.
10861
10862 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10863
10864         * tests/check/Makefile.am:
10865         * tests/check/elements/.cvsignore:
10866         * tests/check/elements/bpwsinc.c: (setup_bpwsinc),
10867         (cleanup_bpwsinc), (GST_START_TEST), (bpwsinc_suite), (main):
10868         Add unit tests for bpwsinc, testing fundamental functionality again.
10869
10870 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10871
10872         * tests/check/Makefile.am:
10873         * tests/check/elements/.cvsignore:
10874         * tests/check/elements/lpwsinc.c: (setup_lpwsinc),
10875         (cleanup_lpwsinc), (GST_START_TEST), (lpwsinc_suite), (main):
10876         Add unit tests for lpwsinc, testing fundamental functionality.
10877
10878 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10879
10880         * gst/filter/gstbpwsinc.c: (bpwsinc_build_kernel):
10881         * gst/filter/gstlpwsinc.c: (lpwsinc_build_kernel):
10882         Improve debugging a bit.
10883
10884 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10885
10886         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10887         (bpwsinc_start):
10888         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10889         (lpwsinc_start):
10890         Reset the residue in BaseTransform::start to get a clean residue
10891         on stream changes.
10892
10893 2007-08-11  Sebastian Dröge  <slomo@circular-chaos.org>
10894
10895         * gst/filter/gstbpwsinc.c: (process_32), (process_64):
10896         * gst/filter/gstlpwsinc.c: (process_32), (process_64):
10897         Fix processing with buffer sizes that are smaller than the filter
10898         kernel size.
10899
10900 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
10901
10902         * gst/rtpmanager/Makefile.am:
10903         * gst/rtpmanager/async_jitter_queue.c:
10904         * gst/rtpmanager/async_jitter_queue.h:
10905         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_class_init),
10906         (rtp_jitter_buffer_init), (rtp_jitter_buffer_finalize),
10907         (rtp_jitter_buffer_new), (compare_seqnum),
10908         (rtp_jitter_buffer_insert), (rtp_jitter_buffer_pop),
10909         (rtp_jitter_buffer_flush), (rtp_jitter_buffer_num_packets),
10910         (rtp_jitter_buffer_get_ts_diff):
10911         * gst/rtpmanager/rtpjitterbuffer.h:
10912         Remove complicated async queue and replace with more simple jitterbuffer
10913         code while also fixing some bugs.
10914
10915         * gst/rtpmanager/gstrtpbin-marshal.list:
10916         * gst/rtpmanager/gstrtpbin.c: (on_new_ssrc), (on_ssrc_collision),
10917         (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout),
10918         (create_session), (gst_rtp_bin_class_init), (create_recv_rtp),
10919         (create_send_rtp):
10920         * gst/rtpmanager/gstrtpbin.h:
10921         * gst/rtpmanager/gstrtpjitterbuffer.c:
10922         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_dispose),
10923         (gst_jitter_buffer_sink_parse_caps),
10924         (gst_rtp_jitter_buffer_flush_start),
10925         (gst_rtp_jitter_buffer_flush_stop),
10926         (gst_rtp_jitter_buffer_change_state),
10927         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain),
10928         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property):
10929         * gst/rtpmanager/gstrtpsession.c: (on_new_ssrc),
10930         (on_ssrc_collision), (on_ssrc_validated), (on_bye_ssrc),
10931         (on_bye_timeout), (on_timeout), (gst_rtp_session_class_init),
10932         (gst_rtp_session_init):
10933         * gst/rtpmanager/gstrtpsession.h:
10934         * gst/rtpmanager/rtpsession.c: (on_bye_ssrc), (session_cleanup):
10935         Use new jitterbuffer code.
10936         Expose some new signals in preparation for handling EOS.
10937
10938 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10939
10940         * gst/filter/gstbpwsinc.c: (bpwsinc_build_kernel):
10941         Fix a segfault with more than one channel and don't rebuild
10942         the kernel & residue with every buffer.
10943
10944 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10945
10946         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_mode_get_type),
10947         (gst_bpwsinc_window_get_type), (gst_bpwsinc_class_init),
10948         (gst_bpwsinc_init), (bpwsinc_build_kernel), (bpwsinc_set_property),
10949         (bpwsinc_get_property):
10950         * gst/filter/gstbpwsinc.h:
10951         Add support for a bandreject mode and allow specifying the window
10952         function that should be used.
10953         * gst/filter/gstlpwsinc.c:
10954         And another small formatting fix.
10955
10956 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10957
10958         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10959         (gst_bpwsinc_init), (process_32), (process_64),
10960         (bpwsinc_build_kernel), (bpwsinc_setup), (bpwsinc_get_unit_size),
10961         (bpwsinc_transform), (bpwsinc_set_property),
10962         (bpwsinc_get_property):
10963         * gst/filter/gstbpwsinc.h:
10964         Apply the same changes to the bandpass filter:
10965          - Support double input
10966          - Fix processing for input with >1 channels
10967          - Specify frequency in Hz
10968          - Specify actual filter kernel length
10969          - Use transform instead of transform_ip as we're working
10970            out of place anyway
10971          - Factor out filter kernel generation and update the filter
10972            kernel when the properties are set
10973         Fix bandpass filter kernel generation to actually generate
10974         a bandpass filter by creating a highpass instead of a second
10975         lowpass.
10976         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
10977         Small formatting fix.
10978
10979 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10980
10981         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10982         (gst_lpwsinc_init), (process_32), (process_64),
10983         (lpwsinc_build_kernel), (lpwsinc_set_property),
10984         (lpwsinc_get_property):
10985         * gst/filter/gstlpwsinc.h:
10986         Specify the actual filter length instead of a weird
10987         2N+1. Setting the property will round to the next odd number.
10988         Also remove now obsolete FIXMEs.
10989
10990 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10991
10992         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_window_get_type),
10993         (gst_lpwsinc_class_init), (gst_lpwsinc_init),
10994         (lpwsinc_build_kernel), (lpwsinc_set_property),
10995         (lpwsinc_get_property):
10996         * gst/filter/gstlpwsinc.h:
10997         Allow choosing between hamming and blackman window. The blackman
10998         window provides a better stopband attenuation but a bit slower
10999         rolloff.
11000
11001 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
11002
11003         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_mode_get_type),
11004         (gst_lpwsinc_class_init), (process_32), (process_64),
11005         (lpwsinc_build_kernel), (lpwsinc_set_property),
11006         (lpwsinc_get_property):
11007         * gst/filter/gstlpwsinc.h:
11008         Add a highpass mode.
11009
11010 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
11011
11012         * gst/filter/gstlpwsinc.c: (process_32), (process_64),
11013         (lpwsinc_build_kernel):
11014         Fix processing if the input has more than one channel.
11015
11016 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
11017
11018         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
11019         (gst_bpwsinc_init), (bpwsinc_setup), (bpwsinc_transform_ip),
11020         (bpwsinc_set_property), (bpwsinc_get_property):
11021         "this" is a C++ keyword, use "self" instead.
11022         Add TODOs and FIXMEs and remove two wrong FIXMEs.
11023         * gst/filter/gstlpwsinc.c:
11024         Add FIXMEs and a new TODO.
11025
11026 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
11027
11028         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
11029         (gst_lpwsinc_class_init), (gst_lpwsinc_init), (process_32),
11030         (process_64), (lpwsinc_build_kernel), (lpwsinc_setup),
11031         (lpwsinc_get_unit_size), (lpwsinc_transform),
11032         (lpwsinc_set_property), (lpwsinc_get_property):
11033         * gst/filter/gstlpwsinc.h:
11034         Add double support, replace "this" with "self" as the former
11035         is a C++ keyword.
11036         Implement the frequency property in Hz instead of fraction
11037         of sampling frequency.
11038         Remove some unecessary FIXMEs and add some TODOs, add some
11039         required locking and refactor the kernel generation into a
11040         separate function that is also called when the properties
11041         change now.
11042         And use BaseTransform::transform instead of transform_ip
11043         as the convolution is done out of place anyway. Should
11044         be done in place later.
11045
11046 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
11047
11048         * configure.ac:
11049         * gst/stereo/Makefile.am:
11050         * gst/stereo/gststereo.c: (gst_stereo_base_init),
11051         (gst_stereo_class_init), (gst_stereo_init),
11052         (gst_stereo_transform_ip), (gst_stereo_set_property),
11053         (gst_stereo_get_property):
11054         * gst/stereo/gststereo.h:
11055         Port the stereo element to GStreamer 0.10.
11056
11057 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11058
11059         submitted by: Raphael Higino <phhigino@gmail.com>
11060
11061         * po/LINGUAS:
11062         * po/pt_BR.po:
11063           Added Portuguese (Brazilian) translation.
11064
11065 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11066
11067         * po/uk.po:
11068         * po/vi.po:
11069           Updated translations.
11070
11071 2007-08-08  Sebastian Dröge  <slomo@circular-chaos.org>
11072
11073         * gst/filter/Makefile.am:
11074         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
11075         (gst_bpwsinc_base_init), (gst_bpwsinc_class_init),
11076         (gst_bpwsinc_init), (bpwsinc_setup):
11077         * gst/filter/gstbpwsinc.h:
11078         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
11079         (gst_lpwsinc_base_init), (gst_lpwsinc_class_init),
11080         (gst_lpwsinc_init), (lpwsinc_setup):
11081         * gst/filter/gstlpwsinc.h:
11082         Use GstAudioFilter as base class and don't leak the memory
11083         of the filter kernel and residue.
11084
11085 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
11086
11087         Patch by: Josep Torra Valles <josep@fluendo.com>
11088
11089         * docs/plugins/gst-plugins-bad-plugins.args:
11090         * ext/libmms/gstmms.c: (gst_mms_class_init), (gst_mms_init),
11091         (gst_mms_start), (gst_mms_set_property), (gst_mms_get_property):
11092         * ext/libmms/gstmms.h:
11093         Add connection speed property to libmms. Fixes #464678.
11094
11095 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
11096
11097         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
11098         (gst_real_video_dec_activate_push), (open_library),
11099         (gst_real_video_dec_init), (gst_real_video_dec_finalize):
11100         * gst/real/gstrealvideodec.h:
11101         Remove some old unused vars.
11102
11103 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
11104
11105         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
11106         Small cleanups.
11107
11108         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
11109         (open_library):
11110         Remove fragment and timestamp correction code from the decoder to make
11111         the caps and buffer contents compatible with matroska/ffdec_rvx0/...
11112
11113 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
11114
11115         * po/POTFILES.skip:
11116           Add POTFILES.skip with list of source files that aren't disted at the
11117           moment but contain translatable strings. Should hopefully pacify
11118           broken tools and make it clearer that these files are left out
11119           intentionally (#461601 and others).
11120
11121 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
11122
11123         Patch by: Ian Munro  <imunro at netspace net au>
11124
11125         * gst/bayer/gstbayer2rgb.c:
11126           Include our own "_stdint.h" instead of <stdint.h> (which may not
11127           be available).
11128
11129         * gst/speed/gstspeed.h:
11130           Native HP-UX compiler dosn't seem to like enum typedefs before the
11131           actual enum was defined.
11132
11133         * gst/vmnc/vmncdec.c:
11134           Fix wrong usage of GST_ELEMENT_ERROR macro (#461373).
11135
11136 2007-07-26  Edward Hervey  <bilboed@bilboed.com>
11137
11138         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
11139         Use the proper context variable when setting the password !
11140         LOG => WARNING for errors.
11141         Give proper path when opening the codec (needs a '/' at the end).
11142
11143 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
11144
11145         * gst/real/Makefile.am:
11146           And dist the new header file too.
11147
11148 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
11149
11150         * gst/real/gstreal.h:
11151         Add missing header file.
11152
11153 2007-07-25  Julien MOUTTE  <julien@moutte.net>
11154
11155         (gst_flv_demux_chain), (gst_flv_demux_pull_tag),
11156         (gst_flv_demux_change_state), (gst_flv_demux_dispose),
11157         (gst_flv_demux_init):
11158         * gst/flv/gstflvdemux.h:
11159         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
11160         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
11161         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
11162         (gst_flv_parse_header):
11163         * gst/flv/gstflvparse.h: Handle not linked pads, try to make it
11164         reusable, more safety checks.
11165
11166 2007-07-25  Stefan Kost  <ensonic@users.sf.net>
11167
11168         * ext/timidity/gsttimidity.c: (gst_timidity_init),
11169         (gst_timidity_change_state), (plugin_init):
11170         * ext/timidity/gsttimidity.h:
11171           Don't initialize timidity in plugin_init for similar reason as below.
11172
11173 2007-07-24  Stefan Kost  <ensonic@users.sf.net>
11174
11175         * ext/timidity/gstwildmidi.c: (wildmidi_open_config),
11176         (gst_wildmidi_init), (gst_wildmidi_change_state), (plugin_init):
11177         * ext/timidity/gstwildmidi.h:
11178           Don't initialize wildmidi in plugin_init as it also setups audio
11179           filters which is slow.
11180
11181 2007-07-24  Hans de Goede  <j.w.r.degoede@hhs.nl>
11182
11183         reviewed by: Edward Hervey  <bilboed@bilboed.com>
11184
11185         * gst/real/gstreal.c: (plugin_init):
11186         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
11187         (gst_real_audio_dec_finalize), (gst_real_audio_dec_set_property),
11188         (gst_real_audio_dec_get_property), (gst_real_audio_dec_class_init):
11189         * gst/real/gstrealvideodec.c: (open_library),
11190         (gst_real_video_dec_finalize), (gst_real_video_dec_set_property),
11191         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
11192         * gst/real/gstrealvideodec.h:
11193         Improved search algorithm for location of real .so files.
11194         Fixes #393461
11195
11196 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
11197
11198         * configure.ac:
11199         * ext/faad/gstfaad.c: (gst_faad_chain), (gst_faad_change_state):
11200         Use the new buffer clipping function from gstaudio here and
11201         require gst-plugins-base CVS.
11202
11203 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
11204
11205         * configure.ac:
11206           Sync liboil check with plugins-base.
11207
11208 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
11209
11210         * gst/equalizer/gstiirequalizer.c:
11211         (gst_iir_equalizer_band_set_property),
11212         (gst_iir_equalizer_child_proxy_get_child_by_index),
11213         (gst_iir_equalizer_child_proxy_get_children_count),
11214         (gst_iir_equalizer_child_proxy_interface_init),
11215         (gst_iir_equalizer_class_init), (arg_to_scale), (setup_filter),
11216         (gst_iir_equalizer_compute_frequencies):
11217         * gst/equalizer/gstiirequalizer10bands.c:
11218         (gst_iir_equalizer_10bands_class_init):
11219         * gst/equalizer/gstiirequalizer3bands.c:
11220         (gst_iir_equalizer_3bands_class_init):
11221         * gst/equalizer/gstiirequalizernbands.c:
11222           Better algorith for the center frequencies. Subtract band filters from
11223           input for negative gains. Rework the gain mapping.
11224
11225 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
11226
11227         * ext/dirac/Makefile.am:
11228           Also include stdlib here.
11229
11230 2007-07-19  Jan Schmidt  <thaytan@noraisin.net>
11231
11232         * tests/check/elements/.cvsignore:
11233         Fix the buildbot with the cvsignore it wants.
11234
11235 2007-07-19  Julien MOUTTE  <julien@moutte.net>
11236
11237         * configure.ac:
11238         * gst/flv/Makefile.am:
11239         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
11240         (gst_flv_demux_cleanup), (gst_flv_demux_chain),
11241         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header),
11242         (gst_flv_demux_seek_to_prev_keyframe), (gst_flv_demux_loop),
11243         (gst_flv_demux_sink_activate), (gst_flv_demux_sink_activate_push),
11244         (gst_flv_demux_sink_activate_pull), (gst_flv_demux_sink_event),
11245         (gst_flv_demux_change_state), (gst_flv_demux_dispose),
11246         (gst_flv_demux_base_init), (gst_flv_demux_class_init),
11247         (gst_flv_demux_init), (plugin_init):
11248         * gst/flv/gstflvdemux.h:
11249         * gst/flv/gstflvparse.c: (FLV_GET_BEUI24), (FLV_GET_STRING),
11250         (gst_flv_demux_query_types), (gst_flv_demux_query),
11251         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
11252         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
11253         (gst_flv_parse_tag_type), (gst_flv_parse_header):
11254         * gst/flv/gstflvparse.h: Adds a first draft of an FLV demuxer.
11255         It does not do seeking yet, it supports pull and push mode so YES
11256         you can use it to play youtube videos directly from an HTTP uri.
11257         Not so much testing done yet but it parses metadata, reply to 
11258         duration queries, etc...
11259
11260 2007-07-19  Stefan Kost  <ensonic@users.sf.net>
11261
11262         * tests/check/Makefile.am:
11263         * tests/check/elements/timidity.c (GST_START_TEST, timidity_suite,
11264           main):
11265           Add typefind test for midi.
11266
11267 2007-07-18  Michael Smith  <msmith@fluendo.com>
11268
11269         * ext/soundtouch/gstpitch.cc:
11270           If we receive a new segment event, don't try to push buffers out
11271           in response (without first sending it on!).
11272           Instead, flush internal buffers on receiving flush events.
11273           Fixes playback after seeking.
11274
11275 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11276
11277         * gst/bayer/gstbayer2rgb.c: (gst_bayer2rgb_set_caps),
11278         (gst_bayer2rgb_reset):
11279           Add basic docs. Use glibs mem routines.
11280
11281 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11282
11283         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
11284           Add example to the docs. Fix buffer-offset-end and add some debug.
11285
11286 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11287
11288         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
11289         (gst_jack_ring_buffer_acquire):
11290           Add stdlib include here too.
11291
11292 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11293
11294         * examples/app/appsrc_ex.c:
11295         * examples/switch/switcher.c:
11296         * ext/neon/gstneonhttpsrc.c:
11297         * ext/timidity/gstwildmidi.c:
11298         * ext/x264/gstx264enc.c:
11299         * gst/mve/mveaudioenc.c: (mve_compress_audio):
11300         * gst/rtpmanager/gstrtpclient.c:
11301         * gst/rtpmanager/gstrtpjitterbuffer.c:
11302         * gst/spectrum/demo-audiotest.c:
11303         * gst/spectrum/demo-osssrc.c:
11304         * sys/dvb/gstdvbsrc.c:
11305           Add stdlib include (free, atoi, exit).
11306
11307 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
11308
11309         * ext/faad/gstfaad.c: (clip_outgoing_buffer):
11310         Fix buffer clipping to correctly clip to the segment stop.
11311
11312 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
11313
11314         Patch by: Hans de Goede <j.w.r.degoede at hhs dot nl>
11315
11316         * gst/modplug/gstmodplug.cc:
11317         add several missing supported mime-types to the modplug plugin.
11318         Fixes #456901.
11319
11320 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
11321
11322         * configure.ac:
11323         * tests/Makefile.am:
11324         Remove bogus check for libcheck, since we check for
11325         gstreamer-check and it pulls in the required info from there, and we
11326         weren't actually _using_ the information for libcheck ourselves
11327         anyway.
11328
11329 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
11330
11331         * configure.ac:
11332           Use pkg-config to locate check.
11333
11334 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
11335
11336         * gst/interleave/deinterleave.c: (gst_deinterleave_process):
11337         * gst/vmnc/vmncdec.c: (vmnc_make_buffer):
11338           Fix build against core CVS.
11339
11340 2007-07-09  Stefan Kost  <ensonic@users.sf.net>
11341
11342         * REQUIREMENTS:
11343           Sync with changes in -ugly.
11344
11345 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
11346
11347         * REQUIREMENTS:
11348           Add download location of libamrwb.
11349
11350 2007-07-06  Tim-Philipp Müller  <tim at centricular dot net>
11351
11352         * docs/plugins/inspect/plugin-amrwb.xml:
11353         * docs/plugins/inspect/plugin-equalizer.xml:
11354         * docs/plugins/inspect/plugin-multifile.xml:
11355         * docs/plugins/inspect/plugin-timidity.xml:
11356         * docs/plugins/inspect/plugin-wildmidi.xml:
11357           Add missing inspect files. Fixes build (#454313).
11358
11359         * ext/timidity/gstwildmidi.c: (wildmidi_open_config):
11360           Scream a bit louder when initialisation fails.
11361
11362         * gst-libs/README:
11363         * gst-libs/ext/.cvsignore:
11364           Remove some cruft.
11365
11366 2007-07-05  Tim-Philipp Müller  <tim at centricular dot net>
11367
11368         * ext/ivorbis/Makefile.am:
11369           Dist header files. Fixes #454078.
11370
11371 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
11372
11373         * docs/plugins/Makefile.am:
11374           Simplify --extra-dir as gtkdoc scans recursively.
11375
11376         * ext/amrwb/gstamrwbenc.c:
11377           Fix comment start.
11378
11379 2007-07-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11380
11381         * sys/dvb/gstdvbsrc.c (dvbsrc_details, ARG_DVBSRC_ADAPTER,
11382           ARG_DVBSRC_FRONTEND, ARG_DVBSRC_DISEQC_SRC, ARG_DVBSRC_FREQUENCY,
11383           ARG_DVBSRC_POLARITY, gst_dvbsrc_class_init, gst_dvbsrc_init,
11384           gst_dvbsrc_set_property, gst_dvbsrc_get_property,
11385           gst_dvbsrc_open_frontend, gst_dvbsrc_open_dvr, read_device,
11386           gst_dvbsrc_create, gst_dvbsrc_set_pes_filters):
11387         * sys/dvb/gstdvbsrc.h (adapter_number, frontend_number):
11388         Removed property "device". Added properties "adapter" and "frontend".
11389         Fixes #453636.
11390         Rename freq property to frequency.
11391
11392 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
11393
11394         * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
11395         Fix property descriptions.
11396
11397 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11398
11399         * docs/plugins/Makefile.am:
11400         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11401         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11402         * ext/amrwb/gstamrwbdec.c:
11403         * ext/amrwb/gstamrwbenc.c:
11404         * ext/amrwb/gstamrwbparse.c:
11405           Also document AMR-WB elements.
11406
11407 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11408
11409         * docs/plugins/Makefile.am:
11410         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11411         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11412         * docs/plugins/gst-plugins-bad-plugins.args:
11413           Cleanup the section file so that -unused is empty again (and useful to
11414           spot new docs). Add not yet added docs to sgml file. Add more header
11415           to Makefile.am to make them introspectable.
11416
11417         * docs/plugins/inspect/plugin-bz2.xml:
11418         * docs/plugins/inspect/plugin-cdxaparse.xml:
11419         * docs/plugins/inspect/plugin-dtsdec.xml:
11420         * docs/plugins/inspect/plugin-faac.xml:
11421         * docs/plugins/inspect/plugin-faad.xml:
11422         * docs/plugins/inspect/plugin-filter.xml:
11423         * docs/plugins/inspect/plugin-freeze.xml:
11424         * docs/plugins/inspect/plugin-gdp.xml:
11425         * docs/plugins/inspect/plugin-gsm.xml:
11426         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
11427         * docs/plugins/inspect/plugin-h264parse.xml:
11428         * docs/plugins/inspect/plugin-modplug.xml:
11429         * docs/plugins/inspect/plugin-musicbrainz.xml:
11430         * docs/plugins/inspect/plugin-nsfdec.xml:
11431         * docs/plugins/inspect/plugin-replaygain.xml:
11432         * docs/plugins/inspect/plugin-spectrum.xml:
11433         * docs/plugins/inspect/plugin-speed.xml:
11434         * docs/plugins/inspect/plugin-tta.xml:
11435         * docs/plugins/inspect/plugin-videosignal.xml:
11436         * docs/plugins/inspect/plugin-xingheader.xml:
11437         * docs/plugins/inspect/plugin-xvid.xml:
11438           Update the doc blobs.
11439
11440 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11441
11442         * gst/multifile/Makefile.am:
11443         * gst/multifile/gstmultifile.c:
11444         * gst/multifile/gstmultifilesink.c:
11445         * gst/multifile/gstmultifilesink.h:
11446         * gst/multifile/gstmultifilesrc.c:
11447         * gst/multifile/gstmultifilesrc.h:
11448           Add .h files to be able to add it to the docs.
11449
11450 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11451
11452         * gst/modplug/gstmodplug.cc:
11453           Activate doc section.
11454
11455 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11456
11457         * ext/timidity/gsttimidity.c:
11458         * ext/timidity/gstwildmidi.c:
11459         * ext/timidity/gstwildmidi.h:
11460           Fix licence (both are GPL). Add element docs.
11461
11462 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11463
11464         * ext/musicbrainz/gsttrm.h:
11465           Fix _get_type signature.
11466
11467 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11468
11469         * gst/replaygain/gstrgvolume.h:
11470           Fix GObject macros.
11471
11472 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11473
11474         * ext/dc1394/gstdc1394.c: (gst_dc1394_src_fixate),
11475         (gst_dc1394_create), (gst_dc1394_caps_set_format_vmode_caps),
11476         (gst_dc1394_set_caps_framesize_range),
11477         (gst_dc1394_caps_set_framerate_list), (gst_dc1394_get_cam_caps),
11478         (gst_dc1394_framerate_frac_to_const),
11479         (gst_dc1394_open_cam_with_best_caps):
11480         Make a bunch of functions static, and move variable declarations
11481         to the start of blocks to avoid problems on older gcc.
11482
11483         Make sure to unset value types.
11484
11485 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11486
11487         * ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
11488
11489         The correct fourcc for the 4:1:1 packed format is 'IYU1'.
11490         With CVS of ffmpegcolorspace from plugins-base, I can now
11491         get 30 fps from the iSight.
11492
11493 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11494
11495         * ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
11496         Change a g_print to a GST_DEBUG message.
11497
11498 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11499
11500         * configure.ac:
11501         * ext/Makefile.am:
11502         * ext/dc1394/Makefile.am:
11503         * ext/dc1394/gstdc1394.c: (gst_dc1394_base_init),
11504         (gst_dc1394_class_init), (gst_dc1394_init),
11505         (gst_dc1394_src_fixate), (gst_dc1394_set_property),
11506         (gst_dc1394_get_property), (gst_dc1394_getcaps),
11507         (gst_dc1394_setcaps), (gst_dc1394_get_times), (gst_dc1394_create),
11508         (gst_dc1394_parse_caps), (gst_dc1394_change_state),
11509         (gst_dc1394_caps_set_format_vmode_caps),
11510         (gst_dc1394_set_caps_color), (gst_dc1394_set_caps_framesize),
11511         (gst_dc1394_set_caps_framesize_range),
11512         (gst_dc1394_caps_set_framerate_list),
11513         (gst_dc1394_framerate_const_to_frac),
11514         (gst_dc1394_get_all_dc1394_caps), (gst_dc1394_get_cam_caps),
11515         (gst_dc1394_framerate_frac_to_const),
11516         (gst_dc1394_open_cam_with_best_caps),
11517         (gst_dc1394_change_camera_transmission), (plugin_init):
11518         * ext/dc1394/gstdc1394.h:
11519         Commit new dc1394src element.
11520         Patch By: Antoine Tremblay < hexa00 at gmail dot com >
11521         Patch By: Eric Jonas < jonas at mit dot edu >
11522         Close: #387251
11523
11524 2007-06-28  Wim Taymans  <wim@fluendo.com>
11525
11526         * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
11527         Register new property as well.
11528
11529 2007-06-28  Wim Taymans  <wim@fluendo.com>
11530
11531         * gst/videosignal/gstvideodetect.c: (gst_video_detect_420),
11532         (gst_video_detect_set_property), (gst_video_detect_get_property):
11533         * gst/videosignal/gstvideodetect.h:
11534         Add property to adjust the center, sensitivity is now the distance from
11535         this center.
11536
11537 2007-06-27  Wim Taymans  <wim@fluendo.com>
11538
11539         * gst/videosignal/gstvideodetect.c: (gst_video_detect_420),
11540         (gst_video_detect_set_property), (gst_video_detect_get_property),
11541         (gst_video_detect_class_init):
11542         * gst/videosignal/gstvideodetect.h:
11543         * gst/videosignal/gstvideomark.c: (gst_video_mark_draw_box),
11544         (gst_video_mark_420), (gst_video_mark_set_property),
11545         (gst_video_mark_get_property), (gst_video_mark_class_init):
11546         * gst/videosignal/gstvideomark.h:
11547         Add left and bottom offset properties to control the position of the
11548         pattern.
11549
11550 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
11551
11552         * docs/plugins/gst-plugins-bad-plugins.args:
11553         * docs/plugins/inspect/plugin-alsaspdif.xml:
11554         * docs/plugins/inspect/plugin-bz2.xml:
11555         * docs/plugins/inspect/plugin-cdxaparse.xml:
11556         * docs/plugins/inspect/plugin-dtsdec.xml:
11557         * docs/plugins/inspect/plugin-faac.xml:
11558         * docs/plugins/inspect/plugin-faad.xml:
11559         * docs/plugins/inspect/plugin-filter.xml:
11560         * docs/plugins/inspect/plugin-freeze.xml:
11561         * docs/plugins/inspect/plugin-gdp.xml:
11562         * docs/plugins/inspect/plugin-glimagesink.xml:
11563         * docs/plugins/inspect/plugin-gsm.xml:
11564         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
11565         * docs/plugins/inspect/plugin-h264parse.xml:
11566         * docs/plugins/inspect/plugin-jack.xml:
11567         * docs/plugins/inspect/plugin-mms.xml:
11568         * docs/plugins/inspect/plugin-modplug.xml:
11569         * docs/plugins/inspect/plugin-musicbrainz.xml:
11570         * docs/plugins/inspect/plugin-neon.xml:
11571         * docs/plugins/inspect/plugin-nsfdec.xml:
11572         * docs/plugins/inspect/plugin-replaygain.xml:
11573         * docs/plugins/inspect/plugin-sdl.xml:
11574         * docs/plugins/inspect/plugin-spectrum.xml:
11575         * docs/plugins/inspect/plugin-speed.xml:
11576         * docs/plugins/inspect/plugin-tta.xml:
11577         * docs/plugins/inspect/plugin-videosignal.xml:
11578         * docs/plugins/inspect/plugin-xingheader.xml:
11579         * docs/plugins/inspect/plugin-xvid.xml:
11580           Update docs with caps info.
11581
11582 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
11583
11584         * gconf/.cvsignore:
11585         * gconf/Makefile.am:
11586         * gconf/gstreamer.schemas.in:
11587           Remove dysfunctional directory (this stuff is in -good).
11588
11589         * ext/sndfile/gstsf.c: (plugin_init):
11590         * sys/dvb/gstdvbsrc.c: (plugin_init):
11591           Add i18n bindtextdomain stuff.
11592
11593         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_class_init),
11594         (plugin_init):
11595           Post an error message when returning GST_FLOW_ERROR; minor cleanups.
11596
11597         * po/POTFILES.in:
11598           Add more source files with translatable strings (fixes #450605).
11599
11600 2007-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11601
11602         Contributed by: Wenzheng Hu <db_lobster@163.com>
11603
11604         * po/LINGUAS:
11605         * po/zh_CN.po:
11606           Added Chinese (simplified) translation.
11607
11608 2007-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11609
11610         Patch by: Jens Granseuer  <jensgr at gmx net>
11611
11612         * gst/equalizer/gstiirequalizer.c:
11613         * gst/equalizer/gstiirequalizer10bands.c:
11614         * gst/equalizer/gstiirequalizer3bands.c:
11615         * gst/equalizer/gstiirequalizernbands.c:
11616         * gst/rtpmanager/async_jitter_queue.c:
11617         (async_jitter_queue_push_sorted):
11618         * gst/rtpmanager/gstrtpjitterbuffer.c:
11619         (gst_rtp_jitter_buffer_chain):
11620         * gst/switch/gstswitch.c: (gst_switch_chain):
11621           Build fixes for gcc-2.9x (no mid-block variable declarations etc.).
11622           Fixes #450185.
11623
11624 2007-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11625
11626         * examples/switch/switcher.c (my_bus_callback, switch_timer,
11627           last_message_received, main):
11628         * gst/switch/gstswitch.c (gst_switch_release_pad,
11629           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
11630           gst_switch_set_property, gst_switch_get_property,
11631           gst_switch_get_linked_pad, gst_switch_getcaps,
11632           gst_switch_bufferalloc, gst_switch_dispose, gst_switch_init):
11633         * gst/switch/gstswitch.h (switch_mutex, GST_SWITCH_LOCK,
11634           GST_SWITCH_UNLOCK):
11635         Add an extra lock to protect against certain variables instead of
11636         using the object lock. Fix case where caps are different in the
11637         sink pads causes deadlock. Update example to use different caps
11638         on each sink pad.
11639
11640 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
11641
11642         * MAINTAINERS:
11643         Updating all the maintainers files
11644
11645 2007-06-22  Edward Hervey  <edward@fluendo.com>
11646
11647         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_init):
11648         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_init):
11649         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_init):
11650         * ext/audioresample/gstaudioresample.c:
11651         * ext/bz2/gstbz2dec.c: (gst_bz2dec_init):
11652         * ext/bz2/gstbz2enc.c: (gst_bz2enc_init):
11653         * ext/divx/gstdivxdec.c: (gst_divxdec_init):
11654         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
11655         * ext/faac/gstfaac.c: (gst_faac_init):
11656         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init):
11657         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init):
11658         * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_init):
11659         * ext/lcs/gstcolorspace.c: (gst_colorspace_init):
11660         * ext/libfame/gstlibfame.c: (gst_fameenc_init):
11661         * ext/snapshot/gstsnapshot.c: (gst_snapshot_init):
11662         * ext/spc/gstspc.c: (gst_spc_dec_init):
11663         * ext/swfdec/gstswfdec.c: (gst_swfdec_init):
11664         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init):
11665         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_init):
11666         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
11667         * gst/chart/gstchart.c: (gst_chart_init):
11668         * gst/colorspace/gstcolorspace.c: (gst_colorspace_init):
11669         * gst/festival/gstfestival.c: (gst_festival_init):
11670         * gst/freeze/gstfreeze.c: (gst_freeze_init):
11671         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_request_new_pad):
11672         * gst/mpeg1sys/gstmpeg1systemencode.c: (gst_system_encode_init):
11673         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
11674         * gst/nsf/gstnsf.c: (gst_nsfdec_init):
11675         * gst/overlay/gstoverlay.c: (gst_overlay_init):
11676         * gst/passthrough/gstpassthrough.c: (passthrough_init):
11677         * gst/playondemand/gstplayondemand.c: (play_on_demand_init):
11678         * gst/smooth/gstsmooth.c: (gst_smooth_init):
11679         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
11680         * gst/speed/gstspeed.c: (speed_init):
11681         * gst/vbidec/gstvbidec.c: (gst_vbidec_init):
11682         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
11683         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
11684         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
11685         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_init):
11686         Fix leaks.
11687
11688 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
11689
11690         * RELEASE:
11691         * sys/Makefile.am:
11692           Re-enable VCD source and fix up release notes.
11693
11694 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11695
11696         * gst/equalizer/gstiirequalizer.c:
11697           Document parameter mapping.
11698
11699 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11700
11701         * gst/spectrum/gstspectrum.c: (gst_spectrum_event),
11702         (gst_spectrum_transform_ip):
11703           Fix leaking buffers.
11704           
11705         * tests/check/Makefile.am:
11706         * tests/check/elements/spectrum.c: (setup_spectrum),
11707         (cleanup_spectrum), (GST_START_TEST), (spectrum_suite), (main):
11708           Add simple test for spectrum element.
11709
11710 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11711
11712         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init),
11713         (gst_amrwbdec_class_init), (gst_amrwbdec_finalize),
11714         (gst_amrwbdec_event), (gst_amrwbdec_chain),
11715         (gst_amrwbdec_state_change):
11716         * ext/amrwb/gstamrwbdec.h:
11717         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init),
11718         (gst_amrwbparse_pull_header), (gst_amrwbparse_loop):
11719           Add newsegment and discont handling. Some code cleanups. Don't leak
11720           the adapter, unref it in a new finalize method instead. Sync the
11721           parser with the amr-nb changes.
11722
11723 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
11724
11725         * configure.ac:
11726         Back to CVS.
11727
11728         * gst-plugins-bad.doap:
11729         Add 0.10.5 to the doap file.
11730
11731 === release 0.10.5 ===
11732
11733 2007-06-19  Jan Schmidt <thaytan@mad.scientist.com>
11734
11735         * configure.ac:
11736           releasing 0.10.5, "Expedition to Lake Pahoe"
11737
11738 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
11739
11740         * win32/vs6/gst_plugins_bad.dsw:
11741         * win32/vs6/libdshowsrcwrapper.dsp:
11742         * win32/vs6/libgstdshow.dsp:
11743         * win32/vs6/libgstmpegvideoparse.dsp:
11744         * win32/vs6/libgstneon.dsp:
11745         Convert line endings to CRLF and mark as binary files.
11746
11747 2007-06-13  Wim Taymans  <wim@fluendo.com>
11748
11749         * sys/Makefile.am:
11750         Disable VCD build because we're frozen..
11751
11752 2007-06-13  Wim Taymans  <wim@fluendo.com>
11753
11754         * configure.ac:
11755         * sys/Makefile.am:
11756         * sys/vcd/Makefile.am:
11757         * sys/vcd/vcdsrc.c: (gst_vcdsrc_setup_interfaces),
11758         (gst_vcdsrc_base_init), (gst_vcdsrc_class_init), (gst_vcdsrc_init),
11759         (gst_vcdsrc_msf), (gst_vcdsrc_recalculate),
11760         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
11761         (gst_vcdsrc_create), (gst_vcdsrc_start), (gst_vcdsrc_stop),
11762         (gst_vcdsrc_uri_set_uri):
11763         * sys/vcd/vcdsrc.h:
11764         Port VCD element.
11765
11766 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
11767
11768         * win32/MANIFEST:
11769         Add megvideoparse, libdshow and dshowsrcwrapper to win32
11770         MANIFEST.
11771         * win32/vs6/gst_plugins_bad.dsw:
11772         Remove qtdemux, directdraw, directsound and waveform project files
11773         from the workspace as they have been moved to -good.
11774
11775 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11776
11777         * po/POTFILES.in:
11778         Remove qtdemux from the translation list.
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         * docs/plugins/inspect/plugin-osxvideo.xml:
11787         * docs/plugins/inspect/plugin-videocrop.xml:
11788         * gst-plugins-bad.spec.in:
11789         * gst/videocrop/Makefile.am:
11790         * gst/videocrop/gstvideocrop.c:
11791         * gst/videocrop/gstvideocrop.h:
11792         * gst/videocrop/videocrop.vcproj:
11793         * sys/Makefile.am:
11794         * sys/osxvideo/Makefile.am:
11795         * sys/osxvideo/cocoawindow.h:
11796         * sys/osxvideo/cocoawindow.m:
11797         * sys/osxvideo/osxvideosink.h:
11798         * sys/osxvideo/osxvideosink.m:
11799         * tests/check/Makefile.am:
11800         * tests/check/elements/videocrop.c:
11801         * tests/icles/Makefile.am:
11802         * tests/icles/videocrop-test.c:
11803         Move videocrop and osxvideo to -good.
11804
11805 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11806
11807         * configure.ac:
11808         * docs/plugins/Makefile.am:
11809         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11810         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11811         * gst/qtdemux/Makefile.am:
11812         * gst/qtdemux/gstrtpxqtdepay.c:
11813         * gst/qtdemux/gstrtpxqtdepay.h:
11814         * gst/qtdemux/qtdemux.c:
11815         * gst/qtdemux/qtdemux.h:
11816         * gst/qtdemux/qtdemux.vcproj:
11817         * gst/qtdemux/qtdemux_dump.c:
11818         * gst/qtdemux/qtdemux_dump.h:
11819         * gst/qtdemux/qtdemux_fourcc.h:
11820         * gst/qtdemux/qtdemux_types.c:
11821         * gst/qtdemux/qtdemux_types.h:
11822         * gst/qtdemux/qtpalette.h:
11823         * gst/qtdemux/quicktime.c:
11824         * win32/MANIFEST:
11825         * win32/vs6/libgstqtdemux.dsp:
11826         Move qtdemux to -good.
11827
11828         * gst-plugins-bad.spec.in:
11829         Update spec file to reflect wavpack & qtdemux moving to -good.
11830
11831 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11832
11833         * docs/plugins/Makefile.am:
11834         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11835         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11836         * docs/plugins/inspect/plugin-waveform.xml:
11837         * sys/waveform/gstwaveformplugin.c:
11838         * sys/waveform/gstwaveformsink.c:
11839         * sys/waveform/gstwaveformsink.h:
11840         * win32/MANIFEST:
11841         * win32/vs6/libgstwaveform.dsp:
11842         Remove the waveform plugin now that it is in -good.
11843
11844 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
11845
11846         * configure.ac:
11847         * docs/plugins/Makefile.am:
11848         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11849         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11850         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
11851         * docs/plugins/inspect/plugin-wavpack.xml:
11852         * ext/Makefile.am:
11853         * ext/wavpack/Makefile.am:
11854         * ext/wavpack/gstwavpack.c:
11855         * ext/wavpack/gstwavpackcommon.c:
11856         * ext/wavpack/gstwavpackcommon.h:
11857         * ext/wavpack/gstwavpackdec.c:
11858         * ext/wavpack/gstwavpackdec.h:
11859         * ext/wavpack/gstwavpackenc.c:
11860         * ext/wavpack/gstwavpackenc.h:
11861         * ext/wavpack/gstwavpackparse.c:
11862         * ext/wavpack/gstwavpackparse.h:
11863         * ext/wavpack/gstwavpackstreamreader.c:
11864         * ext/wavpack/gstwavpackstreamreader.h:
11865         * ext/wavpack/md5.c:
11866         * ext/wavpack/md5.h:
11867         * tests/check/Makefile.am:
11868         * tests/check/elements/wavpackdec.c:
11869         * tests/check/elements/wavpackenc.c:
11870         * tests/check/elements/wavpackparse.c:
11871           Move wavpack to good.
11872
11873 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
11874
11875         * configure.ac:
11876         * docs/plugins/Makefile.am:
11877         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11878         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11879         * docs/plugins/gst-plugins-bad-plugins.args:
11880         * docs/plugins/inspect/plugin-directdraw.xml:
11881         * docs/plugins/inspect/plugin-directsound.xml:
11882         * sys/Makefile.am:
11883         * sys/directdraw/Makefile.am:
11884         * sys/directdraw/gstdirectdrawplugin.c:
11885         * sys/directdraw/gstdirectdrawsink.c:
11886         * sys/directdraw/gstdirectdrawsink.h:
11887         * sys/directsound/Makefile.am:
11888         * sys/directsound/gstdirectsoundplugin.c:
11889         * sys/directsound/gstdirectsoundsink.c:
11890         * sys/directsound/gstdirectsoundsink.h:
11891         * win32/MANIFEST:
11892         * win32/gst.sln:
11893         * win32/vs6/libgstdirectdraw.dsp:
11894         * win32/vs6/libgstdirectsound.dsp:
11895         * win32/vs7/libgstdirectdraw.vcproj:
11896         * win32/vs7/libgstdirectsound.vcproj:
11897         * win32/vs8/libgstdirectdraw.vcproj:
11898         * win32/vs8/libgstdirectsound.vcproj:
11899         Remove DirectDraw & DirectSound plugins, as they've moved to Good
11900
11901 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
11902
11903         * ext/timidity/gsttimidity.c: (gst_timidity_loop):
11904         * ext/timidity/gstwildmidi.c: (gst_wildmidi_loop):
11905         * gst/tta/gstttaparse.c: (gst_tta_parse_loop):
11906           When driving the pipeline, also post an error when we get a
11907           not-linked flow return from downstream.
11908
11909 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
11910
11911         * docs/plugins/gst-plugins-bad-plugins.args:
11912         * sys/directdraw/gstdirectdrawsink.c:
11913         (gst_directdraw_sink_class_init):
11914         Rename the keep-aspect-ratio property to force-aspect-ratio to make
11915         it consistent with xvimagesink and ximagesink.
11916
11917 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
11918
11919         * tests/icles/videocrop-test.c: (main):
11920           Default to xvimagesink instead of autovideosink while
11921           autovideosink/ghostpads/whatever don't handle the way we use it in
11922           the way we expect it to.
11923
11924 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11925
11926         * configure.ac:
11927           Bump requirements to released versions of core and -base, and remove
11928           special-casing for equalizer and rtpmanager as it's not needed any
11929           longer.
11930
11931 2007-06-06  Jan Schmidt  <thaytan@mad.scientist.com>
11932
11933         * sys/glsink/glimagesink.c: (gst_glimage_sink_stop),
11934         (gst_glimage_sink_create_window), (gst_glimage_sink_init_display):
11935         Sprinkle in some XSync calls to avoid raciness with broken
11936         drivers (ATI) when re-using a single glimagesink.
11937
11938 2007-06-06  Jan Schmidt  <thaytan@mad.scientist.com>
11939
11940         * gst/mpegvideoparse/mpegpacketiser.c:
11941         (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr),
11942         (mpeg_util_parse_picture_hdr):
11943         * gst/mpegvideoparse/mpegvideoparse.c:
11944         (mpegvideoparse_handle_sequence), (mpegvideoparse_drain_avail):
11945         Fix some silly bugs with calculating the guard sizes.
11946         Properly compare the old sequence header structure with the new one.
11947         Don't error out on an invalid sequence - just ignore it.
11948
11949 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11950
11951         * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode):
11952           Printf fix in debug statement; also print the right number there.
11953
11954 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11955
11956         * ext/sdl/Makefile.am:
11957         * ext/sdl/sdlvideosink.c: (gst_sdlv_process_events):
11958           Add GST_CFLAGS, which apparently somehow fixes the build somewhere
11959           (#444499); initialise variable to avoid false compiler warning.
11960
11961 2007-06-01  Wim Taymans  <wim@fluendo.com>
11962
11963         * docs/plugins/Makefile.am:
11964         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11965         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11966         * docs/plugins/inspect/plugin-videosignal.xml:
11967         * gst/videosignal/Makefile.am:
11968         * gst/videosignal/gstvideomark.c: (gst_video_mark_set_caps),
11969         (gst_video_mark_draw_box), (gst_video_mark_420),
11970         (gst_video_mark_transform_ip), (gst_video_mark_set_property),
11971         (gst_video_mark_get_property), (gst_video_mark_base_init),
11972         (gst_video_mark_class_init), (gst_video_mark_init),
11973         (gst_video_mark_get_type):
11974         * gst/videosignal/gstvideomark.h:
11975         * gst/videosignal/gstvideosignal.c: (plugin_init):
11976         Add plugin to generate a pattern detectable by videodetect.
11977
11978 2007-06-01  Tim-Philipp Müller  <tim at centricular dot net>
11979
11980         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create):
11981           Don't leak buffer when returning an error.
11982
11983 2007-06-01  Wim Taymans  <wim@fluendo.com>
11984
11985         Patch by René Stadler <mail at renestadler dot de>:
11986
11987         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
11988         (gst_neonhttp_src_init), (gst_neonhttp_src_dispose),
11989         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
11990         (gst_neonhttp_src_start), (gst_neonhttp_src_do_seek),
11991         (gst_neonhttp_src_set_location),
11992         (gst_neonhttp_src_send_request_and_redirect),
11993         (gst_neonhttp_src_uri_get_uri), (gst_neonhttp_src_uri_set_uri):
11994         * ext/neon/gstneonhttpsrc.h:
11995         Deprecated "uri" property.  Clean up property descriptions.
11996         Change default User-Agent to the slightly more descriptive
11997         "GStreamer neonhttpsrc".
11998         Various other small cleanups, mostly property related.
11999
12000 2007-05-31  Tim-Philipp Müller  <tim at centricular dot net>
12001
12002         * ext/libmms/gstmms.h:
12003           No reason to use gpointers instead of typed pointes here as far as I
12004           can see.
12005
12006         * ext/mythtv/gstmythtvsrc.c:
12007         * ext/neon/gstneonhttpsrc.c:
12008         * gst/switch/gstswitch.c:
12009           Don't use gtk-doc magic markers for things that aren't meant to be
12010           parsed by gtk-doc. Makes gtk-doc complain a bit less.
12011
12012 2007-05-30  Wim Taymans  <wim@fluendo.com>
12013
12014         * configure.ac:
12015         * docs/plugins/Makefile.am:
12016         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12017         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12018         * docs/plugins/inspect/plugin-videosignal.xml:
12019         * gst/videosignal/Makefile.am:
12020         * gst/videosignal/gstvideoanalyse.c: (gst_video_analyse_set_caps),
12021         (gst_video_analyse_post_message), (gst_video_analyse_420),
12022         (gst_video_analyse_transform_ip), (gst_video_analyse_set_property),
12023         (gst_video_analyse_get_property), (gst_video_analyse_base_init),
12024         (gst_video_analyse_class_init), (gst_video_analyse_init),
12025         (gst_video_analyse_get_type):
12026         * gst/videosignal/gstvideoanalyse.h:
12027         * gst/videosignal/gstvideodetect.c: (gst_video_detect_set_caps),
12028         (gst_video_detect_post_message),
12029         (gst_video_detect_calc_brightness), (gst_video_detect_420),
12030         (gst_video_detect_transform_ip), (gst_video_detect_set_property),
12031         (gst_video_detect_get_property), (gst_video_detect_base_init),
12032         (gst_video_detect_class_init), (gst_video_detect_init),
12033         (gst_video_detect_get_type):
12034         * gst/videosignal/gstvideodetect.h:
12035         * gst/videosignal/gstvideosignal.c: (plugin_init):
12036         * gst/videosignal/gstvideosignal.h:
12037         Added videosignal plugin with two plugins to analyse video frames.
12038         Added videoanalyse to report about brightness and variance in video
12039         frames.
12040         Added videodetect to detect predefined patterns in a video signal.
12041
12042 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
12043
12044         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12045         * docs/plugins/gst-plugins-bad-plugins.interfaces:
12046         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
12047         * docs/plugins/gst-plugins-bad-plugins.signals:
12048           More updates.
12049
12050 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
12051
12052         * docs/plugins/gst-plugins-bad-plugins.args:
12053         * docs/plugins/gst-plugins-bad-plugins.signals:
12054         * docs/plugins/inspect/plugin-dtsdec.xml:
12055         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
12056         * docs/plugins/inspect/plugin-musepack.xml:
12057         * docs/plugins/inspect/plugin-rtpmanager.xml:
12058         * docs/plugins/inspect/plugin-sdl.xml:
12059         * docs/plugins/inspect/plugin-spcdec.xml:
12060         * docs/plugins/inspect/plugin-swfdec.xml:
12061           Updates; update inspect info for rtpmanager => gstrtpmanager rename,
12062           hopefully that makes the build bots happy again.
12063
12064 2007-05-28  Wim Taymans  <wim@fluendo.com>
12065
12066         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12067         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12068         * gst/rtpmanager/gstrtpbin.c: (create_session), (create_stream),
12069         (gst_rtp_bin_class_init), (create_recv_rtp), (create_recv_rtcp),
12070         (create_send_rtp), (create_rtcp), (gst_rtp_bin_request_new_pad):
12071         * gst/rtpmanager/gstrtpclient.c: (create_stream),
12072         (gst_rtp_client_request_new_pad):
12073         * gst/rtpmanager/gstrtpjitterbuffer.c:
12074         (gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
12075         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
12076         * gst/rtpmanager/gstrtpptdemux.c:
12077         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
12078         (gst_rtp_session_request_new_pad):
12079         * gst/rtpmanager/gstrtpssrcdemux.c:
12080         Rename elements to avoid conflict with farsight elements with the same
12081         name. Fixes #430664.
12082
12083 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
12084
12085         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12086
12087         * sys/directdraw/gstdirectdrawsink.c:
12088         (gst_directdraw_sink_buffer_alloc),
12089         (gst_directdraw_sink_show_frame),
12090         (gst_directdraw_sink_check_primary_surface),
12091         (gst_directdraw_sink_check_offscreen_surface),
12092         (EnumModesCallback2), (gst_directdraw_sink_get_ddrawcaps),
12093         (gst_directdraw_sink_surface_create):
12094         * sys/directdraw/gstdirectdrawsink.h:
12095           Fix more warnings when compiling with MingW (#439914).
12096
12097 2007-05-24  Sebastian Moutte  <sebastien@moutte.net>
12098
12099         * docs/plugins/gst-plugins-bad-plugins.args:
12100         Remove directsoundsink property doc as this sink use the mixer
12101         interface now.
12102         * docs/plugins/gst-plugins-bad-plugins.interfaces:
12103         Add interfaces implemented by Windows sinks.
12104         * sys/directsound/gstdirectsoundsink.c:
12105         * sys/directsound/gstdirectsoundsink.h:
12106         Remove directsoundsink property  and implement the mixer interface.
12107         * win32/vs6/gst_plugins_bad.dsw:
12108         * win32/vs6/libgstdirectsound.dsp:
12109         Update project files.
12110         * gst-libs/gst/dshow/gstdshow.cpp:
12111         * gst-libs/gst/dshow/gstdshow.h:
12112         * gst-libs/gst/dshow/gstdshowfakesink.cpp:
12113         * gst-libs/gst/dshow/gstdshowfakesink.h:
12114         * gst-libs/gst/dshow/gstdshowfakesrc.cpp:
12115         * gst-libs/gst/dshow/gstdshowfakesrc.h:
12116         * gst-libs/gst/dshow/gstdshowinterface.cpp:
12117         * gst-libs/gst/dshow/gstdshowinterface.h:
12118         * win32/common/libgstdshow.def:
12119         * win32/vs6/libgstdshow.dsp:
12120         Add a new gst library which allow to create internal Direct Show
12121         graph (pipelines) to wrap Windows sources, decoders or encoders.
12122         It includes a DirectShow fake source and sink and utility functions.    
12123         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
12124         * sys/dshowsrcwrapper/gstdshowaudiosrc.h:
12125         * sys/dshowsrcwrapper/gstdshowsrcwrapper.c:
12126         * sys/dshowsrcwrapper/gstdshowsrcwrapper.h:
12127         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
12128         * sys/dshowsrcwrapper/gstdshowvideosrc.h:
12129         * win32/vs6/libdshowsrcwrapper.dsp:
12130         Add a new plugin to wrap DirectShow sources on Windows.
12131         It gets data from any webcam, dv cam, micro. We could add 
12132         tv tunner card later.
12133         
12134 2007-05-23  Sebastian Dröge  <slomo@circular-chaos.org>
12135
12136         Patch by René Stadler <mail at renestadler dot de>:
12137
12138         * ext/sdl/sdlvideosink.c:
12139         Separate the authors by newlines instead of nothing. Fixes #440774.
12140
12141 2007-05-23  Wim Taymans  <wim@fluendo.com>
12142
12143         * docs/plugins/inspect/plugin-rtpmanager.xml:
12144         Add doc xml file.
12145
12146 2007-05-23  Wim Taymans  <wim@fluendo.com>
12147
12148         * docs/plugins/Makefile.am:
12149         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12150         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12151         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
12152         * gst/rtpmanager/gstrtpbin.h:
12153         * gst/rtpmanager/gstrtpclient.c:
12154         * gst/rtpmanager/gstrtpjitterbuffer.c:
12155         (gst_rtp_jitter_buffer_class_init),
12156         (gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
12157         * gst/rtpmanager/gstrtpjitterbuffer.h:
12158         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init),
12159         (gst_rtp_pt_demux_clear_pt_map):
12160         * gst/rtpmanager/gstrtpptdemux.h:
12161         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
12162         (rtcp_thread), (gst_rtp_session_clear_pt_map):
12163         * gst/rtpmanager/gstrtpsession.h:
12164         * gst/rtpmanager/gstrtpssrcdemux.c:
12165         (gst_rtp_ssrc_demux_class_init):
12166         Document stuff.
12167         Add clear-pt-map action signal where needed.
12168
12169 2007-05-22  Stefan Kost  <ensonic@users.sf.net>
12170
12171         * configure.ac:
12172           Depend on gstreamer-0.10.12.1.
12173         
12174         * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
12175           _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
12176           parent_class, gst_iir_equalizer_band_set_property,
12177           gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
12178           gst_iir_equalizer_child_proxy_get_child_by_index,
12179           gst_iir_equalizer_child_proxy_get_children_count,
12180           gst_iir_equalizer_child_proxy_interface_init, setup_filter,
12181           gst_iir_equalizer_compute_frequencies,
12182           gst_iir_equalizer_set_property, gst_iir_equalizer_get_property,
12183           plugin_init):
12184         * gst/equalizer/gstiirequalizer.h (audiofilter):
12185         * gst/equalizer/gstiirequalizernbands.c (ARG_NUM_BANDS,
12186           gst_iir_equalizer_nbands_base_init, gst_iir_equalizer_nbands_init,
12187           gst_iir_equalizer_nbands_set_property):
12188           Use new locking macros.
12189
12190         * gst/filter/gstbpwsinc.c (bpwsinc_set_caps):
12191           Add fixme.
12192
12193         * gst/spectrum/gstspectrum.c (SPECTRUM_WINDOW_BASE,
12194           SPECTRUM_WINDOW_LEN, gst_spectrum_init, gst_spectrum_set_property,
12195           gst_spectrum_event, gst_spectrum_transform_ip):
12196           Use new locking macros. Turn two fixed values into #defines.
12197
12198 2007-05-22  Edward Hervey  <edward@fluendo.com>
12199
12200         * docs/plugins/Makefile.am:
12201         Also look for .m (objectivec) files.
12202         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12203         * docs/plugins/gst-plugins-bad-plugins.args:
12204         * sys/osxvideo/osxvideosink.m:
12205         Add documentation for element and properties.
12206
12207 2007-05-21  Stefan Kost  <ensonic@users.sf.net>
12208
12209         * ChangeLog:
12210           ChangeLog surgery.
12211         * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
12212           _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
12213           parent_class, gst_iir_equalizer_band_set_property,
12214           gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
12215           gst_iir_equalizer_child_proxy_get_child_by_index,
12216           gst_iir_equalizer_child_proxy_get_children_count,
12217           gst_iir_equalizer_child_proxy_interface_init, setup_filter,
12218           gst_iir_equalizer_compute_frequencies, plugin_init):
12219         * tests/icles/equalizer-test.c:
12220           Add fixme and comment for example.
12221
12222 2007-05-21  Stefan Kost  <ensonic@users.sf.net>
12223
12224         * gst/spectrum/gstspectrum.c (gst_spectrum_set_property,
12225           gst_spectrum_event, gst_spectrum_transform_ip):
12226           Use lock to protect from concurrent access.
12227
12228 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
12229
12230         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
12231         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
12232         Specify and use properties as unsigned int that are an unsigned int.
12233
12234 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
12235
12236         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
12237         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
12238         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
12239         * ext/wavpack/gstwavpackenc.h:
12240         Fixup docs, make the bitrate property an int as it should be and
12241         allow to set the different extra processing modes instead of only
12242         allowing none and the default one.
12243
12244 2007-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
12245
12246         * ext/wavpack/gstwavpackenc.c:
12247         Add missing audioconverts in the example pipelines of wavpackenc. As
12248         the wavpack stuff now needs input with 32 bit width (and random depth)
12249         this is needed now. The example pipelines for the parser and decoder
12250         are still fine.
12251
12252 2007-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12253
12254         * docs/plugins/Makefile.am:
12255         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12256           Fix docs build and hierarchy.
12257
12258 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
12259
12260         * sys/directdraw/gstdirectdrawsink.c: (gst_ddrawsurface_finalize),
12261         (gst_directdraw_sink_buffer_alloc),
12262         (gst_directdraw_sink_get_ddrawcaps),
12263         (gst_directdraw_sink_surface_create):
12264           Bunch of small fixes: remove static function that doesn't exist;
12265           declare another one that does; printf format fix; use right macro
12266           when specifying debug category; remove a bunch of unused variables;
12267           #if 0 out an unused chunk of code (partially fixes #439914).
12268
12269 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
12270
12271         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample):
12272         * gst/switch/gstswitch.c: (gst_switch_chain):
12273           Printf format fixes (#439910, #439911).
12274
12275 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12276
12277         * tests/check/Makefile.am:
12278           Remove bits for deinterleave check which isn't in CVS yet.
12279
12280 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12281
12282         Patch by: René Stadler <mail at renestadler de>
12283
12284         * docs/plugins/Makefile.am:
12285         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12286         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12287         * docs/plugins/inspect/plugin-replaygain.xml:
12288         * gst/replaygain/Makefile.am:
12289         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_class_init),
12290         (gst_rg_analysis_start), (gst_rg_analysis_set_caps),
12291         (gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
12292         (gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
12293         (gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
12294         (gst_rg_analysis_album_result):
12295         * gst/replaygain/gstrganalysis.h:
12296         * gst/replaygain/gstrglimiter.c: (gst_rg_limiter_base_init),
12297         (gst_rg_limiter_class_init), (gst_rg_limiter_init),
12298         (gst_rg_limiter_set_property), (gst_rg_limiter_get_property),
12299         (gst_rg_limiter_transform_ip):
12300         * gst/replaygain/gstrglimiter.h:
12301         * gst/replaygain/gstrgvolume.c: (gst_rg_volume_base_init),
12302         (gst_rg_volume_class_init), (gst_rg_volume_init),
12303         (gst_rg_volume_set_property), (gst_rg_volume_get_property),
12304         (gst_rg_volume_dispose), (gst_rg_volume_change_state),
12305         (gst_rg_volume_sink_event), (gst_rg_volume_tag_event),
12306         (gst_rg_volume_reset), (gst_rg_volume_update_gain),
12307         (gst_rg_volume_determine_gain):
12308         * gst/replaygain/gstrgvolume.h:
12309         * gst/replaygain/replaygain.c: (plugin_init):
12310         * gst/replaygain/replaygain.h:
12311         * gst/replaygain/rganalysis.h:
12312         * tests/check/Makefile.am:
12313         * tests/check/elements/.cvsignore:
12314         * tests/check/elements/rganalysis.c: (send_eos_event),
12315         (GST_START_TEST):
12316         * tests/check/elements/rglimiter.c: (setup_rglimiter),
12317         (cleanup_rglimiter), (set_playing_state), (create_test_buffer),
12318         (verify_test_buffer), (GST_START_TEST), (rglimiter_suite), (main):
12319         * tests/check/elements/rgvolume.c: (event_func), (setup_rgvolume),
12320         (cleanup_rgvolume), (set_playing_state), (set_null_state),
12321         (send_eos_event), (send_tag_event), (test_buffer_new),
12322         (fail_unless_target_gain), (fail_unless_result_gain),
12323         (fail_unless_gain), (GST_START_TEST), (rgvolume_suite), (main):
12324           Add replaygain playback elements (#412710).
12325
12326 2007-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
12327
12328         * sys/glsink/glimagesink.c: (gst_glimage_sink_init_display):
12329         Update the cached caps after opening the display so that we report
12330         only the supported caps formats, not just the template caps.
12331         Fixes: #439405
12332
12333 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
12334
12335         * ext/amrwb/gstamrwbdec.c (gst_amrwbdec_debug, GST_CAT_DEFAULT,
12336           _do_init, gst_amrwbdec_base_init, gst_amrwbdec_class_init):
12337         * ext/amrwb/gstamrwbenc.c (gst_amrwbenc_debug, GST_CAT_DEFAULT,
12338           _do_init, gst_amrwbenc_base_init, gst_amrwbenc_class_init):
12339         * ext/amrwb/gstamrwbparse.c (gst_amrwbparse_debug, GST_CAT_DEFAULT,
12340           _do_init, gst_amrwbparse_base_init, gst_amrwbparse_class_init):
12341           First round of cleanups, that use GST_BOILERPLATE, GST_ELEMENT_DETAILS,
12342           GST_DEBUG_FUNCPTR and add log-category.
12343
12344 2007-05-17  Edward Hervey  <edward@fluendo.com>
12345
12346         * sys/osxvideo/osxvideosink.h:
12347         * sys/osxvideo/osxvideosink.m:
12348         Remove the event-loop-in-separate-thread modifications, because MacOSX
12349         is $#@(*%$# ! For those wondering, the event handling needs to be done
12350         in the main thread after all..
12351
12352 2007-05-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12353
12354         * gst/switch/gstswitch.c (ARG_0, ARG_NB_SOURCES, ARG_ACTIVE_SOURCE,
12355           ARG_START_VALUE, ARG_STOP_VALUE, ARG_LAST_TS, ARG_QUEUE_BUFFERS,
12356           parent_class, gst_switch_release_pad, gst_switch_request_new_pad,
12357           gst_switch_chain, gst_switch_event, gst_switch_set_property,
12358           gst_switch_get_property, gst_switch_getcaps, gst_switch_dispose,
12359           unref_buffer, unref_buffers_and_destroy_list, gst_switch_init,
12360           gst_switch_base_init, gst_switch_class_init):
12361         * gst/switch/gstswitch.h (need_to_send_newsegment, queue_buffers,
12362           stop_value, start_value, current_start, last_ts, stored_buffers):
12363         Add handling of application provided stop and start values, allowing
12364         A/V sync across 2 switch elements.
12365
12366 2007-05-17  Edward Hervey  <edward@fluendo.com>
12367
12368         * sys/osxvideo/osxvideosink.h:
12369         * sys/osxvideo/osxvideosink.m:
12370         Fix a stupid #if vs #ifdef bug. Should use the proper colorspace now.
12371         Use a separate thread/task for the cocoa event_loop, else it wouldn't
12372         stop.
12373
12374 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
12375
12376         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
12377         (gst_real_audio_dec_setcaps):
12378         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain):
12379           Don't crash when we get a buffer and our input caps haven't been set
12380           yet; also, don't leak all the input buffers (realaudiodec only).
12381
12382 2007-05-16  Stefan Kost  <ensonic@users.sf.net>
12383
12384         patch by: Stanislav Brabec <sbrabec@suse.cz>
12385
12386         * configure.ac:
12387         * ext/amrwb/Makefile.am:
12388         * ext/amrwb/amrwb-code/Makefile.am:
12389         * ext/amrwb/amrwb-code/amrwb/Makefile.am:
12390         * ext/amrwb/amrwb-code/amrwb/README:
12391         * ext/amrwb/gstamrwbdec.c:
12392         * ext/amrwb/gstamrwbdec.h (__GST_AMRWBDEC_H__):
12393         * ext/amrwb/gstamrwbenc.h (__GST_AMRWBENC_H__):
12394         * ext/amrwb/gstamrwbparse.c:
12395         * ext/amrwb/gstamrwbparse.h (__GST_AMRWBPARSE_H__):
12396         * gst-libs/Makefile.am:
12397         * gst-libs/ext/Makefile.am:
12398         * gst-libs/ext/amrwb/Makefile.am:
12399         * gst-libs/ext/amrwb/README:
12400           Use external shared libamrwb. Fixes #423741 (with lots of cleanup).
12401
12402 2007-05-16  Stefan Kost  <ensonic@users.sf.net>
12403
12404         * ext/x264/gstx264enc.c (gst_x264_enc_init_encoder):
12405           This needs a version check.
12406
12407         * gst/bayer/Makefile.am:
12408           Fix the build.
12409
12410 2007-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12411
12412         * configure.ac:
12413         * sys/directdraw/Makefile.am:
12414         * sys/directsound/Makefile.am:
12415           Add DIRECTDRAW_CFLAGS and DIRECTSOUND_CFLAGS to Makefile.am; save
12416           and restore the various flags in the directdraw/directsound
12417           detection section. Apparently improves cross-compiling for win32
12418           with mingw32 under some circumstances (#437539).
12419
12420 2007-05-15  Wim Taymans  <wim@fluendo.com>
12421
12422         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
12423         We always use fixed caps.
12424
12425 2007-05-14  David Schleef  <ds@schleef.org>
12426
12427         * gst/rtpmanager/gstrtpbin.c:
12428           g_hash_table_remove_all() only exists in 2.12.  Work around.
12429
12430 2007-05-14  David Schleef  <ds@schleef.org>
12431
12432         * configure.ac:
12433         * gst/bayer/Makefile.am:
12434         * gst/bayer/gstbayer.c:
12435         * gst/bayer/gstbayer2rgb.c:
12436           Add a Bayer-to-RGB converter.  You know you want one, uh-huh.
12437           Partial fix for #314160.
12438
12439 2007-05-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12440
12441         * gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
12442           ARG_LAST_TS, parent_class, gst_switch_release_pad,
12443           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
12444           gst_switch_set_property, gst_switch_get_property, gst_switch_getcaps,
12445           gst_switch_dispose, gst_switch_init, gst_switch_class_init):
12446         * gst/switch/gstswitch.h (previous_sinkpad, nb_sinkpads, stop_value,
12447           current_start, last_ts):
12448         Allow application to provide a stop timestamp, so a new segment
12449         update can be sent before switching.
12450
12451 2007-05-14  Wim Taymans  <wim@fluendo.com>
12452
12453         * gst/rtpmanager/async_jitter_queue.c:
12454         (async_jitter_queue_set_flushing_unlocked):
12455         Fix leak when flushing.
12456
12457         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map),
12458         (gst_rtp_bin_class_init):
12459         * gst/rtpmanager/gstrtpbin.h:
12460         Add clear-pt-map signal.
12461
12462         * gst/rtpmanager/gstrtpjitterbuffer.c:
12463         (gst_rtp_jitter_buffer_flush_stop),
12464         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_loop):
12465         Init clock-rate to -1 to mark unknow clock rate.
12466         Fix flushing.
12467
12468 2007-05-13  David Schleef  <ds@schleef.org>
12469
12470         * gst/replaygain/rganalysis.c:
12471           Fix wrong ifdef for visual C++.  Fixes: #437403.
12472           By Ali Sabil <ali.sabil@gmail.com>.
12473
12474 2007-05-12  David Schleef  <ds@schleef.org>
12475
12476         * ext/neon/gstneonhttpsrc.c:
12477           Make redirection the default behavior.  Fixes #413818.
12478
12479 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12480
12481         * gst/qtdemux/qtdemux.c (gst_qtdemux_move_stream,
12482           gst_qtdemux_loop_state_header, gst_qtdemux_activate_segment,
12483           gst_qtdemux_prepare_current_sample, gst_qtdemux_combine_flows,
12484           gst_qtdemux_loop_state_movie, gst_qtdemux_loop,
12485           qtdemux_parse_segments, qtdemux_parse_trak):
12486         * gst/rtpmanager/rtpsession.c (rtp_session_get_bandwidth,
12487           rtp_session_get_rtcp_bandwidth, rtp_session_get_cname,
12488           rtp_session_get_name, rtp_session_get_email, rtp_session_get_phone,
12489           rtp_session_get_location, rtp_session_get_tool,
12490           rtp_session_process_bye, session_report_blocks):
12491         * gst/rtpmanager/rtpsource.c (rtp_source_process_rtp,
12492           rtp_source_send_rtp, rtp_source_process_sr, rtp_source_process_rb):
12493           More format arg fixing (spotted by Ali Sabil <ali.sabil@gmail.com>).
12494
12495         * gst/switch/Makefile.am:
12496           Add require libraries(spotted by Ali Sabil <ali.sabil@gmail.com>).
12497
12498 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12499
12500         * gst/rtpmanager/async_jitter_queue.c (tail_buffer_duration,
12501           async_jitter_queue_ref, async_jitter_queue_ref_unlocked,
12502           async_jitter_queue_set_low_threshold,
12503           async_jitter_queue_length_ts_units_unlocked,
12504           async_jitter_queue_unref_and_unlock, async_jitter_queue_unref,
12505           async_jitter_queue_lock, async_jitter_queue_push,
12506           async_jitter_queue_push_unlocked, async_jitter_queue_push_sorted,
12507           async_jitter_queue_pop_intern_unlocked, async_jitter_queue_pop,
12508           async_jitter_queue_pop_unlocked, async_jitter_queue_length_unlocked,
12509           async_jitter_queue_set_flushing_unlocked,
12510           async_jitter_queue_unset_flushing_unlocked):
12511           Format arg fix (spotted by Ali Sabil <ali.sabil@gmail.com>).
12512
12513 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12514
12515         * common/m4/gst-x11.m4:
12516           Restore CFLAGS and LIBS.
12517
12518         * configure.ac:
12519           Revert previous patch.
12520
12521 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12522
12523         Patch by: Ali Sabil <ali.sabil@gmail.com>
12524
12525         * configure.ac:
12526           Save and restore CFLAGS for OpenGL check. Fixes #437260.
12527         
12528
12529 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
12530
12531         * docs/plugins/gst-plugins-bad-plugins.args:
12532         Add directraw and directsound sinks properties.
12533
12534 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12535
12536         * configure.ac:
12537           Fix --disable-external (hopefully).
12538
12539 2007-05-09  Wim Taymans  <wim@fluendo.com>
12540
12541         * gst/rtpmanager/gstrtpjitterbuffer.c:
12542         (gst_rtp_jitter_buffer_query):
12543         Pass queries upstream.
12544
12545 2007-05-06  Tim-Philipp Müller  <tim at centricular dot net>
12546
12547         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
12548         (gst_real_audio_dec_finalize):
12549         * gst/real/gstrealaudiodec.h:
12550         * gst/real/gstrealvideodec.c: (open_library), (close_library):
12551         * gst/real/gstrealvideodec.h:
12552           Use GModule instead of using dlsym() directly. Fixes #430598.
12553
12554 2007-05-04  Sebastien Moutte <sebastien@moutte.net>
12555
12556         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12557         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12558         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12559           Add docs for Windows sinks.
12560
12561 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
12562
12563         * gst/speed/gstspeed.c: (speed_src_event), (speed_sink_event),
12564         (speed_chain), (speed_change_state):
12565           Fix event handling a bit by replacing completely dubious code
12566           written by someone else with completely dubious code written
12567           by me. Should at least fix #412077 though.
12568
12569 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
12570
12571         * gst/speed/gstspeed.c: (speed_src_query), (speed_chain),
12572         (plugin_init):
12573           Add debug category; use gst_pad_query_peer_*() utility functions;
12574           use gst_util_scale*(); add gtk-doc blurb.
12575
12576 2007-05-04  Wim Taymans  <wim@fluendo.com>
12577
12578         * gst/rtpmanager/gstrtpjitterbuffer.c:
12579         (gst_rtp_jitter_buffer_query):
12580         Add some debug info.
12581
12582         * gst/rtpmanager/rtpsession.c: (rtp_session_init),
12583         (rtp_session_send_rtp):
12584         Store real user name in the session.
12585
12586 2007-05-03  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
12587
12588         * configure.ac:
12589         * examples/Makefile.am:
12590         * examples/switch/switcher.c (loop, my_bus_callback, switch_timer,
12591           last_message_received, main):
12592         * gst/switch/gstswitch.c (GST_CAT_DEFAULT, gst_switch_details,
12593           gst_switch_src_factory, parent_class, gst_switch_release_pad,
12594           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
12595           gst_switch_set_property, gst_switch_get_property,
12596           gst_switch_get_linked_pad, gst_switch_getcaps,
12597           gst_switch_bufferalloc, gst_switch_get_linked_pads,
12598           gst_switch_dispose, gst_switch_init, gst_switch_base_init,
12599           gst_switch_class_init):
12600         * gst/switch/gstswitch.h (GstSwitch, GstSwitchClass, _GstSwitch,
12601           element, active_sinkpad, srcpad, nb_sinkpads, newsegment_events,
12602           need_to_send_newsegment):
12603         Port switch element and example program to 0.10.
12604
12605 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12606
12607         * ext/wavpack/gstwavpack.c: (plugin_init):
12608         Call bindtextdomain() to get localized strings.
12609         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
12610         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
12611         (gst_wavpack_parse_handle_seek_event),
12612         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_chain):
12613         * ext/wavpack/gstwavpackparse.h:
12614         Handle DISCONT buffers by correctly setting the DISCONT flag
12615         on outgoing buffers when necessary.
12616         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_handle_seek_event)
12617         Send newsegment from the streaming thread.
12618
12619 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12620
12621         * ext/wavpack/gstwavpackparse.c:
12622         (gst_wavpack_parse_handle_seek_event):
12623         Remove old workaround that was needed when seeking after the last
12624         sample. With the fixed error handling this works now as expected
12625         without pushing the last sample although it wasn't requested.
12626
12627 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12628
12629         * ext/wavpack/gstwavpackparse.c:
12630         (gst_wavpack_parse_handle_seek_event):
12631         Handle segment seeks in the seek event handler, correctly work with
12632         stop position == -1 and instead of stopping the task on seek just
12633         pause it.
12634
12635 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12636
12637         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_loop):
12638         Add handling for segment seeks.
12639
12640 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12641
12642         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_pull_buffer),
12643         (gst_wavpack_parse_create_src_pad),
12644         (gst_wavpack_parse_resync_loop), (gst_wavpack_parse_loop),
12645         (gst_wavpack_parse_chain):
12646         Correctly handle errors, especially in the loop function. Before it
12647         was easy to get the task paused but no error being posted on the bus.
12648
12649 2007-04-30  Wim Taymans  <wim@fluendo.com>
12650
12651         * gst/rtpmanager/async_jitter_queue.c: (signal_waiting_threads),
12652         (async_jitter_queue_pop_intern_unlocked):
12653         Fix the case where the buffer underruns and does not block.
12654
12655         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_base_init),
12656         (create_recv_rtcp), (create_send_rtp), (create_rtcp),
12657         (gst_rtp_bin_request_new_pad):
12658         Rename RTCP send pad, like in the session manager.
12659         Allow getting an RTCP pad for receiving even if we don't receive RTP.
12660         fix handling of send_rtp_src pad.
12661
12662         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
12663         When no pt map could be found, fall back to the sinkpad caps.
12664
12665         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
12666         (gst_rtp_session_send_rtp), (create_recv_rtp_sink),
12667         (create_recv_rtcp_sink), (create_send_rtp_sink),
12668         (create_send_rtcp_src):
12669         Fix pad names.
12670
12671         * gst/rtpmanager/rtpsession.c: (source_push_rtp),
12672         (rtp_session_create_source), (rtp_session_process_sr),
12673         (rtp_session_send_rtp), (session_start_rtcp):
12674         * gst/rtpmanager/rtpsession.h:
12675         Unlock session when performing a callback.
12676         Add callbacks for the internal session object.
12677         Fix sending of RTP packets.
12678         first attempt at adding NTP times in the SR packets.
12679         Small debug and doc improvements.
12680
12681         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
12682         Update stats for SR reports.
12683
12684 2007-04-29  Wim Taymans  <wim@fluendo.com>
12685
12686         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_send_rtcp):
12687         Remove debug.
12688
12689         * gst/rtpmanager/rtpsession.c: (rtp_session_process_sr),
12690         (rtp_session_process_sdes), (calculate_rtcp_interval),
12691         (rtp_session_next_timeout), (session_report_blocks):
12692         * gst/rtpmanager/rtpstats.c: (rtp_stats_calculate_rtcp_interval):
12693         Improve debugging
12694         Fix interval for BYE/RTCP packets.
12695
12696 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12697
12698         * docs/plugins/gst-plugins-bad-plugins.args:
12699         * docs/plugins/gst-plugins-bad-plugins.signals:
12700           Commit result of running scanobj-update
12701
12702 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12703
12704         * autogen.sh:
12705           Require automake 1.7
12706         * ext/alsaspdif/Makefile.am:
12707         * ext/divx/Makefile.am:
12708         * ext/ivorbis/Makefile.am:
12709         * ext/musicbrainz/Makefile.am:
12710         * ext/neon/Makefile.am:
12711         * ext/sdl/Makefile.am:
12712         * ext/swfdec/Makefile.am:
12713         * ext/theora/Makefile.am:
12714         * ext/wavpack/Makefile.am:
12715         * ext/xvid/Makefile.am:
12716         * gst/modplug/Makefile.am:
12717           Fix up Makefile.am accordingly.
12718
12719 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12720
12721         * docs/plugins/inspect/plugin-alsaspdif.xml:
12722         * docs/plugins/inspect/plugin-bz2.xml:
12723         * docs/plugins/inspect/plugin-cdxaparse.xml:
12724         * docs/plugins/inspect/plugin-dfbvideosink.xml:
12725         * docs/plugins/inspect/plugin-faac.xml:
12726         * docs/plugins/inspect/plugin-faad.xml:
12727         * docs/plugins/inspect/plugin-filter.xml:
12728         * docs/plugins/inspect/plugin-freeze.xml:
12729         * docs/plugins/inspect/plugin-glimagesink.xml:
12730         * docs/plugins/inspect/plugin-gsm.xml:
12731         * docs/plugins/inspect/plugin-h264parse.xml:
12732         * docs/plugins/inspect/plugin-jack.xml:
12733         * docs/plugins/inspect/plugin-mms.xml:
12734         * docs/plugins/inspect/plugin-modplug.xml:
12735         * docs/plugins/inspect/plugin-musepack.xml:
12736         * docs/plugins/inspect/plugin-musicbrainz.xml:
12737         * docs/plugins/inspect/plugin-neon.xml:
12738         * docs/plugins/inspect/plugin-nsfdec.xml:
12739         * docs/plugins/inspect/plugin-replaygain.xml:
12740         * docs/plugins/inspect/plugin-sdl.xml:
12741         * docs/plugins/inspect/plugin-soundtouch.xml:
12742         * docs/plugins/inspect/plugin-spectrum.xml:
12743         * docs/plugins/inspect/plugin-speed.xml:
12744         * docs/plugins/inspect/plugin-tta.xml:
12745         * docs/plugins/inspect/plugin-videocrop.xml:
12746         * docs/plugins/inspect/plugin-wavpack.xml:
12747         * docs/plugins/inspect/plugin-xingheader.xml:
12748         * docs/plugins/inspect/plugin-xvid.xml:
12749           Add jack and update.
12750
12751 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
12752
12753         * configure.ac:
12754           Don't build equalizer unless we have core from CVS (it won't
12755           work with earlier versions due to GstChildProxy brokeness).
12756           Also up requirements to last released core/base.
12757
12758 2007-04-27  Wim Taymans  <wim@fluendo.com>
12759
12760         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
12761         (gst_rtp_session_send_rtcp), (gst_rtp_session_reconsider):
12762         Move reconsideration code to the rtpsession object.
12763         Simplify timout handling and add reconsideration.
12764
12765         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
12766         (rtp_session_init), (rtp_session_finalize), (on_bye_ssrc),
12767         (on_bye_timeout), (on_timeout), (rtp_session_set_callbacks),
12768         (obtain_source), (rtp_session_create_source),
12769         (update_arrival_stats), (rtp_session_process_rtp),
12770         (rtp_session_process_sr), (rtp_session_process_rr),
12771         (rtp_session_process_bye), (rtp_session_process_rtcp),
12772         (calculate_rtcp_interval), (rtp_session_send_bye),
12773         (rtp_session_next_timeout), (session_start_rtcp),
12774         (session_report_blocks), (session_cleanup), (session_sdes),
12775         (session_bye), (is_rtcp_time), (rtp_session_on_timeout):
12776         * gst/rtpmanager/rtpsession.h:
12777         Handle timeout of inactive sources and senders.
12778         Implement BYE scheduling.
12779
12780         * gst/rtpmanager/rtpsource.c: (calculate_jitter),
12781         (rtp_source_process_sr), (rtp_source_get_last_sr),
12782         (rtp_source_get_last_rb):
12783         * gst/rtpmanager/rtpsource.h:
12784         Add members to check for timeouts.
12785
12786         * gst/rtpmanager/rtpstats.c: (rtp_stats_init_defaults),
12787         (rtp_stats_calculate_rtcp_interval), (rtp_stats_add_rtcp_jitter),
12788         (rtp_stats_calculate_bye_interval):
12789         * gst/rtpmanager/rtpstats.h:
12790         Use RFC algorithm for calculating the reporting interval.
12791
12792 2007-04-26  Edward Hervey  <edward@fluendo.com>
12793
12794         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12795         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12796         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12797         * docs/plugins/inspect/plugin-osxvideo.xml:
12798         Add documentation for osxvideo
12799
12800 2007-04-25  Wim Taymans  <wim@fluendo.com>
12801
12802         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread):
12803         Implement forward and reverse reconsideration.
12804
12805         * gst/rtpmanager/rtpsession.c: (rtp_session_get_num_sources),
12806         (rtp_session_get_num_active_sources), (rtp_session_process_sr),
12807         (session_report_blocks):
12808         * gst/rtpmanager/rtpsession.h:
12809         Small cleanups.
12810
12811 2007-04-25  Wim Taymans  <wim@fluendo.com>
12812
12813         reviewed by: <delete if not using a buddy>
12814
12815         * gst/rtpmanager/gstrtpbin.c: (create_stream),
12816         (gst_rtp_bin_class_init), (gst_rtp_bin_set_property),
12817         (gst_rtp_bin_get_property):
12818         * gst/rtpmanager/gstrtpbin.h:
12819         Make default jitterbuffer latency configurable.
12820
12821         * gst/rtpmanager/gstrtpjitterbuffer.c:
12822         (gst_rtp_jitter_buffer_class_init),
12823         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_loop),
12824         (gst_rtp_jitter_buffer_set_property),
12825         (gst_rtp_jitter_buffer_get_property):
12826         Debuging cleanups.
12827
12828 2007-04-25  Wim Taymans  <wim@fluendo.com>
12829
12830         * gst/rtpmanager/gstrtpjitterbuffer.c:
12831         (gst_rtp_jitter_buffer_change_state):
12832         Report NO_PREROLL when going to PAUSED.
12833
12834         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread):
12835         Don't send RTCP right before we are shutting down.
12836
12837         * gst/rtpmanager/rtpsession.c: (rtp_session_process_rtp),
12838         (rtp_session_process_sr), (session_report_blocks),
12839         (rtp_session_perform_reporting):
12840         Improve report blocks.
12841
12842         * gst/rtpmanager/rtpsource.c: (calculate_jitter), (init_seq),
12843         (rtp_source_process_rtp), (rtp_source_process_sr),
12844         (rtp_source_process_rb), (rtp_source_get_last_sr),
12845         (rtp_source_get_last_rb):
12846         * gst/rtpmanager/rtpsource.h:
12847         * gst/rtpmanager/rtpstats.h:
12848         Cleanups, add methods to access stats. 
12849
12850 2007-04-25  Wim Taymans  <wim@fluendo.com>
12851
12852         * gst/rtpmanager/gstrtpbin.c: (create_rtcp):
12853         fix for pad name change
12854
12855         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
12856         (gst_rtp_session_send_rtcp), (gst_rtp_session_clock_rate):
12857         Fix for renamed methods.
12858
12859         * gst/rtpmanager/rtpsession.c: (rtp_session_init),
12860         (rtp_session_finalize), (rtp_session_set_cname),
12861         (rtp_session_get_cname), (rtp_session_set_name),
12862         (rtp_session_get_name), (rtp_session_set_email),
12863         (rtp_session_get_email), (rtp_session_set_phone),
12864         (rtp_session_get_phone), (rtp_session_set_location),
12865         (rtp_session_get_location), (rtp_session_set_tool),
12866         (rtp_session_get_tool), (rtp_session_set_note),
12867         (rtp_session_get_note), (source_push_rtp), (obtain_source),
12868         (rtp_session_add_source), (rtp_session_get_source_by_ssrc),
12869         (rtp_session_create_source), (rtp_session_process_rtp),
12870         (rtp_session_process_sr), (rtp_session_process_sdes),
12871         (rtp_session_process_rtcp), (rtp_session_send_rtp),
12872         (rtp_session_get_reporting_interval), (session_report_blocks),
12873         (session_sdes), (rtp_session_perform_reporting):
12874         * gst/rtpmanager/rtpsession.h:
12875         Prepare for implementing SSRC sampling.
12876         Create SSRC for the session. 
12877         Add methods to set the SDES entries.
12878         fix accounting of senders/receivers.
12879         Implement SR/RR/SDES RTCP reporting.
12880
12881         * gst/rtpmanager/rtpsource.c: (rtp_source_init), (init_seq),
12882         (rtp_source_process_rtp), (rtp_source_process_sr):
12883         * gst/rtpmanager/rtpsource.h:
12884         Implement extended sequence number.
12885
12886         * gst/rtpmanager/rtpstats.c: (rtp_stats_calculate_rtcp_interval):
12887         * gst/rtpmanager/rtpstats.h:
12888         Rename some fields.
12889
12890 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
12891
12892         * gst/y4m/gsty4mencode.c: (gst_y4m_encode_init),
12893         (gst_y4m_encode_setcaps):
12894         * tests/check/elements/y4menc.c: (GST_START_TEST):
12895           Plug some leaks; try to make build bot happy again.
12896
12897 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
12898
12899         * gst/Makefile.am:
12900           Fix distcheck, hopefully (rtpmanager is already in GST_PLUGINS_ALL).
12901
12902 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
12903
12904         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
12905           Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
12906
12907 2007-04-20  Michael Smith  <msmith@fluendo.com>
12908
12909         * ext/faad/gstfaad.c: (gst_faad_open_decoder):
12910           FAAD fails to decode low (e.g. 8 kHz) sample rate AAC data in
12911           quicktime because of sample rate mismatches.
12912           Reenable overriding the implicit SBR behaviour (accidently changed?)
12913           to allow playback of these files.
12914
12915 2007-04-19  David Schleef  <ds@schleef.org>
12916
12917         * configure.ac:
12918           Change rtpmanager disabling to keep -bad releasable.
12919
12920 2007-04-18  David Schleef  <ds@schleef.org>
12921
12922         * configure.ac:
12923         * gst/Makefile.am:
12924           Fix wtay's hack.  rtpmanager is disabled in configure.ac on
12925           line 268.
12926
12927 2007-04-18  Wim Taymans  <wim@fluendo.com>
12928
12929         * gst/Makefile.am:
12930         Add rtpmanager dir to dist.
12931
12932 2007-04-18  Wim Taymans  <wim@fluendo.com>
12933
12934         * configure.ac:
12935         Disable rtpmanager for now because it depends on CVS -base.
12936
12937         * gst/rtpmanager/Makefile.am:
12938         Added new files for session manager.
12939
12940         * gst/rtpmanager/gstrtpjitterbuffer.h:
12941         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
12942         (create_stream), (pt_map_requested), (new_ssrc_pad_found):
12943         Some cleanups. 
12944         the session manager can now also request a pt-map.
12945
12946         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_base_init),
12947         (gst_rtp_session_class_init), (gst_rtp_session_init),
12948         (gst_rtp_session_finalize), (rtcp_thread), (start_rtcp_thread),
12949         (stop_rtcp_thread), (gst_rtp_session_change_state),
12950         (gst_rtp_session_process_rtp), (gst_rtp_session_send_rtp),
12951         (gst_rtp_session_send_rtcp), (gst_rtp_session_clock_rate),
12952         (gst_rtp_session_get_time), (gst_rtp_session_event_recv_rtp_sink),
12953         (gst_rtp_session_chain_recv_rtp),
12954         (gst_rtp_session_event_recv_rtcp_sink),
12955         (gst_rtp_session_chain_recv_rtcp),
12956         (gst_rtp_session_event_send_rtp_sink),
12957         (gst_rtp_session_chain_send_rtp), (create_send_rtcp_src),
12958         (gst_rtp_session_request_new_pad):
12959         * gst/rtpmanager/gstrtpsession.h:
12960         We can ask for pt-map now too when the session manager needs it.
12961         Hook up to the new session manager, implement the needed callbacks for
12962         pushing data, getting clock time and requesting clock-rates.
12963         Rename rtcp_src to send_rtcp_src to make it clear that this RTCP is to
12964         be send to clients.
12965         Add code to start and stop the thread that will schedule RTCP through
12966         the session manager.
12967
12968         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
12969         (rtp_session_init), (rtp_session_finalize),
12970         (rtp_session_set_property), (rtp_session_get_property),
12971         (on_new_ssrc), (on_ssrc_collision), (on_ssrc_validated),
12972         (on_bye_ssrc), (rtp_session_new), (rtp_session_set_callbacks),
12973         (rtp_session_set_bandwidth), (rtp_session_get_bandwidth),
12974         (rtp_session_set_rtcp_bandwidth), (rtp_session_get_rtcp_bandwidth),
12975         (source_push_rtp), (source_clock_rate), (check_collision),
12976         (obtain_source), (rtp_session_add_source),
12977         (rtp_session_get_num_sources),
12978         (rtp_session_get_num_active_sources),
12979         (rtp_session_get_source_by_ssrc),
12980         (rtp_session_get_source_by_cname), (rtp_session_create_source),
12981         (update_arrival_stats), (rtp_session_process_rtp),
12982         (rtp_session_process_sr), (rtp_session_process_rr),
12983         (rtp_session_process_sdes), (rtp_session_process_bye),
12984         (rtp_session_process_app), (rtp_session_process_rtcp),
12985         (rtp_session_send_rtp), (rtp_session_get_rtcp_interval),
12986         (rtp_session_produce_rtcp):
12987         * gst/rtpmanager/rtpsession.h:
12988         The advanced beginnings of the main session manager that handles the
12989         participant database of RTPSources, SSRC probation, SSRC collisions,
12990         parse RTCP to update source stats. etc..
12991
12992         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
12993         (rtp_source_init), (rtp_source_finalize), (rtp_source_new),
12994         (rtp_source_set_callbacks), (rtp_source_set_as_csrc),
12995         (rtp_source_set_rtp_from), (rtp_source_set_rtcp_from),
12996         (push_packet), (get_clock_rate), (calculate_jitter),
12997         (rtp_source_process_rtp), (rtp_source_process_bye),
12998         (rtp_source_send_rtp), (rtp_source_process_sr),
12999         (rtp_source_process_rb):
13000         * gst/rtpmanager/rtpsource.h:
13001         Object that encapsulates an SSRC and its state in the database.
13002         Calculates the jitter and transit times of data packets.
13003
13004         * gst/rtpmanager/rtpstats.c: (rtp_stats_init_defaults),
13005         (rtp_stats_calculate_rtcp_interval), (rtp_stats_add_rtcp_jitter):
13006         * gst/rtpmanager/rtpstats.h:
13007         Various stats regarding the session and sources.
13008         Used to calculate the RTCP interval.
13009
13010 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
13011
13012         * gst/app/Makefile.am:
13013           Fix CFLAGS and hopefully #430594.
13014
13015 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
13016
13017         * gst/nsf/types.h:
13018           Rename #ifndef header guard symbol to something less generic, so
13019           types.h doesn't get skipped over when compiling on MingW. Include
13020           GLib headers and use those to set the endianness and the basic
13021           types so that this isn't entirely broken for non-x86 architectures.
13022
13023 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
13024
13025         * gst/mve/gstmvedemux.c: (gst_mve_audio_init):
13026           Use G_LITTLE_ENDIAN instead of LITTLE_ENDIAN, so stuff compiles on
13027           MingW (no idea though why we add a BYTE_ORDER endianness field if
13028           the audio is compressed).
13029
13030 2007-04-14  Sebastien Moutte <sebastien@moutte.net>
13031
13032         * docs/plugins/inspect/plugin-directdraw.xml:
13033         * docs/plugins/inspect/plugin-directsound.xml:
13034         * docs/plugins/inspect/plugin-waveform.xml:
13035           Add xml doc files for Windows sinks
13036         * win32/vs6/libgstqtdemux.dsp:
13037         * win32/vs6/libgstmpegvideoparse.dsp:
13038         * win32/vs6/gst_plugins_bad.dsw:
13039          Update projects files.
13040         
13041 2007-04-13  Wim Taymans  <wim@fluendo.com>
13042
13043         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13044         (gst_rtp_bin_init), (gst_rtp_bin_finalize), (new_ssrc_pad_found),
13045         (create_recv_rtp), (gst_rtp_bin_request_new_pad):
13046         * gst/rtpmanager/gstrtpbin.h:
13047         * gst/rtpmanager/gstrtpclient.c:
13048         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
13049         (gst_rtp_session_init), (gst_rtp_session_finalize),
13050         (gst_rtp_session_event_recv_rtp_sink),
13051         (gst_rtp_session_event_recv_rtcp_sink),
13052         (gst_rtp_session_chain_recv_rtcp),
13053         (gst_rtp_session_request_new_pad):
13054         Protect lists and structures with locks.
13055         Return FLOW_OK from RTCP messages for now.
13056
13057 2007-04-12  Wim Taymans  <wim@fluendo.com>
13058
13059         * gst/qtdemux/qtdemux.c:
13060         Make timescale 32 bits again so we don't screw up the pts_offset
13061         calculations.
13062
13063 2007-04-12  Wim Taymans  <wim@fluendo.com>
13064
13065         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13066         (create_stream), (gst_rtp_bin_class_init), (pt_map_requested):
13067         Emit pt map requests and cache results.
13068
13069         * gst/rtpmanager/gstrtpjitterbuffer.c:
13070         (gst_rtp_jitter_buffer_class_init),
13071         (gst_jitter_buffer_sink_parse_caps),
13072         (gst_jitter_buffer_sink_setcaps),
13073         (gst_rtp_jitter_buffer_get_clock_rate),
13074         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
13075         * gst/rtpmanager/gstrtpjitterbuffer.h:
13076         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
13077         Emit request-pt-map signals.
13078
13079 2007-04-11  Wim Taymans  <wim@fluendo.com>
13080
13081         * gst/rtpmanager/gstrtpbin-marshal.list:
13082         Some more custom marshallers.
13083
13084         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13085         (clock_rate_request), (create_stream), (gst_rtp_bin_class_init),
13086         (pt_map_requested), (new_ssrc_pad_found), (create_recv_rtp):
13087         * gst/rtpmanager/gstrtpbin.h:
13088         Prepare for caching pt maps.
13089         Connect to signals to collect pt maps.
13090
13091         * gst/rtpmanager/gstrtpjitterbuffer.c:
13092         (gst_rtp_jitter_buffer_class_init),
13093         (gst_jitter_buffer_sink_setcaps), (gst_rtp_jitter_buffer_loop):
13094         * gst/rtpmanager/gstrtpjitterbuffer.h:
13095         Add request_clock_rate signal.
13096         Use scale insteat of scale_int because the later does not deal with
13097         negative numbers.
13098
13099         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init),
13100         (gst_rtp_pt_demux_chain):
13101         * gst/rtpmanager/gstrtpptdemux.h:
13102         Implement request-pt-map signal.
13103
13104 2007-04-11  Wim Taymans  <wim@fluendo.com>
13105
13106         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
13107         (qtdemux_parse_samples), (qtdemux_parse_segments),
13108         (qtdemux_parse_trak), (qtdemux_parse_tree):
13109         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_mdhd):
13110         Handle version 1 mdhd atoms to get extended precision durations.
13111         Fixes #426972.
13112
13113 2007-04-10  Wim Taymans  <wim@fluendo.com>
13114
13115         * gst/rtpmanager/.cvsignore:
13116         * gst/rtpmanager/Makefile.am:
13117         * gst/rtpmanager/gstrtpbin-marshal.list:
13118         Added custom marshallers for signals.
13119
13120         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
13121         * gst/rtpmanager/gstrtpbin.h:
13122         Prepare for emiting pt map signals.
13123
13124         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init):
13125         * gst/rtpmanager/gstrtpssrcdemux.c:
13126         (gst_rtp_ssrc_demux_class_init):
13127         Fix signals.
13128
13129 2007-04-06  Wim Taymans  <wim@fluendo.com>
13130
13131         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
13132         (gst_rtp_bin_init), (gst_rtp_bin_provide_clock):
13133         * gst/rtpmanager/gstrtpbin.h:
13134         Provide a clock.
13135
13136 2007-04-06  Wim Taymans  <wim@fluendo.com>
13137
13138         * gst/rtpmanager/gstrtpbin.c: (create_rtcp):
13139         Fix pad template name parsing.
13140
13141 2007-04-05  Wim Taymans  <wim@fluendo.com>
13142
13143         * gst/rtpmanager/gstrtpjitterbuffer.c:
13144         (gst_jitter_buffer_sink_setcaps), (gst_rtp_jitter_buffer_chain),
13145         (gst_rtp_jitter_buffer_loop):
13146         Add some debug and comments.
13147         Fix double unref() in error cases.
13148
13149 2007-04-05  Wim Taymans  <wim@fluendo.com>
13150
13151         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
13152         (gst_rtp_xqt_depay_change_state):
13153         * gst/qtdemux/gstrtpxqtdepay.h:
13154         Try to recover from packet loss a little better.
13155
13156 2007-04-05  Wim Taymans  <wim@fluendo.com>
13157
13158         * gst/rtpmanager/gstrtpbin.c: (find_session_by_id),
13159         (create_session), (find_stream_by_ssrc), (create_stream),
13160         (gst_rtp_bin_class_init), (new_payload_found),
13161         (new_ssrc_pad_found), (create_recv_rtp), (create_recv_rtcp),
13162         (create_send_rtp), (create_rtcp):
13163         * gst/rtpmanager/gstrtpbin.h:
13164         Add debugging category.
13165         Added RTPStream to manage stream per SSRC, each with its own
13166         jitterbuffer and ptdemux.
13167         Added SSRCDemux.
13168         Connect to various SSRC and PT signals and create ghostpads, link stuff.
13169
13170
13171         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13172         Added rtpbin to elements.
13173
13174         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
13175         Fix caps and forward GstFlowReturn
13176
13177         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
13178         (gst_rtp_session_event_recv_rtp_sink),
13179         (gst_rtp_session_chain_recv_rtp),
13180         (gst_rtp_session_event_recv_rtcp_sink),
13181         (gst_rtp_session_chain_recv_rtcp),
13182         (gst_rtp_session_event_send_rtp_sink),
13183         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
13184         (create_recv_rtcp_sink), (create_send_rtp_sink), (create_rtcp_src),
13185         (gst_rtp_session_request_new_pad):
13186         Add debug category.
13187         Add event handling
13188
13189         * gst/rtpmanager/gstrtpssrcdemux.c: (find_rtp_pad_for_ssrc),
13190         (create_rtp_pad_for_ssrc), (gst_rtp_ssrc_demux_class_init),
13191         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_chain),
13192         (gst_rtp_ssrc_demux_change_state):
13193         * gst/rtpmanager/gstrtpssrcdemux.h:
13194         Add debug category.
13195         Add new-pt-pad signal.
13196
13197 2007-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13198
13199         submitted by: Mogens Jaeger <mogens@jaeger.tf>
13200
13201         * po/LINGUAS:
13202         * po/da.po:
13203           Added Danish translation.
13204
13205 2007-04-04  Wim Taymans  <wim@fluendo.com>
13206
13207         * gst/rtpmanager/Makefile.am:
13208         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13209         * gst/rtpmanager/gstrtpssrcdemux.c: (find_pad_for_ssrc),
13210         (create_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init),
13211         (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_init),
13212         (gst_rtp_ssrc_demux_finalize), (gst_rtp_ssrc_demux_sink_event),
13213         (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_src_event),
13214         (gst_rtp_ssrc_demux_change_state):
13215         * gst/rtpmanager/gstrtpssrcdemux.h:
13216         Added simple SSRC demuxer.
13217
13218 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
13219
13220         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
13221         (gst_jack_ring_buffer_acquire):
13222           Try t better name clients. properly handle return codes when re-
13223           establishing links.
13224
13225 2007-04-03  David Schleef  <ds@schleef.org>
13226
13227         * sys/glsink/glimagesink.c:
13228           Fix handling of video/x-raw-yuv.  Add overlay handling.
13229
13230 2007-04-03  Wim Taymans  <wim@fluendo.com>
13231
13232         * gst/rtpmanager/gstrtpbin.c: (find_session_by_id),
13233         (create_session), (gst_rtp_bin_base_init), (create_recv_rtp),
13234         (create_recv_rtcp), (create_send_rtp), (create_rtcp),
13235         (gst_rtp_bin_request_new_pad):
13236         * gst/rtpmanager/gstrtpbin.h:
13237         * gst/rtpmanager/gstrtpclient.c:
13238         Some more ghostpad magic.
13239
13240 2007-04-03  Wim Taymans  <wim@fluendo.com>
13241
13242         * gst/rtpmanager/Makefile.am:
13243         Add .h file so it can be disted properly.
13244
13245 2007-04-03  Wim Taymans  <wim@fluendo.com>
13246
13247         * configure.ac:
13248         * gst/rtpmanager/Makefile.am:
13249         * gst/rtpmanager/async_jitter_queue.c: (async_jitter_queue_new),
13250         (signal_waiting_threads), (async_jitter_queue_ref),
13251         (async_jitter_queue_ref_unlocked),
13252         (async_jitter_queue_set_low_threshold),
13253         (async_jitter_queue_set_high_threshold),
13254         (async_jitter_queue_set_max_queue_length),
13255         (async_jitter_queue_get_g_queue), (calculate_ts_diff),
13256         (async_jitter_queue_length_ts_units_unlocked),
13257         (async_jitter_queue_unref_and_unlock), (async_jitter_queue_unref),
13258         (async_jitter_queue_lock), (async_jitter_queue_unlock),
13259         (async_jitter_queue_push), (async_jitter_queue_push_unlocked),
13260         (async_jitter_queue_push_sorted),
13261         (async_jitter_queue_push_sorted_unlocked),
13262         (async_jitter_queue_insert_after_unlocked),
13263         (async_jitter_queue_pop_intern_unlocked), (async_jitter_queue_pop),
13264         (async_jitter_queue_pop_unlocked), (async_jitter_queue_length),
13265         (async_jitter_queue_length_unlocked),
13266         (async_jitter_queue_set_flushing_unlocked),
13267         (async_jitter_queue_unset_flushing_unlocked),
13268         (async_jitter_queue_set_blocking_unlocked):
13269         * gst/rtpmanager/async_jitter_queue.h:
13270         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_base_init),
13271         (gst_rtp_bin_class_init), (gst_rtp_bin_init),
13272         (gst_rtp_bin_finalize), (gst_rtp_bin_set_property),
13273         (gst_rtp_bin_get_property), (gst_rtp_bin_change_state),
13274         (gst_rtp_bin_request_new_pad), (gst_rtp_bin_release_pad):
13275         * gst/rtpmanager/gstrtpbin.h:
13276         * gst/rtpmanager/gstrtpclient.c: (new_pad), (create_stream),
13277         (free_stream), (find_stream_by_ssrc), (gst_rtp_client_base_init),
13278         (gst_rtp_client_class_init), (gst_rtp_client_init),
13279         (gst_rtp_client_finalize), (gst_rtp_client_set_property),
13280         (gst_rtp_client_get_property), (gst_rtp_client_change_state),
13281         (gst_rtp_client_request_new_pad), (gst_rtp_client_release_pad):
13282         * gst/rtpmanager/gstrtpclient.h:
13283         * gst/rtpmanager/gstrtpjitterbuffer.c:
13284         (gst_rtp_jitter_buffer_base_init),
13285         (gst_rtp_jitter_buffer_class_init), (gst_rtp_jitter_buffer_init),
13286         (gst_rtp_jitter_buffer_dispose), (gst_rtp_jitter_buffer_getcaps),
13287         (gst_jitter_buffer_sink_setcaps), (free_func),
13288         (gst_rtp_jitter_buffer_flush_start),
13289         (gst_rtp_jitter_buffer_flush_stop),
13290         (gst_rtp_jitter_buffer_src_activate_push),
13291         (gst_rtp_jitter_buffer_change_state), (priv_compare_rtp_seq_lt),
13292         (compare_rtp_buffers_seq_num), (gst_rtp_jitter_buffer_sink_event),
13293         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop),
13294         (gst_rtp_jitter_buffer_query),
13295         (gst_rtp_jitter_buffer_set_property),
13296         (gst_rtp_jitter_buffer_get_property):
13297         * gst/rtpmanager/gstrtpjitterbuffer.h:
13298         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13299         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_base_init),
13300         (gst_rtp_pt_demux_class_init), (gst_rtp_pt_demux_init),
13301         (gst_rtp_pt_demux_finalize), (gst_rtp_pt_demux_chain),
13302         (gst_rtp_pt_demux_getcaps), (find_pad_for_pt),
13303         (gst_rtp_pt_demux_setup), (gst_rtp_pt_demux_release),
13304         (gst_rtp_pt_demux_change_state):
13305         * gst/rtpmanager/gstrtpptdemux.h:
13306         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_base_init),
13307         (gst_rtp_session_class_init), (gst_rtp_session_init),
13308         (gst_rtp_session_finalize), (gst_rtp_session_set_property),
13309         (gst_rtp_session_get_property), (gst_rtp_session_change_state),
13310         (gst_rtp_session_chain_recv_rtp),
13311         (gst_rtp_session_chain_recv_rtcp),
13312         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
13313         (create_recv_rtcp_sink), (create_send_rtp_sink), (create_rtcp_src),
13314         (gst_rtp_session_request_new_pad), (gst_rtp_session_release_pad):
13315         * gst/rtpmanager/gstrtpsession.h:
13316         Add RTP session management elements. Still in progress.
13317
13318 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
13319
13320         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
13321         (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps),
13322         (gst_wavpack_dec_clip_outgoing_buffer),
13323         (gst_wavpack_dec_post_tags), (gst_wavpack_dec_chain):
13324         * ext/wavpack/gstwavpackdec.h:
13325         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
13326         (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config),
13327         (gst_wavpack_enc_chain):
13328         * ext/wavpack/gstwavpackenc.h:
13329         * ext/wavpack/gstwavpackparse.c:
13330         Don't play audioconvert. As wavpack wants/outputs all samples with
13331         width==32 and depth=[1,32] accept this and let audioconvert convert
13332         to accepted formats instead of doing it in the element for n*8 depths.
13333         This also adds support for non-n*8 depths and prevents some useless
13334         memory allocations. Fixes #421598
13335         Also add a workaround for bug #421542 in wavpackenc for now...
13336         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
13337         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
13338         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
13339         Consider the change above in the unit tests and test if the correct
13340         caps are accepted and set. Also check for GST_BUFFER_OFFSET_END in
13341         the wavpackparse unit test.
13342
13343         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init),
13344         (gst_wavpack_dec_sink_set_caps):
13345         Set caps on the src pad as soon as possible.
13346
13347         * ext/wavpack/gstwavpackdec.h:
13348         * ext/wavpack/gstwavpackcommon.h:
13349         * ext/wavpack/gstwavpackenc.h:
13350         * ext/wavpack/gstwavpackparse.h:
13351         Fix indention. gst-indent is now called by cicl.
13352
13353 2007-03-28  Edward Hervey  <edward@fluendo.com>
13354
13355         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
13356         (gst_qtdemux_chain), (qtdemux_parse_samples):
13357         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_ctts):
13358         * gst/qtdemux/qtdemux_dump.h:
13359         * gst/qtdemux/qtdemux_fourcc.h:
13360         * gst/qtdemux/qtdemux_types.c:
13361         Process 'ctts' atoms, which are present in AVC ISO files (.mov files
13362         with h264 video).
13363         Use the offset present in 'ctts' to calculate the PTS for each packet
13364         and set the PTS on outgoing buffers.
13365         Fixes #423283
13366
13367 2007-03-27  Julien MOUTTE  <julien@moutte.net>
13368
13369         * ext/xvid/gstxviddec.c: (gst_xviddec_chain): Add some
13370         debug log and fix a stupid output buffer duration bug.
13371
13372 2007-03-25  Tim-Philipp Müller  <tim at centricular dot net>
13373
13374         Patch by: Michal Benes <michal.benes at itonis tv>
13375         Patch by: Josef Zlomek <josef.zlomek at itonis tv>
13376
13377         * configure.ac:
13378         * ext/Makefile.am:
13379         * ext/x264/Makefile.am:
13380         * ext/x264/gstx264enc.c: (gst_x264_enc_me_get_type),
13381         (gst_x264_enc_analyse_get_type),
13382         (gst_x264_enc_timestamp_queue_init),
13383         (gst_x264_enc_timestamp_queue_free),
13384         (gst_x264_enc_timestamp_queue_put),
13385         (gst_x264_enc_timestamp_queue_get), (gst_x264_enc_header_buf),
13386         (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps),
13387         (gst_x264_enc_base_init), (gst_x264_enc_class_init),
13388         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
13389         (gst_x264_enc_close_encoder), (gst_x264_enc_dispose),
13390         (gst_x264_enc_sink_event), (gst_x264_enc_chain),
13391         (gst_x264_enc_encode_frame), (gst_x264_enc_change_state),
13392         (gst_x264_enc_set_property), (gst_x264_enc_get_property),
13393         (plugin_init):
13394         * ext/x264/gstx264enc.h:
13395           Add libx264-based h264 encoder plugin (#421110). Probably doesn't
13396           handle 'odd' widths and heights correctly yet.
13397
13398 2007-03-24  Tim-Philipp Müller  <tim at centricular dot net>
13399
13400         * gst/interleave/deinterleave.c: (gst_deinterleave_sink_setcaps):
13401           Remove 'channel-positions' field when munging input caps into
13402           1-channel output caps (I guess technically we should set the
13403           position for each channel on the output caps if it's non-NONE,
13404           but I'll save that as a task for another day).
13405
13406 2007-03-23  Michael Smith  <msmith@fluendo.com>
13407
13408         * gst/vmnc/vmncdec.c: (gst_vmnc_dec_class_init),
13409         (gst_vmnc_dec_init), (vmnc_dec_finalize), (gst_vmnc_dec_reset),
13410         (vmnc_handle_wmvi_rectangle), (render_colour_cursor),
13411         (render_cursor), (vmnc_make_buffer), (vmnc_handle_wmvd_rectangle),
13412         (vmnc_handle_wmve_rectangle), (vmnc_handle_wmvf_rectangle),
13413         (vmnc_handle_wmvg_rectangle), (vmnc_handle_wmvh_rectangle),
13414         (vmnc_handle_wmvj_rectangle), (render_raw_tile), (render_subrect),
13415         (vmnc_handle_raw_rectangle), (vmnc_handle_copy_rectangle),
13416         (vmnc_handle_hextile_rectangle), (vmnc_handle_packet),
13417         (vmnc_dec_setcaps), (vmnc_dec_chain_frame), (vmnc_dec_chain),
13418         (vmnc_dec_set_property), (vmnc_dec_get_property):
13419           Redesign to include a parser for raw files (no timestamps in that
13420           mode yet, though).
13421
13422 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
13423
13424         * gst/interleave/deinterleave.c: (gst_deinterleave_add_new_pads),
13425         (gst_deinterleave_remove_pads), (gst_deinterleave_process),
13426         (gst_deinterleave_chain):
13427           Don't leak input buffer in chain function; maintain our own list of
13428           source pads - there are no guarantees about the order of the list
13429           in the GstElement struct, and we want a very specific order; lastly,
13430           some more debugging.
13431
13432 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
13433
13434         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_init):
13435           Alloc user agent string only once.
13436
13437 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13438
13439         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13440         Revert last commit, preventing infinite plugging loops with ranks
13441         is no clean solution and in general there's no reason why one wants
13442         to parse framed wavpack data again.
13443
13444 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13445
13446         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block):
13447         Send the new segment event in time format instead of bytes. This
13448         allows "wavpackenc ! wavpackdec ! someaudiosink" pipelines.
13449
13450         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13451         Accept framed and non-framed input, wavpackparse doesn't care. To
13452         prevent "wavpackparse ! wavpackparse ! ..." pipelines lower the
13453         rank of wavpackparse by one. This allows "wavpackenc ! wavpackparse !
13454         ..." pipelines.
13455
13456 2007-03-22  Thomas Vander Stichele  <thomas at apestaart dot org>
13457
13458         * gst-libs/gst/app/Makefile.am:
13459           Use GST_ALL_LDFLAGS, which actually exists, but maybe David
13460           can confirm that was what he wanted.
13461
13462 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13463
13464         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
13465         Revert to use gst_pad_alloc_buffer() here. We can and should use it.
13466         Thanks to Jan and Mike for noticing my mistake.
13467
13468 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13469
13470         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
13471         (gst_wavpack_enc_init), (gst_wavpack_enc_chain),
13472         (gst_wavpack_enc_rewrite_first_block):
13473         * ext/wavpack/gstwavpackenc.h:
13474         Put the write helpers into the GstWavpackEnc struct directly and not
13475         as a pointer to save two small, but useless mallocs. This also makes
13476         it possible to drop the finalize method.
13477         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_push_buffer):
13478         For consistency reasons also set GST_BUFFER_OFFSET_END on the outgoing
13479         buffers the same way wavpackenc does it.
13480
13481 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13482
13483         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
13484         Don't use gst_pad_alloc_buffer() as we might clip the buffer later and
13485         BaseTransform-based elements will likely break because of wrong
13486         unit-size. Also plug a possible memleak that happens when decoding
13487         fails for some reason.
13488
13489 2007-03-18  Wim Taymans  <wim@fluendo.com>
13490
13491         Based on patch by: Paul Davis <paul at linuxaudiosystems dot com>
13492
13493         * ext/jack/gstjackaudioclient.c: (gst_jack_audio_unref_connection):
13494         Don't need to take the connection lock, it will not be used and could
13495         cause deadlocks.
13496
13497 2007-03-16  Edward Hervey  <edward@fluendo.com>
13498
13499         * sys/osxvideo/osxvideosink.m:
13500         Fix previous commit, we want to pass the NSView in the message.
13501
13502 2007-03-16  Edward Hervey  <edward@fluendo.com>
13503
13504         * sys/osxvideo/osxvideosink.m:
13505         Emit 'have-ns-view' message when working in embedded mode. The message
13506         will contain a pointer to the newly created NSView.
13507
13508 2007-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13509
13510         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code),
13511         (collect_packets), (set_par_from_dar), (set_fps_from_code),
13512         (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr),
13513         (mpeg_util_parse_picture_hdr):
13514         * gst/mpegvideoparse/mpegpacketiser.h:
13515         * gst/mpegvideoparse/mpegvideoparse.c:
13516         (mpegvideoparse_handle_sequence), (mpegvideoparse_handle_picture),
13517         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain),
13518         (mpv_parse_sink_event), (plugin_init):
13519         * gst/mpegvideoparse/mpegvideoparse.h:
13520         Move the MPEG specific byte parsing into the mpegpacketiser code.
13521
13522         Add parsing of picture types, that just feeds into a debug message
13523         for now.
13524
13525         Fix some 64-bit format strings.
13526
13527 2007-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13528
13529         * gst/mpegaudioparse:
13530         Remove empty dir.
13531
13532 2007-03-16  Stefan Kost  <ensonic@users.sf.net>
13533
13534         * gst/equalizer/gstiirequalizer10bands.c:
13535         (gst_iir_equalizer_10bands_init):
13536           A 10 band EQ should be initialized to 10 bands and not to 3.
13537
13538 2007-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
13539
13540         * configure.ac:
13541         * gst/mpeg1videoparse/Makefile.am:
13542         * gst/mpeg1videoparse/gstmp1videoparse.c:
13543         * gst/mpeg1videoparse/gstmp1videoparse.h:
13544         * gst/mpeg1videoparse/mp1videoparse.vcproj:
13545         * gst/mpegvideoparse/Makefile.am:
13546         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_packetiser_init),
13547         (mpeg_packetiser_free), (mpeg_packetiser_add_buf),
13548         (mpeg_packetiser_flush), (mpeg_find_start_code),
13549         (get_next_free_block), (complete_current_block),
13550         (append_to_current_block), (start_new_block), (handle_packet),
13551         (collect_packets), (mpeg_packetiser_handle_eos),
13552         (mpeg_packetiser_get_block), (mpeg_packetiser_next_block):
13553         * gst/mpegvideoparse/mpegpacketiser.h:
13554         * gst/mpegvideoparse/mpegvideoparse.c: (mpegvideoparse_get_type),
13555         (gst_mpegvideoparse_base_init), (gst_mpegvideoparse_class_init),
13556         (mpv_parse_reset), (gst_mpegvideoparse_init),
13557         (gst_mpegvideoparse_dispose), (set_par_from_dar),
13558         (set_fps_from_code), (mpegvideoparse_parse_seq),
13559         (gst_mpegvideoparse_time_code), (gst_mpegvideoparse_flush),
13560         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain),
13561         (mpv_parse_sink_event), (gst_mpegvideoparse_change_state),
13562         (plugin_init):
13563         * gst/mpegvideoparse/mpegvideoparse.h:
13564         * gst/mpegvideoparse/mpegvideoparse.vcproj:
13565         Port mpeg1videoparse to 0.10 and give it rank SECONDARY-1, so
13566         that it's below existing decoders.
13567         
13568         Rename it to mpegvideoparse to reflect that it handles MPEG-1 and
13569         MPEG-2 now.
13570
13571         Re-write the parsing code so that it collects packets differently
13572         and timestamps Picture packets correctly.
13573
13574         Add a list of FIXME's at the top.
13575
13576 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
13577
13578         * tests/icles/equalizer-test.c: (equalizer_set_band_value),
13579         (equalizer_set_all_band_values),
13580         (equalizer_set_band_value_and_wait),
13581         (equalizer_set_all_band_values_and_wait), (do_slider_fiddling),
13582         (main):
13583           Port the example to new equalizer api.
13584
13585 2007-03-14  Edward Hervey  <edward@fluendo.com>
13586
13587         * sys/osxvideo/cocoawindow.h:
13588         * sys/osxvideo/cocoawindow.m:
13589         * sys/osxvideo/osxvideosink.h:
13590         * sys/osxvideo/osxvideosink.m:
13591         Fix leaks when running a NSApp.
13592         Accept any kind of resolutions.
13593         Works in fullscreen. Can maximize.
13594         Only thing left before being able to move this to -good is documentation
13595         and embedded window support.
13596
13597 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13598
13599         * po/hu.po:
13600         * po/it.po:
13601         * po/sv.po:
13602           Updated translations.
13603
13604 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
13605
13606         * gst/equalizer/Makefile.am:
13607         * gst/equalizer/gstiirequalizer.c: (_do_init),
13608         (gst_iir_equalizer_band_set_property),
13609         (gst_iir_equalizer_band_class_init),
13610         (gst_iir_equalizer_band_get_type),
13611         (gst_iir_equalizer_child_proxy_get_child_by_index),
13612         (gst_iir_equalizer_child_proxy_get_children_count),
13613         (gst_iir_equalizer_child_proxy_interface_init), (setup_filter),
13614         (gst_iir_equalizer_compute_frequencies),
13615         (gst_iir_equalizer_transform_ip), (plugin_init):
13616         * gst/equalizer/gstiirequalizer10bands.c:
13617         (gst_iir_equalizer_10bands_base_init),
13618         (gst_iir_equalizer_10bands_class_init),
13619         (gst_iir_equalizer_10bands_init),
13620         (gst_iir_equalizer_10bands_set_property),
13621         (gst_iir_equalizer_10bands_get_property):
13622         * gst/equalizer/gstiirequalizer10bands.h:
13623         * gst/equalizer/gstiirequalizer3bands.c:
13624         (gst_iir_equalizer_3bands_base_init),
13625         (gst_iir_equalizer_3bands_class_init),
13626         (gst_iir_equalizer_3bands_init),
13627         (gst_iir_equalizer_3bands_set_property),
13628         (gst_iir_equalizer_3bands_get_property):
13629         * gst/equalizer/gstiirequalizer3bands.h:
13630         * gst/equalizer/gstiirequalizernbands.c:
13631         (gst_iir_equalizer_nbands_base_init),
13632         (gst_iir_equalizer_nbands_init):
13633           Add 3 and 10 band version and add missing gst_object_sync_values.
13634
13635         * gst/spectrum/gstspectrum.c: (gst_spectrum_event),
13636         (gst_spectrum_transform_ip):
13637           Add some comments about float support.
13638
13639 2007-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
13640
13641         * gst/mpegaudioparse/Makefile.am:
13642         * gst/mpegaudioparse/gstmpegaudioparse.c:
13643         * gst/mpegaudioparse/gstmpegaudioparse.h:
13644         * gst/mpegaudioparse/mpegaudioparse.vcproj:
13645         Remove bogus 2nd copy of mp3parse - it's actually
13646         in -ugly.
13647
13648 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
13649
13650         * examples/app/.cvsignore:
13651         The buildbot demands .cvsignore files, and I comply.
13652
13653 2007-03-11  Sebastien Moutte  <sebastien@moutte.net>
13654
13655         * sys/directdraw/gstdirectdrawsink.c:
13656         * sys/directdraw/gstdirectdrawsink.h:
13657         Handle display mode changes during playback.
13658
13659 2007-03-10  David Schleef  <ds@schleef.org>
13660
13661         * configure.ac:
13662         * examples/Makefile.am:
13663         * examples/app/Makefile.am:
13664         * examples/app/appsrc_ex.c:
13665           Add appsrc/appsink example.
13666         * gst-libs/gst/app/Makefile.am:
13667         * gst-libs/gst/app/gstapp.c:
13668         * gst-libs/gst/app/gstappsink.c:
13669         * gst-libs/gst/app/gstappsink.h:
13670         * gst/app/gstapp.c:
13671           Add appsink.
13672
13673 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
13674
13675         * ext/nas/nassink.c: (NAS_createFlow):
13676         * ext/sndfile/gstsfsrc.c: (gst_sf_src_create):
13677           Printf format string fixes.
13678
13679 2007-03-09  Stefan Kost  <ensonic@users.sf.net>
13680
13681         * gst/equalizer/Makefile.am:
13682         * gst/equalizer/gstiirequalizer.c: (_do_init),
13683         (gst_iir_equalizer_band_set_property),
13684         (gst_iir_equalizer_band_get_property),
13685         (gst_iir_equalizer_band_class_init),
13686         (gst_iir_equalizer_band_get_type),
13687         (gst_iir_equalizer_child_proxy_get_child_by_index),
13688         (gst_iir_equalizer_child_proxy_get_children_count),
13689         (gst_iir_equalizer_child_proxy_interface_init),
13690         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
13691         (gst_iir_equalizer_finalize), (setup_filter),
13692         (gst_iir_equalizer_compute_frequencies),
13693         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
13694         (gst_iir_equalizer_setup), (plugin_init):
13695         * gst/equalizer/gstiirequalizer.h:
13696         * gst/equalizer/gstiirequalizernbands.c:
13697         (gst_iir_equalizer_nbands_base_init),
13698         (gst_iir_equalizer_nbands_class_init),
13699         (gst_iir_equalizer_nbands_init),
13700         (gst_iir_equalizer_nbands_set_property),
13701         (gst_iir_equalizer_nbands_get_property):
13702         * gst/equalizer/gstiirequalizernbands.h:
13703           Refactor plugin into a base class and a first subclass (nband eq). The
13704           nband eq uses GstChildProxy and is controlable. More subclasses will
13705           follow.
13706
13707 2007-03-08  Wim Taymans  <wim@fluendo.com>
13708
13709         Includes patch by: Paul Davis <paul at linuxaudiosystems dot com>
13710
13711         * ext/jack/Makefile.am:
13712         * ext/jack/gstjackaudioclient.c: (gst_jack_audio_client_init),
13713         (jack_process_cb), (jack_sample_rate_cb), (jack_buffer_size_cb),
13714         (jack_shutdown_cb), (connection_find),
13715         (gst_jack_audio_make_connection), (gst_jack_audio_get_connection),
13716         (gst_jack_audio_unref_connection),
13717         (gst_jack_audio_connection_add_client),
13718         (gst_jack_audio_connection_remove_client),
13719         (gst_jack_audio_client_new), (gst_jack_audio_client_free),
13720         (gst_jack_audio_client_get_client),
13721         (gst_jack_audio_client_set_active):
13722         * ext/jack/gstjackaudioclient.h:
13723         Make an object to manage client connections to the jack server which we
13724         will use in the future to run selected jack elements with the same jack
13725         connection.
13726         Make some stuff a bit more threadsafe.
13727         Activate the jack client ASAP.
13728
13729         * ext/jack/gstjackaudiosink.c:
13730         (gst_jack_audio_sink_allocate_channels),
13731         (gst_jack_audio_sink_free_channels), (jack_process_cb),
13732         (gst_jack_ring_buffer_open_device),
13733         (gst_jack_ring_buffer_close_device),
13734         (gst_jack_ring_buffer_acquire), (gst_jack_ring_buffer_release),
13735         (gst_jack_audio_sink_class_init), (gst_jack_audio_sink_init),
13736         (gst_jack_audio_sink_getcaps):
13737         * ext/jack/gstjackaudiosink.h:
13738         Use new client object to manage connections.
13739         Don't remove and recreate all ports, try to reuse them.
13740
13741 2007-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
13742
13743         * ext/wavpack/gstwavpack.c: (plugin_init):
13744         * ext/wavpack/gstwavpackcommon.c:
13745           Use a general wavpack debug category for common code.
13746         * ext/wavpack/gstwavpackstreamreader.c:
13747         (gst_wavpack_stream_reader_set_pos_abs),
13748         (gst_wavpack_stream_reader_set_pos_rel),
13749         (gst_wavpack_stream_reader_write_bytes):
13750           Use the general wavpack debug category here too and add debug
13751           output to the functions that should not be called at all by
13752           the wavpack library.
13753         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_plugin_init):
13754         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_plugin_init):
13755         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13756           Change debugging category names to conform to the conventions.
13757
13758 2007-03-07  Edward Hervey  <edward@fluendo.com>
13759
13760         * gst/qtdemux/qtdemux.c:
13761         * gst/qtdemux/qtdemux.h:
13762         Share qtdemux debug category across all files, otherwise all debugging
13763         in files other than qtdemux.c would end up in the default category.
13764
13765 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
13766
13767         * gst/spectrum/gstspectrum.c: (gst_spectrum_start),
13768         (gst_spectrum_event), (gst_spectrum_transform_ip):
13769         * gst/spectrum/gstspectrum.h:
13770           One FIXME less, by resolving message timestamps against the playback
13771           segment.
13772
13773 2007-03-06  Wim Taymans  <wim@fluendo.com>
13774
13775         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
13776         (gst_spectrum_init), (gst_spectrum_set_property),
13777         (gst_spectrum_transform_ip):
13778         Fix and cleanup default property values.
13779         Add FIXMEs for stuff that looks rather wrong.
13780
13781 2007-03-05  Stefan Kost  <ensonic@users.sf.net>
13782
13783         * gst/spectrum/demo-audiotest.c: (message_handler):
13784         * gst/spectrum/demo-osssrc.c: (message_handler):
13785           Remove two obsolete and confusing comments.
13786
13787 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
13788
13789         * ext/nas/nassink.c: (gst_nas_sink_class_init),
13790         (gst_nas_sink_init), (gst_nas_sink_getcaps),
13791         (gst_nas_sink_unprepare):
13792           Some more cleanups/changes; use boilerplate macro.
13793
13794 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
13795
13796         * ext/nas/Makefile.am:
13797         * ext/nas/README:
13798         * ext/nas/nassink.c: (gst_nas_sink_get_type),
13799         (gst_nas_sink_base_init), (gst_nas_sink_class_init),
13800         (gst_nas_sink_init), (gst_nas_sink_finalize),
13801         (gst_nas_sink_getcaps), (gst_nas_sink_prepare),
13802         (gst_nas_sink_unprepare), (gst_nas_sink_delay),
13803         (gst_nas_sink_reset), (gst_nas_sink_write),
13804         (gst_nas_sink_set_property), (gst_nas_sink_get_property),
13805         (gst_nas_sink_open), (gst_nas_sink_close), (NAS_flush),
13806         (NAS_sendData), (NAS_EventHandler), (gst_nas_sink_sink_get_format),
13807         (NAS_createFlow), (plugin_init):
13808         * ext/nas/nassink.h:
13809           Bunch of nassink clean-ups: make build by adding the right CFLAGS
13810           and LIBS to Makefile.am; rename structure, macros and functions
13811           according to canonical naming scheme; move some things around a bit;
13812           use GST_CAT_DEFAULT instead of GST_CAT_* everywhere; remove README
13813           file that didn't really contain any useful information anyway (the
13814           useful bits have been moved into the 'host' property description).
13815
13816 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
13817
13818         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_finalize):
13819         Chain up in finalize.
13820
13821 2007-03-03  Michael Smith  <msmith@fluendo.com>
13822
13823         * configure.ac:
13824         * gst/vmnc/Makefile.am:
13825           Fix up dist.
13826
13827 2007-03-03  Michael Smith  <msmith@fluendo.com>
13828
13829         * configure.ac:
13830         * gst/vmnc/Makefile.am:
13831         * gst/vmnc/vmncdec.c: (gst_vmnc_dec_base_init),
13832         (gst_vmnc_dec_class_init), (gst_vmnc_dec_init),
13833         (gst_vmnc_dec_reset), (vmnc_handle_wmvi_rectangle),
13834         (render_colour_cursor), (render_cursor), (vmnc_make_buffer),
13835         (vmnc_handle_wmvd_rectangle), (vmnc_handle_wmve_rectangle),
13836         (vmnc_handle_wmvf_rectangle), (vmnc_handle_wmvg_rectangle),
13837         (vmnc_handle_wmvh_rectangle), (vmnc_handle_wmvj_rectangle),
13838         (render_raw_tile), (render_subrect), (vmnc_handle_raw_rectangle),
13839         (vmnc_handle_hextile_rectangle), (vmnc_handle_packet),
13840         (vmnc_dec_setcaps), (vmnc_dec_chain), (vmnc_dec_change_state),
13841         (vmnc_dec_set_property), (vmnc_dec_get_property), (plugin_init):
13842           Add VMnc decoder.
13843           Still missing support for:
13844            - rectangle types I didn't find in my samples (e.g. copy, RRE,
13845              ZRLE)
13846            - alpha-composited cursors
13847
13848 2007-03-03  David Schleef  <ds@schleef.org>
13849
13850         * gst-libs/gst/app/Makefile.am:
13851           Install the headers.
13852
13853 2007-03-03  David Schleef  <ds@schleef.org>
13854
13855         * gst-libs/gst/app/Makefile.am:
13856         * gst-libs/gst/app/gstappbuffer.c:
13857         * gst-libs/gst/app/gstappbuffer.h:
13858         * gst-libs/gst/app/gstappsrc.c:
13859           Add GstAppBuffer that includes a callback and closure for
13860           proper handling of data chunks.
13861
13862 2007-03-03  David Schleef  <ds@schleef.org>
13863
13864         * gst-libs/gst/app/gstappsrc.c:
13865         * gst-libs/gst/app/gstappsrc.h:
13866           Hacking to address issues in 413418.
13867
13868 2007-03-03  David Schleef  <ds@schleef.org>
13869
13870         * Makefile.am:
13871         * configure.ac:
13872         * ext/Makefile.am:
13873         * gst-libs/gst/Makefile.am:
13874         * gst-libs/gst/app/Makefile.am:
13875         * gst-libs/gst/app/gstapp.c:
13876         * gst-libs/gst/app/gstappsrc.c:
13877         * gst-libs/gst/app/gstappsrc.h:
13878         * gst/app/Makefile.am:
13879         * gst/app/gstapp.c:
13880         * gst/app/gstappsrc.c:
13881         * gst/app/gstappsrc.h:
13882           Move the app library to gst-libs/gst/app (duh!)
13883
13884 2007-03-02 Christian Schaller <christian at fluendo dot com>
13885         
13886         Patch by: Nguyen Thai Ngoc Duy <pcloud@gmail.com>
13887
13888         * ext/nas: Upgrade of NAS plugin to 0.10 (#345633)
13889
13890 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13891
13892         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_sink_event):
13893           A few small clean-ups.
13894
13895         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
13896           More debug output for failure cases.
13897
13898 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13899
13900         Patch by: Young-Ho Cha  <ganadist at chollian net>
13901
13902         * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_frame),
13903         (gst_dtsdec_change_state):
13904           Don't do forced downmixing to stereo, but check what downstream
13905           can do and let libdts do the downmixing based on that (#400555).
13906
13907 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13908
13909         Patch by: Lutz Mueller  <lutz topfrose de>
13910
13911         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
13912         (gst_neonhttp_src_init), (gst_neonhttp_src_set_property),
13913         (gst_neonhttp_src_set_uri), (gst_neonhttp_src_set_proxy),
13914         (gst_neonhttp_src_send_request_and_redirect),
13915         (gst_neonhttp_src_uri_set_uri):
13916         * ext/neon/gstneonhttpsrc.h:
13917           Simplify _set_uri() and _set_proxy() and remove the unused ishttp
13918           member (#388050).
13919
13920         * tests/check/elements/neonhttpsrc.c: (GST_START_TEST):
13921           Fix bogus URI to something that actually exists, otherwise we just
13922           bypass the test (and also to something that doesn't redirect, since
13923           neonhttpsrc doesn't seem to handle this very gracefully yet)
13924
13925 2007-03-01  Chris Lord <chris@openedhand.com>
13926
13927         Reviewed by Christian Schaller <christian@fluendo.com>
13928
13929         Fixes Bug 357055
13930         * ext/ivorbis/Makefile.am:
13931         * ext/ivorbis/vorbisdec.c: Add support for Vorbis streams
13932         * ext/ivorbis/vorbisdec.h
13933         * ext/ivorbis/vorbis.c :
13934
13935 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
13936
13937         * tests/check/Makefile.am:
13938         Draw plugins in from the build tree sys/ dir, rather than
13939         picking up the already installed versions.
13940
13941 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
13942
13943         * configure.ac:
13944           Convert to new AG_GST style.
13945
13946 2007-02-27  Christian Schaller <christian at fluendo dot com>
13947
13948         * sys/direct*: Add Pioneers of the Inevitable to copyright
13949         * sys/macosxvideosink: Add Pioneers of the Inevitable to copyright
13950
13951 2007-02-27  Edward Hervey  <edward@fluendo.com>
13952
13953         * sys/osxvideo/cocoawindow.h:
13954         * sys/osxvideo/cocoawindow.m:
13955         * sys/osxvideo/osxvideosink.h:
13956         * sys/osxvideo/osxvideosink.m:
13957         Disable the cocoa event loop since it's a huge memory leak. Should only
13958         matter if the sink isn't used within an NSApp (which has already got
13959         a coca event loop).
13960         Remove all unused code.
13961
13962 2007-02-26  David Schleef  <ds@schleef.org>
13963
13964         * configure.ac:
13965         * gst/app/Makefile.am:
13966         * gst/app/gstapp.c:
13967         * gst/app/gstappsrc.c:
13968         * gst/app/gstappsrc.h:
13969           Add a new plugin/library to make it easy for apps to shove
13970           data into a pipeline.
13971
13972 2007-02-26  Tim-Philipp Müller  <tim at centricular dot net>
13973
13974         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_init):
13975         * gst/real/gstrealvideodec.c: (gst_real_video_dec_init):
13976           Use gst_pad_use_fixed_caps() on source pads, to avoid negotiation
13977           errors in certain situations (e.g. dec ! cs ! ximagesink and the
13978           imagesink window is resized); also, some minor clean-ups.
13979
13980 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
13981
13982         * configure.ac:
13983         * ext/gsm/Makefile.am:
13984         * ext/ladspa/Makefile.am:
13985         * ext/wavpack/Makefile.am:
13986         * gst/equalizer/Makefile.am:
13987         * gst/filter/Makefile.am:
13988         * gst/mve/Makefile.am:
13989         * gst/nsf/Makefile.am:
13990         * gst/replaygain/Makefile.am:
13991         * gst/speed/Makefile.am:
13992           Fix build with LDFLAGS='-Wl,-z,defs'.
13993
13994 2007-02-20  Sébastien Moutte  <sebastien@moutte.net>
13995
13996         * sys/directsound/gstdirectsoundsink.c:
13997         * sys/directsound/gstdirectsoundsink.h:
13998           Remove include of unused headers.
13999         * sys/waveform/gstwaveformplugin.c:
14000         * sys/waveform/gstwaveformsink.c:
14001         * sys/waveform/gstwaveformsink.h:
14002         * win32/vs6/libgstwaveform.dsp:
14003           Add a new waveform plugin which includes an audio sink 
14004           element using the WaveForm win32 API.
14005         * win32/MANIFEST:
14006           Add the new project file form waveform plugin.
14007         
14008 2007-02-18  Sébastien Moutte  <sebastien@moutte.net>
14009         
14010         * sys/directdraw/gstdirectdrawplugin.c:
14011         * sys/directdraw/gstdirectdrawsink.c:
14012         * sys/directdraw/gstdirectdrawsink.h:
14013           Prepare the plugin to move to good:
14014           Remove unused/untested code (rendering to an extern surface,
14015           yuv format rendering).Use GST_(DEBUG/*)_OBJECT macros
14016       Rename all functions from gst_directdrawsink to gst_directdraw_sink.
14017           Add gtk doc section
14018           Fix a bug in gst_directdraw_sink_show_frame, memcpy line by line
14019           respecting destination surface stride.
14020         * sys/directsound/gstdirectsoundplugin.c:
14021         * sys/directsound/gstdirectsoundsink.c:
14022         * sys/directsound/gstdirectsoundsink.h:
14023           Prepare the plugin to move to good:
14024           Rename all functions from gst_directsoundsink to gst_directsound_sink.
14025           Add gtk doc section
14026         * win32/common/config.h.in:
14027         * win32/MANIFEST:
14028           Add config.h.in
14029
14030 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
14031
14032         * configure.ac:
14033         * docs/plugins/Makefile.am:
14034           Add crossreferences to glib/gobject/gstream docs. Also fix typo in
14035           timidity.cfg check.
14036
14037         * ext/timidity/gsttimidity.c: (plugin_init):
14038           Also build if no config was detected at configure time.
14039
14040 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14041
14042         * configure.ac:
14043         * ext/timidity/Makefile.am:
14044         * ext/timidity/gsttimidity.c: (plugin_init):
14045         * ext/timidity/gstwildmidi.c: (gst_wildmidi_base_init),
14046         (gst_wildmidi_class_init), (gst_wildmidi_init),
14047         (gst_wildmidi_src_convert), (gst_wildmidi_src_query),
14048         (gst_wildmidi_get_upstream_size), (gst_wildmidi_get_segment),
14049         (gst_wildmidi_get_new_segment_event), (gst_wildmidi_src_event),
14050         (gst_wildmidi_activate), (gst_wildmidi_activatepull),
14051         (gst_wildmidi_allocate_buffer), (gst_wildmidi_clip_buffer),
14052         (gst_wildmidi_fill_buffer), (gst_wildmidi_get_buffer),
14053         (gst_wildmidi_loop), (gst_wildmidi_change_state),
14054         (gst_wildmidi_set_property), (gst_wildmidi_get_property),
14055         (gst_wildmidi_typefind), (wildmidi_open_config), (plugin_init):
14056         * ext/timidity/gstwildmidi.h:
14057           Add second midi renderer. Fix some double frees and leaks. Clean up
14058           logging.
14059
14060 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
14061
14062         * Makefile.am:
14063           Add win32 MANIFEST
14064         * sys/directdraw/gstdirectdrawsink.c:
14065         * sys/directdraw/gstdirectdrawsink.h:
14066           Clear unused code and add comments.
14067           Remove yuv from template caps, it only supports RGB
14068           actually.
14069           Implement XOverlay interface and remove window and fullscreen 
14070           properties.
14071           Add debug logs.
14072           Test for blit capabilities to return only the current colorspace if
14073           the hardware can't blit for one colorspace to another.
14074         * sys/directsound/gstdirectsoundsink.c:
14075           Add some debugs.
14076         * win32/MANIFEST:
14077           Add VS7 project files and solution.
14078         * win32/vs6/gst_plugins_bad.dsw:
14079         * win32/vs6/libgstdirectdraw.dsp:
14080         * win32/vs6/libgstdirectsound.dsp:
14081         * win32/vs6/libgstqtdemux.dsp:
14082           Update project files.
14083
14084 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14085
14086         * ext/faad/gstfaad.c:
14087           Also update the comment that describes the hack.
14088
14089 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14090
14091         * configure.ac:
14092           Tell the code which faad it is, so that we can adjust the hacks
14093           needed.
14094
14095         * ext/faad/gstfaad.c:
14096           Make our hacks dependent on the fadd lib in use.
14097
14098 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14099
14100         * configure.ac:
14101           Fix faad detection to support also fadd with new symbol prefix.
14102           ChangeLog surgery.
14103           
14104 2007-02-08  Stefan Kost  <ensonic@users.sf.net>
14105
14106         Patch by: Wouter Paesen <wouter@blue-gate.be>
14107
14108         * configure.ac:
14109         * ext/Makefile.am:
14110         * ext/timidity/Makefile.am:
14111         * ext/timidity/gsttimidity.c: (gst_timidity_base_init),
14112         (gst_timidity_class_init), (gst_timidity_init),
14113         (gst_timidity_set_song_options), (gst_timidity_src_convert),
14114         (gst_timidity_src_query), (gst_timidity_get_upstream_size),
14115         (gst_timidity_get_segment), (gst_timidity_get_new_segment_event),
14116         (gst_timidity_src_event), (gst_timidity_activate),
14117         (gst_timidity_activatepull), (gst_timidity_allocate_buffer),
14118         (gst_timidity_clip_buffer), (gst_timidity_fill_buffer),
14119         (gst_timidity_get_buffer), (gst_timidity_loop),
14120         (gst_timidity_change_state), (gst_timidity_typefind),
14121         (plugin_init):
14122         * ext/timidity/gsttimidity.h:
14123           Add timidity midi render plugin (#403992)
14124
14125 2007-02-07  Edward Hervey  <edward@fluendo.com>
14126
14127         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_query):
14128         GST_PAD_PARENT doesn't return a GstObject with an incremented refcount.
14129         Switched to using gst_pad_get_parent().
14130
14131 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14132
14133         * gst/modplug/gstmodplug.cc:
14134           Remove superfluous gst_caps_get_structure() call.
14135
14136 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14137
14138         * configure.ac:
14139           Increase required libsndfile version to a version that's known to
14140           have the function sf_write_sync() to make the build bots happy.
14141
14142 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14143
14144         * ext/sndfile/gstsfsrc.c:
14145           Fix build (installed setup).
14146
14147 2007-02-05  Andy Wingo  <wingo@pobox.com>
14148
14149         * ext/sndfile/Makefile.am:
14150         * ext/sndfile/gstsfsrc.h:
14151         * ext/sndfile/gstsfsrc.c: Port sfsrc to 0.10, pull or push, with
14152         random access woo.
14153
14154 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
14155
14156         * configure.ac:
14157         * gst/equalizer/Makefile.am:
14158         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init),
14159         (gst_iir_equalizer_class_init), (gst_iir_equalizer_init),
14160         (setup_filter), (gst_iir_equalizer_compute_frequencies),
14161         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14162         (gst_iir_equalizer_transform_ip), (gst_iir_equalizer_setup),
14163         (plugin_init):
14164         * gst/equalizer/gstiirequalizer.h:
14165           Fix up to use the newly ported (actually working) GstAudioFilter.
14166           Bump core/base requirements to CVS for this.
14167
14168         * tests/icles/.cvsignore:
14169         * tests/icles/Makefile.am:
14170         * tests/icles/equalizer-test.c: (check_bus),
14171         (equalizer_set_band_value), (equalizer_set_all_band_values),
14172         (equalizer_set_band_value_and_wait),
14173         (equalizer_set_all_band_values_and_wait), (do_slider_fiddling),
14174         (main):
14175           Add brain-dead interactive test for equalizer.
14176
14177 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14178
14179         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_class_init),
14180         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14181         (gst_iir_equalizer_filter_inplace):
14182           Rename "values" property to "band-values" and change type into a
14183           GValueArray, so it's more easily bindable and the range of the
14184           values passed in is defined and checked etc.; also do some
14185           locking.
14186
14187 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14188
14189         Patch by: James "Doc" Livingston  <doclivingston at gmail com>
14190
14191         * configure.ac:
14192         * gst/equalizer/Makefile.am:
14193         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
14194         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
14195         (gst_iir_equalizer_compute_frequencies),
14196         (gst_iir_equalizer_set_property),
14197         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
14198         (plugin_init):
14199           Port equalizer plugin to 0.10 (#403572).
14200
14201 2007-02-02  Andy Wingo  <wingo@pobox.com>
14202
14203         * configure.ac: 
14204         * ext/Makefile.am
14205         * ext/sndfile/Makefile.am:
14206         * ext/sndfile/gstsf.c:
14207         * ext/sndfile/gstsf.h:
14208         * ext/sndfile/gstsfsink.c:
14209         * ext/sndfile/gstsfsink.h: Port sfsink to 0.10. Works in pull or
14210         push mode with interleaved float or int data.
14211
14212 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14213
14214         * ext/alsaspdif/alsaspdifsink.c: (plugin_init):
14215           Set rank to NONE so that it doesn't get autoplugged by autoaudiosink
14216           (which didn't happen previously because the klass string didn't
14217           contain anything autoaudiosink was looking for).
14218
14219 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
14220
14221         * gst/real/gstrealaudiodec.c:
14222         * gst/real/gstrealvideodec.c:
14223           Fix classification in GstElementDetails.
14224
14225 2007-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
14226
14227         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
14228         (gst_wavpack_parse_handle_seek_event),
14229         (gst_wavpack_parse_create_src_pad):
14230         Fix a off by one that leads to the duration reported as one
14231         sample less than it is
14232
14233 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
14234
14235         * ext/alsaspdif/alsaspdifsink.c:
14236         * gst/nsf/gstnsf.c:
14237           Fix classification in GstElementDetails.
14238
14239         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init),
14240         (gst_ladspa_class_init):
14241           Improve Klassification and reduce code slighly.
14242
14243 2007-01-30  Edward Hervey  <edward@fluendo.com>
14244
14245         * configure.ac:
14246         Check for an Objective C compiler
14247         * sys/Makefile.am:
14248         * sys/osxvideo/Makefile.am:
14249         * sys/osxvideo/cocoawindow.h:
14250         * sys/osxvideo/cocoawindow.m:
14251         * sys/osxvideo/osxvideosink.h:
14252         * sys/osxvideo/osxvideosink.m:
14253         Port of osxvideo plugin to 0.10. Do NOT consider 100% stable !
14254         Fixes #402470
14255
14256 2007-01-28  Tim-Philipp Müller  <tim at centricular dot net>
14257
14258         * gst/videocrop/gstvideocrop.c:
14259         (gst_video_crop_get_image_details_from_caps),
14260         (gst_video_crop_transform_packed_complex):
14261           Fix cropping for packed 4:2:2 formats YUYV/YUY2 and UYVY.
14262
14263         * tests/icles/videocrop-test.c: (check_bus_for_errors),
14264         (test_with_caps), (main):
14265           Block streaming thread before changing filter caps while the
14266           pipeline is running so that we don't get random not-negotiated
14267           errors just because GStreamer can't handle that yet.
14268
14269 2007-01-28  Stefan Kost  <ensonic@users.sf.net>
14270
14271         * ext/ladspa/Makefile.am:
14272         * ext/ladspa/gstladspa.c: (gst_ladspa_class_get_param_spec):
14273           add GstController support to ladspa
14274
14275 2007-01-28  Tim-Philipp Müller  <tim at centricular dot net>
14276
14277         Patch by: Rosfran Borges <rosfran dot borges at idnt org br>
14278
14279         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_start),
14280         (gst_mythtv_src_next_program_chain):
14281           Remove sleep calls, they've been moved into the library now ...
14282           (#354451).
14283
14284 2007-01-27  Tim-Philipp Müller  <tim at centricular dot net>
14285
14286         * tests/icles/videocrop-test.c: (test_with_caps):
14287           Catch errors while the test is running.
14288
14289 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
14290
14291         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query):
14292         Fix the SEEKING query. We can seek if we are in pull mode, not the
14293         other way around. Also set the correct format in the seeking query and
14294         handle the case where the headers are not read yet and we can't say
14295         anything about our seeking capabilities.
14296         
14297 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
14298
14299         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
14300         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
14301         Fix spelling in 2 places: It's called Wavpack, not WavePack.
14302
14303 2007-01-25  Edward Hervey  <edward@fluendo.com>
14304
14305         * gst/multifile/gstmultifilesink.c:
14306         (gst_multi_file_sink_class_init):
14307         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init):
14308         * gst/mve/gstmvedemux.c: (gst_mve_video_create_buffer),
14309         (gst_mve_video_palette), (gst_mve_video_code_map),
14310         (gst_mve_audio_init), (gst_mve_audio_data), (gst_mve_timer_create),
14311         (gst_mve_demux_chain):
14312         * gst/mve/gstmvemux.c: (gst_mve_mux_push_chunk):
14313         * gst/mve/mveaudioenc.c: (mve_compress_audio):
14314         * gst/mve/mvevideodec16.c: (ipvideo_copy_block):
14315         * gst/mve/mvevideodec8.c: (ipvideo_copy_block):
14316         * gst/mve/mvevideoenc16.c: (mve_encode_frame16):
14317         * gst/mve/mvevideoenc8.c: (mve_encode_frame8):
14318         Use proper print statements.
14319         Fixes build on mac os x.
14320         <wingo> oo look at me my name is edward i'm hacking on macos wooo
14321
14322 2007-01-24  Wim Taymans  <wim@fluendo.com>
14323
14324         * gst/qtdemux/gstrtpxqtdepay.c:
14325         Fix caps on the depayloader.
14326
14327 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
14328
14329         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_set_property):
14330           Use break here instead of goto.
14331
14332 2007-01-13  Andy Wingo  <wingo@pobox.com>
14333
14334         * gst/interleave/deinterleave.c (gst_deinterleave_add_new_pads):
14335         Use fixed caps on src pads.
14336         (gst_deinterleave_remove_pads): Remove src pads, not sink pads. I
14337         seem to have reverse midas disease!
14338         (gst_deinterleave_process): Proxy timestamps, offsets, durations,
14339         and set caps on outgoing buffers. Fixes #395597, I think.
14340
14341         * gst/interleave/interleave.c (gst_interleave_init): Init the
14342         activation mode properly.
14343         (gst_interleave_src_setcaps, gst_interleave_src_getcaps)
14344         (gst_interleave_init): Set a setcaps and getcaps function on the
14345         src pad, so that we can implement pull-mode negotiation.
14346         (gst_interleave_sink_setcaps): Renamed from
14347         gst_interleave_setcaps, as it only does the sink logic now.
14348         Implement both for pull-mode and push-mode.
14349         (gst_interleave_process): Set caps on our outgoing buffer.
14350         (gst_interleave_src_activate_pull): Fix some more bogus casts.
14351         What is up with this.
14352
14353 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
14354
14355         * ext/mythtv/gstmythtvsrc.c: (do_read_request_response),
14356         (gst_mythtv_src_create), (gst_mythtv_src_get_position),
14357         (gst_mythtv_src_do_seek), (gst_mythtv_src_start),
14358         (gst_mythtv_src_next_program_chain), (gst_mythtv_src_get_size),
14359         (gst_mythtv_src_handle_event), (gst_mythtv_src_handle_query),
14360         (gst_mythtv_src_change_state), (gst_mythtv_src_set_property),
14361         (gst_mythtv_src_uri_get_type):
14362           Clean up a bit, mostly the debug statements; fix deadlock in
14363           _set_property() in the error cases; fix up query function.
14364
14365 2007-01-12  Andy Wingo  <wingo@pobox.com>
14366
14367         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_fixate)
14368         (gst_signal_processor_ouija_caps, gst_signal_processor_prepare):
14369         Remove fixate/ouija stuff, thankfully, due to the new
14370         part-negotiation.txt pull-mode negotiation scheme.
14371         (gst_signal_processor_setcaps_pull)
14372         (gst_signal_processor_setcaps): Implement upstream set_caps pull
14373         proxying for pull mode. Now this works: ladspa-sine-fcac !
14374         audioconvert ! alsasink.
14375
14376 2007-01-12  Edgard Lima <edgard.lima@indt.org.br>
14377
14378         Patch by: Rosfran Borges <rosfran.borges@indt.org.br>
14379
14380         * configure.ac:
14381         * gst-plugins-bad.spec.in:
14382         * ext/Makefile.am:
14383         * ext/mythtv/Makefile.am:
14384         * ext/mythtv/gstmythtvsrc.c:
14385         * ext/mythtv/gstmythtvsrc.h:
14386         MythTV client source plugin created (#354451).
14387
14388 2007-01-12  Wim Taymans  <wim@fluendo.com>
14389
14390         * gst/qtdemux/Makefile.am:
14391         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_base_init),
14392         (gst_rtp_xqt_depay_class_init), (gst_rtp_xqt_depay_init),
14393         (gst_rtp_xqt_depay_finalize), (gst_rtp_quicktime_parse_sd),
14394         (gst_rtp_xqt_depay_setcaps), (gst_rtp_xqt_depay_process),
14395         (gst_rtp_xqt_depay_set_property), (gst_rtp_xqt_depay_get_property),
14396         (gst_rtp_xqt_depay_change_state), (gst_rtp_xqt_depay_plugin_init):
14397         * gst/qtdemux/gstrtpxqtdepay.h:
14398         * gst/qtdemux/qtdemux.c: (gst_qtdemux_base_init),
14399         (gst_qtdemux_loop_state_header), (gst_qtdemux_loop),
14400         (qtdemux_parse_moov), (qtdemux_parse_container),
14401         (qtdemux_parse_node), (gst_qtdemux_add_stream),
14402         (qtdemux_parse_trak), (qtdemux_audio_caps):
14403         * gst/qtdemux/qtdemux.h:
14404         * gst/qtdemux/quicktime.c: (plugin_init):
14405         Add X-QT depayloader that will eventually share code with the demuxer.
14406         Make new plugin entry point with quicktime releated stuff.
14407
14408 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
14409
14410         * gst/qtdemux/Makefile.am:
14411           Dist all new files.
14412
14413 2007-01-12  Wim Taymans  <wim@fluendo.com>
14414
14415         * docs/plugins/Makefile.am:
14416         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
14417         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
14418         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
14419         * docs/plugins/gst-plugins-bad-plugins.signals:
14420         * docs/plugins/inspect/plugin-qtdemux.xml:
14421         Activate docs for jack, sdl and qtdemux.
14422
14423 2007-01-12  Wim Taymans  <wim@fluendo.com>
14424
14425         * ext/jack/gstjackaudiosink.c: (jack_sample_rate_cb),
14426         (jack_buffer_size_cb), (jack_shutdown_cb),
14427         (gst_jack_ring_buffer_acquire):
14428         * ext/jack/gstjackaudiosink.h:
14429         Improve docs.
14430
14431 2007-01-12  Wim Taymans  <wim@fluendo.com>
14432
14433         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init):
14434         Fix typo in docs.
14435
14436 2007-01-12  Wim Taymans  <wim@fluendo.com>
14437
14438         * gst/qtdemux/Makefile.am:
14439         * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc),
14440         (gst_qtdemux_loop_state_header), (gst_qtdemux_combine_flows),
14441         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
14442         (gst_qtdemux_chain), (qtdemux_sink_activate_pull),
14443         (qtdemux_inflate), (qtdemux_parse_moov), (qtdemux_parse_container),
14444         (qtdemux_parse_node), (qtdemux_tree_get_child_by_type),
14445         (qtdemux_tree_get_sibling_by_type), (gst_qtdemux_add_stream),
14446         (qtdemux_parse_samples), (qtdemux_parse_segments),
14447         (qtdemux_parse_trak), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
14448         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
14449         (qtdemux_parse_udta), (qtdemux_redirects_sort_func),
14450         (qtdemux_process_redirects), (qtdemux_parse_redirects),
14451         (qtdemux_parse_tree), (gst_qtdemux_handle_esds),
14452         (qtdemux_video_caps), (qtdemux_audio_caps):
14453         * gst/qtdemux/qtdemux.h:
14454         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_mvhd),
14455         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
14456         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
14457         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
14458         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
14459         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
14460         (qtdemux_dump_unknown), (qtdemux_node_dump_foreach),
14461         (qtdemux_node_dump):
14462         * gst/qtdemux/qtdemux_dump.h:
14463         * gst/qtdemux/qtdemux_fourcc.h:
14464         * gst/qtdemux/qtdemux_types.c: (qtdemux_type_get):
14465         * gst/qtdemux/qtdemux_types.h:
14466         * gst/qtdemux/qtpalette.h:
14467         Cleanup and refactor to make the code more readable.
14468         Move debugging/tables into separate files.
14469         Add 2/4/16 color palletee support.
14470         Fix raw 15 bit RGB handling.
14471         Use more FOURCC constants.
14472         Add some docs.
14473
14474 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14475
14476         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
14477
14478         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
14479         (gst_wavpack_enc_correction_mode_get_type),
14480         (gst_wavpack_enc_joint_stereo_mode_get_type):
14481           Minor clean-up: use enum values instead of hardcoded constants (#395536).
14482
14483 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14484
14485         * gst/mve/gstmvedemux.c: (gst_mve_demux_get_src_query_types),
14486         (gst_mve_demux_handle_src_query), (gst_mve_demux_handle_src_event),
14487         (gst_mve_add_stream):
14488           Support SEEKING query (bad news now delivered properly!); add event
14489           function to source pads to make sure seeks aren't propagated
14490           upstream, even if they aren't handled.
14491
14492 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14493
14494         Patch by: Jens Granseuer  <jensgr at gmx net>
14495
14496         * configure.ac:
14497         * gst/mve/Makefile.am:
14498         * gst/mve/TODO:
14499         * gst/mve/gstmve.c:
14500         * gst/mve/gstmvedemux.c:
14501         * gst/mve/gstmvedemux.h:
14502         * gst/mve/gstmvemux.c:
14503         * gst/mve/gstmvemux.h:
14504         * gst/mve/mve.h:
14505         * gst/mve/mveaudiodec.c:
14506         * gst/mve/mveaudioenc.c:
14507         * gst/mve/mvevideodec16.c:
14508         * gst/mve/mvevideodec8.c:
14509         * gst/mve/mvevideoenc16.c:
14510         * gst/mve/mvevideoenc8.c:
14511           Add Interplay MVE format demuxer/decoder and muxer/encoder. Demuxer
14512           doesn't support seeking yet, but seems to work fine otherwise.
14513           Closes #348973.
14514
14515 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
14516
14517         * gst/real/Makefile.am:
14518           Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
14519
14520 2007-01-07  Andy Wingo  <wingo@pobox.com>
14521
14522         * configure.ac: 
14523         * gst/interleave/Makefile.am: 
14524         * gst/interleave/plugin.h: 
14525         * gst/interleave/plugin.c: 
14526         * gst/interleave/interleave.c: 
14527         * gst/interleave/deinterleave.c: New elements interleave and
14528         deinterleave, implement channel interleaving and deinterleaving.
14529         The interleaver can operate in pull or push mode but the
14530         deinterleaver is more like a demuxer and can only operate in push
14531         mode.
14532         
14533 2007-01-06  Edward Hervey  <edward@fluendo.com>
14534
14535         * configure.ac:
14536         Properly detect the two architectures on which the real plugin can be
14537         built.
14538         Fixes #393622
14539
14540 2007-01-06  Andy Wingo  <wingo@pobox.com>
14541
14542         * ext/ladspa/gstsignalprocessor.c
14543         (gst_signal_processor_ouija_caps): Move around in the source
14544         file...
14545         (gst_signal_processor_prepare, gst_signal_processor_do_pulls):
14546         Call ouija_caps in prepare() instead of do_pulls(), a bit earlier.
14547         This allows us to have caps when we do the pad_alloc_buffer().
14548         (gst_pad_alloc_buffer_and_set_caps): Use self->caps instead of the
14549         pad caps, which might not be set yet.
14550
14551         * ext/ladspa/gstsignalprocessor.c: 
14552         (gst_signal_processor_add_pad_from_template)
14553         (gst_signal_processor_fixate): Add a fixate function, to assist in
14554         pathological ladspa-sine-fcac ! fakesink can-activate-pull=true
14555         cases.
14556         (gst_signal_processor_prepare, gst_signal_processor_process): Add
14557         nframes args so that getrange can tell ladspa how many frames to
14558         process.
14559         (gst_signal_processor_ouija_caps): setcaps needs to be called
14560         before processing, which normally happens when chaining a buffer
14561         to a pad. However in getrange mode with no sinks we need to check
14562         explicitly for this condition, guess some caps to use, and use
14563         those to setcaps(). Hence this mystical function.
14564         (gst_signal_processor_do_pulls): Pull in bytes, not samples.
14565         Divine the caps if necessary.
14566         (gst_signal_processor_getrange): Interpret the length as bytes,
14567         not samples.
14568         (gst_signal_processor_chain): nframes=G_MAXUINT, will be limited
14569         by incoming buffer sizes.
14570
14571 2007-01-06  Edward Hervey  <edward@fluendo.com>
14572
14573         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_finalize):
14574         Don't call the RAFreeDecoder since it randomly causes segfaults.
14575         * gst/real/gstrealaudiodec.h:
14576         indent properly.
14577
14578 2007-01-06  Edward Hervey  <edward@fluendo.com>
14579
14580         Patch by: Lutz Mueller <lutz@topfrose.de>
14581         
14582         * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode),
14583         (gst_real_video_dec_setcaps), (open_library), (close_library),
14584         (gst_real_video_dec_finalize):
14585         * gst/real/gstrealvideodec.h:
14586         Implement error recovery on setcaps failure.
14587
14588 2007-01-06  Edward Hervey  <edward@fluendo.com>
14589
14590         Patch by: Lutz Mueller <lutz@topfrose.de>
14591         
14592         * gst/real/Makefile.am:
14593         * gst/real/gstreal.c: (plugin_init):
14594         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
14595         (gst_real_audio_dec_setcaps), (gst_real_audio_dec_init),
14596         (gst_real_audio_dec_base_init), (gst_real_audio_dec_change_state),
14597         (gst_real_audio_dec_finalize), (gst_real_audio_dec_set_property),
14598         (gst_real_audio_dec_get_property), (gst_real_audio_dec_class_init):
14599         * gst/real/gstrealaudiodec.h:
14600         Added RealAudio wrapper elementfactory.
14601         Modified structures so it can also work on x86_64 using the
14602         adequate .so .
14603
14604 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14605
14606         * configure.ac:
14607         * gst/qtdemux/Makefile.am:
14608         * gst/qtdemux/qtdemux.c: (qtdemux_parse_moov):
14609           Check for zlib and if available pass it explicitly to the linker
14610           when linking qtdemux. If not available (or --disable-external has
14611           been specified!), disable the bits in qtdemux that use it. Fixes
14612           build on MingW (#392856).
14613
14614 2007-01-05  Edward Hervey  <edward@fluendo.com>
14615
14616         * configure.ac:
14617         Real video .so are now also available for x86_64, so we can build the
14618         Real plugin on i386 AND x86_64.
14619         * gst/real/Makefile.am:
14620         * gst/real/gstreal.c: (plugin_init):
14621         New plugin file for real .so wrapper plugins.
14622         * gst/real/gstrealvideodec.c: (gst_real_video_dec_alloc_buffer),
14623         (gst_real_video_dec_decode), (gst_real_video_dec_chain),
14624         (gst_real_video_dec_activate_push), (gst_real_video_dec_setcaps),
14625         (open_library), (close_library), (gst_real_video_dec_init),
14626         (gst_real_video_dec_base_init), (gst_real_video_dec_finalize),
14627         (gst_real_video_dec_set_property),
14628         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
14629         * gst/real/gstrealvideodec.h:
14630         Moved RealVideo element to separate file
14631         Cleaned up code some more.
14632         Make it work on x86_64.
14633         Try several possible locations for .so
14634         Separate opening/closing libraries in separate functions.
14635
14636 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14637
14638         * tests/icles/videocrop-test.c: (main):
14639           Call g_thread_init() right at the beginning. Remove superfluous
14640           gst_init() - we've already been inited via the GOption stuff.
14641
14642 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14643
14644         * configure.ac:
14645           Don't compile rfbsource if we don't have sys/socket.h.
14646           Should fix compilation on MingW.
14647
14648 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
14649
14650         * configure.ac:
14651         * ext/amrwb/Makefile.am:
14652         * ext/amrwb/amrwb-code/Makefile.am:
14653         * ext/amrwb/amrwb-code/run.sh:
14654         * gst-libs/Makefile.am:
14655         * gst-libs/ext/Makefile.am:
14656         * gst-libs/ext/amrwb/Makefile.am:
14657         * gst-libs/ext/amrwb/README:
14658           Move amrwb code getting and building to gst-libs/ext/amrwb
14659           Adapt everything else to match.
14660
14661 2007-01-04  Julien MOUTTE  <julien@moutte.net>
14662
14663         * ext/directfb/dfbvideosink.c:
14664         (gst_dfbvideosink_navigation_send_event),
14665         (gst_dfbvideosink_get_type):
14666         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_open):
14667         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_setcaps),
14668         (gst_sdlvideosink_show_frame),
14669         (gst_sdlvideosink_navigation_send_event):
14670         * ext/sdl/sdlvideosink.h: Fix various compiler warnings that 
14671         reveal potential bugs.
14672
14673 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
14674
14675         Patch by: Vincent Torri  <vtorri at univ-evry fr>
14676
14677         * configure.ac:
14678         * sys/Makefile.am:
14679         * sys/directsound/Makefile.am:
14680         * sys/directsound/gstdirectsoundsink.c:
14681         (gst_directsoundsink_reset):
14682           Add directsoundsink to build and dist it, so it gets built when
14683           compiling with MingW on win32 and the required headers and libraries
14684           are available (fixes: #392638). Also simplify DirectDraw check a bit.
14685
14686         * tests/check/elements/.cvsignore:
14687           Fix CVS ignore for neonhttpsrc test binary.
14688
14689 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
14690
14691         Patch by: Vincent Torri  <vtorri at univ-evry fr>
14692
14693         * configure.ac:
14694         * sys/Makefile.am:
14695         * sys/directdraw/Makefile.am:
14696           Add directdrawsink to build and dist it, so it gets built when
14697           compiling with MingW on win32 and the required headers and libraries
14698           are available (fixes: #392313).
14699
14700         * sys/directdraw/gstdirectdrawsink.c:
14701         (gst_directdrawsink_center_rect), (gst_directdrawsink_show_frame),
14702         (gst_directdrawsink_setup_ddraw),
14703         (gst_directdrawsink_surface_create):
14704           Comment out some unused things and fix some printf format issues in
14705           order to avoid warnings when buildling with MingW (#392313).
14706
14707 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
14708
14709         Patch by: Jens Granseuer  <jensgr at gmx net>
14710
14711         * ext/xvid/gstxvidenc.c: (gst_xvidenc_encode),
14712         (gst_xvidenc_get_property):
14713         * gst/filter/gstbpwsinc.c: (bpwsinc_transform_ip):
14714         * gst/filter/gstfilter.c: (plugin_init):
14715         * gst/filter/gstiir.c: (iir_transform_ip):
14716         * gst/filter/gstlpwsinc.c: (lpwsinc_transform_ip):
14717         * gst/modplug/gstmodplug.cc:
14718         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_header_load),
14719         (gst_nuv_demux_stream_extend_header):
14720           Fix build with gcc-2.x (declare variables at the beginning of a
14721           block etc.). Fixes #391971.
14722
14723 2007-01-02  Lutz Mueller <lutz@topfrose.de>
14724
14725         reviewed by: Edward Hervey  <edward@fluendo.com>
14726
14727         * gst/real/gstreal.c:
14728         (gst_realdec_setcaps): Use codec_data supplied in caps.
14729         (gst_realdec_get_property): Correctly return default path.
14730         (gst_realdec_class_init): Remove unused state_change method.
14731
14732 2007-01-01  Edward Hervey  <edward@fluendo.com>
14733
14734         * configure.ac:
14735         Only build the plugin on 32bit x86 architectures.
14736
14737 2007-01-01  Lutz Mueller <lutz@topfrose.de>
14738
14739         reviewed by: Edward Hervey  <edward@fluendo.com>
14740
14741         * configure.ac:
14742         * gst/real/Makefile.am:
14743         * gst/real/gstreal.c: (gst_realdec_alloc_buffer),
14744         (gst_realdec_decode), (gst_realdec_chain),
14745         (gst_realdec_activate_push), (gst_realdec_setcaps),
14746         (gst_realdec_init), (gst_realdec_base_init),
14747         (gst_realdec_change_state), (gst_realdec_finalize),
14748         (gst_realdec_set_property), (gst_realdec_get_property),
14749         (gst_realdec_class_init), (plugin_init):
14750         New plugin for decoding RealVideo Streams using the x86 32bit
14751         shared libraries.
14752         Closes #354174
14753
14754 2006-12-30  Tim-Philipp Müller  <tim at centricular dot net>
14755
14756         * tests/check/elements/videocrop.c: (GST_START_TEST),
14757         (videocrop_test_cropping_init_context):
14758           When we can't create an element needed for the test, print a message
14759           detailing which element it actually is that's missing (#390673).
14760
14761 2006-12-22 Edgard Lima <edgard.lima@indt.org.br>
14762
14763         * ext/neon/gstneonhttpsrc.c:
14764         * ext/neon/gstneonhttpsrc.h:
14765         Added seek support.
14766         Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
14767         Fixes: #375264.
14768
14769 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
14770
14771         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14772         (cleanup_mpeg2enc):
14773         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14774         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14775         (cleanup_wavpackdec):
14776         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14777         (cleanup_wavpackenc):
14778         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14779           reapply consistent pad (de)activation
14780
14781 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
14782
14783         * configure.ac:
14784         Back to CVS
14785
14786         * gst-plugins-bad.doap:
14787         Add release section for 0.10.4
14788
14789 === release 0.10.4 ===
14790
14791 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
14792
14793         * configure.ac:
14794           releasing 0.10.4, "Black Bugs"
14795
14796 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
14797
14798         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14799         (cleanup_mpeg2enc):
14800         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14801         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14802         (cleanup_wavpackdec):
14803         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14804         (cleanup_wavpackenc):
14805         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14806           revert my freeze breakage
14807
14808 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
14809
14810         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14811         (cleanup_mpeg2enc):
14812         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14813         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14814         (cleanup_wavpackdec):
14815         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14816         (cleanup_wavpackenc):
14817         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14818           consistent pad (de)activation
14819
14820 2006-12-18  Tim-Philipp Müller  <tim at centricular dot net>
14821
14822         * gst/qtdemux/qtdemux.c: (gst_qtdemux_post_progress),
14823         (gst_qtdemux_chain):
14824           Don't post BUFFERING messages in streaming mode if the stream
14825           headers are behind the movie data; instead, post "progress" element
14826           messages as a temporary solution. Apps might get confused and do
14827           silly things to the pipeline state if they see buffering messages
14828           from different sources and don't realize they come from different
14829           sources (#387160).
14830
14831 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14832
14833         * configure.ac:
14834         * ext/Makefile.am:
14835         * ext/ladspa/*:
14836           Move LADPSA plugin from -good for the release, as it's not quite
14837           ready to be enabled by default in the -good module yet.
14838
14839 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14840
14841         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain),
14842         (gst_qtdemux_add_stream):
14843           Don't output g_warning for an unsupported format, just send a
14844           GST_ELEMENT_WARNING and don't add the pad.
14845           Fix the case where it doesn't check for a NULL pad in streaming mode.
14846           Fixes #387137
14847
14848 2006-12-18  Tim-Philipp Müller  <tim at centricular dot net>
14849
14850         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
14851           Fix crash dereferencing NULL pointer if there's no stco atom.
14852           Fixes #387122.
14853
14854 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14855
14856         * ext/wavpack/gstwavpackenc.h:
14857         Use local copy of md5.h, as it disappeared in recent wavpack
14858         installs.
14859         Patch by: Sebastian Dröge <slomo at ubuntu dot com>
14860         Fixes: #387076
14861
14862 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
14863
14864         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
14865         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event):
14866           We don't support seeking in streaming mode, so don't even try.
14867           Implement seeking query so apps can query seekability properly
14868           (see #365414). Fix duration query.
14869
14870 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
14871
14872         * Makefile.am:
14873         * gst-plugins-bad.doap:
14874         * gst-plugins-bad.spec.in:
14875           add doap file
14876
14877 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
14878
14879         * ext/libmms/gstmms.c: (gst_mms_create):
14880           These debug statements should be using LOG level.
14881
14882 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
14883
14884         * gst/modplug/libmodplug/sndfile.cpp:
14885           Fix potential buffer overflow (CVE-2006-4192) (#385788).
14886
14887 2006-12-13  Wim Taymans  <wim@fluendo.com>
14888
14889         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14890         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14891         (qtdemux_audio_caps):
14892         Add AMR-WB to the list of supported formats.
14893
14894 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14895
14896         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create),
14897         (send_request_and_redirect):
14898           Fix minor mem leak in redirect code.
14899
14900         * tests/check/Makefile.am:
14901         * tests/check/elements/.cvsignore:
14902         * tests/check/elements/neonhttpsrc.c: (handoff_cb),
14903         (GST_START_TEST), (neonhttpsrc_suite):
14904         * tests/check/gst-plugins-bad.supp:
14905           Add super-basic unit test for #384140.
14906
14907 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14908
14909         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create),
14910         (send_request_and_redirect):
14911           Set offset on buffers pushed out (id3demux gets confused if the
14912           first buffer does not have an offset of 0). Fixes #384140.
14913
14914 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14915
14916         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
14917         (gst_neonhttp_src_create), (send_request_and_redirect),
14918         (gst_neonhttp_src_start), (oom_callback):
14919          Minor clean-ups; remove newlines at end of debug statements.
14920
14921 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
14922
14923         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
14924           Fix non-working redirects from inetfilm.com (handle 'alis' reference
14925           data type as well). Fixes #378613.
14926
14927 2006-12-11  Wim Taymans  <wim@fluendo.com>
14928
14929         Patch by: Jonathan Matthew <jonathan at kaolin wh9 net>).
14930
14931         * gst/modplug/gstmodplug.cc:
14932         Fix modplug duration query. Fixes #384294.
14933
14934 2006-12-08  Wim Taymans  <wim@fluendo.com>
14935
14936         Patch by: René Stadler  <mail at renestadler de>
14937
14938         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14939         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14940         (qtdemux_audio_caps):
14941         Fix caps for 24 bit raw PCM audio (2).
14942         Fixes #383471.
14943
14944 2006-12-07  Wim Taymans  <wim@fluendo.com>
14945
14946         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14947         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14948         (qtdemux_video_caps):
14949         Handle more H263 variants.
14950
14951 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
14952
14953         * ext/jack/.cvsignore:
14954         Ignore old files as requested by the build slave.
14955
14956 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
14957
14958         * configure.ac:
14959         Update the Jack requirement to the version where I think options_t
14960         appeared
14961
14962 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
14963
14964         * win32/MANIFEST:
14965         Fix compilation on win32 under VS8
14966         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
14967         Partially fixes #381175
14968
14969 2006-11-30  Wim Taymans  <wim@fluendo.com>
14970
14971         Patch by: René Stadler  <mail at renestadler de>
14972
14973         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_event):
14974           Call the base class handler.  Fixes #380610.
14975
14976 2006-11-30  Wim Taymans  <wim@fluendo.com>
14977
14978         * ext/Makefile.am:
14979         Fix build.
14980
14981         * ext/jack/gstjackaudiosink.c: (jack_process_cb),
14982         (jack_sample_rate_cb), (jack_buffer_size_cb), (jack_shutdown_cb),
14983         (gst_jack_ring_buffer_acquire):
14984         Small cleanups.
14985
14986 2006-11-30  Wim Taymans  <wim@fluendo.com>
14987
14988         * configure.ac:
14989         * ext/Makefile.am:
14990         * ext/jack/Makefile.am:
14991         * ext/jack/gstjack.c: (plugin_init):
14992         * ext/jack/gstjack.h:
14993         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_get_type),
14994         (gst_jack_ring_buffer_class_init), (jack_process_cb),
14995         (jack_sample_rate_cb), (jack_buffer_size_cb), (jack_shutdown_cb),
14996         (gst_jack_ring_buffer_init), (gst_jack_ring_buffer_dispose),
14997         (gst_jack_ring_buffer_finalize),
14998         (gst_jack_ring_buffer_open_device),
14999         (gst_jack_ring_buffer_close_device),
15000         (gst_jack_ring_buffer_acquire), (gst_jack_ring_buffer_release),
15001         (gst_jack_ring_buffer_start), (gst_jack_ring_buffer_pause),
15002         (gst_jack_ring_buffer_stop), (gst_jack_ring_buffer_delay),
15003         (gst_jack_connect_get_type), (gst_jack_audio_sink_base_init),
15004         (gst_jack_audio_sink_class_init), (gst_jack_audio_sink_init),
15005         (gst_jack_audio_sink_set_property),
15006         (gst_jack_audio_sink_get_property), (gst_jack_audio_sink_getcaps),
15007         (gst_jack_audio_sink_create_ringbuffer):
15008         * ext/jack/gstjackaudiosink.h:
15009           Added fully functional jackaudiosink.
15010
15011 2006-11-27  Wim Taymans  <wim@fluendo.com>
15012
15013         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15014         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak):
15015           Remove some asserts and replace them with a proper error
15016           message. Fixes #379261.
15017
15018 2006-11-26  Michael Smith  <msmith@fluendo.com>
15019
15020         * ext/theora/theoradec.c: (theora_dec_src_query),
15021         (theora_dec_src_event), (theora_handle_data_packet),
15022         (theora_dec_chain):
15023           Send events on the right pads, since they don't work very well if
15024           you send them in the wrong direction.
15025
15026 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
15027
15028         * ext/audiofile/gstafsink.c:
15029         * ext/polyp/plugin.c: (plugin_init):
15030         * ext/polyp/polypsink.c:
15031         * ext/polyp/polypsink.h:
15032         * sys/dxr3/dxr3audiosink.h:
15033         * sys/dxr3/dxr3spusink.h:
15034         * sys/dxr3/dxr3videosink.h:
15035           remove obsolete _factory_init protos and functions
15036
15037 2006-11-19  Michael Smith  <msmith@fluendo.com>
15038
15039         * gst/librfb/Makefile.am:
15040           Compile with appropriate cflags. Fixes build.
15041
15042 2006-11-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15043
15044         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_tune):
15045         Actually set the TONE parameter for DVB-S when we should.
15046
15047 2006-11-16  David Schleef  <ds@schleef.org>
15048
15049         * gst/librfb/rfbdecoder.c: Fixes for 64-bit architectures.
15050
15051 2006-11-16  David Schleef  <ds@schleef.org>
15052
15053         * gst/librfb/gstrfbsrc.h:  Oops, add this file.
15054
15055 2006-11-16  David Schleef  <ds@schleef.org>
15056
15057         Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
15058
15059         * configure.ac:
15060         * gst/librfb/Makefile.am:
15061         * gst/librfb/gstrfbsrc.c:
15062         * gst/librfb/rfb.c:
15063         * gst/librfb/rfb.h:
15064         * gst/librfb/rfbbuffer.c:
15065         * gst/librfb/rfbbuffer.h:
15066         * gst/librfb/rfbbytestream.c:
15067         * gst/librfb/rfbbytestream.h:
15068         * gst/librfb/rfbcontext.h:
15069         * gst/librfb/rfbdecoder.c:
15070         * gst/librfb/rfbdecoder.h:
15071         * gst/librfb/rfbutil.h:
15072           Port librfb to 0.10 (#376106).
15073
15074 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
15075
15076         * ext/spc/gstspc.c: (spc_play):
15077           Fix build with disabled gst-debug.
15078
15079 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
15080
15081         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
15082
15083         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
15084         (gst_wavpack_dec_init), (gst_wavpack_dec_change_state):
15085         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init),
15086         (gst_wavpack_enc_class_init), (gst_wavpack_enc_reset),
15087         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
15088         (gst_wavpack_enc_change_state):
15089         * ext/wavpack/gstwavpackparse.c:
15090           Some small clean-ups: use enums instead of hard-coded numbers,
15091           const-ify element details, re-factor some code into _reset()
15092           functions (#352605).
15093
15094 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
15095
15096         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_create):
15097         * sys/dvb/gstdvbsrc.h:
15098           Fix minor printf format issue; remove overly paranoid checks in
15099           create function; fix GObject boilerplate macros.
15100
15101 2006-11-14  Wim Taymans  <wim@fluendo.com>
15102
15103         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15104         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak):
15105         Don't parse extra sample params for raw pcm. Fixes #374914.
15106
15107 2006-11-14  Wim Taymans  <wim@fluendo.com>
15108
15109         * tests/check/elements/.cvsignore:
15110         Add cdaudio to ignore.
15111
15112 2006-11-14  Wim Taymans  <wim@fluendo.com>
15113
15114         * ext/Makefile.am:
15115         dist cdaudio dir.
15116
15117 2006-11-14  Wim Taymans  <wim@fluendo.com>
15118
15119         * configure.ac:
15120         * ext/Makefile.am:
15121         Fix cdaudio build.
15122
15123 2006-11-14  Wim Taymans  <wim@fluendo.com>
15124
15125         Patch by: Mark Nauwelaerts <manauw at skynet be>
15126
15127         * tests/check/Makefile.am:
15128         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc),
15129         (GST_START_TEST), (y4menc_suite), (main):
15130         Added y4m test. Fixes #372243.
15131
15132 2006-11-13  Wim Taymans  <wim@fluendo.com>
15133
15134         Patch by: Mark Nauwelaerts <manauw at skynet be>
15135
15136         * configure.ac:
15137         Enable cdaudio and y4m.
15138
15139         * gst/y4m/Makefile.am:
15140         * gst/y4m/gsty4mencode.c: (gst_y4m_encode_base_init),
15141         (gst_y4m_encode_class_init), (gst_y4m_encode_init),
15142         (gst_y4m_encode_reset), (gst_y4m_encode_setcaps),
15143         (gst_y4m_encode_get_stream_header),
15144         (gst_y4m_encode_get_frame_header), (gst_y4m_encode_chain),
15145         (gst_y4m_encode_set_property), (gst_y4m_encode_get_property),
15146         (gst_y4m_encode_change_state), (plugin_init):
15147         * gst/y4m/gsty4mencode.h:
15148         Port of y4mencode to 0.10. 
15149
15150 2006-11-10  David Schleef  <ds@schleef.org>
15151
15152         * configure.ac:
15153         * gst/videoparse/Makefile.am:
15154         * gst/videoparse/gstvideoparse.c:
15155           A little pluggy to make sense out of the random chunks we get
15156           from multifilesrc.
15157
15158 2006-11-10  David Schleef  <ds@schleef.org>
15159
15160         * gst/multifile/Makefile.am:
15161           Let's not depend on a file that doesn't exist.
15162
15163 2006-11-10  David Schleef  <ds@schleef.org>
15164
15165         * gst/multifilesink/Makefile.am:
15166         * gst/multifilesink/gstmultifilesink.c:
15167         * gst/multifilesink/gstmultifilesink.h:
15168         * gst/multifilesink/multifilesink.vcproj:
15169           Remove the old one.
15170
15171 2006-11-10  David Schleef  <ds@schleef.org>
15172
15173         * configure.ac:
15174         * gst/multifile/Makefile.am:
15175         * gst/multifile/gstmultifile.c:
15176         * gst/multifile/gstmultifilesink.c:
15177         * gst/multifile/gstmultifilesrc.c:
15178         * gst/multifile/multifile.vproj:
15179           Revive multifile[src|sink].
15180
15181 2006-11-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15182
15183         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_set_property)
15184         (gst_dvbsrc_create), (gst_dvbsrc_output_frontend_stats),
15185         (gst_dvbsrc_tune), (gst_dvbsrc_set_pes_filters):
15186         Rename set_pes_filter to set_pes_filters for consistency.
15187         Do run-time pid filtering.
15188
15189 2006-11-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15190
15191         * sys/dvb/gstdvbsrc.c: (read_device):
15192         Do not call output_frontend_stats from a method that does not
15193         have the gstdvbsrc object.
15194         This fixes the build, sorry guys!
15195
15196 2006-11-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15197
15198         * sys/dvb/gstdvbsrc.c: (read_device), (gst_dvbsrc_create),
15199         (gst_dvbsrc_output_frontend_stats), (gst_dvbsrc_tune),
15200         (gst_dvbsrc_set_pes_filter):
15201         * sys/dvb/gstdvbsrc.h:
15202         Force PAT to always be in the filter.
15203         Try to continue reading after failing 10 times.
15204
15205 2006-11-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15206
15207         * po/POTFILES.in:
15208           add dvbsrc
15209         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_class_init), (gst_dvbsrc_init),
15210         (gst_dvbsrc_set_property), (gst_dvbsrc_get_property),
15211         (gst_dvbsrc_open_frontend), (gst_dvbsrc_open_dvr),
15212         (gst_dvbsrc_finalize), (read_device), (gst_dvbsrc_create),
15213         (gst_dvbsrc_start), (gst_dvbsrc_frontend_status),
15214         (gst_dvbsrc_tune), (gst_dvbsrc_unset_pes_filters),
15215         (gst_dvbsrc_set_pes_filter):
15216         * sys/dvb/gstdvbsrc.h:
15217           adapter-prefix is a terrible name for a device, so replace it.
15218           strerror should be used immediately after the syscall related to it.
15219           Actually throw a reasonable GST_ELEMENT_ERROR if we fail to open
15220           (pretty easy to trigger by opening the same device twice).
15221           Use _OBJECT macros where it makes sense.
15222           This element is going to need some work before it moves.
15223
15224 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
15225
15226         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
15227
15228         * configure.ac:
15229         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
15230         (gst_wavpack_enc_correction_mode_get_type),
15231         (gst_wavpack_enc_joint_stereo_mode_get_type),
15232         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config):
15233           Fix enum nicks; only emit no-more-pads once; add support for very
15234           fast encoding mode in upcoming 4.40.0 release (#369539).
15235
15236 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
15237
15238         Patch by: Sergey Scobich  <sergey dot scobich at gmail com>
15239
15240         * sys/directdraw/gstdirectdrawsink.c:
15241         (gst_directdrawsink_window_thread),
15242         (gst_directdrawsink_create_default_window):
15243         * sys/directdraw/gstdirectdrawsink.h:
15244         * sys/directsound/gstdirectsoundsink.c:
15245           Wait until the window is created before using it; guard unistd.h
15246           includes with HAVE_UNISTD_H. (#366523)
15247
15248         * win32/vs8/libgstdirectdraw.vcproj:
15249         * win32/vs8/libgstdirectsound.vcproj:
15250           Update project files.
15251
15252 2006-10-31  Wim Taymans  <wim@fluendo.com>
15253
15254         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15255         (gst_qtdemux_handle_src_query), (qtdemux_parse_tree),
15256         (qtdemux_parse_trak):
15257         Handle unbounded length streams a bit better. Fixes #367696.
15258
15259 2006-10-29  Tim-Philipp Müller  <tim at centricular dot net>
15260
15261         * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_frame):
15262           Fix flow handling and buffer refcounting (gst_pad_push() takes
15263           ownership of the buffer passed to it, the buffer does not have
15264           to be unreffed no matter what flow value gst_pad_push() returns).
15265
15266 2006-10-26  Edgard Lima <edgard.lima@indt.org.br>
15267
15268         Patch by: Renato Filho <renato.filho@indt.org.br> 
15269
15270         * gst/nuvdemux/gstnuvdemux.c:
15271         * gst/nuvdemux/gstnuvdemux.h:
15272         Fixed bug for files with timestamps less than 0.
15273         
15274 2006-10-21  David Schleef  <ds@schleef.org>
15275
15276         * configure.ac:
15277         * gst/multifilesink/Makefile.am:
15278         * gst/multifilesink/gstmultifilesink.c:
15279         * gst/multifilesink/gstmultifilesink.h:
15280           I copied over filesink a while ago and modified it to work
15281           as multifilesink.  Might as well check it in.  This could
15282           use some work before being declared useful.
15283
15284 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15285
15286         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
15287         * ext/wavpack/gstwavpackparse.c:
15288         (gst_wavpack_parse_create_src_pad):
15289         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_create_pads):
15290         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad):
15291           Activate pads before adding them to running element.
15292
15293 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15294
15295         Patch by: Josep Torra Valles  <josep at fluendo com>
15296
15297         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
15298         (next_entry_size), (qtdemux_inflate), (qtdemux_parse_moov),
15299         (qtdemux_parse_tree), (qtdemux_parse_trak), (qtdemux_tag_add_str),
15300         (qtdemux_tag_add_num), (qtdemux_tag_add_date),
15301         (qtdemux_tag_add_gnre):
15302           Make compile with Forte compiler, mostly don't do pointer arithmetic
15303           with void pointers (#362626).
15304
15305 2006-10-17  Edgard Lima <edgard.lima@indt.org.br>
15306
15307         * gst/nuvdemux/gstnuvdemux.c:
15308         Just a cast to make it compile oos big_endian systems.
15309
15310 2006-10-17  Edgard Lima <edgard.lima@indt.org.br>
15311
15312         Patch by: Renato Filho <renato.filho@indt.org.br> and Rosfran Borges
15313         <rosfran.borges@indt.org.br>
15314
15315         * configure.ac:
15316         * gst/nuvdemux/:
15317         * gst/nuvdemux/Makefile.am:
15318         * gst/nuvdemux/gstnuvdemux.c:
15319         * gst/nuvdemux/gstnuvdemux.h:
15320         Created new element nuvdemux.
15321         
15322 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15323
15324         Patch by: Josep Torra Valles  <josep at fluendo com>
15325
15326         * gst/nsf/fds_snd.c:
15327         * gst/nsf/mmc5_snd.c:
15328         * gst/nsf/nsf.c:
15329         * gst/nsf/vrc7_snd.c:
15330         * gst/nsf/vrcvisnd.c:
15331           Fix some things the Forte compiler warns about (#362626).
15332
15333 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15334
15335         * gst/qtdemux/qtdemux.c: (qtdemux_parse_moov), (qtdemux_parse),
15336         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
15337         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
15338         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
15339         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
15340         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
15341         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
15342         (qtdemux_dump_unknown), (qtdemux_tree_get_child_by_type),
15343         (qtdemux_tree_get_sibling_by_type):
15344         * gst/qtdemux/qtdemux.h:
15345           Avoid void pointer usage, better use guint8 * instead.
15346
15347 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
15348
15349         * configure.ac:
15350         * gst/deinterlace/Makefile.am:
15351         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_base_init),
15352         (gst_deinterlace_class_init), (gst_deinterlace_init),
15353         (gst_deinterlace_stop), (gst_deinterlace_transform_caps),
15354         (gst_deinterlace_set_caps), (gst_deinterlace_transform_ip),
15355         (gst_deinterlace_set_property), (gst_deinterlace_get_property):
15356         * gst/deinterlace/gstdeinterlace.h:
15357           Port simple deinterlacer from 0.8. Use at your own risk, don't blame
15358           me for anything it does or does not do to your precious pictures.
15359
15360 2006-10-11  Edward Hervey  <edward@fluendo.com>
15361
15362         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
15363         Add some fourcc for DV format.
15364
15365 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
15366
15367         * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc),
15368         (gst_qtdemux_loop_state_header):
15369           Printf format fixes.
15370
15371         * sys/dvb/gstdvbsrc.c:
15372           Use "_stdint.h".
15373
15374 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15375
15376         * sys/dvb/Makefile.am:
15377         * sys/dvb/dvb-api/Makefile.am:
15378         * sys/dvb/dvb-api/audio.h:
15379         * sys/dvb/dvb-api/ca.h:
15380         * sys/dvb/dvb-api/dmx.h:
15381         * sys/dvb/dvb-api/frontend.h:
15382         * sys/dvb/dvb-api/net.h:
15383         * sys/dvb/dvb-api/osd.h:
15384         * sys/dvb/dvb-api/version.h:
15385         * sys/dvb/dvb-api/video.h:
15386         Remove these files, not needed use system files.
15387         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_set_property),
15388         (gst_dvbsrc_create), (gst_dvbsrc_output_frontend_stats),
15389         (gst_dvbsrc_tune):
15390         Fix warnings, uint16_t etc. is in stdint.h.
15391         Use system includes not our local ones.
15392
15393 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15394
15395         * configure.ac:
15396         * sys/Makefile.am:
15397         Add dvb detection and allow dvbsrc to be built.
15398
15399 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15400         
15401         * configure.ac:
15402         * sys/Makefile.am:
15403         * sys/dvb/AUTHORS:
15404         * sys/dvb/Makefile.am:
15405         * sys/dvb/README:
15406         * sys/dvb/dvb-api/Makefile.am:
15407         * sys/dvb/dvb-api/audio.h:
15408         * sys/dvb/dvb-api/ca.h:
15409         * sys/dvb/dvb-api/dmx.h:
15410         * sys/dvb/dvb-api/frontend.h:
15411         * sys/dvb/dvb-api/net.h:
15412         * sys/dvb/dvb-api/osd.h:
15413         * sys/dvb/dvb-api/version.h:
15414         * sys/dvb/dvb-api/video.h:
15415         * sys/dvb/gstdvbsrc.c: 
15416         * sys/dvb/gstdvbsrc.h:
15417         Initial import of dvbsrc.
15418         Currently won't be built.
15419
15420 2006-10-10  Wim Taymans  <wim@fluendo.com>
15421
15422         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
15423         (gst_qtdemux_push_event), (gst_qtdemux_do_seek),
15424         (gst_qtdemux_change_state), (extract_initial_length_and_fourcc),
15425         (gst_qtdemux_loop_state_header), (gst_qtdemux_activate_segment),
15426         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
15427         (gst_qtdemux_post_buffering), (gst_qtdemux_chain),
15428         (gst_qtdemux_add_stream), (qtdemux_process_redirects),
15429         (qtdemux_parse_tree), (qtdemux_parse_trak):
15430         Reorganise some stuff.
15431         Parse RTSP redirection URLS.
15432
15433 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
15434
15435         * docs/plugins/gst-plugins-bad-plugins.args:
15436         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
15437         * docs/plugins/gst-plugins-bad-plugins.interfaces:
15438         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
15439         * docs/plugins/inspect/plugin-dtsdec.xml:
15440         * docs/plugins/inspect/plugin-mms.xml:
15441         * docs/plugins/inspect/plugin-mpeg2enc.xml:
15442         * docs/plugins/inspect/plugin-neon.xml:
15443         * docs/plugins/inspect/plugin-replaygain.xml:
15444         * docs/plugins/inspect/plugin-soundtouch.xml:
15445         * docs/plugins/inspect/plugin-spcdec.xml:
15446         * docs/plugins/inspect/plugin-swfdec.xml:
15447         * docs/plugins/inspect/plugin-videocrop.xml:
15448         * docs/plugins/inspect/plugin-wavpack.xml:
15449           Add/update docs stuff.
15450
15451 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
15452
15453         Patch by: René Stadler  <mail at renestadler de>
15454
15455         * configure.ac:
15456         * docs/plugins/Makefile.am:
15457         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15458         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15459         * gst/replaygain/Makefile.am:
15460         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_base_init),
15461         (gst_rg_analysis_class_init), (gst_rg_analysis_init),
15462         (gst_rg_analysis_set_property), (gst_rg_analysis_get_property),
15463         (gst_rg_analysis_start), (gst_rg_analysis_set_caps),
15464         (gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
15465         (gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
15466         (gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
15467         (gst_rg_analysis_album_result), (plugin_init):
15468         * gst/replaygain/gstrganalysis.h:
15469         * gst/replaygain/rganalysis.c: (yule_filter), (butter_filter),
15470         (apply_filters), (reset_filters), (accumulator_add),
15471         (accumulator_clear), (accumulator_result), (rg_analysis_new),
15472         (rg_analysis_set_sample_rate), (rg_analysis_destroy),
15473         (rg_analysis_analyze_mono_float),
15474         (rg_analysis_analyze_stereo_float),
15475         (rg_analysis_analyze_mono_int16),
15476         (rg_analysis_analyze_stereo_int16), (rg_analysis_analyze),
15477         (rg_analysis_track_result), (rg_analysis_album_result),
15478         (rg_analysis_reset_album), (rg_analysis_reset):
15479         * gst/replaygain/rganalysis.h:
15480           Add ReplayGain analysis element (#357069).
15481
15482         * tests/check/Makefile.am:
15483         * tests/check/elements/.cvsignore:
15484         * tests/check/elements/rganalysis.c: (get_expected_gain),
15485         (setup_rganalysis), (cleanup_rganalysis), (set_playing_state),
15486         (send_eos_event), (send_tag_event), (poll_eos), (poll_tags),
15487         (fail_unless_track_gain), (fail_unless_track_peak),
15488         (fail_unless_album_gain), (fail_unless_album_peak),
15489         (fail_if_track_tags), (fail_if_album_tags),
15490         (fail_unless_num_tracks), (test_buffer_const_float_mono),
15491         (test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
15492         (test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
15493         (test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
15494         (test_buffer_square_int16_stereo), (push_buffer), (GST_START_TEST),
15495         (rganalysis_suite), (main):
15496           Unit tests for the new replaygain element.
15497
15498 2006-10-06  Wim Taymans  <wim@fluendo.com>
15499
15500         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain),
15501         (gst_faad_close_decoder):
15502         Some cleanups.
15503         Added some more debugging.
15504         Don't ever ignore unlinked, we're not a demuxer.
15505
15506         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
15507         Activate pad before adding it to the element.
15508
15509 2006-10-06  Michael Smith  <msmith@fluendo.com>
15510
15511         * ext/theora/theoradec.c: (gst_theoradec_reset),
15512         (theora_get_query_types), (theora_dec_src_query),
15513         (theora_dec_src_event), (theora_dec_sink_event),
15514         (theora_handle_comment_packet), (theora_handle_type_packet),
15515         (theora_handle_header_packet), (clip_buffer), (theora_dec_push),
15516         (theora_handle_422_image), (theora_handle_420_image),
15517         (theora_handle_data_packet), (theora_dec_chain),
15518         (theora_dec_change_state):
15519         * ext/theora/theoradec.h:
15520           Port lots of changes from theoradec to theoraexpdec.
15521           This catches this plugin up to theoradec. Note that duplicate frames
15522           are broken in theoradec at the moment.
15523
15524 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
15525
15526         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
15527           Fix mem leak, avoid unnecessary memcpy.
15528
15529 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
15530
15531         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15532         (gst_spectrum_transform_ip):
15533           Removed cruft code that was just commented out. Removed some obsolete
15534           debug logs statements.
15535
15536 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
15537
15538         * ext/dts/gstdtsdec.c: (gst_dtsdec_chain):
15539         * ext/musicbrainz/gsttrm.c: (gst_trm_setcaps):
15540         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
15541         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain), (qtdemux_parse),
15542         (qtdemux_parse_trak):
15543         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
15544           Another batch of printf format fixes.
15545
15546 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15547
15548         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
15549         (gst_video_crop_init),
15550         (gst_video_crop_get_image_details_from_caps),
15551         (gst_video_crop_transform_packed_complex),
15552         (gst_video_crop_transform_packed_simple),
15553         (gst_video_crop_transform), (gst_video_crop_transform_caps),
15554         (gst_video_crop_set_caps),
15555         (gst_videocrop_clear_negotiated_caps_locked),
15556         (gst_video_crop_set_property):
15557         * gst/videocrop/gstvideocrop.h:
15558           Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
15559           passthrough mode; lastly, clear negotiated basetransform caps when
15560           the cropping changes in order to force renegotiation.
15561
15562 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15563
15564         * tests/icles/.cvsignore:
15565         * tests/icles/Makefile.am:
15566         * tests/icles/videocrop-test.c: (quit_mainloop), (tick_cb),
15567         (test_with_caps), (video_crop_get_test_caps), (main):
15568           Visual test for videocrop, shows that packed yuv doesn't work right
15569           yet. --with-ffmpegcolorspace option doesn't work yet for unknown
15570           reasons (another basetransform issue?)
15571
15572 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15573
15574         * po/POTFILES.in:
15575         * sys/v4l2/.cvsignore:
15576           Remove more v4l2 stuff, hopefully fixing 'make distcheck' again.
15577
15578 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15579
15580         * docs/plugins/Makefile.am:
15581         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15582         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15583         * docs/plugins/inspect/plugin-video4linux2.xml:
15584         * gst-plugins-bad.spec.in:
15585           removed v4l2
15586
15587 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15588
15589         * configure.ac:
15590         * sys/Makefile.am:
15591         * sys/v4l2/Makefile.am:
15592         * sys/v4l2/README:
15593         * sys/v4l2/gstv4l2.c:
15594         * sys/v4l2/gstv4l2colorbalance.c:
15595         * sys/v4l2/gstv4l2colorbalance.h:
15596         * sys/v4l2/gstv4l2object.c:
15597         * sys/v4l2/gstv4l2object.h:
15598         * sys/v4l2/gstv4l2src.c:
15599         * sys/v4l2/gstv4l2src.h:
15600         * sys/v4l2/gstv4l2tuner.c:
15601         * sys/v4l2/gstv4l2tuner.h:
15602         * sys/v4l2/gstv4l2vidorient.c:
15603         * sys/v4l2/gstv4l2vidorient.h:
15604         * sys/v4l2/gstv4l2xoverlay.c:
15605         * sys/v4l2/gstv4l2xoverlay.h:
15606         * sys/v4l2/v4l2_calls.c:
15607         * sys/v4l2/v4l2_calls.h:
15608         * sys/v4l2/v4l2src_calls.c:
15609         * sys/v4l2/v4l2src_calls.h:
15610           moved to gst-plugins-good
15611
15612 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15613
15614         * sys/v4l2/gstv4l2object.c:
15615         (gst_v4l2_object_install_properties_helper):
15616           comment out the properties that are already part of the tuner
15617           interface.
15618
15619 2006-10-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15620
15621         * sys/v4l2/gstv4l2src.c:
15622         Improve docs.
15623
15624 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
15625
15626         * ext/xvid/gstxvid.c: (plugin_init):
15627           Set rank of xviddec to NONE until someone fixes it (too many crasher
15628           bug reports against totem, people should use gst-ffmpeg).
15629
15630 2006-09-28  Wim Taymans  <wim@fluendo.com>
15631
15632         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_all_caps),
15633         (gst_v4l2src_get_caps):
15634         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
15635         Framerate can be 0/1 too.
15636         Init framerate to 0/1 before querying it so that we can detect
15637         devices that don't know about a framerate.
15638         Add some more debugging info.
15639
15640 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
15641
15642         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
15643           Add support for 'yv12' fourcc.
15644
15645 2006-09-27  Edgard Lima <edgard.lima@indt.org.br>
15646
15647         * sys/v4l2/gstv4l2src.c:
15648         * sys/v4l2/gstv4l2src.h:
15649         * tests/icles/v4l2src-test.c:
15650         Removed set-undef-fps.
15651
15652 2006-09-27  Wim Taymans  <wim@fluendo.com>
15653
15654         * sys/v4l2/gstv4l2object.c:
15655         (gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
15656         (gst_v4l2_object_set_property_helper),
15657         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
15658         * sys/v4l2/gstv4l2object.h:
15659         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
15660         (gst_v4l2src_create):
15661         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
15662         (gst_v4l2_tuner_list_channels),
15663         (gst_v4l2_tuner_set_channel_and_notify),
15664         (gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
15665         (gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
15666         (gst_v4l2_tuner_get_norm):
15667         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15668         (gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
15669         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
15670         Renamed some properties to match the tuner interface naming.
15671
15672 2006-09-27  Wim Taymans  <wim@fluendo.com>
15673
15674         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_set_property_helper),
15675         (gst_v4l2_set_defaults):
15676         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15677         (gst_v4l2src_create):
15678         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
15679         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15680         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_set_norm),
15681         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
15682         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
15683         (gst_v4l2_set_attribute), (gst_v4l2_get_input),
15684         (gst_v4l2_set_input):
15685         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
15686         (gst_v4l2src_grab_frame), (gst_v4l2src_get_capture),
15687         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
15688         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
15689         (gst_v4l2src_buffer_new):
15690         * tests/icles/v4l2src-test.c: (my_bus_callback), (main):
15691         Small cleanups.
15692         Fix error messages.
15693         Use locks when getting timestamps.
15694         Fix leaks in test.
15695         Add licensing header to tests.
15696
15697 2006-09-27  Edgard Lima <edgard.lima@indt.org.br>
15698
15699         * sys/v4l2/gstv4l2colorbalance.c:
15700         * sys/v4l2/gstv4l2object.c:
15701         * sys/v4l2/gstv4l2src.c:
15702         * sys/v4l2/gstv4l2src.h:
15703         * sys/v4l2/gstv4l2tuner.c:
15704         * sys/v4l2/v4l2_calls.c:
15705         * sys/v4l2/v4l2src_calls.c:
15706         * tests/icles/v4l2src-test.c:
15707         Some cleanups and comments.
15708
15709 2006-09-26  Wim Taymans  <wim@fluendo.com>
15710
15711         * docs/plugins/Makefile.am:
15712         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15713         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15714         Add v4l2 plugin to the docs.
15715
15716         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15717         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15718         * sys/v4l2/gstv4l2src.h:
15719         * sys/v4l2/gstv4l2vidorient.c:
15720         Fix docs.
15721         Remove some more externs.
15722
15723 2006-09-26  Wim Taymans  <wim@fluendo.com>
15724
15725         * sys/v4l2/Makefile.am:
15726         Fix makefile, list libs in stack order.
15727
15728         * sys/v4l2/gstv4l2colorbalance.c:
15729         * sys/v4l2/gstv4l2colorbalance.h:
15730         * sys/v4l2/gstv4l2object.c: (gst_v4l2_device_get_type),
15731         (gst_v4l2_object_install_properties_helper):
15732         * sys/v4l2/gstv4l2object.h:
15733         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15734         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15735         * sys/v4l2/gstv4l2src.h:
15736         * sys/v4l2/gstv4l2tuner.h:
15737         * sys/v4l2/gstv4l2vidorient.h:
15738         * sys/v4l2/gstv4l2xoverlay.h:
15739         * sys/v4l2/v4l2_calls.h:
15740         * sys/v4l2/v4l2src_calls.h:
15741         Fix coding style:
15742         - Remove extern from functions.
15743         - Fix header indentation.
15744         Fix Flags, add defaults for properties.
15745         Remove unused enums.
15746         Fix TOO_LAZY in error messages.
15747
15748 2006-09-26  Wim Taymans  <wim@fluendo.com>
15749
15750         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices),
15751         (gst_v4l2_probe_needs_probe),
15752         (gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
15753         (gst_v4l2_object_destroy), (gst_v4l2_object_set_property_helper),
15754         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults),
15755         (gst_v4l2_object_start), (gst_v4l2_object_stop):
15756         * sys/v4l2/gstv4l2object.h:
15757         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
15758         (gst_v4l2src_init), (gst_v4l2src_dispose),
15759         (gst_v4l2src_set_property), (gst_v4l2src_get_property),
15760         (gst_v4l2src_fixate), (gst_v4l2src_get_caps),
15761         (gst_v4l2src_set_caps), (gst_v4l2src_get_read),
15762         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15763         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15764         (gst_v4l2_open), (gst_v4l2_close), (gst_v4l2_get_norm),
15765         (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
15766         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
15767         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
15768         (gst_v4l2_get_input), (gst_v4l2_set_input):
15769         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
15770         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
15771         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
15772         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
15773         (gst_v4l2src_capture_stop), (gst_v4l2src_capture_deinit),
15774         (gst_v4l2src_get_size_limits), (gst_v4l2src_set_fps),
15775         (gst_v4l2src_get_fps), (gst_v4l2src_buffer_finalize),
15776         (gst_v4l2src_buffer_new):
15777         Fix pass at code cleanups, move errors cases out of the normal
15778         flow for additional code clarity.
15779
15780 2006-09-23  Wim Taymans  <wim@fluendo.com>
15781
15782         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
15783         (gst_cdaudio_init), (gst_cdaudio_set_property),
15784         (gst_cdaudio_get_property), (gst_cdaudio_change_state),
15785         (gst_cdaudio_send_event), (gst_cdaudio_get_query_types),
15786         (gst_cdaudio_query), (cdaudio_uri_set_uri):
15787         Port to 0.10.
15788
15789 2006-09-22  David Schleef  <ds@schleef.org>
15790
15791         * sys/glsink/glimagesink.c:
15792           Fix problems when the element cannot open the display.
15793           (fixes #357212)
15794
15795 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
15796
15797         * configure.ac:
15798           Up requirements to -base CVS and core CVS (the format for the
15799           video orientation interface used by v4l2src and the latter
15800           since that's what -base CVS requires).
15801
15802 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
15803
15804         * ext/directfb/dfbvideosink.c: (plugin_init):
15805           Lower rank from SECONDARY to MARGINAL. Plugins in -bad that might
15806           be autoplugged shouldn't trump plugins in -base, -good or -ugly
15807           (in this case ximagesink).
15808
15809         * sys/glsink/glimagesink.c: (plugin_init):
15810           Set rank to NONE to prevent it from being autoplugged until
15811           errors are handled properly (see #357212).
15812
15813 2006-09-21  Edgard Lima <edgard.lima@indt.org.br>
15814
15815         * ext/neon/Makefile.am:
15816         * ext/neon/gstneonhttpsrc.c:
15817         * ext/neon/gstneonhttpsrc.h:
15818         Reverted previous commit (2006-09-19 - Allow internal codes from
15819         last.fm). As dicussed on #gstreamer it should be done in separete
15820         element.
15821
15822 2006-09-21  Wim Taymans  <wim@fluendo.com>
15823
15824         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad),
15825         (gst_faac_chain):
15826         Add decoder specific info on the caps.
15827         Some cleanups here and there.
15828
15829 2006-09019  Edgard Lima <edgard.lima@indt.org.br>
15830
15831         Patch by: Milosz Derezynski <internalerror@gmail.com> and
15832                   Rosfran Borges <rosfran.borges@indt.org.br>
15833
15834         * ext/neon/Makefile.am:
15835         * ext/neon/gstneonhttpsrc.c:
15836         * ext/neon/gstneonhttpsrc.h:
15837         Allow internal codes from last.fm
15838         
15839
15840 2006-09-19  Edgard Lima <edgard.lima@indt.org.br>
15841
15842         * tests/icles/v4l2src-test.c:
15843         Just a small fix to the app options.
15844
15845 2006-09-19  Edgard Lima <edgard.lima@indt.org.br>
15846
15847         * sys/v4l2/Makefile.am:
15848         * sys/v4l2/gstv4l2src.c:
15849         * sys/v4l2/gstv4l2vidorient.c:
15850         * sys/v4l2/gstv4l2vidorient.h:
15851         * tests/icles/v4l2src-test.c:
15852         Add Video Orientation interface support to v4l2src.
15853         
15854 2006-09-19  Wim Taymans  <wim@fluendo.com>
15855
15856         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init),
15857         (gst_gsmdec_sink_setcaps), (gst_gsmdec_sink_event),
15858         (gst_gsmdec_chain):
15859         * ext/gsm/gstgsmdec.h:
15860         Handle WAV49 variant (GSM in WAV).
15861         Some small cleanups.
15862
15863 2006-09-18  Edgard Lima <edgard.lima@indt.org.br>
15864
15865         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_buffer_new ):
15866         Fix GST_BUFFER_DURATION.
15867
15868 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
15869
15870         * ext/hermes/gsthermescolorspace.c:
15871         * ext/ivorbis/vorbisfile.c:
15872         * ext/lcs/gstcolorspace.c:
15873         * ext/wavpack/gstwavpackenc.h:
15874         * ext/xine/xineaudiodec.c:
15875         * ext/xine/xineaudiosink.c:
15876         * ext/xine/xineinput.c:
15877         * gst/chart/gstchart.c:
15878         * gst/equalizer/gstiirequalizer.c:
15879         * gst/games/gstpuzzle.c:
15880         * gst/librfb/gstrfbsrc.c:
15881         * gst/mixmatrix/mixmatrix.c:
15882         * gst/nsf/gstnsf.h:
15883         * gst/vbidec/gstvbidec.c:
15884         * gst/virtualdub/gstxsharpen.c:
15885           More G_OBJECT macro fixing.
15886
15887 2006-09-15  Edgard Lima <edgard.lima@indt.org.br>
15888
15889         * sys/v4l2/gstv4l2src.c:
15890         * sys/v4l2/gstv4l2src.h:
15891         * sys/v4l2/gstv4l2xoverlay.c:
15892         * sys/v4l2/v4l2_calls.c:
15893         * sys/v4l2/v4l2src_calls.c:
15894         * tests/icles/v4l2src-test.c:
15895         The test application and the plgind error messages has been improved.
15896         
15897 2006-09-12  Stefan Kost  <ensonic@users.sf.net>
15898
15899         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
15900         (gst_spectrum_start), (gst_spectrum_stop), (gst_spectrum_event):
15901           Implements stop() to clear the adapter and event() to clear the
15902           adapter on FLUSH_STOP and EOS.
15903
15904 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
15905
15906         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15907         (gst_spectrum_set_property):
15908         * gst/spectrum/gstspectrum.h:
15909           Fix type mixup in spectrum->interval (gdouble<->guint64). Spotted by
15910           René Stadler
15911
15912 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
15913
15914         * gst/spectrum/demo-osssrc.c: (draw_spectrum), (main):
15915           Use more defines
15916
15917         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15918         (gst_spectrum_dispose), (gst_spectrum_set_caps),
15919         (gst_spectrum_transform_ip):
15920         * gst/spectrum/gstspectrum.h:
15921           Apply some of the spectrum cleanup changes suggested in #348085.
15922
15923 2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>
15924
15925         * configure.ac:
15926           Bump requirements of -base (videocrop test case needs this).
15927
15928         * gst/videocrop/gstvideocrop.c:
15929           Document sloppy handling of subsampled chroma planes if
15930           left/top cropping is an odd number.
15931
15932         * tests/check/elements/videocrop.c: (handoff_cb),
15933         (videocrop_test_cropping_init_context),
15934         (videocrop_test_cropping_deinit_context),
15935         (videocrop_test_cropping), (check_1x1_buffer), (GST_START_TEST),
15936         (videocrop_suite), (main):
15937           Add another unit test that crops the input to 1x1 (and checks
15938           that that pixel has the expected values in a number of formats).
15939
15940 2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>
15941
15942         * gst/videocrop/Makefile.am:
15943         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
15944         (gst_video_crop_transform_packed),
15945         (gst_video_crop_transform_planar):
15946           Some quick tests indicate that it doesn't make a great deal
15947           of sense to use liboil here, at least not for the memcpy()s
15948           we do, so remove liboil usage until there is clear evidence
15949           it actually makes a positive difference somewhere.
15950
15951 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
15952
15953         * tests/check/elements/videocrop.c: (handoff_cb),
15954         (buffer_probe_cb), (test_caps_transform), (test_passthrough),
15955         (notgst_value_list_get_nth_int), (videocrop_suite):
15956           More tests: check passthrough mode and caps transform in
15957           both directions with fixed values, ranges and lists.
15958
15959 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
15960
15961         * docs/plugins/Makefile.am:
15962         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15963         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15964         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
15965           Add videocrop to docs.
15966
15967         * gst/videocrop/Makefile.am:
15968         * gst/videocrop/gstvideocrop.c:
15969         * gst/videocrop/gstvideocrop.h:
15970           Move boilerplate stuff and structures into a header file.
15971
15972         * tests/check/Makefile.am:
15973         * tests/check/elements/.cvsignore:
15974         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
15975         (test_unit_sizes), (videocrop_test_cropping_init_context),
15976         (videocrop_test_cropping_deinit_context),
15977         (videocrop_test_cropping), (test_cropping), (videocrop_suite):
15978           Add unit tests for videocrop.
15979
15980 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
15981
15982         * configure.ac:
15983         * gst/videocrop/Makefile.am:
15984         * gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
15985         (gst_video_crop_class_init), (gst_video_crop_init),
15986         (gst_video_crop_get_image_details_from_caps),
15987         (gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
15988         (gst_video_crop_transform_planar), (gst_video_crop_transform),
15989         (gst_video_crop_transform_dimension),
15990         (gst_video_crop_transform_dimension_value),
15991         (gst_video_crop_transform_caps), (gst_video_crop_set_caps),
15992         (gst_video_crop_set_property), (gst_video_crop_get_property),
15993         (plugin_init):
15994           Port/rewrite videocrop from scratch for GStreamer-0.10, and make
15995           it support all formats videoscale supports (#345653).
15996
15997 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
15998
15999         * sys/v4l2/gstv4l2.c:
16000         * sys/v4l2/gstv4l2colorbalance.c:
16001         * sys/v4l2/gstv4l2object.c:
16002         (gst_v4l2_object_install_properties_helper):
16003         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
16004         * sys/v4l2/gstv4l2src.h:
16005           Whitespace cleanups, dashify property-names.
16006
16007 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
16008
16009         * sys/v4l2/gstv4l2.c:
16010         * sys/v4l2/gstv4l2colorbalance.c:
16011         * sys/v4l2/gstv4l2colorbalance.h:
16012         * sys/v4l2/gstv4l2object.c:
16013         * sys/v4l2/gstv4l2object.h:
16014         * sys/v4l2/gstv4l2src.c:
16015         * sys/v4l2/gstv4l2src.h:
16016         * sys/v4l2/gstv4l2tuner.c:
16017         * sys/v4l2/gstv4l2tuner.h:
16018         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
16019         * sys/v4l2/gstv4l2xoverlay.h:
16020         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
16021         (gst_v4l2_open):
16022         * sys/v4l2/v4l2_calls.h:
16023         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_queue_frame),
16024         (gst_v4l2src_capture_init):
16025         * sys/v4l2/v4l2src_calls.h:
16026           Cleanup error messages and unify header comments
16027
16028 2006-08-31  Jan Schmidt  <thaytan@mad.scientist.com>
16029
16030         * gst/nsf/Makefile.am:
16031         Add missing GST_LIBS
16032
16033 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
16034
16035         * sys/v4l2/gstv4l2src.c:
16036         Another small fix to set_caps function (sucks copy/paste error).
16037         
16038 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
16039
16040         * sys/v4l2/gstv4l2src.c:
16041         Send new_segment in GST_FORMAT_TIME instead of in GST_FORMAT_BYTES.
16042
16043 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
16044
16045         * sys/v4l2/gstv4l2src.c:
16046         A small fix to set_caps function.
16047
16048 2006-08-30  Edward Hervey  <edward@fluendo.com>
16049
16050         * gst/qtdemux/qtdemux.c:
16051         (gst_qtdemux_do_seek):
16052         Reset each streams last_flow to GST_FLOW_OK.
16053         (gst_qtdemux_activate_segment):
16054         Removing mystic modifications for good.
16055
16056 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
16057
16058         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16059         (qtdemux_parse_tree):
16060           put back 'segment start<=stop' change that was mystically reverted by
16061           the last commit
16062
16063 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
16064
16065         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16066         (qtdemux_parse_tree):
16067         Fix the build for disabled debug
16068
16069 2006-08-29  Edgard Lima <edgard.lima@indt.org.br>
16070
16071         * sys/v4l2/gstv4l2src.c:
16072         * sys/v4l2/v4l2src_calls.c:
16073         * sys/v4l2/v4l2src_calls.h:
16074         Fixed framerate negotiation.
16075         
16076 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
16077
16078         Patch by: Andrew Andkjar  <enki at goodship net>
16079
16080         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_close):
16081         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_supported),
16082         (gst_sdlvideosink_deinitsdl):
16083           Only de-init the subsystem we previously initialised. Avoids
16084           borkage when both sdlvideosink and sdlaudiosink are used
16085           at the same time and one is shut down.
16086
16087 2006-08-28  Wim Taymans  <wim@fluendo.com>
16088
16089         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16090         (gst_qtdemux_add_stream), (qtdemux_parse_trak),
16091         (qtdemux_video_caps):
16092         Make sure segment start<=stop in weird quicktime files.
16093
16094 2006-08-28  Stefan Kost  <ensonic@users.sf.net>
16095
16096         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
16097           add comments and more debug logging
16098
16099 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
16100
16101         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16102
16103         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_post_tags),
16104         (gst_wavpack_dec_chain):
16105           Post audio codec and average bitrate tags on bus (#344472).
16106
16107         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
16108         (gst_wavpack_parse_src_query):
16109           Forward queries in other formats (BYTE format in particular)
16110           upstream; add Sebastian to authors.
16111
16112 2006-08-23  Edgard Lima <edgard.lima@indt.org.br>
16113
16114         * sys/v4l2/gstv4l2src.c:
16115         * sys/v4l2/v4l2src_calls.c:
16116         * sys/v4l2/v4l2src_calls.h:
16117         Fix set_caps to set width and height to the values the driver is
16118         really working with.
16119
16120 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16121
16122         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block):
16123           Fix mem leak, send newsegment event on correction pad
16124           as well (#352476).
16125
16126         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
16127           Restore original author (on Sebastian's request).
16128
16129         * tests/check/Makefile.am:
16130         * tests/check/gst-plugins-bad.supp:
16131           Add (so far empty) suppression file for -bad. Remove
16132           wavpackenc test from VALGRIND_TO_FIX now that the leak
16133           is fixed.
16134
16135 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16136
16137         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16138
16139         * tests/check/Makefile.am:
16140         * tests/check/elements/.cvsignore:
16141         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
16142         (cleanup_wavpackdec), (GST_START_TEST), (wavpackdec_suite), (main):
16143         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
16144         (cleanup_wavpackenc), (GST_START_TEST), (wavpackenc_suite), (main):
16145         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
16146         (setup_wavpackparse), (cleanup_wavpackparse), (GST_START_TEST),
16147         (wavpackparse_suite), (main):
16148           Add unit tests for wavpack elements (#352476).
16149
16150 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16151
16152         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16153
16154         * docs/plugins/Makefile.am:
16155         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16156         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16157         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
16158         * docs/plugins/inspect/plugin-wavpack.xml:
16159         * ext/wavpack/gstwavpackdec.c:
16160         * ext/wavpack/gstwavpackdec.h:
16161         * ext/wavpack/gstwavpackenc.c:
16162         * ext/wavpack/gstwavpackenc.h:
16163         * ext/wavpack/gstwavpackparse.c:
16164         * ext/wavpack/gstwavpackparse.h:
16165           Add docs for wavpack elements (#352476).
16166
16167 2006-08-22  Edgard Lima <edgard.lima@indt.org.br>
16168
16169         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_size_limits)
16170         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fixate)
16171         Fixed query size to work with drivers that uses intermediate step
16172         like "width * height" to find closest size.
16173         
16174 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
16175
16176         * configure.ac:
16177         * docs/plugins/Makefile.am:
16178         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16179         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16180         * gst/gdp/Makefile.am:
16181         * gst/gdp/gstgdp.c:
16182         * gst/gdp/gstgdpdepay.c:
16183         * gst/gdp/gstgdpdepay.h:
16184         * gst/gdp/gstgdppay.c:
16185         * gst/gdp/gstgdppay.h:
16186         * tests/check/Makefile.am:
16187         * tests/check/elements/gdpdepay.c:
16188         * tests/check/elements/gdppay.c:
16189           move gdp plugin to good.
16190
16191 2006-08-21  Wim Taymans  <wim@fluendo.com>
16192
16193         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
16194         (qtdemux_node_dump_foreach), (qtdemux_parse_trak),
16195         (qtdemux_video_caps), (qtdemux_audio_caps):
16196         Some more constification.
16197         Fix some paletted data formats again.
16198         Fix ulaw/alaw in qt.
16199         Set correct caps for raw RGB.
16200         Add support for yuv2, which is like Yuv2.
16201         Add support for raw audio with the NONE fourcc, which is like raw.
16202
16203 2006-08-21  Wim Taymans  <wim@fluendo.com>
16204
16205         * ext/gsm/gstgsm.c: (plugin_init):
16206         Make rank PRIMARY now that GSM seems to work fine.
16207
16208 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
16209
16210         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init),
16211         (gst_wavpack_enc_finalize), (gst_wavpack_enc_sink_set_caps),
16212         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_format_samples),
16213         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain),
16214         (gst_wavpack_enc_rewrite_first_block),
16215         (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state),
16216         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
16217         * ext/wavpack/gstwavpackenc.h:
16218         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
16219         (gst_wavpack_parse_src_query), (gst_wavpack_parse_src_event),
16220         (gst_wavpack_parse_init), (gst_wavpack_parse_get_upstream_length),
16221         (gst_wavpack_parse_loop):
16222           More clean-ups: use shorter variable names to make code easier to
16223           read; prefix structures we define with 'Gst' to make it clearer
16224           where they come from.
16225
16226 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
16227
16228         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init),
16229         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
16230         (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block),
16231         (gst_wavpack_enc_sink_event):
16232           Fix caps set on buffers and template caps (output is framed)
16233           and make them match (#351663); use GST_WARNING_OBJECT instead of
16234           GST_ELEMENT_WARNING; simplify push_block(); do some small
16235           clean-ups here and there; fix memleak (#351663).
16236
16237 2006-08-18  Tim-Philipp Müller  <tim at centricular dot net>
16238
16239         Based on patch by: Sebastian Dröge <slomo at circular-chaos.org>
16240
16241         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_sink_event),
16242         (gst_wavpack_parse_get_upstream_length),
16243         (gst_wavpack_parse_find_marker), (gst_wavpack_parse_resync_loop),
16244         (gst_wavpack_parse_loop), (gst_wavpack_parse_resync_adapter):
16245           Fix resyncing in push mode not stopping re-syncing at embedded
16246           zeroes; skip garbage between frames in pull mode as well if
16247           necessary; use gst_pad_query_peer_duration(); push EOS and
16248           NEWSEGMENT event in right direction (#351659).
16249
16250 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
16251
16252         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16253
16254         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init):
16255         * ext/wavpack/gstwavpackparse.c:
16256         (gst_wavpack_parse_resync_adapter), (gst_wavpack_parse_chain):
16257           In push mode, re-sync to next wavpack header if sync is lost
16258           (#351557). Also use hyphens instead of underscores in
16259           GObject property names.
16260
16261 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
16262
16263         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16264
16265         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_class_init),
16266         (gst_wavpack_parse_reset), (gst_wavpack_parse_get_src_query_types),
16267         (gst_wavpack_parse_src_query),
16268         (gst_wavpack_parse_handle_seek_event),
16269         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_init),
16270         (gst_wavpack_parse_create_src_pad),
16271         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop),
16272         (gst_wavpack_parse_chain), (gst_wavpack_parse_sink_activate),
16273         (gst_wavpack_parse_sink_activate_pull):
16274         * ext/wavpack/gstwavpackparse.h:
16275           Make wavpackparse also work in push-mode (not seekable yet though);
16276           some small clean-ups along the way; add support for SEEKING query
16277           and query types function. (#351495).
16278
16279 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
16280
16281         * ext/libfame/gstlibfame.c: (gst_fameenc_get_property):
16282         * sys/glsink/glimagesink.c: (gst_glimage_sink_get_property):
16283           Fix leaks (#351502).
16284
16285 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
16286
16287         * gst/qtdemux/qtdemux.c: (qtdemux_redirects_sort_func),
16288         (qtdemux_process_redirects), (qtdemux_parse_tree):
16289           Extract all references/redirections if there is more
16290           than one and sort them; also extract minimum required
16291           bitrate information if available. (#350399)
16292           
16293 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
16294
16295         Patch by: Michal Benes  <michal.benes at itonis tv>
16296
16297         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad):
16298           Bitrate in the faac structure is per output channel,
16299           not total bitrate (#350741).
16300
16301 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
16302
16303         * ext/xvid/gstxvidenc.c: (gst_xvidenc_chain):
16304           Fix GST_ELEMENT_ERROR usage.
16305
16306 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
16307
16308         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
16309           Fix silly typo.
16310
16311 2006-08-08  Edward Hervey  <edward@fluendo.com>
16312
16313         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
16314         I forgot to include the file containing the #define :)
16315         Now includes "config.h"
16316
16317 2006-08-08  Edward Hervey  <edward@fluendo.com>
16318
16319         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
16320         Ignore test known to fail on PPC64. See #348114.
16321
16322 2006-08-04  Edgard Lima <edgard.lima@indt.org.br>
16323
16324         Patch by: Rosfran Borges <rosfran dot borges at indt dot org dot
16325         br>
16326
16327         * ext/neon/gstneonhttpsrc.c:
16328         * ext/neon/gstneonhttpsrc.h:
16329         Allow HTTP redirect (HTTP status code 302).
16330
16331 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16332
16333         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16334         Fix event parsing by gdpdepay.  Fixes #349916.
16335
16336 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
16337
16338         Patch by: Thadeu Lima de Souza Cascardo <cascardo at holoscopio dot
16339         com>
16340
16341         * ext/Makefile.am:
16342           Use right variables when USE_SPC is defined.
16343
16344 2006-08-02  Wim Taymans  <wim@fluendo.com>
16345
16346         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init),
16347         (gst_gdp_depay_finalize), (gst_gdp_depay_sink_event),
16348         (gst_gdp_depay_src_event), (gst_gdp_depay_chain),
16349         (gst_gdp_depay_change_state):
16350         Disable seeking.
16351         Small cleanups.
16352         Clear adapter on disconts.
16353         Clear caps when going to READY instead of NULL
16354
16355         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16356         (gst_gdp_pay_init), (gst_gdp_pay_finalize), (gst_gdp_pay_reset),
16357         (gst_gdp_buffer_from_caps), (gst_gdp_pay_buffer_from_buffer),
16358         (gst_gdp_buffer_from_event), (gst_gdp_pay_reset_streamheader),
16359         (gst_gdp_queue_buffer), (gst_gdp_pay_chain),
16360         (gst_gdp_pay_sink_event), (gst_gdp_pay_src_event),
16361         (gst_gdp_pay_change_state):
16362         * gst/gdp/gstgdppay.h:
16363         Reset payloader when going to READY.
16364         Fix leaked buffers in ->queue on push errors.
16365         Disable seeking.
16366         Code cleanups.
16367         Create packetizer in _init, free in _finalize.
16368
16369 2006-07-31  Julien MOUTTE  <julien@moutte.net>
16370
16371         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_change_state),
16372         (gst_dfbvideosink_buffer_alloc): Post an error message.
16373
16374 2006-07-31  Julien MOUTTE  <julien@moutte.net>
16375
16376         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_change_state),
16377         (gst_dfbvideosink_buffer_alloc): Don't try allocating if we are not
16378         setup yet. Fail changing state if setup fails.
16379
16380 2006-07-31  Wim Taymans  <wim@fluendo.com>
16381
16382         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init),
16383         (gst_gdp_depay_sink_event), (gst_gdp_depay_chain):
16384         Consume all events except EOS because we generate events from
16385         the gdp payload instead. Fixes #349204
16386
16387 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
16388
16389         * ext/xvid/gstxviddec.c: (gst_xviddec_init), (gst_xviddec_reset),
16390         (gst_xviddec_unset), (gst_xviddec_handle_sink_event),
16391         (gst_xviddec_setup), (gst_xviddec_negotiate), (gst_xviddec_chain),
16392         (gst_xviddec_flush_buffers), (gst_xviddec_src_getcaps),
16393         (gst_xviddec_setcaps), (gst_xviddec_change_state):
16394         * ext/xvid/gstxviddec.h:
16395           Clean-ups and code reflows. Pass return value from
16396           gst_pad_alloc_buffer() upstream among other things. Also check
16397           for NULL GValue before using GST_VALUE_TYPE macro (#348976).
16398           Mass rename of xviddec -> dec variable for better
16399           code readability.
16400
16401 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
16402
16403         * ext/xvid/gstxvid.c: (gst_xvid_image_fill):
16404           Fix size calculation for I420/YV12. Fixes #348976.
16405
16406 2006-07-27  Wim Taymans  <wim@fluendo.com>
16407
16408         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init),
16409         (gst_gsmdec_sink_setcaps), (gst_gsmdec_sink_event):
16410         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_setcaps):
16411         Fix negotiation.
16412
16413 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16414
16415         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init):
16416           proxying get/set caps is the wrong thing to do, since we really
16417           do change caps quite fundamentally
16418         * tests/check/elements/gdpdepay.c:
16419         * tests/check/elements/gdppay.c:
16420           remove declaration of buffers, it's already done in gstcheck.h
16421
16422 2006-07-24  Sebastien Moutte  <sebastien@moutte.net>
16423
16424         * sys/directsound/gstdirectsoundsink.h:
16425         * sys/directsound/gstdirectsoundsink.c:
16426         Add an attenuation property that will directly attenuate the 
16427         directsound buffer.
16428         Change the size of the directsound secondary buffer to a half second.
16429         Add more debug logs.
16430         Add a lock to protect dsound buffer write access.
16431         Fix a bad implementation of reset.
16432         * sys/directsound/gstdirectdrawsink.c:
16433         * sys/directsound/gstdirectdrawsink.h:
16434         Add a keep_aspect_ratio property.
16435         Do not use overlay if not supported.
16436         Add more debug logs.
16437         Remove overwrite of WM_ERASEBKGND message handling. It was not
16438         redrawing border when keep_aspect_ratio was enabled.
16439         * win32/common/config.h:
16440         update version waiting an auto-generated config.h
16441
16442 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
16443
16444         Patch by: Chris Lee  <clee at kde org>
16445
16446         * configure.ac:
16447         * ext/Makefile.am:
16448         * ext/spc/Makefile.am:
16449         * ext/spc/gstspc.c: (spc_negotiate), (gst_spc_dec_base_init),
16450         (gst_spc_dec_class_init), (gst_spc_dec_init), (gst_spc_dec_chain),
16451         (gst_spc_dec_sink_event), (gst_spc_dec_src_event),
16452         (gst_spc_dec_src_query), (spc_play), (spc_setup),
16453         (gst_spc_dec_change_state), (plugin_init):
16454         * ext/spc/gstspc.h:
16455           Add libopenspc-based SPC decoder element (#348220).
16456
16457 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
16458
16459         Patch by: Martin Szulecki
16460
16461         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_get_property_helper):
16462           If "device-name" is requested and the device is not
16463           open, try to temporarily open it to obtain this
16464           information (#342494).
16465
16466 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
16467
16468         * gst/nsf/nsf.c: (nsf_load):
16469           Really fix compilation. Apparently it's not enough to
16470           just check the return value for errors, but we need to
16471           check for short reads as well (now if only we handled
16472           them too ...). Fixes #347935.
16473
16474 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16475
16476         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
16477           Fix caps after previous change to byte order endianness.
16478
16479         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
16480         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_init),
16481         (gst_wavpack_parse_loop):
16482         * ext/wavpack/gstwavpackparse.h:
16483           Queue incoming events if there's no source pad yet and
16484           send them downstream later when the pad is there.
16485
16486 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16487
16488         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init),
16489         (gst_wavpack_dec_format_samples),
16490         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16491         (gst_wavpack_dec_change_state):
16492         * ext/wavpack/gstwavpackdec.h:
16493           Output audio in native byte order (which is also how we get
16494           samples from wavpack); output samples with 21-24 bit depth
16495           with 32 bit width (makes things easier for us).
16496
16497 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16498
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         * ext/wavpack/gstwavpackdec.h:
16505           More clean-ups: remove most of the disfunctional correction
16506           pad stuff for now, if it ever gets implemented a lot of stuff
16507           will have to be rewritten anyway; redo chain function, move
16508           errors to end, error out instead of g_assert()ing. Also rename
16509           overly long variable 'wavpackdec' to just 'dec'; miscellaneous
16510           other small stuff.
16511
16512 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16513
16514         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16515
16516         * configure.ac:
16517           Check for wavpack version and define WAVPACK_OLD_API if
16518           necessary.
16519
16520         * ext/wavpack/Makefile.am:
16521         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_read_header),
16522         (gst_wavpack_read_metadata):
16523         * ext/wavpack/gstwavpackcommon.h:
16524         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init),
16525         (gst_wavpack_dec_class_init), (gst_wavpack_dec_init),
16526         (gst_wavpack_dec_finalize), (gst_wavpack_dec_format_samples),
16527         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16528         (gst_wavpack_dec_sink_event), (gst_wavpack_dec_change_state),
16529         (gst_wavpack_dec_request_new_pad), (gst_wavpack_dec_plugin_init):
16530         * ext/wavpack/gstwavpackdec.h:
16531         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
16532         (gst_wavpack_enc_init), (gst_wavpack_enc_finalize),
16533         (gst_wavpack_enc_set_wp_config):
16534         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
16535         (gst_wavpack_parse_finalize), (gst_wavpack_parse_class_init),
16536         (gst_wavpack_parse_index_get_entry_from_sample),
16537         (gst_wavpack_parse_scan_to_find_sample),
16538         (gst_wavpack_parse_handle_seek_event),
16539         (gst_wavpack_parse_create_src_pad):
16540         * ext/wavpack/gstwavpackstreamreader.c:
16541         * ext/wavpack/gstwavpackstreamreader.h:
16542           Port to new/official wavpack API, don't use API that was exported
16543           in wavpack header files and in the lib but meant to be private, at
16544           least not for recent wavpack versions; misc. 'cleanups' (#347443).
16545
16546 2006-07-18  Wim Taymans  <wim@fluendo.com>
16547
16548         * gst/nsf/nsf.c: (nsf_load):
16549         Fix compilation by not ignoring return values of fread.
16550
16551 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16552
16553         * docs/plugins/inspect/plugin-alsaspdif.xml:
16554         * docs/plugins/inspect/plugin-filter.xml:
16555         * docs/plugins/inspect/plugin-h264parse.xml:
16556         * docs/plugins/inspect/plugin-musepack.xml:
16557         * docs/plugins/inspect/plugin-nsfdec.xml:
16558         * docs/plugins/inspect/plugin-sdl.xml:
16559         * docs/plugins/inspect/plugin-spectrum.xml:
16560           adding more inspect docs
16561
16562 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16563
16564         * docs/plugins/inspect/plugin-gdp.xml:
16565           actually commit inspectation of gdp element
16566
16567 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16568
16569         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_class_init):
16570         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16571           remove parent_class setting, BOILERPLATE does this
16572         (gst_gdp_pay_reset_streamheader):
16573           fix typo in comment
16574
16575 2006-07-17  Wim Taymans  <wim@fluendo.com>
16576
16577         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
16578         (gst_qtdemux_prepare_current_sample),
16579         (gst_qtdemux_loop_state_movie):
16580         Store duration in uint64 too instead of clipping.
16581         When we do a keyframe seek and the requested time is at the
16582         keyframe, don't seek back to the beginning of the keyframe.
16583         Fixes #347439.
16584
16585 2006-07-16  Wim Taymans  <wim@fluendo.com>
16586
16587         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_sync):
16588         Don't crash on small buffers.
16589
16590 2006-07-15  Stefan Kost  <ensonic@users.sf.net>
16591
16592         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_sink_activate):
16593         Reset adapter.
16594
16595 2006-07-15  Stefan Kost  <ensonic@users.sf.net>
16596
16597         * gst/spectrum/demo-audiotest.c: (main):
16598         * gst/spectrum/demo-osssrc.c: (main):
16599         Do not use deprecated gtk functions.
16600
16601 2006-07-14  Wim Taymans  <wim@fluendo.com>
16602
16603         * gst/nsf/Makefile.am:
16604         * gst/nsf/memguard.c:
16605         * gst/nsf/memguard.h:
16606         * gst/nsf/types.h:
16607         Remove crack malloc/free replacement.
16608
16609 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16610
16611         * docs/plugins/Makefile.am:
16612         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16613         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16614           add more plugins and elements to docs
16615         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16616           fix segfaults due to wrong g_free
16617           add example
16618         * gst/gdp/gstgdppay.c:
16619           add example
16620
16621 2006-07-13  Wim Taymans  <wim@fluendo.com>
16622
16623         * gst/nsf/Makefile.am:
16624         Fix build.
16625
16626 2006-07-13  Wim Taymans  <wim@fluendo.com>
16627
16628         Based on patches by: Johan Dahlin <johan at gnome dot org>
16629                 Ronald Bultje <rbultje at ronald dot bitfreak dot net>
16630
16631         * configure.ac:
16632         * gst/nsf/Makefile.am:
16633         * gst/nsf/dis6502.h:
16634         * gst/nsf/fds_snd.c:
16635         * gst/nsf/fds_snd.h:
16636         * gst/nsf/fmopl.c:
16637         * gst/nsf/fmopl.h:
16638         * gst/nsf/gstnsf.c:
16639         * gst/nsf/gstnsf.h:
16640         * gst/nsf/log.c:
16641         * gst/nsf/log.h:
16642         * gst/nsf/memguard.c:
16643         * gst/nsf/memguard.h:
16644         * gst/nsf/mmc5_snd.c:
16645         * gst/nsf/mmc5_snd.h:
16646         * gst/nsf/nes6502.c:
16647         * gst/nsf/nes6502.h:
16648         * gst/nsf/nes_apu.c:
16649         * gst/nsf/nes_apu.h:
16650         * gst/nsf/nsf.c:
16651         * gst/nsf/nsf.h:
16652         * gst/nsf/osd.h:
16653         * gst/nsf/types.h:
16654         * gst/nsf/vrc7_snd.c:
16655         * gst/nsf/vrc7_snd.h:
16656         * gst/nsf/vrcvisnd.c:
16657         * gst/nsf/vrcvisnd.h:
16658         Added NSF decoder plugin. Fixes 151192. 
16659
16660 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16661
16662         * tests/check/Makefile.am:
16663           Only run mpeg2enc unit test if we built the mpeg2enc plugin.
16664
16665 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16666
16667         * configure.ac:
16668           Don't error out in configure if mjpegtools dev is not there.
16669
16670 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16671
16672         Patch by: Mark Nauwelaerts <manauw at skynet be>
16673
16674         * configure.ac:
16675         * ext/Makefile.am:
16676         * ext/mpeg2enc/Makefile.am:
16677         * ext/mpeg2enc/gstmpeg2enc.cc:
16678         * ext/mpeg2enc/gstmpeg2enc.hh:
16679         * ext/mpeg2enc/gstmpeg2encoder.cc:
16680         * ext/mpeg2enc/gstmpeg2encoder.hh:
16681         * ext/mpeg2enc/gstmpeg2encoptions.cc:
16682         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
16683         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
16684         * ext/mpeg2enc/gstmpeg2encstreamwriter.cc:
16685         * ext/mpeg2enc/gstmpeg2encstreamwriter.hh:
16686           Port mpeg2enc to 0.10 (#343184).
16687
16688         * tests/check/Makefile.am:
16689         * tests/check/elements/.cvsignore:
16690         * tests/check/elements/mpeg2enc.c:
16691           Add unit test for mpeg2enc.
16692
16693         * tests/icles/.cvsignore:
16694           Ignore pitch-test.
16695
16696 2006-07-12  Tim-Philipp Müller  <tim at centricular dot net>
16697
16698         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
16699           Fix typo in property nick.
16700
16701 2006-07-10  Wim Taymans  <wim@fluendo.com>
16702
16703         * gst/filter/gstbpwsinc.h:
16704         * gst/filter/gstiir.h:
16705         * gst/filter/gstlpwsinc.h:
16706         Don't forget new files.
16707
16708 2006-07-10  Wim Taymans  <wim@fluendo.com>
16709
16710         Patch by: Mathis Hofer <mathis dot hofer at dreamlab dot net>
16711
16712         * configure.ac:
16713         * gst/filter/Makefile.am:
16714         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
16715         (gst_bpwsinc_base_init), (gst_bpwsinc_class_init),
16716         (gst_bpwsinc_init), (bpwsinc_set_caps), (bpwsinc_transform_ip),
16717         (bpwsinc_set_property), (bpwsinc_get_property):
16718         * gst/filter/gstfilter.c: (plugin_init):
16719         * gst/filter/gstfilter.h:
16720         * gst/filter/gstiir.c: (gst_iir_dispose), (gst_iir_base_init),
16721         (gst_iir_class_init), (gst_iir_init), (iir_set_caps),
16722         (iir_transform_ip), (iir_set_property), (iir_get_property):
16723         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
16724         (gst_lpwsinc_base_init), (gst_lpwsinc_class_init),
16725         (gst_lpwsinc_init), (lpwsinc_set_caps), (lpwsinc_transform_ip),
16726         (lpwsinc_set_property), (lpwsinc_get_property):
16727         Ported the gstfilter plugin to GStreamer 0.10.
16728         Fixes #346853.
16729
16730 2006-07-10  Wim Taymans  <wim@fluendo.com>
16731
16732         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
16733           Extract comment information!!
16734
16735 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
16736
16737         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
16738         (qtdemux_tag_add_date):
16739           Extract year/date information (fixes #347079).
16740
16741 2006-07-07  Wim Taymans  <wim@fluendo.com>
16742
16743         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
16744         Don't crash on twos/sowt/raw audio. #345830.
16745
16746 2006-07-07  Wim Taymans  <wim@fluendo.com>
16747
16748         Patch by: Lutz Mueller <lutz at topfrose dot de>
16749
16750         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
16751         (gst_neonhttp_src_init), (gst_neonhttp_src_finalize),
16752         (request_dispatch), (gst_neonhttp_src_create),
16753         (gst_neonhttp_src_start), (gst_neonhttp_src_get_size),
16754         (gst_neonhttp_src_stop), (set_proxy), (set_uri),
16755         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
16756         (gst_neonhttp_src_uri_set_uri), (size_header_handler):
16757         * ext/neon/gstneonhttpsrc.h:
16758         Remove unlock function. start/stop will do everything needed
16759         Removed code that was never called.
16760         Use gst_pad_alloc_buffer. Don't send EOS - parent class does that for us.
16761         Do not escape path. Fixes #346723.
16762         Additional code cleanups.
16763
16764 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
16765
16766         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16767         (gst_qtdemux_loop_state_header), (qtdemux_video_caps):
16768           Fix silly crasher in state change function; add
16769           IV41 fourcc (see bug #171111); don't output confusing
16770           debug message when skipping atoms.
16771
16772 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
16773
16774         * ext/directfb/dfbvideosink.c:
16775         * ext/gsm/gstgsmdec.c:
16776         * ext/gsm/gstgsmenc.c:
16777         * ext/libmms/gstmms.c:
16778         * ext/neon/gstneonhttpsrc.c:
16779         * ext/theora/theoradec.c:
16780         * gst/freeze/gstfreeze.c:
16781         * gst/gdp/gstgdpdepay.c:
16782         * gst/gdp/gstgdppay.c:
16783         * sys/glsink/glimagesink.c:
16784           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
16785           and fix one GObject boilerplate macro.
16786
16787 2006-06-20  Wim Taymans  <wim@fluendo.com>
16788
16789         * gst/modplug/libmodplug/stdafx.h:
16790         Fix modplug on AMD64. Fixes #345336.
16791
16792 2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>
16793
16794         * configure.ac:
16795           Fix check so that future libneon API changes won't break the build.
16796
16797         * ext/neon/gstneonhttpsrc.c:
16798           Fix build with libneon-0.26.x (#345182).
16799
16800 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
16801
16802         * configure.ac:
16803           Fix --disable-external (can't set conditionals conditionally,
16804           #343602).
16805           
16806 2006-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16807
16808         * gst/spectrum/Makefile.am:
16809         Fix build.
16810
16811 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
16812
16813         * gst/spectrum/demo-audiotest.c: (on_window_destroy),
16814         (draw_spectrum), (message_handler), (main):
16815         * gst/spectrum/demo-osssrc.c: (on_window_destroy), (draw_spectrum),
16816         (message_handler), (main):
16817         port to use message to get results, cleanly exit when closing the window
16818         
16819         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
16820         (gst_spectrum_init), (gst_spectrum_dispose),
16821         (gst_spectrum_set_property), (gst_spectrum_get_property),
16822         (gst_spectrum_set_caps), (gst_spectrum_start),
16823         (gst_spectrum_message_new), (gst_spectrum_transform_ip):
16824         * gst/spectrum/gstspectrum.h:
16825         port to derive from basetransform and send results via messages
16826         (like level element)
16827
16828 2006-06-15  Wim Taymans  <wim@fluendo.com>
16829
16830         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
16831         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie),
16832         (gst_qtdemux_loop), (gst_qtdemux_chain), (qtdemux_parse_trak):
16833         Combine return values from src pad pushes.
16834
16835 2006-06-15  Wim Taymans  <wim@fluendo.com>
16836
16837         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
16838         (gst_qtdemux_prepare_current_sample), (gst_qtdemux_advance_sample),
16839         (gst_qtdemux_add_stream):
16840         Don't crash on files with 0 samples, EOS immediatly instead.
16841         Fixes #344944.
16842
16843 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
16844
16845         Patch by: Wouter Paesen  <wouter at kangaroot net>
16846
16847         * ext/soundtouch/Makefile.am:
16848         * ext/soundtouch/gstpitch.cc:
16849           Make pitch element controllable via GstController interface
16850           (#344821).
16851           
16852         * configure.ac:
16853           Up core requirements to 0.10.8.1/CVS because earlier
16854           GstControllers can't handle float properties correctly.
16855           Check for GstController CFLAGS and LIBS.
16856
16857         * tests/icles/Makefile.am:
16858         * tests/icles/pitch-test.c: (main):
16859           Add small test program for the above (welcome to the 80s!).
16860
16861 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
16862
16863         Patch by: Sebastian Dröge  <slomo at circular-chaos org>
16864
16865         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init),
16866         (gst_wavpack_enc_class_init), (gst_wavpack_enc_set_wp_config),
16867         (gst_wavpack_enc_chain), (gst_wavpack_enc_sink_event),
16868         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
16869         * ext/wavpack/gstwavpackenc.h:
16870           Use bitrate property solely for bitrates and add new
16871           bits-per-sample property for the other stuff. Set duration
16872           to 'unknown' in initial header and resend header with proper
16873           duration on EOS; update Sebastian's e-mail address.
16874
16875 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16876
16877         * examples/directfb/.cvsignore:
16878         * ext/directfb/.cvsignore:
16879           #define red green
16880
16881 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16882
16883         * gst/spectrum/.cvsignore:
16884           Ignore more.
16885
16886 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16887
16888         * ext/libmms/gstmms.c: (gst_mms_create):
16889           Set caps on outgoing buffers.
16890
16891         * sys/directdraw/gstdirectdrawsink.c: (gst_directdrawsink_init):
16892           Comment out unused global instance variable.
16893
16894 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
16895
16896         Patch by: Sebastian Dröge  <mail at slomosnail de>
16897
16898         * ext/wavpack/Makefile.am:
16899         * ext/wavpack/gstwavpack.c: (plugin_init):
16900         * ext/wavpack/gstwavpackcommon.h:
16901         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
16902         (gst_wavpack_enc_correction_mode_get_type),
16903         (gst_wavpack_enc_joint_stereo_mode_get_type),
16904         (gst_wavpack_enc_base_init), (gst_wavpack_enc_class_init),
16905         (gst_wavpack_enc_init), (gst_wavpack_enc_dispose),
16906         (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config),
16907         (gst_wavpack_enc_format_samples), (gst_wavpack_enc_push_block),
16908         (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block),
16909         (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state),
16910         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property),
16911         (gst_wavpack_enc_plugin_init):
16912         * ext/wavpack/gstwavpackenc.h:
16913         * ext/wavpack/md5.c:
16914         * ext/wavpack/md5.h:
16915           Add wavpack encoder element (#343131).
16916
16917 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
16918
16919         * configure.ac:
16920           Check for X before using X_CFLAGS in the check for opengl (#343866).
16921           
16922         * ext/musepack/Makefile.am:
16923         * ext/wavpack/Makefile.am:
16924         * gst/speed/Makefile.am:
16925           Add missing GST_LIBS, fixes build on cygwin (#343866).
16926
16927 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16928
16929         * configure.ac:
16930           enable building of GDP elements
16931         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16932         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16933         (gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
16934         (gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
16935         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_sink_event),
16936         (gst_gdp_pay_set_property), (gst_gdp_pay_get_property),
16937         (gst_gdp_pay_change_state):
16938         * gst/gdp/gstgdppay.h:
16939           add version 1.0
16940
16941 2006-06-02  Michael Smith  <msmith@fluendo.com>
16942
16943         * ext/theora/theoradec.c: (theora_dec_src_convert),
16944         (theora_handle_type_packet), (theora_handle_422_image),
16945         (theora_handle_444_image), (theora_handle_420_image),
16946         (theora_handle_data_packet):
16947           Theora 4:4:4 pixel format support.
16948
16949 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16950
16951         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16952         (gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
16953         (gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
16954         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain),
16955         (gst_gdp_pay_sink_event), (gst_gdp_pay_set_property),
16956         (gst_gdp_pay_get_property):
16957           add crc-header and crc-payload properties
16958           don't error out on some things that are recoverable
16959         * tests/check/elements/gdppay.c: (GST_START_TEST), (gdppay_suite):
16960           add test for crc
16961
16962 2006-06-02  Stefan Kost  <ensonic@users.sf.net>
16963
16964         * ext/alsaspdif/alsaspdifsink.h:
16965         * ext/amrwb/gstamrwbdec.h:
16966         * ext/amrwb/gstamrwbenc.h:
16967         * ext/amrwb/gstamrwbparse.h:
16968         * ext/arts/gst_arts.h:
16969         * ext/artsd/gstartsdsink.h:
16970         * ext/audiofile/gstafparse.h:
16971         * ext/audiofile/gstafsink.h:
16972         * ext/audiofile/gstafsrc.h:
16973         * ext/audioresample/gstaudioresample.h:
16974         * ext/bz2/gstbz2dec.h:
16975         * ext/bz2/gstbz2enc.h:
16976         * ext/dirac/gstdiracdec.h:
16977         * ext/directfb/dfbvideosink.h:
16978         * ext/divx/gstdivxdec.h:
16979         * ext/divx/gstdivxenc.h:
16980         * ext/dts/gstdtsdec.h:
16981         * ext/faac/gstfaac.h:
16982         * ext/gsm/gstgsmdec.h:
16983         * ext/gsm/gstgsmenc.h:
16984         * ext/ivorbis/vorbisenc.h:
16985         * ext/libfame/gstlibfame.h:
16986         * ext/nas/nassink.h:
16987         * ext/neon/gstneonhttpsrc.h:
16988         * ext/polyp/polypsink.h:
16989         * ext/sdl/sdlaudiosink.h:
16990         * ext/sdl/sdlvideosink.h:
16991         * ext/shout/gstshout.h:
16992         * ext/snapshot/gstsnapshot.h:
16993         * ext/sndfile/gstsf.h:
16994         * ext/swfdec/gstswfdec.h:
16995         * ext/tarkin/gsttarkindec.h:
16996         * ext/tarkin/gsttarkinenc.h:
16997         * ext/theora/theoradec.h:
16998         * ext/wavpack/gstwavpackdec.h:
16999         * ext/wavpack/gstwavpackparse.h:
17000         * ext/xine/gstxine.h:
17001         * ext/xvid/gstxviddec.h:
17002         * ext/xvid/gstxvidenc.h:
17003         * gst/cdxaparse/gstcdxaparse.h:
17004         * gst/cdxaparse/gstcdxastrip.h:
17005         * gst/colorspace/gstcolorspace.h:
17006         * gst/festival/gstfestival.h:
17007         * gst/freeze/gstfreeze.h:
17008         * gst/gdp/gstgdpdepay.h:
17009         * gst/gdp/gstgdppay.h:
17010         * gst/modplug/gstmodplug.h:
17011         * gst/mpeg1sys/gstmpeg1systemencode.h:
17012         * gst/mpeg1videoparse/gstmp1videoparse.h:
17013         * gst/mpeg2sub/gstmpeg2subt.h:
17014         * gst/mpegaudioparse/gstmpegaudioparse.h:
17015         * gst/multifilesink/gstmultifilesink.h:
17016         * gst/overlay/gstoverlay.h:
17017         * gst/playondemand/gstplayondemand.h:
17018         * gst/qtdemux/qtdemux.h:
17019         * gst/rtjpeg/gstrtjpegdec.h:
17020         * gst/rtjpeg/gstrtjpegenc.h:
17021         * gst/smooth/gstsmooth.h:
17022         * gst/smoothwave/gstsmoothwave.h:
17023         * gst/spectrum/gstspectrum.h:
17024         * gst/speed/gstspeed.h:
17025         * gst/stereo/gststereo.h:
17026         * gst/switch/gstswitch.h:
17027         * gst/tta/gstttadec.h:
17028         * gst/tta/gstttaparse.h:
17029         * gst/videodrop/gstvideodrop.h:
17030         * gst/xingheader/gstxingmux.h:
17031         * sys/directdraw/gstdirectdrawsink.h:
17032         * sys/directsound/gstdirectsoundsink.h:
17033         * sys/dxr3/dxr3audiosink.h:
17034         * sys/dxr3/dxr3spusink.h:
17035         * sys/dxr3/dxr3videosink.h:
17036         * sys/qcam/gstqcamsrc.h:
17037         * sys/vcd/vcdsrc.h:
17038         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
17039
17040 2006-05-31  Edward Hervey  <edward@fluendo.com>
17041
17042         * ext/faad/gstfaad.h:
17043         Forgot to commit the header file too.
17044
17045 2006-05-31  Edward Hervey  <edward@fluendo.com>
17046
17047         * ext/faad/gstfaad.c: (gst_faad_class_init), (gst_faad_init),
17048         (gst_faad_dispose), (gst_faad_sink_event), (clip_outgoing_buffer),
17049         (gst_faad_chain), (gst_faad_change_state):
17050         Added GstSegment to control segments.
17051         Added clipping/dropping of outgoing buffers in order to have accurate
17052         seeking working properly.
17053
17054 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
17055
17056         Patch by: Lutz Müller  <lutz at topfrose de>
17057
17058         * ext/bz2/Makefile.am:
17059         * ext/bz2/gstbz2dec.c: (gst_bz2dec_chain), (gst_bz2dec_init),
17060         (gst_bz2dec_change_state), (gst_bz2dec_class_init):
17061           Use gst_type_find_helper_* functions for typefinding; use
17062           correct caps with gst_pad_alloc_buffer(); add state change
17063           function and reset decoder in it; don't unref buffer if
17064           pad_push fails; use fixed caps on source pad. (#341524).
17065
17066 2006-05-27  Stefan Kost  <ensonic@users.sf.net>
17067
17068         * gst/spectrum/Makefile.am:
17069         * gst/spectrum/demo-audiotest.c: (on_frequency_changed),
17070         (spectrum_chain), (main):
17071         * gst/spectrum/demo-osssrc.c:
17072         added another example
17073         
17074         * sys/v4l2/gstv4l2src.c:
17075         fix typo
17076
17077 2006-05-26  Edward Hervey  <edward@fluendo.com>
17078
17079         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment): 
17080         Clip the outputed NEWSEGMENT stop time to the configured segment stop
17081         time.
17082
17083 2006-05-26  Wim Taymans  <wim@fluendo.com>
17084
17085         * gst/qtdemux/qtdemux.c: (gst_qtdemux_do_seek):
17086         Don't clear the running variable in the seek code.
17087
17088 2006-05-24  Wim Taymans  <wim@fluendo.com>
17089
17090         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_esds):
17091         Detect QCELP in mp4a descriptors.
17092
17093 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
17094
17095         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak), (plugin_init):
17096           po/POTFILES.in:
17097           Throw an error when the file is encrypted. Move plugin_init stuff
17098           to the end of the file, add stuff for i18n, make debug category
17099           static.
17100
17101 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
17102
17103         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
17104
17105         * configure.ac:
17106         * gst/h264parse/Makefile.am:
17107         * gst/h264parse/gsth264parse.c: (gst_h264_parse_base_init),
17108         (gst_h264_parse_finalize), (gst_h264_parse_class_init),
17109         (gst_h264_parse_init), (gst_h264_parse_chain),
17110         (gst_h264_parse_handle_event), (plugin_init):
17111         * gst/h264parse/gsth264parse.h:
17112           New plugin: h264parse (#340638)
17113
17114 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17115
17116         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain),
17117         (gst_gdp_depay_change_state):
17118         * gst/gdp/gstgdpdepay.h:
17119         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader),
17120         (gst_gdp_pay_chain), (gst_gdp_pay_sink_event),
17121         (gst_gdp_pay_change_state):
17122         * gst/gdp/gstgdppay.h:
17123           Handle error cases when calling functions
17124           do downwards state change after parent's change_state
17125         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
17126         * tests/check/elements/gdppay.c: (GST_START_TEST):
17127           clean up more
17128
17129 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17130
17131         * gst/gdp/Makefile.am:
17132         * gst/gdp/gstgdp.c: (plugin_init):
17133         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_base_init),
17134         (gst_gdp_depay_class_init), (gst_gdp_depay_init),
17135         (gst_gdp_depay_finalize), (gst_gdp_depay_chain),
17136         (gst_gdp_depay_change_state), (gst_gdp_depay_plugin_init):
17137         * gst/gdp/gstgdpdepay.h:
17138         * gst/gdp/gstgdppay.c: (gst_gdp_pay_base_init),
17139         (gst_gdp_pay_class_init), (gst_gdp_pay_init),
17140         (gst_gdp_pay_dispose), (gst_gdp_stamp_buffer),
17141         (gst_gdp_buffer_from_caps), (gst_gdp_pay_buffer_from_buffer),
17142         (gst_gdp_buffer_from_event), (gst_gdp_pay_reset_streamheader),
17143         (gst_gdp_queue_buffer), (gst_gdp_pay_chain),
17144         (gst_gdp_pay_sink_event), (gst_gdp_pay_change_state),
17145         (gst_gdp_pay_plugin_init):
17146         * gst/gdp/gstgdppay.h:
17147         * tests/check/Makefile.am:
17148         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
17149         (cleanup_gdpdepay), (gdpdepay_push_per_byte), (GST_START_TEST),
17150         (setup_gdpdepay_streamheader), (gdpdepay_suite), (main):
17151         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay),
17152         (GST_START_TEST), (setup_gdppay_streamheader), (gdppay_suite),
17153         (main):
17154           adding GDP payloader and depayloader.  Build integration will
17155           follow later when the GDP issues for core are sorted out.
17156
17157 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17158
17159         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
17160         (gst_spectrum_init), (gst_spectrum_set_sink_caps),
17161         (gst_spectrum_get_sink_caps), (gst_spectrum_chain):
17162           Use boilerplate macro, fix strings to match plugin-moval-requirements
17163
17164 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17165
17166         * gst/spectrum/Makefile.am:
17167           Link to base libraries
17168
17169         * gst/spectrum/demo-osssrc.c: (main):
17170           use new threshhold property
17171
17172         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
17173         (gst_spectrum_init), (gst_spectrum_dispose),
17174         (gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
17175         (gst_spectrum_get_sink_caps), (gst_spectrum_chain),
17176         (gst_spectrum_change_state):
17177         * gst/spectrum/gstspectrum.h:
17178         Use gst_adapter, support multiple-channels, add threshold property for
17179         result, add docs, fix resulting spectrum range (was including mirrored
17180         results)
17181
17182 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17183
17184         * configure.ac:
17185         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main):
17186         * gst/spectrum/fix_fft.c: (gst_spectrum_fix_dot):
17187         * gst/spectrum/gstspectrum.c: (gst_spectrum_get_type),
17188         (gst_spectrum_base_init), (gst_spectrum_class_init),
17189         (gst_spectrum_init), (gst_spectrum_dispose),
17190         (gst_spectrum_set_property), (gst_spectrum_chain):
17191         * gst/spectrum/gstspectrum.h:
17192         Initial port of the spectrum element
17193
17194 2006-05-19  Edgard Lima <edgard.lima@indt.org.br>
17195
17196         * sys/v4l2/gstv4l2.c:
17197         * sys/v4l2/gstv4l2object.c:
17198         * sys/v4l2/gstv4l2object.h:
17199         * sys/v4l2/gstv4l2src.c:
17200         * sys/v4l2/gstv4l2xoverlay.c:
17201         Some clean-ups requested by wingo in bug #338818.       
17202
17203 2006-05-19  Michael Smith  <msmith@fluendo.com>
17204
17205         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_base_init),
17206         (alsaspdifsink_class_init), (alsaspdifsink_init),
17207         (alsaspdifsink_dispose), (alsaspdifsink_set_property),
17208         (alsaspdifsink_get_property), (alsaspdifsink_set_caps),
17209         (alsaspdifsink_get_time), (alsaspdifsink_open),
17210         (alsaspdifsink_close), (alsaspdifsink_find_pcm_device),
17211         (alsaspdifsink_write_frame), (alsaspdifsink_event),
17212         (alsaspdifsink_get_times), (alsaspdifsink_current_delay),
17213         (generate_iec958_zero_frame), (alsaspdifsink_render),
17214         (ignore_alsa_err), (alsaspdifsink_change_state), (plugin_init):
17215         * ext/alsaspdif/alsaspdifsink.h:
17216           Use sampling rate from set_caps. Comment out some more unused code.
17217
17218 2006-05-18  Stefan Kost  <ensonic@users.sf.net>
17219
17220         * configure.ac:
17221           Check for X11
17222         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
17223         * sys/v4l2/gstv4l2object.h:
17224         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_iface_supported):
17225         * sys/v4l2/gstv4l2src.h:
17226         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
17227         * sys/v4l2/gstv4l2xoverlay.h:
17228           Code cleanups, fix debug macros
17229
17230 2006-05-18  Michael Smith  <msmith@fluendo.com>
17231
17232         * ext/Makefile.am:
17233           Fix distcheck?
17234
17235 2006-05-18  Michael Smith  <msmith@fluendo.com>
17236
17237         * configure.ac:
17238         * ext/Makefile.am:
17239         * ext/alsaspdif/Makefile.am:
17240         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_base_init),
17241         (alsaspdifsink_class_init), (alsaspdifsink_init),
17242         (alsaspdifsink_dispose), (alsaspdifsink_set_property),
17243         (alsaspdifsink_get_property), (alsaspdifsink_provide_clock),
17244         (alsaspdifsink_get_time), (alsaspdifsink_open),
17245         (alsaspdifsink_close), (alsaspdifsink_find_pcm_device),
17246         (alsaspdifsink_write_frame), (alsaspdifsink_event),
17247         (alsaspdifsink_get_times), (alsaspdifsink_current_delay),
17248         (generate_iec958_zero_frame), (alsaspdifsink_render),
17249         (ignore_alsa_err), (alsaspdifsink_change_state), (plugin_init):
17250         * ext/alsaspdif/alsaspdifsink.h:
17251           Add an alsa plugin to output IEC958 frames over S/PDIF
17252
17253 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
17254
17255         * ext/faad/gstfaad.c: (gst_faad_update_caps), (gst_faad_chain):
17256           Remove unused caps cruft from chain function altogether.
17257
17258 2006-05-17  Edward Hervey  <edward@fluendo.com>
17259
17260         * ext/faad/gstfaad.c: (gst_faad_chain): 
17261         There's no guarantee that caps was set to something, and if it did, the
17262         function called to fill that variable actually sets the caps on the
17263         sourcpad, so we call gst_pad_alloc_buffer_and_set_caps() using
17264         GST_PAD_CAPS(faad->srcpad).
17265
17266 2006-05-13  Tim-Philipp Müller  <tim at centricular dot net>
17267
17268         Patch by: Young-Ho Cha  <ganadist chollian net>
17269
17270         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chain),
17271         (gst_faad_change_state):
17272         * ext/faad/gstfaad.h:
17273           If we encounter a decoding error, don't error out immediately,
17274           but try to resync (or see if we have better luck with the next
17275           buffer in case of framed input). Only error out after five
17276           consecutive errors. Fixes #341563.
17277
17278 2006-05-12  Wim Taymans  <wim@fluendo.com>
17279
17280         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init),
17281         (gst_xvidenc_init), (gst_xvidenc_finalize),
17282         (gst_xvidenc_handle_sink_event), (gst_xvidenc_setup),
17283         (gst_xvidenc_setcaps), (gst_xvidenc_encode), (gst_xvidenc_chain),
17284         (gst_xvidenc_flush_buffers), (gst_xvidenc_set_property),
17285         (gst_xvidenc_get_property):
17286         Compile fixes.
17287
17288 2006-05-12  Wim Taymans  <wim@fluendo.com>
17289
17290         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
17291
17292         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_structure_to_csp),
17293         (gst_xvid_csp_to_caps), (gst_xvid_image_get_size),
17294         (gst_xvid_image_fill):
17295         * ext/xvid/gstxvid.h:
17296         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
17297         (gst_xviddec_init), (gst_xviddec_reset), (gst_xviddec_unset),
17298         (gst_xviddec_handle_sink_event), (gst_xviddec_setup),
17299         (gst_xviddec_add_par), (gst_xviddec_negotiate),
17300         (gst_xviddec_decode), (gst_xviddec_chain),
17301         (gst_xviddec_flush_buffers), (gst_xviddec_src_getcaps),
17302         (gst_xviddec_src_link), (gst_xviddec_setcaps),
17303         (gst_xviddec_change_state):
17304         * ext/xvid/gstxviddec.h:
17305         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
17306         (gst_xvidenc_quant_type_get_type), (gst_xvidenc_pass_get_type),
17307         (gst_xvidenc_get_type), (gst_xvidenc_base_init),
17308         (gst_xvidenc_class_init), (gst_xvidenc_init),
17309         (gst_xvidenc_finalize), (gst_xvidenc_handle_sink_event),
17310         (gst_xvidenc_setup), (gst_xvidenc_setcaps), (gst_xvidenc_encode),
17311         (gst_xvidenc_chain), (gst_xvidenc_flush_buffers),
17312         (gst_xvidenc_set_property), (gst_xvidenc_get_property),
17313         (gst_xvidenc_change_state):
17314         * ext/xvid/gstxvidenc.h:
17315         xvid plugin to support more capabilities of XviD codec.
17316         Fixes #339462.
17317         Some more cleanups here and there.
17318
17319 2006-05-11  Edgard Lima <edgard.lima@indt.org.br>
17320
17321         * sys/v4l2/Makefile.am:
17322         * sys/v4l2/gstv4l2.c:
17323         * sys/v4l2/gstv4l2colorbalance.c:
17324         * sys/v4l2/gstv4l2colorbalance.h:
17325         * sys/v4l2/gstv4l2element.c:
17326         * sys/v4l2/gstv4l2element.h:
17327         * sys/v4l2/gstv4l2object.c:
17328         * sys/v4l2/gstv4l2object.h:
17329         * sys/v4l2/gstv4l2src.c:
17330         * sys/v4l2/gstv4l2src.h:
17331         * sys/v4l2/gstv4l2tuner.c:
17332         * sys/v4l2/gstv4l2tuner.h:
17333         * sys/v4l2/gstv4l2xoverlay.c:
17334         * sys/v4l2/gstv4l2xoverlay.h:
17335         * sys/v4l2/v4l2_calls.c:
17336         * sys/v4l2/v4l2_calls.h:
17337         * sys/v4l2/v4l2src_calls.c:
17338         * sys/v4l2/v4l2src_calls.h:
17339         Changes proposed by Wingo in bug #338818.
17340
17341 2006-05-11  Wim Taymans  <wim@fluendo.com>
17342
17343         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_parse_trak),
17344         (gst_qtdemux_handle_esds):
17345         Figure out the real audio type in mp4a boxes by parsing the
17346         optional descriptors in the optional esds box. Promote the
17347         default AAC to mp3 when indicated. Fixes #330632.
17348
17349 2006-05-10  Wim Taymans  <wim@fluendo.com>
17350
17351         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_dump_unknown),
17352         (qtdemux_parse_trak), (gst_qtdemux_handle_esds):
17353         Parse version 2 sample descriptions. Fixes #341231
17354         Don't #define gst_util_dump_mem(), use something more
17355         specific instead to avoid confusion.
17356
17357 2006-05-08  Edgard Lima <edgard.lima@indt.org.br>
17358
17359         * sys/v4l2/gstv4l2src.c:
17360         * sys/v4l2/v4l2src_calls.c:
17361         Fix fourcc name printed out. Patch from Martin Rubli.
17362
17363 2006-05-08  Wim Taymans  <wim@fluendo.com>
17364
17365         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_query),
17366         (qtdemux_dump_mvhd):
17367         Don't cause side effects in a debugging function.
17368         Also report duration in push mode since we can.
17369
17370 2006-05-08  Edward Hervey  <edward@fluendo.com>
17371
17372         * autogen.sh: (CONFIGURE_DEF_OPT): 
17373         libtoolize on Darwin/MacOSX is called glibtoolize
17374
17375 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
17376
17377         * ext/amrwb/gstamrwbdec.c:
17378         * ext/amrwb/gstamrwbenc.c:
17379         * ext/sdl/sdlaudiosink.c:
17380         * ext/sdl/sdlvideosink.c:
17381         * ext/wavpack/gstwavpackdec.c:
17382         * ext/xine/xine.c:
17383         * ext/xine/xineaudiodec.c:
17384         * ext/xine/xineaudiosink.c:
17385         * ext/xine/xineinput.c:
17386         * gst/cdxaparse/gstcdxaparse.c:
17387         * gst/freeze/gstfreeze.c:
17388         * sys/v4l2/gstv4l2element.c:
17389         Add semicolons after GST_BOILERPLATE[_FULL] so that
17390         indent doesn't mess up following lines.
17391
17392 2006-05-05  Edgard Lima <edgard.lima@indt.org.br>
17393
17394         * sys/v4l2/gstv4l2element.c:
17395         * sys/v4l2/gstv4l2element.h:
17396         * sys/v4l2/gstv4l2src.c:
17397         * sys/v4l2/gstv4l2src.h:
17398         * sys/v4l2/gstv4l2tuner.c:
17399         * sys/v4l2/gstv4l2tuner.h:
17400         * sys/v4l2/v4l2_calls.c:
17401         * sys/v4l2/v4l2_calls.h:
17402         * sys/v4l2/v4l2src_calls.c:
17403         * sys/v4l2/v4l2src_calls.h:
17404         * tests/icles/v4l2src-test.c:
17405         Some changes proposed by wingo in bug #338818 (but not everything
17406         yet). Patch from Martin Rubli to fix framerate detection.
17407
17408 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
17409
17410         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_prepare):
17411           Use (NULL) instead of just NULL in GST_ELEMENT_ERROR macro.
17412
17413 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
17414
17415         * configure.ac:
17416           Back to CVS
17417
17418 === release 0.10.3 ===
17419
17420 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
17421
17422         * configure.ac:
17423           releasing 0.10.3, "Petition to request permission"
17424
17425 2006-05-04  Julien MOUTTE  <julien@moutte.net>
17426
17427         * tests/icles/Makefile.am: Fix build.
17428
17429 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17430
17431         * ext/musicbrainz/Makefile.am:
17432           Add GST_PLUGINS_BASE_CFLAGS to CFLAGS for gst/tag/tag.h
17433
17434 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
17435
17436         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17437         Clean up one piece of logic slightly and remove a 
17438         dead code block.
17439
17440 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17441
17442         * docs/plugins/Makefile.am:
17443         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17444         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17445         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
17446         * docs/plugins/inspect/plugin-musicbrainz.xml:
17447         * ext/musicbrainz/gsttrm.c:
17448         * ext/musicbrainz/gsttrm.h:
17449           Everybody loves docs - add docs for musicbrainz plugin.
17450
17451 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17452
17453         * ext/Makefile.am:
17454           Add musicbrainz dir to DIST_SUBDIRS as well (fixes distcheck).
17455           
17456 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17457
17458         * ext/Makefile.am:
17459           Forgot to commit this one.
17460
17461 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17462
17463         Patch by: James "Doc" Livingston  <doclivingston gmail com>
17464
17465         * configure.ac:
17466         * ext/musicbrainz/Makefile.am:
17467         * ext/musicbrainz/gsttrm.c: (gst_trm_base_init),
17468         (gst_trm_class_init), (gst_trm_init), (gst_trm_setcaps),
17469         (gst_trm_chain), (gst_trm_emit_signature), (gst_trm_set_property),
17470         (gst_trm_get_property), (gst_trm_change_state), (plugin_init):
17471         * ext/musicbrainz/gsttrm.h:
17472           Port MusicBrainz TRM plugin (#336898).
17473
17474 2006-05-03  Michael Smith  <msmith@fluendo.com>
17475
17476         * ext/faad/gstfaad.c: (gst_faad_setcaps),
17477         (looks_like_valid_header), (gst_faad_chain):
17478           Fix #334748: use fake_codec_data if the first bytes of the first
17479           buffer we process doesn't look like plausible AAC data (e.g.
17480           reserved values for rate, or channels). Fixes playback of Apple's
17481           movie trailers.
17482
17483 2006-05-02  Edgard Lima <edgard.lima@indt.org.br>
17484
17485         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_caps):
17486         Fix get_caps func to work when no framerate is available and the caps
17487         isn't simple.
17488
17489 2006-05-01  Edgard Lima <edgard.lima@indt.org.br>
17490
17491         * sys/v4l2/Makefile.am:
17492         * sys/v4l2/gstv4l2colorbalance.c:
17493         * sys/v4l2/gstv4l2xoverlay.c:
17494         * sys/v4l2/v4l2_calls.c:
17495         * tests/icles/Makefile.am:
17496         * tests/icles/v4l2src-test.c:
17497         Few improvements to move to good.
17498
17499 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17500
17501         * configure.ac:
17502         * docs/plugins/Makefile.am:
17503         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17504         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17505         * docs/plugins/inspect/plugin-taglib.xml:
17506         * ext/Makefile.am:
17507         * ext/taglib/Makefile.am:
17508         * ext/taglib/gstid3v2mux.cc:
17509         * ext/taglib/gstid3v2mux.h:
17510         * ext/taglib/gsttaglib.cc:
17511         * ext/taglib/gsttaglib.h:
17512         * tests/check/Makefile.am:
17513         * tests/check/elements/tagid3v2mux.c:
17514           moved to good.  Closes #336110
17515
17516 2006-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17517
17518         * docs/plugins/Makefile.am:
17519         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
17520         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
17521         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17522         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17523         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
17524           Fix up docs for taglib plugin
17525           Also scan .cc files
17526
17527 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
17528
17529         * ext/taglib/gsttaglib.cc:
17530           Post an error message on the bus in the (extremely unlikely)
17531           case of an error.
17532
17533 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
17534
17535         * ext/taglib/Makefile.am:
17536         * ext/taglib/gstid3v2mux.cc:
17537         * ext/taglib/gstid3v2mux.h:
17538         * ext/taglib/gsttaglib.cc:
17539         * ext/taglib/gsttaglib.h:
17540           Split the actual ID3v2 tag rendering code into
17541           its own subclass.
17542
17543 2006-04-29  Sebastien Moutte  <sebastien@moutte.net>
17544
17545         * ext/neon/gstneonhttpsrc.c:
17546         * ext/neon/gstneonhttpsrc.h:
17547           added iradio-mode support as in gnomevfssrc to enable 
17548           connections with icydemux that will send title tag messages on 
17549           shoutcast/icecast streams. I've also added iradio properties
17550           iradio-name, iradio-genre, iradio-url.
17551           added user-agent property because some shoutcast streams don't return 
17552           data if the GET requests don't have a User-Agent.
17553         * win32/common/libgstneon.dsp:
17554           use debug version of libneon in debug mode
17555 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
17556
17557         * configure.ac:
17558         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
17559         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
17560         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17561         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
17562         * sys/Makefile.am:
17563         * sys/ximagesrc/Makefile.am:
17564         * sys/ximagesrc/ximagesrc.c:
17565         * sys/ximagesrc/ximagesrc.h:
17566         * sys/ximagesrc/ximageutil.c:
17567         * sys/ximagesrc/ximageutil.h:
17568         * tests/Makefile.am:
17569         * tests/icles/.cvsignore:
17570         * tests/icles/Makefile.am:
17571         * tests/icles/ximagesrc-test.c:
17572           moved ximagesrc to good (See #336756)
17573
17574 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
17575
17576         * ext/faad/gstfaad.c: (gst_faad_init), (aac_rate_idx),
17577         (gst_faad_setcaps), (gst_faad_chain), (gst_faad_open_decoder),
17578         (gst_faad_close_decoder), (gst_faad_change_state):
17579         * ext/faad/gstfaad.h:
17580           If we run into a decoding error, try re-opening the decoder
17581           with faacDecInit2() using fake codec data created from the
17582           data the demuxer gave us. Should fix a whole bunch of
17583           GStreamer-faad problems incl. 'channel coupling not
17584           implemented', 'maximum number of scalefactor bands exceeded'
17585           etc. (#173007, #332892).
17586
17587 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
17588
17589         * ext/amrwb/gstamrwbdec.c:
17590         * ext/amrwb/gstamrwbenc.c:
17591         * ext/amrwb/gstamrwbparse.c:
17592         * ext/arts/gst_arts.c:
17593         * ext/artsd/gstartsdsink.c:
17594         * ext/audiofile/gstafparse.c:
17595         * ext/audiofile/gstafsink.c:
17596         * ext/audiofile/gstafsrc.c:
17597         * ext/audioresample/gstaudioresample.c:
17598         * ext/bz2/gstbz2dec.c:
17599         * ext/bz2/gstbz2enc.c:
17600         * ext/cdaudio/gstcdaudio.c:
17601         * ext/directfb/dfbvideosink.c:
17602         * ext/divx/gstdivxdec.c:
17603         * ext/divx/gstdivxenc.c:
17604         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17605         * ext/faac/gstfaac.c: (gst_faac_base_init):
17606         * ext/faad/gstfaad.c:
17607         * ext/gsm/gstgsmdec.c:
17608         * ext/gsm/gstgsmenc.c:
17609         * ext/hermes/gsthermescolorspace.c:
17610         * ext/ivorbis/vorbisfile.c:
17611         * ext/lcs/gstcolorspace.c:
17612         * ext/libfame/gstlibfame.c:
17613         * ext/libmms/gstmms.c: (gst_mms_base_init):
17614         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init):
17615         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17616         * ext/nas/nassink.c: (gst_nassink_base_init):
17617         * ext/neon/gstneonhttpsrc.c:
17618         * ext/sdl/sdlaudiosink.c:
17619         * ext/sdl/sdlvideosink.c:
17620         * ext/shout/gstshout.c:
17621         * ext/snapshot/gstsnapshot.c:
17622         * ext/sndfile/gstsf.c:
17623         * ext/swfdec/gstswfdec.c:
17624         * ext/tarkin/gsttarkindec.c:
17625         * ext/tarkin/gsttarkinenc.c:
17626         * ext/theora/theoradec.c:
17627         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
17628         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
17629         * ext/xvid/gstxviddec.c:
17630         * ext/xvid/gstxvidenc.c:
17631         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_base_init):
17632         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_base_init):
17633         * gst/chart/gstchart.c:
17634         * gst/colorspace/gstcolorspace.c:
17635         * gst/deinterlace/gstdeinterlace.c:
17636         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init):
17637         * gst/festival/gstfestival.c:
17638         * gst/filter/gstbpwsinc.c:
17639         * gst/filter/gstiir.c:
17640         * gst/filter/gstlpwsinc.c:
17641         * gst/freeze/gstfreeze.c:
17642         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17643         * gst/librfb/gstrfbsrc.c:
17644         * gst/mixmatrix/mixmatrix.c:
17645         * gst/mpeg1sys/gstmpeg1systemencode.c:
17646         * gst/mpeg1videoparse/gstmp1videoparse.c:
17647         * gst/mpeg2sub/gstmpeg2subt.c:
17648         * gst/mpegaudioparse/gstmpegaudioparse.c:
17649         * gst/multifilesink/gstmultifilesink.c:
17650         * gst/overlay/gstoverlay.c:
17651         * gst/passthrough/gstpassthrough.c:
17652         * gst/playondemand/gstplayondemand.c:
17653         * gst/qtdemux/qtdemux.c:
17654         * gst/rtjpeg/gstrtjpegdec.c:
17655         * gst/rtjpeg/gstrtjpegenc.c:
17656         * gst/smooth/gstsmooth.c:
17657         * gst/smoothwave/gstsmoothwave.c:
17658         * gst/spectrum/gstspectrum.c:
17659         * gst/speed/gstspeed.c:
17660         * gst/stereo/gststereo.c:
17661         * gst/switch/gstswitch.c:
17662         * gst/tta/gstttadec.c: (gst_tta_dec_base_init):
17663         * gst/tta/gstttaparse.c: (gst_tta_parse_base_init):
17664         * gst/vbidec/gstvbidec.c:
17665         * gst/videocrop/gstvideocrop.c:
17666         * gst/videodrop/gstvideodrop.c:
17667         * gst/virtualdub/gstxsharpen.c:
17668         * gst/xingheader/gstxingmux.c: (gst_xing_mux_base_init):
17669         * gst/y4m/gsty4mencode.c:
17670         * sys/cdrom/gstcdplayer.c:
17671         * sys/directdraw/gstdirectdrawsink.c:
17672         * sys/directsound/gstdirectsoundsink.c:
17673         * sys/glsink/glimagesink.c:
17674         * sys/qcam/gstqcamsrc.c:
17675         * sys/v4l2/gstv4l2src.c:
17676         * sys/vcd/vcdsrc.c: (gst_vcdsrc_base_init):
17677         * sys/ximagesrc/ximagesrc.c:
17678           Define GstElementDetails as const and also static (when defined as
17679           global)
17680
17681 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17682
17683         * ext/musepack/gstmusepackdec.c:
17684         (gst_musepackdec_handle_seek_event), (gst_musepackdec_loop):
17685           Add support for segment seeks.
17686
17687 2006-04-20  Edgard Lima  <edgard.lima@indt.org.br>
17688
17689         * sys/v4l2/gstv4l2src.c:
17690         Added a couple of ifdefs to make it compile with other kernels.
17691         
17692 2006-04-20  Wim Taymans  <wim@fluendo.com>
17693
17694         Patch by: j^ <j at bootlab dot org>
17695
17696         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
17697         (qtdemux_video_caps):
17698         Never treat video streams as an audio stream.
17699         Add qtdrw mime type.
17700         Fixes #339041
17701
17702 2006-04-19  Wim Taymans  <wim@fluendo.com>
17703
17704         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17705         For VBR audio, don't try to calculate the samples_per_frame.
17706         Fixes #338935.
17707
17708 2006-04-13  Edgard Lima  <edgard.lima@indt.org.br>
17709
17710         * sys/v4l2/gstv4l2src.c:
17711         Just added a gtk-doc comment.
17712
17713 2006-04-17  Michael Smith  <msmith@fluendo.com>
17714
17715         * ext/theora/theoradec.c: (theora_dec_src_convert),
17716         (theora_handle_type_packet), (theora_handle_422_image),
17717         (theora_handle_420_image), (theora_handle_data_packet):
17718         * ext/theora/theoradec.h:
17719           Apply fix from j^ for API change in libtheoradec.
17720
17721           Implement 4:2:2 pixel format. Untested at the moment.
17722
17723 2006-04-14  Tim-Philipp Müller  <tim at centricular dot net>
17724
17725         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_init),
17726         (gst_musepack_stream_init):
17727           Fix track/album peak tag values; use GST_DEBUG_FUNCPTR and
17728           gst_pad_new_from_static_template().
17729
17730 2006-04-13  Edgard Lima  <edgard.lima@indt.org.br>
17731
17732         * sys/v4l2/gstv4l2src.c: (gst_v4l2element_class_init),
17733         (gst_v4l2src_dispose):
17734         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_buffer_new):
17735         Fixed some memory leaks.
17736
17737 2006-04-12  Edgard Lima  <edgard.lima@indt.org.br>
17738
17739         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
17740         Fix to work in read mode.
17741
17742 2006-04-10  Wim Taymans  <wim@fluendo.com>
17743
17744         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17745         Fix parsing of newer stsd chunks again.
17746
17747 2006-04-10  Wim Taymans  <wim@fluendo.com>
17748
17749         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
17750         (qtdemux_parse_trak):
17751         Fix framerate calculation.
17752
17753 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17754
17755         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_class_init):
17756           Fix build (class_init declaration/definition mismatch).
17757
17758 2006-04-10  Wim Taymans  <wim@fluendo.com>
17759
17760         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17761         force mono 8000 Hz on AMR samples.
17762
17763 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17764
17765         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start):
17766           remove atoll by using g_ascii_strtoull (atoll is not supported on WIN32)
17767         * sys/directdraw/gstdirectdrawsink.c:
17768         * sys/directsound/gstdirectsoundsink.c:
17769           done some cleans in sources
17770         * win32/vs6:
17771           add project files for neon, qtdemux
17772           
17773 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17774
17775         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_class_init):
17776         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_class_init):
17777         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_class_init):
17778         * ext/arts/gst_arts.c: (gst_arts_class_init):
17779         * ext/artsd/gstartsdsink.c: (gst_artsdsink_class_init):
17780         * ext/audiofile/gstafsink.c: (gst_afsink_class_init):
17781         * ext/audiofile/gstafsrc.c: (gst_afsrc_class_init):
17782         * ext/audioresample/gstaudioresample.c:
17783         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
17784         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_class_init):
17785         * ext/divx/gstdivxdec.c: (gst_divxdec_class_init):
17786         * ext/hermes/gsthermescolorspace.c:
17787         (gst_hermes_colorspace_class_init):
17788         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_class_init):
17789         * ext/jack/gstjack.c: (gst_jack_class_init):
17790         * ext/jack/gstjackbin.c: (gst_jack_bin_class_init):
17791         * ext/lcs/gstcolorspace.c: (gst_colorspace_class_init):
17792         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init):
17793         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
17794         * ext/nas/nassink.c: (gst_nassink_class_init):
17795         * ext/shout/gstshout.c: (gst_icecastsend_class_init):
17796         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17797         * ext/sndfile/gstsf.c: (gst_sf_class_init):
17798         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_class_init),
17799         (gst_swfdec_class_init):
17800         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_class_init):
17801         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_class_init):
17802         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_class_init):
17803         * gst/chart/gstchart.c: (gst_chart_class_init):
17804         * gst/colorspace/gstcolorspace.c: (gst_colorspace_class_init):
17805         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_class_init):
17806         * gst/festival/gstfestival.c: (gst_festival_class_init):
17807         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init):
17808         * gst/filter/gstiir.c: (gst_iir_class_init):
17809         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
17810         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init):
17811         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_class_init):
17812         * gst/mpeg1sys/gstmpeg1systemencode.c:
17813         (gst_system_encode_class_init):
17814         * gst/mpeg1videoparse/gstmp1videoparse.c:
17815         (gst_mp1videoparse_class_init):
17816         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_class_init):
17817         * gst/mpegaudioparse/gstmpegaudioparse.c:
17818         (gst_mp3parse_class_init):
17819         * gst/overlay/gstoverlay.c: (gst_overlay_class_init):
17820         * gst/passthrough/gstpassthrough.c: (passthrough_class_init):
17821         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init):
17822         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_class_init):
17823         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_class_init):
17824         * gst/smooth/gstsmooth.c: (gst_smooth_class_init):
17825         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init):
17826         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
17827         * gst/stereo/gststereo.c: (gst_stereo_class_init):
17828         * gst/switch/gstswitch.c: (gst_switch_class_init):
17829         * gst/tta/gstttadec.c: (gst_tta_dec_class_init):
17830         * gst/tta/gstttaparse.c: (gst_tta_parse_class_init):
17831         * gst/vbidec/gstvbidec.c: (gst_vbidec_class_init):
17832         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init):
17833         * gst/virtualdub/gstxsharpen.c: (gst_xsharpen_class_init):
17834         * gst/y4m/gsty4mencode.c: (gst_y4mencode_class_init):
17835         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
17836         * sys/directsound/gstdirectsoundsink.c:
17837         (gst_directsoundsink_class_init):
17838         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_class_init):
17839         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
17840         * sys/dxr3/dxr3videosink.c: (dxr3videosink_class_init):
17841         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_class_init):
17842         * sys/v4l2/gstv4l2colorbalance.c:
17843         (gst_v4l2_color_balance_channel_class_init):
17844         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_channel_class_init),
17845         (gst_v4l2_tuner_norm_class_init):
17846         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_class_init):
17847         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17848
17849 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17850
17851         * gst/colorspace/gstcolorspace.h:
17852         * gst/deinterlace/gstdeinterlace.h:
17853         * gst/passthrough/gstpassthrough.h:
17854         * gst/y4m/gsty4mencode.h:
17855         Fix more broken GObject macros
17856
17857 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17858
17859         * ext/xine/gstxine.h:
17860         * gst-libs/gst/play/play.h:
17861         * sys/v4l2/gstv4l2element.h:
17862         * sys/ximagesrc/ximageutil.h:
17863         Fix broken GObject macros
17864
17865 2006-04-08  Wim Taymans  <wim@fluendo.com>
17866
17867         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
17868         (gst_qtdemux_chain), (gst_qtdemux_add_stream), (qtdemux_dump_stsz),
17869         (qtdemux_dump_stco), (qtdemux_parse_trak):
17870         Don't make rounding errors in timestamp/duration calculations.
17871         Fix timestamps for AMR and IMA4.  Fixes (#337436).
17872         Create a dummy segment even when there is no edit list.
17873
17874 2006-04-07  Julien MOUTTE  <julien@moutte.net>
17875
17876         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt: Updates.
17877         * examples/directfb/Makefile.am: Add example resource files to
17878         dist.
17879
17880 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17881
17882         * ext/amrwb/amrwb-code/Makefile.am:
17883         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
17884         (gst_ximagesrc_create), (gst_ximagesrc_set_property):
17885         Typo fix, s/XFree86/X11 and added doc blurb saying that it fixates to
17886         25fps
17887
17888 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17889
17890         * tests/icles/ximagesrc-test.c: (main):
17891         Actually assert that pipeline goes to playing
17892
17893 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17894
17895         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
17896         (composite_pixel), (gst_ximagesrc_ximage_get),
17897         (gst_ximagesrc_create), (gst_ximagesrc_set_property):
17898         Fix typo, C++ style comments and other small cleanups
17899         
17900 2006-04-06  Wim Taymans  <wim@fluendo.com>
17901
17902         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
17903         (gst_qtdemux_handle_src_query), (gst_qtdemux_find_index),
17904         (gst_qtdemux_find_keyframe), (gst_qtdemux_find_segment),
17905         (gst_qtdemux_move_stream), (gst_qtdemux_perform_seek),
17906         (gst_qtdemux_do_seek), (gst_qtdemux_change_state),
17907         (gst_qtdemux_activate_segment),
17908         (gst_qtdemux_prepare_current_sample), (gst_qtdemux_advance_sample),
17909         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
17910         (qtdemux_parse_trak):
17911         Added full edit list support.
17912         Avoid overflows in prologue image detection code.
17913         Avoid roundoff errors in timestamp calculations.
17914
17915 2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17916
17917         * configure.ac:
17918           clean up so report properly on missing stuff
17919           fix modplug detection
17920
17921 2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17922
17923         * ext/Makefile.am:
17924         * ext/amrwb/amrwb-code/Makefile.am:
17925           don't dist amr wb source code
17926
17927 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17928
17929         Patch by: j^  <j at bootlab dot org>
17930
17931         * ext/amrwb/gstamrwbdec.c:
17932         * ext/amrwb/gstamrwbenc.c:
17933         * ext/amrwb/gstamrwbparse.c:
17934         * ext/arts/gst_arts.c:
17935         * ext/artsd/gstartsdsink.c:
17936         * ext/audiofile/gstafparse.c:
17937         * ext/audiofile/gstafsink.c:
17938         * ext/audiofile/gstafsrc.c:
17939         * ext/cdaudio/gstcdaudio.c:
17940         * ext/directfb/dfbvideosink.c:
17941         * ext/divx/gstdivxdec.c:
17942         * ext/divx/gstdivxenc.c:
17943         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17944         * ext/faac/gstfaac.c: (gst_faac_base_init):
17945         * ext/faad/gstfaad.c:
17946         * ext/gsm/gstgsmdec.c:
17947         * ext/gsm/gstgsmenc.c:
17948         * ext/hermes/gsthermescolorspace.c:
17949         * ext/ivorbis/vorbisfile.c:
17950         * ext/lcs/gstcolorspace.c:
17951         * ext/libfame/gstlibfame.c:
17952         * ext/libmms/gstmms.c: (gst_mms_base_init):
17953         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17954         * ext/nas/nassink.c: (gst_nassink_base_init):
17955         * ext/neon/gstneonhttpsrc.c:
17956         * ext/polyp/polypsink.c: (gst_polypsink_base_init):
17957         * ext/sdl/sdlaudiosink.c:
17958         * ext/sdl/sdlvideosink.c:
17959         * ext/shout/gstshout.c:
17960         * ext/snapshot/gstsnapshot.c:
17961         * ext/sndfile/gstsf.c:
17962         * ext/tarkin/gsttarkindec.c:
17963         * ext/tarkin/gsttarkinenc.c:
17964         * ext/theora/theoradec.c:
17965         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
17966         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
17967         * ext/xvid/gstxviddec.c:
17968         * ext/xvid/gstxvidenc.c:
17969         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_base_init):
17970         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_base_init):
17971         * gst/chart/gstchart.c:
17972         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init):
17973         * gst/festival/gstfestival.c:
17974         * gst/filter/gstiir.c:
17975         * gst/filter/gstlpwsinc.c:
17976         * gst/freeze/gstfreeze.c:
17977         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17978         * gst/mixmatrix/mixmatrix.c:
17979         * gst/mpeg1sys/gstmpeg1systemencode.c:
17980         * gst/mpeg1videoparse/gstmp1videoparse.c:
17981         * gst/mpeg2sub/gstmpeg2subt.c:
17982         * gst/mpegaudioparse/gstmpegaudioparse.c:
17983         * gst/multifilesink/gstmultifilesink.c:
17984         * gst/overlay/gstoverlay.c:
17985         * gst/passthrough/gstpassthrough.c:
17986         * gst/playondemand/gstplayondemand.c:
17987         * gst/qtdemux/qtdemux.c:
17988         * gst/rtjpeg/gstrtjpegdec.c:
17989         * gst/rtjpeg/gstrtjpegenc.c:
17990         * gst/smooth/gstsmooth.c:
17991         * gst/tta/gstttadec.c: (gst_tta_dec_base_init):
17992         * gst/tta/gstttaparse.c: (gst_tta_parse_base_init):
17993         * gst/videocrop/gstvideocrop.c:
17994         * gst/videodrop/gstvideodrop.c:
17995         * gst/virtualdub/gstxsharpen.c:
17996         * gst/xingheader/gstxingmux.c: (gst_xing_mux_base_init):
17997         * gst/y4m/gsty4mencode.c:
17998           Unify the long descriptions in the plugin details (#337263).
17999
18000 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
18001
18002         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
18003         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property):
18004           Add back "uri" property and mark it as deprecated; undoes
18005           API/ABI breakage from 2006-02-24.
18006
18007 2006-04-05  Wim Taymans  <wim@fluendo.com>
18008
18009         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
18010         (gst_qtdemux_do_seek), (gst_qtdemux_loop_state_movie),
18011         (gst_qtdemux_loop):
18012         Use duration as segment stop position if none is
18013         explicitly configured.
18014         Also perform EOS when we run past the segment stop.
18015
18016 2006-04-04  Wim Taymans  <wim@fluendo.com>
18017
18018         * gst/qtdemux/qtdemux.c: (gst_qtdemux_go_back),
18019         (gst_qtdemux_perform_seek), (gst_qtdemux_do_seek),
18020         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
18021         (gst_qtdemux_chain), (qtdemux_parse_tree), (qtdemux_parse_trak):
18022         More cleanups, added comments.
18023         Mark discontinuities on outgoing buffers.
18024         Post better errors when something goes wrong.
18025         Handle EOS and segment end properly.
18026
18027 2006-04-04  Wim Taymans  <wim@fluendo.com>
18028
18029         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18030         (gst_qtdemux_push_event), (gst_qtdemux_go_back),
18031         (gst_qtdemux_perform_seek), (gst_qtdemux_do_seek),
18032         (gst_qtdemux_handle_src_event), (plugin_init),
18033         (gst_qtdemux_change_state), (gst_qtdemux_loop_state_movie),
18034         (gst_qtdemux_loop), (gst_qtdemux_chain),
18035         (qtdemux_sink_activate_pull), (gst_qtdemux_add_stream),
18036         (qtdemux_parse), (qtdemux_parse_tree), (qtdemux_parse_trak),
18037         (qtdemux_parse_udta), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18038         (qtdemux_tag_add_gnre), (gst_qtdemux_handle_esds):
18039         * gst/qtdemux/qtdemux.h:
18040         Handle stss boxes so we can mark and find keyframes.
18041         Implement correct accurate and keyframe seeking.
18042         Use _DEBUG_OBJECT when possible.
18043         Fixes #332155
18044
18045 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18046
18047         * tests/check/Makefile.am:
18048           Only run the id3v2mux check if taglib is available and
18049           the taglib plugin has been built.
18050
18051 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18052
18053         * ext/swfdec/Makefile.am:
18054           Don't set plugindir.
18055
18056         * ext/swfdec/gstswfdec.c:
18057           GST_PLUGIN_DEFINE_STATIC isn't a good idea for installed plugins.
18058
18059 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18060
18061         * configure.ac:
18062           Add AX_CREATE_STDINT_H to create _stdint.h, needed by
18063           the dts plugin.
18064
18065 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18066
18067         * ext/soundtouch/gstpitch.cc:
18068         * ext/theora/theoradec.c:
18069         * gst/modplug/gstmodplug.cc:
18070           GST_ORIGIN => GST_PACKAGE_ORIGIN
18071           GST_PACKAGE => GST_PACKAGE_NAME
18072
18073 2006-04-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18074
18075         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
18076         * docs/plugins/inspect/plugin-bz2.xml:
18077         * docs/plugins/inspect/plugin-cdxaparse.xml:
18078         * docs/plugins/inspect/plugin-freeze.xml:
18079         * docs/plugins/inspect/plugin-glimagesink.xml:
18080         * docs/plugins/inspect/plugin-modplug.xml:
18081         * docs/plugins/inspect/plugin-neon.xml:
18082         * docs/plugins/inspect/plugin-sdl.xml:
18083         * docs/plugins/inspect/plugin-video4linux2.xml:
18084         * docs/plugins/inspect/plugin-ximagesrc.xml:
18085         * docs/plugins/inspect/plugin-xingheader.xml:
18086           add more plugins to docs
18087
18088 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18089
18090         * sys/dxr3/ac3_padder.h:
18091           fix up doc strings
18092         * docs/plugins/Makefile.am:
18093         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18094         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
18095         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
18096         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
18097         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
18098         * docs/plugins/inspect/plugin-qtdemux.xml:
18099         * docs/plugins/inspect/plugin-speed.xml:
18100         * docs/plugins/inspect/plugin-taglib.xml:
18101         * docs/plugins/inspect/plugin-tta.xml:
18102           commit updates
18103         * configure.ac:
18104         * ext/taglib/gsttaglib.cc:
18105         * tests/Makefile.am:
18106         * tests/check/.cvsignore:
18107         * tests/check/Makefile.am:
18108         * tests/check/elements/.cvsignore:
18109         * tests/check/elements/tagid3v2mux.c:
18110         (test_taglib_id3mux_create_tags), (test_taglib_id3mux_check_tags),
18111         (fill_mp3_buffer), (got_buffer), (demux_pad_added),
18112         (test_taglib_id3mux_check_output_buffer),
18113         (test_taglib_id3mux_with_tags), (GST_START_TEST),
18114         (tagid3v2mux_suite), (main):
18115            add the tagid3v2mux check from #336110
18116
18117 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18118
18119         * configure.ac:
18120           rework like the other configure.ac files
18121         * Makefile.am:
18122         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18123         * ext/amrwb/gstamrwb.c:
18124         * ext/arts/gst_arts.c:
18125         * ext/artsd/gstartsdsink.c:
18126         * ext/audiofile/gstaf.c:
18127         * ext/audioresample/gstaudioresample.c:
18128         * ext/bz2/gstbz2.c:
18129         * ext/cdaudio/gstcdaudio.c:
18130         * ext/directfb/dfbvideosink.c:
18131         * ext/dts/gstdtsdec.c:
18132         * ext/faac/gstfaac.c:
18133         * ext/faad/gstfaad.c:
18134         * ext/hermes/gsthermescolorspace.c:
18135         * ext/ivorbis/vorbis.c:
18136         * ext/jack/gstjack.c:
18137         * ext/lcs/gstcolorspace.c:
18138         * ext/musepack/gstmusepackdec.c:
18139         * ext/musicbrainz/gsttrm.c:
18140         * ext/nas/nassink.c:
18141         * ext/sdl/gstsdl.c:
18142         * ext/snapshot/gstsnapshot.c:
18143         * ext/sndfile/gstsf.c:
18144         * ext/swfdec/gstswfdec.c:
18145         * ext/tarkin/gsttarkin.c:
18146         * ext/xine/xine.c:
18147         * ext/xvid/gstxvid.c:
18148         * gst/cdxaparse/gstcdxaparse.c:
18149         * gst/chart/gstchart.c:
18150         * gst/colorspace/gstcolorspace.c:
18151         * gst/deinterlace/gstdeinterlace.c:
18152         * gst/equalizer/gstiirequalizer.c:
18153         * gst/festival/gstfestival.c:
18154         * gst/filter/gstfilter.c:
18155         * gst/freeze/gstfreeze.c:
18156         * gst/games/gstpuzzle.c:
18157         * gst/librfb/gstrfbsrc.c:
18158         * gst/mixmatrix/mixmatrix.c:
18159         * gst/mpeg1sys/gstmpeg1systemencode.c:
18160         * gst/mpeg1videoparse/gstmp1videoparse.c:
18161         * gst/mpeg2sub/gstmpeg2subt.c:
18162         * gst/mpegaudioparse/gstmpegaudioparse.c:
18163         * gst/multifilesink/gstmultifilesink.c:
18164         * gst/overlay/gstoverlay.c:
18165         * gst/passthrough/gstpassthrough.c:
18166         * gst/playondemand/gstplayondemand.c:
18167         * gst/qtdemux/qtdemux.c:
18168         * gst/rtjpeg/gstrtjpeg.c:
18169         * gst/smooth/gstsmooth.c:
18170         * gst/smoothwave/gstsmoothwave.c:
18171         * gst/spectrum/gstspectrum.c:
18172         * gst/speed/gstspeed.c:
18173         * gst/stereo/gststereo.c:
18174         * gst/switch/gstswitch.c:
18175         * gst/vbidec/gstvbidec.c:
18176         * gst/videocrop/gstvideocrop.c:
18177         * gst/videodrop/gstvideodrop.c:
18178         * gst/virtualdub/gstvirtualdub.c:
18179         * gst/xingheader/gstxingmux.c:
18180         * gst/y4m/gsty4mencode.c:
18181         * sys/cdrom/gstcdplayer.c:
18182         * sys/directdraw/gstdirectdrawplugin.c:
18183         * sys/directsound/gstdirectsoundplugin.c:
18184         * sys/dxr3/dxr3init.c:
18185         * sys/glsink/glimagesink.c:
18186         * sys/qcam/gstqcamsrc.c:
18187         * sys/v4l2/gstv4l2.c:
18188         * sys/vcd/vcdsrc.c:
18189         * sys/ximagesrc/ximagesrc.c:
18190           update to use correct defines
18191         * po/POTFILES.in:
18192         * po/af.po:
18193         * po/az.po:
18194         * po/cs.po:
18195         * po/en_GB.po:
18196         * po/hu.po:
18197         * po/it.po:
18198         * po/nb.po:
18199         * po/nl.po:
18200         * po/or.po:
18201         * po/sq.po:
18202         * po/sr.po:
18203         * po/sv.po:
18204         * po/uk.po:
18205         * po/vi.po:
18206           v4l2 has translations, pick them up
18207
18208 2006-03-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18209
18210         * sys/ximagesrc/ximagesrc.c: 
18211           Add docs to ximagesrc
18212
18213 2006-03-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18214
18215         * sys/ximagesrc/ximagesrc.c: (composite_pixel),
18216         (gst_ximagesrc_ximage_get), (gst_ximagesrc_set_property),
18217         (gst_ximagesrc_get_caps), (gst_ximagesrc_class_init):
18218         * sys/ximagesrc/ximagesrc.h:
18219         * sys/ximagesrc/ximageutil.c: (ximageutil_xcontext_get):
18220         * sys/ximagesrc/ximageutil.h:
18221           Fix ximagesrc so a) the cursor doesnt trail and b) there are no
18222           yellow rectangles with the cursor
18223
18224 2006-03-31  Michael Smith  <msmith@fluendo.com>
18225
18226         * configure.ac:
18227           Add autoconfery for theoradec.
18228         * ext/Makefile.am:
18229           Add theora directory.
18230         * ext/theora/Makefile.am:
18231         * ext/theora/theoradec.c: (gst_theoradec_base_init),
18232         (gst_theoradec_class_init), (gst_theoradec_init),
18233         (gst_theoradec_reset), (inc_granulepos), (theora_get_query_types),
18234         (gst_theoradec_granule_clocktime), (theora_dec_src_convert),
18235         (theora_dec_sink_convert), (theora_dec_src_query),
18236         (theora_dec_sink_query), (theora_dec_src_event),
18237         (theora_dec_sink_event), (theora_handle_comment_packet),
18238         (theora_handle_type_packet), (theora_handle_header_packet),
18239         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
18240         (theora_dec_change_state), (plugin_init):
18241         * ext/theora/theoradec.h:
18242           Add theora plugin for theora-exp decoder. Very heavily based on the
18243           existing theora decoder plugin.
18244
18245 2006-03-29  Wim Taymans  <wim@fluendo.com>
18246
18247         * ext/gsm/gstgsmdec.c: (gst_gsmdec_class_init), (gst_gsmdec_init),
18248         (gst_gsmdec_finalize), (gst_gsmdec_sink_event), (gst_gsmdec_chain):
18249         * ext/gsm/gstgsmdec.h:
18250         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
18251         (gst_gsmenc_finalize), (gst_gsmenc_chain):
18252         Cleanups, fix leaks.
18253         Handle events and DISCONT.
18254         Use adapter in the decoder.
18255
18256 2006-03-29  Wim Taymans  <wim@fluendo.com>
18257
18258         Patch by: Renato Araujo Oliveira Filho <renatox at gmail dot com>
18259
18260         * configure.ac:
18261         * ext/Makefile.am:
18262         * ext/amrwb/Makefile.am:
18263         * ext/amrwb/README:
18264         * ext/amrwb/amrwb-code/Makefile.am:
18265         * ext/amrwb/amrwb-code/run.sh:
18266         * ext/amrwb/gstamrwb.c: (plugin_init):
18267         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init),
18268         (gst_amrwbdec_class_init), (gst_amrwbdec_init),
18269         (gst_amrwbdec_setcaps), (gst_amrwbdec_event), (gst_amrwbdec_chain),
18270         (gst_amrwbdec_state_change):
18271         * ext/amrwb/gstamrwbdec.h:
18272         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_base_init),
18273         (gst_amrwbenc_class_init), (gst_amrwbenc_init),
18274         (gst_amrwbenc_finalize), (gst_amrwbenc_setcaps),
18275         (gst_amrwbenc_chain), (gst_amrwbenc_state_change):
18276         * ext/amrwb/gstamrwbenc.h:
18277         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init),
18278         (gst_amrwbparse_class_init), (gst_amrwbparse_init),
18279         (gst_amrwbparse_querytypes), (gst_amrwbparse_query),
18280         (gst_amrwbparse_chain), (gst_amrwbparse_read_header),
18281         (gst_amrwbparse_loop), (gst_amrwbparse_sink_activate),
18282         (gst_amrwbparse_sink_activate_pull), (gst_amrwbparse_state_change):
18283         * ext/amrwb/gstamrwbparse.h:
18284         Added new plugin amrwb parse.
18285         Renamed audio/AMR to audio/AMR-WB as per spec.
18286         Fixes #333307
18287
18288 2006-03-27  Edgard Lima <edgard.lima@indt.org.br>
18289
18290         * gst-plugins-bad/sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init):
18291         Small fix, now pwc driver can tell about its buffers.
18292
18293 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
18294
18295         * configure.ac:
18296           Remove CXX tag from AS_LIBTOOL_TAGS, just like we
18297           did for -good and -ugly. Fixes build on some systems
18298           and doesn't seem to be required for C++ code.
18299
18300 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
18301
18302         * ext/taglib/gsttaglib.cc:
18303         * ext/taglib/gsttaglib.h:
18304           Fix newsegment event handling a bit. We need to
18305           cache the first newsegment event, because we can't
18306           adjust offsets yet when we get it, as we don't
18307           know the size of the tag yet for sure at that point.
18308           Also do some minor cleaning up here and there and add
18309           some debug statements.
18310
18311 2006-03-25  Tim-Philipp Müller  <tim at centricular dot net>
18312
18313         * ext/taglib/gsttaglib.cc:
18314           We do not want to proxy the caps on the sink pad; our 
18315           source pad should have application/x-id3 caps; also,
18316           don't use already-freed strings in debug messages;
18317           finally, adjust buffer offsets on buffers sent out.
18318
18319 2006-03-25  Tim-Philipp Müller  <tim at centricular dot net>
18320
18321         * sys/v4l2/gstv4l2src.c:
18322           Older kernels don't seem to have this particular v4l2 format,
18323           so comment out until this gets fixed properly (and make
18324           buildbots happy).
18325
18326 2006-03-25  Edgard Lima  <edgard.lima@indt.org.br>
18327
18328         * sys/v4l2/gstv4l2colorbalance.c:
18329         * sys/v4l2/gstv4l2colorbalance.h:
18330         * sys/v4l2/gstv4l2element.c:
18331         * sys/v4l2/gstv4l2src.c:
18332         * sys/v4l2/gstv4l2src.h:
18333         * sys/v4l2/gstv4l2tuner.c:
18334         * sys/v4l2/v4l2_calls.c:
18335         * sys/v4l2/v4l2src_calls.c:
18336         * sys/v4l2/v4l2src_calls.h:
18337         Just make few things more robust and also some identation.
18338
18339 2006-03-23  Wim Taymans  <wim@fluendo.com>
18340
18341         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
18342
18343         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init), (gst_xvidenc_setup),
18344         (gst_xvidenc_chain):
18345         Patch to mark outgoing encoded buffers as delta-units (or not).
18346         Note that this patch also patches:
18347         - the setting of fincr and fbase in xvid-encoder creation based on
18348           caps framerate
18349         - makes 0, rather than 2, the default max_b_frames, as the current
18350           xvidenc does not seem "fully prepared" to handle b-frame 
18351           "effects", such as encoder returning 0 encoded bytes, etc.
18352         Fixes #335585
18353
18354 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18355
18356         * gst/modplug/libmodplug/Makefile.am:
18357         * gst/modplug/libmodplug/load_it.cpp:
18358           Try that again (not only should it be MODPLUG_ instead
18359           of MODFILE, also that define is already set in stdafx.h;
18360           what we really need is some more #ifndefs).
18361
18362 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18363
18364         * gst/modplug/libmodplug/Makefile.am:
18365           More gcc-4.1 fixes (we don't need file saving, so just
18366           define MODPLUG_NO_FILESAVE. That way, the compiler won't
18367           complain about modplug ignoring the return value of fwrite
18368           any longer and we might even save a few bytes as well).
18369
18370 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18371
18372         Patch by: Wouter Paeson  <wouter at kangaroot dot net>
18373
18374         * configure.ac:
18375         * ext/Makefile.am:
18376         * ext/soundtouch/Makefile.am:
18377         * ext/soundtouch/gstpitch.cc:
18378         * ext/soundtouch/gstpitch.hh:
18379           Add new libsoundtouch-based pitch plugin (#331335).
18380
18381 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
18382
18383         * gst/modplug/libmodplug/load_ptm.cpp:
18384           Fix compilation with gcc-4.1 and -Werror (#327355).
18385
18386 2006-03-20  Tim-Philipp Müller  <tim at centricular dot net>
18387
18388         * ext/taglib/gsttaglib.h:
18389           Fix left-over gst_my_filter_get_type.
18390
18391 2006-03-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18392
18393         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_open_display),
18394         (gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
18395         (gst_ximagesrc_class_init), (gst_ximagesrc_init):
18396         Have a show mouse pointer property and use it if we can
18397
18398 2006-03-15  Edward Hervey  <edward@fluendo.com>
18399
18400         * gst/qtdemux/qtdemux.c: (gst_qtdemux_dispose):
18401         Let's not forget to chain up to the parent dispose.
18402
18403 2006-03-15  Edward Hervey  <edward@fluendo.com>
18404
18405         * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
18406         (gst_qtdemux_init), (gst_qtdemux_dispose),
18407         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
18408         Series of memleak fixes:
18409         - Unref the GstAdapter in finalize.
18410         - Use gst_pad_new_from_static_template(), shorter and safer.
18411         - Free unused QtDemuxStream when not used.
18412
18413 2006-03-14  Edward Hervey  <edward@fluendo.com>
18414
18415         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_base_init),
18416         (gst_v4l2src_class_init):
18417         Initialization of the debugging category should be as early as possible,
18418         moving it from _class_init() to beginning of _base_init().
18419
18420 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
18421
18422         * ext/taglib/gsttaglib.cc:
18423           Add gtk-doc blurb (unused for the time being); match registered
18424           plugin name to the filename of the plugin (taglibmux => taglib)
18425
18426 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
18427
18428         Patch by: Mikhail Zabaluev  <mhz altlinux org>
18429
18430         * autogen.sh:
18431           Don't check for file that only exists in CVS but isn't
18432           disted (#334417)
18433
18434 2006-03-13  Julien MOUTTE  <julien@moutte.net>
18435
18436         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18437         * sys/v4l2/Makefile.am: Fix build of v4l2 (sigh)
18438
18439 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18440
18441         * Makefile.am:
18442         * configure.ac:
18443           Fix distcheck.
18444
18445 2006-03-12  Edward Hervey  <edward@fluendo.com>
18446
18447         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
18448         (gst_v4l2src_buffer_pool_free):
18449         g_atomic_int_set is only available in glib-0.10, use gst_atomic_int_et
18450         instead.
18451
18452 2006-03-12  Edward Hervey  <edward@fluendo.com>
18453
18454         * sys/v4l2/gstv4l2element.h:
18455         Remove tim's addition of "_stdint.h" since it doesn't make the PPC
18456         buildbot happy.
18457         I will just use the same comment Ronald used when he added these lines:
18458         Yet Another Hack (tm) for kernel header borkedness.
18459
18460 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18461
18462         * ext/taglib/Makefile.am:
18463         * ext/taglib/gsttaglib.cc:
18464         * ext/taglib/gsttaglib.h:
18465           Add support for writing MusicBrainz IDs.
18466
18467 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18468
18469         * sys/v4l2/gstv4l2element.h:
18470           Include "_stdint.h" in an attempt to make the
18471           PPC-buildbot happy.
18472
18473 2006-03-11  Edgard Lima  <edgard.lima@indt.org.br>
18474
18475         * configure.ac:
18476         * sys/Makefile.am:
18477         * sys/v4l2/Makefile.am:
18478         * sys/v4l2/gstv4l2.c:
18479         * sys/v4l2/gstv4l2colorbalance.h:
18480         * sys/v4l2/gstv4l2element.c:
18481         * sys/v4l2/gstv4l2element.h:
18482         * sys/v4l2/gstv4l2src.c:
18483         * sys/v4l2/gstv4l2src.h:
18484         * sys/v4l2/gstv4l2tuner.c:
18485         * sys/v4l2/gstv4l2tuner.h:
18486         * sys/v4l2/gstv4l2xoverlay.c:
18487         * sys/v4l2/gstv4l2xoverlay.h:
18488         * sys/v4l2/v4l2_calls.c:
18489         * sys/v4l2/v4l2_calls.h:
18490         * sys/v4l2/v4l2src_calls.c:
18491         * sys/v4l2/v4l2src_calls.h:
18492         V4L2 ported to 0.10.
18493         
18494 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
18495
18496         * configure.ac:
18497           Only compile the taglib plugin if a C++ compiler is
18498           present. Use GST_DEFAULT_ELEMENTS macro from common/
18499           for all the defaults stuff.
18500
18501 2006-03-11  Christophe Fergeau  <teuf@gnome.org>
18502
18503         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18504
18505         * configure.ac:
18506         * gst/xingheader/Makefile.am:
18507         * gst/xingheader/gstxingmux.c: 
18508         * gst/xingheader/gstxingmux.h: added new element to add Xing headers
18509         to MP3 files (this allows decoder to figure out the length of VBR
18510         files) 
18511
18512 2006-03-11  Christophe Fergeau  <teuf@gnome.org>
18513         
18514         Patch by: Alex Lancaster
18515         
18516         * ext/taglib/gsttaglib.cc: fix writing of TPOS tags (album number),
18517         and add support for TCOP (copyright)
18518
18519 2006-03-10  Julien MOUTTE  <julien@moutte.net>
18520
18521         * gst/modplug/Makefile.am:
18522         * gst/modplug/gstmodplug.cc: Fix modplug compilation.
18523
18524 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
18525
18526         * configure.ac:
18527         * gst/modplug/Makefile.am:
18528         * gst/modplug/gstmodplug.cc:
18529         * gst/modplug/gstmodplug.h:
18530         * gst/modplug/libmodplug/sndfile.cpp:
18531         * gst/modplug/libmodplug/sndfile.h:
18532           modplug plugin ported to 0.10 (#332598, patch by:
18533           Jonathan Matthew <jonathan at kaolin wh9 net>).
18534
18535 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
18536
18537         * ext/libmms/gstmms.c: (gst_mms_urihandler_init),
18538         (gst_mms_base_init), (gst_mms_class_init), (gst_mms_init),
18539         (gst_mms_finalize), (gst_mms_create), (gst_mms_start),
18540         (gst_mms_set_property), (gst_mms_get_property),
18541         (gst_mms_uri_get_uri):
18542         * ext/libmms/gstmms.h:
18543           Some clean-ups; more debug output; use blocksize property
18544           of GstBaseSrc instead of re-registering our own; make debug
18545           category actually be used.
18546
18547 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
18548
18549         * gst/qtdemux/qtdemux.c: (gst_qtdemux_send_event):
18550           Fix build with gcc-4.1 (#327355).
18551
18552 2006-03-09  Christophe Fergeau  <teuf@gnome.org>
18553
18554         reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18555
18556         * configure.ac:
18557         * ext/Makefile.am:
18558         * ext/taglib/Makefile.am:
18559         * ext/taglib/gsttaglib.cc:
18560         * ext/taglib/gsttaglib.h: new id3v2 muxer based on TagLib
18561
18562 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
18563
18564         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
18565           Extract disc number and count from files that use
18566           'disk' instead of 'disc' as node identifier for that
18567           (fixes #332066).
18568
18569 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
18570
18571         * ext/musepack/gstmusepackdec.h:
18572         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek):
18573           Forgot those two.
18574
18575 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
18576
18577         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
18578         (gst_musepackdec_init), (gst_musepackdec_send_newsegment),
18579         (gst_musepackdec_handle_seek_event),
18580         (gst_musepackdec_get_src_query_types), (gst_musepackdec_src_query),
18581         (gst_musepack_stream_init), (gst_musepackdec_sink_activate),
18582         (gst_musepackdec_sink_activate_pull), (gst_musepackdec_loop),
18583         (gst_musepackdec_change_state):
18584           Some cleanups; pause task when push fails.
18585
18586 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
18587
18588         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
18589           Add support for '3IVD' fourcc (#333403).
18590
18591 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18592
18593         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_send_tags),
18594         (gst_faad_setcaps), (gst_faad_do_raw_seek), (gst_faad_src_event),
18595         (gst_faad_sink_event), (gst_faad_src_convert),
18596         (gst_faad_src_query), (gst_faad_chain), (gst_faad_change_state):
18597           Add query function for position/duration querying (mostly for
18598           raw AAC streams); make seeking in raw AAC streams work; post
18599           tags with codec name if this is a raw AAC stream.
18600
18601 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
18602
18603         * sys/directdraw:
18604         * sys/directsound:
18605           sinks are now using GST_RANK_PRIMARY to be used with autodectection
18606         * win32/vs6:
18607           project files updated to fix some bugs
18608         * win32/vs7:
18609         * win32/vs8:
18610           vs7 and vs8 project files added
18611         
18612 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18613
18614         * ext/xvid/gstxviddec.c: (gst_xviddec_chain):
18615           Declare variable at the beginning of the block and make gcc-2.9x
18616           happy (fixes #333283; patch by: Jens Granseuer).
18617
18618 2006-03-03  Edward Hervey  <edward@fluendo.com>
18619
18620         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_parse_trak):
18621         Use GST_WARNING instead of GST_ERROR for all the too short/long atoms
18622         when parsing.
18623         Also let's be a bit less vulgar in our warning messages :)
18624
18625 2006-02-28  Tim-Philipp Müller  <tim at centricular dot net>
18626
18627         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18628           Can't divide through zero (suppress warning in case of
18629           stream with one single still picture) (see #327083)
18630
18631 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18632
18633         * sys/glsink/glimagesink.c: It doesn't seem we need GLU.h
18634
18635 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18636
18637         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
18638         (qtdemux_parse_trak), (qtdemux_video_caps):
18639           Add support for palettised Apple SMC videos (#327075, based on
18640           patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>).
18641
18642 2006-02-24  Michael Smith  <msmith@fluendo.com>
18643
18644         * autogen.sh:
18645           Allow automake 1.9
18646
18647 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18648
18649         * ext/neon/gstneonhttpsrc.c:
18650         Changed property name from "uri" to "location" 
18651
18652 2006-02-22  Jan Schmidt  <thaytan@mad.scientist.com>
18653
18654         * configure.ac:
18655         * sys/glsink/Makefile.am:
18656         Merge patch from #317048 for building on Cygwin. Patch by 
18657         Cygwin Ports maintainer.
18658         * sys/glsink/glimagesink.c: (gst_glimage_sink_init_display):
18659         Move normal debug output to LOG level not ERROR.
18660
18661 2006-02-19  Jan Gerber  <j@bootlab.org>
18662
18663         Reviewed by : Edward Hervey <edward@fluendo.com>
18664
18665         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
18666           Add 'dvsd' and 'dv25' to list of possible fourcc values for DV Video.
18667           Add image/png for fourcc 'png '
18668  
18669 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
18670
18671         * configure.ac:
18672           Surely this is supposed to be >= a.b, not == a.b
18673
18674 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18675
18676         * configure.ac:
18677         * sys/Makefile.am:
18678         * sys/ximagesrc/Makefile.am:
18679         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
18680         (gst_ximagesrc_open_display), (gst_ximagesrc_start),
18681         (gst_ximagesrc_stop), (gst_ximagesrc_unlock),
18682         (gst_ximagesrc_recalc), (composite_pixel),
18683         (gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
18684         (gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
18685         (gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
18686         (gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
18687         (gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
18688         (gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
18689         (gst_ximagesrc_init), (plugin_init):
18690         * sys/ximagesrc/ximagesrc.h:
18691         * sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
18692         (ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
18693         (ximageutil_xcontext_clear),
18694         (ximageutil_calculate_pixel_aspect_ratio),
18695         (gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
18696         (gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
18697         (gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
18698         (gst_ximageutil_ximage_destroy):
18699         * sys/ximagesrc/ximageutil.h:
18700
18701         Port ximagesrc to 0.10 (Closes #304795)
18702
18703 2006-02-20  Edgard Lima <edgard.lima@indt.org.br>
18704
18705         * gst/freeze/gstfreeze.c:
18706         * gst/freeze/gstfreeze.h:
18707         Some event handling added by Renato Filho <renato.filho@indt.org.br>
18708
18709 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18710
18711         * configure.ac:
18712         Back to CVS nano
18713
18714 === release 0.10.1 ===
18715
18716 2006-02-20  Jan Schmidt <thaytan@mad.scientist.com>
18717
18718         * configure.ac:
18719           releasing 0.10.1, "Slimy - yet satisfying"
18720
18721 2006-02-19  Jan Schmidt <thaytan@mad.scientist.com>
18722
18723         * configure.ac:
18724           Release 0.10.0.3 - pre-release for 0.10.1
18725
18726 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
18727
18728         * ext/bz2/gstbz2.c:
18729         * ext/bz2/gstbz2dec.c:
18730         * ext/bz2/gstbz2dec.h:
18731         * ext/bz2/gstbz2enc.c:
18732         * ext/bz2/gstbz2enc.h:
18733           Add proper copyright headers identifying Lutz Müller
18734           as the author and copyright holder (#331600).
18735
18736 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18737
18738         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
18739           Don't GST_LOG timestamps from nonexistent index
18740           entries (#331582).
18741
18742 2006-02-17  Edward Hervey  <edward@fluendo.com>
18743
18744         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header):
18745         Check that the size of the returned buffer is of the correct size
18746         because the parser assumes that.
18747         Fixes #331543.
18748
18749 2006-02-17  Jan Schmidt <thaytan@mad.scientist.com>
18750
18751         * configure.ac:
18752           Release 0.10.0.2 - pre-release for 0.10.1
18753
18754 2006-02-16  Edward Hervey  <edward@fluendo.com>
18755
18756         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event),
18757         (gst_qtdemux_loop), (qtdemux_sink_activate_pull):
18758         Don't stop the task if the pad isn't linked.
18759
18760 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
18761
18762         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain):
18763           It appears 100% equals 1/1 and not 100/1 ...
18764
18765 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
18766
18767         * gst/qtdemux/qtdemux.c: (gst_qtdemux_post_buffering),
18768         (gst_qtdemux_chain):
18769           When buffering MDAT data, show the user something is
18770           happening by posting 'buffering' messages on the bus.
18771
18772 2006-02-14  Edward Hervey  <edward@fluendo.com>
18773
18774         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18775         (gst_qtdemux_handle_src_query), (gst_qtdemux_change_state),
18776         (next_entry_size), (gst_qtdemux_chain):
18777         * gst/qtdemux/qtdemux.h:
18778         Make push-based work if mdat atom is before moov atom.
18779         Don't answer duration query. This should be transformed into replying
18780         FALSE to seek events.
18781
18782 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18783
18784         * ext/libmms/gstmms.c: (gst_mms_class_init), (gst_mms_create),
18785         (gst_mms_start):
18786           Return FLOW_UNEXPECTED on EOS, not FLOW_ERROR. Also, no need to
18787           push our own EOS event on EOS, the base class will do that for us;
18788           fix bogus query code; post semi-decent errors on the bus when an
18789           error occurs in ::start(), otherwise the user will get to see
18790           whatever cryptic default message GstBaseSrc comes up with.
18791
18792 2006-02-14  Andy Wingo  <wingo@pobox.com>
18793
18794         * sys/glsink/glimagesink.c (gst_glimage_sink_init): Come on
18795         schleef, don't break me gst-inspect -a.
18796
18797 2006-02-14  Edward Hervey  <edward@fluendo.com>
18798
18799         * gst/qtdemux/qtdemux.c: (next_entry_size), (gst_qtdemux_chain):
18800         Handle the case where data atoms are before moov atoms in push-based mode.
18801         Errors out gracefully.
18802
18803 2006-02-13  Edward Hervey  <edward@fluendo.com>
18804
18805         * gst/qtdemux/Makefile.am:
18806         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18807         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
18808         (extract_initial_length_and_fourcc),
18809         (gst_qtdemux_loop_state_header), (gst_qtdemux_loop_state_movie),
18810         (gst_qtdemux_loop_header), (next_entry_size), (gst_qtdemux_chain),
18811         (qtdemux_sink_activate), (qtdemux_sink_activate_pull),
18812         (qtdemux_sink_activate_push), (qtdemux_parse_trak):
18813         * gst/qtdemux/qtdemux.h:
18814         QtDemux can now work push-based.
18815         It still needs some love for seeking.
18816
18817 2006-02-13  Edgard Lima  <edgard.lima@indt.org.br>
18818
18819         * configure.ac:
18820         * gst/freeze/Makefile.am:
18821         * gst/freeze/gstfreeze.c:
18822         * gst/freeze/gstfreeze.h:
18823         * gst/freeze/FAQ:
18824         freeze plugin ported to 0.10 by
18825         Renato Filho <renato.filho@indt.org.br>
18826
18827 2006-02-10  Tim-Philipp Müller  <tim at centricular dot net>
18828
18829         * configure.ac:
18830         * gst/cdxaparse/Makefile.am:
18831         * gst/cdxaparse/gstcdxaparse.c:
18832         * gst/cdxaparse/gstcdxaparse.h:
18833           Port cdxaparse, makes VCD playback work.
18834
18835 2006-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18836
18837         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18838         (qtdemux_parse_trak):
18839           use the correct variable to check if we can calculate
18840           the last chunk.  Looks like an obvious bug, and makes
18841           the dump of offsets comparable to other tools
18842
18843 2006-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18844
18845         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18846         (qtdemux_parse_trak):
18847           clean up some debugging, using _OBJECT, moving recurring
18848           messages to LOG level
18849
18850 2006-02-06  Edgard Lima <edgard.lima@indt.org.br>
18851
18852         * configure.ac:
18853         * ext/neon/gstneonhttpsrc.c:
18854         Now it uses libneon 0.25.5 that supports shoutcast.
18855
18856 2006-02-06  Lutz Mueller <lutz@topfrose.de>
18857
18858         Reviewed by: Edward Hervey <edward@fluendo.com>
18859         
18860         * ext/bz2/gstbz2enc.c: Accepd "ANY" caps. Use "x-bzip" instead of
18861         "x-bz2".
18862         * ext/bz2/gstbz2dec.c: Use "x-bzip" instead of "x-bz2". Initial
18863         caps are "ANY".
18864         (gst_bz2dec_chain): Configure the source pad if we can figure out
18865         the mime type of the decompressed data.
18866         (gst_bz2dec_[get,set]_property):
18867         (gst_bz2dec_class_init: New property "first_buffer_size".
18868         
18869
18870 2006-02-06  Wim Taymans  <wim@fluendo.com>
18871
18872         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_query),
18873         (gst_qtdemux_handle_src_event), (gst_qtdemux_loop_header),
18874         (qtdemux_inflate), (qtdemux_parse), (qtdemux_parse_trak),
18875         (qtdemux_parse_udta), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18876         (qtdemux_tag_add_gnre), (gst_qtdemux_handle_esds),
18877         (qtdemux_video_caps), (qtdemux_audio_caps):
18878         * gst/qtdemux/qtdemux.h:
18879         Some QT demux loving.
18880         Handle seeking in a less broken way.
18881         Fix AMR caps to match the AMR decoder.
18882         Set first timestamp on AMR samples to 0 for now.
18883         Remove some \n in DEBUG strings.
18884         Use _scale_int for maximum precision.
18885
18886 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18887
18888         * gst/apetag/Makefile.am:
18889         * gst/apetag/apedemux.c:
18890         * gst/apetag/apedemux.h:
18891         * gst/apetag/apetag.c:
18892           Remove old files, apetag is in gst-plugins-good now.
18893
18894 2006-02-06  Andy Wingo  <wingo@pobox.com>
18895
18896         * ext/bz2/gstbz2enc.c (gst_bz2enc_class_init): 
18897         * ext/bz2/gstbz2dec.c (gst_bz2dec_class_init): No need to init
18898         parent_class, the boilerplate does it for you.
18899
18900 2006-02-05  Lutz Mueller <lutz@topfrose.de>
18901
18902         reviewed by: Andy Wingo <wingo@pobox.com>
18903
18904         * configure.ac:
18905         * ext/Makefile.am: Hook it up.
18906         * ext/bz2/gstbz2.c:
18907         * ext/bz2/gstbz2dec.h:
18908         * ext/bz2/gstbz2dec.c:
18909         * ext/bz2/gstbz2enc.h:
18910         * ext/bz2/gstbz2enc.c: New plugin, implements bz2 encoding and
18911         decoding (#303167).
18912         
18913 2006-01-30  Andy Wingo  <wingo@pobox.com>
18914
18915         * sys/glsink/Makefile.am (libgstglimagesink_la_LIBADD) 
18916         (libgstglimagesink_la_CFLAGS): Add PLUGINS_BASE cflags and libs.
18917
18918 2006-01-29  Tim-Philipp Müller  <tim at centricular dot net>
18919
18920         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_setcaps),
18921         (gst_wavpack_dec_base_init), (gst_wavpack_dec_dispose),
18922         (gst_wavpack_dec_class_init), (gst_wavpack_dec_sink_event),
18923         (gst_wavpack_dec_init), (gst_wavpack_dec_format_samples),
18924         (gst_wavpack_dec_chain), (gst_wavpack_dec_plugin_init):
18925           Add debug category, use boilerplate macros, fix handling
18926           of widths of 32 bits.
18927
18928         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
18929         (gst_wavpack_parse_dispose), (gst_wavpack_parse_class_init),
18930         (gst_wavpack_parse_index_get_last_entry),
18931         (gst_wavpack_parse_index_get_entry_from_sample),
18932         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
18933         (gst_wavpack_parse_src_query),
18934         (gst_wavpack_parse_scan_to_find_sample),
18935         (gst_wavpack_parse_send_newsegment),
18936         (gst_wavpack_parse_handle_seek_event),
18937         (gst_wavpack_parse_src_event), (gst_wavpack_parse_init),
18938         (gst_wavpack_parse_get_upstream_length),
18939         (gst_wavpack_parse_pull_buffer),
18940         (gst_wavpack_parse_create_src_pad), (gst_wavpack_parse_loop),
18941         (gst_wavpack_parse_change_state),
18942         (gst_wavepack_parse_sink_activate),
18943         (gst_wavepack_parse_sink_activate_pull),
18944         (gst_wavpack_parse_plugin_init):
18945         * ext/wavpack/gstwavpackparse.h:
18946           Rewrite a bit, mostly to fix flow logic and to make seeking work.
18947           Fix buffer/event refcounting. Add some debug statements. Add
18948           width of 32 to source pad template caps. Use boilerplate macros.
18949
18950 2006-01-28  Edward Hervey  <edward@fluendo.com>
18951
18952         * sys/glsink/Makefile.am:
18953         glimagesink.h is dead, long live glimagesink.h
18954
18955 2006-01-27  David Schleef  <ds@schleef.org>
18956
18957         * configure.ac:
18958         * sys/Makefile.am:
18959         * sys/glsink/Makefile.am:
18960         * sys/glsink/glimagesink.c:
18961         * sys/glsink/glimagesink.h:
18962           revival of glimagesink.  Kind of works.
18963
18964 2006-01-27  Tim-Philipp Müller  <tim at centricular dot net>
18965
18966         * ext/faad/gstfaad.c: (gst_faad_setcaps),
18967         (gst_faad_chanpos_to_gst), (gst_faad_sync), (gst_faad_chain):
18968           Handle 'framed' field in caps; Port syncing for raw streams
18969           from 0.8 branch (for AAC+ radio streams) (#328854, #328721).
18970
18971 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18972
18973         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_supported),
18974         (gst_sdlvideosink_xoverlay_set_xwindow_id),
18975         (gst_sdlvideosink_deinitsdl), (gst_sdlv_process_events),
18976         (gst_sdlvideosink_event_thread), (gst_sdlvideosink_initsdl),
18977         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
18978         (gst_sdlvideosink_setcaps), (gst_sdlvideosink_show_frame),
18979         (gst_sdlvideosink_change_state),
18980         (gst_sdlvideosink_navigation_send_event):
18981         * ext/sdl/sdlvideosink.h:
18982           Fix output stride copying, so that it displays correctly on 
18983           framebuffer devices that don't match our implict GStreamer stride
18984           arrangement.
18985
18986           Fix locking things. Offer XOverlay only when SDL is running against
18987           X. Make non-scaled (and ugly) embedding work via X Overlay. It can't
18988           actually match the embedded window size because there's no way to
18989           figure out what size that should be from the XOverlay interface.
18990           See comment in sdlvideosink.c
18991
18992 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18993
18994         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18995           Fix wrong memcpy source pointer.
18996
18997 2006-01-25  Edgard Lima <edgard.lima@indt.org.br>
18998
18999         * ext/libmms/gstmms.c: (gst_mms_finalize):
19000         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_finalize):
19001         Just chain up finalize calls (calling parent_class->finalize).
19002
19003 2006-01-25  Edgard Lima <edgard.lima@indt.org.br>
19004
19005         * ext/libmms/gstmms.c: (gst_mms_finalize), (gst_mms_set_property),
19006         (gst_mms_get_property), (gst_mms_src_query), (gst_mms_class_init):
19007         Finalize method has been created and others small changes.
19008
19009 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
19010
19011         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
19012         (gst_musepackdec_class_init), (gst_musepackdec_init),
19013         (gst_musepackdec_send_newsegment),
19014         (gst_musepackdec_handle_seek_event), (gst_musepackdec_src_event),
19015         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
19016         (gst_musepack_stream_init), (gst_musepackdec_sink_activate_pull),
19017         (gst_musepackdec_loop), (gst_musepackdec_change_state):
19018         * ext/musepack/gstmusepackdec.h:
19019         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
19020         (gst_musepack_reader_seek), (gst_musepack_reader_tell),
19021         (gst_musepack_reader_get_size):
19022         * ext/musepack/gstmusepackreader.h:
19023           Fix seeking in musepack files (it's still incredibly slow, but I
19024           don't think that is our plugin's fault). Clean up code and get
19025           rid of old cruft. Post tags with all kind of neat information like
19026           replay gain and such on the bus, if it is available. Add a
19027           'musepackdec' debug category.
19028
19029 2006-01-24  Edward Hervey  <edward@fluendo.com>
19030
19031         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19032         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
19033         More coherent framerate setting on caps.
19034         If sample_size is available, use that for the samples' duration in
19035         the index. This enables single frame streams to work (and I imagine
19036         fixes some other cases).
19037         Tested on testsuite, no regression.
19038
19039 2006-01-23  Edward Hervey  <edward@fluendo.com>
19040
19041         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
19042         (qtdemux_video_caps), (qtdemux_audio_caps):
19043         Added codec recognition for:
19044         _ VP31 : video/x-vp3
19045         _ AVDJ : image/jpeg
19046         _ dvcp, dvc  : video/x-dv, systemstream=(boolean)false
19047         _ 0x6d730017 : audio/x-adpcm, layout=(string)quicktime
19048
19049 2006-01-21  David Schleef  <ds@schleef.org>
19050
19051         * configure.ac:
19052         * ext/swfdec/gstswfdec.c: Update from swfdec.
19053
19054 2006-01-21  Tim-Philipp Müller  <tim at centricular dot net>
19055
19056         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
19057         (qtdemux_audio_caps):
19058           'twos' and 'sowt' fourcc can be 16bit or 8bit audio.
19059           Fix 8bit case (#327133, based on patch by: Fabrizio
19060           Gennari <fabrizio dot ge at tiscali dot it>).
19061           Also, "G_LITTLE_ENDIAN" and "G_BIG_ENDIAN" are not
19062           valid literals for endianness in caps strings,
19063           only "LITTLE_ENDIAN" and "BIG_ENDIAN" are valid. 
19064
19065 2006-01-20  Edgard Lima <edgard.lima@indt.org.br>
19066
19067         * ext/ivorbis/vorbisfile.c:
19068         * ext/neon/gstneonhttpsrc.c:
19069         Fixed state transictions PLAYING->NULL->PLAYING.
19070         
19071 2006-01-19  Edgard Lima <edgard.lima@indt.org.br>
19072
19073         * ext/tremor/vorbisfile.c:
19074         Some minor improvements on log messages.
19075
19076 2006-01-18  Edgard Lima <edgard.lima@indt.org.br>
19077
19078         * gst/qtdemux/qtdemux.c: qtdemux_parse_trak:
19079         Ronald's patch applied. see bug #326318.
19080
19081 2006-01-17  Tim-Philipp Müller  <tim at centricular dot net>
19082
19083         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
19084         (gst_qtdemux_send_event), (gst_qtdemux_handle_src_event),
19085         (gst_qtdemux_change_state), (gst_qtdemux_loop_header):
19086         * gst/qtdemux/qtdemux.h:
19087           Fix seeking for quicktime files. Could still use some more
19088           love and sophistication.
19089
19090 2006-01-16  Edgard Lima <edgard.lima@indt.org.br>
19091
19092         * ext/libmms/gstmms.c: gst_mms_init:
19093         * ext/neon/gstneonhttpsrc.c: gst_neonhttp_src_init:
19094         * ext/sdl/sdlaudiosink.c: gst_sdlaudio_sink_dispose:
19095         Removed gst_base_src_set_live from mms and neon, and now calling
19096         parent_class->dispose in dispose on sdlaudio.
19097         
19098 2006-01-11  Edgard Lima <edgard.lima@indt.org.br>
19099
19100         * ext/sdl/sdlvideosink.c:
19101         Now implementing navigation interface and using
19102         GST_BOILER_PLATE_FULL.
19103         
19104 2006-01-11  Christian Schaller  <christian@fluendo.com>
19105
19106         Remove SunAudio plugin as Brian's new one is in -good
19107
19108         * sys/Makefile.am:
19109         * sys/sunaudio/Makefile.am:
19110         * sys/sunaudio/gstsunaudio.c:
19111         * sys/sunaudio/gstsunaudiosrc.c:
19112         * sys/sunaudio/gstsunaudiosrc.h:
19113         * sys/sunaudio/gstsunelement.c:
19114         * sys/sunaudio/gstsunelement.h:
19115         * sys/sunaudio/gstsunmixer.c:
19116         * sys/sunaudio/gstsunmixer.h:
19117
19118 2006-01-11  Edgard Lima <edgard.lima@indt.org.br>
19119
19120         * ext/sdl/sdlaudiosink.c:
19121         Replaced wrong style code by GST_BOILERPLATE.
19122         
19123 2006-01-11  Fabrizio Gennari <fabrizio.ge@tiscali.it>
19124
19125         reviewed by: Edward Hervey  <edward@fluendo.com>
19126
19127         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
19128         Add support for Indeo3 video in Quicktime files.
19129         Closes #326524
19130
19131 2006-01-09  Edgard Lima <edgard.lima@indt.org.br>
19132
19133         * configure.ac:
19134         * ext/sdl/Makefile.am:
19135         * ext/sdl/gstsdl.c:
19136         * ext/sdl/sdlaudiosink.c:
19137         * ext/sdl/sdlaudiosink.h:
19138         * ext/sdl/sdlvideosink.c:
19139         Created new element, sdlaudiosink.
19140         
19141 2006-01-05  Sebastien Moutte  <sebastien@moutte.net>
19142
19143         * added sys/directdraw
19144         * added sys/directsound
19145         * added win32/vs6/gst_plugins_bad.dsw
19146         * added win32/vs6/libgstdirectsound.dsp
19147         * added win32/vs6/libgstdirectdraw.dsp
19148         * added win32/common/config.h
19149         
19150 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19151
19152         * gst/games/gstpuzzle.c: (plugin_init):
19153           call oil_init() when using liboil
19154
19155 2006-01-04  Edgard Lima <edgard.lima@indt.org.br>
19156
19157         * ext/neon/gstneonhttpsrc.c:
19158         * ext/neon/gstneonhttpsrc.h:
19159         Some improvements in cancellation and debug messages.
19160                         
19161 2006-01-04  Edgard Lima <edgard.lima@indt.org.br>
19162
19163         * ext/neon/gstneonhttpsrc.c:
19164         * ext/neon/gstneonhttpsrc.h:
19165         Removed not need thread and changed to push out blocksize bytes.
19166         
19167 2005-12-28  Edgard Lima <edgard.lima@indt.org.br>
19168
19169         * configure.ac:
19170         * ext/Makefile.am
19171         * ext/neon:
19172         * ext/neon/Makefile.am:
19173         * ext/neon/gstneonhttpsrc.c:
19174         * ext/neon/gstneonhttpsrc.h:
19175         Created new element neonhttpsrc.
19176
19177 2005-12-19  Edward Hervey  <edward@fluendo.com>
19178
19179         * ext/swfdec/gstswfdec.c: (gst_swfdec_class_init),
19180         (gst_swfdec_chain), (gst_swfdec_render):
19181         Add debugging category and return GstFlowReturn in the right places
19182         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link):
19183         Get something from the peer pad once we've checked if there is a peer pad.
19184         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
19185         (qtdemux_tree_get_child_by_type), (qtdemux_parse_trak),
19186         (qtdemux_video_caps):
19187         Couple of fixes
19188
19189 2005-12-19  Edgard Lima <edgard.lima@indt.org.br>
19190
19191         * ext/divx/Makefile.am:
19192         just a small fix. I have to pay more attention when commiting ;-)
19193
19194 2005-12-19  Edgard Lima <edgard.lima@indt.org.br>
19195
19196         * configure.ac:
19197         * ext/Makefile.am:
19198         * ext/divx/Makefile.am:
19199         * ext/divx/gstdivxdec.c:
19200         * ext/divx/gstdivxdec.h:
19201         * ext/divx/gstdivxenc.c:
19202         * ext/divx/gstdivxenc.h:
19203         divxdec and divxenc ported to 0.10
19204         
19205 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19206
19207         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19208         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19209         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices),
19210         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19211         (gst_dfbvideosink_can_blit_from_format),
19212         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19213         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc),
19214         (gst_dfbsurface_finalize),
19215         (gst_dfbvideosink_navigation_send_event),
19216         (gst_dfbvideosink_update_colorbalance),
19217         (gst_dfbvideosink_set_property), (gst_dfbvideosink_init): Some
19218         more refactoring, handle exotic DirectFB row stride.
19219
19220 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19221
19222         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19223         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt: Updates.
19224         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19225         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices),
19226         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19227         (gst_dfbvideosink_can_blit_from_format),
19228         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19229         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc),
19230         (gst_dfbsurface_finalize),
19231         (gst_dfbvideosink_navigation_send_event),
19232         (gst_dfbvideosink_update_colorbalance),
19233         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19234         (gst_dfbvideosink_finalize), (gst_dfbvideosink_init),
19235         (gst_dfbvideosink_class_init):
19236         * ext/directfb/dfbvideosink.h: Implement pixel-aspect-ratio.
19237         This should work both for hardware accelerated scaling and
19238         reverse caps negotiation with a scaling element.
19239
19240 2005-12-17  Julien MOUTTE  <julien@moutte.net>
19241
19242         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19243         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
19244         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19245         * docs/plugins/gst-plugins-bad-plugins.args:
19246         * docs/plugins/gst-plugins-bad-plugins.interfaces:
19247         * docs/plugins/gst-plugins-bad-plugins.signals:
19248         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19249         * docs/plugins/inspect/plugin-qtdemux.xml:
19250         * docs/plugins/inspect/plugin-sdlvideosink.xml:
19251         * docs/plugins/inspect/plugin-speed.xml:
19252         * docs/plugins/inspect/plugin-tta.xml: Updates.
19253         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19254         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_vmodes),
19255         (gst_dfbvideosink_enum_devices), (gst_dfbvideosink_setup),
19256         (gst_dfbvideosink_cleanup),
19257         (gst_dfbvideosink_can_blit_from_format),
19258         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19259         (gst_dfbvideosink_setcaps), (gst_dfbvideosink_show_frame),
19260         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19261         (gst_dfbvideosink_interface_supported),
19262         (gst_dfbvideosink_navigation_send_event),
19263         (gst_dfbvideosink_update_colorbalance),
19264         (gst_dfbvideosink_colorbalance_list_channels),
19265         (gst_dfbvideosink_colorbalance_set_value),
19266         (gst_dfbvideosink_colorbalance_get_value),
19267         (gst_dfbvideosink_colorbalance_init),
19268         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19269         (gst_dfbvideosink_init), (gst_dfbvideosink_class_init):
19270         * ext/directfb/dfbvideosink.h: Implement vertical sync and 
19271         color balance interface.
19272
19273 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19274
19275         * ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio):
19276         * gst/festival/gstfestival.c: (socket_receive_file_to_buff):
19277         * gst/vbidec/vbidata.c:
19278         * gst/vbidec/vbidata.h:
19279         * gst/vbidec/vbiscreen.c:
19280         * sys/dxr3/ac3_padder.c:
19281           don't use doc comments for non-docs
19282           change some char* into char[]
19283
19284 2005-12-16  Julien MOUTTE  <julien@moutte.net>
19285
19286         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19287         (gst_dfbvideosink_init): Always prefer the primary layer.
19288
19289 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19290
19291         * ext/wavpack/gstwavpackdec.c:
19292           Oops, remove trailing comma from caps string.
19293
19294 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19295
19296         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link):
19297         * ext/wavpack/gstwavpackparse.c:
19298           Wavpack supports samplerates from 6-192kHz, fix pad template
19299           caps (fixes #322973; patch by: gcocatre@gmail.com). Also
19300           remove buffer-frames from caps, they are gone in 0.10.
19301
19302 2005-12-15  Edgard Lima <edgard.lima@indt.org.br>
19303
19304         * ext/xvid/Makefile.am:
19305         * ext/xvid/gstxviddec.c:
19306         * ext/xvid/gstxvidenc.c:
19307         Fixed some mem-leaks in xvid.
19308
19309 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19310
19311         * configure.ac:
19312         * ext/Makefile.am:
19313         * ext/xvid/gstxvid.c:
19314         * ext/xvid/gstxvid.h:
19315         * ext/xvid/gstxviddec.c:
19316         * ext/xvid/gstxviddec.h:
19317         * ext/xvid/gstxvidenc.c:
19318         * ext/xvid/gstxvidenc.h:
19319         xviddec and xvideenc ported to 0.10
19320                 
19321
19322 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19323
19324         * configure.ac:
19325         * ext/Makefile.am:
19326         * ext/dts/Makefile.am:
19327         * ext/dts/gstdtsdec.c:
19328         * ext/dts/gstdtsdec.h:
19329         dtsdec ported to 0.10
19330
19331 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19332
19333         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
19334         * ext/libmms/gstmms.c: (gst_mms_src_query), (gst_mms_create):
19335         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_src_query),
19336         (gst_musepackdec_loop):
19337         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_link),
19338         (gst_swfdec_src_query):
19339         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query):
19340           GstObjects must be unref'ed with gst_object_unref() instead of
19341           g_object_unref(), otherwise things break for GLib-2.6 users.
19342
19343 2005-12-12  David Schleef  <ds@schleef.org>
19344
19345         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_get_type),
19346         (gst_swfdecbuffer_class_init), (gst_swfdecbuffer_finalize),
19347         (gst_swfdec_buffer_from_swf), (gst_swfdec_render): Add a subclass
19348         of GstBuffer that wraps SwfdecBuffers.  Fix a massive memleak
19349         because the video buffers previously never got freed.
19350
19351 2005-12-11  Edgard Lima <edgard.lima@indt.org.br>
19352
19353         * ext/libmms/gstmms.c:
19354         Just removed a weird printf ;-)
19355
19356 2005-12-11  Edgard Lima <edgard.lima@indt.org.br>
19357
19358         * configure.ac:
19359         * ext/libmms/gstmms.c:
19360         * ext/libmms/gstmms.h:
19361         Added suport to mmsh. There's still a sucks msg "ERROR: Pipeline cant
19362         PREROOL..." to be fixed.
19363
19364 2005-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
19365
19366         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst),
19367         (gst_faad_update_caps):
19368           Assume that an unknown channel mapping with 2 channels
19369           is stereo and play it that way instead of erroring.
19370
19371         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19372         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
19373           Handle e.g. jpeg streams with 0 duration frames as having 0 framerate.
19374           Debug fixes. Some 64 bit variable fixes
19375
19376 2005-12-09  Edgard Lima <edgard.lima@indt.org.br>
19377
19378         * configure.ac:
19379         * ext/Makefile.am:
19380         * ext/swfdec/Makefile.am:
19381         * ext/swfdec/gstswfdec.c:
19382         * ext/swfdec/gstswfdec.h:
19383         swfdec Ported to 0.10.
19384
19385 2005-12-07  Edward Hervey  <edward@fluendo.com>
19386
19387         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19388         (gst_qtdemux_add_stream):
19389         Memleak fixes.
19390         Send out EOS for valid reasons (couldn't pull_range() from upstream
19391         for example).
19392
19393 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19394
19395         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19396         * ext/audiofile/gstafparse.h:
19397         * ext/audiofile/gstafsink.c: (gst_afsink_chain):
19398         * ext/audiofile/gstafsink.h:
19399         * ext/audiofile/gstafsrc.c: (gst_afsrc_close_file):
19400         * ext/audiofile/gstafsrc.h:
19401         * ext/cdaudio/gstcdaudio.c:
19402         * ext/divx/gstdivxenc.c:
19403         * ext/dts/gstdtsdec.h:
19404         * ext/faac/gstfaac.h:
19405         * ext/ivorbis/vorbisenc.h:
19406         * ext/ivorbis/vorbisfile.c:
19407         * ext/musepack/gstmusepackdec.h:
19408         * ext/nas/nassink.c:
19409         * ext/snapshot/gstsnapshot.c:
19410         * ext/sndfile/gstsf.h:
19411         * ext/tarkin/gsttarkindec.h:
19412         * ext/tarkin/gsttarkinenc.h:
19413         * ext/xine/gstxine.h:
19414         * ext/xine/xinecaps.c:
19415         * ext/xvid/gstxvid.h:
19416         * gst-libs/gst/play/play.h:
19417         * gst/apetag/apedemux.h:
19418         * gst/cdxaparse/gstcdxaparse.h:
19419         * gst/cdxaparse/gstcdxastrip.h:
19420         * gst/colorspace/yuv2rgb.c:
19421         * gst/colorspace/yuv2rgb.h:
19422         * gst/equalizer/gstiirequalizer.c:
19423         * gst/festival/gstfestival.h:
19424         * gst/games/gstpuzzle.c:
19425         * gst/games/gstvideoimage.c:
19426         * gst/games/gstvideoimage.h:
19427         * gst/modplug/gstmodplug.h:
19428         * gst/modplug/libmodplug/it_defs.h:
19429         * gst/modplug/libmodplug/modplug.h:
19430         * gst/modplug/libmodplug/sndfile.h:
19431         * gst/modplug/libmodplug/stdafx.h:
19432         * gst/mpeg1sys/buffer.c:
19433         * gst/mpeg1sys/gstmpeg1systemencode.h:
19434         * gst/mpeg1sys/main.h:
19435         * gst/mpeg1sys/systems.c:
19436         * gst/mpeg1videoparse/gstmp1videoparse.h:
19437         * gst/mpeg2sub/gstmpeg2subt.h:
19438         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19439         * gst/mpegaudioparse/gstmpegaudioparse.h:
19440         * gst/multifilesink/gstmultifilesink.h:
19441         * gst/overlay/gstoverlay.h:
19442         * gst/qtdemux/qtdemux.c:
19443         * gst/qtdemux/qtdemux.h:
19444         * gst/rtjpeg/RTjpeg.c: (RTjpeg_dctY), (RTjpeg_idct):
19445         * gst/rtjpeg/RTjpeg.h:
19446         * gst/tta/crc32.h:
19447         * gst/tta/filters.h:
19448         * gst/tta/ttadec.h:
19449         * gst/videodrop/gstvideodrop.h:
19450         * sys/cdrom/gstcdplayer.h:
19451         * sys/cdrom/gstcdplayer_ioctl.c:
19452         * sys/cdrom/gstcdplayer_ioctl.h:
19453         * sys/cdrom/gstcdplayer_ioctl_bsd.h:
19454         * sys/cdrom/gstcdplayer_ioctl_irix.h:
19455         * sys/cdrom/gstcdplayer_ioctl_solaris.h:
19456         * sys/dxr3/dxr3audiosink.c:
19457         * sys/dxr3/dxr3audiosink.h:
19458         * sys/dxr3/dxr3spusink.c:
19459         * sys/dxr3/dxr3spusink.h:
19460         * sys/dxr3/dxr3videosink.c:
19461         * sys/dxr3/dxr3videosink.h:
19462         * sys/qcam/dark.c:
19463         * sys/qcam/gstqcamsrc.c:
19464         * sys/v4l2/gstv4l2colorbalance.h:
19465         * sys/v4l2/gstv4l2element.h:
19466         * sys/v4l2/gstv4l2src.h:
19467         * sys/v4l2/gstv4l2tuner.h:
19468         * sys/v4l2/gstv4l2xoverlay.h:
19469         * sys/v4l2/v4l2_calls.c:
19470         * sys/v4l2/v4l2_calls.h:
19471         * sys/v4l2/v4l2src_calls.c:
19472         * sys/v4l2/v4l2src_calls.h:
19473         * sys/vcd/vcdsrc.h:
19474           expand tabs
19475
19476 === release 0.10.0 ===
19477
19478 2005-12-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19479
19480         * configure.ac:
19481           releasing 0.10.0, "Camembert"
19482
19483 2005-12-05  Andy Wingo  <wingo@pobox.com>
19484
19485         * ext/faac/gstfaac.c: (gst_faac_sink_event), (gst_faac_chain):
19486         * ext/faad/gstfaad.c: (gst_faad_chain):
19487         * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_chain):
19488         * ext/lcs/gstcolorspace.c: (gst_colorspace_chain):
19489         * ext/xine/xineinput.c: (gst_xine_input_get):
19490         * gst/colorspace/gstcolorspace.c: (gst_colorspace_chain):
19491         * gst/speed/gstspeed.c: (speed_chain):
19492         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain): Update for
19493         alloc_buffer changes.
19494
19495 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19496
19497         * ext/Makefile.am:
19498           Add missing $(WAVPACK_DIR) (#322962).
19499
19500 === release 0.9.7 ===
19501
19502 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19503
19504         * configure.ac:
19505           releasing 0.9.7, "Arrigato Gasuimas Skebisan"
19506
19507 2005-11-28  Edgard Lima <edgard.lima@indt.org.br>
19508
19509         * PORTED_09:
19510         * configure.ac:
19511         * ext/Makefile.am:
19512         * ext/libmms/Makefile.am:
19513         * ext/libmms/gstmms.c:
19514         * ext/libmms/gstmms.h:
19515         libmm ported to 0.9. It works fine, but print some error messages. I
19516         ll fix them soon. Tested with  mmssrc location=mms:// ! filesink.
19517         
19518 2005-11-28  Edward Hervey  <edward@fluendo.com>
19519
19520         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
19521         Handle gracefully the consequence of "Maximum number of scalefactor
19522         bands exceeded", which results in 0 channels with samplerates of 0.
19523         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state):
19524         Do upward transitions, then call parent state_change, then do
19525         downward transitions.
19526
19527 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19528
19529         * ext/Makefile.am:
19530           alphabets, so hard to master.  Should fix distcheck.
19531
19532 2005-11-25  Edgard Lima  <edgard.lima@indt.org.br>
19533
19534         * configure.ac:
19535         * PORTED_09:
19536         * ext/Makefile.am:
19537         * ext/wavpack/Makefile.am:
19538         * ext/wavpack/gstwavpackdec.c:
19539         * ext/wavpack/gstwavpackdec.h:
19540         * ext/wavpack/gstwavpackparse.c:
19541         * ext/wavpack/gstwavpackparse.h:
19542         Wavpack ported to 0.9. No support for correction file yet.
19543
19544 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19545
19546         * ext/wavpack/Makefile.am:
19547         * ext/wavpack/gstwavpack.c: (plugin_init):
19548         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_read_header):
19549         * ext/wavpack/gstwavpackcommon.h:
19550         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link),
19551         (gst_wavpack_dec_wvclink), (gst_wavpack_dec_get_type),
19552         (gst_wavpack_dec_base_init), (gst_wavpack_dec_dispose),
19553         (gst_wavpack_dec_class_init), (gst_wavpack_dec_src_query),
19554         (gst_wavpack_dec_init), (gst_wavpack_dec_setup_context),
19555         (gst_wavpack_dec_format_samples), (gst_wavpack_dec_loop),
19556         (gst_wavpack_dec_plugin_init):
19557         * ext/wavpack/gstwavpackdec.h:
19558         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_get_type),
19559         (gst_wavpack_parse_base_init), (gst_wavpack_parse_dispose),
19560         (gst_wavpack_parse_class_init), (gst_wavpack_parse_src_query),
19561         (gst_wavpack_parse_src_event), (find_header), (find_sample),
19562         (gst_wavpack_parse_seek), (gst_wavpack_parse_init),
19563         (gst_wavpack_parse_handle_event), (gst_wavpack_parse_loop),
19564         (gst_wavpack_parse_change_state), (gst_wavpack_parse_plugin_init):
19565         * ext/wavpack/gstwavpackparse.h:
19566           put back wavpack - still needs porting
19567
19568 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19569
19570         * configure.ac: back to HEAD
19571
19572 === release 0.9.6 ===
19573
19574 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
19575
19576         * configure.ac:
19577           releasing 0.9.6, "Hot Tea"
19578
19579 2005-11-23  Julien MOUTTE  <julien@moutte.net>
19580
19581         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19582         * ext/directfb/dfb-example.c: (main):
19583         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_destroy),
19584         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_setup),
19585         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19586         (gst_dfbvideosink_change_state), (gst_dfbvideosink_get_times),
19587         (gst_dfbvideosink_bufferpool_clear),
19588         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19589         (gst_dfbvideosink_navigation_send_event),
19590         (gst_dfbvideosink_finalize), (gst_dfbvideosink_init),
19591         (gst_dfbvideosink_class_init):
19592         * ext/directfb/dfbvideosink.h: Use fraction for framerate, various
19593         fixes.
19594
19595 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19596
19597         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init),
19598         (gst_sdlvideosink_get_times), (gst_sdlvideosink_init),
19599         (gst_sdlvideosink_setcaps), (gst_sdlvideosink_change_state):
19600         * ext/sdl/sdlvideosink.h:
19601         Updates for fractional framerates and XOverlay interface changes
19602
19603 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19604
19605         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19606         (gst_qtdemux_add_stream), (qtdemux_dump_mvhd),
19607         (qtdemux_parse_trak):
19608         Convert to fractional framerates
19609
19610 2005-11-23  Edward Hervey  <edward@fluendo.com>
19611
19612         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_loop):
19613         Fix for latest API changes
19614
19615 2005-11-22  Edgard Lima <edgard.lima@indt.org.br>
19616         * configure.ac:
19617         * PORTED_09:
19618         * extt/Makefile.am:
19619         * ext/musepack/gstmusepackdec.c:
19620         * ext/musepack/gstmusepackdec.h:
19621         * ext/musepack/gstmusepackreader.c:
19622         * ext/musepack/gstmusepackreader.h:
19623         Musepackdec ported to 0.9. There is still a small problem to be
19624         solved, after the end of file, the pipeline doens't stop.
19625
19626 2005-11-22  Andy Wingo  <wingo@pobox.com>
19627
19628         * ext/faad/gstfaad.c (gst_faad_event)
19629         * ext/ivorbis/vorbisfile.c (gst_ivorbisfile_loop)
19630         * gst/qtdemux/qtdemux.c (gst_qtdemux_loop_header)
19631         * gst/speed/gstspeed.c (speed_sink_event)
19632         * gst/tta/gstttaparse.c (gst_tta_parse_src_event)
19633         (gst_tta_parse_parse_header): Run update-funcnames.
19634
19635 2005-11-21  Michael Smith <msmith@fluendo.com>
19636
19637         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_event):
19638           Don't take STREAM_LOCK in sink event handlers any more.
19639
19640 2005-11-21  Wim Taymans  <wim@fluendo.com>
19641
19642         * ext/faac/gstfaac.c: (gst_faac_sink_event):
19643         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event):
19644         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event):
19645         Fix for stream lock updates.
19646
19647 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19648
19649         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
19650           Add DX50, DIVX and DIV3 fourccs (patch by
19651           j@bootlab.org, #321903).
19652
19653 2005-11-21  Andy Wingo  <wingo@pobox.com>
19654
19655         * *.h:
19656         * *.c: Ran scripts/update-macros. Oh yes.
19657
19658 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19659
19660         * ext/directfb/dfbvideosink.c:
19661         (gst_dfbvideosink_get_format_from_caps):
19662         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create):
19663         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19664         (qtdemux_parse), (qtdemux_type_get), (qtdemux_node_dump_foreach),
19665         (qtdemux_dump_hdlr), (qtdemux_dump_dref), (qtdemux_dump_stsd),
19666         (qtdemux_dump_dcom), (qtdemux_parse_trak), (qtdemux_video_caps),
19667         (qtdemux_audio_caps):
19668         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
19669         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
19670         (gst_v4l2src_capture_init), (gst_v4l2src_get_size_limits):
19671           Update for GST_FOURCC_FORMAT API change.
19672
19673 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19674
19675         * ext/audioresample/gstaudioresample.c:
19676         * ext/polyp/polypsink.c: (gst_polypsink_sink_fixate):
19677         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_fixate):
19678         * gst/modplug/gstmodplug.cc:
19679         * sys/glsink/glimagesink.c: (gst_glimagesink_fixate):
19680         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
19681         Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
19682         (#322027)
19683
19684 2005-11-21  Edgard Lima <edgard.lima@indt.org.br>
19685
19686         * ext/Makefile.am:
19687         * ext/ivorbis/vorbisfile.c:
19688         Now it works in push-mode. Tested with gnomevfssrc location=http://..
19689         ! tremor ! alsasink. Some issues to be solved yet:
19690         1- set correct timestamps
19691         2- seek is forced to disabled in pull-mode
19692         
19693 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
19694
19695         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
19696         (gst_faac_sink_setcaps), (gst_faac_configure_source_pad),
19697         (gst_faac_chain):
19698           Set proper caps on source pad (#320532).
19699
19700         * ext/faad/gstfaad.c:
19701           Don't use gtk-doc markers for comment block.
19702
19703 2005-11-14  Andy Wingo  <wingo@pobox.com>
19704
19705         * configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better
19706         debugging, allows dll builds on windows. Fixes #316076.
19707
19708 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19709
19710         * configure.ac: back to HEAD
19711
19712 === release 0.9.5 ===
19713
19714 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
19715
19716         * configure.ac:
19717           releasing 0.9.5, "Thrice Belgian Bar"
19718
19719 2005-11-11  Michael Smith <msmith@fluendo.com>
19720
19721         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain):
19722           Make this compile on systems with broken headers. 
19723
19724 2005-11-11  Michael Smith <msmith@fluendo.com>
19725
19726         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain):
19727           Call functions with the correct API. Unfortunately, unless your
19728           distribution patches upstream, the public header file for FAAD
19729           doesn't actually declare the API accurately. So, some nastiness
19730           ensues...
19731
19732 2005-11-10  Daniel Amelang  <daniel dot amelang at gmail dot com>
19733
19734         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19735
19736         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
19737           Add support for custom genre tags.
19738
19739 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
19740
19741         * ext/tarkin/wavelet.c:
19742         * ext/tarkin/wavelet.h:
19743         * gst/mpegaudioparse/gstmpegaudioparse.c:
19744         * gst/vbidec/vbidata.c:
19745         * gst/vbidec/vbiscreen.h:
19746         * sys/dxr3/ac3_padder.c:
19747         * sys/dxr3/dxr3audiosink.c:
19748         * sys/dxr3/dxr3spusink.c:
19749         * sys/dxr3/dxr3videosink.c:
19750         * sys/qcam/dark.c:
19751           Don't use gtk-doc markers for normal comments. Fix
19752           gtk-doc formatting where required.
19753
19754 2005-11-08  Edgard Lima <edgard.lima@indt.org.br>
19755
19756         * configure.ac:
19757         * PORTED_09:
19758         * ext/Makefile.am:
19759         * ext/ivorbis/vorbis.c:
19760         * ext/ivorbis/vorbisfile.c:
19761         Ported to 0.9. Some issues to be solved yet:
19762         1- set correct timestamps
19763         2- seg fault when eos
19764         3- seek is now disabled
19765
19766 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19767
19768         * examples/Makefile.am: Cleanup non existing
19769         examples.
19770
19771 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19772
19773         * docs/plugins/inspect.stamp: Add missing files.
19774
19775 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19776
19777         * examples/Makefile.am: Make buildbot happy.
19778
19779 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19780
19781         * Makefile.am: examples in dist subdirs.
19782         * configure.ac: enable parameter for building 
19783         examples.
19784         * docs/plugins/gst-plugins-bad-plugins.args:
19785         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19786         * examples/Makefile.am: Updates.
19787
19788 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19789
19790         * Makefile.am:
19791         * autogen.sh:
19792         * configure.ac:
19793         * docs/Makefile.am:
19794         * docs/plugins/.cvsignore:
19795         * docs/plugins/Makefile.am:
19796         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
19797         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19798         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
19799         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
19800         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19801         * docs/plugins/gst-plugins-bad-plugins.args:
19802         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
19803         * docs/plugins/gst-plugins-bad-plugins.interfaces:
19804         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
19805         * docs/plugins/gst-plugins-bad-plugins.signals:
19806         * docs/plugins/gst-plugins-bad-plugins.types:
19807         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19808         * docs/version.entities.in: Enable documentation.
19809         * examples/Makefile.am:
19810         * examples/directfb/Makefile.am:
19811         * examples/directfb/decker.ttf:
19812         * examples/directfb/dfblogo.png:
19813         * examples/directfb/gstdfb.c: (myclock), (dynamic_link),
19814         (size_changed), (setup_dynamic_link), (main): Add an example
19815         application for DirectFB.
19816
19817 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19818
19819         * ext/directfb/Makefile.am: Add the example application.
19820         * ext/directfb/dfb-example.c: (get_me_out), (main):
19821         Here is an example application that runs videotestsrc for 20
19822         seconds. It's included in the documentation.
19823         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19824         (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format),
19825         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_buffer_alloc):
19826         More fixes, calculate new size of the buffer when renegotiating.
19827         This completely breaks ffmpegcolorspace but i need to discuss 
19828         that with Wim on monday. Add documentation.
19829
19830 2005-11-05  Julien MOUTTE  <julien@moutte.net>
19831
19832         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19833         (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format),
19834         (gst_dfbvideosink_getcaps): Make acceleration detection work, 
19835         better, add safety checks and ARGB support for cards that
19836         support it.
19837
19838 2005-11-04  Julien MOUTTE  <julien@moutte.net>
19839
19840         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19841         (gst_dfbvideosink_surface_destroy),
19842         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19843         (gst_dfbvideosink_center_rect), (gst_dfbvideosink_show_frame),
19844         (gst_dfbvideosink_buffer_alloc):
19845         * ext/directfb/dfbvideosink.h: Now does clipping when surface
19846         is too small, handles upstream elements that are not calling
19847         gst_pad_alloc_buffer, fixes a lot of bugs.
19848
19849 2005-11-03  Julien MOUTTE  <julien@moutte.net>
19850
19851         * ext/directfb/Makefile.am: Prepare for liboil usage.
19852         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_show_frame),
19853         (gst_dfbvideosink_buffer_alloc):  Prepare for liboil, handle
19854         rendering in external surface correctly. Will commit a neat
19855         example soon.
19856
19857 2005-11-03  Edgard Lima <edgard.lima@indt.org.br>
19858
19859         * ext/sdl/sdlvideosink.c: (SDL_WaitEventTimeout),
19860         (gst_sdlvideosink_event_thread), (gst_sdlvideosink_initsdl),
19861         (gst_sdlvideosink_change_state), (gst_sdlvideosink_deinitsdl):
19862         * ext/sdl/sdlvideosink.h:
19863         Add support to exit when 'Esc' key is pressed.
19864
19865 2005-11-02  Julien MOUTTE  <julien@moutte.net>
19866
19867         * configure.ac: Requires DirectFB 0.9.24
19868
19869 2005-11-02  Julien MOUTTE  <julien@moutte.net>
19870
19871         * configure.ac:
19872         * ext/Makefile.am:
19873         * ext/directfb/Makefile.am:
19874         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_get_format_name),
19875         (gst_dfbvideosink_surface_create),
19876         (gst_dfbvideosink_surface_destroy),
19877         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_layers),
19878         (gst_dfbvideosink_enum_vmodes), (gst_dfbvideosink_enum_devices),
19879         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19880         (gst_dfbvideosink_get_format_from_caps),
19881         (gst_dfbvideosink_get_caps_from_format),
19882         (gst_dfbvideosink_can_blit_from_format),
19883         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19884         (gst_dfbvideosink_setcaps), (gst_dfbvideosink_change_state),
19885         (gst_dfbvideosink_get_times), (gst_dfbvideosink_center_rect),
19886         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_bufferpool_clear),
19887         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19888         (gst_dfbsurface_init), (gst_dfbsurface_class_init),
19889         (gst_dfbsurface_get_type), (gst_dfbvideosink_interface_supported),
19890         (gst_dfbvideosink_interface_init),
19891         (gst_dfbvideosink_navigation_send_event),
19892         (gst_dfbvideosink_navigation_init),
19893         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19894         (gst_dfbvideosink_init), (gst_dfbvideosink_base_init),
19895         (gst_dfbvideosink_class_init), (gst_dfbvideosink_get_type),
19896         (plugin_init):
19897         * ext/directfb/dfbvideosink.h:
19898         * ext/directfb/directfbvideosink.c:
19899         * ext/directfb/directfbvideosink.h: Complete rewrite/port of
19900         DirectFB video sink to 0.9. Handles reverse negotiation, hardware
19901         scaling, navigation, buffer allocation from video memory etc...
19902
19903 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
19904
19905         * gst-plugins-bad/ext/sdl/sdlvideosink.c:
19906         gst_sdlvideosink_set_property, gst_sdlvideosink_init,
19907         gst_sdlvideosink_create:
19908         Changed property full-screen to fullscreen, using SDL_SWSURFACE
19909         instead of SDL_HWSURFACE when in full screen mode.
19910         
19911 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
19912
19913         * gst-plugins-bad/ext/sdl/sdlvideosink.c: gst_sdlvideosink_class_init,
19914         gst_sdlvideosink_set_property, gst_sdlvideosink_get_property,
19915         gst_sdlvideosink_init, gst_sdlvideosink_create:
19916         * gst-plugins-bad/ext/sdl/sdlvideosink.h:
19917         Added a property that allows full-screen.
19918
19919 2005-10-28  Tim-Philipp Müller  <tim at centricular dot net>
19920
19921         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init),
19922         (gst_sdlvideosink_class_init),
19923         (gst_sdlvideosink_get_sdl_from_fourcc), (gst_sdlvideosink_setcaps),
19924         (gst_sdlvideosink_show_frame):
19925         * ext/sdl/sdlvideosink.h:
19926           Fix I420 output on some machines (not very nice, but should work).
19927           Add an 'sdlvideosink' debug category. Disable formats that do
19928           not work. Fix some vararg function issues.
19929
19930 2005-10-27  Wim Taymans  <wim@fluendo.com>
19931
19932         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19933         (gst_sdlvideosink_get_times), (gst_sdlvideosink_class_init),
19934         (gst_sdlvideosink_init), (gst_sdlvideosink_lock),
19935         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create),
19936         (gst_sdlvideosink_show_frame), (gst_sdlvideosink_set_property),
19937         (gst_sdlvideosink_get_property), (gst_sdlvideosink_change_state):
19938         Fix SDL videosink and did some cleanups.
19939
19940 2005-10-27  Edgard Lima <edgard.lima@indt.org.br>
19941
19942         * ext/sdl/sdlvideosink.c:
19943         * ext/sdl/sdlvideosink.h:
19944         Trying to fix videos out of sync (not fixed yet)
19945         
19946 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
19947
19948         * gst/qtdemux/qtdemux.h:
19949           Remove got_redirect from class structure as well.
19950
19951 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
19952
19953         * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
19954         (qtdemux_parse_tree):
19955           Remove 'got-redirect' signal and post element message
19956           on the bus instead.
19957
19958 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
19959
19960         * ext/gsm/gstgsm.c:
19961         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
19962         * ext/gsm/gstgsmdec.h:
19963         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
19964         (gst_gsmenc_chain):
19965         Fixing stuff as wingo pointed out.
19966
19967 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
19968
19969         * ext/gsm/gstgsm.c: (plugin_init):
19970         * ext/gsm/gstgsmdec.c: (gst_gsmdec_class_init), (gst_gsmdec_init),
19971         (gst_gsmdec_chain):
19972         * ext/gsm/gstgsmdec.h:
19973         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
19974         (gst_gsmenc_chain):
19975         * ext/gsm/gstgsmenc.h:
19976         Over-writing Wim's gsm plugins (currently not working) with that from the 
19977         farsight repo. Also made sure that they work with the RTP (de)payloader.
19978
19979 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
19980
19981         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), 
19982         (gst_gsmenc_sink_event), (gst_gsmenc_chain):
19983         * ext/gsm/gstgsmenc.h:
19984         Fixed event handling
19985
19986 2005-10-24  Christian Schaller  <christian@fluendo.com>
19987
19988         * configure.ac: port over thomas's plugin listing from base
19989
19990 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19991
19992         * configure.ac:
19993           back to HEAD
19994
19995 === release 0.9.4 ===
19996
19997 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19998
19999         * NEWS:
20000         * RELEASE:
20001         * configure.ac:
20002           Releasing 0.9.4, "Utahraptor"
20003
20004 2005-10-23  Julien MOUTTE  <julien@moutte.net>
20005
20006         * gst/tta/gstttaparse.c: (gst_tta_parse_loop): STOPPED->FAILED.
20007
20008 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
20009
20010         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_class_init),
20011         (gst_faad_init), (gst_faad_srcgetcaps), (gst_faad_event),
20012         (gst_faad_chain), (gst_faad_change_state):
20013         * ext/faad/gstfaad.h:
20014           Do some timestamp smoothing (matroskademux apparently sends
20015           multiple buffers in a row with the same timestamp); fix
20016           duration on outgoing buffers; fix change state function; use
20017           GST_DEBUG_FUNCPTR for pad functions.
20018
20019 2005-10-19  Wim Taymans  <wim@fluendo.com>
20020
20021         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
20022         (gst_qtdemux_handle_src_query):
20023         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query):
20024         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
20025         (gst_tta_parse_get_query_types), (gst_tta_parse_query):
20026         API change fix.
20027
20028 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
20029
20030         * configure.ac:
20031           All the cool kids use GST_DOCBOOK_CHECK now.
20032
20033 2005-10-18  Julien MOUTTE  <julien@moutte.net>
20034
20035         * gst/speed/Makefile.am: Fix build of speed. 
20036
20037 2005-10-17  Edgard Lima <edgard.lima@indt.org.br>
20038
20039         * gst/speed/gstspeed.c: (speed_chain), (speed_setcaps),
20040         (speed_parse_caps), (speed_src_event), (speed_sink_event),
20041         (speed_src_query), (speed_init), (speed_set_property),
20042         (speed_change_state), (gst_speed_convert):
20043         Fixed speed - the previous version, 1.38, has been ported to 0.9
20044         from a wrong version, 1.37 (from 1.36). That fix already includes
20045         the changes done in 1.36.2.4.
20046
20047 2005-10-16  Tim-Philipp Müller  <tim at centricular dot net>
20048
20049         * configure.ac:
20050           Fix glib check
20051
20052 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
20053
20054         * examples/stats/mp2ogg.c:
20055         * ext/tarkin/tarkin.c: (tarkin_analysis_framein),
20056         (tarkin_synthesis_packetin):
20057           and more typos fixed
20058
20059 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
20060
20061         * ext/faac/gstfaac.c: (gst_faac_class_init), (gst_faac_init),
20062         (gst_faac_sink_setcaps), (gst_faac_src_setcaps),
20063         (gst_faac_sink_event), (gst_faac_chain), (gst_faac_set_property),
20064         (gst_faac_get_property), (gst_faac_change_state):
20065           Gst09-ize code a little bit more: use gst_pad_alloc_buffer(),
20066           move event handling from chain function into an event function,
20067           add some locks here and there, do some cleanups; disable 32-bit
20068           integer and float input formats until we're sure that those 
20069           actually work (couldn't play back the produced files with 
20070           anything).
20071
20072 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
20073
20074         * examples/indexing/indexmpeg.c: (main):
20075         * ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
20076         (gst_artsdsink_close_audio), (gst_artsdsink_change_state):
20077         * ext/artsd/gstartsdsink.h:
20078         * ext/audiofile/gstafparse.c: (gst_afparse_open_file),
20079         (gst_afparse_close_file):
20080         * ext/audiofile/gstafparse.h:
20081         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
20082         (gst_afsink_close_file), (gst_afsink_chain),
20083         (gst_afsink_change_state):
20084         * ext/audiofile/gstafsink.h:
20085         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
20086         (gst_afsrc_close_file), (gst_afsrc_change_state):
20087         * ext/audiofile/gstafsrc.h:
20088         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
20089         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
20090         * ext/dts/gstdtsdec.c: (gst_dtsdec_init):
20091         * ext/jack/gstjack.h:
20092         * ext/jack/gstjackbin.c: (gst_jack_bin_init),
20093         (gst_jack_bin_change_state):
20094         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
20095         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
20096         * ext/nas/nassink.c: (gst_nassink_open_audio),
20097         (gst_nassink_close_audio), (gst_nassink_change_state):
20098         * ext/nas/nassink.h:
20099         * ext/polyp/polypsink.c: (gst_polypsink_init):
20100         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
20101         * ext/sdl/sdlvideosink.h:
20102         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
20103         * ext/sndfile/gstsf.c: (gst_sf_set_property),
20104         (gst_sf_change_state), (gst_sf_release_request_pad),
20105         (gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
20106         * ext/sndfile/gstsf.h:
20107         * ext/swfdec/gstswfdec.c: (gst_swfdec_init):
20108         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
20109         * gst/apetag/apedemux.c: (gst_ape_demux_init):
20110         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
20111         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
20112         * gst/festival/gstfestival.c: (gst_festival_change_state):
20113         * gst/festival/gstfestival.h:
20114         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
20115         * gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
20116         (gst_multifilesink_set_location), (gst_multifilesink_open_file),
20117         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
20118         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
20119         (gst_multifilesink_chain), (gst_multifilesink_change_state):
20120         * gst/multifilesink/gstmultifilesink.h:
20121         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
20122         * sys/cdrom/gstcdplayer.c: (cdplayer_init):
20123         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
20124         (dxr3audiosink_open), (dxr3audiosink_close),
20125         (dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
20126         (dxr3audiosink_change_state):
20127         * sys/dxr3/dxr3audiosink.h:
20128         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
20129         (dxr3spusink_close), (dxr3spusink_chain),
20130         (dxr3spusink_change_state):
20131         * sys/dxr3/dxr3spusink.h:
20132         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
20133         (dxr3videosink_open), (dxr3videosink_close),
20134         (dxr3videosink_write_data), (dxr3videosink_change_state):
20135         * sys/dxr3/dxr3videosink.h:
20136         * sys/glsink/glimagesink.c: (gst_glimagesink_init):
20137         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
20138         (gst_qcamsrc_open), (gst_qcamsrc_close):
20139         * sys/qcam/gstqcamsrc.h:
20140         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
20141         * sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
20142         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
20143         (gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
20144         * sys/vcd/vcdsrc.h:
20145         renamed GST_FLAGS macros to GST_OBJECT_FLAGS
20146         moved bitshift from macro to enum definition
20147
20148 2005-10-12  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20149
20150         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20151
20152         * ext/faac/gstfaac.c: (gst_faac_sink_setcaps):
20153           Fix depth/width handling for float audio (#318659).
20154
20155 2005-10-12  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20156
20157         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20158
20159         * ext/faac/gstfaac.c: (gst_faac_sink_setcaps),
20160         (gst_faac_src_setcaps), (gst_faac_chain):
20161           Refcount fixes (#318660)
20162
20163 2005-10-12  Julien MOUTTE  <julien@moutte.net>
20164
20165         * ext/Makefile.am: libvisual and snapshot are not here anymore. Makes
20166         automake-1.7 happy again.
20167
20168 2005-10-12  Tim-Philipp Müller  <tim at centricular dot net>
20169
20170         * ext/faad/gstfaad.c: (gst_faad_event):
20171           newsegment API update
20172
20173 2005-10-11  Wim Taymans  <wim@fluendo.com>
20174
20175         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
20176         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
20177         (gst_tta_parse_parse_header):
20178         newsegment API update.
20179
20180 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20181
20182         * configure.ac:
20183           back to development
20184
20185 === release 0.9.3 ===
20186
20187 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20188
20189         * configure.ac:
20190           Releasing 0.9.3, "Porthos"
20191
20192 2005-09-28  Wim Taymans  <wim@fluendo.com>
20193
20194         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
20195         No need to take stream lock here.
20196
20197 2005-09-26  Christian Schaller  <uraeus@gnome.org>
20198
20199         * configure.ac: add speed and rfb where needed
20200         * gst/librfb/Makefile.am: add rfbsrc.c file to files getting disted
20201
20202 2005-09-23  Edgard Lima  <edgard.lima@indt.org.br>
20203
20204         * ext/gsm/Makefile.am:
20205         * ext/gsm/gstgsm.c:
20206         * ext/gsm/gstgsmdec.c:
20207         * PORTED_09:
20208         Gsmdec ported to 0.9.
20209
20210 2005-09-22  Arwed v. Merkatz  <v.merkatz@gmx.net>
20211
20212         * configure.ac:
20213         * gst/tta/gstttadec.c: (gst_tta_dec_setcaps), (gst_tta_dec_init),
20214         (gst_tta_dec_chain):
20215         * gst/tta/gstttaparse.c: (gst_tta_parse_dispose),
20216         (gst_tta_parse_class_init), (gst_tta_parse_reset),
20217         (gst_tta_parse_init), (gst_tta_parse_src_event),
20218         (gst_tta_parse_get_query_types), (gst_tta_parse_query),
20219         (gst_tta_parse_activate), (gst_tta_parse_activate_pull),
20220         (gst_tta_parse_parse_header), (gst_tta_parse_stream_data),
20221         (gst_tta_parse_loop), (gst_tta_parse_change_state):
20222         * gst/tta/gstttaparse.h:
20223           Ported tta plugin to 0.9.
20224
20225
20226 2005-09-20  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20227
20228         * ext/gsm/gstgsmenc.c:
20229           Setting caps on the outgoing buffers.
20230           Need to fix: rtpencoder does not know what it is handling and
20231           errors out
20232
20233 2005-09-20  Edgard Lima  <edgard.lima@indt.org.br>
20234
20235         * configure.ac:
20236         * ext/sdl/Makefile.am:
20237           Fixed Makefile.am - removed hard coded flags from Makefile.am.
20238           Added AC_PATH_XTRA to configure.ac to be used by Makefile.am.
20239
20240 2005-09-19  Edgard Lima  <edgard.lima@indt.org.br>
20241
20242         * Makefile.am:
20243         * configure.ac:
20244         * ext/sdl/Makefile.am:
20245         * ext/sdl/sdlvideosink.c:
20246         * PORTED_09:
20247           Ported to 0.9.
20248
20249 === release 0.9.1 ===
20250
20251 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20252
20253         * configure.ac:
20254         * gst/speed/Makefile.am:
20255         * gst/speed/gstspeed.c: Ported to GStreamer 0.9.
20256         * PORTED_09:
20257
20258 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20259
20260         * NEWS:
20261         * README:
20262         * RELEASE:
20263         * configure.ac:
20264         * autogen.sh:
20265           releasing 0.9.1, "Angel Eyes"
20266
20267 2005-09-05  Jan Schmidt  <thaytan@mad.scientist.com>
20268         * examples/gstplay/player.c: (main):
20269         * examples/stats/mp2ogg.c: (main):
20270         * ext/artsd/gstartsdsink.c: (gst_artsdsink_change_state):
20271         * ext/audiofile/gstafsink.c: (gst_afsink_change_state):
20272         * ext/audiofile/gstafsrc.c: (gst_afsrc_change_state):
20273         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_change_state):
20274         * ext/dirac/gstdiracdec.cc:
20275         * ext/directfb/directfbvideosink.c:
20276         (gst_directfbvideosink_change_state):
20277         * ext/dts/gstdtsdec.c: (gst_dtsdec_change_state):
20278         * ext/faac/gstfaac.c: (gst_faac_change_state):
20279         * ext/hermes/gsthermescolorspace.c:
20280         (gst_hermes_colorspace_change_state):
20281         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_change_state):
20282         * ext/jack/gstjack.c: (gst_jack_change_state):
20283         * ext/jack/gstjackbin.c: (gst_jack_bin_change_state):
20284         * ext/lcs/gstcolorspace.c: (gst_colorspace_change_state):
20285         * ext/libmms/gstmms.c: (gst_mms_change_state):
20286         * ext/mpeg2enc/gstmpeg2enc.cc:
20287         * ext/mplex/gstmplex.cc:
20288         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_change_state):
20289         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_change_state):
20290         * ext/nas/nassink.c: (gst_nassink_change_state):
20291         * ext/polyp/polypsink.c: (gst_polypsink_change_state),
20292         (context_state_callback), (gst_polypsink_link):
20293         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
20294         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
20295         * ext/smoothwave/gstsmoothwave.c: (gst_sw_change_state):
20296         * ext/sndfile/gstsf.c: (gst_sf_change_state):
20297         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
20298         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_change_state):
20299         * ext/xine/xine.c: (gst_xine_change_state):
20300         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_change_state):
20301         * ext/xine/xineaudiosink.c: (gst_xine_audio_sink_change_state):
20302         * ext/xine/xineinput.c: (gst_xine_input_change_state):
20303         * ext/xvid/gstxviddec.c: (gst_xviddec_change_state):
20304         * ext/xvid/gstxvidenc.c: (gst_xvidenc_change_state):
20305         * gst/apetag/apedemux.c: (gst_ape_demux_change_state):
20306         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_change_state):
20307         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_change_state):
20308         * gst/colorspace/gstcolorspace.c: (gst_colorspace_change_state):
20309         * gst/festival/gstfestival.c: (gst_festival_change_state):
20310         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state):
20311         * gst/modplug/gstmodplug.cc:
20312         * gst/mpeg1videoparse/gstmp1videoparse.c:
20313         (gst_mp1videoparse_change_state):
20314         * gst/mpegaudioparse/gstmpegaudioparse.c:
20315         (gst_mp3parse_change_state):
20316         * gst/multifilesink/gstmultifilesink.c:
20317         (gst_multifilesink_change_state):
20318         * gst/speed/gstspeed.c: (speed_change_state):
20319         * gst/switch/gstswitch.c: (gst_switch_change_state):
20320         * gst/videocrop/gstvideocrop.c: (gst_video_crop_change_state):
20321         * gst/videodrop/gstvideodrop.c: (gst_videodrop_change_state):
20322         * gst/y4m/gsty4mencode.c: (gst_y4mencode_change_state):
20323         * po/af.po:
20324         * po/az.po:
20325         * po/cs.po:
20326         * po/en_GB.po:
20327         * po/hu.po:
20328         * po/it.po:
20329         * po/nb.po:
20330         * po/nl.po:
20331         * po/or.po:
20332         * po/sq.po:
20333         * po/sr.po:
20334         * po/sv.po:
20335         * po/uk.po:
20336         * po/vi.po:
20337         * sys/cdrom/gstcdplayer.c: (cdplayer_change_state):
20338         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_change_state):
20339         * sys/dxr3/dxr3spusink.c: (dxr3spusink_change_state):
20340         * sys/dxr3/dxr3videosink.c: (dxr3videosink_change_state):
20341         * sys/glsink/glimagesink.c: (gst_glimagesink_change_state):
20342         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state):
20343         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_change_state):
20344         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_change_state):
20345         * sys/sunaudio/gstsunelement.c: (gst_sunaudioelement_change_state):
20346         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_change_state):
20347         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_change_state):
20348         * sys/vcd/vcdsrc.c: (gst_vcdsrc_change_state):
20349           Fix up all the state change functions.
20350
20351 2005-09-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20352
20353         * created gst-plugins-bad
20354
20355 2005-09-02  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20356
20357         * configure.ac:
20358         * ext/Makefile.am:
20359         * ext/gsm/Makefile.am:
20360         * ext/gsm/gstgsm.c: 
20361         * ext/gsm/gstgsmenc.c: Ported GSM Encoder to GStreamer 0.9.
20362         * PORTED_09:
20363
20364 2005-08-31  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20365
20366         * configure.ac:
20367         * ext/Makefile.am:
20368         * ext/faac/Makefile.am:
20369         * ext/faac/gstfaac.c: Ported to GStreamer 0.9.