gst/aiffparse/aiffparse.*: Calculate width from depth correctly.
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-10-27  Michael Smith <msmith@songbirdnest.com>
2
3         * gst/aiffparse/aiffparse.c:
4         * gst/aiffparse/aiffparse.h:
5           Calculate width from depth correctly.
6           Read SSND header properly (fixes 24 bit AIFF reading).
7
8 2008-10-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
9
10         * ext/x264/gstx264enc.c: (gst_x264_enc_init_encoder):
11         Adapt to slightly modified x264 API.  Fixes #555238.
12
13 2008-10-27  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
14
15         * ext/faac/gstfaac.c: (gst_faac_sink_event):
16         Prevent endless loop if buffer alloc error.
17
18 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
19
20         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain),
21         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header),
22         (gst_flv_demux_create_index):
23         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_script),
24         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
25         (gst_flv_parse_tag_timestamp), (gst_flv_parse_tag_type),
26         (gst_flv_parse_header):
27         * gst/flv/gstflvparse.h:
28         Don't memcpy() all data we want to push downstream, instead just
29         create subbuffers and push them downstream.
30
31         Fix some minor memory leaks.
32
33 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
34
35         * configure.ac:
36         Require CVS of core for the last change.
37
38 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
39
40         * gst/flv/Makefile.am:
41         Fix (non-critical) syntax error and add all required CFLAGS and LIBS.
42
43         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
44         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
45         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
46         (gst_flv_parse_tag_timestamp), (gst_flv_parse_tag_type):
47         Rewrite the script tag parsing to make sure we don't try to read
48         more data than we have. Also use GST_READ_UINT24_BE directly and
49         fix some minor memory leaks.
50         This should make all crashes on fuzzed FLV files disappear.
51
52 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
53
54         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
55         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
56         (gst_flv_parse_tag_type), (gst_flv_parse_header):
57         Properly check everywhere that we have enough data to parse and
58         don't read outside the allocated memory region. 
59
60 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
61
62         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
63         (gst_flv_parse_tag_video):
64         If the caps change during playback and negotiation fails error out
65         instead of trying to continue.
66
67 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
68
69         * gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
70         (gst_flv_mux_request_new_pad), (gst_flv_mux_write_buffer),
71         (gst_flv_mux_collected):
72         * gst/flv/gstflvmux.h:
73         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate):
74         Add support for Speex audio and allow buffers without valid
75         timestamp in the muxer.
76
77 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
78
79         * gst/flv/gstflvdemux.c: (gst_flv_demux_loop),
80         (gst_flv_demux_find_offset), (gst_flv_demux_handle_seek_push),
81         (gst_flv_demux_handle_seek_pull):
82         Don't post an error message on the bus if sending EOS downstream
83         didn't work. Fixes bug #550454.
84
85         Fix seek event handling to look at the flags of the seek event
86         instead of assuming some random flags, don't send segment-start
87         messages when operating in push mode and push seek events upstream
88         if we couldn't handle them.
89
90 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
91
92         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag):
93         Error out early if pulling a tag failed.
94
95 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
96
97         * gst/flv/gstflvdemux.c: (gst_flv_demux_create_index),
98         (gst_flv_demux_loop):
99         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_script),
100         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
101         (gst_flv_parse_tag_timestamp):
102         * gst/flv/gstflvparse.h:
103         In pull mode we create our own index before doing anything else
104         and don't use the index provided by some files (which are more than
105         often incorrect and cause failed seeks).
106
107         For push mode we still use the index provided by the file and extend it
108         while doing the playback.
109
110 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
111
112         * gst/flv/gstflvdemux.c: (gst_flv_demux_push_src_event),
113         (gst_flv_demux_loop), (gst_flv_demux_handle_seek_pull),
114         (gst_flv_demux_sink_event):
115         Instead of using gst_pad_event_default() use a small
116         gst_pad_push_event() wrapper that only does what we want and is much
117         more simple.
118
119 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
120
121         * gst/flv/gstflvdemux.c: (gst_flv_demux_change_state),
122         (gst_flv_demux_set_index), (gst_flv_demux_init):
123         * gst/flv/gstflvdemux.h:
124         If our index was created by the element and not provided from the
125         outside we should destroy it when starting a new stream to get
126         all old entries removed.
127
128 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
129
130         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_range):
131         Improve debugging a bit when pulling a buffer from upstream fails.
132
133 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
134
135         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
136         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_dispose):
137         * gst/flv/gstflvdemux.h:
138         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
139         (gst_flv_parse_tag_video):
140         Close the currently playing segment from the streaming thread
141         instead of the thread where the seek event is handled.
142
143 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
144
145         Patch by: David Härdeman <david at hardeman dot nu>
146
147         * gst/mpegdemux/mpegtspacketizer.c: (mpegts_packetizer_parse_nit):
148         Add support for the frequency list descriptor, which provides
149         additional frequencies that should be scanned by a DVB application.
150         Fixes bug #557814.
151
152 2008-10-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
153
154         Patch by: vanista <vanista at gmail dot com>
155
156         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_choose_best_stream):
157         Fix EOS logic by correctly popping the collect pad buffers only
158         when we've chosen to use them instead of popping them always and
159         storing them in a private queue.
160
161         Before the pipeline would deadlock if all pads go EOS at the same
162         time. Fixes bug #557763.
163
164 2008-10-26  Jan Schmidt  <jan.schmidt@sun.com>
165
166         * configure.ac:
167         Back to development -> 0.10.9.1
168
169 === release 0.10.9 ===
170
171 2008-10-24  Jan Schmidt <jan.schmidt@sun.com>
172
173         * configure.ac:
174           releasing 0.10.9, "Matters of fact"
175
176 2008-10-24  Jan Schmidt  <jan.schmidt@sun.com>
177
178         * configure.ac:
179         Commit 0.10.8.4 pre-release
180
181 2008-10-20  Edward Hervey  <edward.hervey@collabora.co.uk>
182
183         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data):
184         Fix reverse playback regression.
185         Fixes #557080
186
187 2008-10-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
188
189         * ext/apexsink/gstapexplugin.c: (plugin_init):
190           Set apexsink's rank to NONE so it doesn't get used by
191           autoaudiosink (there's no point really). (#556588)
192
193 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
194
195         * configure.ac:
196         0.10.8.3 pre-release
197
198 2008-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
199
200         Patch by: Josep Torra
201
202         * gst/mpegdemux/gstmpegtsdemux.c:
203         * gst/mpegdemux/gstmpegtsdemux.h:
204         Properly handle some resync cases in the optimised
205         buffering strategy.
206
207 2008-10-16  Michael Smith <msmith@songbirdnest.com>
208         * sys/acmenc/Makefile.am:
209           Remove incorrect use of DIRECTSOUND_LDFLAGS
210
211 2008-10-16  Sebastian Dröge  <slomo@circular-chaos.org>
212
213         * gst/flv/gstflvmux.c: (gst_flv_mux_audio_pad_setcaps),
214         (gst_flv_mux_write_buffer):
215         Don't set video_codec to the value that actually should go
216         into audio codec, otherwise we create invalid files.
217         Fixes bug #556564.
218
219 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
220
221         * tests/check/Makefile.am:
222         Leave apexsink out of the states test.
223
224 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
225
226         * gst/rtpmanager/gstrtpjitterbuffer.c:
227         (gst_jitter_buffer_sink_parse_caps),
228         (gst_rtp_jitter_buffer_flush_start),
229         (gst_rtp_jitter_buffer_flush_stop), (gst_rtp_jitter_buffer_chain),
230         (gst_rtp_jitter_buffer_loop):
231         Fix problem with using the output seqnum counter to check for input
232         seqnum discontinuities.
233         Improve gap detection and recovery, reset and flush the jitterbuffer on
234         seqnum restart. Fixes #556520.
235
236         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_insert):
237         Fix wrong G_LIKELY.
238
239 2008-10-16  Jan Schmidt  <jan.schmidt@sun.com>
240
241         * configure.ac:
242         Commit 0.10.8.2 pre-release bump, that actually went out in a
243         tarball on 2008-10-11
244
245 2008-10-16  Wim Taymans  <wim.taymans@collabora.co.uk>
246
247         * gst/rtpmanager/gstrtpsession.c:
248         (gst_rtp_session_event_send_rtcp_src), (create_send_rtcp_src):
249         Install event handler on the rtcp_src pad, make LATENCY event return
250         TRUE.
251
252 2008-10-16  Edward Hervey  <edward.hervey@collabora.co.uk>
253
254         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data):
255         Make sure the mpegpsdemux element creates valid newsegment events.
256         Fixes #556428
257
258 2008-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
259
260         patch by: Sebastian Pölsterl
261         
262         * gst/mpegdemux/mpegtspacketizer.c:
263         Fixes segfault in get_encoding_and_convert.
264         Fixes #556482
265
266 2008-10-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
267
268         patch by: Josep Torra
269
270         * gst/mpegdemux/gstmpegtsdemux.c:
271         Fixes a segfault in the adaptation buffer size strategy.
272         Fixes #556440
273
274 2008-10-15  Edward Hervey  <edward.hervey@collabora.co.uk>
275
276         * gst/selector/gstinputselector.c: (gst_input_selector_event),
277         (gst_input_selector_query):
278         Gracefully handle the cases when we dont' have otherpad.
279         Fixes #556430
280
281 2008-10-14  Edward Hervey  <edward.hervey@collabora.co.uk>
282
283         * gst/aiffparse/aiffparse.c: (plugin_init):
284         Fix debugging category initialization.
285         Fixes #556274   
286
287 2008-10-14  Jan Schmidt  <jan.schmidt@sun.com>
288
289         * ext/apexsink/gstapexsink.c:
290         Fix some more format string compiler warnings (from OS/X)
291
292 2008-10-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
293
294         * ext/apexsink/gstapexraop.c: (gst_apexraop_connect),
295         (gst_apexraop_set_volume):
296         Fix format string compiler warnings.
297
298 2008-10-12  Jan Schmidt  <jan.schmidt@sun.com>
299
300         * sys/oss4/oss4-mixer.c:
301         * sys/oss4/oss4-sink.c:
302         * sys/oss4/oss4-source.c:
303         Add some spaces in translateable strings.
304         Fixes: #555969 #555968 #555965
305
306 2008-10-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
307
308         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag),
309         (gst_flv_demux_pull_header):
310         Fix regression of handling flow returns in pull mode.
311         Fixes bug #556003.
312
313 2008-10-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
314
315         * ext/Makefile.am:
316         Add apexsink to SUBDIRS. Fixes bug #555912.
317
318 2008-10-11  Jan Schmidt  <jan.schmidt@sun.com>
319
320         * tests/check/pipelines/metadata.c:
321         Make the metadata test not fail when jpegenc isn't available....
322         as it isn't here, because it's not in this module, and
323         therefore not in the plugin path when the check runs.
324
325 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
326
327         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
328         (gst_flv_parse_tag_video):
329         Use gst_pad_alloc_buffer_and_set_caps() to make sure we get
330         a buffer with caps that we can work with (i.e. the pad's caps).
331
332         Add non-keyframe video frames to the index too but without the
333         keyframe flag.
334
335         Add audio frames to the index only if we have no video stream.
336
337 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
338
339         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
340         (gst_flv_parse_tag_video):
341         Create pads from the pad templates, use fixed caps on them
342         and only activate them after the caps are set.
343
344 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
345
346         * configure.ac:
347         Disable flacparse for this release as it's too buggy.
348
349 2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
350
351         * gst/flacparse/gstbaseparse.c (gst_base_parse_push_buffer),
352         (gst_base_parse_update_upstream_durations):
353         Fix compiler warning on OS/X about parameters not matching
354         the debug format string.
355
356 2008-10-09  Sebastian Dröge  <slomo@circular-chaos.org>
357
358         * gst/deinterlace2/tvtime/tomsmocomp.c:
359         (gst_deinterlace_method_tomsmocomp_class_init):
360         Fix unused variable compiler warning when not building
361         X86 assembly.
362
363 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
364
365         * gst/flv/gstflvdemux.c: (gst_flv_demux_loop):
366         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_timestamp):
367         * gst/flv/gstflvparse.h:
368         Get an approximate duration of the file by looking at the timestamp
369         of the last tag in pull mode. If we get (maybe better) duration from
370         metadata later we'll use that instead.
371
372 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
373
374         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_range),
375         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header):
376         Refactor _pull_range() logic with checks into a seperate function
377         to make things a bit more readable.
378
379 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
380
381         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain),
382         (gst_flv_demux_base_init):
383         Use gst_element_class_set_details_simple().
384
385         If we get GST_FLOW_NOT_LINKED in the parse loop but at least
386         one of the pads is linked continue the loop.
387
388 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
389
390         * ext/amrwb/gstamrwbenc.c:
391         * ext/amrwb/gstamrwbenc.h:
392           Pass the discont flag from the input buffer on to the output buffer in
393           the AMR encoder.
394
395 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
396
397         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate),
398         (gst_flv_parse_tag_audio), (gst_flv_parse_video_negotiate):
399         Correct caps for video codec id 5: It's On2 VP6 with alpha channel
400         which needs a different decoder and has different caps.
401
402         Add support for audio codec id 14, which is MP3 with 8kHz sampling
403         rate.
404
405         Fix endianness and signedness for raw audio codec ids.
406
407         Add support for alaw and mulaw audio.
408
409 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
410
411         * gst/flv/gstflvdemux.c: (gst_flv_demux_chain):
412         Go out of the parse loop as soon as we get an error instead
413         of parsing until the GstAdapter is empty.
414
415         Add some explanations about the header and tag size.
416
417         Don't print synchronizing message if everything is fine.
418
419 2008-10-09  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
420
421         * gst/flv/Makefile.am:
422         * gst/flv/gstflvdemux.c: (plugin_init):
423         * gst/flv/gstflvmux.c: (gst_flv_mux_base_init),
424         (gst_flv_mux_class_init), (gst_flv_mux_init),
425         (gst_flv_mux_finalize), (gst_flv_mux_reset),
426         (gst_flv_mux_handle_src_event), (gst_flv_mux_handle_sink_event),
427         (gst_flv_mux_video_pad_setcaps), (gst_flv_mux_audio_pad_setcaps),
428         (gst_flv_mux_request_new_pad), (gst_flv_mux_release_pad),
429         (gst_flv_mux_write_header), (gst_flv_mux_write_buffer),
430         (gst_flv_mux_collected), (gst_flv_mux_change_state):
431         * gst/flv/gstflvmux.h:
432         Add first version of a FLV muxer. The only missing feature is writing
433         of stream metadata.
434
435 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
436
437         * ext/amrwb/gstamrwbparse.c:
438         * ext/amrwb/gstamrwbparse.h:
439           Add flush seek handler. Taken from recent armnbparse changes.
440           Sync the code more and use #defines for HEADER.
441
442 2008-10-09  Stefan Kost  <ensonic@users.sf.net>
443
444         * ext/amrwb/gstamrwbparse.c:
445         * ext/amrwb/gstamrwbparse.h:
446           Fix the duration query. Also set caps on the pads and buffers more
447           correctly. Taken from recent armnbparse changes.
448
449 2008-10-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
450
451         * gst/mpegdemux/gstmpegdemux.c:
452         * gst/mpegdemux/gstmpegtsdemux.c:
453         Add Fluendo to the Long Name.
454
455 2008-10-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
456
457         * configure.ac:
458         * gst-plugins-bad.spec.in:
459         * gst/mpegdemux/Makefile.am:
460         * gst/mpegdemux/flumpegdemux.c:
461         * gst/mpegdemux/gstmpegdesc.c:
462         * gst/mpegdemux/gstmpegdesc.h:
463         * gst/mpegdemux/mpegtspacketizer.c:
464         * gst/mpegdemux/mpegtspacketizer.h:
465         * gst/mpegdemux/mpegtsparse.c:
466         * gst/mpegdemux/mpegtsparse.h:
467         Move of mpegtsparse to mpegdemux.
468         Fixes #555193.
469
470 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
471
472         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_send_data),
473         (gst_flups_demux_parse_pack_start):
474         Prevent a division by zero if last mux rate was zero.
475
476         If we're going to send a NEWSEGMENT event but the segment start
477         and the current buffer timestamp differ by more than a second we
478         will start the NEWSEGMENT at the buffer timestamp.
479
480         This fixes playback of the tv2-1_25.mpg file, which has 0 as first SCR
481         but the first PTS are around 1 hour and 40 minutes.
482
483         Fixes bug #553755.
484
485 2008-10-07  Jan Schmidt  <jan.schmidt@sun.com>
486
487         * ext/resindvd/resindvdsrc.c:
488         Fix next/prev chapter seeking at the beginning or end.
489         Use 64-bit scaling utility functions for converting MPEG
490         timestamps.
491
492 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
493
494         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
495
496         * gst/rtpmanager/gstrtpbin-marshal.list:
497         Add marshaller for new action signal.
498
499         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_get_internal_session),
500         (gst_rtp_bin_class_init):
501         * gst/rtpmanager/gstrtpbin.h:
502         Add action signal to retrieve the internal RTPSession object.
503
504         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
505         (gst_rtp_session_get_property), (gst_rtp_session_release_pad):
506         Add property to access the internal RTPSession object.
507
508         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
509         (check_collision):
510         * gst/rtpmanager/rtpsession.h:
511         Add action signal to retrieve an RTPSource object by SSRC. 
512         See #555396.
513
514 2008-10-07  Stefan Kost  <ensonic@users.sf.net>
515
516         * gst/selector/gstoutputselector.c:
517           Choose right pad for sending events. Fixes #555244
518
519 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
520
521         * gst/rtpmanager/gstrtpbin.c: (find_session_by_pad),
522         (free_session), (gst_rtp_bin_dispose), (remove_recv_rtp),
523         (remove_recv_rtcp), (remove_send_rtp), (remove_rtcp),
524         (gst_rtp_bin_release_pad):
525         Release pads of the session manager.
526         Start implementing releasing pads of gstrtpbin.
527
528         * gst/rtpmanager/gstrtpsession.c: (remove_recv_rtp_sink),
529         (remove_recv_rtcp_sink), (remove_send_rtp_sink),
530         (remove_send_rtcp_src), (gst_rtp_session_release_pad):
531         Implement releasing pads in gstrtpsession.
532
533 2008-10-07  Wim Taymans  <wim.taymans@collabora.co.uk>
534
535         * gst/rtpmanager/gstrtpjitterbuffer.c:
536         (gst_jitter_buffer_sink_parse_caps):
537         Only update the seqnum-base when it was not already configured for the
538         streams.
539
540 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
541
542         * configure.ac
543         * ext/metadata/README:
544         * ext/metadata/metadataexif.c:
545         * ext/metadata/metadatatags.c:
546         * ext/metadata/metadatatags.h:
547           Start using core geo tags (bump req). Fix handling of location
548           references.
549
550         * tests/check/Makefile.am:
551           Sort blacklisted elements and remove moved ones. Add new test.
552
553         * tests/check/pipelines/metadata.c:
554           Add first tests for metadata element.
555
556         * tests/icles/metadata_editor.c:
557           Move free to correct place.
558
559 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
560
561         * tests/check/generic/states.c:
562           Stop test on state-change error. Should be applied on other modules if
563           we agree that it makes sense.
564
565 2008-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
566
567         * gst/mpegtsparse/mpegtsparse.c:
568         Actually copy the structure passed in when assigning it because
569         it gets freed straight after the function call.
570         Re: pat_info and pmt_info GstStructures.
571
572 2008-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
573
574         Patch by: Josep Torra
575
576         * gst/mpegdemux/gstmpegtsdemux.c:
577         Fix wrong firing of critical introduced by previous optimisation.
578
579 2008-10-03  Wim Taymans  <wim.taymans@collabora.co.uk>
580
581         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad):
582         Warn and clamp to max bitrate for samplerate.
583         Fixes #550486.
584
585 2008-10-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
586
587         * gst/mpegtsparse/mpegtsparse.c:
588         Fix possible crash where pat is pointing to a freed structure.
589
590 2008-10-03  Stefan Kost  <ensonic@users.sf.net>
591
592         * ext/metadata/README:
593         * ext/metadata/metadataexif.c:
594         * ext/metadata/metadatatags.c:
595         * ext/metadata/metadatatags.h:
596           Use core gps tags.
597
598 2008-10-03  Stefan Kost  <ensonic@users.sf.net>
599
600         * ext/metadata/metadata_mapping.htm:
601         * ext/metadata/metadataxmp.c:
602         * ext/metadata/Makefile.am:
603           Add mapping of format and mime type to xmp.
604
605 2008-10-02  Stefan Kost  <ensonic@users.sf.net>
606
607         * ext/metadata/README:
608         * ext/metadata/metadataexif.c:
609         * ext/metadata/metadatatags.c:
610         * ext/metadata/metadatatags.h:
611           Reverting. Will need to wait for core 0.10.21 release.
612
613 2008-10-02  Stefan Kost  <ensonic@users.sf.net>
614
615         * ext/metadata/README:
616         * ext/metadata/metadataexif.c:
617         * ext/metadata/metadatatags.c:
618         * ext/metadata/metadatatags.h:
619           Use core gps tags.
620
621 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
622
623         * gst/flacparse/gstbaseparse.c: (gst_base_parse_finalize),
624         (gst_base_parse_class_init), (gst_base_parse_push_buffer),
625         (gst_base_parse_change_state), (gst_base_parse_set_index),
626         (gst_base_parse_get_index):
627         Add support for GstIndex.
628
629 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
630
631         * gst/flacparse/gstbaseparse.c: (gst_base_parse_class_init),
632         (gst_base_parse_push_buffer),
633         (gst_base_parse_update_upstream_durations),
634         (gst_base_parse_convert), (gst_base_parse_frame_in_segment):
635         * gst/flacparse/gstbaseparse.h:
636         Provide a vfunc for the subclass to decide whether a frame is inside
637         the segment or not and add a default implementation.
638
639         Fix approximate bitrate calculations.
640
641 2008-09-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
642
643         * gst/flacparse/gstbaseparse.c: (gst_base_parse_class_init),
644         (gst_base_parse_init), (gst_base_parse_push_buffer),
645         (gst_base_parse_update_upstream_durations), (gst_base_parse_chain),
646         (gst_base_parse_loop), (gst_base_parse_activate),
647         (gst_base_parse_convert), (gst_base_parse_query):
648         Approximate the average bitrate, duration and size if possible
649         and add a default conversion function which uses this for
650         time<->byte conversions.
651
652         * gst/flacparse/gstflacparse.c: (gst_flac_parse_get_frame_size):
653         Fix parsing if upstream gives -1 as duration.
654
655 2008-09-30  Wim Taymans  <wim.taymans@collabora.co.uk>
656
657         * gst/rtpmanager/rtpsession.c: (on_new_ssrc), (on_ssrc_collision),
658         (on_ssrc_validated), (on_ssrc_active), (on_ssrc_sdes),
659         (on_bye_ssrc), (on_bye_timeout), (on_timeout), (on_sender_timeout):
660         Ref the rtpsource object before we release the session lock when we emit
661         the signals.
662
663 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
664
665         * sys/Makefile.am:
666         * sys/wasapi/Makefile.am:
667         * sys/wasapi/gstwasapi.c:
668         * sys/wasapi/gstwasapisink.c:
669         * sys/wasapi/gstwasapisink.h:
670         * sys/wasapi/gstwasapisrc.c:
671         * sys/wasapi/gstwasapisrc.h:
672         * sys/wasapi/gstwasapiutil.c:
673         * sys/wasapi/gstwasapiutil.h:
674         New plugin for audio capture and playback using Windows Audio Session
675         API (WASAPI) available with Vista and newer (#520901).
676
677         Comes with hardcoded caps and obviously needs lots of love. Haven't
678         had time to work on this code since it was written, was initially just
679         a quick experiment to play around with this new API.
680
681 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
682
683         * sys/dshowdecwrapper/gstdshowaudiodec.cpp
684           (AudioFakeSink.DoRenderSample):
685         Fix a couple of signed/unsigned comparison warnings.
686
687 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
688
689         * sys/dshowdecwrapper/gstdshowaudiodec.h (AudioFakeSink.AudioFakeSink):
690         * sys/dshowdecwrapper/gstdshowvideodec.h (VideoFakeSink.VideoFakeSink):
691         Use the _T() macro to support both Unicode and MBCS.
692
693 2008-09-30  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
694
695         * ext/libmms/gstmms.c (plugin_init):
696         Fix return type of the GstURIHandler::get_type() implementation.
697
698 2008-09-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
699
700         * configure.ac:
701         * gst/flacparse/Makefile.am:
702         * gst/flacparse/gstbaseparse.c: (gst_base_parse_get_type),
703         (gst_base_parse_base_init), (gst_base_parse_base_finalize),
704         (gst_base_parse_finalize), (gst_base_parse_class_init),
705         (gst_base_parse_init), (gst_base_parse_check_frame),
706         (gst_base_parse_parse_frame), (gst_base_parse_bytepos_to_time),
707         (gst_base_parse_sink_event), (gst_base_parse_sink_eventfunc),
708         (gst_base_parse_src_event), (gst_base_parse_src_eventfunc),
709         (gst_base_parse_is_seekable), (gst_base_parse_push_buffer),
710         (gst_base_parse_handle_and_push_buffer), (gst_base_parse_drain),
711         (gst_base_parse_chain), (gst_base_parse_pull_range),
712         (gst_base_parse_loop), (gst_base_parse_sink_activate),
713         (gst_base_parse_activate), (gst_base_parse_sink_activate_push),
714         (gst_base_parse_sink_activate_pull), (gst_base_parse_set_duration),
715         (gst_base_parse_set_min_frame_size),
716         (gst_base_parse_get_querytypes), (gst_base_parse_query),
717         (gst_base_parse_handle_seek), (gst_base_parse_sink_setcaps):
718         * gst/flacparse/gstbaseparse.h:
719         * gst/flacparse/gstbitreader.c: (gst_bit_reader_new),
720         (gst_bit_reader_new_from_buffer), (gst_bit_reader_free),
721         (gst_bit_reader_init), (gst_bit_reader_init_from_buffer),
722         (gst_bit_reader_set_pos), (gst_bit_reader_get_pos),
723         (gst_bit_reader_get_remaining), (gst_bit_reader_skip),
724         (gst_bit_reader_skip_to_byte):
725         * gst/flacparse/gstbitreader.h:
726         * gst/flacparse/gstbytereader.c: (GDOUBLE_SWAP_LE_BE),
727         (GFLOAT_SWAP_LE_BE), (gst_byte_reader_new),
728         (gst_byte_reader_new_from_buffer), (gst_byte_reader_free),
729         (gst_byte_reader_init), (gst_byte_reader_init_from_buffer),
730         (gst_byte_reader_set_pos), (gst_byte_reader_get_pos),
731         (gst_byte_reader_get_remaining), (gst_byte_reader_skip),
732         (gst_byte_reader_get_uint8), (gst_byte_reader_get_int8),
733         (gst_byte_reader_peek_uint8), (gst_byte_reader_peek_int8),
734         (gst_byte_reader_get_uint24_le), (gst_byte_reader_get_uint24_be),
735         (gst_byte_reader_get_int24_le), (gst_byte_reader_get_int24_be),
736         (gst_byte_reader_peek_uint24_le), (gst_byte_reader_peek_uint24_be),
737         (gst_byte_reader_peek_int24_le), (gst_byte_reader_peek_int24_be):
738         * gst/flacparse/gstbytereader.h:
739         * gst/flacparse/gstflac.c: (plugin_init):
740         * gst/flacparse/gstflacparse.c: (gst_flac_parse_base_init),
741         (gst_flac_parse_class_init), (gst_flac_parse_init),
742         (gst_flac_parse_finalize), (gst_flac_parse_start),
743         (gst_flac_parse_stop), (gst_flac_parse_get_frame_size),
744         (gst_flac_parse_check_valid_frame),
745         (gst_flac_parse_handle_streaminfo),
746         (gst_flac_parse_handle_vorbiscomment),
747         (gst_flac_parse_handle_picture), (_value_array_append_buffer),
748         (gst_flac_parse_handle_headers), (gst_flac_parse_generate_headers),
749         (gst_flac_parse_parse_frame):
750         * gst/flacparse/gstflacparse.h:
751         Add FLAC parser, based on GstBaseParse. Also add the bit and byte reader
752         that will be added to libgstbase later.
753
754         The FLAC parser is currently not 100% bug free and fails to get the
755         correct frame size for some frames in some streams.
756
757 2008-09-27  Jan Schmidt  <jan.schmidt@sun.com>
758
759         * ext/resindvd/gstmpegdemux.c:
760         * ext/resindvd/gstmpegdemux.h:
761         * ext/resindvd/resindvdbin.c:
762         * ext/resindvd/resindvdsrc.c:
763         * ext/resindvd/rsnstreamselector.c:
764         Add in Title/Chapter seeking, and simple but buggy audio
765         and subtitle stream selection.
766
767 2008-09-24  Michael Smith <msmith@songbirdnest.com>
768
769         * sys/dshowdecwrapper/gstdshowaudiodec.cpp:
770         * sys/dshowdecwrapper/gstdshowaudiodec.h:
771         * sys/dshowdecwrapper/gstdshowfakesrc.cpp:
772         * sys/dshowdecwrapper/gstdshowutil.cpp:
773         * sys/dshowdecwrapper/gstdshowutil.h:
774         * sys/dshowdecwrapper/gstdshowvideodec.cpp:
775         * sys/dshowdecwrapper/gstdshowvideodec.h:
776           Prefer known-good filters, create directly by GUID if possible,
777           fall back to creating highest-merit filter otherwise.
778           Fixes playback with random dshow filters installed in some
779           cases.
780
781 2008-09-23  Wim Taymans  <wim.taymans@collabora.co.uk>
782
783         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_insert),
784         (rtp_jitter_buffer_get_sync):
785         * gst/rtpmanager/rtpsession.c: (on_sender_timeout),
786         (session_cleanup):
787         * gst/rtpmanager/rtpsource.c:
788         Fix some docs.
789
790 2008-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
791
792         Patch from: Josep Torra
793
794         * gst/mpegdemux/gstmpegtsdemux.c:
795         * gst/mpegdemux/gstmpegtsdemux.h:
796         Use a preallocated buffer per stream for PES packets sent on src pads.
797         Adaptively adjust buffer size appropriately.
798
799 2008-09-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
800
801         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start),
802           (gst_neonhttp_src_send_request_and_redirect):
803           Clean up the debug logging code and #ifdef mess a bit: whether or not
804           gstreamer debug messages should be output should not depend on an
805           element property; also, GST_ELEMENT_ERROR will leave a line in the log
806           already, so merge the more useful debug log messages with the less useful
807           error debug strings.
808
809 2008-09-17  Tim-Philipp Müller  <tim.muller at collabora co uk>
810
811         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start):
812           Don't post LIBRARY_INIT errors where we should be posting
813           RESOURCE OPEN_READ errors. Fixes #552506.
814
815 2008-09-17  Jan Schmidt  <jan.schmidt@sun.com>
816
817         * ext/jack/gstjackaudiosink.c: (jack_process_cb):
818         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
819         Fix compiler warnings on OS/X
820
821 2008-09-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
822
823         patch by: Michael Krufky
824
825         * sys/dvb/gstdvbsrc.c:
826         Add adapter_name for bus message in ATSC case. Fixes #552536.
827
828 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
829
830         * ext/celt/gstceltenc.h:
831           Help gtk-doc to parse this correctly.
832
833         * gst/pcapparse/gstpcapparse.c:
834           Add missing include.
835
836 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
837
838         * examples/Makefile.am:
839           Only built scaletempo example if we have gtk.
840
841 2008-09-13  Wim Taymans  <wim.taymans@collabora.co.uk>
842
843         * gst/rtpmanager/gstrtpbin.c: (create_session),
844         (gst_rtp_bin_associate), (gst_rtp_bin_sync_chain):
845         Do not try to adjust the offset of streams for which we have not yet
846         seen an SR packet. Avoids large ts-offsets in some cases.
847
848 2008-09-10  Michael Smith <msmith@songbirdnest.com>
849
850         * sys/dshowdecwrapper/Makefile.am:
851         * sys/dshowdecwrapper/gstdshowaudiodec.c:
852         * sys/dshowdecwrapper/gstdshowaudiodec.cpp:
853         * sys/dshowdecwrapper/gstdshowaudiodec.h:
854         * sys/dshowdecwrapper/gstdshowdecwrapper.c:
855         * sys/dshowdecwrapper/gstdshowdecwrapper.cpp:
856         * sys/dshowdecwrapper/gstdshowdecwrapper.h:
857         * sys/dshowdecwrapper/gstdshowfakesrc.cpp:
858         * sys/dshowdecwrapper/gstdshowfakesrc.h:
859         * sys/dshowdecwrapper/gstdshowutil.cpp:
860         * sys/dshowdecwrapper/gstdshowutil.h:
861         * sys/dshowdecwrapper/gstdshowvideodec.c:
862         * sys/dshowdecwrapper/gstdshowvideodec.cpp:
863         * sys/dshowdecwrapper/gstdshowvideodec.h:
864           Major rewrite of dshowdecwrapper. Converts code to
865           C++, moves to direct use of DirectShow base classes,
866           make a lot of code clearer, simplify, etc.
867           Fix decode of MP3 on Vista by working around an apparent
868           bug in the decoder.
869
870 2008-09-10  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
871
872         * sys/winks/gstksclock.c (gst_ks_clock_worker_thread_func,
873           gst_ks_clock_start):
874           Synchronize KS clock as a single-shot operation for now, there's not
875           much point in doing it periodically until we're actually using the
876           KS timestamps for anything else than just discarding old frames.
877         * sys/winks/gstksvideosrc.c (gst_ks_video_src_open_device):
878           Provide the GstClock when opening the device if we already have one.
879
880 2008-09-10  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
881
882         * sys/winks/gstksvideodevice.c (GST_DEBUG_IS_ENABLED, last_timestamp,
883           gst_ks_video_device_prepare_buffers, gst_ks_video_device_create_pin,
884           gst_ks_video_device_set_state, gst_ks_video_device_request_frame,
885           gst_ks_video_device_read_frame):
886           Guard against capturing old frames by keeping track of the last
887           timestamp and also zero-fill the buffers before each capture.
888           Only assign a master clock if the pin hasn't already got one.
889           Actually free buffers on the way down to avoid a huge memory leak,
890           as this was previously done when changing state to ACQUIRE downwards
891           and we now skip that state on the way down.
892           Add some debug.
893         * sys/winks/gstksvideosrc.c (DEFAULT_DEVICE_PATH, DEFAULT_DEVICE_NAME,
894           DEFAULT_DEVICE_INDEX, KS_WORKER_LOCK, KS_WORKER_UNLOCK,
895           KS_WORKER_WAIT, KS_WORKER_NOTIFY, KS_WORKER_WAIT_FOR_RESULT,
896           KS_WORKER_NOTIFY_RESULT, KS_WORKER_STATE_STARTING,
897           KS_WORKER_STATE_READY, KS_WORKER_STATE_STOPPING,
898           KS_WORKER_STATE_ERROR, KsWorkerState, device_path, device_name,
899           device_index, running, worker_thread, worker_lock,
900           worker_notify_cond, worker_result_cond, worker_state,
901           worker_pending_caps, worker_setcaps_result, worker_pending_run,
902           worker_run_result, gst_ks_video_src_reset,
903           gst_ks_video_src_apply_driver_quirks, gst_ks_video_src_open_device,
904           gst_ks_video_src_close_device, gst_ks_video_src_worker_func,
905           gst_ks_video_src_start_worker, gst_ks_video_src_stop_worker,
906           gst_ks_video_src_change_state, gst_ks_video_src_set_clock,
907           gst_ks_video_src_set_caps, gst_ks_video_src_timestamp_buffer,
908           gst_ks_video_src_create):
909           Remove ENABLE_CLOCK_DEBUG define, it's GST_LEVEL_DEBUG after all.
910           Get rid of PROP_ENSLAVE_KSCLOCK and always slave the ks clock to the
911           GStreamer clock, it doesn't seem to hurt and matches DirectShow's
912           behavior. As an added bonus we usually get PresentationTime set for
913           each frame, so we can expand on this later for smarter latency
914           reporting (by looking at the diff between the timestamp from the
915           driver and the time according to the GStreamer clock).
916           Use an internal worker thread for opening the device, setting caps,
917           changing its state and closing it. This way we're a lot more
918           compatible with drivers that rely on hacks to do video-effects
919           between the low-level NT API and the application. Ick.
920           Start the ks clock and set the pin to KSSTATE_RUN on the first
921           create() so that we'll hopefully get hold of the GStreamer clock
922           from the very beginning. This way there's no chance that the
923           timestamps will make a sudden jump in the beginning of the stream
924           when we're running with a clock.
925         * sys/winks/kshelpers.c (CHECK_OPTIONS_FLAG,
926           ks_options_flags_to_string):
927           Reorder the flags to match the headerfile order, and make the string
928           a bit more compact.
929         * sys/winks/ksvideohelpers.c (ks_video_probe_filter_for_caps):
930           Avoid leaking KSPROPERTY_PIN_DATARANGES.
931
932 2008-09-09  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
933
934         * configure.ac:
935         * ext/Makefile.am:
936         * ext/jp2k/Makefile.am:
937         * ext/jp2k/gstjasperdec.c: (gst_jasper_dec_base_init),
938         (gst_jasper_dec_class_init), (gst_jasper_dec_init),
939         (gst_jasper_dec_reset), (gst_jasper_dec_sink_setcaps),
940         (gst_jasper_dec_negotiate), (gst_jasper_dec_get_picture),
941         (gst_jasper_dec_chain), (gst_jasper_dec_set_property),
942         (gst_jasper_dec_get_property), (gst_jasper_dec_change_state),
943         (plugin_init):
944         * ext/jp2k/gstjasperdec.h:
945         Add jp2k plugin.  Fixes #550657.
946
947 2008-09-09  Edward Hervey  <edward.hervey@collabora.co.uk>
948
949         * gst/mpegdemux/flumpegdemux.c: (plugin_init):
950         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_sync_get_type),
951         (gst_flups_demux_get_type), (gst_flups_demux_plugin_init):
952         * gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_get_type),
953         (gst_fluts_demux_plugin_init):
954         Fix conflicting public names in new mpeg demuxers.
955         Fixes #550468
956
957 2008-09-08  Michael Smith <msmith@songbirdnest.com>
958
959         * gst/aiffparse/aiffparse.c:
960           Support chunks in AIFF in any order in pull mode, and any order so
961           long as we get COMM before the actual data (SSND) in push mode.
962           Fixes playback of AIFC files.
963
964 2008-09-08  Wim Taymans  <wim.taymans@collabora.co.uk>
965
966         * gst/selector/gstinputselector.c: (gst_selector_pad_reset),
967         (gst_input_selector_reset), (gst_input_selector_change_state):
968         Reset the selector state when going to READY.
969
970 2008-09-05  Wim Taymans  <wim.taymans@collabora.co.uk>
971
972         * gst/rtpmanager/gstrtpbin.c: (on_sender_timeout),
973         (create_session), (gst_rtp_bin_associate),
974         (gst_rtp_bin_sync_chain), (gst_rtp_bin_class_init),
975         (gst_rtp_bin_request_new_pad):
976         * gst/rtpmanager/gstrtpbin.h:
977         Add signal to notify listeners when a sender becomes a receiver.
978         Tweak lip-sync code, don't store our own copy of the ts-offset of the
979         jitterbuffer, don't adjust sync if the change is less than 4msec.
980         Get the RTP timestamp <-> GStreamer timestamp relation directly from
981         the jitterbuffer instead of our inaccurate version from the source.
982
983         * gst/rtpmanager/gstrtpjitterbuffer.c:
984         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop),
985         (gst_rtp_jitter_buffer_get_sync):
986         * gst/rtpmanager/gstrtpjitterbuffer.h:
987         Add G_LIKELY macros, use global defines for max packet reorder and
988         dropouts.
989         Reset the jitterbuffer clock skew detection when packets seqnums are
990         changed unexpectedly.
991
992         * gst/rtpmanager/gstrtpsession.c: (on_sender_timeout),
993         (gst_rtp_session_class_init), (gst_rtp_session_init):
994         * gst/rtpmanager/gstrtpsession.h:
995         Add sender timeout signal.
996
997         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_reset_skew),
998         (calculate_skew), (rtp_jitter_buffer_insert),
999         (rtp_jitter_buffer_get_sync):
1000         * gst/rtpmanager/rtpjitterbuffer.h:
1001         Add some G_LIKELY macros.
1002         Keep track of the extended RTP timestamp so that we can report the RTP
1003         timestamp <-> GStreamer timestamp relation for lip-sync.
1004         Remove server timestamp gap detection code, the server can sometimes
1005         make a huge gap in timestamps (talk spurts,...) see #549774.
1006         Detect timetamp weirdness instead by observing the sender/receiver
1007         timestamp relation and resync if it changes more than 1 second.
1008         Add method to report about the current rtp <-> gst timestamp relation
1009         which is needed for lip-sync.
1010
1011         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
1012         (on_sender_timeout), (check_collision), (rtp_session_process_sr),
1013         (session_cleanup):
1014         * gst/rtpmanager/rtpsession.h:
1015         Add sender timeout signal.
1016         Remove inaccurate rtp <-> gst timestamp relation code, the
1017         jitterbuffer can now do an accurate reporting about this.
1018
1019         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
1020         (rtp_source_update_caps), (calculate_jitter),
1021         (rtp_source_process_rtp):
1022         * gst/rtpmanager/rtpsource.h:
1023         Remove inaccurate rtp <-> gst timestamp relation code.
1024
1025         * gst/rtpmanager/rtpstats.h:
1026         Define global max-reorder and max-dropout constants for use in various
1027         subsystems.
1028
1029 2008-09-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1030
1031         patch by: Sebastian Pölsterl
1032
1033         * sys/dvb/gstdvbsrc.c:
1034         Add DVB Adapter name to structure sent over bus.
1035
1036 2008-09-02  Edward Hervey  <edward.hervey@collabora.co.uk>
1037
1038         * gst/mpegdemux/gstmpegdemux.c: (gst_flups_demux_parse_pack_start):
1039         * gst/mpegdemux/gstmpegtsdemux.c: (gst_fluts_demux_data_cb):
1040         Fix build on macosx.
1041
1042 2008-09-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1043
1044         * configure.ac:
1045         * gst/mpegdemux/Makefile.am:
1046         * gst/mpegdemux/flumpegdemux.c:
1047         * gst/mpegdemux/flutspatinfo.c:
1048         * gst/mpegdemux/flutspatinfo.h:
1049         * gst/mpegdemux/flutspmtinfo.c:
1050         * gst/mpegdemux/flutspmtinfo.h:
1051         * gst/mpegdemux/flutspmtstreaminfo.c:
1052         * gst/mpegdemux/flutspmtstreaminfo.h:
1053         * gst/mpegdemux/gstmpegdefs.h:
1054         * gst/mpegdemux/gstmpegdemux.c:
1055         * gst/mpegdemux/gstmpegdemux.h:
1056         * gst/mpegdemux/gstmpegdesc.c:
1057         * gst/mpegdemux/gstmpegdesc.h:
1058         * gst/mpegdemux/gstmpegtsdemux.c:
1059         * gst/mpegdemux/gstmpegtsdemux.h:
1060         * gst/mpegdemux/gstpesfilter.c:
1061         * gst/mpegdemux/gstpesfilter.h:
1062         * gst/mpegdemux/gstsectionfilter.c:
1063         * gst/mpegdemux/gstsectionfilter.h:
1064         Add Fluendo MPEG PS and TS demuxers to gst-plugins-bad. This
1065         is now dual licensed MPL and LGPL.
1066
1067 2008-09-02  Wim Taymans  <wim.taymans@collabora.co.uk>
1068
1069         * gst/mpegtsmux/mpegtsmux.c: (new_packet_cb):
1070         Set caps on outgoing buffers.
1071
1072 2008-09-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1073
1074         * ext/resindvd/plugin.c: (plugin_init):
1075         * ext/resindvd/resindvdsrc.c:
1076         * ext/twolame/gsttwolame.c: (plugin_init):
1077         * gst/aiffparse/aiffparse.c: (plugin_init):
1078           Enable/fix up translations for these plugins.
1079
1080         * po/LINGUAS:
1081           Add 'ca' to LINGUAS.
1082
1083         * po/POTFILES.in:
1084         * po/POTFILES.skip:
1085           Add more files for translation and more files which tools
1086           should skip.
1087
1088 2008-09-02  Edward Hervey  <edward.hervey@collabora.co.uk>
1089
1090         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_write_ts_header):
1091         Fix build on macosx.
1092
1093 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1094
1095         * gst/mpegtsmux/mpegtsmux_aac.c: (mpegtsmux_prepare_aac):
1096         Allocate a fixed size buffer on the stack instead of using malloc().
1097
1098         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_new), (tsmux_free),
1099         (tsmux_program_new), (tsmux_program_free):
1100         * gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
1101         (tsmux_stream_free), (tsmux_stream_consume),
1102         (tsmux_stream_add_data):
1103         Use GSlice.
1104
1105 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1106
1107         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_create_stream):
1108         Add support for muxing MPEG4 video.
1109
1110 2008-09-01  Edward Hervey  <edward.hervey@collabora.co.uk>
1111
1112         * gst/mpegtsmux/tsmux/tsmux.h:
1113         * gst/mpegtsmux/tsmux/tsmuxstream.h:
1114         Fix build of mpegtsmux.
1115         
1116 2008-09-01  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1117
1118         * configure.ac:
1119         * gst/mpegtsmux/Makefile.am:
1120         * gst/mpegtsmux/mpegtsmux.c: (mpegtsmux_base_init),
1121         (mpegtsmux_class_init), (mpegtsmux_init), (mpegtsmux_dispose),
1122         (gst_mpegtsmux_set_property), (gst_mpegtsmux_get_property),
1123         (release_buffer_cb), (mpegtsmux_create_stream),
1124         (mpegtsmux_create_streams), (mpegtsmux_choose_best_stream),
1125         (mpegtsmux_collected), (mpegtsmux_request_new_pad),
1126         (mpegtsmux_release_pad), (new_packet_cb),
1127         (mpegtsdemux_prepare_srcpad), (mpegtsmux_change_state),
1128         (plugin_init):
1129         * gst/mpegtsmux/mpegtsmux.h:
1130         * gst/mpegtsmux/mpegtsmux_aac.c: (mpegtsmux_prepare_aac):
1131         * gst/mpegtsmux/mpegtsmux_aac.h:
1132         * gst/mpegtsmux/mpegtsmux_h264.c: (mpegtsmux_prepare_h264):
1133         * gst/mpegtsmux/mpegtsmux_h264.h:
1134         * gst/mpegtsmux/tsmux/Makefile.am:
1135         * gst/mpegtsmux/tsmux/crc.h:
1136         * gst/mpegtsmux/tsmux/tsmux.c: (tsmux_new), (tsmux_set_write_func),
1137         (tsmux_set_pat_frequency), (tsmux_get_pat_frequency), (tsmux_free),
1138         (tsmux_program_new), (tsmux_set_pmt_frequency),
1139         (tsmux_get_pmt_frequency), (tsmux_program_add_stream),
1140         (tsmux_program_set_pcr_stream), (tsmux_get_new_pid),
1141         (tsmux_create_stream), (tsmux_find_stream), (tsmux_packet_out),
1142         (tsmux_write_adaptation_field), (tsmux_write_ts_header),
1143         (tsmux_write_stream_packet), (tsmux_program_free),
1144         (tsmux_write_section), (tsmux_write_section_hdr),
1145         (tsmux_write_pat), (tsmux_write_pmt):
1146         * gst/mpegtsmux/tsmux/tsmux.h:
1147         * gst/mpegtsmux/tsmux/tsmuxcommon.h:
1148         * gst/mpegtsmux/tsmux/tsmuxstream.c: (tsmux_stream_new),
1149         (tsmux_stream_get_pid), (tsmux_stream_free),
1150         (tsmux_stream_set_buffer_release_func), (tsmux_stream_consume),
1151         (tsmux_stream_at_pes_start), (tsmux_stream_bytes_avail),
1152         (tsmux_stream_bytes_in_buffer), (tsmux_stream_get_data),
1153         (tsmux_stream_pes_header_length),
1154         (tsmux_stream_find_pts_dts_within),
1155         (tsmux_stream_write_pes_header), (tsmux_stream_add_data),
1156         (tsmux_stream_get_es_descrs), (tsmux_stream_pcr_ref),
1157         (tsmux_stream_pcr_unref), (tsmux_stream_is_pcr),
1158         (tsmux_stream_get_pts):
1159         * gst/mpegtsmux/tsmux/tsmuxstream.h:
1160         Add Fluendo MPEG-TS muxer and libtsmux to gst-plugins-bad. This
1161         is renamed to mpegtsmux to prevent conflicts. Also all relevant
1162         informations about copyright and license are added to the top of
1163         every file but apart from that no changes compared to the latest
1164         SVN versions happened.
1165
1166 2008-09-01  Wim Taymans  <wim.taymans@collabora.co.uk>
1167
1168         * gst/selector/gstinputselector.c: (gst_input_selector_init),
1169         (gst_input_selector_event), (gst_input_selector_query):
1170         Reuse the get_linked_pads for both source and sinkpads because they are
1171         the same.
1172         Implement a custum event handler and get the internally linked pad
1173         directly instead of relying on the default (slower) implementation.
1174
1175 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1176
1177         * ext/celt/gstceltdec.c: (celt_dec_chain_parse_data):
1178         Correctly take the granulepos from upstream if possible and
1179         correctly handle the granulepos in various calculations: the
1180         granulepos is the sample number of the _last_ sample in a frame, not
1181         the first. 
1182
1183         * ext/celt/gstceltenc.c: (gst_celt_enc_sinkevent),
1184         (gst_celt_enc_encode), (gst_celt_enc_chain),
1185         (gst_celt_enc_change_state):
1186         * ext/celt/gstceltenc.h:
1187         Handle non-zero start timestamps in the encoder and detect/handle
1188         stream discontinuities. Fixes bug #547075.
1189
1190 2008-08-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1191
1192         Patch by: Rov Juvano <rovjuvano at users dot sourceforge dot net>
1193
1194         * configure.ac:
1195         * docs/plugins/Makefile.am:
1196         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1197         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1198         * docs/plugins/inspect/plugin-scaletempo.xml:
1199         * examples/scaletempo/Makefile.am:
1200         * examples/scaletempo/demo-gui.c: (pop_status_bar),
1201         (status_bar_printf), (demo_gui_seek_bar_format), (update_position),
1202         (demo_gui_seek_bar_change), (demo_gui_do_change_rate),
1203         (demo_gui_do_set_rate), (demo_gui_do_rate_entered),
1204         (demo_gui_do_toggle_advanced), (demo_gui_do_toggle_disabled),
1205         (demo_gui_do_seek), (demo_gui_do_play), (demo_gui_do_pause),
1206         (demo_gui_do_play_pause), (demo_gui_do_open_file),
1207         (demo_gui_do_playlist_prev), (demo_gui_do_playlist_next),
1208         (demo_gui_do_about_dialog), (demo_gui_do_quit),
1209         (demo_gui_request_set_stride), (demo_gui_request_set_overlap),
1210         (demo_gui_request_set_search), (demo_gui_rate_changed),
1211         (demo_gui_playing_started), (demo_gui_playing_paused),
1212         (demo_gui_playing_ended), (demo_gui_player_errored),
1213         (demo_gui_stride_changed), (demo_gui_overlap_changed),
1214         (demo_gui_search_changed), (demo_gui_set_player_func),
1215         (demo_gui_set_playlist_func), (build_gvalue_array),
1216         (create_action), (demo_gui_show_func), (demo_gui_set_player),
1217         (demo_gui_set_playlist), (demo_gui_show), (demo_gui_get_property),
1218         (demo_gui_set_property), (demo_gui_init), (demo_gui_class_init),
1219         (demo_gui_get_type):
1220         * examples/scaletempo/demo-gui.h:
1221         * examples/scaletempo/demo-main.c: (handle_error_message),
1222         (handle_quit), (main):
1223         * examples/scaletempo/demo-player.c: (no_pipeline),
1224         (demo_player_event_listener), (demo_player_state_changed_cb),
1225         (demo_player_eos_cb), (demo_player_build_pipeline), (_set_rate),
1226         (demo_player_scale_rate_func), (demo_player_set_rate_func),
1227         (_set_state_and_wait), (demo_player_load_uri_func),
1228         (demo_player_play_func), (demo_player_pause_func), (_seek_to),
1229         (demo_player_seek_by_func), (demo_player_seek_to_func),
1230         (demo_player_get_position_func), (demo_player_get_duration_func),
1231         (demo_player_scale_rate), (demo_player_set_rate),
1232         (demo_player_load_uri), (demo_player_play), (demo_player_pause),
1233         (demo_player_seek_by), (demo_player_seek_to),
1234         (demo_player_get_position), (demo_player_get_duration),
1235         (demo_player_get_property), (demo_player_set_property),
1236         (demo_player_init), (demo_player_class_init),
1237         (demo_player_get_type):
1238         * examples/scaletempo/demo-player.h:
1239         * gst/scaletempo/Makefile.am:
1240         * gst/scaletempo/gstscaletempo.c: (best_overlap_offset_float),
1241         (best_overlap_offset_s16), (output_overlap_float),
1242         (output_overlap_s16), (fill_queue), (reinit_buffers),
1243         (gst_scaletempo_transform), (gst_scaletempo_transform_size),
1244         (gst_scaletempo_sink_event), (gst_scaletempo_set_caps),
1245         (gst_scaletempo_get_property), (gst_scaletempo_set_property),
1246         (gst_scaletempo_base_init), (gst_scaletempo_class_init),
1247         (gst_scaletempo_init):
1248         * gst/scaletempo/gstscaletempo.h:
1249         * gst/scaletempo/gstscaletempoplugin.c: (plugin_init):
1250         Add scaletempo plugin, which allows to scale the speed of audio without
1251         changing the pitch by handling seeks with a rate!=1.0.
1252         Integrate it into the docs and add the example application for it.
1253         Fixes bug #537700.
1254
1255 2008-08-30  David Schleef  <ds@schleef.org>
1256
1257         * ext/dirac/gstdiracenc.cc: Fix some memleaks.
1258
1259 2008-08-29  David Schleef  <ds@schleef.org>
1260
1261         * ext/dirac/gstdiracenc.cc: Fix EOS handling.  Clean up at
1262           object disposal.  Handle 4:2:2 and 4:4:4 video.
1263
1264 2008-08-29  Jan Schmidt  <Jan.Schmidt@sun.com>
1265
1266         * ext/resindvd/resindvdbin.c:
1267         Fix compiler warning on Forte.
1268
1269 2008-08-29  Jan Schmidt  <Jan.Schmidt@sun.com>
1270
1271         * configure.ac:
1272         Commit FIONREAD check, needed for the dccp src.
1273
1274 2008-08-29  Edward Hervey  <edward.hervey@collabora.co.uk>
1275
1276         * ext/faac/gstfaac.c: (gst_faac_init), (gst_faac_sink_event),
1277         (gst_faac_chain), (gst_faac_change_state):
1278         * ext/faac/gstfaac.h:
1279         Add code for calculating proper timestamp/duration for the trailing
1280         encoded buffers that faac will output when receiving EOS.
1281
1282 2008-08-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1283
1284         * configure.ac:
1285         Fix CFLAGS and LIBS for the apexsink.
1286
1287 2008-08-28  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1288
1289         * sys/winks/ksvideohelpers.c (ks_video_media_type_free):
1290           Avoid leaking the KSDATARANGE member of each KsVideoMediaType.
1291
1292 2008-08-28  Jan Schmidt  <Jan.Schmidt@sun.com>
1293
1294         * gst/dccp/gstdccp.c:
1295         * gst/dccp/gstdccpclientsrc.c:
1296         Fix compilation on Solaris by including filio.h as needed.
1297
1298         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
1299         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
1300         Fix compilation with Forte - apparently it hates concatenating a
1301         macro argument that starts with an underscore??
1302
1303 2008-08-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1304
1305         Patch by: Jérémie Bernard <gremimail at gmail dot com>
1306
1307         * configure.ac:
1308         * ext/apexsink/LGPL-3.0.txt:
1309         * ext/apexsink/Makefile.am:
1310         * ext/apexsink/gstapexplugin.c: (plugin_init):
1311         * ext/apexsink/gstapexraop.c: (g_strdel), (gst_apexraop_send),
1312         (gst_apexraop_recv), (gst_apexraop_new), (gst_apexraop_free),
1313         (gst_apexraop_set_host), (gst_apexraop_get_host),
1314         (gst_apexraop_set_port), (gst_apexraop_get_port),
1315         (gst_apexraop_set_useragent), (gst_apexraop_get_useragent),
1316         (gst_apexraop_connect), (gst_apexraop_get_jacktype),
1317         (gst_apexraop_get_jackstatus), (gst_apexraop_close),
1318         (gst_apexraop_set_volume), (gst_apexraop_write_bits),
1319         (gst_apexraop_write), (gst_apexraop_flush):
1320         * ext/apexsink/gstapexraop.h:
1321         * ext/apexsink/gstapexsink.c: (gst_apexsink_jackstatus_get_type),
1322         (gst_apexsink_jacktype_get_type), (gst_apexsink_interfaces_init),
1323         (gst_apexsink_implements_interface_init),
1324         (gst_apexsink_mixer_interface_init),
1325         (gst_apexsink_interface_supported),
1326         (gst_apexsink_mixer_list_tracks), (gst_apexsink_mixer_set_volume),
1327         (gst_apexsink_mixer_get_volume), (gst_apexsink_base_init),
1328         (gst_apexsink_class_init), (gst_apexsink_init),
1329         (gst_apexsink_set_property), (gst_apexsink_get_property),
1330         (gst_apexsink_finalise), (gst_apexsink_open),
1331         (gst_apexsink_prepare), (gst_apexsink_write),
1332         (gst_apexsink_unprepare), (gst_apexsink_delay),
1333         (gst_apexsink_reset), (gst_apexsink_close):
1334         * ext/apexsink/gstapexsink.h:
1335         Add apexsink for audio output to Apple AirPort Express Wireless
1336         devices. Fixes bug #542510.
1337
1338 2008-08-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1339
1340         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_send_rtcp),
1341         (gst_rtp_session_event_send_rtp_sink):
1342         Send EOS when the session object instructs us to.
1343
1344         * gst/rtpmanager/rtpsession.c: (rtp_session_on_timeout):
1345         * gst/rtpmanager/rtpsession.h:
1346         Make it possible for the session manager to instruct us to send EOS. We
1347         currently will EOS when the session is a sender and when the sender part
1348         goes EOS. This is not entirely correct behaviour because the session
1349         could still participate as a receiver.
1350         Fixes #549409.
1351
1352 2008-08-27  Michael Smith <msmith@songbirdnest.com>
1353
1354         * gst/aiffparse/aiffparse.c:
1355           Read size of chunks preceeding the audio data with the
1356           correct endianness. Fixes playback of some files.
1357           Fixes #538500
1358
1359 2008-08-27  Michael Smith <msmith@songbirdnest.com>
1360
1361         * configure.ac:
1362         * gst/aiffparse/Makefile.am:
1363         * gst/aiffparse/aiffparse.c:
1364         * gst/aiffparse/aiffparse.h:
1365           Add an AIFF parsing element, heavily based on wavparse.
1366
1367 2008-08-27  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1368
1369         * sys/winks/gstksvideodevice.c (gst_ks_video_device_class_init,
1370           gst_ks_video_device_set_state):
1371           Don't set the pin state to KSSTATE_RUN from the streaming thread.
1372           Skip KSSTATE_ACQUIRE when changing pin state downwards.
1373           Be nice and specify G_PARAM_STATIC_STRINGS.
1374           Remove unused finalize method.
1375
1376         * sys/winks/gstksvideosrc.c (DEFAULT_ENABLE_QUIRKS, PROP_ENABLE_QUIRKS,
1377           enable_quirks, gst_ks_video_src_class_init, gst_ks_video_src_init,
1378           gst_ks_video_src_finalize, gst_ks_video_src_get_property,
1379           gst_ks_video_src_set_property, gst_ks_video_src_reset,
1380           gst_ks_video_src_apply_driver_quirks, gst_ks_video_src_change_state,
1381           gst_ks_video_src_set_caps):
1382           First driver quirk: work around Logitech's hostile driver software to
1383           improve stability and performance. See comments for details.
1384           Provide a property to disable driver quirks (enabled by default).
1385           Be nice and specify G_PARAM_STATIC_STRINGS.
1386           Remove unused dispose method.
1387           Tweak include order.
1388
1389 2008-08-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1390
1391         * gst/selector/gstinputselector.c: (gst_input_selector_init),
1392         (gst_input_selector_query):
1393         Implement the LATENCY query in a better way by taking the latency of all
1394         sinkpads and taking the min/max instead of just taking a random pad.
1395
1396 2008-08-26  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1397
1398         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1399         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
1400         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
1401         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
1402         Unroll the loop to handle two bytes at once. This should give
1403         a small speedup and makes it possible to handle chroma and luma
1404         different which is needed later.
1405
1406 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1407
1408         * gst/dccp/gstdccpserversink.c:
1409         * gst/dccp/gstdccpserversink.h:
1410         Don't put globals only used by one '.c' file in a header !
1411         Declare it as static, fixes build on macosx.
1412
1413 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1414
1415         * gst/dccp/gstdccp.c: (gst_dccp_send_buffer):
1416         Whoops, that was one fix too much :)
1417
1418 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1419
1420         * gst/dccp/gstdccp.c: (gst_dccp_read_buffer),
1421         (gst_dccp_send_buffer), (gst_dccp_set_sock_windowsize):
1422         size_t's size varies by platform/architecture. Use glib convenience
1423         macro instead. Fixes build on macosx.
1424         Remove ending '\n' in debug statements.
1425
1426 2008-08-26  Edward Hervey  <edward.hervey@collabora.co.uk>
1427
1428         * gst/pcapparse/gstpcapparse.c: (gst_pcap_parse_class_init):
1429         Remove unused code and fix includes.
1430
1431 2008-08-25  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1432
1433         * gst/deinterlace2/gstdeinterlace2.c:
1434         (gst_deinterlace_method_class_init):
1435         * gst/deinterlace2/gstdeinterlace2.h:
1436         * gst/deinterlace2/tvtime/tomsmocomp.c:
1437         (gst_deinterlace_method_tomsmocomp_class_init):
1438         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1439         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
1440         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
1441         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
1442         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
1443         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
1444         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
1445         First part of the C implementation of the tomsmocomp deinterlacing
1446         algorithm. This only supports search-effort=0 currently, is painfully
1447         slow and needs some cleanup later when all search-effort settings
1448         are implemented in C.
1449
1450 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1451
1452         * configure.ac:
1453         * sys/Makefile.am:
1454         * sys/winks/Makefile.am:
1455         * sys/winks/gstksclock.c:
1456         * sys/winks/gstksclock.h:
1457         * sys/winks/gstksvideodevice.c:
1458         * sys/winks/gstksvideodevice.h:
1459         * sys/winks/gstksvideosrc.c:
1460         * sys/winks/gstksvideosrc.h:
1461         * sys/winks/kshelpers.c:
1462         * sys/winks/kshelpers.h:
1463         * sys/winks/ksvideohelpers.c:
1464         * sys/winks/ksvideohelpers.h:
1465           New plugin for low-latency video capture on Windows (#519935).
1466
1467           Uses Kernel Streaming, the lowest level API for doing video capture
1468           on Windows (more or less just raw ioctls).
1469
1470 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1471
1472         * gst/pcapparse/gstpcapparse.c:
1473         * sys/winscreencap/gstdx9screencapsrc.c:
1474         * sys/winscreencap/gstgdiscreencapsrc.c:
1475           Added documentation blobs. Thanks to Stefan for noticing!
1476
1477 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1478
1479         * configure.ac:
1480         * gst/pcapparse/Makefile.am:
1481         * gst/pcapparse/gstpcapparse.c:
1482         * gst/pcapparse/gstpcapparse.h:
1483           New plugin: pcapparse (#520899).
1484
1485 2008-08-24  Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1486
1487         patch by: Haakon Sporsheim <hakon.sporsheim@tandberg.com>
1488
1489         * configure.ac:
1490         * sys/Makefile.am:
1491         * sys/winscreencap/Makefile.am:
1492         * sys/winscreencap/gstdx9screencapsrc.c:
1493         * sys/winscreencap/gstdx9screencapsrc.h:
1494         * sys/winscreencap/gstgdiscreencapsrc.c:
1495         * sys/winscreencap/gstgdiscreencapsrc.h:
1496         * sys/winscreencap/gstwinscreencap.c:
1497         * sys/winscreencap/gstwinscreencap.h:
1498           New plugin: winscreencap (#463941).
1499
1500 2008-08-22  Michael Smith <msmith@songbirdnest.com>
1501
1502         * sys/dshowdecwrapper/gstdshowaudiodec.c:
1503           Flip mpeg1/mpeg2 arrays for mpeg audio. Detect which type the audio
1504           is correctly, instead of backwards. No functional changes, since this
1505           mistake was completely self-consistent.
1506
1507 2008-08-22  Stefan Kost  <ensonic@users.sf.net>
1508
1509         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1510           Add, but commented out xml/element-dc1394.xml. Its documented, but
1511           I can't get it to be build.
1512
1513         * ext/celt/gstceltdec.c:
1514         * ext/celt/gstceltenc.c:
1515           Fix doc warnings and reformat the doc block.
1516
1517 2008-08-21  Stefan Kost  <ensonic@users.sf.net>
1518
1519         patch by: Leandro Melo de Sales <leandroal@gmail.com>
1520
1521         * configure.ac:
1522         * docs/plugins/Makefile.am:
1523         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1524         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1525         * docs/plugins/gst-plugins-bad-plugins.args:
1526         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1527         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1528         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1529         * docs/plugins/gst-plugins-bad-plugins.signals:
1530         * docs/plugins/inspect/plugin-dccp.xml:
1531         * gst/dccp/Makefile.am:
1532         * gst/dccp/gstdccp.c:
1533         * gst/dccp/gstdccp.h:
1534         * gst/dccp/gstdccpclientsink.c:
1535         * gst/dccp/gstdccpclientsink.h:
1536         * gst/dccp/gstdccpclientsrc.c:
1537         * gst/dccp/gstdccpclientsrc.h:
1538         * gst/dccp/gstdccpplugin.c:
1539         * gst/dccp/gstdccpserversink.c:
1540         * gst/dccp/gstdccpserversink.h:
1541         * gst/dccp/gstdccpserversrc.c:
1542         * gst/dccp/gstdccpserversrc.h:
1543         * tests/icles/dccp/README:
1544         * tests/icles/dccp/call/README:
1545         * tests/icles/dccp/call/DCCPClient.c:
1546         * tests/icles/dccp/call/DCCPServer.c:
1547         * tests/icles/dccp/file/DCCPClientSaveFile.c:
1548         * tests/icles/dccp/file/DCCPServerSendFile.c:
1549         * tests/icles/dccp/mic/DCCPClientPlayMic.c:
1550         * tests/icles/dccp/mic/DCCPServerMic.c:
1551         * tests/icles/dccp/mp3/DCCPClientPlayMP3.c:
1552         * tests/icles/dccp/mp3/DCCPServerSendMP3.c:
1553         * tests/icles/dccp/mp3Speex/DCCPClientPlaySpeexMP3.c:
1554         * tests/icles/dccp/mp3Speex/DCCPServerSendSpeexMP3.c:
1555         * tests/icles/dccp/mp3Stream/DCCPClientPlayMP3Stream.c:
1556         * tests/icles/dccp/mp3Stream/DCCPServerSendMP3Stream.c:
1557           Add dccp plugin. Fixes #542390.
1558
1559 2008-08-20  Tim-Philipp Müller  <tim at collabora co uk>
1560
1561         * configure.ac:
1562           Remove bits that presumably weren't supposed to be committed.
1563
1564 2008-08-20  Michael Smith <msmith@songbirdnest.com>
1565
1566         * configure.ac:
1567         * sys/Makefile.am:
1568         * sys/acmenc/Makefile.am:
1569         * sys/acmenc/acmenc.c:
1570           Add new windows ACM encoder wrapper.
1571
1572 2008-08-18  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1573
1574         patch by: Michael Krufky
1575
1576         * sys/dvb/gstdvbsrc.c:
1577         * sys/dvb/parsechannels.c:
1578         Add ATSC tunning and channels.conf parsing support.
1579         Fixes #537455
1580
1581 2008-08-13  Michael Smith <msmith@songbirdnest.com>
1582
1583         * sys/dshowdecwrapper/gstdshowaudiodec.c:
1584         * sys/dshowdecwrapper/gstdshowaudiodec.h:
1585         * sys/dshowdecwrapper/gstdshowvideodec.c:
1586         * sys/dshowdecwrapper/gstdshowvideodec.h:
1587         * sys/dshowvideosink/dshowvideosink.cpp:
1588         * sys/dshowvideosink/dshowvideosink.h:
1589           Initialise COM with default flags.
1590           Only deinitialise if the initialisation was successful.
1591
1592 2008-08-13  Wim Taymans  <wim.taymans@collabora.co.uk>
1593
1594         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
1595         (gst_rtp_bin_sync_chain), (new_ssrc_pad_found):
1596         Reset rtp timestamp interpollation when we detect a gap when the
1597         clock_base changed.
1598         Don't try to adjust the ts-offset when it's too big (> 3seconds)
1599
1600         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_set_ssrc):
1601         * gst/rtpmanager/gstrtpsession.h:
1602         Add method to set session SSRC.
1603
1604         * gst/rtpmanager/rtpsession.c: (check_collision),
1605         (rtp_session_set_internal_ssrc), (rtp_session_get_internal_ssrc),
1606         (rtp_session_on_timeout):
1607         * gst/rtpmanager/rtpsession.h:
1608         Added debugging for the collision checks.
1609         Add method to change the internal SSRC of the session.
1610
1611         * gst/rtpmanager/rtpsource.c: (rtp_source_process_rtp):
1612         Reset the clock base when we detect large jumps in the seqnums.
1613
1614 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1615
1616         * ext/x264/gstx264enc.c: (gst_x264_enc_reset),
1617         (gst_x264_enc_chain), (gst_x264_enc_encode_frame):
1618         * ext/x264/gstx264enc.h:
1619         Do not deal with duplicated input (timestamps).  If needed,
1620         a generic element can do so.
1621         Do not manipulate input timestamps on the way out,
1622         since that shifts the timeline and A/V sync.
1623
1624 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1625
1626         * docs/plugins/gst-plugins-bad-plugins.args:
1627         Integrate new properties into documentation.
1628         * ext/x264/gstx264enc.c: (gst_x264_enc_class_init),
1629         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1630         (gst_x264_enc_set_property), (gst_x264_enc_get_property):
1631         Fix up API prior to eventual plugin move.
1632         API: GstX264Enc:pass (provides more options, and changed to enum)
1633
1634 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1635
1636         * docs/plugins/Makefile.am:
1637         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1638         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1639         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1640         * docs/plugins/inspect/plugin-mplex.xml:
1641         * ext/mplex/gstmplex.cc:
1642         Update and add documentation for mplex.
1643         * ext/mpeg2enc/gstmpeg2enc.cc:
1644         Documentation update.
1645
1646 2008-08-12  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1647
1648         * docs/plugins/Makefile.am:
1649         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1650         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1651         * ext/x264/gstx264enc.c:
1652         * tests/check/Makefile.am:
1653         * tests/check/elements/x264enc.c: (setup_x264enc),
1654         (cleanup_x264enc), (GST_START_TEST), (x264enc_suite), (main):
1655         Add documentation and unit test for x264enc.
1656
1657 2008-08-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1658
1659         * ext/x264/gstx264enc.c: (gst_x264_enc_init),
1660         (gst_x264_enc_header_buf), (gst_x264_enc_encode_frame):
1661         Allocate some buffers in more adaptive and economical fashion.
1662
1663 2008-08-11  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1664
1665         * configure.ac:
1666         Check for sufficiently up-to-date x264 API.
1667         * ext/x264/gstx264enc.c: (gst_x264_enc_pass_get_type),
1668         (gst_x264_enc_base_init), (gst_x264_enc_class_init),
1669         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1670         (gst_x264_enc_set_property), (gst_x264_enc_get_property):
1671         * ext/x264/gstx264enc.h:
1672         Expose some more parameters of the x264 encoder as properties.
1673
1674 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
1675
1676         * gst/rtpmanager/gstrtpbin.c:
1677           Print the pad-name in debug log.
1678
1679         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
1680         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
1681           Use "-" instead of "_" in property names. Can we call them just
1682           "device" like everywhere else?
1683
1684 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1685
1686         * ext/x264/gstx264enc.c: (gst_x264_enc_log_callback),
1687         (gst_x264_enc_finalize), (gst_x264_enc_header_buf),
1688         (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps),
1689         (gst_x264_enc_flush_frames):
1690         Coding style and layout; re-order some functions in more
1691         typical and natural flow.
1692
1693 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1694
1695         * ext/x264/Makefile.am:
1696         * ext/x264/gstx264enc.c: (gst_x264_enc_set_src_caps),
1697         (gst_x264_enc_sink_set_caps), (gst_x264_enc_init),
1698         (gst_x264_enc_reset), (gst_x264_enc_finalize),
1699         (gst_x264_enc_flush_frames), (gst_x264_enc_sink_event),
1700         (gst_x264_enc_chain), (gst_x264_enc_encode_frame),
1701         (gst_x264_enc_change_state), (gst_x264_enc_set_property):
1702         * ext/x264/gstx264enc.h:
1703         Use GQueue in stead of custom queue code.
1704         Factorize flushing out encoder delayed frames.
1705         Factorize initialization and state change reset.
1706
1707 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1708
1709         * ext/x264/gstx264enc.h:
1710         * sys/fbdev/gstfbdevsink.c:
1711         Use configure-generated _stdint.h.
1712
1713 2008-08-08  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
1714
1715         * ext/x264/Makefile.am:
1716         * ext/x264/gstx264enc.c: (gst_x264_enc_header_buf),
1717         (gst_x264_enc_sink_set_caps), (gst_x264_enc_base_init),
1718         (gst_x264_enc_class_init), (gst_x264_enc_log_callback),
1719         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
1720         (gst_x264_enc_finalize), (gst_x264_enc_chain),
1721         (gst_x264_enc_encode_frame), (plugin_init):
1722         * ext/x264/gstx264enc.h:
1723         Use video format library and GST_WRITE_*_BE macros where applicable.
1724         Use finalize in stead of dispose.
1725         Set up debug category and log callback.
1726
1727 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
1728
1729         Patch by: Frederic Crozat <fcrozat@mandriva.org>
1730
1731         * ext/sndfile/gstsf.c: (plugin_init):
1732         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_plugin_init):
1733         * sys/oss4/oss4-audio.c: (plugin_init):
1734         Make sure gettext returns translations in UTF-8 encoding rather
1735         than in the current locale encoding (#546822).
1736
1737 2008-08-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1738
1739         * ext/twolame/gsttwolame.c: (gst_two_lame_sink_setcaps),
1740         (gst_two_lame_chain):
1741         * ext/twolame/gsttwolame.h:
1742         Allow raw float samples as input for encoding.
1743
1744 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1745
1746         * ext/jack/gstjackaudiosrc.c:
1747           Try committing this once again. Now properly renamed.
1748
1749 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1750
1751         * docs/plugins/Makefile.am:
1752         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1753         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1754         * docs/plugins/gst-plugins-bad-plugins.args:
1755         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1756         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1757         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1758         * docs/plugins/inspect/plugin-jack.xml
1759           Add new element to docs.
1760
1761         * ext/jack/gstjack.h
1762           Add missing file.
1763
1764         * ext/jack/gstjackaudiosrc.c:
1765         * ext/jack/gstjackaudiosrc.h:
1766           Rename jackaudiosrc to jack_audio_src.
1767
1768 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
1769
1770         patch by: Tristan Matthews <tristan@sat.qc.ca>
1771
1772         * ext/jack/Makefile.am:
1773         * ext/jack/gstjack.c:
1774         * ext/jack/gstjackaudioclient.c:
1775         * ext/jack/gstjackaudiosink.c:
1776         * ext/jack/gstjackaudiosink.h:
1777         * ext/jack/gstjackaudiosrc.c:
1778         * ext/jack/gstjackaudiosrc.h:
1779         * ext/jack/gstjackringbuffer.h:
1780           Add a jackaudiosrc. Refactor sink slightly for better code reuse.
1781           Fixes #545197.
1782
1783 2008-08-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1784
1785         * docs/plugins/Makefile.am:
1786         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
1787         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
1788         * docs/plugins/gst-plugins-bad-plugins.args:
1789         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
1790         * docs/plugins/gst-plugins-bad-plugins.interfaces:
1791         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
1792         * docs/plugins/inspect/plugin-celt.xml:
1793         * docs/plugins/inspect/plugin-twolame.xml:
1794         Add twolame and celt plugins to the docs.
1795
1796 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1797
1798         Based on patch by: Olivier Crete <tester at tester dot ca>
1799
1800         * gst/rtpmanager/gstrtpjitterbuffer.c:
1801         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
1802         Make the buffer metadata writable before inserting it in the
1803         jitterbuffer because the jitterbuffer will modify the timestamps.
1804
1805         * gst/rtpmanager/rtpjitterbuffer.c:
1806         Update method comment about requiring writable metadata on buffers.
1807
1808         * gst/rtpmanager/rtpsession.c: (rtp_session_process_sr),
1809         (rtp_session_process_rtcp):
1810         Make the RTCP buffer metadata writable because we want to modify the
1811         metadata.
1812         Fixes #546312.
1813
1814 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1815
1816         * gst/selector/gstinputselector.c: (gst_selector_pad_bufferalloc),
1817         (gst_selector_pad_chain), (gst_input_selector_getcaps),
1818         (gst_input_selector_activate_sinkpad):
1819         Move the select-all logic into the activation of the currently selected
1820         pad. We want to remember the last pad with activity in select-all mode.
1821         Fix the getcaps function, we can produce the union of the upstream caps
1822         in select-all mode, not the intersection like proxy_getcaps() does.
1823
1824 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1825
1826         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
1827
1828         * gst/rtpmanager/gstrtpjitterbuffer.c:
1829         (gst_rtp_jitter_buffer_chain):
1830         Fix debug by logging the right seqnum.
1831
1832 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
1833
1834         Patch by: Olivier Crete <tester at tester dot ca>
1835
1836         * gst/rtpmanager/gstrtpbin.c: (get_pt_map):
1837         Release lock before emitting the request-pt-map signal.
1838         Fixes #543480.
1839
1840 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1841
1842         * gst/deinterlace2/gstdeinterlace2.c:
1843         (gst_deinterlace_simple_method_interpolate_scanline),
1844         (gst_deinterlace_simple_method_copy_scanline),
1845         (gst_deinterlace_simple_method_deinterlace_frame):
1846         * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy):
1847         * gst/deinterlace2/tvtime/greedyh.c:
1848         (deinterlace_frame_di_greedyh):
1849         * gst/deinterlace2/tvtime/scalerbob.c:
1850         (deinterlace_scanline_scaler_bob):
1851         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy):
1852         * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave),
1853         (copy_scanline):
1854         * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave),
1855         (copy_scanline):
1856         * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave),
1857         (copy_scanline):
1858         Use oil_memcpy() instead of memcpy() as it's faster for the sizes that
1859         are usually used here.
1860
1861 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1862
1863         * gst/deinterlace2/Makefile.am:
1864         * gst/deinterlace2/gstdeinterlace2.c:
1865         (gst_deinterlace_simple_method_deinterlace_frame),
1866         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method):
1867         * gst/deinterlace2/gstdeinterlace2.h:
1868         * gst/deinterlace2/tvtime/linear.c:
1869         (deinterlace_scanline_linear_c), (deinterlace_scanline_linear_mmx),
1870         (deinterlace_scanline_linear_mmxext),
1871         (gst_deinterlace_method_linear_class_init),
1872         (gst_deinterlace_method_linear_init):
1873         * gst/deinterlace2/tvtime/linearblend.c:
1874         (deinterlace_scanline_linear_blend_c),
1875         (deinterlace_scanline_linear_blend2_c),
1876         (deinterlace_scanline_linear_blend_mmx),
1877         (deinterlace_scanline_linear_blend2_mmx),
1878         (gst_deinterlace_method_linear_blend_class_init),
1879         (gst_deinterlace_method_linear_blend_init):
1880         * gst/deinterlace2/tvtime/plugins.h:
1881         * gst/deinterlace2/tvtime/scalerbob.c:
1882         (deinterlace_scanline_scaler_bob),
1883         (gst_deinterlace_method_scaler_bob_class_init),
1884         (gst_deinterlace_method_scaler_bob_init):
1885         * gst/deinterlace2/tvtime/weave.c: (deinterlace_scanline_weave),
1886         (copy_scanline), (gst_deinterlace_method_weave_class_init),
1887         (gst_deinterlace_method_weave_init):
1888         * gst/deinterlace2/tvtime/weavebff.c: (deinterlace_scanline_weave),
1889         (copy_scanline), (gst_deinterlace_method_weave_bff_class_init),
1890         (gst_deinterlace_method_weave_bff_init):
1891         * gst/deinterlace2/tvtime/weavetff.c: (deinterlace_scanline_weave),
1892         (copy_scanline), (gst_deinterlace_method_weave_tff_class_init),
1893         (gst_deinterlace_method_weave_tff_init):
1894         Add the remaining tvtime deinterlacing methods and fix the
1895         deinterlace_frame() implementation of GstDeinterlaceSimpleMethod.
1896
1897 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1898
1899         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
1900         (deinterlace_line_mmx), (gst_deinterlace_method_vfir_class_init):
1901         Implement the VFIR deinterlacing method as simple method.
1902
1903 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1904
1905         * gst/deinterlace2/gstdeinterlace2.c:
1906         (gst_deinterlace_simple_method_interpolate_scanline),
1907         (gst_deinterlace_simple_method_copy_scanline),
1908         (gst_deinterlace_simple_method_deinterlace_frame),
1909         (gst_deinterlace_simple_method_class_init),
1910         (gst_deinterlace_simple_method_init):
1911         * gst/deinterlace2/gstdeinterlace2.h:
1912         Add a GstDeinterlaceSimpleMethod subclass of GstDeinterlaceMethod that
1913         can be used by simple deinterlacing methods. They only have to provide
1914         a function for interpolating a scanline or copying a scanline.
1915
1916 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1917
1918         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_chain):
1919         Respect the latency of the deinterlacing algorithm for the timestamps
1920         of every buffer.
1921
1922 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1923
1924         * gst/deinterlace2/tvtime/greedyh.asm:
1925         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
1926         Add the MMX registers to the clobbered registers only if __MMX__ is
1927         defined.
1928
1929 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1930
1931         * gst/deinterlace2/Makefile.am:
1932         * gst/deinterlace2/gstdeinterlace2.c:
1933         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method),
1934         (gst_deinterlace2_class_init):
1935         Enable tomsmocomp again as the C port will be ready for the next
1936         release.
1937
1938 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1939
1940         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_init),
1941         (gst_greatest_common_divisor), (gst_fraction_double),
1942         (gst_deinterlace2_getcaps), (gst_deinterlace2_setcaps):
1943         Don't use proxy_getcaps() but implement our own getcaps() function
1944         that doubles/halfs the framerate if all fields should be sent out.
1945
1946 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1947
1948         * configure.ac:
1949         * ext/Makefile.am:
1950         * ext/twolame/Makefile.am:
1951         * ext/twolame/gsttwolame.c: (gst_two_lame_mode_get_type),
1952         (gst_two_lame_padding_get_type), (gst_two_lame_emphasis_get_type),
1953         (gst_two_lame_release_memory), (gst_two_lame_finalize),
1954         (gst_two_lame_base_init), (gst_two_lame_class_init),
1955         (gst_two_lame_src_setcaps), (gst_two_lame_sink_setcaps),
1956         (gst_two_lame_init), (gst_two_lame_set_property),
1957         (gst_two_lame_get_property), (gst_two_lame_sink_event),
1958         (gst_two_lame_chain), (gst_two_lame_setup),
1959         (gst_two_lame_change_state), (gst_two_lame_get_default_settings),
1960         (plugin_init):
1961         * ext/twolame/gsttwolame.h:
1962         Add TwoLAME MP2 encoding element, based on the LAME element.
1963
1964 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1965
1966         * configure.ac:
1967         * ext/Makefile.am:
1968         * ext/celt/Makefile.am:
1969         * ext/celt/gstcelt.c: (plugin_init):
1970         * ext/celt/gstceltdec.c: (gst_celt_dec_base_init),
1971         (gst_celt_dec_class_init), (gst_celt_dec_reset),
1972         (gst_celt_dec_init), (celt_dec_convert),
1973         (celt_get_sink_query_types), (celt_dec_sink_query),
1974         (celt_get_src_query_types), (celt_dec_src_query),
1975         (celt_dec_src_event), (celt_dec_sink_event),
1976         (celt_dec_chain_parse_header), (celt_dec_chain_parse_comments),
1977         (celt_dec_chain_parse_data), (celt_dec_chain),
1978         (celt_dec_change_state):
1979         * ext/celt/gstceltdec.h:
1980         * ext/celt/gstceltenc.c: (gst_celt_enc_setup_interfaces),
1981         (gst_celt_enc_base_init), (gst_celt_enc_class_init),
1982         (gst_celt_enc_finalize), (gst_celt_enc_sink_setcaps),
1983         (gst_celt_enc_sink_getcaps), (gst_celt_enc_convert_src),
1984         (gst_celt_enc_convert_sink), (gst_celt_enc_get_latency),
1985         (gst_celt_enc_get_query_types), (gst_celt_enc_src_query),
1986         (gst_celt_enc_sink_query), (gst_celt_enc_init),
1987         (gst_celt_enc_create_metadata_buffer), (gst_celt_enc_setup),
1988         (gst_celt_enc_buffer_from_data), (gst_celt_enc_push_buffer),
1989         (gst_celt_enc_set_header_on_caps), (gst_celt_enc_sinkevent),
1990         (gst_celt_enc_chain), (gst_celt_enc_get_property),
1991         (gst_celt_enc_set_property), (gst_celt_enc_change_state):
1992         * ext/celt/gstceltenc.h:
1993         Add CELT encoder and decoder elements based on the Speex elements.
1994
1995 2008-08-02  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1996
1997         Patch by: Tal Shalif <tshalif at nargila dot org>
1998
1999         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_initsdl):
2000         Use g_setenv() and g_unsetenv() instead of setenv() to fix compilation
2001         with mingw. Fixes bug #545247.
2002
2003 2008-08-02  Jan Schmidt  <jan.schmidt@sun.com>
2004
2005         * configure.ac:
2006         Back to development -> 0.10.8.1
2007
2008 === release 0.10.8 ===
2009
2010 2008-07-28  Jan Schmidt <jan.schmidt@sun.com>
2011
2012         * configure.ac:
2013           releasing 0.10.8, "Vapour Trails"
2014
2015 2008-07-25  Jan Schmidt  <jan.schmidt@sun.com>
2016
2017         * configure.ac:
2018         0.10.7.3 pre-release
2019
2020         * po/LINGUAS:
2021         * po/id.po:
2022         Add Indonesian translation.
2023
2024 2008-07-23  Michael Smith <msmith@songbirdnest.com>
2025
2026         * gst/festival/gstfestival.c:
2027           Guard unistd.h with HAVE_UNISTD_H
2028         * gst/modplug/libmodplug/load_it.cpp:
2029         * gst/modplug/libmodplug/sndfile.cpp:
2030         * gst/modplug/libmodplug/sndfile.h:
2031         * gst/modplug/libmodplug/stdafx.h:
2032           Support for compiling with MSVC: use _MSC_VER for detecting MSVC instead
2033           of MSC_VER. Make CanPackSamples take the type it's passed. Change scope
2034           of a variable in load_it.cpp to MSVC's scoping rules.
2035         * gst/sdp/gstsdpdemux.c:
2036           Guard unistd.h with HAVE_UNISTD_H
2037           Fixes #544457.
2038
2039 2008-07-22  Stefan Kost  <ensonic@users.sf.net>
2040
2041         * ext/timidity/gsttimidity.c:
2042           Fix compiler warning. Fixes #544050.
2043
2044 2008-07-21  Jan Schmidt  <jan.schmidt@sun.com>
2045
2046         * configure.ac:
2047         Don't check for nav_print.h any more - it should be included in
2048         the libdvdnav development package if libdvdnav headers depend on it.
2049         Fixes: #543846
2050
2051 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2052
2053         * configure.ac:
2054         * ext/ladspa/Makefile.am:
2055         Link the ladspa plugin with -ldl. It's needed for dlopen() and friends
2056         for loading the ladspa plugins and previously was linked in by
2057         gmodule. Fixes bug #543848.
2058
2059 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2060
2061         * gst/modplug/libmodplug/Makefile.am:
2062         Use GST_CXXFLAGS instead of GST_CFLAGS for CXXFLAGS. GST_CFLAGS
2063         can contain compiler parameters that are invalid for C++.
2064         Fixes bug #543860.
2065
2066 2008-07-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2067
2068         * ext/resindvd/Makefile.am:
2069         Dist missing header files. Fixes bug #543861.
2070
2071 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2072
2073         * configure.ac:
2074         0.10.7.2 pre-release
2075
2076 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2077
2078         * ext/Makefile.am:
2079         Dist and recurse into resindvd subdir
2080
2081 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2082
2083         * configure.ac:
2084         Remove interleave and replaygain configure.ac pieces too
2085
2086 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2087
2088         * po/LINGUAS:
2089         * po/lt.po:
2090         Add new lithunian translation, and add french to the LINGUAS
2091         file.
2092
2093 2008-07-19  Jan Schmidt  <jan.schmidt@sun.com>
2094
2095         * docs/plugins/Makefile.am:
2096         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2097         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2098         * docs/plugins/gst-plugins-bad-plugins.args:
2099         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
2100         * docs/plugins/gst-plugins-bad-plugins.interfaces:
2101         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
2102         * docs/plugins/inspect/plugin-interleave.xml:
2103         * docs/plugins/inspect/plugin-replaygain.xml:
2104         * gst/interleave/Makefile.am:
2105         * gst/interleave/deinterleave.c:
2106         * gst/interleave/deinterleave.h:
2107         * gst/interleave/interleave.c:
2108         * gst/interleave/interleave.h:
2109         * gst/interleave/plugin.c:
2110         * gst/interleave/plugin.h:
2111         * gst/replaygain/Makefile.am:
2112         * gst/replaygain/gstrganalysis.c:
2113         * gst/replaygain/gstrganalysis.h:
2114         * gst/replaygain/gstrglimiter.c:
2115         * gst/replaygain/gstrglimiter.h:
2116         * gst/replaygain/gstrgvolume.c:
2117         * gst/replaygain/gstrgvolume.h:
2118         * gst/replaygain/replaygain.c:
2119         * gst/replaygain/replaygain.h:
2120         * gst/replaygain/rganalysis.c:
2121         * gst/replaygain/rganalysis.h:
2122         * tests/check/Makefile.am:
2123         * tests/check/elements/deinterleave.c:
2124         * tests/check/elements/interleave.c:
2125         * tests/check/elements/rganalysis.c:
2126         * tests/check/elements/rglimiter.c:
2127         * tests/check/elements/rgvolume.c:
2128         Remove interleave and replaygain plugins that have moved to -good
2129
2130 2008-07-18  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2131
2132         * configure.ac:
2133         * gst/deinterlace2/Makefile.am:
2134         * gst/deinterlace2/gstdeinterlace2.c:
2135         (gst_deinterlace2_methods_get_type), (gst_deinterlace2_set_method),
2136         (gst_deinterlace2_class_init), (gst_deinterlace2_init):
2137         * gst/deinterlace2/gstdeinterlace2.h:
2138         * gst/deinterlace2/tvtime/greedy.c:
2139         (gst_deinterlace_method_greedy_l_class_init):
2140         * gst/deinterlace2/tvtime/greedyh.c:
2141         (gst_deinterlace_method_greedy_h_class_init):
2142         * gst/deinterlace2/tvtime/vfir.c:
2143         (gst_deinterlace_method_vfir_class_init):
2144         Disable the tomsmocomp algorithm for this release as it's buggy
2145         and has no C implementation yet.
2146
2147         Build the deinterlace2 plugin on all architectures but still mark it
2148         as experimental.
2149         
2150         Build the x86 inline assembly only if GCC inline assembly is supported
2151         and only on x86 or amd64. Fixes bug #543286.
2152
2153 2008-07-16  Jan Schmidt  <Jan.Schmidt@sun.com>
2154
2155         * gst/real/gstrealvideodec.c: (open_library):
2156         Add some casts to fix the build on Forte
2157
2158 2008-07-14  Edward Hervey  <edward.hervey@collabora.co.uk>
2159
2160         * gst/deinterlace2/tvtime/greedy.c:
2161         (gst_deinterlace_method_greedy_l_class_init):
2162         * gst/deinterlace2/tvtime/greedyh.c:
2163         (gst_deinterlace_method_greedy_h_class_init):
2164         * gst/deinterlace2/tvtime/vfir.c:
2165         (gst_deinterlace_method_vfir_class_init):
2166         Fix build on x86_64
2167
2168 2008-07-14  Jan Schmidt  <thaytan@noraisin.net>
2169
2170         * ext/resindvd/gstmpegdemux.c:
2171         Remove whitespace line.
2172
2173         * ext/resindvd/resindvdbin.c:
2174         * ext/resindvd/resindvdbin.h:
2175         Make it so that audio/video pads aren't added to the bin
2176         until after data flow starts.
2177
2178         * ext/resindvd/resin-play:
2179         Move video buffer queue outside resindvdbin
2180
2181         * ext/resindvd/resindvdsrc.c:
2182         Check that the nav_clock_id didn't already get unscheduled.
2183
2184         * gst/dvdspu/gstdvdspu.c:
2185         Remove assert that sometimes triggers erroneously.
2186
2187 2008-07-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2188
2189         * gst/deinterlace2/tvtime/greedyh.asm:
2190         Always use the C implementation if width is not a multiple of 4. The
2191         assembly optimized version only handle this and calling the C
2192         implementation for the remaining part doesn't work because it needs
2193         previous calculations.
2194
2195 2008-07-13  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2196
2197         * gst/deinterlace2/tvtime/greedyh.asm:
2198         * gst/deinterlace2/tvtime/greedyh.c:
2199         * gst/deinterlace2/tvtime/greedyhmacros.h:
2200         Some cleanup, use 3DNOW instead of TDNOW in macros.
2201
2202         * gst/deinterlace2/tvtime/tomsmocomp.c:
2203         (gst_deinterlace_method_tomsmocomp_class_init):
2204         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2205         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2206         The SSE method in fact only needs MMXEXT, declare it as such.
2207
2208 2008-07-11  Jan Schmidt  <thaytan@noraisin.net>
2209
2210         * docs/plugins/.cvsignore:
2211         Ignore *-undeclared.txt
2212
2213         * ext/resindvd/rsnaudiomunge.c:
2214         Turn g_print's into debug statements.
2215
2216         * ext/resindvd/resin-play:
2217         * ext/resindvd/Makefile.am:
2218         * ext/resindvd/resindvdbin.c:
2219         * ext/resindvd/resindvdbin.h:
2220         * ext/resindvd/rsnparsetter.c:
2221         * ext/resindvd/rsnparsetter.h:
2222         * ext/resindvd/rsnwrappedbuffer.c:
2223         * ext/resindvd/rsnwrappedbuffer.h:
2224         Add a bloated implementation of a really simple idea: Replace the
2225         pixel-aspect-ratio in the output video with a prescribed one when
2226         necessary. There must be an easier way.
2227
2228         Split the dvdspu out of the resindvdbin and put out the subpicture
2229         stream on the subpicture pad.
2230
2231         * ext/resindvd/gstmpegdemux.c:
2232         Send video-aspect events down the pipe from the demuxer.
2233
2234         * ext/resindvd/resindvdsrc.c:
2235         * ext/resindvd/resindvdsrc.h:
2236         Handle timed-stills somewhat using g_cond_timed_wait, with a FIXME
2237         to make it use clock-waiting later.
2238
2239         * ext/resindvd/rsnbasesrc.c:
2240         Don't overwrite the last_stop in the basesrc segment after a seamless
2241         seek.
2242
2243 2008-07-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2244
2245         * gst/mpegtsparse/mpegtspacketizer.c:
2246         Convert extended event text to UTF-8.
2247
2248 2008-07-10  Stefan Kost  <ensonic@users.sf.net>
2249
2250         * docs/plugins/Makefile.am:
2251         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2252         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2253         * docs/plugins/gst-plugins-bad-plugins.args:
2254         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
2255         * docs/plugins/gst-plugins-bad-plugins.interfaces:
2256         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
2257         * docs/plugins/gst-plugins-bad-plugins.signals:
2258         * docs/plugins/inspect/plugin-stereo.xml:
2259         * gst/stereo/gststereo.c:
2260           Document one more.
2261
2262 2008-07-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2263
2264         * gst/mpegtsparse/gstmpegdesc.h:
2265         Fix extended event descriptor parsing, out by 1 in position of
2266         text length.
2267
2268 2008-07-09  Stefan Kost  <ensonic@users.sf.net>
2269
2270         * gst/festival/gstfestival.c:
2271           Add a note to the docs, that festival need to be running. Also log an
2272           error it it is not. Fixes #541327
2273
2274 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2275
2276         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2277
2278         * gst/librfb/gstrfbsrc.c:
2279         * gst/librfb/gstrfbsrc.h:
2280         Add view-only property to ignore the navigation events
2281
2282 2008-07-08  Michael Smith <msmith@songbirdnest.com>
2283
2284         * sys/dshowdecwrapper/gstdshowaudiodec.c:
2285           Revert previous patch apart from typo fixes; the patch was not
2286           independently useful.
2287
2288 2008-07-08  Michael Smith <msmith@songbirdnest.com>
2289
2290         Based on patch by: Alessandro Decina <alessandro@nnva.org>
2291         * sys/dshowdecwrapper/gstdshowaudiodec.c:
2292         * sys/dshowdecwrapper/gstdshowdecwrapper.h:
2293         * sys/dshowdecwrapper/gstdshowvideodec.c:
2294           Add AAC, AC3 to handled codecs.
2295           Fix handling of flush events.
2296           Improve debug/error output.
2297           Fix a number of typos in comments and variable names.
2298
2299 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2300
2301         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2302
2303         * gst/librfb/rfbdecoder.c:
2304         Implement ServerCutText message
2305
2306 2008-07-08  Thijs Vermeir  <thijsvermeir@gmail.com>
2307
2308         patch by: Ilja Pavkovic <illsen@gumblfarz.de>
2309
2310         * gst/librfb/gstrfbsrc.c:
2311         * gst/librfb/rfbdecoder.c:
2312         Add property for shared desktop
2313
2314 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2315
2316         * configure.ac:
2317         Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
2318         flags that are invalid for C++.
2319
2320 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2321
2322         * ext/spc/gstspc.c: (spc_setup):
2323         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
2324         Don't use declarations after statements in the remaining code.
2325
2326 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2327
2328         Patch by:
2329           Jonathan Rosser <jonathan dot rosser at rd dot bbc dot co dot uk>
2330
2331         * ext/metadata/metadataexif.c: (metadataparse_handle_unit_tags):
2332         * ext/metadata/metadataxmp.c:
2333         (metadataparse_xmp_iter_add_to_tag_list):
2334         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_start):
2335         * ext/timidity/gstwildmidi.c: (gst_wildmidi_loop):
2336         Don't use declarations after statements.
2337
2338 2008-07-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2339
2340         patch by: Alessandro Decina
2341
2342         * gst/mpegtsparse/mpegtsparse.c:
2343         Fix memory leak by unreffing structures when not needed.
2344         Fixes #539292.
2345
2346 2008-07-07  Stefan Kost  <ensonic@users.sf.net>
2347
2348         * gst/sdp/gstsdpdemux.c:
2349           Use floating point math for latencies < 0 sec in log output.
2350
2351 2008-07-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2352
2353         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
2354         Mark internal processing functions as static inline for quite some
2355         speedup as they're used only once and need to get many local variables
2356         passed as parameter.
2357
2358 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2359
2360         * gst/deinterlace2/gstdeinterlace2.c:
2361         (gst_deinterlace_method_deinterlace_frame),
2362         (gst_deinterlace2_set_method), (gst_deinterlace2_init),
2363         (gst_deinterlace2_reset_history), (gst_deinterlace2_reset),
2364         (gst_deinterlace2_set_property), (gst_deinterlace2_get_property),
2365         (gst_deinterlace2_pop_history), (gst_deinterlace2_head_history),
2366         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2367         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
2368         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
2369         (gst_deinterlace2_src_query):
2370         * gst/deinterlace2/gstdeinterlace2.h:
2371         Call the current instance "self" instead of "object".
2372
2373 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2374
2375         * gst/deinterlace2/gstdeinterlace2.c:
2376         (gst_deinterlace_method_get_latency),
2377         (gst_deinterlace2_set_method), (gst_deinterlace2_class_init),
2378         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2379         (gst_deinterlace2_setcaps), (gst_deinterlace2_src_query):
2380         * gst/deinterlace2/gstdeinterlace2.h:
2381         Include latency of the method in the returned latency.
2382
2383         Fix outputting of all fields, i.e. doubling of the framerate.
2384
2385 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2386
2387         * gst/deinterlace2/Makefile.am:
2388         * gst/deinterlace2/gstdeinterlace2.c:
2389         (gst_deinterlace_method_class_init), (gst_deinterlace_method_init),
2390         (gst_deinterlace_method_deinterlace_frame),
2391         (gst_deinterlace_method_get_fields_required),
2392         (gst_deinterlace2_methods_get_type), (_do_init),
2393         (gst_deinterlace2_set_method), (gst_deinterlace2_class_init),
2394         (gst_deinterlace2_child_proxy_get_child_by_index),
2395         (gst_deinterlace2_child_proxy_get_children_count),
2396         (gst_deinterlace2_child_proxy_interface_init),
2397         (gst_deinterlace2_init), (gst_deinterlace2_finalize),
2398         (gst_deinterlace2_chain), (gst_deinterlace2_src_query):
2399         * gst/deinterlace2/gstdeinterlace2.h:
2400         * gst/deinterlace2/tvtime/greedy.c:
2401         (deinterlace_greedy_packed422_scanline_c),
2402         (deinterlace_greedy_packed422_scanline_mmx),
2403         (deinterlace_greedy_packed422_scanline_mmxext),
2404         (deinterlace_frame_di_greedy),
2405         (gst_deinterlace_method_greedy_l_set_property),
2406         (gst_deinterlace_method_greedy_l_get_property),
2407         (gst_deinterlace_method_greedy_l_class_init),
2408         (gst_deinterlace_method_greedy_l_init):
2409         * gst/deinterlace2/tvtime/greedyh.asm:
2410         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C),
2411         (deinterlace_frame_di_greedyh),
2412         (gst_deinterlace_method_greedy_h_set_property),
2413         (gst_deinterlace_method_greedy_h_get_property),
2414         (gst_deinterlace_method_greedy_h_class_init),
2415         (gst_deinterlace_method_greedy_h_init):
2416         * gst/deinterlace2/tvtime/greedyh.h:
2417         * gst/deinterlace2/tvtime/plugins.h:
2418         * gst/deinterlace2/tvtime/tomsmocomp.c:
2419         (gst_deinterlace_method_tomsmocomp_set_property),
2420         (gst_deinterlace_method_tomsmocomp_get_property),
2421         (gst_deinterlace_method_tomsmocomp_class_init),
2422         (gst_deinterlace_method_tomsmocomp_init):
2423         * gst/deinterlace2/tvtime/tomsmocomp.h:
2424         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2425         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir),
2426         (gst_deinterlace_method_vfir_class_init),
2427         (gst_deinterlace_method_vfir_init):
2428         Use a GstObject subtype for the deinterlacing methods and export
2429         the different settings for each deinterlacing method via GObject
2430         properties.
2431
2432         Implement GstChildProxy interface to allow access to the used
2433         deinterlacing method and to allow adjusting the different settings.
2434
2435         Move global variables of the tomsmocomp deinterlacing method into
2436         function local variables to make it possible to use this deinterlacing
2437         method from different instances.
2438
2439 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2440
2441         * gst/deinterlace2/tvtime/greedyh.asm:
2442         Support widths that are not a multiply of 4 when using the assembly
2443         optimized greedyh implementations.
2444
2445 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2446
2447         * gst/deinterlace2/tvtime/greedyh.c:
2448         (deinterlace_frame_di_greedyh):
2449         Only build the assembly optimized implementations on x86.
2450
2451 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2452
2453         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2454
2455         * configure.ac:
2456         Fix checking of headers for the OSS4 plugin to fail if a single
2457         header doesn't exist already. AC_CHECK_HEADERS only fails if none
2458         of the headers is found. Fixes bug #541543.
2459
2460 2008-07-04  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2461
2462         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2463
2464         * configure.ac:
2465         * gst/festival/Makefile.am:
2466         * gst/festival/gstfestival.c:
2467         Fix built of the festival plugin with mingw32 by linking to ws2_32.dll
2468         and including winsock headers. Fixes bug #541522.
2469
2470 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2471
2472         * ChangeLog:
2473         * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_loop):
2474         * gst/rtpmanager/rtpsource.c: (rtp_source_get_new_sr):
2475         Corrected a typo (interpollate -> interpolate).
2476
2477 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2478
2479         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
2480         (gst_rtp_session_send_rtp), (gst_rtp_session_send_rtcp),
2481         (gst_rtp_session_sync_rtcp), (gst_rtp_session_chain_recv_rtp),
2482         (gst_rtp_session_chain_recv_rtcp), (gst_rtp_session_chain_send_rtp):
2483         * gst/rtpmanager/rtpsession.c: (source_push_rtp),
2484         (rtp_session_send_rtp):
2485         * gst/rtpmanager/rtpsource.c: (push_packet), (calculate_jitter),
2486         (rtp_source_process_rtp), (rtp_source_send_rtp):
2487         Changed some GST_DEBUG() to GST_LOG() to reduce the spam when a
2488         pipeline is running normally.
2489
2490 2008-07-03  Peter Kjellerstedt  <pkj@axis.com>
2491
2492         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_init),
2493         (gst_rtp_session_finalize), (rtcp_thread),
2494         (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_recv_rtcp),
2495         (gst_rtp_session_event_send_rtp_sink),
2496         (gst_rtp_session_chain_send_rtp):
2497         * gst/rtpmanager/rtpsession.c: (check_collision),
2498         (update_arrival_stats), (rtp_session_process_rtp),
2499         (rtp_session_process_rtcp), (rtp_session_send_rtp),
2500         (rtp_session_send_bye_locked), (rtp_session_send_bye),
2501         (rtp_session_next_timeout), (session_report_blocks), (session_cleanup),
2502         (is_rtcp_time), (rtp_session_on_timeout):
2503         * gst/rtpmanager/rtpsession.h:
2504         Do not mix the use of g_get_current_time() with gst_clock_get_time().
2505
2506 2008-07-01  Jan Schmidt  <jan.schmidt@sun.com>
2507
2508         * gst/mpegvideoparse/mpegvideoparse.c:
2509         * gst/mpegvideoparse/mpegvideoparse.h:
2510         Queue new-segment events and send them after caps have been
2511         determined and set, so that the decoder will have been auto-plugged.
2512
2513 2008-07-01  Edward Hervey  <edward.hervey@collabora.co.uk>
2514
2515         Patch by : Michael Smith <msmith @ xiph dot org>
2516         
2517         * sys/qtwrapper/audiodecoders.c: (qtwrapper_audio_decoder_init),
2518         (clear_AudioStreamBasicDescription), (fill_indesc_mp3),
2519         (fill_indesc_aac), (make_samr_magic_cookie), (write_len),
2520         (make_aac_magic_cookie), (open_decoder), (process_buffer_cb),
2521         (qtwrapper_audio_decoder_chain),
2522         (qtwrapper_audio_decoder_sink_event),
2523         (qtwrapper_audio_decoder_base_init),
2524         (qtwrapper_audio_decoder_class_init),
2525         (qtwrapper_audio_decoders_register):
2526         * sys/qtwrapper/codecmapping.h:
2527         * sys/qtwrapper/imagedescription.c: (image_description_for_avc1),
2528         (image_description_for_mp4v), (image_description_from_stsd_buffer):
2529         * sys/qtwrapper/imagedescription.h:
2530         * sys/qtwrapper/qtutils.c: (get_name_info_from_component),
2531         (dump_avcc_atom), (dump_image_description),
2532         (AllocateAudioBufferList):
2533         * sys/qtwrapper/qtutils.h:
2534         * sys/qtwrapper/qtwrapper.c: (plugin_init):
2535         * sys/qtwrapper/qtwrapper.h:
2536         * sys/qtwrapper/videodecoders.c:
2537         (qtwrapper_video_decoder_base_init), (open_decoder),
2538         (decompressCb), (qtwrapper_video_decoder_chain),
2539         (qtwrapper_video_decoders_register):
2540         Make qtwrapper compile/work on win32.
2541         Lots of fixes
2542         Fixes #531840
2543
2544 2008-06-30  Jan Schmidt  <jan.schmidt@sun.com>
2545
2546         * gst/rawparse/gstvideoparse.c:
2547         Fix size calculation for RGB buffers -> bpp is in bits, so divide by 8
2548
2549 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2550
2551         * gst/deinterlace2/Makefile.am:
2552         * gst/deinterlace2/tvtime/tomsmocomp.c: (tomsmocomp_init),
2553         (tomsmocomp_filter_mmx), (tomsmocomp_filter_3dnow),
2554         (tomsmocomp_filter_sse), (deinterlace_frame_di_tomsmocomp):
2555         * gst/deinterlace2/tvtime/tomsmocomp.h:
2556         Remove useless file and mark everything possible as static.
2557
2558         * gst/deinterlace2/tvtime/greedy.c:
2559         * gst/deinterlace2/tvtime/greedyh.c:
2560         Use "_stdint.h" instead of <stdint.h>.
2561
2562 2008-06-29  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2563
2564         * gst/deinterlace2/Makefile.am:
2565         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_init):
2566         * gst/deinterlace2/tvtime/greedy.c: (deinterlace_frame_di_greedy):
2567         * gst/deinterlace2/tvtime/greedyh.c:
2568         (deinterlace_frame_di_greedyh):
2569         * gst/deinterlace2/tvtime/speedtools.h:
2570         * gst/deinterlace2/tvtime/speedy.c:
2571         * gst/deinterlace2/tvtime/speedy.h:
2572         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy):
2573         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
2574         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir):
2575         Get rid of speedy.[ch] as we don't use most of it's code anyway
2576         and it doesn't seem to be relicensed to LGPL. Use memcpy() instead
2577         of the speedy memcpy everywhere instead.
2578         
2579         * gst/deinterlace2/gstdeinterlace2.h:
2580         Remove many unused declarations.
2581
2582 2008-06-28  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2583
2584         * ext/mpeg2enc/gstmpeg2encoptions.cc:
2585         * ext/mpeg2enc/gstmpeg2encoptions.hh:
2586         Expose the additional MPEG HDTV format profiles available in latest
2587         mjpegtools version.
2588
2589 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2590
2591         * gst/deinterlace2/gstdeinterlace2.c: (gst_deinterlace2_src_query):
2592         Divide latency be 2 to convert from fields to frames.
2593
2594 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2595
2596         * gst/deinterlace2/tvtime/greedy.c:
2597         (deinterlace_greedy_packed422_scanline_c),
2598         (deinterlace_greedy_packed422_scanline_mmx),
2599         (deinterlace_greedy_packed422_scanline_mmxext),
2600         (deinterlace_frame_di_greedy):
2601         Don't use scanlines function from gstdeinterlace2 as it's
2602         not appropiate for this method. Instead implement deinterlace_frame
2603         function by taking the one from greedyh.
2604         
2605         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C):
2606         Small fix for the C implementation.
2607
2608         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_frame_vfir):
2609         Don't use the scanlines function from gstdeinterlace2 as it's only
2610         used for this method and will be removed. Instead implement
2611         deinterlace_frame function and make it a bit more efficient.
2612
2613         * gst/deinterlace2/gstdeinterlace2.c:
2614         (gst_deinterlace2_class_init), (gst_deinterlace2_set_method),
2615         (gst_deinterlace2_push_history), (gst_deinterlace2_chain),
2616         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
2617         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
2618         (gst_deinterlace2_src_query):
2619         Fix coding style and remove scanlines function as it's unused now.
2620
2621 2008-06-28  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2622
2623         * gst/deinterlace2/tvtime/greedyh.asm:
2624         * gst/deinterlace2/tvtime/greedyh.c: (greedyDScaler_C),
2625         (deinterlace_frame_di_greedyh), (dscaler_greedyh_get_method):
2626         * gst/deinterlace2/tvtime/greedyhmacros.h:
2627         Add a C implementation for the greedyh deinterlacing method, clean
2628         up the code a bit and mark the SSE version as MMXEXT as it doesn't
2629         require any SSE instructions.
2630
2631 2008-06-27  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2632
2633         * gst/deinterlace2/gstdeinterlace2.c:
2634         (gst_deinterlace2_set_property), (gst_deinterlace2_chain),
2635         (gst_deinterlace2_setcaps):
2636         If we're outputting all fields the framerate has to be doubled.
2637
2638         Set duration on the outgoing buffers.
2639
2640 2008-06-26  Mark Nauwelaerts  <mark.nauwelaerts@collabora.co.uk>
2641
2642         * docs/plugins/Makefile.am:
2643         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
2644         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2645         * gst/y4m/gsty4mencode.c:
2646         Add documentation for YUV4MPEG2 encoder element.
2647
2648 2008-06-25  Edward Hervey  <edward.hervey@collabora.co.uk>
2649
2650         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2651         Remove unneeded macros that break build on macosx.
2652
2653 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
2654
2655         * configure.ac:
2656           Depend on released versions of core and -base.
2657
2658 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2659
2660         * gst/deinterlace2/tvtime/greedy.c:
2661         (deinterlace_greedy_packed422_scanline_mmx),
2662         (deinterlace_greedy_packed422_scanline_mmxext):
2663         Optimize MMX/MMXEXT implementations a bit by requiring two less
2664         memory accesses and fix the workaround for the missing right shift
2665         on bytes to unset the highest bit of every byte.
2666
2667 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2668
2669         * gst/deinterlace2/tvtime/greedy.c:
2670         (deinterlace_greedy_packed422_scanline_mmxext):
2671         Remove sfence instruction as it's not needed and actually is an SSE
2672         instruction.
2673
2674 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2675
2676         * gst/deinterlace2/tvtime/greedy.c:
2677         (deinterlace_greedy_packed422_scanline_mmx),
2678         (deinterlace_greedy_packed422_scanline):
2679         Add plain MMX implementation for the greedyl method.
2680
2681 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2682
2683         * gst/deinterlace2/Makefile.am:
2684         Move the assembly includes to noinst_HEADERS where they belong.
2685
2686         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
2687         (deinterlace_line_mmx):
2688         Fix C and MMX implementations a bit more.
2689
2690 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2691
2692         * gst/deinterlace2/tvtime/greedy.c:
2693         (deinterlace_greedy_packed422_scanline_c),
2694         (deinterlace_greedy_packed422_scanline_mmxext),
2695         (deinterlace_greedy_packed422_scanline):
2696         Fix the C implementation to produce correct results and optimize the
2697         MMXEXT implementation.
2698
2699         Handle odd widths and don't read over array boundaries in the MMXEXT
2700         implementation.
2701
2702         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_c),
2703         (deinterlace_line_mmx), (deinterlace_scanline_vfir):
2704         Fix a small rounding bug in the MMX implementation, the MMX
2705         implementation doesn't actually need MMXEXT instructions so don't mark
2706         it as such.
2707
2708         Handle odd widths in both implementations.
2709
2710 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
2711
2712         * ext/resindvd/rsnbasesrc.c:
2713           Use the right i18n header.
2714
2715 2008-06-21  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2716
2717         * gst/deinterlace2/tvtime/greedy.c:
2718         (deinterlace_greedy_packed422_scanline_sse),
2719         (deinterlace_greedy_packed422_scanline_c),
2720         (deinterlace_greedy_packed422_scanline):
2721         Implement a C version of the greedy low motion algorithm and mark the
2722         assembly optimized version as SSE as it uses SSE instructions
2723         additional to MMX instructions.
2724
2725 2008-06-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2726
2727         Patch by: Sebastian Pölsterl
2728
2729         * gst/mpegtsparse/mpegtspacketizer.c:
2730         Fix problem when empty string is provided.
2731
2732 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2733
2734         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line_mmxext),
2735         (deinterlace_line_c), (deinterlace_scanline_vfir):
2736         Make it possible to use the vfir method on X86 CPUs without MMXEXT too
2737         but use the MMXEXT optimized code whenever possible.
2738
2739 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2740
2741         * gst/deinterlace2/gstdeinterlace2.c:
2742         (gst_deinterlace2_class_init), (gst_deinterlace2_init),
2743         (gst_deinterlace2_reset_history), (gst_deinterlace2_reset),
2744         (gst_deinterlace2_finalize), (gst_deinterlace2_chain),
2745         (gst_deinterlace2_sink_event), (gst_deinterlace2_change_state),
2746         (gst_deinterlace2_src_query):
2747         * gst/deinterlace2/gstdeinterlace2.h:
2748         Reset element state on PAUSED->READY properly, don't leak any buffers
2749         when finalizing, allocate buffers with gst_pad_alloc_buffer() and
2750         properly return flow returns from gst_pad_push() instead of ignoring them.
2751
2752 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2753
2754         * gst/deinterlace2/tvtime/tomsmocomp/tomsmocompmacros.h:
2755         Add missing header.
2756
2757 2008-06-20  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
2758
2759         * configure.ac:
2760         * gst/deinterlace2/Makefile.am:
2761         * gst/deinterlace2/tvtime/greedyh.asm:
2762         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
2763         Fix compilation on generic x86/amd64 and include deinterlace2 in the
2764         build system. Because of several bugs it's still enabled only
2765         by --enable-experimental.
2766
2767 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
2768
2769         * ext/resindvd/resindvdsrc.c:
2770         * ext/resindvd/resindvdsrc.h:
2771         Schedule NAV packets and activate them with an async clock callback
2772         at the right moment. This makes delayed menu highlights appear
2773         at the correct time and fixes Back To The Future.
2774
2775         When outputting new segment in do_seek(), calculate our position
2776         value properly, so we report the right time when popping in and
2777         out of the menus.
2778
2779         * ext/resindvd/rsnbasesrc.c:
2780         When handling a non-flushing seek, accumulate the segment,
2781         rather than having every seek start from 0 and messing with sync
2782
2783 2008-06-19  Stefan Kost  <ensonic@users.sf.net>
2784
2785         * gst/selector/gstoutputselector.c:
2786         * tests/icles/output-selector-test.c:
2787           Use BOILERPLATE macro and update test to the latest api changes.
2788
2789 2008-06-19  Wim Taymans  <wim.taymans@collabora.co.uk>
2790
2791         * examples/app/appsink-src.c: (on_new_buffer_from_source):
2792         Don't use a buffer after unreffing it.
2793
2794 2008-06-18  Stefan Kost  <ensonic@users.sf.net>
2795
2796         * ext/metadata/metadataexif.c:
2797           Add description tag mapping.
2798
2799 2008-06-18  Stefan Kost  <ensonic@users.sf.net>
2800
2801         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
2802         * examples/app/appsrc-ra.c:
2803         * examples/app/appsrc-seekable.c:
2804         * examples/app/appsrc-stream.c:
2805         * examples/app/appsrc-stream2.c:
2806         * ext/directfb/dfbvideosink.h:
2807         * ext/metadata/gstbasemetadata.c:
2808         * ext/metadata/gstbasemetadata.h:
2809         * ext/metadata/metadata.c:
2810         * ext/metadata/metadataexif.c:
2811         * ext/theora/theoradec.h:
2812         * gst/deinterlace2/gstdeinterlace2.h:
2813         * gst/deinterlace2/tvtime/speedy.c:
2814         * gst/deinterlace2/tvtime/speedy.h:
2815         * gst/deinterlace2/tvtime/vfir.c:
2816          Fix gtk-doc warnings. Also don't misuse api-doc comments for normal
2817          comments.
2818
2819 2008-06-17  Jan Schmidt  <jan.schmidt@sun.com>
2820
2821         * ext/resindvd/resindvdbin.c:
2822         Parse the URI argument into the device name so dvd:///path/to/image
2823         works.
2824
2825         * ext/resindvd/resindvdsrc.c:
2826         Implement a trivial duration query reporting the current PGC length.
2827
2828         * gst/dvdspu/gstdvdspu.c:
2829         Rename typo in the function name.
2830
2831 2008-06-17  Sebastian Dröge  <slomo@circular-chaos.org>
2832
2833         * configure.ac:
2834         Disable deinterlace2 plugin again which was accidently enabled
2835         with last commit.
2836
2837 2008-06-17  Sebastian Dröge  <slomo@circular-chaos.org>
2838
2839         * configure.ac:
2840         * ext/resindvd/resindvdsrc.h:
2841         Make resindvd work with libdvdnav >= 4.0.0.
2842
2843 2008-06-17  Jan Schmidt  <thaytan@noraisin.net>
2844
2845         * configure.ac:
2846         Check for libdvdnav to build resindvd.
2847
2848         * ext/Makefile.am:
2849         * ext/resindvd/Makefile.am:
2850         * ext/resindvd/gstmpegdefs.h:
2851         * ext/resindvd/gstmpegdemux.c:
2852         * ext/resindvd/gstmpegdemux.h:
2853         * ext/resindvd/gstmpegdesc.c:
2854         * ext/resindvd/gstmpegdesc.h:
2855         * ext/resindvd/gstpesfilter.c:
2856         * ext/resindvd/gstpesfilter.h:
2857         * ext/resindvd/plugin.c:
2858         * ext/resindvd/resin-play:
2859         * ext/resindvd/resindvdbin.c:
2860         * ext/resindvd/resindvdbin.h:
2861         * ext/resindvd/resindvdsrc.c:
2862         * ext/resindvd/resindvdsrc.h:
2863         * ext/resindvd/rsnaudiomunge.c:
2864         * ext/resindvd/rsnaudiomunge.h:
2865         * ext/resindvd/rsnbasesrc.c:
2866         * ext/resindvd/rsnbasesrc.h:
2867         * ext/resindvd/rsnpushsrc.c:
2868         * ext/resindvd/rsnpushsrc.h:
2869         * ext/resindvd/rsnstreamselector.c:
2870         * ext/resindvd/rsnstreamselector.h:
2871
2872         First commit of DVD-Video playback component 'rsndvdbin'
2873         and helper elements.
2874
2875         Use --enable-experimental for now, but feel free to give it a
2876         try using the resin-play script.
2877
2878         * gst/dvdspu/gstdvdspu.c:
2879         Add some extra guards for malformed events.
2880
2881 2008-06-16  David Schleef  <ds@schleef.org>
2882
2883         * configure.ac:
2884         Bump dirac requirement to 0.10 due to api changes.
2885
2886 2008-06-16  Andy Wingo  <wingo@pobox.com>
2887
2888         * gst-libs/gst/app/gstappsrc.c (gst_app_src_set_max_bytes)
2889         (gst_app_src_get_max_bytes, gst_app_src_push_buffer): Use
2890         G_GUINT64_FORMAT. Avoid overflow in get_max_bytes().
2891
2892 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2893
2894         * sys/dvb/gstdvbsrc.c:
2895           Move docblob upwards. Balance tags and restore blank line.
2896
2897 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2898
2899         * sys/dvb/gstdvbsrc.c:
2900         Fix out of date docs.
2901
2902 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2903
2904         Patch from: Vincent Genieux
2905
2906         * gst/mpegtsparse/mpegtsparse.c:
2907         Fix refcount issues, fixes #538560.
2908
2909 2008-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2910
2911         * gst/mpegtsparse/gstmpegdesc.h:
2912         * gst/mpegtsparse/mpegtspacketizer.c:
2913         Parse the extended event descriptor.
2914
2915 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2916
2917         * gst/rtpmanager/gstrtpjitterbuffer.c:
2918         * gst/speed/gstspeed.c:
2919         * gst/speexresample/gstspeexresample.c:
2920         * gst/videosignal/gstvideoanalyse.c:
2921         * gst/videosignal/gstvideodetect.c:
2922         * gst/videosignal/gstvideomark.c:
2923         * sys/dvb/gstdvbsrc.c:
2924         * sys/oss4/oss4-mixer.c:
2925         * sys/oss4/oss4-sink.c:
2926         * sys/oss4/oss4-source.c:
2927         * sys/wininet/gstwininetsrc.c:
2928           Final round of doc updates.
2929
2930 2008-06-16  Stefan Kost  <ensonic@users.sf.net>
2931
2932         * gst/deinterlace/gstdeinterlace.c:
2933         * gst/rtpmanager/gstrtpbin.c:
2934         * gst/rtpmanager/gstrtpclient.c:
2935         * gst/rtpmanager/gstrtpjitterbuffer.c:
2936         * gst/rtpmanager/gstrtpptdemux.c:
2937         * gst/rtpmanager/gstrtpsession.c:
2938         * gst/rtpmanager/gstrtpssrcdemux.c:
2939         * gst/sdp/gstsdpdemux.c:
2940           More doc updates. More xrefs.
2941
2942 2008-06-14  Julien Moutte  <julien@fluendo.com>
2943
2944         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
2945         (gst_flv_demux_dispose):
2946         * gst/flv/gstflvdemux.h:
2947         * gst/flv/gstflvparse.c: (gst_flv_parse_audio_negotiate),
2948         (gst_flv_parse_tag_audio), (gst_flv_parse_video_negotiate),
2949         (gst_flv_parse_tag_video): Introduce demuxing support for AAC and
2950         H.264/AVC inside FLV.
2951         * sys/dshowdecwrapper/gstdshowaudiodec.c: (gst_dshowaudiodec_init),
2952         (gst_dshowaudiodec_chain), (gst_dshowaudiodec_push_buffer),
2953         (gst_dshowaudiodec_sink_event), (gst_dshowaudiodec_setup_graph):
2954         * sys/dshowdecwrapper/gstdshowaudiodec.h:
2955         * sys/dshowdecwrapper/gstdshowvideodec.c: (gst_dshowvideodec_init),
2956         (gst_dshowvideodec_sink_event), (gst_dshowvideodec_chain),
2957         (gst_dshowvideodec_push_buffer), (gst_dshowvideodec_src_getcaps):
2958         * sys/dshowdecwrapper/gstdshowvideodec.h: Lot of random fixes 
2959         to improve stability (ref counting, safety checks...)
2960
2961 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2962
2963         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_probe_modules):
2964         Disable sipro on 64bits, it crashes.
2965
2966 2008-06-13  Wim Taymans  <wim.taymans@collabora.co.uk>
2967
2968         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
2969         (close_library), (open_library),
2970         (gst_real_audio_dec_probe_modules), (gst_real_audio_dec_getcaps),
2971         (gst_real_audio_dec_setcaps), (gst_real_audio_dec_init),
2972         (gst_real_audio_dec_change_state), (gst_real_audio_dec_finalize):
2973         Add raversions we can support on the caps.
2974         Refactor the loading of the real codecs like realvideo so that we can
2975         implement probing.
2976         Probe all supported formats by trying to load the .so files, only report
2977         the versions on the caps that we can actually load.
2978
2979         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
2980         (gst_real_video_dec_getcaps), (gst_real_video_dec_setcaps),
2981         (open_library), (close_library),
2982         (gst_real_video_dec_probe_modules),
2983         (gst_real_video_dec_change_state), (gst_real_video_dec_init),
2984         (gst_real_video_dec_finalize), (gst_real_video_dec_class_init):
2985         * gst/real/gstrealvideodec.h:
2986         Change the loading of the library like the audio decoder.
2987         Probe the supported formats by trying to load the .so files and only
2988         report the versions on the caps that we can actually load.
2989
2990 2008-06-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2991
2992         patch by: Sebastian Pölsterl
2993
2994         * gst/mpegtsparse/mpegtspacketizer.c:
2995         Handle character sets in strings coming from DVB SI according
2996         to the DVB SI spec.
2997
2998 2008-06-13  Stefan Kost  <ensonic@users.sf.net>
2999
3000         * gst/replaygain/gstrganalysis.c:
3001         * gst/replaygain/gstrglimiter.c:
3002         * gst/replaygain/gstrgvolume.c:
3003           More doc updates.
3004
3005 2008-06-13  Stefan Kost  <ensonic@users.sf.net>
3006
3007         * docs/plugins/Makefile.am:
3008         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
3009         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
3010         * docs/plugins/gst-plugins-bad-plugins.args:
3011         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
3012         * docs/plugins/gst-plugins-bad-plugins.interfaces:
3013         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
3014         * docs/plugins/gst-plugins-bad-plugins.signals:
3015         * docs/plugins/inspect/plugin-alsaspdif.xml:
3016         * docs/plugins/inspect/plugin-amrwb.xml:
3017         * docs/plugins/inspect/plugin-app.xml:
3018         * docs/plugins/inspect/plugin-bayer.xml:
3019         * docs/plugins/inspect/plugin-bz2.xml:
3020         * docs/plugins/inspect/plugin-cdaudio.xml:
3021         * docs/plugins/inspect/plugin-cdxaparse.xml:
3022         * docs/plugins/inspect/plugin-dtsdec.xml:
3023         * docs/plugins/inspect/plugin-dvb.xml:
3024         * docs/plugins/inspect/plugin-dvdspu.xml:
3025         * docs/plugins/inspect/plugin-faac.xml:
3026         * docs/plugins/inspect/plugin-faad.xml:
3027         * docs/plugins/inspect/plugin-fbdevsink.xml:
3028         * docs/plugins/inspect/plugin-festival.xml:
3029         * docs/plugins/inspect/plugin-filter.xml:
3030         * docs/plugins/inspect/plugin-flvdemux.xml:
3031         * docs/plugins/inspect/plugin-freeze.xml:
3032         * docs/plugins/inspect/plugin-gsm.xml:
3033         * docs/plugins/inspect/plugin-gstinterlace.xml:
3034         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
3035         * docs/plugins/inspect/plugin-h264parse.xml:
3036         * docs/plugins/inspect/plugin-interleave.xml:
3037         * docs/plugins/inspect/plugin-jack.xml:
3038         * docs/plugins/inspect/plugin-ladspa.xml:
3039         * docs/plugins/inspect/plugin-metadata.xml:
3040         * docs/plugins/inspect/plugin-mms.xml:
3041         * docs/plugins/inspect/plugin-modplug.xml:
3042         * docs/plugins/inspect/plugin-mpeg2enc.xml:
3043         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
3044         * docs/plugins/inspect/plugin-mpegtsparse.xml:
3045         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
3046         * docs/plugins/inspect/plugin-musepack.xml:
3047         * docs/plugins/inspect/plugin-musicbrainz.xml:
3048         * docs/plugins/inspect/plugin-mve.xml:
3049         * docs/plugins/inspect/plugin-mythtv.xml
3050         * docs/plugins/inspect/plugin-nas.xml:
3051         * docs/plugins/inspect/plugin-neon.xml:
3052         * docs/plugins/inspect/plugin-nsfdec.xml:
3053         * docs/plugins/inspect/plugin-nuvdemux.xml:
3054         * docs/plugins/inspect/plugin-oss4.xml
3055         * docs/plugins/inspect/plugin-rawparse.xml:
3056         * docs/plugins/inspect/plugin-real.xml:
3057         * docs/plugins/inspect/plugin-replaygain.xml:
3058         * docs/plugins/inspect/plugin-rfbsrc.xml:
3059         * docs/plugins/inspect/plugin-sdl.xml:
3060         * docs/plugins/inspect/plugin-sdp.xml:
3061         * docs/plugins/inspect/plugin-selector.xml:
3062         * docs/plugins/inspect/plugin-sndfile.xml:
3063         * docs/plugins/inspect/plugin-soundtouch.xml:
3064         * docs/plugins/inspect/plugin-spcdec.xml:
3065         * docs/plugins/inspect/plugin-speed.xml:
3066         * docs/plugins/inspect/plugin-speexresample.xml:
3067         * docs/plugins/inspect/plugin-stereo.xml:
3068         * docs/plugins/inspect/plugin-subenc.xml
3069         * docs/plugins/inspect/plugin-timidity.xml:
3070         * docs/plugins/inspect/plugin-tta.xml:
3071         * docs/plugins/inspect/plugin-vcdsrc.xml:
3072         * docs/plugins/inspect/plugin-videosignal.xml:
3073         * docs/plugins/inspect/plugin-vmnc.xml:
3074         * docs/plugins/inspect/plugin-wildmidi.xml:
3075         * docs/plugins/inspect/plugin-x264.xml:
3076         * docs/plugins/inspect/plugin-xvid.xml:
3077         * docs/plugins/inspect/plugin-y4menc.xml:
3078         * ext/amrwb/gstamrwbdec.c:
3079         * ext/amrwb/gstamrwbenc.c:
3080         * ext/amrwb/gstamrwbparse.c:
3081         * ext/dc1394/gstdc1394.c:
3082         * ext/directfb/dfbvideosink.c:
3083         * ext/ivorbis/vorbisdec.c:
3084         * ext/jack/gstjackaudiosink.c:
3085         * ext/mpeg2enc/gstmpeg2enc.cc:
3086         * ext/mplex/gstmplex.cc:
3087         * ext/musicbrainz/gsttrm.c:
3088         * ext/mythtv/gstmythtvsrc.c:
3089         * ext/theora/theoradec.c:
3090         * ext/timidity/gsttimidity.c:
3091         * ext/timidity/gstwildmidi.c:
3092         * gst-libs/gst/app/gstappsink.c:
3093         * gst/deinterlace/gstdeinterlace.c:
3094         * gst/dvdspu/gstdvdspu.c:
3095         * gst/festival/gstfestival.c:
3096         * gst/freeze/gstfreeze.c:
3097         * gst/interleave/deinterleave.c:
3098         * gst/interleave/interleave.c:
3099         * gst/modplug/gstmodplug.cc:
3100         * gst/nuvdemux/gstnuvdemux.c:
3101           Add missing elements to docs. Fix doc-markup: use convinience syntax
3102           for examples (produces valid docbook), add several refsec2 when we
3103           have several titles. Fix some types.
3104
3105 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3106
3107         * examples/app/.cvsignore:
3108         * examples/app/Makefile.am:
3109         * examples/app/appsink-src.c: (on_new_buffer_from_source),
3110         (on_source_message), (on_sink_message), (main):
3111         Add beefed up example app from bug #413418. It now also uses appsink
3112         instead of fakesink for more ultimate coolness.
3113
3114         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
3115         (gst_app_src_init), (gst_app_src_set_property),
3116         (gst_app_src_get_property), (gst_app_src_unlock),
3117         (gst_app_src_unlock_stop), (gst_app_src_create),
3118         (gst_app_src_set_max_bytes), (gst_app_src_push_buffer),
3119         (gst_app_src_end_of_stream):
3120         * gst-libs/gst/app/gstappsrc.h:
3121         Add block property to allow push based implementation to block when we
3122         fill up the appsrc queues.
3123         Emit the enough-data signal while releasing our lock.
3124
3125 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3126
3127         * examples/app/.cvsignore:
3128           Ignore more.
3129
3130 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3131
3132         * ext/dc1394/gstdc1394.c:
3133         * ext/ivorbis/vorbisdec.c:
3134         * ext/jack/gstjackaudiosink.c:
3135         * ext/metadata/gstmetadatademux.c:
3136         * ext/mythtv/gstmythtvsrc.c:
3137         * ext/theora/theoradec.c:
3138         * gst-libs/gst/app/gstappsink.c:
3139         * gst/bayer/gstbayer2rgb.c:
3140         * gst/deinterlace/gstdeinterlace.c:
3141         * gst/rawparse/gstaudioparse.c:
3142         * gst/rawparse/gstvideoparse.c:
3143         * gst/rtpmanager/gstrtpbin.c:
3144         * gst/rtpmanager/gstrtpclient.c:
3145         * gst/rtpmanager/gstrtpjitterbuffer.c:
3146         * gst/rtpmanager/gstrtpptdemux.c:
3147         * gst/rtpmanager/gstrtpsession.c:
3148         * gst/rtpmanager/gstrtpssrcdemux.c:
3149         * gst/selector/gstinputselector.c:
3150         * gst/selector/gstoutputselector.c:
3151         * gst/videosignal/gstvideoanalyse.c:
3152         * gst/videosignal/gstvideodetect.c:
3153         * gst/videosignal/gstvideomark.c:
3154         * sys/oss4/oss4-mixer.c:
3155         * sys/oss4/oss4-sink.c:
3156         * sys/oss4/oss4-source.c:
3157           Do not use short_description in section docs for elements. We extract
3158           them from element details and there will be warnings if they differ.
3159           Also fixing up the ChangeLog order.
3160
3161 2008-06-12  Wim Taymans  <wim.taymans@collabora.co.uk>
3162
3163         Patch by: Sebastien Merle <sylane at gmail dot com>
3164
3165         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_chain):
3166         Fix the sign of the data we pass to the decoder so that the decoder
3167         compiles with newer reference code as well. Fixes #528618.
3168
3169 2008-06-12  Stefan Kost  <ensonic@users.sf.net>
3170
3171         * tests/icles/test-oss4.c:
3172           Include stdlib.h.
3173
3174 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3175
3176         Based on a patch by: Martin Eikermann <meiker at upb dot de>
3177
3178         * gst/deinterlace2/Makefile.am:
3179         * gst/deinterlace2/gstdeinterlace2.c:
3180         (gst_deinterlace2_method_get_type),
3181         (gst_deinterlace2_fields_get_type),
3182         (gst_deinterlace2_field_layout_get_type),
3183         (gst_deinterlace2_base_init), (gst_deinterlace2_class_init),
3184         (gst_deinterlace2_init), (gst_deinterlace2_set_method),
3185         (gst_deinterlace2_set_property), (gst_deinterlace2_get_property),
3186         (gst_deinterlace2_finalize), (gst_deinterlace2_pop_history),
3187         (gst_deinterlace2_head_history), (gst_deinterlace2_push_history),
3188         (gst_deinterlace2_deinterlace_scanlines), (gst_deinterlace2_chain),
3189         (gst_deinterlace2_setcaps), (gst_deinterlace2_sink_event),
3190         (gst_deinterlace2_change_state), (gst_deinterlace2_src_event),
3191         (gst_deinterlace2_src_query), (gst_deinterlace2_src_query_types),
3192         (plugin_init):
3193         * gst/deinterlace2/gstdeinterlace2.h:
3194         * gst/deinterlace2/tvtime/greedy.c: (copy_scanline),
3195         (deinterlace_greedy_packed422_scanline_mmxext),
3196         (dscaler_greedyl_get_method):
3197         * gst/deinterlace2/tvtime/greedyh.asm:
3198         * gst/deinterlace2/tvtime/greedyh.c:
3199         (deinterlace_frame_di_greedyh), (dscaler_greedyh_get_method),
3200         (greedyh_init), (greedyh_filter_mmx), (greedyh_filter_3dnow),
3201         (greedyh_filter_sse):
3202         * gst/deinterlace2/tvtime/greedyh.h:
3203         * gst/deinterlace2/tvtime/greedyhmacros.h:
3204         * gst/deinterlace2/tvtime/mmx.h:
3205         * gst/deinterlace2/tvtime/plugins.h:
3206         * gst/deinterlace2/tvtime/speedtools.h:
3207         * gst/deinterlace2/tvtime/speedy.c: (multiply_alpha), (clip255),
3208         (comb_factor_packed422_scanline_mmx),
3209         (diff_factor_packed422_scanline_c),
3210         (diff_factor_packed422_scanline_mmx),
3211         (diff_packed422_block8x8_mmx), (diff_packed422_block8x8_c),
3212         (packed444_to_packed422_scanline_c),
3213         (packed422_to_packed444_scanline_c),
3214         (packed422_to_packed444_rec601_scanline_c),
3215         (vfilter_chroma_121_packed422_scanline_mmx),
3216         (vfilter_chroma_121_packed422_scanline_c),
3217         (vfilter_chroma_332_packed422_scanline_mmx),
3218         (vfilter_chroma_332_packed422_scanline_c),
3219         (kill_chroma_packed422_inplace_scanline_mmx),
3220         (kill_chroma_packed422_inplace_scanline_c),
3221         (invert_colour_packed422_inplace_scanline_mmx),
3222         (invert_colour_packed422_inplace_scanline_c),
3223         (mirror_packed422_inplace_scanline_c),
3224         (interpolate_packed422_scanline_c),
3225         (convert_uyvy_to_yuyv_scanline_mmx),
3226         (convert_uyvy_to_yuyv_scanline_c),
3227         (interpolate_packed422_scanline_mmx),
3228         (interpolate_packed422_scanline_mmxext),
3229         (blit_colour_packed422_scanline_c),
3230         (blit_colour_packed422_scanline_mmx),
3231         (blit_colour_packed422_scanline_mmxext),
3232         (blit_colour_packed4444_scanline_c),
3233         (blit_colour_packed4444_scanline_mmx),
3234         (blit_colour_packed4444_scanline_mmxext), (small_memcpy),
3235         (speedy_memcpy_c), (speedy_memcpy_mmx), (speedy_memcpy_mmxext),
3236         (blit_packed422_scanline_c), (blit_packed422_scanline_mmx),
3237         (blit_packed422_scanline_mmxext),
3238         (composite_colour4444_alpha_to_packed422_scanline_c),
3239         (composite_colour4444_alpha_to_packed422_scanline_mmxext),
3240         (composite_packed4444_alpha_to_packed422_scanline_c),
3241         (composite_packed4444_alpha_to_packed422_scanline_mmxext),
3242         (composite_packed4444_to_packed422_scanline_c),
3243         (composite_packed4444_to_packed422_scanline_mmxext),
3244         (composite_alphamask_to_packed4444_scanline_c),
3245         (composite_alphamask_to_packed4444_scanline_mmxext),
3246         (composite_alphamask_alpha_to_packed4444_scanline_c),
3247         (premultiply_packed4444_scanline_c),
3248         (premultiply_packed4444_scanline_mmxext),
3249         (blend_packed422_scanline_c), (blend_packed422_scanline_mmxext),
3250         (quarter_blit_vertical_packed422_scanline_mmxext),
3251         (quarter_blit_vertical_packed422_scanline_c),
3252         (subpix_blit_vertical_packed422_scanline_c),
3253         (a8_subpix_blit_scanline_c), (myround), (init_RGB_to_YCbCr_tables),
3254         (init_YCbCr_to_RGB_tables), (rgb24_to_packed444_rec601_scanline_c),
3255         (rgba32_to_packed4444_rec601_scanline_c),
3256         (packed444_to_rgb24_rec601_scanline_c),
3257         (packed444_to_nonpremultiplied_packed4444_scanline_c),
3258         (aspect_adjust_packed4444_scanline_c), (setup_speedy_calls),
3259         (speedy_get_accel):
3260         * gst/deinterlace2/tvtime/speedy.h:
3261         * gst/deinterlace2/tvtime/sse.h:
3262         * gst/deinterlace2/tvtime/tomsmocomp.c: (Fieldcopy),
3263         (deinterlace_frame_di_tomsmocomp), (dscaler_tomsmocomp_get_method),
3264         (tomsmocomp_init), (tomsmocomp_filter_mmx),
3265         (tomsmocomp_filter_3dnow), (tomsmocomp_filter_sse):
3266         * gst/deinterlace2/tvtime/tomsmocomp.h:
3267         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoop0A.inc:
3268         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopBottom.inc:
3269         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopEdgeA.inc:
3270         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopEdgeA8.inc:
3271         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA.inc:
3272         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA2.inc:
3273         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddA6.inc:
3274         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddAH.inc:
3275         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopOddAH2.inc:
3276         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopTop.inc:
3277         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopVA.inc:
3278         * gst/deinterlace2/tvtime/tomsmocomp/SearchLoopVAH.inc:
3279         * gst/deinterlace2/tvtime/tomsmocomp/StrangeBob.inc:
3280         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc:
3281         * gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll2.inc:
3282         * gst/deinterlace2/tvtime/tomsmocomp/WierdBob.inc:
3283         * gst/deinterlace2/tvtime/vfir.c: (deinterlace_line),
3284         (deinterlace_scanline_vfir), (copy_scanline),
3285         (dscaler_vfir_get_method):
3286         * gst/deinterlace2/tvtime/x86-64_macros.inc:
3287         Add a deinterlacer plugin based on the tvtime/DScaler deinterlacer,
3288         which was relicensed to LGPL for GStreamer and in theory provides
3289         better and faster results than the simple deinterlace element.
3290         Fixes bug #163578.
3291
3292         Ported to GStreamer 0.10 but still not enabled or included in the
3293         build system by default because of bad artefacts caused by a bug
3294         somewhere and as it can be only build on x86/amd64 ATM and requires
3295         special CFLAGS. Will be fixed soon.
3296
3297 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
3298
3299         Based on a patch by: Ryan Houdek <Sonicadvance1 at GMAIL dot COM>
3300
3301         * ext/timidity/gstwildmidi.c: (gst_wildmidi_init),
3302         (gst_wildmidi_change_state), (plugin_init):
3303         * ext/timidity/gstwildmidi.h:
3304         Initialize wildmidi only once in the plugin init function instead
3305         of once for every instance. The second and following calls to the
3306         wildmidi initialization function will fail. Fixes bug #525613.
3307
3308         Also don't register the element at all if wildmidi initialization
3309         fails.
3310
3311 2008-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3312
3313         * ext/soundtouch/gstpitch.cc:
3314         Call gst_element_no_more_pads() after all pads are added.
3315
3316 2008-06-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3317
3318         * gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
3319         (gst_raw_parse_loop), (gst_raw_parse_handle_seek_push),
3320         (gst_raw_parse_handle_seek_pull):
3321         Add simple reverse playback.
3322
3323 2008-06-09  Wim Taymans  <wim.taymans@collabora.co.uk>
3324
3325         * gst/rawparse/gstrawparse.c: (gst_raw_parse_reset),
3326         (gst_raw_parse_push_buffer), (gst_raw_parse_chain),
3327         (gst_raw_parse_loop), (gst_raw_parse_sink_activatepull),
3328         (gst_raw_parse_convert), (gst_raw_parse_sink_event),
3329         (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
3330         (gst_raw_parse_src_query), (gst_raw_parse_get_fps):
3331         * gst/rawparse/gstrawparse.h:
3332         Fix seeking, timestamps, duration and some more. Fixes #536309.
3333
3334 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3335
3336         * examples/app/Makefile.am:
3337         * examples/app/appsrc-ra.c: (feed_data), (seek_data),
3338         (found_source), (bus_message), (main):
3339         * examples/app/appsrc-seekable.c: (feed_data), (seek_data),
3340         (found_source), (bus_message), (main):
3341         * examples/app/appsrc-stream2.c: (feed_data), (found_source),
3342         (bus_message), (main):
3343         Added 3 more example application for using appsrc in random-access mode,
3344         pull-mode streaming and pull mode seekable.
3345
3346         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
3347         (gst_app_src_start), (gst_app_src_do_get_size),
3348         (gst_app_src_create):
3349         * gst-libs/gst/app/gstappsrc.h:
3350         Make stream-type property writable.
3351         Unset flushing when starting so that we reuse appsrc.
3352         Inform basesrc about the configured size.
3353         Emit seek-data signal when we are going to a different offset in
3354         random-access mode.
3355
3356 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3357
3358         * examples/app/appsrc-stream.c: (found_source), (main):
3359         Use deep-notify until we can depend on a playbin2 with support for the
3360         source property.
3361
3362 2008-06-06  Wim Taymans  <wim.taymans@collabora.co.uk>
3363
3364         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_init),
3365         (gst_rtp_bin_finalize), (gst_rtp_bin_change_state):
3366         Fix deadlock when shutting down, use a new lock instead to properly
3367         shutdown.
3368
3369 2008-06-05  Wim Taymans  <wim.taymans@collabora.co.uk>
3370
3371         * examples/app/.cvsignore:
3372         * examples/app/Makefile.am:
3373         * examples/app/appsrc-stream.c: (read_data), (start_feed),
3374         (stop_feed), (found_source), (bus_message), (main):
3375         Added an example on how to use appsrc in playbin in streaming mode from
3376         an mmapped file.
3377
3378         * examples/app/appsrc_ex.c: (main):
3379         Set pipeline to NULL to free queued buffers.
3380
3381         * gst-libs/gst/app/gstapp-marshal.list:
3382         * gst-libs/gst/app/gstappsrc.c: (stream_type_get_type), (_do_init),
3383         (gst_app_src_class_init), (gst_app_src_init),
3384         (gst_app_src_flush_queued), (gst_app_src_dispose),
3385         (gst_app_src_set_property), (gst_app_src_get_property),
3386         (gst_app_src_unlock), (gst_app_src_unlock_stop),
3387         (gst_app_src_start), (gst_app_src_stop), (gst_app_src_is_seekable),
3388         (gst_app_src_check_get_range), (gst_app_src_do_seek),
3389         (gst_app_src_create), (gst_app_src_set_stream_type),
3390         (gst_app_src_get_stream_type), (gst_app_src_set_max_bytes),
3391         (gst_app_src_get_max_bytes), (gst_app_src_push_buffer),
3392         (gst_app_src_end_of_stream), (gst_app_src_uri_get_type),
3393         (gst_app_src_uri_get_protocols), (gst_app_src_uri_get_uri),
3394         (gst_app_src_uri_set_uri), (gst_app_src_uri_handler_init):
3395         * gst-libs/gst/app/gstappsrc.h:
3396         Measure max queue size in bytes instead.
3397         Add support for 3 modes of operation, streaming, seekable and
3398         random-access, making basesrc handle the scheduling modes for each.
3399         Add appsrc:// uri handler so that automatic plugging can be done from
3400         playbin2 or uridecodebin, for example.
3401         Added support for custom segment formats.
3402         Add support for push and pull based operations from the application.
3403         Expand the methods so that errors can be detected.
3404         Flush the queued buffers on seeks and when shutting down.
3405         Add signals to inform the app that a seek must happen.
3406
3407 2008-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
3408
3409         * gst/interleave/deinterleave.c: (gst_deinterleave_add_new_pads),
3410         (gst_deinterleave_src_query):
3411         * gst/interleave/interleave.c: (gst_interleave_src_query_duration),
3412         (gst_interleave_src_query):
3413         Properly implement duration and position queries in bytes format. We
3414         have to take the upstream reply and divide/multiply it by the number
3415         of channels to get the correct result.
3416
3417 2008-06-04  Michael Smith <msmith@songbirdnest.com>
3418
3419         * sys/dshowvideosink/dshowvideofakesrc.cpp:
3420         * sys/dshowvideosink/dshowvideofakesrc.h:
3421         * sys/dshowvideosink/dshowvideosink.cpp:
3422         * sys/dshowvideosink/dshowvideosink.h:
3423           Fix up copyright notice on new plugin.
3424
3425 2008-06-04  David Schleef  <ds@schleef.org>
3426
3427         * ext/dirac/gstdiracenc.cc: Update properties for recent
3428           dirac changes.  Patch from Jonathan Rosser.
3429
3430 2008-06-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
3431
3432         * ext/x264/gstx264enc.c: (gst_x264_enc_header_buf),
3433           (gst_x264_enc_sink_event), (gst_x264_enc_chain),
3434           (gst_x264_enc_encode_frame):
3435           Try harder not to crash when we get an EOS event but haven't set
3436           up the encoder yet (as may happen when upstream errors out with
3437           not-negotiated, for example). Also, always push the EOS event
3438           downstream.
3439
3440 2008-06-04  Sebastian Dröge  <slomo@circular-chaos.org>
3441
3442         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3443         (gst_interleave_pad_get_property), (gst_interleave_pad_class_init),
3444         (gst_interleave_request_new_pad), (gst_interleave_release_pad):
3445         * gst/interleave/interleave.h:
3446         Use an always increasing integer for the number in the name of the
3447         requested sink pads to guarantuee a unique name. Add a "channel"
3448         property to GstInterleavePad to make it possible for applications
3449         to retrieve the channel number in the output for every pad.
3450
3451         Use g_type_register_static_simple() instead of
3452         g_type_register_static() to save some relocations.
3453
3454 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3455
3456         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3457         (gst_interleave_change_state):
3458         Stop GstCollectPads before calling the parent's state change function
3459         when going from PAUSED to READY as we otherwise deadlock.
3460         Fixes bug #536258.
3461
3462 2008-06-03  Wim Taymans  <wim.taymans@collabora.co.uk>
3463
3464         * gst/h264parse/gsth264parse.c: (gst_nal_bs_init),
3465         (gst_h264_parse_sink_setcaps), (gst_h264_parse_chain_forward),
3466         (gst_h264_parse_queue_buffer), (gst_h264_parse_chain_reverse),
3467         (gst_h264_parse_chain):
3468         * gst/h264parse/gsth264parse.h:
3469         Parse codec_data and use the nalu_size_length field to get the NALU
3470         length in packetized h264.
3471         When queueing a packetized buffer in reverse mode, don't unref the
3472         buffer twice.
3473         Avoid accessing the buffer TIMESTAMP field after we pushed it on
3474         the adaptor.
3475
3476 2008-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3477
3478         * gst/interleave/interleave.c:
3479         (gst_interleave_check_channel_positions),
3480         (gst_interleave_set_channel_positions),
3481         (gst_interleave_class_init):
3482         Use new gst_audio_check_channel_positions() function and register
3483         the GstInterleavePad type from a threadsafe context.
3484
3485 2008-06-02  Michael Smith <msmith@songbirdnest.com>
3486
3487         * configure.ac:
3488           Revert accidental addition in configure.ac. Sorry.
3489
3490 2008-06-02  Michael Smith <msmith@songbirdnest.com>
3491
3492         * configure.ac:
3493         * sys/Makefile.am:
3494         * sys/dshowvideosink/Makefile.am:
3495         * sys/dshowvideosink/README:
3496         * sys/dshowvideosink/dshowvideofakesrc.cpp:
3497         * sys/dshowvideosink/dshowvideofakesrc.h:
3498         * sys/dshowvideosink/dshowvideosink.cpp:
3499         * sys/dshowvideosink/dshowvideosink.h:
3500         Add a new win32 videosink. Uses the DirectShow renderers for
3501         high-performance video rendering on win32.
3502         Currently only supports some YUV formats.
3503         Rank PRIMARY, since it's much more useful for the common cases that the
3504         directdraw sink (which only does RGB).
3505
3506 2008-06-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
3507
3508         * ext/spc/Makefile.am:
3509           Dist tag.h
3510
3511 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3512
3513         * ext/faad/gstfaad.c: (gst_faad_sink_event):
3514         Always drain before activating the new segment.
3515
3516 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
3517
3518         * gst/interleave/interleave.c: (gst_interleave_pad_get_type),
3519         (gst_interleave_finalize), (gst_audio_check_channel_positions),
3520         (gst_interleave_set_channel_positions),
3521         (gst_interleave_class_init), (gst_interleave_init),
3522         (gst_interleave_set_property), (gst_interleave_get_property),
3523         (gst_interleave_request_new_pad), (gst_interleave_release_pad),
3524         (gst_interleave_sink_setcaps), (gst_interleave_src_query_duration),
3525         (gst_interleave_src_query_latency), (gst_interleave_collected):
3526         * gst/interleave/interleave.h:
3527         Allow setting channel positions via a property and allow using the
3528         channel positions on the input as the channel positions of the output.
3529
3530         Fix some broken logic and memory leaks.
3531
3532         * tests/check/Makefile.am:
3533         * tests/check/elements/interleave.c: (src_handoff_float32),
3534         (sink_handoff_float32), (GST_START_TEST), (interleave_suite):
3535         Add unit tests for checking correct handling of channel positions.
3536
3537 2008-06-02  Wim Taymans  <wim.taymans@collabora.co.uk>
3538
3539         * ext/faad/gstfaad.c: (gst_faad_dispose), (clear_queued),
3540         (flush_queued), (gst_faad_drain), (gst_faad_do_raw_seek),
3541         (gst_faad_src_event), (gst_faad_sink_event), (gst_faad_chain),
3542         (gst_faad_change_state):
3543         * ext/faad/gstfaad.h:
3544         Add basic reverse playback support.
3545         Clear decoder state after disconts.
3546         Remove some unused code.
3547         Mark output buffers with a discont after a decoding error.
3548
3549 2008-06-02  Sebastian Dröge  <slomo@circular-chaos.org>
3550
3551         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3552
3553         * gst/mpeg4videoparse/mpeg4videoparse.c:
3554         (gst_mpeg4vparse_handle_vos):
3555         Fix mpeg4videoparse on big endian architectures. Fixes bug #536042.
3556
3557 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
3558
3559         * tests/check/elements/mplex.c: (setup_src_pad),
3560         (teardown_src_pad):
3561         Don't use the deprecated gst_element_get_pad().
3562
3563 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
3564
3565         * examples/directfb/gstdfb.c: (main):
3566         Don't use the deprecated gst_element_get_pad().
3567
3568 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3569
3570         Based on patch by: <onkarshinde at gmail dot com>
3571
3572         * sys/vcd/vcdsrc.c: (gst_vcdsrc_uri_get_uri),
3573         (gst_vcdsrc_uri_set_uri):
3574         Allow the track to be set by using the uri. Fixes #535043.
3575
3576 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
3577
3578         * gst/interleave/interleave.c: (gst_interleave_src_query_duration),
3579         (gst_interleave_src_query_latency), (gst_interleave_src_query):
3580         Implement latency query.
3581
3582 2008-05-27  Thijs Vermeir  <thijsvermeir@gmail.com>
3583
3584         * gst/mpegvideoparse/mpegvideoparse.c:
3585         Add GST_BUFFER_FLAG_DELTA_UNIT to not I frame buffers
3586
3587 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3588
3589         * gst/rtpmanager/gstrtpbin.c:
3590         (gst_rtp_bin_propagate_property_to_jitterbuffer),
3591         (gst_rtp_bin_change_state), (new_payload_found),
3592         (new_ssrc_pad_found):
3593         Break out of callbacks when we are shutting down.
3594         Make sure no state changes can happen when we reconfigure.
3595
3596 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3597
3598         * configure.ac:
3599         Require CVS core and base for new audio clock reset method.
3600
3601         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_change_state):
3602         Reset the audio clock. See #521761.
3603
3604 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3605
3606         * ext/jack/gstjackaudiosink.c:
3607         (gst_jack_audio_sink_allocate_channels):
3608         Include the element name in the port name to avoid duplicate port names.
3609
3610 2008-05-26  Sebastian Dröge  <slomo@circular-chaos.org>
3611
3612         * gst/interleave/deinterleave.c:
3613         Add another example launch line.
3614
3615         * gst/interleave/interleave.c: (interleave_24),
3616         (gst_interleave_finalize), (gst_interleave_base_init),
3617         (gst_interleave_class_init), (gst_interleave_init),
3618         (gst_interleave_request_new_pad), (gst_interleave_release_pad),
3619         (gst_interleave_change_state), (__remove_channels),
3620         (__set_channels), (gst_interleave_sink_getcaps),
3621         (gst_interleave_set_process_function),
3622         (gst_interleave_sink_setcaps), (gst_interleave_sink_event),
3623         (gst_interleave_src_query_duration), (gst_interleave_src_query),
3624         (forward_event_func), (forward_event), (gst_interleave_src_event),
3625         (gst_interleave_collected):
3626         * gst/interleave/interleave.h:
3627         Major rewrite of interleave using GstCollectpads. This new version
3628         also supports almost all raw audio formats and has better caps
3629         negotiation. Fixes bug #506594.
3630
3631         Also update docs and add some more examples.
3632
3633         * tests/check/elements/interleave.c: (interleave_chain_func),
3634         (GST_START_TEST), (src_handoff_float32), (sink_handoff_float32),
3635         (interleave_suite):
3636         Add some more extensive unit tests for interleave.
3637
3638 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3639
3640         * gst/rtpmanager/gstrtpjitterbuffer.c:
3641         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
3642         When checking the seqnum, reset the jitterbuffer if the gap is too big,
3643         we need to do this so that we can better handle a restarted source.
3644         Fix some comments.
3645
3646         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew),
3647         (rtp_jitter_buffer_insert):
3648         Tweak the skew resync diff.
3649         Use our working seqnum compare function in -base.
3650         Rework the jitterbuffer insert code to make it clearer and more
3651         performant by only retrieving the seqnum of the input buffer once and by
3652         adding some G_LIKELY compiler hints.
3653         Improve debugging for duplicate packets.
3654
3655         * gst/rtpmanager/rtpsource.c: (rtp_source_process_rtp):
3656         Fix a comment, we don't do skew correction here..
3657
3658 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3659
3660         Patch by: Håvard Graff <havard dot graff at tandberg dot com>
3661
3662         * gst/rtpmanager/gstrtpbin.c:
3663         (gst_rtp_bin_propagate_property_to_jitterbuffer),
3664         (gst_rtp_bin_set_property):
3665         Propagate the do-lost and latency properties to the jitterbuffers when
3666         they are changed on rtpbin.
3667
3668 2008-05-26  Wim Taymans  <wim.taymans@collabora.co.uk>
3669
3670         * examples/switch/switcher.c: (switch_timer):
3671         * gst/replaygain/gstrgvolume.c: (gst_rg_volume_init):
3672         * gst/rtpmanager/gstrtpclient.c: (create_stream):
3673         * gst/sdp/gstsdpdemux.c: (gst_sdp_demux_stream_configure_udp),
3674         (gst_sdp_demux_stream_configure_udp_sink):
3675         * tests/check/elements/deinterleave.c: (GST_START_TEST),
3676         (pad_added_setup_data_check_float32_8ch_cb):
3677         * tests/check/elements/rganalysis.c: (send_eos_event),
3678         (send_tag_event):
3679         Don't use _gst_pad().
3680
3681 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
3682
3683         * docs/plugins/Makefile.am:
3684         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
3685         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
3686         * docs/plugins/gst-plugins-bad-plugins.args:
3687         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
3688         * docs/plugins/gst-plugins-bad-plugins.interfaces:
3689         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
3690         * docs/plugins/gst-plugins-bad-plugins.signals:
3691         * docs/plugins/inspect/plugin-alsaspdif.xml:
3692         * docs/plugins/inspect/plugin-amrwb.xml:
3693         * docs/plugins/inspect/plugin-app.xml:
3694         * docs/plugins/inspect/plugin-bayer.xml:
3695         * docs/plugins/inspect/plugin-bz2.xml:
3696         * docs/plugins/inspect/plugin-cdaudio.xml:
3697         * docs/plugins/inspect/plugin-cdxaparse.xml:
3698         * docs/plugins/inspect/plugin-dfbvideosink.xml:
3699         * docs/plugins/inspect/plugin-dtsdec.xml:
3700         * docs/plugins/inspect/plugin-dvb.xml:
3701         * docs/plugins/inspect/plugin-dvdspu.xml:
3702         * docs/plugins/inspect/plugin-faac.xml:
3703         * docs/plugins/inspect/plugin-faad.xml:
3704         * docs/plugins/inspect/plugin-fbdevsink.xml:
3705         * docs/plugins/inspect/plugin-festival.xml:
3706         * docs/plugins/inspect/plugin-filter.xml:
3707         * docs/plugins/inspect/plugin-flvdemux.xml:
3708         * docs/plugins/inspect/plugin-freeze.xml:
3709         * docs/plugins/inspect/plugin-gsm.xml:
3710         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
3711         * docs/plugins/inspect/plugin-h264parse.xml:
3712         * docs/plugins/inspect/plugin-interleave.xml:
3713         * docs/plugins/inspect/plugin-jack.xml:
3714         * docs/plugins/inspect/plugin-ladspa.xml:
3715         * docs/plugins/inspect/plugin-metadata.xml:
3716         * docs/plugins/inspect/plugin-mms.xml:
3717         * docs/plugins/inspect/plugin-modplug.xml:
3718         * docs/plugins/inspect/plugin-mpeg2enc.xml:
3719         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
3720         * docs/plugins/inspect/plugin-mpegtsparse.xml:
3721         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
3722         * docs/plugins/inspect/plugin-musepack.xml:
3723         * docs/plugins/inspect/plugin-musicbrainz.xml:
3724         * docs/plugins/inspect/plugin-mve.xml:
3725         * docs/plugins/inspect/plugin-nas.xml:
3726         * docs/plugins/inspect/plugin-neon.xml:
3727         * docs/plugins/inspect/plugin-nsfdec.xml:
3728         * docs/plugins/inspect/plugin-nuvdemux.xml:
3729         * docs/plugins/inspect/plugin-rawparse.xml:
3730         * docs/plugins/inspect/plugin-real.xml:
3731         * docs/plugins/inspect/plugin-replaygain.xml:
3732         * docs/plugins/inspect/plugin-rfbsrc.xml:
3733         * docs/plugins/inspect/plugin-sdl.xml:
3734         * docs/plugins/inspect/plugin-sdp.xml:
3735         * docs/plugins/inspect/plugin-selector.xml:
3736         * docs/plugins/inspect/plugin-sndfile.xml:
3737         * docs/plugins/inspect/plugin-soundtouch.xml:
3738         * docs/plugins/inspect/plugin-spcdec.xml:
3739         * docs/plugins/inspect/plugin-speed.xml:
3740         * docs/plugins/inspect/plugin-speexresample.xml:
3741         * docs/plugins/inspect/plugin-stereo.xml:
3742         * docs/plugins/inspect/plugin-tta.xml:
3743         * docs/plugins/inspect/plugin-vcdsrc.xml:
3744         * docs/plugins/inspect/plugin-videosignal.xml:
3745         * docs/plugins/inspect/plugin-vmnc.xml:
3746         * docs/plugins/inspect/plugin-wildmidi.xml:
3747         * docs/plugins/inspect/plugin-x264.xml:
3748         * docs/plugins/inspect/plugin-xvid.xml:
3749         * docs/plugins/inspect/plugin-y4menc.xml:
3750         Add interleave/deinterleave to the docs and while at that
3751         run make update in docs/plugins.
3752
3753         * gst/interleave/deinterleave.c:
3754         Add a parapraph about using a queue and audioconvert after the source
3755         pads to the docs.
3756
3757 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
3758
3759         * gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
3760         (gst_deinterleave_class_init), (gst_deinterleave_init),
3761         (gst_deinterleave_add_new_pads), (gst_deinterleave_sink_getcaps):
3762         * gst/interleave/deinterleave.h:
3763         Don't set a getcaps() function on the src pads as it's not required
3764         and the default getcaps() function returns the correct results for
3765         our src pads.
3766
3767         Complete documentation and add myself to the authors of the element.
3768
3769 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
3770
3771         * tests/icles/.cvsignore:
3772         * tests/icles/Makefile.am:
3773         * tests/icles/test-oss4.c: (opt_show_mixer_messages), (WAIT_TIME),
3774           (show_mixer_messages), (probe_mixer_tracks), (probe_pad),
3775           (probe_details), (probe_element), (main):
3776           Small oss4 test that probes for available devices and retrieves
3777           their caps and mixer tracks and all that. Also allows testing of
3778           mixer change messages on the bus.
3779
3780 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
3781
3782         * sys/oss4/oss4-mixer.c: (gst_oss4_mixer_open):
3783         * sys/oss4/oss4-property-probe.c:
3784           (gst_oss4_property_probe_find_device_name),
3785           (gst_oss4_property_probe_find_device_name_nofd):
3786         * sys/oss4/oss4-property-probe.h:
3787         * sys/oss4/oss4-sink.c: (gst_oss4_sink_get_property):
3788         * sys/oss4/oss4-source.c: (gst_oss4_source_get_property):
3789           Make device-name probing in NULL state work better (e.g. for the
3790           gnome-control-center sound capplet).
3791
3792 2008-05-22  Wim Taymans  <wim.taymans@collabora.co.uk>
3793
3794         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3795
3796         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_push),
3797         (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain),
3798         (gst_mpeg4vparse_change_state):
3799         Move some code around to integrate the startcode searching with the
3800         other bits of parsing, avoid a whole bunch of peeks.
3801         Get rid of invalid data that should not happen according to the specs.
3802         Fixes #533559.
3803
3804 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3805
3806         Patch by: Bastien Nocera <hadess at hadess dot net>
3807
3808         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_class_init),
3809         (gst_mythtv_src_init), (gst_mythtv_src_clear),
3810         (do_read_request_response), (gst_mythtv_src_create),
3811         (gst_mythtv_src_start):
3812         Correctly set duration to get a more correct seek bar in totem.
3813
3814         Disable query and event functions as they don't work and do some
3815         smaller cleanup.
3816
3817         Fixes bug #533736.
3818
3819 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
3820
3821         Patch by: Brian Koropoff <brianhk at cs dot washington dot edu>
3822
3823         * ext/spc/Makefile.am:
3824         * ext/spc/gstspc.c: (gst_spc_dec_class_init),
3825         (gst_spc_dec_src_query_type), (gst_spc_dec_init),
3826         (gst_spc_dec_dispose), (gst_spc_dec_sink_event),
3827         (gst_spc_duration), (gst_spc_fadeout), (gst_spc_dec_src_event),
3828         (gst_spc_dec_src_query), (spc_play), (spc_setup):
3829         * ext/spc/gstspc.h:
3830         * ext/spc/tag.c: (spc_tag_is_extended), (spc_tag_is_text_format),
3831         (spc_tag_is_present), (spc_tag_unpack_date), (spc_tag_clear),
3832         (spc_tag_get_info), (spc_tag_free):
3833         * ext/spc/tag.h:
3834         Add support for some essential features like seeking, reading song
3835         duration and extended tags. Fixes bug #454151.
3836
3837 2008-05-19  Sebastian Dröge  <slomo@circular-chaos.org>
3838
3839         * tests/check/elements/deinterleave.c: (GST_START_TEST):
3840         Set keep-positions property to TRUE for the 8 channel test to ensure
3841         that the original channel position is set on the output.
3842
3843 2008-05-19  Sebastian Dröge  <slomo@circular-chaos.org>
3844
3845         * gst/interleave/deinterleave.c: (gst_deinterleave_class_init),
3846         (gst_deinterleave_init), (gst_deinterleave_add_new_pads),
3847         (gst_deinterleave_set_pads_caps), (gst_deinterleave_set_property),
3848         (gst_deinterleave_get_property):
3849         * gst/interleave/deinterleave.h:
3850         Add a property to select whether channel positions should be kept on
3851         the mono output buffers or should be dropped.
3852
3853 2008-05-18  Jan Schmidt  <jan.schmidt@sun.com>
3854
3855         * docs/Makefile.am:
3856         Oops - fix the spelling of the variable I added.
3857
3858 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
3859
3860         * gst/interleave/deinterleave.c: (gst_deinterleave_finalize),
3861         (gst_deinterleave_init), (gst_deinterleave_sink_event),
3862         (gst_deinterleave_process), (gst_deinterleave_sink_activate_push):
3863         * gst/interleave/deinterleave.h:
3864         Queue events until src pads were added and they can be sent. Otherwise
3865         downstream will never get the first newsegment event.
3866
3867 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
3868
3869         * gst/interleave/deinterleave.c: (gst_deinterleave_sink_setcaps),
3870         (gst_deinterleave_getcaps):
3871         Always set the channel positions when gst_audio_get_channel_positions()
3872         returns something, even if they're not set in the caps. This makes
3873         sure that the output channels can be interleaved again correctly
3874         in the mono/stereo cases too.
3875
3876         Don't ask for the peercaps of the current pad in getcaps() as this
3877         might call getcaps() again and deadlock.
3878
3879 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3880
3881         * ext/timidity/gstwildmidi.c: (wildmidi_open_config):
3882         Check some more common locations for a valid configuration file.
3883         Fixes bug #533435. Packagers should still #define WILDMIDI_CFG
3884         to the distributions default location.
3885
3886 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3887
3888         * gst/interleave/Makefile.am:
3889         * gst/interleave/deinterleave.c: (deinterleave_24),
3890         (gst_deinterleave_finalize), (gst_deinterleave_base_init),
3891         (gst_deinterleave_class_init), (gst_deinterleave_init),
3892         (gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
3893         (gst_deinterleave_set_process_function),
3894         (gst_deinterleave_sink_setcaps), (__remove_channels),
3895         (__set_channels), (gst_deinterleave_getcaps),
3896         (gst_deinterleave_process), (gst_deinterleave_chain),
3897         (gst_deinterleave_sink_activate_push):
3898         * gst/interleave/deinterleave.h:
3899         Add support for all raw audio formats and provide better negotiation
3900         if the caps are changing.
3901
3902         Don't allow changes of the channel positions and set the position of
3903         the corresponding channel on the src pad caps.
3904
3905         General cleanup and smaller bugfixes.
3906
3907         * tests/check/elements/deinterleave.c: (float_buffer_check_probe):
3908         Check the channel positions on the output buffer caps.
3909
3910 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
3911
3912         * docs/Makefile.am:
3913         Don't attempt to build plugin docs when they're disabled.
3914
3915         * gst/bayer/Makefile.am:
3916         Add libgstvideo to the link.
3917
3918         * gst/rtpmanager/Makefile.am:
3919         Fix link order, and move LIBS things to _LIBS
3920
3921 2008-05-16  Jan Schmidt  <jan.schmidt@sun.com>
3922
3923         * docs/plugins/gst-plugins-bad-plugins.types:
3924         Remove bogus attempt to pull 'metadata' plugin's base
3925         class into the docs.
3926
3927 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3928
3929         * gst/rtpmanager/gstrtpjitterbuffer.c:
3930         (gst_rtp_jitter_buffer_chain):
3931         Simply drop bad RTP packets with a warning instead of just posting an
3932         error and stopping. This is a perfectly recoverable event and we don't
3933         force people to use an rtpbin to filter out bad packets first.
3934
3935 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
3936
3937         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_init):
3938         Set fixed caps on the srcpad after we created the pad...
3939
3940 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3941
3942         * tests/check/Makefile.am:
3943           Remove deinterleave test from VALGRIND_TO_FIX again now that
3944           there are suppressions in gst.supp which make this work for me.
3945
3946 2008-05-14  Tim-Philipp Müller  <tim.muller at collabora co uk>
3947
3948         * tests/check/Makefile.am:
3949           Add deinterleave unit test to VALGRIND_TO_FIX, since it causes
3950           weird invalid free errors in valgrind/libc after _exit for some
3951           reason.
3952
3953         * tests/check/elements/deinterleave.c: (pads_created),
3954           (set_channel_positions), (src_handoff_float32_8ch),
3955           (float_buffer_check_probe),
3956           (pad_added_setup_data_check_float32_8ch_cb),
3957           (make_fake_src_8chans_float32), (GST_START_TEST),
3958           (deinterleave_suite):
3959           Add some more deinterleave unit test bits I had locally.
3960
3961 2008-05-14  Sebastian Dröge  <slomo@circular-chaos.org>
3962
3963         * gst/interleave/Makefile.am:
3964         * gst/interleave/deinterleave.h:
3965         * gst/interleave/interleave.h:
3966         * gst/interleave/plugin.h:
3967         Split definitions into separate header files for better documentation
3968         generation.
3969         
3970         * gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
3971         (gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
3972         (gst_deinterleave_process):
3973         Don't use alloca, allow caps changes as long as the number of channels
3974         does not change, don't use g_warning, return NOT_NEGOTIATED as early
3975         as possible and some other cleanup.
3976
3977         * gst/interleave/interleave.c: (gst_interleave_base_init),
3978         (gst_interleave_class_init):
3979         Do some random cleanup.
3980
3981         * tests/check/Makefile.am:
3982         * tests/check/elements/deinterleave.c: (GST_START_TEST),
3983         (deinterleave_chain_func), (deinterleave_pad_added),
3984         (deinterleave_suite):
3985         Add unit tests for the deinterleave element.
3986
3987 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
3988
3989         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3990
3991         * gst/mpeg4videoparse/mpeg4videoparse.c:
3992         (gst_mpeg4vparse_set_new_caps), (gst_mpeg4vparse_align),
3993         (get_bits), (next_start_code), (gst_mpeg4vparse_handle_vos),
3994         (gst_mpeg4vparse_push), (gst_mpeg4vparse_drain),
3995         (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps),
3996         (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_src_query),
3997         (gst_mpeg4vparse_set_property), (gst_mpeg4vparse_get_property),
3998         (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init):
3999         * gst/mpeg4videoparse/mpeg4videoparse.h:
4000         Parse the config data (either outbound or in the stream) to set   
4001         width/height, apect ration, framerate in the caps if applicable.
4002         Mark frames as GST_BUFFER_FLAG_DELTA_UNIT when they are not
4003         intra frames
4004         Set the timestamps of outgoing buffers to the buffer in
4005         which the VOP header was found.
4006         Drop incoming data untill configuration is found (by default,
4007         configurable using a property).
4008         Report a 1 frame latency. Fixes #532723.
4009
4010 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4011
4012         * gst/real/gstrealvideodec.c: (open_library):
4013         Add some debug for where we are searching for libraries.
4014
4015 2008-05-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4016
4017         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
4018         Actually add the do-lost property to the object.
4019
4020 2008-05-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4021
4022         * gst/rtpmanager/gstrtpjitterbuffer.c:
4023         (gst_rtp_jitter_buffer_loop):
4024         Avoid waiting for a negative (huge) duration when the last packet has a
4025         lower timestamp than the current packet.
4026
4027 2008-05-12  Peter Kjellerstedt  <pkj@axis.com>
4028
4029         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_query_send_rtcp_src):
4030         Make sure to unref the rtpsession returned by gst_pad_get_parent() to
4031         prevent a memory leak.
4032
4033
4034 2008-05-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4035
4036         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4037         Quieten some docs output
4038
4039 2008-05-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4040
4041         * gst/rtpmanager/gstrtpjitterbuffer.c:
4042         (gst_rtp_jitter_buffer_loop):
4043         Initialise with GST_CLOCK_TIME_NONE to avoid compiler warning.
4044
4045 2008-05-11  Jan Schmidt  <jan.schmidt@sun.com>
4046
4047         * docs/plugins/Makefile.am:
4048         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
4049         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4050         * docs/plugins/inspect/plugin-gstinterlace.xml:
4051         * gst/deinterlace/gstdeinterlace.c:
4052         * gst/deinterlace/gstdeinterlace.h:
4053         Random doc of the day: the deinterlace element.
4054
4055 2008-05-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4056
4057         * gst/mpegtsparse/mpegtspacketizer.c:
4058         * gst/mpegtsparse/mpegtsparse.c:
4059         Make sure all schedule EIT and non-actual transport stream
4060         EITs are parsed. Also add present-following flag and
4061         actual-transport-stream flag to eit bus message.
4062
4063 2008-05-09  Peter Kjellerstedt  <pkj@axis.com>
4064
4065         * gst/rtpmanager/rtpsource.c: (rtp_source_finalize):
4066         Make sure to unref the caps used by RTPSource to prevent a memory leak.
4067
4068 2008-05-08  Tim-Philipp Müller  <tim.muller at collabora co uk>
4069
4070         Based on patch by: Clive Wright <clive_wright ntlworld com>
4071
4072         * sys/oss4/oss4-mixer-slider.c: (gst_oss4_mixer_slider_unpack_volume):
4073           Apparently mono sliders have the mono value repeated in the upper bits,
4074           so mask those out when reading them. Probably makes the mixer applet
4075           work properly in some more cases.
4076
4077 2008-05-08  Wim Taymans  <wim.taymans@collabora.co.uk>
4078
4079         Patch by: Olivier Crete <tester at tester dot ca>
4080
4081         * gst/rtpmanager/rtpsession.c: (source_clock_rate),
4082         (rtp_session_process_bye), (rtp_session_send_bye_locked):
4083         Unlock the session lock when calling one of our callbacks. 
4084         Fixes #532011.
4085
4086 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
4087
4088         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4089
4090         * gst/rtpmanager/gstrtpsession.c:
4091         (gst_rtp_session_event_send_rtp_sink):
4092         Send RTP BYE command on EOS. Fixes bug #531955.
4093
4094 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4095
4096         * win32/common/config.h.in:
4097           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
4098           use the real thing than having "???" unconditionally.
4099
4100 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4101
4102         * gst-libs/gst/app/.cvsignore:
4103         * gst-libs/gst/app/Makefile.am:
4104         * gst-libs/gst/app/gstapp-marshal.list:
4105         Add marshal.list, make it compile and add to cvsignore.
4106
4107         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_dispose),
4108         (gst_app_sink_stop):
4109         Small cleanups.
4110
4111         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
4112         (gst_app_src_init), (gst_app_src_set_property),
4113         (gst_app_src_get_property), (gst_app_src_unlock),
4114         (gst_app_src_unlock_stop), (gst_app_src_start), (gst_app_src_stop),
4115         (gst_app_src_create), (gst_app_src_set_caps),
4116         (gst_app_src_get_caps), (gst_app_src_set_size),
4117         (gst_app_src_get_size), (gst_app_src_set_seekable),
4118         (gst_app_src_get_seekable), (gst_app_src_set_max_buffers),
4119         (gst_app_src_get_max_buffers), (gst_app_src_push_buffer),
4120         (gst_app_src_end_of_stream):
4121         * gst-libs/gst/app/gstappsrc.h:
4122         Beat appsrc in shape, add signals and actions.
4123         Add some docs.
4124         Add properties for caps, size, seekability and max-buffers.
4125         Fix unlock/stop code.
4126
4127 2008-05-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
4128
4129         * configure.ac:
4130           Error out if we don't have the required versions of core/base.
4131
4132 2008-05-05  Wim Taymans  <wim.taymans@collabora.co.uk>
4133
4134         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init),
4135         (gst_app_sink_init), (gst_app_sink_set_property),
4136         (gst_app_sink_get_property), (gst_app_sink_unlock_start),
4137         (gst_app_sink_unlock_stop), (gst_app_sink_flush_unlocked),
4138         (gst_app_sink_start), (gst_app_sink_stop), (gst_app_sink_event),
4139         (gst_app_sink_preroll), (gst_app_sink_render),
4140         (gst_app_sink_set_caps), (gst_app_sink_set_drop),
4141         (gst_app_sink_get_drop):
4142         * gst-libs/gst/app/gstappsink.h:
4143         Start some docs.
4144         Add property to drop buffers when the queue is filled
4145         Fix unlocking and flushing when the queues are filled.
4146
4147 2008-04-29  Sebastian Dröge  <slomo@circular-chaos.org>
4148
4149         Patch by: Jens Granseuer <jensgr at gmx dot net>
4150
4151         * gst/subenc/gstsrtenc.c: (gst_srt_enc_timestamp_to_string):
4152         Declare variables at the beginning of blocks. Fixes compilation with
4153         gcc 2.x and other compilers. Fixes bug #530611.
4154
4155 2008-04-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4156
4157         * gst/mpegtsparse/mpegtspacketizer.c:
4158         * gst/mpegtsparse/mpegtspacketizer.h:
4159         * gst/mpegtsparse/mpegtsparse.c:
4160         Detect SI pids (NIT, SDT, EIT etc.) based on table id and not
4161         by pid number. This allows for example the EPG data from UK's
4162         freesat to be picked up.
4163
4164 2008-04-26  Sebastian Dröge  <slomo@circular-chaos.org>
4165
4166         * ext/mpeg2enc/gstmpeg2enc.cc:
4167         * ext/soundtouch/gstbpmdetect.cc:
4168         Cast NULL sentinels to void * as NULL is defined as an integer
4169         constant in most environments when using C++ and it's size might
4170         be different from a pointer.
4171
4172 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4173
4174         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init),
4175         (gst_app_sink_init), (gst_app_sink_set_property),
4176         (gst_app_sink_get_property), (gst_app_sink_event),
4177         (gst_app_sink_preroll), (gst_app_sink_render),
4178         (gst_app_sink_set_emit_signals), (gst_app_sink_get_emit_signals),
4179         (gst_app_sink_set_max_buffers), (gst_app_sink_get_max_buffers),
4180         (gst_app_sink_pull_buffer):
4181         * gst-libs/gst/app/gstappsink.h:
4182         Add more docs.
4183         Add signals for when preroll and render buffers are available.
4184         Add property to control signal emission.
4185         Add property to control the max queue size.
4186
4187 2008-04-25  Michael Smith <msmith@songbirdnest.com>
4188
4189         * gst-libs/gst/dshow/Makefile.am:
4190           Use CXXFLAGS rather than CFLAGS; these are C++ files.
4191           Define required constants appropriately.
4192         * sys/dshowdecwrapper/Makefile.am:
4193           Add required include dir, libraries.
4194           Define required constants appropriately.
4195
4196 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4197
4198         * gst/rtpmanager/gstrtpbin.c: (create_stream), (gst_rtp_bin_init),
4199         (gst_rtp_bin_set_property), (gst_rtp_bin_get_property):
4200         * gst/rtpmanager/gstrtpbin.h:
4201         Expose new jitterbuffer property in rtpbin too.
4202
4203 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4204
4205         * gst/rtpmanager/gstrtpjitterbuffer.c:
4206         (gst_rtp_jitter_buffer_class_init), (gst_rtp_jitter_buffer_init),
4207         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property),
4208         (gst_rtp_jitter_buffer_get_property):
4209         Disable sending out rtp packet lost events by default and make a
4210         property to enabe it. We will likely enable it by default when the base
4211         depayloaders have a default handler for them so that we don't send these
4212         events all through the pipeline for now.
4213
4214 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4215
4216         * gst/rtpmanager/gstrtpjitterbuffer.c:
4217         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_flush_stop),
4218         (gst_rtp_jitter_buffer_src_event), (gst_rtp_jitter_buffer_chain),
4219         (gst_rtp_jitter_buffer_loop):
4220         Remove private version of a function that is in -base now.
4221         Add src event handler.
4222         Rework the jitterbuffer pushing loop so that it can quickly react to
4223         lost packets and instruct the depayloader of them. This can then be used
4224         to implement error concealment data.
4225
4226 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4227
4228         * gst/rtpmanager/gstrtpsession.c:
4229         (gst_rtp_session_query_send_rtcp_src), (create_recv_rtcp_sink),
4230         (create_send_rtcp_src):
4231         Set up some internal links functions for the RTCP and sync pads because
4232         the defaults are really not correct.
4233         Implement a query handler for the RTCP src pad, mostly to correctly
4234         report about the latency.
4235
4236 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4237
4238         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
4239         (gst_rtp_bin_sync_chain):
4240         * gst/rtpmanager/rtpsession.c: (update_arrival_stats),
4241         (rtp_session_process_sr), (rtp_session_on_timeout):
4242         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
4243         (calculate_jitter):
4244         * gst/rtpmanager/rtpsource.h:
4245         * gst/rtpmanager/rtpstats.h:
4246         Also keep track of the first buffer timestamp together with the first
4247         RTP timestamp as they both are needed to construct the timing of
4248         outgoing packets in the jitterbuffer and are therefore also needed to
4249         manage lip-sync. This fixes lip-sync if the first RTP packets arrive
4250         with a wildly different gap.
4251
4252 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4253
4254         * gst/flv/gstflvdemux.c: (gst_flv_demux_query):
4255         Forward unknown queries upstream instead of returning FALSE on them.
4256
4257 2008-04-25  Sebastian Dröge  <slomo@circular-chaos.org>
4258
4259         * configure.ac:
4260         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
4261         (gst_musepackdec_init), (gst_musepackdec_dispose),
4262         (gst_musepackdec_handle_seek_event), (gst_musepack_stream_init),
4263         (gst_musepackdec_loop), (plugin_init):
4264         * ext/musepack/gstmusepackdec.h:
4265         * ext/musepack/gstmusepackreader.c:
4266         * ext/musepack/gstmusepackreader.h:
4267         Add support for the new libmpcdec API which magically gets us support
4268         for SV8 files. Also do some random cleanup. Fixes bug #526905.
4269
4270 2008-04-24  Jan Schmidt  <jan.schmidt@sun.com>
4271
4272         * configure.ac:
4273         Back to development -> 0.10.7.1
4274
4275 === release 0.10.7 ===
4276
4277 2008-04-24  Jan Schmidt <jan.schmidt@sun.com>
4278
4279         * configure.ac:
4280           releasing 0.10.7, "House of Cards"
4281
4282 2008-04-22  Stefan Kost  <ensonic@users.sf.net>
4283
4284         * ext/faad/gstfaad.c:
4285           Don't leak GstAudioChannelPosition. Fixes #529378.
4286
4287 2008-04-22  Wim Taymans  <wim.taymans@collabora.co.uk>
4288
4289         * gst/sdp/gstsdpdemux.c: (request_pt_map):
4290         Ref caps, see #528245.
4291
4292 2008-04-22  Jan Schmidt  <jan.schmidt@sun.com>
4293
4294         * configure.ac:
4295         0.10.6.4 pre-release
4296
4297 2008-04-21  Sebastian Dröge  <slomo@circular-chaos.org>
4298
4299         * tests/check/elements/rganalysis.c: (GST_START_TEST):
4300         Don't leak a tag list. Fixes bug #529285.
4301
4302 2008-04-21  Sebastian Dröge  <slomo@circular-chaos.org>
4303
4304         * tests/check/elements/ofa.c: (bus_handler):
4305         Don't leak the tags string and tag list. Fixes bug #529283.
4306
4307 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4308
4309         Patch by: Olivier Crete <tester at tester dot ca>
4310
4311         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
4312         (new_ssrc_pad_found):
4313         Ref caps when inserting into the cache.
4314         Don't leak pads.
4315
4316         * gst/rtpmanager/gstrtpjitterbuffer.c:
4317         (gst_rtp_jitter_buffer_get_clock_rate),
4318         (gst_rtp_jitter_buffer_query):
4319         Avoid a caps leak.
4320         Don't leak refcount in query.
4321
4322         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps),
4323         (gst_rtp_pt_demux_chain):
4324         Avoid caps leaks.
4325
4326         * gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
4327         (gst_rtp_session_init), (return_true),
4328         (gst_rtp_session_clear_pt_map), (gst_rtp_session_cache_caps),
4329         (gst_rtp_session_clock_rate):
4330         Ref caps when inserting into the cache.
4331         Fix some more caps leaks. Fixes #528245.
4332
4333 2008-04-18  Tim-Philipp Müller  <tim at centricular dot net>
4334
4335         * tests/icles/metadata_editor.c:
4336           Add cast to placate gcc 4.1.2.
4337
4338 2008-04-16  Jan Schmidt  <jan.schmidt@sun.com>
4339
4340         * configure.ac:
4341         0.10.6.3 pre-release
4342
4343 2008-04-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4344
4345         * sys/dvb/gstdvbsrc.c:
4346         Revert patch that added a loop timeout.
4347         Fixes #528614.
4348
4349 2008-04-17  Wim Taymans  <wim.taymans@collabora.co.uk>
4350
4351         * gst/rtpmanager/gstrtpbin.c: (get_pt_map), (free_client),
4352         (gst_rtp_bin_associate), (gst_rtp_bin_get_free_pad_name):
4353         * gst/rtpmanager/gstrtpjitterbuffer.c:
4354         (gst_rtp_jitter_buffer_get_clock_rate):
4355         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps):
4356         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
4357         Unset GValues after g_signal_emitv so that we avoid a refcount leak.
4358         Don't leak a padname.
4359         Don't leak client streams list.
4360         Lock rtpbin when associating streams. Fixes #528245.
4361
4362 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4363
4364         * tests/check/Makefile.am:
4365         Don't inlcude dc1394src in the generic/states test as it requires
4366         special hardware. Fixes bug #528011.
4367
4368 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4369
4370         * tests/check/elements/ofa.c: (bus_handler), (GST_START_TEST):
4371         Only check if the generated fingerprints are valid Base64. The
4372         fingerprints are different when running on different architectures
4373         which is a) no problem because the fingerprints are tolerant enough
4374         and b) is caused by libofa. Fixes bug #528266.
4375
4376 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
4377
4378         * ext/timidity/Makefile.am:
4379         Dist all source files, no matter if only timidity or wildmidi or
4380         nothing is found by configure. Fixes bug #528000.
4381
4382 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
4383
4384         * gst-plugins-bad.spec.in:
4385           Remove souphttpsrc plugin from spec files, it's moved to -good.
4386
4387 2008-04-14  Jan Schmidt  <jan.schmidt@sun.com>
4388
4389         * tests/check/Makefile.am:
4390         Remove soup test certificates from the dist.
4391
4392 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
4393
4394         * ext/dirac/gstdiracenc.cc:
4395         Fix compilation by casting string constants.
4396
4397         * sys/Makefile.am:
4398         Fix WININET_DIR variable reference.
4399
4400 2008-04-13  Jan Schmidt  <jan.schmidt@sun.com>
4401
4402         * configure.ac:
4403         * docs/plugins/Makefile.am:
4404         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
4405         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
4406         * docs/plugins/gst-plugins-bad-plugins.args:
4407         * docs/plugins/inspect/plugin-soup.xml:
4408         * ext/Makefile.am:
4409         * ext/soup/Makefile.am:
4410         * ext/soup/gstsouphttpsrc.c:
4411         * ext/soup/gstsouphttpsrc.h:
4412         * tests/check/Makefile.am:
4413         * tests/check/elements/souphttpsrc.c:
4414         * tests/check/test-cert.pem:
4415         * tests/check/test-key.pem:
4416
4417         Remove soup plugin that's moved to -good (#523124)
4418
4419 2008-04-12  Tim-Philipp Müller  <tim at centricular dot net>
4420
4421         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
4422           (gst_flv_parse_tag_script):
4423           Handle NULL returns from FLV_GET_STRING() more gracefully. Fixes
4424           crash caused by a strlen on a NULL string (#527622).
4425
4426 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4427
4428         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4429
4430         * sys/dshowsrcwrapper/gstdshowvideosrc.c: (PROP_DEVICE_NAME),
4431           (gst_dshowvideosrc_class_init), (gst_dshowvideosrc_init),
4432           (gst_dshowvideosrc_dispose), (gst_dshowvideosrc_stop),
4433           (gst_dshowvideosrc_unlock), (gst_dshowvideosrc_unlock_stop),
4434           (gst_dshowvideosrc_create), (gst_dshowvideosrc_push_buffer):
4435         * sys/dshowsrcwrapper/gstdshowvideosrc.h:
4436           Don't increase latency by queuing buffers in an async queue when
4437           the streaming thread can't keep up or isn't scheduled often
4438           enough for some other reason, but just drop the previous buffer
4439           in that case. Also implement GstBaseSrc::unlock for faster
4440           unlocking when shutting down. (#520892).
4441
4442 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4443
4444         * tests/icles/metadata_editor.c: (ENC_UNKNOWN), (last_pixbuf),
4445           (draw_pixbuf), (change_tag_list), (update_draw_pixbuf),
4446           (ui_drawing_size_allocate_cb), (on_drawingMain_expose_event),
4447           (on_buttonSaveFile_clicked), (ui_create), (me_gst_bus_callback_view),
4448           (me_gst_setup_view_pipeline), (process_file):
4449         * tests/icles/metadata_editor.glade:
4450           Remove GstXOverlay stuff and use gdkpixbufsink plus some rather crude
4451           drawing/scaling logic to make this compile and work on all platforms.
4452           Fixes #518227.
4453
4454 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4455
4456         * configure.ac:
4457           Bump core/base requirements to released versions to avoid
4458           confusion.
4459
4460         * gst/deinterlace/gstdeinterlace.c: (deinterlace_debug),
4461           (GST_CAT_DEFAULT), (gst_deinterlace_base_init),
4462           (gst_deinterlace_set_caps), (plugin_init):
4463           Add debug category, use _set_element_details_simple and
4464           remove special code path for Y42B to calculate offsets and
4465           strides; libgstvideo knows how to handle this format now.
4466
4467 2008-04-11  Tim-Philipp Müller  <tim at centricular dot net>
4468
4469         * gst/cdxaparse/Makefile.am:
4470         * gst/cdxaparse/gstcdxaparse.c:
4471         * gst/cdxaparse/gstcdxastrip.c:
4472         * gst/cdxaparse/gstcdxastrip.h:
4473         * gst/cdxaparse/gstvcdparse.c:
4474         * gst/cdxaparse/gstvcdparse.h:
4475           Port VCD parser (formerly cdxastrip) from 0.8 to 0.10. Doesn't do
4476           anything the 0.8 version didn't do though.
4477
4478 2008-04-11  Julien Moutte  <julien@fluendo.com>
4479
4480         * sys/oss4/oss4-mixer-enum.c:
4481         (gst_oss4_mixer_enum_get_values_locked):
4482         * sys/oss4/oss4-source.c: (gst_oss4_source_delay): Fix arguments
4483         format in debug statements.
4484
4485 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
4486
4487         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
4488
4489         * configure.ac:
4490         * sys/Makefile.am:
4491         * sys/wininet/Makefile.am:
4492         * sys/wininet/gstwininetsrc.c:
4493         * sys/wininet/gstwininetsrc.h:
4494           Add wininetsrc for basic http/ftp support on windows (#520897).
4495
4496 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
4497
4498         * gst/nsf/nsf.h:
4499           Change prototype of process function here too to avoid
4500           'incompatible assignment' warnings.
4501
4502 2008-04-10  Sebastian Dröge  <slomo@circular-chaos.org>
4503
4504         * tests/check/elements/souphttpsrc.c: (got_buffer),
4505         (souphttpsrc_suite):
4506         Increase the timeout for the internet tests to 250 seconds
4507         and check for NULL caps instead of just crashing.
4508         The real fix would be to implement an shoutcast server for the unit test
4509         instead of relying on a working internet connection.
4510         Fixes bug #521749.
4511
4512 2008-04-10  Peter Kjellerstedt  <pkj@axis.com>
4513
4514         * gst/rtpmanager/gstrtpbin.c: (free_session):
4515         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_finalize):
4516         Avoid leaking pads in the RTP manager.
4517
4518 2008-04-09  Jan Schmidt  <Jan.Schmidt@sun.com>
4519
4520         * gst/nsf/nes_apu.c: (apu_process):
4521         * gst/nsf/nes_apu.h:
4522         Don't do void pointer arithmetic - it's a gcc extension.
4523
4524 2008-04-06  Tim-Philipp Müller  <tim at centricular dot net>
4525
4526         * ext/jack/gstjackaudiosink.c: (gst_jack_audio_sink_class_init):
4527           Work around missing bits of thread-safety on older GLibs some
4528           more to avoid assertions when starting up multiple playbin
4529           objects concurrently (see #512382).
4530
4531 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
4532
4533         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4534
4535         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_response_cb):
4536         Only ignore actual redirects not all responses when in state
4537         GST_SOUP_HTTP_SRC_SESSION_IO_STATUS_RUNNING. Fixes bug #526337.
4538
4539 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
4540
4541         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
4542
4543         * configure.ac:
4544         Actually build dlls when cross-compiling with mingw32.
4545         Fixes bug #526247.
4546
4547 2008-04-05  Sebastian Dröge  <slomo@circular-chaos.org>
4548
4549         * tests/check/elements/ofa.c: (GST_START_TEST):
4550         Also check that we have processed at least 135 seconds of audio
4551         until we stop and calculated a fingerprint.
4552
4553 2008-04-04  Tim-Philipp Müller  <tim at centricular dot net>
4554
4555         * gst/subenc/gstsrtenc.c:
4556         * gst/subenc/gstsrtenc.h:
4557           GstSrtenc => GstSrtEnc and gst_srtenc_ => gst_srt_enc_.
4558
4559 2008-04-04  Sebastian Dröge  <slomo@circular-chaos.org>
4560
4561         * tests/check/Makefile.am:
4562         * tests/check/elements/.cvsignore:
4563         * tests/check/elements/ofa.c: (bus_handler), (GST_START_TEST),
4564         (ofa_suite), (main):
4565         Add simple unit tests for the OFA plugin.
4566
4567 2008-04-02  Tim-Philipp Müller  <tim at centricular dot net>
4568
4569         * configure.ac:
4570         * sys/Makefile.am:
4571         * sys/oss4/Makefile.am:
4572         * sys/oss4/oss4-audio.c:
4573         * sys/oss4/oss4-audio.h:
4574         * sys/oss4/oss4-mixer-enum.c:
4575         * sys/oss4/oss4-mixer-enum.h:
4576         * sys/oss4/oss4-mixer-slider.c:
4577         * sys/oss4/oss4-mixer-slider.h:
4578         * sys/oss4/oss4-mixer-switch.c:
4579         * sys/oss4/oss4-mixer-switch.h:
4580         * sys/oss4/oss4-mixer.c:
4581         * sys/oss4/oss4-mixer.h:
4582         * sys/oss4/oss4-property-probe.c:
4583         * sys/oss4/oss4-property-probe.h:
4584         * sys/oss4/oss4-sink.c:
4585         * sys/oss4/oss4-sink.h:
4586         * sys/oss4/oss4-soundcard.h:
4587         * sys/oss4/oss4-source.c:
4588         * sys/oss4/oss4-source.h:
4589           Add initial support for OSSv4. Mixer still needs a bit more love,
4590           but even magic has its limits.
4591
4592 2008-04-01  Tim-Philipp Müller  <tim at centricular dot net>
4593
4594         * configure.ac:
4595         * gst-plugins-bad.spec.in:
4596         * gst/srtenc/Makefile.am:
4597         * gst/srtenc/gstsrtenc.c:
4598         * gst/srtenc/gstsrtenc.h:
4599         * gst/subenc/Makefile.am:
4600         * gst/subenc/gstsrtenc.c: (plugin_init):
4601           Rename new srtenc plugin to subenc.
4602
4603 2008-04-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4604
4605         * gst/mpegtsparse/mpegtspacketizer.c:
4606         Cable delivery subsystem descriptors' frequency's bcd
4607         is measured in 100Hz units so adjust multiplier accordingly.
4608
4609 2008-04-01  Thijs Vermeir  <thijsvermeir@gmail.com>
4610
4611         * configure.ac:
4612         * gst/srtenc/Makefile.am:
4613         * gst/srtenc/gstsrtenc.c:
4614         * gst/srtenc/gstsrtenc.h:
4615         Add srt subtitle encoder
4616
4617 2008-03-31  Wim Taymans  <wim.taymans@collabora.co.uk>
4618
4619         Patch by: Kapil Agrawal <kapil at fluendo dot com>
4620
4621         * ext/gsm/gstgsmdec.c: (gst_gsmdec_sink_setcaps),
4622         (gst_gsmdec_chain):
4623         * ext/gsm/gstgsmdec.h:
4624         Increase the allowed samplerates for the ms-gsm format.
4625         Fixes #481354.
4626
4627 2008-03-30  Tim-Philipp Müller  <tim at centricular dot net>
4628
4629         Patch by: Jan de Groot <jan at jgc homeip net>
4630
4631         * configure.ac:
4632           Fix build with --disable-external (#525100).
4633
4634 2008-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4635
4636         * sys/dvb/gstdvbsrc.c:
4637         Repeat diseqc call to allow for some diseqc switches.
4638
4639 2008-03-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4640
4641         * ext/Makefile.am:
4642         Dist ofa correctly! Fixes non-uninstalled build.
4643
4644 2008-03-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4645
4646         * sys/dvb/gstdvbsrc.c:
4647         Make diseqc work more reliably.
4648
4649 2008-03-26  Sebastian Dröge  <slomo@circular-chaos.org>
4650
4651         * gst/nsf/Makefile.am:
4652         * gst/nsf/fds_snd.c:
4653         * gst/nsf/mmc5_snd.c:
4654         * gst/nsf/nsf.c:
4655         * gst/nsf/types.h:
4656         * gst/nsf/vrc7_snd.c:
4657         * gst/nsf/vrcvisnd.c:
4658         * gst/nsf/memguard.c:
4659         * gst/nsf/memguard.h:
4660         Remove memguard again and apply hopefully all previously dropped
4661         local patches. Should be really better than the old version now.
4662
4663 2008-03-25  Wim Taymans  <wim.taymans@collabora.co.uk>
4664
4665         * gst/nsf/memguard.c: (_my_free):
4666         * gst/nsf/types.h:
4667         Unbreak compilation by disabling memguard and doing some dirty hack
4668         fixes to make it compile on 64bits.
4669
4670 2008-03-25  Sebastian Dröge  <slomo@circular-chaos.org>
4671
4672         Patch by: Andreas Henriksson <andreas at fatal dot set>
4673
4674         * gst/nsf/Makefile.am:
4675         * gst/nsf/dis6502.h:
4676         * gst/nsf/fds_snd.c:
4677         * gst/nsf/fds_snd.h:
4678         * gst/nsf/fmopl.c:
4679         * gst/nsf/fmopl.h:
4680         * gst/nsf/gstnsf.c:
4681         * gst/nsf/log.c:
4682         * gst/nsf/log.h:
4683         * gst/nsf/memguard.c:
4684         * gst/nsf/memguard.h:
4685         * gst/nsf/mmc5_snd.c:
4686         * gst/nsf/mmc5_snd.h:
4687         * gst/nsf/nes6502.c:
4688         * gst/nsf/nes6502.h:
4689         * gst/nsf/nes_apu.c:
4690         * gst/nsf/nes_apu.h:
4691         * gst/nsf/nsf.c:
4692         * gst/nsf/nsf.h:
4693         * gst/nsf/osd.h:
4694         * gst/nsf/types.h:
4695         * gst/nsf/vrc7_snd.c:
4696         * gst/nsf/vrc7_snd.h:
4697         * gst/nsf/vrcvisnd.c:
4698         * gst/nsf/vrcvisnd.h:
4699         Update our internal nosefart to nosefart-2.7-mls to fix segfaults
4700         on some files. Fixes bug #498237.
4701
4702         Remove some // comments, fix some compiler warnings and use pow()
4703         instead of a slow, selfmade implementation.
4704
4705 2008-03-25  Sebastian Dröge  <slomo@circular-chaos.org>
4706
4707         Patch by: Ed Catmur <ed at catmur dot co dot uk>
4708
4709         * configure.ac:
4710         Add support for neon 0.28, which didn't change API. Fixes bug #524035.
4711
4712 2008-03-24  Rene Stadler  <mail@renestadler.de>
4713
4714         * gst/replaygain/gstrganalysis.c (gst_rg_analysis_init),
4715           (gst_rg_analysis_transform_ip):
4716         * gst/replaygain/gstrglimiter.c (gst_rg_limiter_init),
4717           (gst_rg_limiter_transform_ip):
4718         Make rganalysis and rglimiter elements GAP-flag aware.
4719
4720         * tests/check/elements/rganalysis.c: (test_gap_buffers),
4721           (rganalysis_suite):
4722         * tests/check/elements/rglimiter.c (test_gap), (rglimiter_suite):
4723         Add tests to verify gap-awareness.
4724
4725 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4726
4727         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_headers_cb),
4728         (gst_soup_http_src_chunk_allocator),
4729         (gst_soup_http_src_got_chunk_cb),
4730         (gst_soup_http_src_uri_get_protocols):
4731         Don't autoplug souphttpsrc for dav/davs. This is better handled by
4732         GIO and GnomeVFS as they provide authentication.
4733
4734         Don't leak the icy caps if we already set them and get a new
4735         icy-metaint header.
4736
4737         Try harder to set the icy caps on the output buffer to have correct
4738         caps for the first buffer already.
4739
4740         * tests/check/elements/souphttpsrc.c: (got_buffer),
4741         (GST_START_TEST):
4742         Check that we get a buffer with application/x-icy caps if iradio-mode
4743         is enabled and we have an icecast URL.
4744
4745 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
4746
4747         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_chunk_allocator):
4748         Actually set the icy caps on our src pad if we have icecast data.
4749         Fixes bug #523854.
4750
4751 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
4752
4753         * configure.ac:
4754         Check if the compiler supports do { } while (0) macros. This fixes
4755         a warning when compiling with g++ 4.3, resulting in a build failure
4756         because of -Werror.
4757
4758         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
4759         * ext/mplex/gstmplex.cc:
4760         Include <string.h> for memcpy and friends to fix the build with
4761         gcc 4.3.
4762
4763         * tests/check/Makefile.am:
4764         Remove trailing backslash.
4765
4766 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4767
4768         * gst/selector/gstinputselector.c:
4769         (gst_input_selector_set_active_pad), (gst_input_selector_switch):
4770         Do g_object_notify() only when not holding the lock to get the property
4771         because otherwise we run into a deadlock with the deep-notify handlers
4772         that are possibly installed.
4773
4774 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4775
4776         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4777         (gst_selector_pad_event), (gst_selector_pad_bufferalloc),
4778         (gst_selector_pad_chain), (gst_input_selector_set_active_pad):
4779         Release the selector lock when pad alloc happens on a non selected pad.
4780
4781 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4782
4783         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4784         (gst_selector_pad_init), (gst_selector_pad_set_property),
4785         (gst_selector_pad_get_property), (gst_selector_pad_event),
4786         (gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
4787         (gst_input_selector_set_active_pad):
4788         Add pad property to configure behaviour of the unselected pad, it can
4789         return OK or NOT_LINKED, based on the use case.
4790
4791 2008-03-20  Wim Taymans  <wim.taymans@collabora.co.uk>
4792
4793         * gst/selector/gstinputselector.c:
4794         (gst_selector_pad_get_running_time), (gst_selector_pad_reset),
4795         (gst_selector_pad_event), (gst_selector_pad_bufferalloc),
4796         (gst_input_selector_wait), (gst_selector_pad_chain),
4797         (gst_input_selector_class_init), (gst_input_selector_init),
4798         (gst_input_selector_dispose), (gst_segment_set_start),
4799         (gst_input_selector_set_active_pad),
4800         (gst_input_selector_set_property),
4801         (gst_input_selector_get_property),
4802         (gst_input_selector_get_linked_pad),
4803         (gst_input_selector_is_active_sinkpad),
4804         (gst_input_selector_activate_sinkpad),
4805         (gst_input_selector_request_new_pad),
4806         (gst_input_selector_release_pad),
4807         (gst_input_selector_change_state), (gst_input_selector_block),
4808         (gst_input_selector_switch):
4809         * gst/selector/gstinputselector.h:
4810         Figure out the locking a bit more.
4811         Mark buffers with discont after switching.
4812         Fix initial segment forwarding, make sure to only forward one segment
4813         regardless of what the sequence of buffers/segments is. See #522203.
4814         Improve flushing when blocked.
4815         Return NOT_LINKED when a stream is not selected.
4816         Not API change for the switch signal in the docs.
4817         Fix start/time/accum values of the new segment.
4818         Correctly unlock and flush a blocking selector when going to READY.
4819
4820 2008-03-20  Stefan Kost  <ensonic@users.sf.net>
4821
4822         * ext/ladspa/gstladspa.c:
4823         * ext/ladspa/gstsignalprocessor.c:
4824           Add some thoughts and FIXME's.
4825
4826 2008-03-20  Stefan Kost  <ensonic@users.sf.net>
4827
4828         * gst/bayer/gstbayer2rgb.c:
4829           Include stdlib.h for abs.
4830
4831 2008-03-19  Stefan Kost  <ensonic@users.sf.net>
4832
4833         * gst/freeze/FAQ:
4834         * gst/freeze/Makefile.am:
4835         * gst/freeze/gstfreeze.c:
4836           Add example to source code documentation blob and remove the 3 line
4837           FAQ.
4838
4839         * gst/interleave/interleave.c:
4840           Add a source code documentation blob.
4841
4842 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4843
4844         * ext/ofa/gstofa.c: (create_fingerprint), (gst_ofa_event),
4845         (gst_ofa_transform_ip), (plugin_init):
4846         Improve debugging, clean up a bit and really generate the fingerprint
4847         after 135 seconds.
4848
4849 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4850
4851         * ext/ofa/gstofa.c:
4852         Use GPL as license, the plugin itself is LGPL but libofa is GPL.
4853
4854 2008-03-19  Sebastian Dröge  <slomo@circular-chaos.org>
4855
4856         Based on a patch by: Eric Buehl <eric dot buehl at gmail dot com>
4857
4858         * configure.ac:
4859         * ext/ofa/Makefile.am:
4860         * ext/ofa/gstofa.c: (gst_ofa_base_init), (gst_ofa_finalize),
4861         (gst_ofa_class_init), (create_fingerprint), (gst_ofa_event),
4862         (gst_ofa_init), (gst_ofa_transform_ip), (gst_ofa_get_property),
4863         (plugin_init):
4864         * ext/ofa/gstofa.h:
4865         Add an OFA element, the successor of MusicBrainz TRM fingerprinting.
4866         Fixes bug #351309.
4867
4868 2008-03-18  Andy Wingo  <wingo@pobox.com>
4869
4870         * ext/faad/gstfaad.c (gst_faad_chain): Fix a bad format argument,
4871         and a potential int overflow.
4872
4873         * ext/faad/gstfaad.h: Include <neaacdec.h> if faad is neaac.
4874         Avoids a #warning about an ignored #pragma.
4875
4876 2008-03-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4877
4878         * examples/switch/switcher.c:
4879         Update switch example to use input selector.
4880
4881 2008-03-17  Sebastian Dröge  <slomo@circular-chaos.org>
4882
4883         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
4884         (gst_neonhttp_src_send_request_and_redirect):
4885         Handle HTTP status code 303 (See Other) the same way
4886         as 302 (Found). Not sure what to do about all the other 3xx
4887         redirect status codes. Fixes bug #522884.
4888
4889 2008-03-14  Edward Hervey  <edward.hervey@collabora.co.uk>
4890
4891         * gst-libs/gst/dshow/Makefile.am:
4892         Make sure the dshow helper library headers get distributed in the next
4893         release.
4894
4895 2008-03-14  David Schleef  <ds@schleef.org>
4896
4897         Patch by: William M. Brack
4898
4899         * gst/bayer/gstbayer2rgb.c: Significant improvements.  Fixes #521392.
4900
4901 2008-03-14  Wim Taymans  <wim.taymans@collabora.co.uk>
4902
4903         * gst/selector/gstinputselector.c: (gst_selector_pad_event),
4904         (gst_selector_pad_bufferalloc), (gst_selector_pad_chain),
4905         (gst_input_selector_class_init),
4906         (gst_input_selector_set_active_pad),
4907         (gst_input_selector_set_property),
4908         (gst_input_selector_push_pending_stop):
4909         Add lots of debugging. 
4910         Fix time member in the newsegment event.
4911
4912 2008-03-13  Wim Taymans  <wim.taymans@collabora.co.uk>
4913
4914         * gst/selector/gstinputselector.c: (gst_selector_pad_class_init),
4915         (gst_selector_pad_finalize), (gst_selector_pad_get_property),
4916         (gst_selector_pad_event), (gst_input_selector_class_init),
4917         (gst_input_selector_init), (gst_input_selector_set_active_pad),
4918         (gst_input_selector_set_property),
4919         (gst_input_selector_get_property),
4920         (gst_input_selector_request_new_pad),
4921         (gst_input_selector_release_pad),
4922         (gst_input_selector_push_pending_stop),
4923         (gst_input_selector_switch):
4924         * gst/selector/gstinputselector.h:
4925         Various cleanups.
4926         Added tags to the pads.
4927         Select active pad based on the pad object instead of its name.
4928         Fix refcount in set_active_pad.
4929         Add property to get the number of pads.
4930
4931         * gst/selector/gstoutputselector.c:
4932         (gst_output_selector_class_init),
4933         (gst_output_selector_set_property),
4934         (gst_output_selector_get_property):
4935         Various cleanups.
4936         Select the active pad based on the pad object instead of its name.
4937         Fix locking when setting the active pad.
4938
4939         * gst/selector/gstselector-marshal.list:
4940         * tests/check/elements/selector.c: (cleanup_pad),
4941         (selector_set_active_pad), (run_input_selector_buffer_count):
4942         Fixes for pad instead of padname for pad selection.
4943
4944 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
4945
4946         * ext/alsaspdif/alsaspdifsink.c:
4947         * ext/gsm/gstgsm.c:
4948         * ext/jack/gstjack.c:
4949         * ext/libmms/gstmms.c:
4950         * ext/neon/gstneonhttpsrc.c:
4951         * ext/shout/gstshout.c:
4952         * ext/timidity/gsttimidity.c:
4953         * ext/timidity/gstwildmidi.c:
4954         * gst/nuvdemux/gstnuvdemux.c:
4955         * gst/tta/gsttta.c:
4956         Use GST_LICENSE, GST_PACKAGE_NAME and GST_PACKAGE_ORIGIN instead
4957         of hardcoding values where possible. Fixes bug #522212.
4958
4959 2008-03-13  Sebastian Dröge  <slomo@circular-chaos.org>
4960
4961         Patch by: Wouter Cloetens <wouter at mind dot be>
4962
4963         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_init),
4964         (gst_soup_http_src_finished_cb), (gst_soup_http_src_response_cb),
4965         (gst_soup_http_src_build_message), (gst_soup_http_src_create):
4966         * ext/soup/gstsouphttpsrc.h:
4967         Try to resume on server disconnect. Fixes bug #522134.
4968
4969 2008-03-12  Wim Taymans  <wim.taymans@collabora.co.uk>
4970
4971         * ext/xvid/gstxvidenc.c: (gst_xvidenc_chain):
4972         Set correct pixel aspect ratio for the encoder.
4973
4974 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4975
4976         Patch by: Olivier Crete <tester at tester dot ca>
4977
4978         * gst/rtpmanager/rtpsession.c: (find_add_conflicting_addresses),
4979         (check_collision), (obtain_source), (rtp_session_create_new_ssrc),
4980         (rtp_session_create_source), (rtp_session_process_rtp),
4981         (rtp_session_process_sr), (rtp_session_process_rr),
4982         (rtp_session_process_sdes), (rtp_session_process_bye),
4983         (rtp_session_send_bye_locked), (rtp_session_send_bye),
4984         (rtp_session_on_timeout):
4985         * gst/rtpmanager/rtpsession.h:
4986         Implement collision and loop detection in rtpmanager.
4987         Fixes #520626.
4988
4989         * gst/rtpmanager/rtpsource.c: (rtp_source_reset),
4990         (rtp_source_init):
4991         * gst/rtpmanager/rtpsource.h:
4992         Add method to reset stats.
4993
4994 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
4995
4996         Based on patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
4997
4998         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_init),
4999         (rtcp_thread), (start_rtcp_thread), (stop_rtcp_thread),
5000         (join_rtcp_thread), (gst_rtp_session_change_state):
5001         Avoid a deadlock when joining the RTCP thread in PAUSED because it might
5002         be blocked downstream. Also avoid spawning multiple rtcp threads.
5003         Fixes #520894.
5004
5005 2008-03-11  Wim Taymans  <wim.taymans@collabora.co.uk>
5006
5007         Patch by: Stefan Kost <ensonic@users.sf.net>
5008
5009         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
5010         Don't try to reset the clock skew when we have no timestamps.
5011         Fixes #519005.
5012
5013 2008-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5014
5015         Patch by: Sjoerd Simons <sjoerd at luon dot net>
5016
5017         * ext/faad/gstfaad.c: (looks_like_valid_header):
5018         Improve the header checking to look for what faad2 looks
5019         for too. Fixes playback of same apple trailers.
5020         Fixes bug #469979.
5021
5022 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
5023
5024         * configure.ac:
5025         Really check for libdc1394 >= 2.0.0, pkg-config thinks that
5026         2.0.0-rcX is newer than 2.0.0 so we check for this too.
5027
5028 2008-03-05  David Schleef  <ds@schleef.org>
5029
5030         * ext/dirac/gstdiracenc.cc: Add a bunch of properties cribbed
5031           from the encoder program in dirac.
5032
5033 2008-03-05  David Schleef  <ds@schleef.org>
5034
5035         * configure.ac:
5036         * ext/Makefile.am:
5037         * ext/dirac/Makefile.am:
5038         * ext/dirac/gstdirac.cc:
5039         * ext/dirac/gstdiracenc.cc:
5040           Rewrite Dirac encoder plugin based on Schroedinger gstreamer
5041           elements.
5042
5043 2008-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5044
5045         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
5046
5047         * configure.ac:
5048         * ext/Makefile.am:
5049         * ext/mplex/Makefile.am:
5050         * ext/mplex/gstmplex.cc:
5051         * ext/mplex/gstmplex.hh:
5052         * ext/mplex/gstmplexibitstream.cc:
5053         * ext/mplex/gstmplexibitstream.hh:
5054         * ext/mplex/gstmplexjob.cc:
5055         * ext/mplex/gstmplexjob.hh:
5056         * ext/mplex/gstmplexoutputstream.cc:
5057         * ext/mplex/gstmplexoutputstream.hh:
5058         Port mplex element to 0.10. Fixes bug #520329.
5059
5060         * tests/check/Makefile.am:
5061         * tests/check/elements/mplex.c: (test_sink_event), (setup_src_pad),
5062         (teardown_src_pad), (setup_mplex), (cleanup_mplex),
5063         (GST_START_TEST), (mplex_suite), (main):
5064         Add unit test for the mplex element.
5065
5066 2008-03-05  Sebastian Dröge  <slomo@circular-chaos.org>
5067
5068         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
5069
5070         * configure.ac:
5071         Clean up detection of different mjpegtoolsAPI versions.
5072
5073         * ext/mpeg2enc/gstmpeg2enc.cc:
5074         * ext/mpeg2enc/gstmpeg2enc.hh:
5075         * ext/mpeg2enc/gstmpeg2encoder.cc:
5076         * ext/mpeg2enc/gstmpeg2encoptions.cc:
5077         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5078         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
5079         * ext/mpeg2enc/gstmpeg2encstreamwriter.cc:
5080         * ext/mpeg2enc/gstmpeg2encstreamwriter.hh:
5081         Streamline conditional code for evolving mjpegtools API,
5082         optimize and fix/prevent crash in log handling, use
5083         names/nicks for enums in the usual way andm inor updates
5084         in code and properties/settings. Partially fixes bug #520329.
5085
5086 2008-03-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5087
5088         * gst/mpegtsparse/gstmpegdesc.h:
5089         * gst/mpegtsparse/mpegtspacketizer.c:
5090         Add parsing of cable delivery system descriptor.
5091
5092 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
5093
5094         * configure.ac:
5095         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
5096         plug-ins are included/excluded. (#498222)
5097
5098 2008-03-03  Sebastian Dröge  <slomo@circular-chaos.org>
5099
5100         Patch by: Jens Granseuer <jensgr at gmx dot net>
5101
5102         * gst/mve/gstmvedemux.c: (gst_mve_audio_data),
5103         (gst_mve_demux_get_type):
5104         Fix audio discontinuity that happens when silent chunks are
5105         followed by real data again. Fixes bug #519905.
5106
5107 2008-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5108
5109         * sys/dvb/gstdvbsrc.c:
5110         * sys/dvb/parsechannels.c:
5111         Add DVB-C support. Special thanks to Christian Schaller
5112         for a testing ground.
5113
5114 2008-02-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5115
5116         * gst/mpegtsparse/mpegtsparse.c:
5117         Only send PMTs to program pads that the PMT is for even if
5118         on same pid.
5119         As a by-product, we now no longer hardcode any psi pid numbers.
5120         Also remove pcr stream from old pmt when we apply a new pmt.
5121
5122 2008-02-28  Edgard Lima  <edgard.lima@indt.org.br>
5123
5124         * ext/metadata/TODO:
5125         * ext/metadata/metadata_mapping.htm:
5126         * ext/metadata/metadataexif.c:
5127         * ext/metadata/metadatatags.c:
5128         * ext/metadata/metadatatags.h:
5129         * tests/icles/metadata_editor.c:
5130         Map Date-Time and GPS tags and Convert from EXIF to XMP Datatime as
5131         local time (those changes has been done in previous comit but had to
5132         be revert in 2008-02-10 due to frozen)
5133
5134 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5135
5136         * sys/dvb/camutils.c:
5137         Remove the G_VALUE_HOLDS_BOXED checks. They were
5138         only added to help debug the data corruption.
5139
5140 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5141
5142         * sys/dvb/camutils.c:
5143         Don't free the program descriptors, this structure
5144         containing them is still stored after.
5145         Fixes data corruption.
5146
5147 2008-02-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5148
5149         * sys/dvb/camutils.c:
5150         Extra checks to prevent data corruption/segfaults.
5151
5152 2008-02-26  Stefan Kost  <ensonic@users.sf.net>
5153
5154         * ext/nas/nassink.c:
5155           Fix build warning by using portable API.
5156
5157 2008-02-26  Stefan Kost  <ensonic@users.sf.net>
5158
5159         * gst/selector/gstoutputselector.c:
5160           Fix changing to same pad twice before a chain call.     
5161
5162 2008-02-26  Sebastian Dröge  <slomo@circular-chaos.org>
5163
5164         Patch by: Daniel Fischer <dan at f3c dot com>
5165
5166         * configure.ac:
5167         * ext/dc1394/gstdc1394.c: (gst_dc1394_change_state),
5168         (gst_dc1394_get_cam_caps), (gst_dc1394_open_cam_with_best_caps):
5169         * ext/dc1394/gstdc1394.h:
5170         Add support for libdc1394 2.0.0 and above and require this version
5171         now. Fixes bug #514964.
5172
5173 2008-02-26  Sebastian Dröge  <slomo@circular-chaos.org>
5174
5175         Patch by: Wouter Cloetens <wouter at mind dot be>
5176
5177         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_class_init),
5178         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
5179         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
5180         (gst_soup_http_src_create):
5181         * ext/soup/gstsouphttpsrc.h:
5182         * tests/check/elements/souphttpsrc.c: (run_test), (GST_START_TEST),
5183         (souphttpsrc_suite):
5184         Add support for specifying a list of cookies to be passed in
5185         the HTTP request. Fixes bug #518722.
5186
5187 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
5188
5189         * gst/selector/gstinputselector.c:
5190         * gst/selector/gstinputselector.h:
5191           Added "select-all" property to make it work like aggregator in 0.8.
5192
5193         * gst/selector/gstoutputselector.c:
5194           Fix resend-latest behavoiur.
5195           
5196         * tests/check/Makefile.am:
5197         * tests/check/elements/.cvsignore:
5198         * tests/check/elements/selector.c:
5199           Add unit tests for selector.
5200
5201 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
5202
5203         * configure.ac:
5204         * ext/timidity/gsttimidity.c: (plugin_init):
5205         * ext/timidity/gstwildmidi.c: (plugin_init):
5206         Remove midi typefinders and require base CVS as they moved there.
5207
5208 2008-02-24  Sebastian Dröge  <slomo@circular-chaos.org>
5209
5210         * ext/Makefile.am:
5211         Only disable the ext/timidity directory if both, wildmidi
5212         _and_ timidity are not available.
5213
5214 2008-02-24  Sebastian Dröge  <slomo@circular-chaos.org>
5215
5216         Patch by: Emilio Pozuelo Monfort <pochu at ubuntu dot com>
5217
5218         * ext/Makefile.am:
5219         Build the wildmidi plugin if it's enabled and not only when
5220         both, the timidity and wildmidi plugin, are enabled.
5221
5222 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
5223
5224         * configure.ac:
5225         * ext/mpeg2enc/Makefile.am:
5226         * ext/soundtouch/Makefile.am:
5227         * gst/modplug/Makefile.am:
5228           Check for and define ERROR_CXXFLAGS and GST_CXXFLAGS and use them
5229           when building C++ code.
5230
5231 2008-02-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5232
5233         * sys/dvb/gstdvbsrc.c:
5234         Add initial support for multiproto driver (not yet merged into
5235         v4l-dvb mainline yet).
5236         Only works for DVB-S not DVB-S2, DVB-T, DVB-C or other.
5237
5238 2008-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5239
5240         * docs/plugins/inspect/plugin-alsaspdif.xml:
5241         * docs/plugins/inspect/plugin-app.xml:
5242         * docs/plugins/inspect/plugin-bayer.xml:
5243         * docs/plugins/inspect/plugin-bz2.xml:
5244         * docs/plugins/inspect/plugin-cdaudio.xml:
5245         * docs/plugins/inspect/plugin-cdxaparse.xml:
5246         * docs/plugins/inspect/plugin-dfbvideosink.xml:
5247         * docs/plugins/inspect/plugin-dtsdec.xml:
5248         * docs/plugins/inspect/plugin-dvb.xml:
5249         * docs/plugins/inspect/plugin-dvdspu.xml:
5250         * docs/plugins/inspect/plugin-faac.xml:
5251         * docs/plugins/inspect/plugin-faad.xml:
5252         * docs/plugins/inspect/plugin-fbdevsink.xml:
5253         * docs/plugins/inspect/plugin-festival.xml:
5254         * docs/plugins/inspect/plugin-filter.xml:
5255         * docs/plugins/inspect/plugin-flvdemux.xml:
5256         * docs/plugins/inspect/plugin-freeze.xml:
5257         * docs/plugins/inspect/plugin-gsm.xml:
5258         * docs/plugins/inspect/plugin-gstinterlace.xml:
5259         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
5260         * docs/plugins/inspect/plugin-h264parse.xml:
5261         * docs/plugins/inspect/plugin-interleave.xml:
5262         * docs/plugins/inspect/plugin-jack.xml:
5263         * docs/plugins/inspect/plugin-ladspa.xml:
5264         * docs/plugins/inspect/plugin-metadata.xml:
5265         * docs/plugins/inspect/plugin-mms.xml:
5266         * docs/plugins/inspect/plugin-modplug.xml:
5267         * docs/plugins/inspect/plugin-mpeg2enc.xml:
5268         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
5269         * docs/plugins/inspect/plugin-mpegtsparse.xml:
5270         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
5271         * docs/plugins/inspect/plugin-musepack.xml:
5272         * docs/plugins/inspect/plugin-musicbrainz.xml:
5273         * docs/plugins/inspect/plugin-mve.xml:
5274         * docs/plugins/inspect/plugin-neon.xml:
5275         * docs/plugins/inspect/plugin-nsfdec.xml:
5276         * docs/plugins/inspect/plugin-nuvdemux.xml:
5277         * docs/plugins/inspect/plugin-rawparse.xml:
5278         * docs/plugins/inspect/plugin-real.xml:
5279         * docs/plugins/inspect/plugin-replaygain.xml:
5280         * docs/plugins/inspect/plugin-rfbsrc.xml:
5281         * docs/plugins/inspect/plugin-sdl.xml:
5282         * docs/plugins/inspect/plugin-sdp.xml:
5283         * docs/plugins/inspect/plugin-selector.xml:
5284         * docs/plugins/inspect/plugin-sndfile.xml:
5285         * docs/plugins/inspect/plugin-soundtouch.xml:
5286         * docs/plugins/inspect/plugin-spcdec.xml:
5287         * docs/plugins/inspect/plugin-speed.xml:
5288         * docs/plugins/inspect/plugin-speexresample.xml:
5289         * docs/plugins/inspect/plugin-stereo.xml:
5290         * docs/plugins/inspect/plugin-tremor.xml:
5291         * docs/plugins/inspect/plugin-tta.xml:
5292         * docs/plugins/inspect/plugin-vcdsrc.xml:
5293         * docs/plugins/inspect/plugin-videosignal.xml:
5294         * docs/plugins/inspect/plugin-vmnc.xml:
5295         * docs/plugins/inspect/plugin-x264.xml:
5296         * docs/plugins/inspect/plugin-xvid.xml:
5297         * docs/plugins/inspect/plugin-y4menc.xml:
5298           Update to version 0.10.6.1.
5299
5300 2008-02-22  Tim-Philipp Müller  <tim at centricular dot net>
5301
5302         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5303         * docs/plugins/inspect/plugin-gdp.xml:
5304         * docs/plugins/inspect/plugin-quicktime.xml:
5305         * docs/plugins/inspect/plugin-switch.xml:
5306         * docs/plugins/inspect/plugin-videocrop.xml:
5307           Remove docs for elements that have moved to other modules
5308           or been renamed.
5309
5310 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5311
5312         Patch by: Wouter Cloetens <wouter at mind dot be>
5313
5314         * configure.ac:
5315         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_cancel_message),
5316         (gst_soup_http_src_finished_cb), (gst_soup_http_src_chunk_free),
5317         (gst_soup_http_src_chunk_allocator),
5318         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_create),
5319         (gst_soup_http_src_start), (gst_soup_http_src_set_proxy):
5320         * ext/soup/gstsouphttpsrc.h:
5321         Implement zero-copy and make the buffer size configurable.
5322         Prefix proxy URIs with "http://" if they don't start with it
5323         already and catch errors earlier, fixes hanging in some situations.
5324         Fixes bug #514948.
5325
5326 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5327
5328         * tests/check/gst-plugins-bad.supp:
5329         Add suppressions for SoundTouch valgrind warnings and
5330         a valgrind warning caused by the LADSPA sine plugin and
5331         happening on every exit().
5332         Remove GIO suppressions as it's now in -base.
5333
5334 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5335
5336         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_create):
5337         Don't allocate and copy the data to a new place but instead
5338         put the data from gmyth (which we own) into the buffers that
5339         are passed downstream.
5340
5341 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5342
5343         * ext/timidity/gstwildmidi.c:
5344         If WILDMIDI_CFG is not defined, define it to the default
5345         timidity configure file.
5346
5347 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5348
5349         Based on a patch by:
5350           Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
5351
5352         * configure.ac:
5353         * ext/mpeg2enc/gstmpeg2enc.cc:
5354         Remove hack to work with mjpegtools 1.9.0rc3 and above and instead
5355         use mjpeg_loglev_t() for getting the log levels. Check for this
5356         function in configure.ac as the pkg-config file doesn't tell us
5357         which release candidate we have. Fixes bug #517896.
5358
5359 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5360
5361         * configure.ac:
5362         Check for X for the nas plugin to make it possible to build it
5363         again. Fixes bug #517895.
5364
5365 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5366
5367         * tests/check/Makefile.am:
5368         Ignore some more elements for the states unit test, like
5369         dfbvideosink which produces a segfault. Fixes bug #517854.
5370
5371 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
5372
5373         Patch by: Jens Granseuer <jensgr at gmx dot net>
5374
5375         * gst/librfb/gstrfbsrc.c: (gst_rfb_property_set_version):
5376         * gst/librfb/rfbdecoder.c: (rfb_decoder_message_set_encodings),
5377         (rfb_decoder_state_set_encodings):
5378         * gst/mpegtsparse/mpegtspacketizer.c:
5379         (mpegts_packetizer_parse_nit), (mpegts_packetizer_parse_sdt),
5380         (mpegts_packetizer_parse_eit):
5381         * sys/fbdev/gstfbdevsink.c: (gst_fbdevsink_getcaps),
5382         (gst_fbdevsink_setcaps), (gst_fbdevsink_render):
5383         Some C89 fixes, moving variable declarations to the beginning
5384         of a block. Fixes bug #517937.
5385
5386 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
5387
5388         * configure.ac:
5389         Back to development...
5390
5391 === release 0.10.6 ===
5392
5393 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
5394
5395         * configure.ac:
5396           releasing 0.10.6, "A Big Deep Breath"
5397
5398 2008-02-20  Bastien Nocera  <hadess@hadess.net>
5399
5400         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_do_seek),
5401         (gst_mythtv_src_start): Using the wrong GstFormat for the filesize,
5402         and fail seek properly on anything but _BYTES format
5403         Fixes bug #517684
5404
5405 2008-02-20  Sebastian Dröge  <slomo@circular-chaos.org>
5406
5407         Patch by: Olivier Crete <tester at tester dot ca>
5408
5409         * gst/rtpmanager/gstrtpbin.c: (new_ssrc_pad_found):
5410         Fix small memory leak, leaking caps. Fixes bug #517571.
5411
5412 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
5413
5414         * gst/tta/Makefile.am:
5415         Link tta plugin with libm. Fixes bug #517391.
5416
5417 2008-02-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5418
5419         * sys/dvb/camutils.c:
5420         Do not assume "descriptors" property in the pmt structure
5421         is present.
5422         Fixes #516499.
5423
5424 2008-02-14  Wim Taymans  <wim.taymans@collabora.co.uk>
5425
5426         Patch by: Olivier Crete <tester@tester.ca>
5427
5428         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate):
5429         Ignore streams that did not receive an SR packet when doing
5430         synchronisation. Fixes #516160.
5431
5432 2008-02-14  Sebastian Dröge  <slomo@circular-chaos.org>
5433
5434         * gst/dvdspu/gstdvdspu.c: (gst_dvd_spu_handle_new_spu_buf):
5435         Set n_line_ctrl_i to 0 whenever we free line_ctrl_i. Patch based
5436         on an idea by Jan Schmidt, fixes bug #516436.
5437
5438 2008-02-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5439
5440         * gst/mpegtsparse/gstmpegdesc.c:
5441         * gst/mpegtsparse/gstmpegdesc.h:
5442         * gst/mpegtsparse/mpegtsparse.c:
5443         Make sure the gstmpegdesc debug lines do not critical
5444         when GST_DEBUG is enabled and also actually output.
5445         Thanks to Alessandro Decina for spotting.
5446         Fixes #516448
5447
5448 2008-02-13  Jan Schmidt  <jan.schmidt@sun.com>
5449
5450         * gst-libs/gst/Makefile.am:
5451         * sys/Makefile.am:
5452         Also add dshow pieces to the disted subdirs to fix distcheck.
5453
5454 2008-02-13  Wim Taymans  <wim.taymans@collabora.co.uk>
5455
5456         Patch by: Josep Torra Valles <josep@fluendo.com>
5457
5458         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_reverse):
5459         Fix potential buffer leak in reverse mode. Re-Fixes #516061.
5460
5461 2008-02-13  Sebastian Dröge  <slomo@circular-chaos.org>
5462
5463         * configure.ac:
5464         Allow gmyth versions from 0.4 up to 0.7.99, the API didn't change
5465         until 0.7 fortunately.
5466
5467 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5468
5469         * configure.ac:
5470         Generate the directshow Makefiles so that the directories
5471         get disted. Still needs some configure time detection to enable
5472         building them under MingW.
5473
5474 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5475
5476         * ext/metadata/Makefile.am:
5477         Don't install a header file. We will have to merge these
5478         tags into libgsttag after the release and use them from there.
5479         Fixes: #515860
5480
5481 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
5482
5483         * gst-libs/gst/dshow/Makefile.am:
5484         * sys/dshowdecwrapper/Makefile.am:
5485         * sys/dshowsrcwrapper/Makefile.am:
5486         Add Makefiles to win32 plugins and lib.
5487         They will need to be tested and probably fixed by developers
5488         working with mingw. This is a first step to include source files 
5489         with releases.
5490         
5491 2008-02-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5492
5493         * sys/dvb/dvbbasebin.c:
5494         Fix leak of location string returned from gst_uri_get_location.
5495         Fixes bug #516114
5496
5497 2008-02-12  David Schleef  <ds@schleef.org>
5498
5499         * configure.ac:
5500         * docs/plugins/Makefile.am:
5501         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5502         * docs/plugins/inspect/plugin-glimagesink.xml:
5503         * sys/Makefile.am:
5504         * sys/glsink/BUGS:
5505         * sys/glsink/Makefile.am:
5506         * sys/glsink/color_matrix.c:
5507         * sys/glsink/glextensions.c:
5508         * sys/glsink/glextensions.h:
5509         * sys/glsink/glimagesink.c:
5510         * sys/glsink/glimagesink.h:
5511         * sys/glsink/gltestsrc.c:
5512         * sys/glsink/gltestsrc.h:
5513         * sys/glsink/gstglbuffer.c:
5514         * sys/glsink/gstglbuffer.h:
5515         * sys/glsink/gstglconvert.c:
5516         * sys/glsink/gstgldisplay.c:
5517         * sys/glsink/gstgldisplay.h:
5518         * sys/glsink/gstgldownload.c:
5519         * sys/glsink/gstglfilter.c:
5520         * sys/glsink/gstglfilter.h:
5521         * sys/glsink/gstglfilterexample.c:
5522         * sys/glsink/gstgltestsrc.c:
5523         * sys/glsink/gstgltestsrc.h:
5524         * sys/glsink/gstglupload.c:
5525         * sys/glsink/gstopengl.c:
5526           Remove glimagesink, as it's been moved to gst-plugins-gl.
5527           Fixes #516094.
5528
5529 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5530
5531         Patch by: Josep Torra Valles <josep@fluendo.com>
5532
5533         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_reverse):
5534         Fix potential buffer leak in reverse mode. Fixes #516061.
5535
5536 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5537
5538         * sys/dshowdecwrapper/gstdshowaudiodec.c:
5539         (gst_dshowaudiodec_dispose):
5540         * sys/dshowdecwrapper/gstdshowvideodec.c:
5541         (gst_dshowvideodec_dispose):
5542         Chain up dispose methods properly. Fixes bug #515970.
5543
5544 2008-02-12  Wim Taymans  <wim.taymans@collabora.co.uk>
5545
5546         * gst/mpegvideoparse/mpegvideoparse.c:
5547         (mpegvideoparse_handle_sequence), (mpegvideoparse_drain_avail),
5548         (gst_mpegvideoparse_change_state):
5549         Fix leaking caps.
5550         Fix potential buffer leak in forward mode.
5551         Cleanup queues when going to READY. Fixes #515815.
5552
5553 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5554
5555         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5556         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5557         * docs/plugins/inspect/plugin-gio.xml:
5558         Remove documentation for the GIO plugin as it was moved to
5559         gst-plugins-base. Fixes bug #515964.
5560
5561 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
5562
5563         * ext/xvid/gstxvidenc.c:
5564         * gst/vmnc/vmncdec.c:
5565         * sys/glsink/glimagesink.c:
5566         * sys/glsink/gstgldisplay.c:
5567         Fix some finalize leaks by chaining up to the parent method.
5568         Fixes: #515919
5569
5570 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5571
5572         * tests/check/elements/souphttpsrc.c:
5573         Include glib/gprintf.h for g_vasprintf(). Fixes bug #515564.
5574
5575 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
5576
5577         * gst/librfb/gstrfbsrc.c: (gst_rfb_src_dispose):
5578         Free the rfb decoder on finalize. Fixes bug #515721.
5579
5580 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5581
5582         * sys/fbdev/gstfbdevsink.c: (gst_fbdevsink_class_init),
5583         (gst_fbdevsink_finalize):
5584         Free the device string in finalize. Fixes bug #515722.
5585
5586 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5587
5588         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init):
5589         Unset GValues after using them. Fixes bug #515720.
5590
5591 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
5592
5593         * tests/check/Makefile.am:
5594         Disable the dvb plugin for the states test. Fixes bug #515567.
5595
5596 2008-02-10  Edgard Lima,,,,  <edgard.lima@indt.org.br>
5597
5598         * ext/metadata/TODO:
5599         * ext/metadata/metadata_mapping.htm:
5600         * ext/metadata/metadataexif.c:
5601         * ext/metadata/metadatatags.c:
5602         * ext/metadata/metadatatags.h:
5603         * tests/icles/metadata_editor.c:
5604           Revert changes to 2008-02-09 due to frozen.
5605
5606 2008-02-10  Jan Schmidt  <jan.schmidt@sun.com>
5607
5608         * ext/ivorbis/vorbisfile.c:
5609         Trivial fix for build warning.
5610         Patch by: Josep Torra Valles <josep@fluendo.com>
5611         Fixes: #515588
5612
5613 2008-02-10  Edgard Lima  <edgard.lima@indt.org.br>
5614
5615         * ext/metadata/TODO:
5616         * ext/metadata/metadataexif.c:
5617           Convert from EXIF to XMP DataTime as local time.
5618
5619 2008-02-10  Edgard Lima  <edgard.lima@indt.org.br>
5620
5621         * ext/metadata/TODO:
5622         * ext/metadata/metadata_mapping.htm:
5623         * ext/metadata/metadataexif.c:
5624         * ext/metadata/metadatatags.c:
5625         * ext/metadata/metadatatags.h:
5626         * tests/icles/metadata_editor.c:
5627           Map Date-Time and GPS tags.
5628           
5629
5630 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
5631
5632         * gst/selector/Makefile.am:
5633
5634         Listing the marshal.h in the nodist_HEADERS breaks distcheck, so
5635         let's not do that
5636
5637         * tests/check/Makefile.am:
5638         Disable the crashing cdaudio plugin from the states test so I can make
5639         pre-releases.
5640
5641 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
5642
5643         * win32/vs6/libgstdshowdecwrapper.dsp:
5644         * win32/vs6/libgstflv.dsp:
5645         Convert to DOS line endings, and set -kb
5646
5647 2008-02-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5648
5649         * sys/dvb/Makefile.am:
5650         * sys/dvb/dvbbasebin.c:
5651         Add URI Handler for dvb.
5652         Re-order pad templates to workaround a bug in playbasebin.
5653         * sys/dvb/parsechannels.c:
5654         * sys/dvb/parsechannels.h:
5655         Add code to parse channels from zap-style channels.conf files.
5656
5657 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5658
5659         * configure.ac:
5660         * docs/plugins/Makefile.am:
5661         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5662         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5663         * docs/plugins/gst-plugins-bad-plugins.args:
5664         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5665         * docs/plugins/inspect/plugin-multifile.xml:
5666         * gst/multifile/Makefile.am:
5667         * gst/multifile/gstmultifile.c:
5668         * gst/multifile/gstmultifilesink.c:
5669         * gst/multifile/gstmultifilesink.h:
5670         * gst/multifile/gstmultifilesrc.c:
5671         * gst/multifile/gstmultifilesrc.h:
5672         * gst/multifile/multifile.vproj:
5673         * tests/check/Makefile.am:
5674         * tests/check/elements/multifile.c:
5675
5676         Remove multifile plugin, which has moved to -good
5677
5678 2008-02-07  David Schleef  <ds@schleef.org>
5679
5680         * gst/multifile/gstmultifilesink.c:
5681         * gst/multifile/gstmultifilesrc.c:
5682           Use g_file_[sg]et_contents() instead of using stdio functions.
5683           Should be less error prone.
5684         * tests/check/elements/multifile.c:
5685           Create a temporary directory using standard functions instead of
5686           creating a directory in the current dir.
5687
5688 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5689
5690         * configure.ac:
5691         * docs/plugins/Makefile.am:
5692         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5693         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5694         * docs/plugins/gst-plugins-bad-plugins.args:
5695         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5696         * docs/plugins/inspect/plugin-spectrum.xml:
5697         * gst/spectrum/.cvsignore:
5698         * gst/spectrum/Makefile.am:
5699         * gst/spectrum/README:
5700         * gst/spectrum/demo-audiotest.c:
5701         * gst/spectrum/demo-osssrc.c:
5702         * gst/spectrum/gstspectrum.c:
5703         * gst/spectrum/gstspectrum.h:
5704         * gst/spectrum/spectrum.vcproj:
5705         * tests/check/Makefile.am:
5706         * tests/check/elements/spectrum.c:
5707
5708         Remove spectrum plugin, which has moved to -good
5709
5710 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5711
5712         * docs/plugins/gst-plugins-bad-plugins.args:
5713         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5714         * docs/plugins/gst-plugins-bad-plugins.interfaces:
5715         Remove equalizer plugin docs
5716
5717         * tests/check/Makefile.am:
5718         Add GST_OPTION_CFLAGS, to get -Werror -Wall into the tests as for
5719         other modules.
5720
5721         * tests/check/elements/multifile.c:
5722         * tests/check/elements/rganalysis.c:
5723         * tests/check/elements/rglimiter.c:
5724
5725         Fix compiler warnings from -Wall -Werror
5726
5727 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5728
5729         * configure.ac:
5730         * docs/plugins/Makefile.am:
5731         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5732         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5733         * docs/plugins/inspect/plugin-equalizer.xml:
5734         * gst/equalizer/.cvsignore:
5735         * gst/equalizer/Makefile.am:
5736         * gst/equalizer/demo.c:
5737         * gst/equalizer/gstiirequalizer.c:
5738         * gst/equalizer/gstiirequalizer.h:
5739         * gst/equalizer/gstiirequalizer10bands.c:
5740         * gst/equalizer/gstiirequalizer10bands.h:
5741         * gst/equalizer/gstiirequalizer3bands.c:
5742         * gst/equalizer/gstiirequalizer3bands.h:
5743         * gst/equalizer/gstiirequalizernbands.c:
5744         * gst/equalizer/gstiirequalizernbands.h:
5745         * tests/check/Makefile.am:
5746         * tests/check/elements/.cvsignore:
5747         * tests/check/elements/equalizer.c:
5748
5749         Remove the equalizer plugin, which has moved to -good
5750
5751 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5752
5753         * configure.ac:
5754         Make DISABLE_DEPRECATED defined *only* during CVS, not during
5755         pre-releases or releases.
5756
5757 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5758
5759         * docs/plugins/Makefile.am:
5760         Don't scan deleted xingmux header.
5761
5762 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
5763
5764         * configure.ac:
5765         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5766         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5767         * docs/plugins/inspect/plugin-xingheader.xml:
5768         * gst/xingheader/Makefile.am:
5769         * gst/xingheader/gstxingmux.c:
5770         * gst/xingheader/gstxingmux.h:
5771         * tests/check/Makefile.am:
5772         * tests/check/elements/.cvsignore:
5773         * tests/check/elements/xingmux.c:
5774         * tests/check/elements/xingmux_testdata.h:
5775         Remove the xingmux plugin, as the element has moved into
5776         mpegaudioparse in -ugly.
5777
5778 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5779
5780         * docs/plugins/Makefile.am:
5781         Remove mention of non-existent headers to fix the build.
5782
5783 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5784
5785         * configure.ac:
5786         * ext/Makefile.am:
5787         * ext/gio/Makefile.am:
5788         * ext/gio/gstgio.c:
5789         * ext/gio/gstgio.h:
5790         * ext/gio/gstgiobasesink.c:
5791         * ext/gio/gstgiobasesink.h:
5792         * ext/gio/gstgiobasesrc.c:
5793         * ext/gio/gstgiobasesrc.h:
5794         * ext/gio/gstgiosink.c:
5795         * ext/gio/gstgiosink.h:
5796         * ext/gio/gstgiosrc.c:
5797         * ext/gio/gstgiosrc.h:
5798         * ext/gio/gstgiostreamsink.c:
5799         * ext/gio/gstgiostreamsink.h:
5800         * ext/gio/gstgiostreamsrc.c:
5801         * ext/gio/gstgiostreamsrc.h:
5802         * tests/check/Makefile.am:
5803         * tests/check/pipelines/.cvsignore:
5804         * tests/check/pipelines/gio.c:
5805
5806         Remove GIO plugin which has now moved to -base.
5807
5808 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5809
5810         * docs/plugins/Makefile.am:
5811         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
5812         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
5813         * docs/plugins/gst-plugins-bad-plugins.args:
5814         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
5815         * gst/filter/Makefile.am:
5816         * gst/filter/filter.vcproj:
5817         * gst/filter/gstbpwsinc.c:
5818         * gst/filter/gstbpwsinc.h:
5819         * gst/filter/gstfilter.c:
5820         * gst/filter/gstfilter.h:
5821         * gst/filter/gstlpwsinc.c:
5822         * gst/filter/gstlpwsinc.h:
5823         * tests/check/Makefile.am:
5824         * tests/check/elements/bpwsinc.c:
5825         * tests/check/elements/lpwsinc.c:
5826
5827         Remove lpwsinc and bpwsinc elements - they've become
5828         audiowsinclimit and audiowsincband respectively, in the
5829         gst-plugins-good audiofx plugin.
5830
5831 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
5832
5833         * ext\neon\gstneonhttpsrc.c:
5834         Include unistd.h only if _HAVE_UNISTD_H is defined
5835         * gst\mpegvideoparse\mpegvideoparse.c:
5836         Use G_GUINT64_CONSTANT GLIB macro for constant
5837         * sys\dshowsrcwrapper\gstdshowaudiosrc.c:
5838         * sys\dshowsrcwrapper\gstdshowvideosrc.c:
5839         * sys\dshowdecwrapper\gstdshowaudiodec.c:
5840         * sys\dshowdecwrapper\gstdshowaudiodec.h:
5841         * sys\dshowdecwrapper\gstdshowdecwrapper.c:
5842         * sys\dshowdecwrapper\gstdshowdecwrapper.h:
5843         * sys\dshowdecwrapper\gstdshowvideodec.c
5844         * sys\dshowdecwrapper\gstdshowvideodec.h:
5845         Add a DirectShow decoder wrapper.
5846         * win32\MANIFEST:
5847         Add new win32 files to MANIFEST
5848         * win32\vs6\gst_plugins_bad.dsw:
5849         * win32\vs6\libgstdshow.dsp:
5850         * win32\vs6\libgstdshowdecwrapper.dsp:
5851         * win32\vs6\libgstflv.dsp:
5852         Add new projects to bad workspace
5853
5854 2008-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5855
5856         * gst/mpegtsparse/mpegtspacketizer.c:
5857         Parse component descriptor.
5858         * gst/mpegtsparse/mpegtsparse.c:
5859         Add SI pids to every program (but hardcoded currently).
5860
5861 2008-02-07  Edgard Lima  <edgard.lima@indt.org.br>
5862
5863         * ext/metadata/metadata_mapping.htm:
5864         * ext/metadata/metadataexif.c:
5865         * ext/metadata/metadatatags.c:
5866         * ext/metadata/metadatatags.h:
5867         * tests/icles/metadata_editor.c:
5868         * tests/icles/metadata_editor.glade:
5869           Add more tags. Improve test app.
5870
5871 2008-02-07  Stefan Kost  <ensonic@users.sf.net>
5872
5873         * gst/multifile/gstmultifilesink.c:
5874           Add a fixme comment.
5875
5876         * gst/selector/gstoutputselector.c:
5877           Fix same leak as in input-selector.
5878
5879         * tests/icles/output-selector-test.c:
5880           Improve the test.
5881
5882 2008-02-07  Stefan Kost  <ensonic@users.sf.net>
5883
5884         * gst/spectrum/gstspectrum.c:
5885           Improve the docs.
5886
5887 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
5888
5889         * configure.ac:
5890           The dc1394 plugin seems to use API that was removed or changed
5891           before the final 2.0.0 release, so only build it if 2.0.0-rc5
5892           is available. Someone needs to port it to the final API.
5893
5894         * ext/dc1394/gstdc1394.c: (gst_dc1394_change_camera_transmission):
5895           Include string.h for memcpy and use g_usleep instead of usleep.
5896
5897 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
5898
5899         * gst/filter/gstlpwsinc.c:
5900         Fix typo in the long description of the element.
5901
5902 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
5903
5904         * gst/xingheader/Makefile.am:
5905         Put CFLAGS and LIBS in the right order
5906
5907 2008-02-06  Tim-Philipp Müller  <tim at centricular dot net>
5908
5909         * configure.ac:
5910           ximagesrc has moved to -good, so no need to check for
5911           the required X libs here any more.
5912
5913 2008-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
5914
5915         Patch by: Wouter Cloetens <wouter at mind dot be>
5916
5917         * ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_got_chunk_cb),
5918         (gst_soup_http_src_create):
5919         Fix memory leak and improve debugging a bit.
5920
5921 2008-02-05  Edgard Lima  <edgard.lima@indt.org.br>
5922
5923         * ext/metadata/metadata_mapping.htm:
5924         * ext/metadata/metadataexif.c:
5925         * ext/metadata/metadatatags.c:
5926         * ext/metadata/metadatatags.h:
5927           Add more tags mapping.
5928
5929 2008-02-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5930
5931         * gst/mpegtsparse/mpegtsparse.c:
5932         Handle latency queries in src pads.
5933
5934 2008-02-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5935
5936         * gst/mpegtsparse/mpegtspacketizer.c:
5937         Add flag to both sdt and nit structures to say
5938         whether the table is for the actual network/ts
5939         or not.
5940
5941 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
5942
5943         Patch by: Josep Torra Valles <josep@fluendo.com>
5944
5945         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_flush):
5946         Flush packetizer too.
5947
5948 2008-02-04  Sebastian Dröge  <slomo@circular-chaos.org>
5949
5950         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init),
5951         (gst_ladspa_class_init), (ladspa_describe_plugin), (plugin_init):
5952         Don't use GST_BOILERPLATE as the stuff generated from it is not used
5953         anyway and can't be used.
5954         Store the class struct of the correct type in parent_class.
5955         Pass the LADSPA_Descriptor as class_data to the class_init function
5956         as preparation for the time, when we can add pad templates and friends
5957         in class_init and add a FIXME for that.
5958         Don't use a custom hash table for passing the LADSPA_Descriptors to
5959         base_init but use g_type_set_qdata and g_type_get_qdata.
5960
5961 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
5962
5963         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5964         Really fix the build.
5965         TODO : Apply spankOmatic2000 on thaytan's rear end.
5966
5967 2008-02-04  Tim-Philipp Müller  <tim at centricular dot net>
5968
5969         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5970           (GstMpeg2EncPictureReader.StreamPictureParams):
5971           Fix compilation with libmjpegtools 1.8.x.
5972
5973 2008-02-04  Sebastian Dröge  <slomo@circular-chaos.org>
5974
5975         * ext/ladspa/gstsignalprocessor.c:
5976         (gst_signal_processor_class_add_pad_template):
5977         Don't unref the pad template after adding it.
5978         gst_element_class_add_pad_template takes ownership of it.
5979
5980 2008-02-03  Jan Schmidt  <jan.schmidt@sun.com>
5981
5982         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
5983         Use the incoming pixel-aspect-ratio if provided to infer a 
5984         default aspect ratio, which can be overridden using the 'aspect'
5985         property.
5986
5987         Fixes: #499008
5988
5989 2008-02-03  Sebastian Dröge  <slomo@circular-chaos.org>
5990
5991         Patch by: Andrzej Mendel <andrzej dot mendel at gmail dot com>
5992
5993         * configure.ac:
5994         Fix variable naming to make it possible to build the glimagesink
5995         plugin. Fixes bug #514093.
5996
5997 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
5998
5999         * ext/metadata/gstmetadatademux.c:
6000           Demote metadatademux to GST_RANK_NONE for the release, it's not
6001           ready to be autoplugged yet.
6002
6003         * tests/icles/metadata_editor.c:
6004           Fix printf format warning for GType on ppc32 by removing it,
6005           since it doesn't make sense to print the GType value anyway.
6006
6007 2008-02-02  Edgard Lima  <edgard.lima@indt.org.br>
6008
6009         * ext/metadata/TODO:
6010         * ext/metadata/gstmetadatamux.c:
6011         * ext/metadata/metadata_mapping.htm:
6012         * ext/metadata/metadataexif.c:
6013         * ext/metadata/metadatatags.c:
6014         * ext/metadata/metadatatags.h:
6015           Map more Exif tags.
6016
6017 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
6018
6019         * gst/selector/gstinputselector.c: (gst_selector_pad_event):
6020         Don't leak event on pads that are not linked. Fixes #512826.
6021
6022 2008-02-01  Tim-Philipp Müller  <tim at centricular dot net>
6023
6024         * configure.ac:
6025           Bump core/base requirements to released versions, to avoid confusion.
6026
6027         * gst/deinterlace/Makefile.am:
6028         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_set_caps):
6029           Use the new GstVideoFormat API to get strides, plane offsets etc..
6030           For Y42B we still need to calculate these ourselves, since the lib
6031           in -base doesn't know about this format yet and we can't bump the
6032           requirement to CVS right now. Fix the Y42B stride, offset and size
6033           calculations for odd widths and heights while we're at it though
6034           (to match those in videotestsrc).
6035
6036 2008-01-31  Edgard Lima  <edgard.lima@indt.org.br>
6037
6038         * ext/metadata/metadata_mapping.htm:
6039         * ext/metadata/metadataexif.c:
6040         * ext/metadata/metadataiptc.c:
6041         * ext/metadata/metadatatags.c:
6042         * ext/metadata/metadatatags.h:
6043         * ext/metadata/metadataxmp.c:
6044           Add documentation.
6045
6046 2008-01-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6047
6048         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_reading):
6049         Fix compilation.
6050
6051 2008-01-31  Wim Taymans  <wim.taymans@collabora.co.uk>
6052
6053         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_dispose):
6054         Really clean up the queue instead of just unreffing all buffers
6055         in it.
6056
6057         * gst-libs/gst/app/gstappsrc.c: (gst_app_src_base_init),
6058         (gst_app_src_class_init), (gst_app_src_init),
6059         (gst_app_src_dispose), (gst_app_src_finalize):
6060         Fix dispose/finalize.
6061
6062 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
6063
6064         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst):
6065         Fix compiler warning by making the function signature match what
6066         everyone is passing in...
6067
6068         * tests/icles/Makefile.am:
6069         Fix the build on Solaris by removing GNU ld specific flags that
6070         look unnecessary.
6071
6072 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6073
6074         * ext/metadata/Makefile.am:
6075         Add some relevant variables to CFLAGS and LIBADD, for example our
6076         compiler warnings paramters.
6077
6078         * ext/metadata/gstbasemetadata.c:
6079         (gst_base_metadata_strip_push_buffer),
6080         (gst_base_metadata_calculate_offsets),
6081         (gst_base_metadata_src_event), (gst_base_metadata_sink_activate):
6082         * ext/metadata/gstmetadatademux.c: (gst_metadata_demux_init),
6083         (gst_metadata_demux_set_property), (gst_metadata_demux_dispose):
6084         * ext/metadata/gstmetadatamux.c: (gst_metadata_mux_init),
6085         (gst_metadata_mux_set_property), (gst_metadata_mux_get_property),
6086         (gst_metadata_mux_dispose),
6087         (gst_metadata_mux_create_chunks_from_tags):
6088         * ext/metadata/metadata.c: (metadata_dispose):
6089         * ext/metadata/metadataexif.c:
6090         (metadataparse_exif_content_foreach_entry_func),
6091         (metadatamux_exif_for_each_tag_in_list):
6092         * ext/metadata/metadataiptc.c:
6093         (metadatamux_iptc_for_each_tag_in_list):
6094         * ext/metadata/metadatamuxjpeg.c: (metadatamux_jpeg_lazy_update),
6095         (metadatamux_jpeg_reading):
6096         * ext/metadata/metadatamuxpng.c: (metadatamux_png_reading):
6097         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_reading):
6098         * ext/metadata/metadataparsepng.c:
6099         * ext/metadata/metadataparseutil.h:
6100         * ext/metadata/metadataxmp.c: (metadataparse_xmp_tag_list_add),
6101         (metadatamux_xmp_create_chunk_from_tag_list):
6102         Fix a million warnings that showed up after the above change.
6103
6104 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6105
6106         * ext/soup/gstsouphttpsrc.c: (_do_init),
6107         (gst_soup_http_src_base_init), (gst_soup_http_src_class_init),
6108         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
6109         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
6110         (gst_soup_http_src_unicodify), (gst_soup_http_src_cancel_message),
6111         (gst_soup_http_src_queue_message),
6112         (gst_soup_http_src_add_range_header),
6113         (gst_soup_http_src_session_unpause_message),
6114         (gst_soup_http_src_session_pause_message),
6115         (gst_soup_http_src_session_close),
6116         (gst_soup_http_src_got_headers_cb),
6117         (gst_soup_http_src_got_body_cb), (gst_soup_http_src_finished_cb),
6118         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_response_cb),
6119         (gst_soup_http_src_parse_status), (gst_soup_http_src_create),
6120         (gst_soup_http_src_start), (gst_soup_http_src_stop),
6121         (gst_soup_http_src_unlock), (gst_soup_http_src_unlock_stop),
6122         (gst_soup_http_src_get_size), (gst_soup_http_src_is_seekable),
6123         (gst_soup_http_src_do_seek), (gst_soup_http_src_set_location),
6124         (gst_soup_http_src_set_proxy), (gst_soup_http_src_uri_get_type),
6125         (gst_soup_http_src_uri_get_protocols),
6126         (gst_soup_http_src_uri_get_uri), (gst_soup_http_src_uri_set_uri),
6127         (gst_soup_http_src_uri_handler_init), (plugin_init):
6128         Add changes to gstsouphttpsrc.c that were missing from last commit.
6129
6130 2008-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
6131
6132         Patch by: Wouter Cloetens <wouter at mind dot be>
6133
6134         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6135         * docs/plugins/gst-plugins-bad-plugins.args:
6136         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6137         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6138         * docs/plugins/inspect/plugin-soup.xml:
6139         (gst_soup_http_src_base_init), (gst_soup_http_src_class_init),
6140         (gst_soup_http_src_init), (gst_soup_http_src_dispose),
6141         (gst_soup_http_src_set_property), (gst_soup_http_src_get_property),
6142         (gst_soup_http_src_unicodify), (gst_soup_http_src_cancel_message),
6143         (gst_soup_http_src_queue_message),
6144         (gst_soup_http_src_add_range_header),
6145         (gst_soup_http_src_session_unpause_message),
6146         (gst_soup_http_src_session_pause_message),
6147         (gst_soup_http_src_session_close),
6148         (gst_soup_http_src_got_headers_cb),
6149         (gst_soup_http_src_got_body_cb), (gst_soup_http_src_finished_cb),
6150         (gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_response_cb),
6151         (gst_soup_http_src_parse_status), (gst_soup_http_src_create),
6152         (gst_soup_http_src_start), (gst_soup_http_src_stop),
6153         (gst_soup_http_src_unlock), (gst_soup_http_src_unlock_stop),
6154         (gst_soup_http_src_get_size), (gst_soup_http_src_is_seekable),
6155         (gst_soup_http_src_do_seek), (gst_soup_http_src_set_location),
6156         (gst_soup_http_src_set_proxy), (gst_soup_http_src_uri_get_type),
6157         (gst_soup_http_src_uri_get_protocols),
6158         (gst_soup_http_src_uri_get_uri), (gst_soup_http_src_uri_set_uri),
6159         (gst_soup_http_src_uri_handler_init), (plugin_init):
6160         * ext/soup/gstsouphttpsrc.h:
6161         Make coding style more consistent, including class renaming.
6162
6163 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6164
6165         * configure.ac:
6166         Fix configure check for soundtouch to not produce syntax errors.
6167
6168 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6169
6170         * configure.ac:
6171         * ext/metadata/metadataxmp.c:
6172         (metadatamux_xmp_for_each_tag_in_list):
6173         Fix build with exempi >= 1.99.5 and fix the include
6174         path for exempi.
6175
6176 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6177
6178         * ext/metadata/TODO:
6179           Just uptade the ToDo list.
6180
6181 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6182
6183         * ext/metadata/gstbasemetadata.c:
6184         * ext/metadata/metadatamuxjpeg.c:
6185         * ext/metadata/metadatamuxpng.c:
6186         * ext/metadata/metadataparsejpeg.c:
6187         * ext/metadata/metadatatypes.c:
6188         * ext/metadata/metadatatypes.h:
6189         * ext/metadata/metadataxmp.c:
6190           Add documentation. Speed up a bit png muxer. Fix xmp muxer.
6191
6192 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6193
6194         Patch by: Wouter Cloetens <wouter at mind dot be>
6195
6196         * ext/soup/gstsouphttpsrc.c:
6197         Update documentation a bit.
6198
6199         * docs/plugins/gst-plugins-bad-plugins.args:
6200         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6201         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6202         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
6203         * docs/plugins/inspect/plugin-alsaspdif.xml:
6204         * docs/plugins/inspect/plugin-dvb.xml:
6205         * docs/plugins/inspect/plugin-filter.xml:
6206         * docs/plugins/inspect/plugin-glimagesink.xml:
6207         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
6208         * docs/plugins/inspect/plugin-quicktime.xml:
6209         * docs/plugins/inspect/plugin-rawparse.xml:
6210         * docs/plugins/inspect/plugin-replaygain.xml:
6211         * docs/plugins/inspect/plugin-sdl.xml:
6212         * docs/plugins/inspect/plugin-soundtouch.xml:
6213         * docs/plugins/inspect/plugin-soup.xml:
6214         * docs/plugins/inspect/plugin-spcdec.xml:
6215         * docs/plugins/inspect/plugin-spectrum.xml:
6216         * docs/plugins/inspect/plugin-speed.xml:
6217         * docs/plugins/inspect/plugin-speexresample.xml:
6218         * docs/plugins/inspect/plugin-switch.xml:
6219         * docs/plugins/inspect/plugin-videocrop.xml:
6220         Regenerate everything for the documentation changes we had.
6221
6222 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6223
6224         * ext/gio/gstgiobasesink.c: (close_stream_cb),
6225         (gst_gio_base_sink_stop), (gst_gio_base_sink_event),
6226         (gst_gio_base_sink_render), (gst_gio_base_sink_set_stream):
6227         * ext/gio/gstgiobasesrc.c: (close_stream_cb),
6228         (gst_gio_base_src_stop), (gst_gio_base_src_create),
6229         (gst_gio_base_src_set_stream):
6230         Use async variants of the close stream functions to prevent blocking
6231         for a long time there and add some more sanity checks for a correct
6232         stream.
6233
6234 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6235
6236         * tests/icles/Makefile.am:
6237         Move -Wl parameter from _LDADD to _LDFLAGS to fix autogen.sh.
6238
6239 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6240
6241         Patch by: Wouter Cloetens <wouter at mind dot be>
6242
6243         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_init):
6244         Let the proxy property default to the content of the $http_proxy
6245         environment variable.
6246
6247 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6248
6249         Patch by: Wouter Cloetens <wouter at mind dot be>
6250
6251         * tests/check/test-cert.pem:
6252         * tests/check/test-key.pem:
6253         Add missing files for the unit test.
6254
6255 2008-01-30  Sebastian Dröge  <slomo@circular-chaos.org>
6256
6257         Patch by: Wouter Cloetens <wouter at mind dot be>
6258
6259         * docs/plugins/Makefile.am:
6260         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6261         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6262         Add souphttpsrc to the docs.
6263
6264         * configure.ac:
6265         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
6266         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
6267         (gst_souphttp_src_set_property), (gst_souphttp_src_get_property),
6268         (gst_souphttp_src_cancel_message),
6269         (gst_souphttp_src_queue_message),
6270         (gst_souphttp_src_add_range_header),
6271         (gst_souphttp_src_session_unpause_message),
6272         (gst_souphttp_src_session_pause_message),
6273         (gst_souphttp_src_session_close),
6274         (gst_souphttp_src_got_headers_cb), (gst_souphttp_src_got_body_cb),
6275         (gst_souphttp_src_finished_cb), (gst_souphttp_src_got_chunk_cb),
6276         (gst_souphttp_src_response_cb), (gst_souphttp_src_parse_status),
6277         (gst_souphttp_src_create), (gst_souphttp_src_start),
6278         (gst_souphttp_src_stop), (gst_souphttp_src_unlock),
6279         (gst_souphttp_src_unlock_stop), (gst_souphttp_src_get_size),
6280         (gst_souphttp_src_is_seekable), (gst_souphttp_src_do_seek),
6281         (gst_souphttp_src_set_location), (gst_souphttp_src_set_proxy),
6282         (plugin_init):
6283         * ext/soup/gstsouphttpsrc.h:
6284         Add support for libsoup2.4 and require it. Also implement redirection
6285         and manual proxy specification. Fixes bug #510708.
6286
6287         * tests/check/Makefile.am:
6288         * tests/check/elements/.cvsignore:
6289         * tests/check/elements/souphttpsrc.c:
6290         Add unit test for souphttpsrc.
6291
6292 2008-01-30  Edgard Lima  <edgard.lima@indt.org.br>
6293
6294         * ext/Makefile.am:
6295         * ext/metadata/TODO:
6296         * ext/metadata/gstbasemetadata.c:
6297         * ext/metadata/gstbasemetadata.h:
6298         * ext/metadata/metadatamuxjpeg.c:
6299         * ext/metadata/metadatamuxjpeg.h:
6300         * ext/metadata/metadatamuxpng.c:
6301         * ext/metadata/metadatamuxpng.h:
6302         * ext/metadata/metadataparsejpeg.c:
6303         * ext/metadata/metadataparsepng.c:
6304         * tests/icles/Makefile.am:
6305           Add documentation. Fix test app compilation. Fix pull mode.
6306
6307 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
6308
6309         Patch by: Thijs Vermeir  <thijsvermeir at gmail dot com>
6310
6311         * gst/rtpmanager/gstrtpjitterbuffer.c:
6312         (gst_rtp_jitter_buffer_chain):
6313         Try to get the new clock-rate from the buffer caps when we receive a new
6314         payload type instead of always firing the signal. Fixes #512774.
6315
6316 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
6317
6318         * ext/mpeg2enc/gstmpeg2enc.cc:
6319         Define LOG_NONE and friends if they're not defined yet. mjpegtools
6320         1.9.0rc3 removed their definitions but without it doesn't make much
6321         sense to write a log handler.
6322
6323 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6324
6325         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6326         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6327         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6328         * docs/plugins/gst-plugins-bad-plugins.types:
6329           Add base classes for metadata and equalizer (no introspection yet).
6330
6331 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6332
6333         * ext/metadata/README:
6334           Formatting.
6335         * tests/icles/metadata_editor.c:
6336           Include stdlib.h.
6337
6338 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
6339
6340         * configure.ac:
6341         * docs/plugins/Makefile.am:
6342         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6343         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6344         * docs/plugins/gst-plugins-bad-plugins.args:
6345         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6346         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6347         * docs/plugins/gst-plugins-bad-plugins.signals:
6348         * docs/plugins/inspect/plugin-metadata.xml:
6349         * docs/plugins/inspect/plugin-selector.xml:
6350         * docs/plugins/inspect/plugin-soundtouch.xml:
6351         * docs/plugins/inspect/plugin-switch.xml:
6352         * gst/selector/.cvsignore:
6353         * gst/selector/Makefile.am:
6354         * gst/selector/gstinputselector.c:
6355         * gst/selector/gstinputselector.h:
6356         * gst/selector/gstoutputselector.c:
6357         * gst/selector/gstoutputselector.h:
6358         * gst/selector/gstselector-marshal.list:
6359         * gst/selector/gstselector.c:
6360         * gst/selector/selector.vcproj:
6361         * gst/switch/.cvsignore:
6362         * gst/switch/Makefile.am:
6363         * gst/switch/gstswitch-marshal.list:
6364         * gst/switch/gstswitch.c:
6365         * gst/switch/gstswitch.h:
6366         * gst/switch/switch.vcproj:
6367         * tests/icles/.cvsignore:
6368         * tests/icles/Makefile.am:
6369         * tests/icles/output-selector-test.c:
6370           Replace the switch plugin with the selector plugin. Add output-
6371           selector as the opposite of input-selectoo (was switch). Add a test
6372           for output-selector. Add docs for the elements. The vcproj needs
6373           update. Fixes #500142.
6374
6375 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
6376
6377         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_forward):
6378           Try to avoid 'unused variable' compiler warning if debugging is
6379           disabled (not bullet proof, but seems to do for now). (#512654)
6380
6381 2008-01-28  Sebastian Dröge  <slomo@circular-chaos.org>
6382
6383         * ext/soundtouch/gstbpmdetect.cc:
6384         Clean up a bit and only allocate a temporary buffer for the data
6385         if processing stereo data as BPMDetect downmixes from stereo to
6386         mono and stores the result in the input data. Thanks to
6387         Stefan Kost for the suggestions.
6388
6389 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6390
6391         * ext/soundtouch/gstpitch.cc:
6392         Cast a double to a GstClockTimeDiff to fix a compiler warning.
6393
6394 2008-01-27  Stefan Kost  <ensonic@users.sf.net>
6395
6396         * tests/icles/metadata_editor.c:
6397           Printf format fix.
6398
6399 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6400
6401         * ext/soundtouch/gstpitch.cc:
6402         Don't send a LATENCY event for now until we get the usage right.
6403
6404 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6405
6406         * ext/soundtouch/gstpitch.cc:
6407         * ext/soundtouch/gstpitch.hh:
6408         Implement LATENCY query and notify about latency changes.
6409         Unfortunately we don't have a fixed latency but it changes
6410         a bit with each buffer so we only send an LATENCY event with
6411         the maximum latency if it changes.
6412
6413         Always calculate the timestamp, duration, etc from the sample
6414         rate instead of using a pre-calculated duration for one sample
6415         to prevent large rounding errors.
6416
6417 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6418
6419         Based on a patch by:
6420             Hans de Goede <j dot w dot r dot degoede at hhs dot nl>
6421
6422         * configure.ac:
6423         * ext/mpeg2enc/gstmpeg2encoder.cc:
6424         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
6425         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
6426         Add support for building against mjpegtools 1.9 while keeping
6427         compatiblity with older versions.
6428
6429 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6430
6431         * ext/soundtouch/gstbpmdetect.cc:
6432         Only consider a BPM value above 1.0 as valid.
6433
6434 2008-01-27  Sebastian Dröge  <slomo@circular-chaos.org>
6435
6436         * ext/soundtouch/Makefile.am:
6437         * ext/soundtouch/gstbpmdetect.cc:
6438         * ext/soundtouch/gstbpmdetect.hh:
6439         * ext/soundtouch/plugin.c: (plugin_init):
6440         Add BPM detection plugin based on SoundTouch's libBPM.
6441
6442         * ext/soundtouch/gstpitch.cc:
6443         Allow sample rates until MAX instead of only 48kHz and remove the
6444         buffer-frames field from that caps.
6445         Clear the remaining samples completely when necessary to get into
6446         a clean state again.
6447
6448 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6449
6450         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init):
6451         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
6452         Don't implement get_unit_size() ourselves, the GstAudioFilter base
6453         class already does this for us.
6454
6455 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6456
6457         * ext/soundtouch/gstpitch.cc:
6458         Allow seeking only in TIME and DEFAULT format, other formats will
6459         not work as expected. Also handle a stop position of -1 correctly
6460         for seeks, newsegment events and the queries. This fixes playback
6461         with the pitch element if upstream doesn't know the duration or has
6462         -1 as stop position in NEWSEGMENT events for other reasons. Before
6463         simply nothing was played as the segment was going from 0 to 0.
6464
6465         Send a GST_MESSAGE_DURATION whenever the rate or tempo is changed
6466         so applications can update their cached duration. Fixes bug #503308.
6467
6468         Some random cleanup and memory leak closing.
6469
6470 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6471
6472         * ext/musepack/gstmusepackdec.h:
6473         * ext/musepack/gstmusepackreader.c:
6474         First include the libmpcdec headers before everything else as they
6475         #define TRUE and FALSE unconditionally and we otherwise get conflicts
6476         with the ones that GLib defines.
6477
6478 2008-01-26  Sebastian Dröge  <slomo@circular-chaos.org>
6479
6480         * configure.ac:
6481         * ext/soundtouch/gstpitch.cc:
6482         Add support for libsoundtouch 1.3.1 and add an ugly workaround for
6483         the header definined PACKAGE and other variables for which we need
6484         our own values from config.h.
6485
6486 2008-01-26  Tim-Philipp Müller  <tim at centricular dot net>
6487
6488         * configure.ac:
6489           Check for libglade-2.0, for the metadata-editor example.
6490
6491         * tests/icles/Makefile.am:
6492           Only try to build the metadata-editor example if we have gtk and
6493           glade (otherwise the build would just fail ...); fix build in
6494           uninstalled setup.
6495
6496         * tests/icles/metadata_editor.c: (on_cell_edited), (ui_add_columns):
6497           Fix compiler warnings (use GLib macros to cast pointer <-> int).
6498
6499 2008-01-25  Edgard Lima  <edgard.lima@indt.org.br>
6500
6501         * ext/metadata/TODO:
6502         * ext/metadata/gstbasemetadata.c:
6503         * ext/metadata/metadata.c:
6504         * ext/metadata/metadata.h:
6505         * ext/metadata/metadataexif.c:
6506         * ext/metadata/metadataexif.h:
6507         * ext/metadata/metadataiptc.c:
6508         * ext/metadata/metadataiptc.h:
6509         * ext/metadata/metadataparsejpeg.c:
6510         * ext/metadata/metadataparsejpeg.h:
6511         * ext/metadata/metadataparsepng.c:
6512         * ext/metadata/metadataparsepng.h:
6513         * ext/metadata/metadataparseutil.c:
6514         * ext/metadata/metadataparseutil.h:
6515         * ext/metadata/metadatatags.c:
6516         * ext/metadata/metadatatags.h:
6517         * ext/metadata/metadatatypes.c:
6518         * ext/metadata/metadatatypes.h:
6519         * ext/metadata/metadataxmp.c:
6520         * ext/metadata/metadataxmp.h:
6521         * ext/metadata/test/Makefile:
6522         * ext/metadata/test/MetadataEditorMain.glade:
6523         * ext/metadata/test/metadata_editor.c:
6524         * tests/icles/Makefile.am:
6525         * tests/icles/metadata_editor.c:
6526         * tests/icles/metadata_editor.glade:
6527           Add lot of documentation.
6528
6529 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6530
6531         * sys/dvb/gstdvbsrc.c:
6532         Open frontend in NULL->READY so caps about dvb adapter can be
6533         seen by the app.
6534
6535 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6536
6537         Patch by: Olivier Crete <tester@tester.ca>
6538
6539         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate),
6540         (create_stream), (payload_type_change), (new_ssrc_pad_found):
6541         Also handle lip-sync when the clock-rate is not provided with caps but
6542         with a signal.
6543
6544 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6545
6546         Patch by: Olivier Crete <tester@tester.ca>
6547
6548         * gst/rtpmanager/gstrtpjitterbuffer.c:
6549         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_chain):
6550         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew),
6551         (rtp_jitter_buffer_insert):
6552         * gst/rtpmanager/rtpjitterbuffer.h:
6553         Remove the fixed clock-rate from the jitterbuffer and extend it so that
6554         a clock-rate can be provided with each buffer instead. Fixes #511686.
6555
6556 2008-01-25  Wim Taymans  <wim.taymans@collabora.co.uk>
6557
6558         Patch by: Olivier Crete <tester@tester.ca>
6559
6560         * gst/rtpmanager/gstrtpjitterbuffer.c:
6561         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_change_state),
6562         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
6563         Remove old unused variable.
6564         Track pt on input buffers and get the clock-rate when it changes.
6565         Ignore packets with unknown clock-rate. Fixes #511146.
6566
6567 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6568
6569         * sys/dvb/gstdvbsrc.c:
6570         Post bus message about adapter type and it's capabilities,
6571         when opening the frontend.
6572         After failing to read from the dvr, post a bus message to
6573         inform the app.
6574
6575 2008-01-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6576
6577         * gst/mpegtsparse/mpegtspacketizer.c:
6578         The logic for the guard interval calculation was totally wrong.
6579         Fixed.
6580
6581 2008-01-24  David Schleef  <ds@schleef.org>
6582
6583         Patch by: Olivier Crete <tester@tester.ca>
6584
6585         * gst/rtpmanager/rtpsource.c: Fix unref of buffer using the
6586           wrong function.  Fixes #511920
6587
6588 2008-01-24  Stefan Kost  <ensonic@users.sf.net>
6589
6590         * docs/plugins/Makefile.am:
6591         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6592         * docs/plugins/gst-plugins-bad-plugins.args:
6593         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
6594         * docs/plugins/gst-plugins-bad-plugins.interfaces:
6595         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
6596         * docs/plugins/gst-plugins-bad-plugins.signals:
6597           Now we have full hierarchy.
6598
6599         * docs/plugins/inspect/plugin-metadata.xml:
6600           Regenerate.
6601
6602         * ext/amrwb/gstamrwbdec.h:
6603           Add doc blob for object instance.
6604
6605 2008-01-24  Tim-Philipp Müller  <tim at centricular dot net>
6606
6607         * docs/plugins/gst-plugins-bad-plugins.args:
6608         * docs/plugins/inspect/plugin-metadata.xml:
6609           Update this too, hopefully fixes the docs build (does at least
6610           for me, after make clean in docs/plugins).
6611
6612 2008-01-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6613
6614         * gst/mpegtsparse/gstmpegdesc.h:
6615         * gst/mpegtsparse/mpegtspacketizer.c:
6616         Fix network name descriptor, the length is actually the
6617         descriptor length not stored in the byte after.
6618         Fix bounds checking to be more correct.
6619
6620 2008-01-23  Edgard Lima  <edgard.lima@indt.org.br>
6621
6622         * docs/plugins/Makefile.am:
6623         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6624         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6625         * ext/metadata/TODO:
6626         * ext/metadata/gstbasemetadata.c:
6627         * ext/metadata/gstbasemetadata.h:
6628         * ext/metadata/gstmetadatademux.c:
6629         * ext/metadata/gstmetadatademux.h:
6630         * ext/metadata/gstmetadatamux.c:
6631         * ext/metadata/gstmetadatamux.h:
6632         * ext/metadata/metadatatags.c:
6633           Add some documentation.
6634
6635 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6636
6637         * configure.ac:
6638         * ext/dts/gstdtsdec.c:
6639         Add support for building against libdca (with the libdts compat
6640         header). Fixes bug #511530.
6641
6642         Should probably be ported to libdca as some points as it's the
6643         successor of libdts.
6644
6645 2008-01-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6646
6647         * sys/dvb/gstdvbsrc.c:
6648         Do not go on forever if problem with reading from dvr, rather
6649         return NULL.
6650         Handle some cleanup issues of closing filedescriptors when
6651         failing to tune or similar.
6652
6653 2008-01-23 Christian Schaller <christian.schaller@collabora.co.uk>
6654
6655         * gst/rawparse/Makefile.am: Add missing header files to noinst_headers
6656         * gst-plugins-bad.spec: update for latest changes
6657
6658 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6659
6660         * docs/plugins/Makefile.am:
6661         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6662         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6663         * gst/xingheader/gstxingmux.c:
6664         * gst/xingheader/gstxingmux.h:
6665         Add documentation for the xingheader plugin.
6666
6667         * tests/check/elements/xingmux.c: (GST_START_TEST):
6668         Set element state to PLAYING before doing something else.
6669
6670 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6671
6672         * tests/check/Makefile.am:
6673         * tests/check/elements/.cvsignore:
6674         * tests/check/elements/xingmux.c: (setup_xingmux),
6675         (cleanup_xingmux), (GST_START_TEST), (xingmux_suite), (main):
6676         * tests/check/elements/xingmux_testdata.h:
6677         Add simple unit test for the xingmux element.
6678
6679         * gst/xingheader/gstxingmux.c: (generate_xing_header),
6680         (gst_xing_mux_finalize), (xing_reset):
6681         Fix a memleak and invalid seek tables with less than 100 MP3 frames.
6682
6683 2008-01-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6684
6685         * gst/mpegtsparse/gstmpegdesc.h:
6686         * gst/mpegtsparse/mpegtspacketizer.c:
6687         Parsed the satellite delivery system descriptor and
6688         added into nit's transport structure for delivery
6689         over the bus.
6690
6691 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6692
6693         * gst/mpegtsparse/mpegtspacketizer.c:
6694         Parsed and added network name to the nit structure sent
6695         in the bus message.
6696
6697 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6698
6699         * gst/mpegtsparse/mpegtspacketizer.c:
6700         Remove leaks introduced by not freeing g_strndup'd strings.
6701         Fix start_time and duration parsing in EIT.
6702
6703 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6704
6705         * gst/mpegtsparse/mpegtspacketizer.c:
6706         Add event name and description to the eit structure
6707         sent in the bus message.
6708
6709 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6710
6711         * gst/mpegtsparse/mpegtsparse.c:
6712         Revert const removal from previous commit.
6713
6714 2008-01-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6715
6716         * gst/mpegtsparse/Makefile.am:
6717         * gst/mpegtsparse/gstmpegdesc.c:
6718         * gst/mpegtsparse/gstmpegdesc.h:
6719         * gst/mpegtsparse/mpegtspacketizer.c:
6720         * gst/mpegtsparse/mpegtsparse.c:
6721         Added descriptor searching infrastructure from Fluendo TS demuxer.
6722         Add channel name and provider to the sdt structure sent in the
6723         bus message.
6724
6725 2008-01-22  Julien Moutte  <julien@fluendo.com>
6726
6727         * gst/h264parse/gsth264parse.c: (gst_h264_parse_chain_forward):
6728         Parse NAL units in forward mode to mark delta units flags.
6729
6730 2008-01-22  Stefan Kost  <ensonic@users.sf.net>
6731
6732         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6733         * docs/plugins/gst-plugins-bad-plugins.args:
6734         * docs/plugins/inspect/plugin-mpeg2enc.xml:
6735         * docs/plugins/inspect/plugin-musepack.xml:
6736           Regenerate.
6737   
6738         * docs/plugins/inspect/plugin-tremor.xml:
6739           Add vorbisidec aka trmor.
6740
6741         * ext/dc1394/gstdc1394.c:
6742           Add short description.
6743
6744 2008-01-22  Stefan Kost  <ensonic@users.sf.net>
6745
6746         * docs/plugins/Makefile.am:
6747           Add missing eol \
6748
6749         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6750           Place object names to standard sectionas plugin dont document those.
6751
6752         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6753         * docs/plugins/gst-plugins-bad-plugins.args:
6754         * docs/plugins/gst-plugins-bad-plugins.signals:
6755         * docs/plugins/inspect/plugin-dvb.xml:
6756         * docs/plugins/inspect/plugin-nuvdemux.xml:
6757           regenerate.
6758           
6759         * ext/ivorbis/vorbisdec.c:
6760         * ext/ivorbis/vorbisdec.h:
6761           Mark private vars and add short desc.
6762
6763         * ext/mythtv/gstmythtvsrc.c:
6764         * ext/theora/theoradec.c:
6765           Add short desc.
6766
6767 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6768
6769         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6770         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6771         * gst/nuvdemux/gstnuvdemux.c:
6772           One less to do. Its 'nuv' not 'nvu'. As an extra bonus I mention what
6773           it actually is.
6774
6775 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6776
6777         * docs/plugins/Makefile.am:
6778         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6779         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6780           Update lists again. Those whole can build ivorbisdec, mythtvsrc,
6781           nvudemux and theoradecexp, please commit the inspect/plugin-xxx.xml.
6782
6783         * docs/plugins/inspect/plugin-gstinterlace.xml:
6784         * docs/plugins/inspect/plugin-rawparse.xml
6785         * docs/plugins/inspect/plugin-videoparse.xml:
6786           Replace videoparse with rawparse.
6787
6788         * gst/dvdspu/gstdvdspu.h:
6789           Help gtk-doc to recognize the object struct.
6790
6791 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6792
6793         * gst/librfb/rfbdecoder.c:
6794         * gst/librfb/rfbdecoder.h:
6795           Don't use gtk-doc comment style for non gtk-doc comments.
6796           Make one static function static.
6797
6798 2008-01-21  Wim Taymans  <wim.taymans@collabora.co.uk>
6799
6800         Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
6801
6802         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_class_init),
6803         (gst_deinterlace_init), (gst_deinterlace_set_caps),
6804         (gst_deinterlace_transform_ip), (gst_deinterlace_set_property),
6805         (gst_deinterlace_get_property):
6806         * gst/deinterlace/gstdeinterlace.h:
6807         Provide 4:2:2 support
6808         Also deinterlace chroma planes
6809         Allow to turn on/off deinterlacing
6810         Change of default thresholds, in order to provide acceptable results
6811         with default params. Fixes #511001.
6812
6813 2008-01-21  Tim-Philipp Müller  <tim at centricular dot net>
6814
6815         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6816           Update docs file too.
6817
6818 2008-01-21  Tim-Philipp Müller  <tim at centricular dot net>
6819
6820         * gst/dvdspu/gstdvdspu-render.c: (gst_dvd_spu_render_spu):
6821         * gst/dvdspu/gstdvdspu.c: (dvdspu_debug), (GST_CAT_DEFAULT),
6822           (subpic_sink_factory), (gst_dvd_spu_base_init),
6823           (gst_dvd_spu_class_init), (gst_dvd_spu_init), (gst_dvd_spu_clear),
6824           (gst_dvd_spu_dispose), (gst_dvd_spu_finalize),
6825           (gst_dvd_spu_flush_spu_info), (gst_dvd_spu_buffer_alloc),
6826           (gst_dvd_spu_src_event), (gst_dvd_spu_video_set_caps),
6827           (gst_dvd_spu_video_proxy_getcaps), (gst_dvd_spu_video_event),
6828           (gst_dvd_spu_video_chain), (dvspu_handle_vid_buffer),
6829           (gst_dvd_spu_redraw_still), (gst_dvd_spu_parse_chg_colcon),
6830           (gst_dvd_spu_exec_cmd_blk), (gst_dvd_spu_finish_spu_buf),
6831           (gst_dvd_spu_setup_cmd_blk), (gst_dvd_spu_handle_new_spu_buf),
6832           (gst_dvd_spu_handle_dvd_event), (gst_dvd_spu_advance_spu),
6833           (gst_dvd_spu_check_still_updates), (gst_dvd_spu_subpic_chain),
6834           (gst_dvd_spu_subpic_event), (gst_dvd_spu_change_state),
6835           (gst_dvd_spu_plugin_init):
6836         * gst/dvdspu/gstdvdspu.h: (GST_TYPE_DVD_SPU):
6837           Fix up dvdspu element again after previous namespace mangling:
6838           rename debug category variable to old name, matching that in
6839           dvdspu-render.c, to avoid undefined symbol error when loading
6840           the module; same for the _render function in dvdspu-render.c:
6841           we must use the same name in both .c files; change functions
6842           now called gstgst_* back to gst_* again; and while we're at it,
6843           we may as well canonicalise the namespace properly, namely to
6844           gst_dvd_spu_*.
6845
6846 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6847
6848         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6849         * ext/theora/theoradec.c:
6850         * ext/theora/theoradec.h:
6851           Coherent namespace usage and adding symbold from unused to sections.
6852
6853 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6854
6855         * docs/plugins/Makefile.am:
6856         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
6857           Add symbols from -unused.txt to the right place.
6858
6859         * gst/dvdspu/gstdvdspu.c:
6860         * gst/dvdspu/gstdvdspu.h:
6861           Coherent namespace usage.
6862
6863         * gst/spectrum/gstspectrum.c:
6864           Fix broken XML fragment in doc snippet even more.
6865
6866 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6867
6868         * docs/plugins/Makefile.am:
6869           Update include list.
6870
6871         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
6872           Update xml includes.
6873
6874         * docs/plugins/inspect/plugin-alsaspdif.xml:
6875         * docs/plugins/inspect/plugin-amrwb.xml:
6876         * docs/plugins/inspect/plugin-bayer.xml:
6877         * docs/plugins/inspect/plugin-bz2.xml:
6878         * docs/plugins/inspect/plugin-cdxaparse.xml:
6879         * docs/plugins/inspect/plugin-dtsdec.xml:
6880         * docs/plugins/inspect/plugin-dvbsrc.xml:
6881         * docs/plugins/inspect/plugin-dvdspu.xml:
6882         * docs/plugins/inspect/plugin-equalizer.xml:
6883         * docs/plugins/inspect/plugin-faac.xml:
6884         * docs/plugins/inspect/plugin-faad.xml:
6885         * docs/plugins/inspect/plugin-fbdevsink.xml:
6886         * docs/plugins/inspect/plugin-festival.xml:
6887         * docs/plugins/inspect/plugin-filter.xml:
6888         * docs/plugins/inspect/plugin-flvdemux.xml:
6889         * docs/plugins/inspect/plugin-freeze.xml:
6890         * docs/plugins/inspect/plugin-gsm.xml:
6891         * docs/plugins/inspect/plugin-gstinterlace.xml:
6892         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
6893         * docs/plugins/inspect/plugin-h264parse.xml:
6894         * docs/plugins/inspect/plugin-interleave.xml:
6895         * docs/plugins/inspect/plugin-ladspa.xml:
6896         * docs/plugins/inspect/plugin-metadata.xml:
6897         * docs/plugins/inspect/plugin-modplug.xml:
6898         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
6899         * docs/plugins/inspect/plugin-mpegtsparse.xml:
6900         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
6901         * docs/plugins/inspect/plugin-musicbrainz.xml:
6902         * docs/plugins/inspect/plugin-mve.xml:
6903         * docs/plugins/inspect/plugin-nsfdec.xml:
6904         * docs/plugins/inspect/plugin-nuvdemux.xml:
6905         * docs/plugins/inspect/plugin-qtdemux.xml:
6906         * docs/plugins/inspect/plugin-quicktime.xml:
6907         * docs/plugins/inspect/plugin-real.xml:
6908         * docs/plugins/inspect/plugin-replaygain.xml:
6909         * docs/plugins/inspect/plugin-sdl.xml:
6910         * docs/plugins/inspect/plugin-sdp.xml:
6911         * docs/plugins/inspect/plugin-spectrum.xml:
6912         * docs/plugins/inspect/plugin-speed.xml:
6913         * docs/plugins/inspect/plugin-speexresample.xml:
6914         * docs/plugins/inspect/plugin-stereo.xml:
6915         * docs/plugins/inspect/plugin-switch.xml:
6916         * docs/plugins/inspect/plugin-timidity.xml:
6917         * docs/plugins/inspect/plugin-tta.xml:
6918         * docs/plugins/inspect/plugin-videocrop.xml:
6919         * docs/plugins/inspect/plugin-videoparse.xml:
6920         * docs/plugins/inspect/plugin-videosignal.xml:
6921         * docs/plugins/inspect/plugin-vmnc.xml:
6922         * docs/plugins/inspect/plugin-wildmidi.xml:
6923         * docs/plugins/inspect/plugin-x264.xml:
6924         * docs/plugins/inspect/plugin-xingheader.xml:
6925         * docs/plugins/inspect/plugin-xvid.xml:
6926         * docs/plugins/inspect/plugin-y4menc.xml:
6927           Regenerate files.
6928
6929         * gst/spectrum/gstspectrum.c:
6930           Fix broken XML fragment in doc snippet.
6931
6932         * tests/check/elements/.cvsignore:
6933           Add test binary to ignores.
6934
6935 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
6936
6937         * gst/h264parse/gsth264parse.c:
6938           Fix the build. GST_TIME_ARGS takes a timestamp not a buffer.
6939
6940 2008-01-20  Sebastian Dröge  <slomo@circular-chaos.org>
6941
6942         Patch by: Wouter Cloetens <wouter at mind dot be>
6943
6944         * ext/soup/gstsouphttpsrc.c: (soup_got_headers):
6945         Report the size of the stream as the total size instead of
6946         the remaining Content-Length, which is wrong after a seek.
6947
6948 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6949
6950         * gst/rawparse/gstrawparse.c: (gst_raw_parse_push_buffer),
6951         (gst_raw_parse_loop):
6952         Handle framesizes > 4096 with multiple frames per buffer correctly
6953         in pull mode and handle short reads better.
6954         Also put offset and offset_end on outgoing buffers.
6955
6956 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6957
6958         * gst/rawparse/gstrawparse.c: (gst_raw_parse_loop):
6959         Improve handling of unknown or too small upstream sizes in
6960         pull mode.
6961
6962 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6963
6964         * gst/rawparse/gstrawparse.c: (gst_raw_parse_loop),
6965         (gst_raw_parse_handle_seek_push):
6966         Improve debugging a bit and for handling multiple frames per buffer
6967         in pull mode choose the next smallest multiply of framesize below
6968         4096 instead of always handling 1024 frames.
6969
6970 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
6971
6972         Patch by: Wouter Cloetens <wouter at mind dot be>
6973
6974         * ext/soup/gstsouphttpsrc.c: (soup_got_headers):
6975         Correctly set duration on the GstBaseSrc segment when we know it
6976         to fix failing the duration query.
6977
6978 2008-01-18  Wim Taymans  <wim.taymans@collabora.co.uk>
6979
6980         * gst/h264parse/gsth264parse.c: (gst_h264_parse_flush_decode),
6981         (gst_h264_parse_queue_buffer), (gst_h264_parse_chain_reverse):
6982         Set timestamps more correctly.
6983
6984 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
6985
6986         * gst/rawparse/gstrawparse.c: (gst_raw_parse_class_init),
6987         (gst_raw_parse_init), (gst_raw_parse_reset),
6988         (gst_raw_parse_set_src_caps), (gst_raw_parse_push_buffer),
6989         (gst_raw_parse_chain), (gst_raw_parse_loop),
6990         (gst_raw_parse_sink_activate), (gst_raw_parse_sink_activatepull),
6991         (gst_raw_parse_change_state), (gst_raw_parse_sink_event),
6992         (gst_raw_parse_handle_seek_push), (gst_raw_parse_handle_seek_pull),
6993         (gst_raw_parse_src_event), (gst_raw_parse_src_query):
6994         * gst/rawparse/gstrawparse.h:
6995         Implement pull mode.
6996
6997 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
6998
6999         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
7000         Fix memory leak spotted by the unit test.
7001
7002 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7003
7004         * tests/check/Makefile.am:
7005         Enable spectrum test again.
7006
7007         * tests/check/gst-plugins-bad.supp:
7008         Add suppressions for a singleton in GIO that can't be freed.
7009
7010 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7011
7012         * tests/check/Makefile.am:
7013         * tests/check/elements/.cvsignore:
7014         * tests/check/elements/equalizer.c: (setup_equalizer),
7015         (cleanup_equalizer), (GST_START_TEST), (equalizer_suite), (main):
7016         Add some minimal tests for the equalizer plugin.
7017
7018 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7019
7020         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_finalize):
7021         Unparent all bands from the equalizer when finalizing to stop
7022         leaking them.
7023
7024 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7025
7026         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_uri_get_protocols):
7027         Add support for WebDAV.
7028
7029 2008-01-18  Sebastian Dröge  <slomo@circular-chaos.org>
7030
7031         Patch by: Wouter Cloetens <wouter at mind dot be>
7032
7033         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
7034         (gst_souphttp_src_init), (gst_souphttp_src_create),
7035         (gst_souphttp_src_is_seekable), (gst_souphttp_src_do_seek),
7036         (soup_add_range_header), (soup_got_headers), (soup_got_chunk):
7037         * ext/soup/gstsouphttpsrc.h:
7038         Add support for seeking to souphttpsrc. Fixes bug #502335.
7039
7040 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
7041
7042         * gst/h264parse/gsth264parse.c: (gst_h264_parse_clear_queues),
7043         (gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
7044         (gst_h264_parse_find_start_reverse),
7045         (gst_h264_parse_chain_reverse), (gst_h264_parse_chain):
7046         * gst/h264parse/gsth264parse.h:
7047         Improve debugging.
7048         Fix buffer splitting at sync codes and leftover buffer after
7049         scanning.
7050
7051 2008-01-17  Edgard Lima  <edgard.lima@indt.org.br>
7052
7053         * ext/metadata/TODO:
7054         * ext/metadata/metadataexif.c:
7055         * ext/metadata/metadataxmp.c:
7056           Fixed adding EXIF tags to correct IFD. Mapped some XMP tags.
7057
7058 2008-01-16  Wim Taymans  <wim.taymans@collabora.co.uk>
7059
7060         * gst/h264parse/gsth264parse.c: (gst_nal_list_new),
7061         (gst_nal_list_prepend_link), (gst_nal_list_delete_head),
7062         (gst_nal_bs_init), (gst_nal_bs_read), (gst_nal_bs_eos),
7063         (gst_nal_bs_read_ue), (gst_h264_parse_class_init),
7064         (gst_h264_parse_init), (gst_h264_parse_set_property),
7065         (gst_h264_parse_get_property), (gst_h264_parse_sink_setcaps),
7066         (gst_h264_parse_clear_queues), (gst_h264_parse_chain_forward),
7067         (gst_h264_parse_flush_decode), (gst_h264_parse_queue_buffer),
7068         (gst_h264_parse_find_start_reverse),
7069         (gst_h264_parse_chain_reverse), (gst_h264_parse_chain),
7070         (gst_h264_parse_sink_event), (gst_h264_parse_change_state):
7071         * gst/h264parse/gsth264parse.h:
7072         Add reverse playback support for containers that don't know how to
7073         properly send data between I-frames.
7074
7075 2008-01-16  Sebastian Dröge  <slomo@circular-chaos.org>
7076
7077         * configure.ac:
7078         * tests/check/pipelines/gio.c: (GST_START_TEST):
7079         Update for API changes in GIO and require GIO 2.15.2 for this.
7080
7081 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7082
7083         * gst/xingheader/gstxingmux.c: (generate_xing_header):
7084         Bitrate is 4 bits, not 8 so check for 0xe as maximum value instead
7085         of 0xfe.
7086
7087 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7088
7089         * gst/xingheader/gstxingmux.c: (generate_xing_header):
7090         Remove accidentially leftover debug printf.
7091
7092 2008-01-14  Sebastian Dröge  <slomo@circular-chaos.org>
7093
7094         * gst/xingheader/gstxingmux.c: (has_xing_header),
7095         (generate_xing_header), (gst_xing_mux_chain),
7096         (gst_xing_mux_sink_event):
7097         Choose smallest possible frame size for the Xing header, properly
7098         set the timestamp, duration and offset on the outgoing buffers,
7099         only send NEWSEGMENT events in BYTE format downstream and also
7100         drop VBRI headers if already existing.
7101
7102 2008-01-12  Sebastian Dröge  <slomo@circular-chaos.org>
7103
7104         * gst/xingheader/Makefile.am:
7105         * gst/xingheader/gstxingmux.c: (parse_header), (get_xing_offset),
7106         (has_xing_header), (generate_xing_header),
7107         (gst_xing_mux_base_init), (gst_xing_mux_finalize), (xing_reset),
7108         (gst_xing_mux_init), (gst_xing_mux_chain),
7109         (gst_xing_mux_sink_event), (gst_xing_mux_change_state):
7110         * gst/xingheader/gstxingmux.h:
7111         Major cleanup and rewrite of xingmux with less bugs and new features:
7112         - Handles other layers as 3
7113         - Write TOC
7114
7115 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
7116
7117         * tests/check/elements/rganalysis.c: (test_buffer_const_float_mono),
7118           (test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
7119           (test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
7120           (test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
7121           (test_buffer_square_int16_stereo):
7122         * tests/check/elements/rglimiter.c: (create_test_buffer):
7123         * tests/check/elements/rgvolume.c: (test_buffer_new):
7124           It's "endianness", not "endianess". Fixes unit tests.
7125
7126 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7127
7128         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
7129         If we find the caps in the cache, use it to parse the clock-rate instead
7130         of returning an error. Fixes a TODO as found by Youness Alaoui.
7131
7132 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7133
7134         Patch by: Youness Alaoui <youness dot alaoui at collabora dot co dot uk>
7135
7136         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_clock_rate):
7137         * gst/rtpmanager/rtpsession.c: (rtp_session_set_callbacks),
7138         (rtp_session_set_process_rtp_callback),
7139         (rtp_session_set_send_rtp_callback),
7140         (rtp_session_set_send_rtcp_callback),
7141         (rtp_session_set_sync_rtcp_callback),
7142         (rtp_session_set_clock_rate_callback),
7143         (rtp_session_set_reconsider_callback), (source_push_rtp),
7144         (source_clock_rate), (rtp_session_process_bye),
7145         (rtp_session_process_rtcp), (rtp_session_send_bye),
7146         (rtp_session_on_timeout):
7147         * gst/rtpmanager/rtpsession.h:
7148         Make it possible to use different user_data for each of the callbacks.
7149         Fixes #508587.
7150
7151 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7152
7153         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code):
7154         Small meaningless cleanup.
7155
7156         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_flush),
7157         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain_forward),
7158         (scan_keyframe), (gst_mpegvideoparse_flush_decode),
7159         (gst_mpegvideoparse_chain_reverse), (gst_mpegvideoparse_chain),
7160         (mpv_parse_sink_event), (gst_mpegvideoparse_change_state):
7161         * gst/mpegvideoparse/mpegvideoparse.h:
7162         Track segment events.
7163         Do the first part of reverse playback by sending data between two
7164         I-frames to the decoder.
7165
7166 2008-01-10  Thijs Vermeir  <thijsvermeir@gmail.com>
7167
7168         * gst/rtpmanager/gstrtpbin.c:
7169         Fix documentation for latest patch
7170
7171 2008-01-10  Thijs Vermeir  <thijsvermeir@gmail.com>
7172
7173         * gst/rtpmanager/gstrtpbin.c:
7174         Allow request_new_pad with name NULL (bug #508515)
7175
7176 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
7177
7178         * autogen.sh:
7179           Add -Wno-portability to the automake parameters to stop warnings
7180           about GNU make extensions being used. We require GNU make in almost
7181           every Makefile anyway.
7182           
7183         * configure.ac:
7184           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
7185           at the same time is required for per target flags.
7186
7187 2008-01-09  Wim Taymans  <wim.taymans@collabora.co.uk>
7188
7189         * gst/rtpmanager/gstrtpsession.c: (create_send_rtp_sink):
7190         Don't set fixed caps, we can basically do everything the upsteam peer
7191         pad can renegotiate to. Fixes #507940.
7192
7193 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
7194
7195         * Makefile.am:
7196           Include lcov.mak to allow building coverage reports. Add top-level
7197           check targets similar to other gst packages.
7198
7199 2008-01-06  David Schleef  <ds@schleef.org>
7200
7201         * ext/directfb/Makefile.am:
7202           Add GST_CFLAGS.  Otherwise we don't get -Wall -Werror.
7203         * ext/directfb/dfbvideosink.c:
7204           Getting tired of directfb's chatter.  Quiet it.
7205
7206 2008-01-06  David Schleef  <ds@schleef.org>
7207
7208         Patch by: Sean D'Epagnier <sean@depagnier.com>
7209
7210         * configure.ac:
7211         * sys/Makefile.am:
7212         * sys/fbdev/Makefile.am:
7213         * sys/fbdev/gstfbdevsink.c:
7214         * sys/fbdev/gstfbdevsink.h:
7215           Add fbdev-based video sink.  Linux-only.  See bug #506549.
7216
7217 2008-01-06  Sebastian Dröge  <slomo@circular-chaos.org>
7218
7219         * configure.ac:
7220         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
7221         * tests/check/pipelines/gio.c: (free_input), (GST_START_TEST):
7222         Update to GMemoryInputStream API changes in GLib SVN and require
7223         gio-2.0 >= 2.15.1 for this. Fixes bug #507584.
7224         We can also report the duration for every GSeekable, not only
7225         GFileInputStream and GMemoryInputStream.
7226
7227 2008-01-05  David Schleef  <ds@schleef.org>
7228
7229         * sys/glsink/glimagesink.c:
7230         * sys/glsink/glimagesink.h:
7231         * sys/glsink/gstglbuffer.h:
7232         * sys/glsink/gstgldisplay.c:
7233         * sys/glsink/gstgldisplay.h:
7234         * sys/glsink/gstglupload.c:
7235           Handle xoverlay exposes correctly.  This means glimagesink works
7236           correctly most of the time in totem (fullscreening being an
7237           execption).  Doesn't handle expose events directly to the GL
7238           window.
7239
7240 2008-01-05  David Schleef  <ds@schleef.org>
7241
7242         * sys/glsink/glextensions.c:
7243         * sys/glsink/glextensions.h:
7244         * sys/glsink/glimagesink.c:
7245         * sys/glsink/glimagesink.h:
7246         * sys/glsink/gstgldisplay.c:
7247         * sys/glsink/gstgldisplay.h:
7248         * sys/glsink/gstopengl.c:
7249           Reenable video/x-raw-rgb and x-raw-yuv for glimagesink.  Enable
7250           vblank synchronization.  Remove unused code.
7251
7252 2008-01-04  Wim Taymans  <wim.taymans@collabora.co.uk>
7253
7254         * gst/rtpmanager/gstrtpjitterbuffer.c:
7255         (gst_rtp_jitter_buffer_loop):
7256         Don't unref the popped buffer when we don't have ownership.
7257         Fixes #507020.
7258
7259 2008-01-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7260
7261         * gst/mpegtsparse/Makefile.am:
7262         * gst/mpegtsparse/flutspatinfo.c:
7263         * gst/mpegtsparse/flutspatinfo.h:
7264         * gst/mpegtsparse/flutspmtinfo.c:
7265         * gst/mpegtsparse/flutspmtinfo.h:
7266         * gst/mpegtsparse/flutspmtstreaminfo.c:
7267         * gst/mpegtsparse/flutspmtstreaminfo.h:
7268         Remove no longer needed files.
7269
7270 2008-01-02  David Schleef  <ds@schleef.org>
7271
7272         * tests/check/Makefile.am:
7273           Disable vcdsrc in states test because it takes too much time
7274           to get to PLAYING if it can find a device.
7275
7276 2007-12-31  David Schleef  <ds@schleef.org>
7277
7278         * ext/musicbrainz/gsttrm.c:
7279           Don't emit signiture when going to READY, because it might
7280           not be ready.
7281         * ext/nas/nassink.c:
7282           Remove useless call that sleeps for 5 seconds.  Yup, it calls
7283           sleep(1) 5 times.  Go NAS.
7284         * gst/librfb/gstrfbsrc.c:
7285         * gst/librfb/rfbdecoder.c:
7286           Initialize our debug categories properly.
7287         * gst/rawparse/gstrawparse.c:
7288           Don't register element details for a non-element.  Be much more
7289           rude when subclass doesn't set a pad template (assert!).  Don't
7290           unref the pad template; we don't own it.
7291         * gst/videosignal/gstvideoanalyse.c:
7292           Initialize debug category.
7293         * tests/check/Makefile.am:
7294           Ignore nassink element in tests because it has unavoidable
7295           long timeouts.
7296
7297 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
7298
7299         * gst/rtpmanager/gstrtpssrcdemux.c:
7300         (gst_rtp_ssrc_demux_change_state):
7301         Don't clean up pads when going to PAUSED.
7302
7303 2007-12-30  David Schleef  <ds@schleef.org>
7304
7305         * configure.ac:
7306         * sys/glsink/Makefile.am:
7307           Switch to using pkgconfig to detect libGL.  Since we use
7308           recent features added to Mesa, there's no point in adding
7309           a check for pre-pkgconfig versions.
7310
7311 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7312
7313         * ext/ladspa/gstladspa.c: (gst_ladspa_get_property):
7314         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_show_frame):
7315         * gst/mve/gstmvemux.c: (gst_mve_mux_request_new_pad):
7316         * sys/dvb/dvbbasebin.c: (dvb_base_bin_class_init):
7317         Fix 'xyz may be used uninitialized' compiler warnings caused
7318         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
7319         abort() in any case but properly report the error.
7320
7321 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
7322
7323         * configure.ac:
7324         * ext/gio/gstgio.c:
7325         * ext/gio/gstgio.h:
7326         * ext/gio/gstgiobasesink.h:
7327         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_get_size):
7328         * ext/gio/gstgiobasesrc.h:
7329         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
7330         * ext/gio/gstgiosink.h:
7331         * ext/gio/gstgiosrc.h:
7332         * ext/gio/gstgiostreamsink.h:
7333         * ext/gio/gstgiostreamsrc.h:
7334         * tests/check/pipelines/gio.c:
7335         Update to latest API changes in GLib/GIO and require at least
7336         gio-2.0 2.15.0 for this.
7337         
7338         * ext/gio/Makefile.am:
7339         Add GST_PLUGIN_LDFLAGS to LDFLAGS.
7340
7341 2007-12-28  David Schleef  <ds@schleef.org>
7342
7343         * configure.ac:
7344         * sys/glsink/glextensions.c:
7345         * sys/glsink/glextensions.h:
7346         * sys/glsink/glimagesink.c:
7347         * sys/glsink/glimagesink.h:
7348         * sys/glsink/gstglbuffer.c:
7349         * sys/glsink/gstglbuffer.h:
7350         * sys/glsink/gstglconvert.c:
7351         * sys/glsink/gstgldisplay.c:
7352         * sys/glsink/gstgldisplay.h:
7353         * sys/glsink/gstgldownload.c:
7354         * sys/glsink/gstglfilter.c:
7355         * sys/glsink/gstglfilter.h:
7356         * sys/glsink/gstglfilterexample.c:
7357         * sys/glsink/gstgltestsrc.c:
7358         * sys/glsink/gstglupload.c:
7359           Major cleanup of code.  Convert glupload to BaseTransform.
7360           Handle caps negotiation mostly correctly.  Reenable in build.
7361
7362 2007-12-28  Tim-Philipp Müller  <tim at centricular dot net>
7363
7364         * ext/soup/Makefile.am:
7365         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_get_property),
7366           (gst_souphttp_src_unicodify), (soup_got_headers):
7367           Use gst_tag_freeform_string_to_utf8() and post radio station
7368           info as tags on the bus.
7369
7370 2007-12-26  David Schleef  <ds@schleef.org>
7371
7372         * sys/glsink/glimagesink.c:
7373         * sys/glsink/gstglupload.c:
7374           Change glimagesink over to using GL buffers.  This breaks
7375           glimagesink for normal operation, but should be fixed soon.
7376
7377 2007-12-26  David Schleef  <ds@schleef.org>
7378
7379         * sys/glsink/gltestsrc.c:
7380         * sys/glsink/gstglbuffer.c:
7381         * sys/glsink/gstglbuffer.h:
7382         * sys/glsink/gstgldownload.c:
7383         * sys/glsink/gstglfilter.c:
7384         * sys/glsink/gstglfilterexample.c:
7385         * sys/glsink/gstgltestsrc.c:
7386         * sys/glsink/gstglupload.c:
7387           Convert gldownload to BaseTransform.  Make glfilterexample
7388           visually interesting.  Add support for various formats to
7389           downloading.  Fix a few places where we leak GL state to
7390           other elements (bad, but hard to prevent).
7391
7392 2007-12-26  David Schleef  <ds@schleef.org>
7393
7394         * sys/glsink/BUGS:
7395         * sys/glsink/Makefile.am:
7396         * sys/glsink/gstglbuffer.c:
7397         * sys/glsink/gstglbuffer.h:
7398         * sys/glsink/gstglconvert.c:
7399         * sys/glsink/gstgldisplay.c:
7400         * sys/glsink/gstglfilter.c:
7401         * sys/glsink/gstglfilter.h:
7402         * sys/glsink/gstglfilterexample.c:
7403         * sys/glsink/gstgltestsrc.c:
7404         * sys/glsink/gstglupload.c:
7405         * sys/glsink/gstopengl.c:
7406           Remove code that handles non-texture buffers.  Add a
7407           GstGLBufferFormat type that corresponds to how to use the
7408           texture, not the original video format.  Convert gstflfilter.c
7409           into a base class, add glfilterexample and glconvert elements.
7410         * sys/glsink/color_matrix.c:
7411           Minor ramblings about color conversion matrices.
7412
7413 2007-12-24  David Schleef  <ds@schleef.org>
7414
7415         * sys/glsink/Makefile.am:
7416         * sys/glsink/gltestsrc.c:
7417         * sys/glsink/gltestsrc.h:
7418         * sys/glsink/gstgldisplay.c:
7419         * sys/glsink/gstgldownload.c:
7420         * sys/glsink/gstglfilter.c:
7421         * sys/glsink/gstgltestsrc.c:
7422         * sys/glsink/gstgltestsrc.h:
7423         * sys/glsink/gstglupload.c:
7424         * sys/glsink/gstopengl.c:
7425           Add gltestsrc element, a duplicate of videotestsrc that uses
7426           GL rendering to create images.  More cleanup.
7427
7428 2007-12-24  David Schleef  <ds@schleef.org>
7429
7430         * sys/glsink/gstglbuffer.c:
7431         * sys/glsink/gstgldownload.c:
7432         * sys/glsink/gstglfilter.c:
7433           Clean up code.  Fix a few leaks.
7434
7435 2007-12-24  David Schleef  <ds@schleef.org>
7436
7437         * sys/glsink/Makefile.am:
7438         * sys/glsink/glimagesink.h:
7439         * sys/glsink/glvideo.c:
7440         * sys/glsink/glvideo.h:
7441         * sys/glsink/gstglbuffer.c:
7442         * sys/glsink/gstglbuffer.h:
7443         * sys/glsink/gstgldisplay.c:
7444         * sys/glsink/gstgldisplay.h:
7445           Rename glvideo.[ch] to gstgldisplay.[ch].
7446
7447 2007-12-24  David Schleef  <ds@schleef.org>
7448
7449         * sys/glsink/glimagesink.c:
7450         * sys/glsink/glimagesink.h:
7451         * sys/glsink/glvideo.c:
7452         * sys/glsink/glvideo.h:
7453         * sys/glsink/gstglbuffer.c:
7454         * sys/glsink/gstglbuffer.h:
7455         * sys/glsink/gstgldownload.c:
7456         * sys/glsink/gstglfilter.c:
7457         * sys/glsink/gstglupload.c:
7458           Rewrite a bunch of code to use textures as the intermediate
7459           instead of renderbuffers.  upload, download, filtering all
7460           work.
7461
7462 2007-12-23  David Schleef  <ds@schleef.org>
7463
7464         * gst/videoparse/Makefile.am:
7465         * gst/videoparse/README:
7466         * gst/videoparse/gstvideoparse.c:
7467           Remove videoparse element, because it was moved to gst/rawparse/
7468
7469 2007-12-23  Sebastian Dröge  <slomo@circular-chaos.org>
7470
7471         * gst/rawparse/gstrawparse.c: (gst_raw_parse_src_event):
7472         Always seek on frame boundaries, will produce nothing useful
7473         otherwise.
7474
7475 2007-12-23  Sebastian Dröge  <slomo@circular-chaos.org>
7476
7477         * configure.ac:
7478         * gst/rawparse/Makefile.am:
7479         * gst/rawparse/README:
7480         * gst/rawparse/gstaudioparse.c: (gst_audio_parse_format_get_type),
7481         (gst_audio_parse_endianness_get_type), (gst_audio_parse_base_init),
7482         (gst_audio_parse_class_init), (gst_audio_parse_init),
7483         (gst_audio_parse_set_property), (gst_audio_parse_get_property),
7484         (gst_audio_parse_update_frame_size), (gst_audio_parse_get_caps):
7485         * gst/rawparse/gstaudioparse.h:
7486         * gst/rawparse/gstrawparse.c: (gst_raw_parse_base_init),
7487         (gst_raw_parse_class_init), (gst_raw_parse_init),
7488         (gst_raw_parse_dispose),
7489         (gst_raw_parse_class_set_src_pad_template),
7490         (gst_raw_parse_class_set_multiple_frames_per_buffer),
7491         (gst_raw_parse_reset), (gst_raw_parse_chain),
7492         (gst_raw_parse_convert), (gst_raw_parse_sink_event),
7493         (gst_raw_parse_src_event), (gst_raw_parse_src_query_type),
7494         (gst_raw_parse_src_query), (gst_raw_parse_set_framesize),
7495         (gst_raw_parse_set_fps), (gst_raw_parse_get_fps),
7496         (gst_raw_parse_is_negotiated):
7497         * gst/rawparse/gstrawparse.h:
7498         * gst/rawparse/gstvideoparse.c: (gst_video_parse_format_get_type),
7499         (gst_video_parse_endianness_get_type), (gst_video_parse_base_init),
7500         (gst_video_parse_class_init), (gst_video_parse_init),
7501         (gst_video_parse_set_property), (gst_video_parse_get_property),
7502         (gst_video_parse_format_to_fourcc),
7503         (gst_video_parse_update_frame_size), (gst_video_parse_get_caps):
7504         * gst/rawparse/gstvideoparse.h:
7505         * gst/rawparse/plugin.c: (plugin_init):
7506         Add new plugin rawparse that contains a base class for raw data
7507         parsers and the two elements audioparse and videoparse that can
7508         be used to parse raw audio and video. These are inspired by the
7509         old videoparse element which the new rawparse plugin deprecates.
7510
7511 2007-12-21  David Schleef  <ds@schleef.org>
7512
7513         * sys/glsink/glextensions.c:
7514         * sys/glsink/glextensions.h:
7515         * sys/glsink/glvideo.c:
7516         * sys/glsink/glvideo.h:
7517         * sys/glsink/gstglbuffer.c:
7518         * sys/glsink/gstgldownload.c:
7519         * sys/glsink/gstglupload.c:
7520           A careful read of the documentation reveals that I can't use
7521           renderbuffers as textures.  Duh.  Checkpoint because I'm about
7522           to rewrite a bunch of code.
7523
7524 2007-12-21  Edgard Lima,,,,  <edgard.lima@indt.org.br>
7525
7526         * ext/metadata/TODO:
7527         * ext/metadata/gstbasemetadata.c:
7528         * ext/metadata/gstbasemetadata.h:
7529         * ext/metadata/metadata.h:
7530         * ext/metadata/metadataiptc.c:
7531         * ext/metadata/metadatamuxjpeg.c:
7532         * ext/metadata/metadataparsejpeg.c:
7533         * ext/metadata/metadataparseutil.c:
7534           Some IPTC tags mapped.
7535
7536 2007-12-21  Edgard Lima  <edgard.lima@indt.org.br>
7537
7538         * ext/metadata/Makefile.am:
7539         * ext/metadata/TODO:
7540         * ext/metadata/gstbasemetadata.c:
7541         * ext/metadata/gstbasemetadata.h:
7542         * ext/metadata/gstmetadatacommon.c:
7543         * ext/metadata/gstmetadatacommon.h:
7544         * ext/metadata/metadata.c:
7545         * ext/metadata/metadata.h:
7546           Removed gstmetadatacommon.
7547
7548 2007-12-20  David Schleef  <ds@schleef.org>
7549
7550         * sys/glsink/Makefile.am:
7551         * sys/glsink/glextensions.c:
7552         * sys/glsink/glextensions.h:
7553         * sys/glsink/glimagesink.c:
7554         * sys/glsink/glimagesink.h:
7555         * sys/glsink/glvideo.c:
7556         * sys/glsink/glvideo.h:
7557         * sys/glsink/gstglbuffer.c:
7558         * sys/glsink/gstglbuffer.h:
7559         * sys/glsink/gstgldownload.c:
7560         * sys/glsink/gstglfilter.c:
7561         * sys/glsink/gstglupload.c:
7562         * sys/glsink/gstopengl.c:
7563           Switch to using framebuffer_objects instead of GLXPixmaps,
7564           because that's what my driver supports.  Remove GLDrawable,
7565           since GstGLDisplay now has a default drawable and context.
7566
7567 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
7568
7569         * gst/equalizer/.cvsignore:
7570         * gst/switch/.cvsignore:
7571           Ignore more.
7572
7573 2007-12-19  Edgard Lima  <edgard.lima@indt.org.br>
7574
7575         * ext/metadata/Makefile.am:
7576         * ext/metadata/TODO:
7577         * ext/metadata/gstbasemetadata.c:
7578         * ext/metadata/gstbasemetadata.h:
7579         * ext/metadata/gstmetadatacommon.c:
7580         * ext/metadata/gstmetadatacommon.h:
7581         * ext/metadata/gstmetadatademux.c:
7582         * ext/metadata/gstmetadatademux.h:
7583         * ext/metadata/gstmetadatamux.c:
7584         * ext/metadata/gstmetadatamux.h:
7585         * ext/metadata/metadata.c:
7586         * ext/metadata/metadata.h:
7587         * ext/metadata/metadataexif.c:
7588         * ext/metadata/metadataparsejpeg.c:
7589         * ext/metadata/metadataparsepng.c:
7590         * ext/metadata/metadatatags.c:
7591         * ext/metadata/metadatatags.h:
7592         * ext/metadata/test/metadata_editor.c:
7593           New base class for metadata elements.
7594
7595 2007-12-18  Andy Wingo  <wingo@pobox.com>
7596
7597         * gst/switch/gstswitch-marshal.list:
7598         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7599         * gst/switch/gstswitch.c (enum, gst_selector_pad_class_init)
7600         (gst_selector_pad_get_property)
7601         (gst_selector_pad_get_running_time)
7602         (gst_stream_selector_class_init, gst_segment_get_timestamp)
7603         (gst_segment_set_stop, gst_segment_set_start)
7604         (gst_stream_selector_set_active_pad, gst_stream_selector_block)
7605         (gst_stream_selector_push_pending_stop)
7606         (gst_stream_selector_switch): Change so that the signals and
7607         properties deal in running time, not buffer time. Document the
7608         signals more. Change uint64 in API to int64, to reflect what's in
7609         GstSegment.
7610
7611 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
7612
7613         * Makefile.am:
7614           Include common/win32.mak for CRLF check of win32 project
7615           files (see #393626).
7616
7617         * configure.ac:
7618           Bump requirements to -base CVS for libgstvideo additions in
7619           glimagesink. Disable glimagesink until the missing files get
7620           checked in.
7621
7622 2007-12-17  David Schleef  <ds@schleef.org>
7623
7624         * sys/glsink/Makefile.am:
7625         * sys/glsink/glimagesink.c:
7626         * sys/glsink/glimagesink.h:
7627         * sys/glsink/glvideo.c:
7628         * sys/glsink/glvideo.h:
7629         * sys/glsink/gstopengl.c:
7630         * sys/glsink/gstglupload.c:
7631           Use new GstVideoFormat checked into -base.  Add new glupload
7632           element to upload raw video into a GLXPixbuf.  Untested.  Will
7633           likely crash your motorcycle if you try it.
7634         * sys/glsink/gstvideo-common.c:
7635         * sys/glsink/gstvideo-common.h:
7636           Remove.
7637
7638 2007-12-17  David Schleef  <ds@schleef.org>
7639
7640         * gst/multifile/gstmultifilesrc.c:
7641         * gst/multifile/gstmultifilesrc.h:
7642           When subsequent files are read, if the file doesn't exist, send
7643           an EOS instead of causing an error.
7644
7645 2007-12-17  Andy Wingo  <wingo@pobox.com>
7646
7647         * gst/switch/gstswitch.c (gst_selector_pad_chain): Return OK when
7648         a buffer is ignored, not NOT_LINKED. No sense in making a source
7649         element error out; at least fdsrc considers NOT_LINKED to be a
7650         fatal error. Patch 11/12. There is no patch 12/12. Foo.
7651
7652         * gst/switch/gstswitch-marshal.list:
7653         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7654         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7655         (gst_stream_selector_block): Make the block() signal return the
7656         last stop time of the active pad. Patch 10/12.
7657
7658         * gst/switch/gstswitch.c (gst_selector_pad_get_property)
7659         (gst_selector_pad_class_init, gst_stream_selector_class_init)
7660         (gst_stream_selector_get_property): Expose 'last-stop-time' as a
7661         pad property, not an element property.
7662         (gst_selector_pad_chain): Mark the last_stop time as timestamp +
7663         duration, not timestamp. Patch 9/12.
7664
7665         * gst/switch/gstswitch.c (gst_stream_selector_change_state)
7666         (gst_stream_selector_block, gst_stream_selector_switch): Use the
7667         cond mechanism instead of blocked pads. Patch 8/12.
7668
7669         * gst/switch/gstswitch.h (struct _GstStreamSelector): 
7670
7671         * gst/switch/gstswitch.c (gst_stream_selector_wait)
7672         (gst_selector_pad_chain, gst_stream_selector_init)
7673         (gst_stream_selector_dispose): Add infrastructure for new blocking
7674         mechanism that does not use gst_pad_set_blocked, which does not
7675         work on sink pads. Patch 7/12.
7676
7677         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7678         (gst_stream_selector_get_property): Add last-stop-time readable
7679         property. Patch 6/12.
7680
7681         * gst/switch/gstswitch.h (struct _GstStreamSelector): Add some
7682         state variables.
7683
7684         * gst/switch/gstswitch.c (gst_stream_selector_push_pending_stop)
7685         (gst_selector_pad_chain): Push any pending stop event.
7686         (gst_stream_selector_set_active_pad)
7687         (gst_stream_selector_set_property): Factor out setting the active
7688         pad to a function. Close the segment of the previous active pad if
7689         told to do so via a stop_time != GST_CLOCK_TIME_NONE.
7690         (gst_stream_selector_switch): Implement switch vmethod. Patch 5/12.
7691
7692         * gst/switch/gstswitch.c (gst_stream_selector_block): Implement
7693         the block() signal. This implementation will be replaced in future
7694         patches, however. Patch 4/12.
7695
7696         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): Fix
7697         vmethod prototypes.
7698
7699         * gst/switch/gstswitch.c (gst_stream_selector_class_init)
7700         (gst_stream_selector_block, gst_stream_selector_switch): Add empty
7701         vmethod definitions. Patch 3/12.
7702
7703         * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): 
7704         * gst/switch/gstswitch.c (gst_stream_selector_class_init): Add
7705         `block' and `switch' signals.
7706
7707         * gst/switch/Makefile.am: 
7708         * gst/switch/gstswitch-marshal.list: Add foo to generate a
7709         marshaller for the `switch' signal. Patch 2/12.
7710
7711         * gst/switch/gstswitch.h: 
7712         * gst/switch/gstswitch.c: Replace with files from
7713         gststreamselector.[ch], registered as the "switch" plugin, with
7714         "GstSwitch" types. Patch 1/12.
7715
7716 2007-12-17  Edgard Lima  <edgard.lima@indt.org.br>
7717
7718         * ext/metadata/TODO:
7719         * ext/metadata/gstmetadatademux.c:
7720         * ext/metadata/metadata.c:
7721         * ext/metadata/metadata.h:
7722         * ext/metadata/metadataparsejpeg.c:
7723         * ext/metadata/metadataparsejpeg.h:
7724         * ext/metadata/metadataparsepng.c:
7725         * ext/metadata/metadataparsepng.h:
7726         * ext/metadata/test/MetadataEditorMain.glade:
7727         * ext/metadata/test/metadata_editor.c:
7728           Added "parse-only" property to metadatademux.
7729
7730 2007-12-16  David Schleef  <ds@schleef.org>
7731
7732         * sys/glsink/glimagesink.c:
7733         * sys/glsink/glimagesink.h:
7734         * sys/glsink/glvideo.c:
7735         * sys/glsink/glvideo.h:
7736           Rename GLVideo* to GstGL*.
7737
7738 2007-12-15  David Schleef  <ds@schleef.org>
7739
7740         * sys/glsink/Makefile.am:
7741         * sys/glsink/glextensions.c:
7742         * sys/glsink/glextensions.h:
7743         * sys/glsink/glvideo.c:
7744           Add vblank synchronization.  Isn't really working on my
7745           driver. :(
7746
7747 2007-12-15  David Schleef  <ds@schleef.org>
7748
7749         * sys/glsink/Makefile.am:
7750         * sys/glsink/glimagesink.c:
7751         * sys/glsink/glvideo.c:
7752         * sys/glsink/glvideo.h:
7753         * sys/glsink/gstvideo-common.c:
7754         * sys/glsink/gstvideo-common.h:
7755           Add support for xRGB, xBGR, and AYUV.  Re-add support for
7756           power-of-2 textures.
7757
7758 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7759
7760         * gst/videoparse/gstvideoparse.c: (gst_video_parse_dispose),
7761         (gst_video_parse_sink_event):
7762         Free the adapter on dispose and correctly reset on newsegment events.
7763
7764 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7765
7766         * gst/videoparse/gstvideoparse.c: (gst_video_parse_sink_event),
7767         (gst_video_parse_src_event), (gst_video_parse_src_query):
7768         Improve duration query by first asking upstream and if it can't handle
7769         the query try to get the duration in bytes from upstream and convert.
7770         For seeks, try if upstream handles this already first and do our
7771         conversion to byte format only if it doesn't and if we get a
7772         newsegment event in time format keep it and only do our conversions
7773         if the event has another format.
7774
7775 2007-12-15  Sebastian Dröge  <slomo@circular-chaos.org>
7776
7777         * gst/videoparse/gstvideoparse.c:
7778         (gst_video_parse_format_get_type),
7779         (gst_video_parse_endianness_get_type),
7780         (gst_video_parse_class_init), (gst_video_parse_init),
7781         (gst_video_parse_set_property), (gst_video_parse_get_property),
7782         (gst_video_parse_format_to_fourcc),
7783         (gst_video_parse_update_block_size), (gst_video_parse_chain),
7784         (gst_video_parse_sink_event):
7785         Add support for video/x-raw-rgb and video/x-raw-gray. Also send
7786         downstream elements downstream, not upstream.
7787
7788 2007-12-14  David Schleef  <ds@schleef.org>
7789
7790         * sys/glsink/gstvideo-common.c:
7791         * sys/glsink/gstvideo-common.h:
7792           Pull together some common raw video functions into one location.
7793           This should eventually move to -base.
7794         * sys/glsink/Makefile.am:
7795         * sys/glsink/glimagesink.c:
7796         * sys/glsink/glimagesink.h:
7797         * sys/glsink/glvideo.c:
7798         * sys/glsink/glvideo.h:
7799         * sys/glsink/gstopengl.c:
7800           Use the new video-common.h stuff.  Readd support for RGB video.
7801
7802 2007-12-14  Edgard Lima  <edgard.lima@indt.org.br>
7803
7804         * ext/metadata/Makefile.am:
7805         * ext/metadata/TODO:
7806         * ext/metadata/gstmetadata.c:
7807         * ext/metadata/gstmetadatacommon.c:
7808         * ext/metadata/gstmetadatacommon.h:
7809         * ext/metadata/gstmetadatademux.c:
7810         * ext/metadata/gstmetadatademux.h:
7811         * ext/metadata/gstmetadatamux.c:
7812         * ext/metadata/gstmetadatamux.h:
7813         * ext/metadata/gstmetadataparse.c:
7814         * ext/metadata/gstmetadataparse.h:
7815         * ext/metadata/metadataexif.c:
7816         * ext/metadata/metadatatags.c:
7817         * ext/metadata/test/metadata_editor.c:
7818           Added new module for common functions. Using GST_TYPE_FRACTION for
7819           Exif (S)Rational types.
7820
7821 2007-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7822
7823         * gst/mpegtsparse/mpegtspacketizer.c:
7824         * gst/mpegtsparse/mpegtspacketizer.h:
7825         Hash streams by pid again. Add a linked list inside each
7826         stream with a list of sub_tables. Fix multiple sections
7827         as it was borked with my last commit.
7828
7829 2007-12-14  Christian Schaller <christian.schaller@collabora.co.uk>
7830
7831         * sys/glsink/Makefile.am: add glvideo.h
7832         * gst/speexresample/Makefile.am: add speex_resampler_wrapper.h
7833         * gst-plugins-bad.spec.in: add latest plugins
7834
7835 2007-12-13  Edgard Lima  <edgard.lima@indt.org.br>
7836
7837         * ext/metadata/TODO:
7838         * ext/metadata/gstmetadatamux.c:
7839         * ext/metadata/gstmetadataparse.c:
7840         * ext/metadata/metadata.c:
7841         * ext/metadata/metadata.h:
7842         * ext/metadata/metadataiptc.c:
7843         * ext/metadata/metadatamuxjpeg.c:
7844         * ext/metadata/metadatamuxjpeg.h:
7845         * ext/metadata/metadatamuxpng.c:
7846         * ext/metadata/metadatamuxpng.h:
7847         * ext/metadata/metadataparsejpeg.c:
7848         * ext/metadata/metadataparsejpeg.h:
7849         * ext/metadata/metadataparsepng.c:
7850         * ext/metadata/metadataparsepng.h:
7851         * ext/metadata/metadataparseutil.c:
7852         * ext/metadata/metadataparseutil.h:
7853         * ext/metadata/metadatatypes.h:
7854         * ext/metadata/metadataxmp.c:
7855           Code documentation.
7856
7857 2007-12-13  Edgard Lima  <edgard.lima@indt.org.br>
7858
7859         * configure.ac:
7860         * ext/metadata/Makefile.am:
7861         * ext/metadata/gstmetadatamux.c:
7862         * ext/metadata/gstmetadataparse.c:
7863         * ext/metadata/metadataexif.c:
7864         * ext/metadata/metadatatags.c:
7865         * ext/metadata/test/Makefile:
7866         * ext/metadata/test/MetadataEditorMain.glade:
7867         * ext/metadata/test/metadata_editor.c:
7868           Added a test application. Added some EXIF tags. Fixed a muxer bug.
7869
7870 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7871
7872         * gst/videoparse/gstvideoparse.c: (gst_video_parse_init),
7873           (gst_video_parse_src_event), (gst_video_parse_src_query_type):
7874           Implement a query type function for the src pad, implement seeking
7875           and use ANY caps for the sink pad as the element doesn't care what
7876           caps the input has and everything is handled via properties.
7877
7878 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7879
7880         * gst/videoparse/gstvideoparse.c: (gst_video_parse_convert),
7881           (gst_video_parse_sink_event):
7882           Handle -1 values for the CONVERT query too.
7883
7884 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7885
7886         * gst/videoparse/gstvideoparse.c: (gst_video_parse_sink_event):
7887           Add YV12 to the pad templates as it is supported too and allow
7888           -1 as stop position for NEWSEGMENT events.
7889
7890 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
7891
7892         * gst/videoparse/Makefile.am:
7893           Add $(GST_PLUGINS_BASE_CFLAGS) to CFLAGS to fix the build.
7894
7895         * gst/videoparse/gstvideoparse.c: (gst_video_parse_init),
7896           (gst_video_parse_set_property), (gst_video_parse_get_property):
7897           Use g_value_[sg]et_enum() for enum properties, g_value_[sg]et_int()
7898           gives a g_critical().
7899
7900 2007-12-12  David Schleef  <ds@schleef.org>
7901
7902         * gst/videoparse/README:
7903         * gst/videoparse/gstvideoparse.c:
7904           Add a bunch of features: handle format specification, handle
7905           queries and conversion.  Works much like a normal parser now.
7906
7907 2007-12-12  Wim Taymans  <wim.taymans@collabora.co.uk>
7908
7909         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_finalize),
7910         (gst_rtp_pt_demux_setup), (gst_rtp_pt_demux_release),
7911         (gst_rtp_pt_demux_change_state):
7912         * gst/rtpmanager/gstrtpssrcdemux.c: (gst_rtp_ssrc_demux_reset),
7913         (gst_rtp_ssrc_demux_dispose), (gst_rtp_ssrc_demux_src_query),
7914         (gst_rtp_ssrc_demux_change_state):
7915         Clean up the dynamic pads when going to READY.
7916
7917 2007-12-12  Wim Taymans  <wim.taymans@collabora.co.uk>
7918
7919         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_finalize),
7920         (gst_rtp_bin_set_sdes_string), (gst_rtp_bin_get_sdes_string),
7921         (gst_rtp_bin_handle_message):
7922         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize),
7923         (rtp_session_send_bye):
7924         * gst/rtpmanager/rtpsource.c: (rtp_source_finalize):
7925         Fix some leaks.
7926
7927 2007-12-12  Sebastian Dröge  <slomo@circular-chaos.org>
7928
7929         * ext/dts/gstdtsdec.c: (gst_dtsdec_init),
7930           (gst_dtsdec_sink_setcaps), (gst_dtsdec_chain_raw),
7931           (gst_dtsdec_chain):
7932         * ext/dts/gstdtsdec.h:
7933           Add support for "audio/x-private1-dts" as used by flupsparse. Most
7934           changes adapted from a52dec.
7935
7936 2007-12-11  David Schleef  <ds@schleef.org>
7937
7938         * sys/glsink/Makefile.am:
7939         * sys/glsink/glimagesink.c:
7940         * sys/glsink/glvideo.c:
7941         * sys/glsink/glvideo.h:
7942           Split out gl-related code into a separate file with a
7943           sensible API.  Major cleanup.  Still crashes occasionally
7944           due to different threads touching bits at the same time.
7945
7946 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7947
7948         Patch by: Wouter Cloetens <wouter at mind dot be>
7949
7950         * ext/soup/gstsouphttpsrc.c: (_do_init),
7951         (gst_souphttp_src_class_init), (gst_souphttp_src_init),
7952         (gst_souphttp_src_dispose), (gst_souphttp_src_set_property),
7953         (gst_souphttp_src_get_property), (unicodify),
7954         (gst_souphttp_src_unicodify), (gst_souphttp_src_create),
7955         (gst_souphttp_src_start), (gst_souphttp_src_stop),
7956         (gst_souphttp_src_unlock), (gst_souphttp_src_unlock_stop),
7957         (gst_souphttp_src_get_size), (gst_souphttp_src_is_seekable),
7958         (soup_got_headers), (soup_got_body), (soup_finished),
7959         (soup_got_chunk), (soup_response), (soup_parse_status),
7960         (gst_souphttp_src_uri_get_type),
7961         (gst_souphttp_src_uri_get_protocols),
7962         (gst_souphttp_src_uri_get_uri), (gst_souphttp_src_uri_set_uri),
7963         (gst_souphttp_src_uri_handler_init):
7964         * ext/soup/gstsouphttpsrc.h:
7965         Do not try to unpause I/O in the "queued" state.
7966         Reorganise a bunch of things and cleanups.
7967         Uses G_GUINT64_FORMAT instead of hard-coding %llu.
7968         See #502335.
7969
7970 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
7971
7972         * ext/x264/gstx264enc.c: (gst_x264_enc_set_src_caps):
7973         Fix caps memleak.
7974
7975 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
7976
7977         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
7978           (gst_flv_parse_tag_video):
7979           Don't strdup (and thus leak) codec name strings when passing
7980           them to gst_tag_list_add().
7981
7982 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
7983
7984         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
7985         (gst_rtp_bin_handle_message):
7986         * gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
7987         (on_ssrc_sdes):
7988         Post a message when the SDES infor changes for a source.
7989
7990         * gst/rtpmanager/rtpsession.c:
7991         * gst/rtpmanager/rtpsource.c:
7992         Update some comments.
7993
7994 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
7995
7996         Based on patch by: <mutex at runbox dot com>
7997
7998         * gst/videoparse/gstvideoparse.c: (gst_video_parse_src_query):
7999         Forward the query upstream, the default element event handler does
8000         something different. Fixes #502879.
8001
8002 2007-12-10  Wim Taymans  <wim.taymans@collabora.co.uk>
8003
8004         * gst/rtpmanager/gstrtpbin.c: (on_ssrc_sdes), (create_session),
8005         (gst_rtp_bin_class_init):
8006         * gst/rtpmanager/gstrtpbin.h:
8007         * gst/rtpmanager/gstrtpclient.c:
8008         * gst/rtpmanager/gstrtpclient.h:
8009         * gst/rtpmanager/gstrtpjitterbuffer.h:
8010         * gst/rtpmanager/gstrtpmanager.c:
8011         * gst/rtpmanager/gstrtpptdemux.c:
8012         * gst/rtpmanager/gstrtpptdemux.h:
8013         * gst/rtpmanager/gstrtpsession.c: (on_ssrc_sdes),
8014         (gst_rtp_session_class_init), (gst_rtp_session_init):
8015         * gst/rtpmanager/gstrtpsession.h:
8016         * gst/rtpmanager/gstrtpssrcdemux.c:
8017         * gst/rtpmanager/gstrtpssrcdemux.h:
8018         * gst/rtpmanager/rtpjitterbuffer.c:
8019         * gst/rtpmanager/rtpjitterbuffer.h:
8020         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
8021         (on_ssrc_sdes), (rtp_session_process_sdes):
8022         * gst/rtpmanager/rtpsession.h:
8023         * gst/rtpmanager/rtpsource.c:
8024         * gst/rtpmanager/rtpsource.h:
8025         * gst/rtpmanager/rtpstats.c:
8026         * gst/rtpmanager/rtpstats.h:
8027         Add signal to notify of an SDES change.
8028         Fix object type in the signal callbacks.
8029
8030 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
8031
8032         * gst/rtpmanager/gstrtpbin.c: (create_session),
8033         (gst_rtp_bin_class_init), (gst_rtp_bin_init), (sdes_type_to_name),
8034         (gst_rtp_bin_set_sdes_string), (gst_rtp_bin_get_sdes_string),
8035         (gst_rtp_bin_set_property), (gst_rtp_bin_get_property):
8036         * gst/rtpmanager/gstrtpbin.h:
8037         Expose SDES items as properties and configure the session managers with
8038         them.
8039
8040         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
8041         (rtp_source_set_property):
8042         Fix SSRC property.
8043
8044 2007-12-10  Wim Taymans  <wim.taymans@gmail.com>
8045
8046         * gst/rtpmanager/gstrtpbin.c: (create_session):
8047         * gst/rtpmanager/rtpjitterbuffer.c:
8048         Update comment.
8049
8050         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
8051         (gst_rtp_session_set_property), (gst_rtp_session_get_property):
8052         Define some GObject properties to set SDES and other configuration.
8053
8054         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
8055         (rtp_session_init), (rtp_session_finalize),
8056         (rtp_session_set_property), (rtp_session_get_property),
8057         (on_ssrc_sdes), (rtp_session_set_bandwidth),
8058         (rtp_session_get_bandwidth), (rtp_session_set_rtcp_fraction),
8059         (rtp_session_get_rtcp_fraction), (rtp_session_set_sdes_string),
8060         (rtp_session_get_sdes_string), (obtain_source),
8061         (rtp_session_get_internal_source), (rtp_session_process_sdes),
8062         (rtp_session_send_rtp), (rtp_session_next_timeout), (session_sdes),
8063         (is_rtcp_time):
8064         * gst/rtpmanager/rtpsession.h:
8065         Add signal when new SDES infor has been found for a source.
8066         Create properties for SDES and other info.
8067         Simplify the SDES API.
8068         Add method for getting the internal source object of the session.
8069
8070         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
8071         (rtp_source_finalize), (rtp_source_set_property),
8072         (rtp_source_get_property), (rtp_source_set_callbacks),
8073         (rtp_source_get_ssrc), (rtp_source_set_as_csrc),
8074         (rtp_source_is_as_csrc), (rtp_source_is_active),
8075         (rtp_source_is_validated), (rtp_source_is_sender),
8076         (rtp_source_received_bye), (rtp_source_get_bye_reason),
8077         (rtp_source_set_sdes), (rtp_source_set_sdes_string),
8078         (rtp_source_get_sdes), (rtp_source_get_sdes_string),
8079         (rtp_source_get_new_sr), (rtp_source_get_new_rb):
8080         * gst/rtpmanager/rtpsource.h:
8081         Add GObject properties for various things.
8082         Don't leak the bye reason.
8083
8084 2007-12-09  Edward Hervey  <edward@collabora.co.uk>
8085
8086         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8087         (gst_flv_parse_tag_video):
8088         Fix list of supported and known codecs.
8089         Emit tag with the codec name so it gets properly reported in totem and
8090         other applications.
8091
8092 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
8093
8094         * configure.ac:
8095         Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
8096
8097 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8098
8099         * gst/equalizer/gstiirequalizer.c:
8100         (gst_iir_equalizer_transform_ip):
8101         Fix compilation.
8102
8103 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8104
8105         * gst/equalizer/gstiirequalizer.c:
8106         (gst_iir_equalizer_transform_ip):
8107         Don't process buffers in passthrough mode.
8108
8109 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8110
8111         * gst/filter/gstbpwsinc.c: (bpwsinc_transform):
8112         * gst/filter/gstlpwsinc.c: (lpwsinc_transform):
8113         The transform() methods are not called in passthrough mode so
8114         there's no need for checking if the element is in passthrough mode.
8115
8116 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
8117
8118         * gst/filter/gstbpwsinc.c: (bpwsinc_transform):
8119         * gst/filter/gstlpwsinc.c: (lpwsinc_transform):
8120         Sync the GObject properties with the controller even in passthrough
8121         mode to get consistent property values.
8122
8123 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
8124
8125         * gst/mpegtsparse/mpegtsparse.c: (crc_tab):
8126           Mark crc values table as constant.
8127
8128 2007-12-05  Edgard Lima  <edgard.lima@indt.org.br>
8129
8130         * ext/metadata/metadataexif.c:
8131         * ext/metadata/metadataiptc.c:
8132         * ext/metadata/metadatatags.c:
8133         * ext/metadata/metadatatags.h:
8134         * ext/metadata/metadataxmp.c:
8135           Added some tags to exif parser.
8136
8137 2007-12-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8138
8139         * gst/mpegtsparse/mpegtspacketizer.c:
8140         * gst/mpegtsparse/mpegtsparse.c:
8141         A sub table is identified by the pair table_id and 
8142         sub_table_identifier, not by pid. So hash with that.
8143         * sys/dvb/dvbbasebin.c:
8144         Make sure initial pids are added properly to filter,
8145
8146 2007-12-05  Andy Wingo  <wingo@pobox.com>
8147
8148         * gst/switch/gstswitch.c (gst_switch_set_property): Don't push
8149         buffers from app thread when unsetting `queue-buffers', it's
8150         dangerous and the chain function will do it for us anyway.
8151
8152 2007-12-04  Edgard Lima  <edgard.lima@indt.org.br>
8153
8154         * ext/metadata/metadatamuxjpeg.c: (metadatamux_wrap_chunk),
8155         (metadatamux_jpeg_lazy_update):
8156         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_parse),
8157         (metadataparse_jpeg_reading):
8158           Now compiles even when libiptc is missing.
8159
8160 2007-12-04  Edgard Lima  <edgard.lima@indt.org.br>
8161
8162         * ext/metadata/gstmetadatamux.c:
8163         * ext/metadata/gstmetadatamux.h:
8164         * ext/metadata/gstmetadataparse.c:
8165         * ext/metadata/gstmetadataparse.h:
8166         * ext/metadata/metadata.c:
8167         * ext/metadata/metadata.h:
8168         * ext/metadata/metadatamuxjpeg.c:
8169         * ext/metadata/metadatamuxjpeg.h:
8170         * ext/metadata/metadatamuxpng.c:
8171         * ext/metadata/metadatamuxpng.h:
8172           Fixed element properties and now muxer writes to png also.
8173
8174 2007-12-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8175
8176         * gst/mpegtsparse/Makefile.am:
8177         * gst/mpegtsparse/mpegtspacketizer.c:
8178         * gst/mpegtsparse/mpegtsparse.c:
8179         Remove signals for pat, pmt, nit, eit, sdt. Replace with bus
8180         messages.
8181         * sys/dvb/dvbbasebin.c:
8182         Instead of attaching to signals, use the bus messages.
8183         Also fix up so the dvbsrc starts only outputting the info tables
8184         like PAT, CAT, NIT, SDT, EIT instead of the whole ts.
8185
8186 2007-12-03  Edgard Lima  <edgard.lima@indt.org.br>
8187
8188         * ext/metadata/gstmetadatamux.c:
8189         * ext/metadata/gstmetadatamux.h:
8190         * ext/metadata/metadataexif.c:
8191         * ext/metadata/metadataexif.h:
8192         * ext/metadata/metadataiptc.c:
8193         * ext/metadata/metadataiptc.h:
8194         * ext/metadata/metadatamuxjpeg.c:
8195         * ext/metadata/metadataxmp.c:
8196         * ext/metadata/metadataxmp.h:
8197           Muxer writes (in jpeg only) whole IPTC chunk sent as tag. Muxer
8198           implemets GstTagSetter interface.
8199
8200 2007-12-03  Thijs Vermeir  <thijsvermeir@gmail.com>
8201
8202         * gst/librfb/rfbdecoder.c:
8203                 Should fix the 64-bit build
8204
8205 2007-11-30  Edgard Lima  <edgard.lima@indt.org.br>
8206
8207         * ext/metadata/gstmetadatamux.c:
8208         * ext/metadata/gstmetadatamux.h:
8209         * ext/metadata/gstmetadataparse.c:
8210         * ext/metadata/gstmetadataparse.h:
8211         * ext/metadata/metadataexif.c:
8212         * ext/metadata/metadataexif.h:
8213         * ext/metadata/metadataiptc.c:
8214         * ext/metadata/metadataiptc.h:
8215         * ext/metadata/metadatamuxjpeg.c:
8216         * ext/metadata/metadatamuxpng.c:
8217         * ext/metadata/metadataparsejpeg.c:
8218         * ext/metadata/metadataparsepng.c:
8219         * ext/metadata/metadataxmp.c:
8220         * ext/metadata/metadataxmp.h:
8221           Muxer writes (in jpeg only) whole EXIF and XMP chunks sent as tags.
8222
8223 2007-11-30  Thijs Vermeir  <thijsvermeir@gmail.com>
8224
8225         * gst/librfb/rfbdecoder.c:
8226         * gst/librfb/rfbdecoder.h:
8227                 Add CoRRE encoding
8228
8229 2007-11-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8230
8231         * gst/mpegtsparse/mpegtsparse.c:
8232         CRC check the psi pids. CRC checking code relicenced from MPL.
8233         Thanks Fluendo.
8234
8235 2007-11-30  Edgard Lima  <edgard.lima@indt.org.br>
8236
8237         * ext/metadata/Makefile.am:
8238         * ext/metadata/gstmetadatamux.c:
8239         * ext/metadata/gstmetadatamux.h:
8240         * ext/metadata/gstmetadataparse.c:
8241         * ext/metadata/metadata.c:
8242         * ext/metadata/metadata.h:
8243         * ext/metadata/metadatamuxjpeg.c:
8244         * ext/metadata/metadatamuxjpeg.h:
8245         * ext/metadata/metadatamuxpng.c:
8246         * ext/metadata/metadatamuxpng.h:
8247         * ext/metadata/metadataparsejpeg.c:
8248         * ext/metadata/metadataparsejpeg.h:
8249         * ext/metadata/metadataparsepng.c:
8250         * ext/metadata/metadataparsepng.h:
8251         * ext/metadata/metadatatypes.c:
8252         * ext/metadata/metadatatypes.h:
8253           Fixed get_range bug when injecting and stripping. And mux is almost
8254           done now.
8255
8256 2007-11-30  Thijs Vermeir  <thijsvermeir@gmail.com>
8257
8258         * gst/librfb/rfbdecoder.c:
8259                 Use glib macro for swapping
8260
8261 2007-11-29  Thijs Vermeir  <thijsvermeir@gmail.com>
8262
8263         * gst/librfb/gstrfbsrc.c:
8264         * gst/librfb/rfbdecoder.c:
8265         * gst/librfb/rfbdecoder.h:
8266                 Disable CopyRect encoding by default
8267                 Add RRE encoding
8268
8269 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
8270
8271         Patch by: Wouter Cloetens <wouter at mind dot be>
8272
8273         * configure.ac:
8274         Bump libsoup requirement as libsoup does not support async client
8275         operation prior to version 2.2.104 and it has some leaks.
8276
8277         * ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_class_init),
8278         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
8279         (gst_souphttp_src_set_property), (gst_souphttp_src_create),
8280         (gst_souphttp_src_start), (gst_souphttp_src_stop),
8281         (gst_souphttp_src_unlock), (gst_souphttp_src_unlock_stop),
8282         (gst_souphttp_src_get_size), (soup_got_headers), (soup_got_body),
8283         (soup_finished), (soup_got_chunk), (soup_response),
8284         (soup_session_close):
8285         * ext/soup/gstsouphttpsrc.h:
8286         Implement unlock().
8287         Picks up the size from the Content-Length header and emit a duration
8288         message.
8289         Don't leak the GMainContext object.
8290         Fixes #500099.
8291
8292 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
8293
8294         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_set_caps),
8295         (alsaspdifsink_get_time), (alsaspdifsink_set_params),
8296         (alsaspdifsink_find_pcm_device):
8297         Don't free uninitialized data when we are in error.
8298
8299 2007-11-28  Edgard Lima  <edgard.lima@indt.org.br>
8300
8301         * ext/metadata/gstmetadatamux.c:
8302         * ext/metadata/gstmetadataparse.c:
8303         * ext/metadata/metadataexif.c:
8304         * ext/metadata/metadataexif.h:
8305         * ext/metadata/metadataiptc.c:
8306         * ext/metadata/metadataiptc.h:
8307         * ext/metadata/metadatatags.c:
8308         * ext/metadata/metadatatags.h:
8309         * ext/metadata/metadataxmp.c:
8310         * ext/metadata/metadataxmp.h:
8311           Sending make and model individual tags and muxer now links fine.
8312
8313 2007-11-28  Edgard Lima  <edgard.lima@indt.org.br>
8314
8315         * ext/metadata/Makefile.am:
8316         * ext/metadata/gstmetadata.c:
8317         * ext/metadata/gstmetadatamux.c:
8318         * ext/metadata/gstmetadatamux.h:
8319         * ext/metadata/gstmetadataparse.c:
8320         * ext/metadata/gstmetadataparse.h:
8321         * ext/metadata/metadata.c:
8322         * ext/metadata/metadata.h:
8323         * ext/metadata/metadataexif.c:
8324         * ext/metadata/metadataexif.h:
8325         * ext/metadata/metadataiptc.c:
8326         * ext/metadata/metadataiptc.h:
8327         * ext/metadata/metadataparse.c:
8328         * ext/metadata/metadataparse.h:
8329         * ext/metadata/metadataparseexif.c:
8330         * ext/metadata/metadataparseexif.h:
8331         * ext/metadata/metadataparseiptc.c:
8332         * ext/metadata/metadataparseiptc.h:
8333         * ext/metadata/metadataparsexmp.c:
8334         * ext/metadata/metadataparsexmp.h:
8335         * ext/metadata/metadatatags.c:
8336         * ext/metadata/metadatatags.h:
8337         * ext/metadata/metadataxmp.c:
8338         * ext/metadata/metadataxmp.h:
8339           Small fixes in get_range and better structure for generic muxer and
8340           demuxer.
8341
8342 2007-11-26  Julien Moutte  <julien@fluendo.com>
8343
8344         * configure.ac: Add QuickTime Wrapper plug-in.
8345         * gst/speexresample/gstspeexresample.c:
8346         (gst_speex_resample_push_drain), (gst_speex_resample_process): Fix
8347         build on Mac OS X Leopard. Incorrect printf format arguments.
8348         * sys/Makefile.am:
8349         * sys/qtwrapper/Makefile.am:
8350         * sys/qtwrapper/audiodecoders.c:
8351         (qtwrapper_audio_decoder_base_init),
8352         (qtwrapper_audio_decoder_class_init),
8353         (qtwrapper_audio_decoder_init),
8354         (clear_AudioStreamBasicDescription), (fill_indesc_mp3),
8355         (fill_indesc_aac), (fill_indesc_samr), (fill_indesc_generic),
8356         (make_samr_magic_cookie), (open_decoder),
8357         (qtwrapper_audio_decoder_sink_setcaps), (process_buffer_cb),
8358         (qtwrapper_audio_decoder_chain),
8359         (qtwrapper_audio_decoder_sink_event),
8360         (qtwrapper_audio_decoders_register):
8361         * sys/qtwrapper/codecmapping.c: (audio_caps_from_string),
8362         (fourcc_to_caps):
8363         * sys/qtwrapper/codecmapping.h:
8364         * sys/qtwrapper/imagedescription.c: (image_description_for_avc1),
8365         (image_description_for_mp4v), (image_description_from_stsd_buffer),
8366         (image_description_from_codec_data):
8367         * sys/qtwrapper/imagedescription.h:
8368         * sys/qtwrapper/qtutils.c: (get_name_info_from_component),
8369         (get_output_info_from_component), (dump_avcc_atom),
8370         (dump_image_description), (dump_codec_decompress_params),
8371         (addSInt32ToDictionary), (dump_cvpixel_buffer),
8372         (DestroyAudioBufferList), (AllocateAudioBufferList):
8373         * sys/qtwrapper/qtutils.h:
8374         * sys/qtwrapper/qtwrapper.c: (plugin_init):
8375         * sys/qtwrapper/qtwrapper.h:
8376         * sys/qtwrapper/videodecoders.c:
8377         (qtwrapper_video_decoder_base_init),
8378         (qtwrapper_video_decoder_class_init),
8379         (qtwrapper_video_decoder_init), (qtwrapper_video_decoder_finalize),
8380         (fill_image_description), (new_image_description), (close_decoder),
8381         (open_decoder), (qtwrapper_video_decoder_sink_setcaps),
8382         (decompressCb), (qtwrapper_video_decoder_chain),
8383         (qtwrapper_video_decoder_sink_event),
8384         (qtwrapper_video_decoders_register): Initial import of QuickTime
8385         wrapper jointly developped by Songbird authors (Pioneers of the
8386         Inevitable) and Fluendo.
8387
8388 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
8389
8390         * gst/spectrum/gstspectrum.c:
8391           Use dispose and finalize. Dispose can be called multiple times.
8392
8393 2007-11-26  Edgard Lima  <edgard.lima@indt.org.br>
8394
8395         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_init),
8396         (gst_metadata_parse_chain), (gst_metadata_parse_checkgetrange):
8397           Now works when get_range is not available upstream.
8398
8399 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
8400
8401         * gst/speexresample/README:
8402         * gst/speexresample/arch.h:
8403         * gst/speexresample/resample.c: (resampler_basic_direct_single),
8404         (resampler_basic_direct_double),
8405         (resampler_basic_interpolate_single),
8406         (resampler_basic_interpolate_double),
8407         (speex_resampler_process_native), (speex_resampler_process_float),
8408         (speex_resampler_process_int),
8409         (speex_resampler_process_interleaved_float),
8410         (speex_resampler_process_interleaved_int),
8411         (speex_resampler_get_input_latency),
8412         (speex_resampler_get_output_latency):
8413         * gst/speexresample/speex_resampler.h:
8414         Update speex resampler to latest SVN. We're now down to only the
8415         changes noted in README again.
8416
8417         * gst/speexresample/speex_resampler_wrapper.h:
8418         * gst/speexresample/gstspeexresample.c:
8419         (gst_speex_resample_push_drain), (gst_speex_resample_query):
8420         Adjust to API changes.
8421
8422 2007-11-25  Edward Hervey  <bilboed@bilboed.com>
8423
8424         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
8425         (gst_flv_parse_tag_video):
8426         Output segment with proper 'stop' value, makes flvdemux 100% compatible
8427         with gnonlin.
8428
8429 2007-11-25  Stefan Kost  <ensonic@users.sf.net>
8430
8431         * ext/dc1394/gstdc1394.c:
8432           Set initial structure name to fix assertion, due to recent caps name
8433           constraints.
8434
8435 2007-11-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
8436
8437         patch by: Alessandro Decina
8438
8439         * gst/mpegtsparse/mpegtspacketizer.c:
8440         * gst/mpegtsparse/mpegtspacketizer.h:
8441         * gst/mpegtsparse/mpegtsparse.c:
8442         * gst/mpegtsparse/mpegtsparse.h:
8443         pat-info is now a signal not a GObject property that
8444         gets notified.
8445         pat-info, pmt-info now instead of passing a GObject as
8446         a parameter, pass a GstStructure.
8447         New signals: nit-info, sdt-info, eit-info for DVB SI information
8448         * sys/dvb/camconditionalaccess.c:
8449         * sys/dvb/camconditionalaccess.h:
8450         * sys/dvb/camdevice.c:
8451         * sys/dvb/camdevice.h:
8452         * sys/dvb/camswclient.c:
8453         * sys/dvb/camswclient.h:
8454         * sys/dvb/camutils.c:
8455         * sys/dvb/camutils.h:
8456         Cam code now uses the pmt GstStructure passed from mpegtsparse
8457         signals rather than the GObject.
8458         * sys/dvb/dvbbasebin.c:
8459         Use new signals in mpegtsparse and use GstStructures as per
8460         mpegtsparse's modified API.
8461         
8462 2007-11-23  Edgard Lima  <edgard.lima@indt.org.br>
8463
8464         * ext/metadata/Makefile.am:
8465         * ext/metadata/gstmetadata.c:
8466         * ext/metadata/gstmetadatamux.c:
8467         * ext/metadata/gstmetadatamux.h:
8468         * ext/metadata/gstmetadataparse.c:
8469         * ext/metadata/gstmetadataparse.h:
8470         * ext/metadata/metadataparse.c:
8471         * ext/metadata/metadataparse.h:
8472         * ext/metadata/metadataparsejpeg.c:
8473         * ext/metadata/metadataparsejpeg.h:
8474         * ext/metadata/metadataparsepng.c:
8475         * ext/metadata/metadataparsepng.h:
8476         * ext/metadata/metadataparsetypes.h:
8477         * ext/metadata/metadatatypes.c:
8478         * ext/metadata/metadatatypes.h:
8479           Now parser is generic (just add/remove a list of chunks). And a
8480           template of muxer has been created.
8481
8482 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8483
8484         * gst/speexresample/gstspeexresample.c:
8485         (gst_speex_resample_update_state):
8486         Only post the latency message if we have a resampler state already.
8487
8488 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8489
8490         * gst/speexresample/gstspeexresample.c:
8491         (gst_speex_resample_update_state):
8492         Also post GST_MESSAGE_LATENCY if the latency changes.
8493
8494 2007-11-23  Sebastian Dröge  <slomo@circular-chaos.org>
8495
8496         * gst/speexresample/resample.c: (speex_resampler_get_latency),
8497         (speex_resampler_drain_float), (speex_resampler_drain_int),
8498         (speex_resampler_drain_interleaved_float),
8499         (speex_resampler_drain_interleaved_int):
8500         * gst/speexresample/speex_resampler.h:
8501         * gst/speexresample/speex_resampler_wrapper.h:
8502         Add functions to push the remaining samples and to get the latency
8503         of the resampler. These will get added to Speex SVN in this or a
8504         slightly changed form at some point too and should get merged then
8505         again.
8506
8507         * gst/speexresample/gstspeexresample.c: (gst_speex_resample_init),
8508         (gst_speex_resample_init_state),
8509         (gst_speex_resample_transform_size),
8510         (gst_speex_resample_push_drain), (gst_speex_resample_event),
8511         (gst_speex_fix_output_buffer), (gst_speex_resample_process),
8512         (gst_speex_resample_query), (gst_speex_resample_query_type):
8513         Drop the prepending zeroes and output the remaining samples on EOS.
8514         Also properly implement the latency query for this. speexresample
8515         should be completely ready for production use now.
8516
8517 2007-11-22  Wim Taymans  <wim.taymans@gmail.com>
8518
8519         * gst/rtpmanager/gstrtpjitterbuffer.c:
8520         (gst_rtp_jitter_buffer_query):
8521         jitterbuffer can buffer an unlimited amount of time and thus has no
8522         max_latency requirements.
8523
8524 2007-11-21  Sebastian Dröge  <slomo@circular-chaos.org>
8525
8526         * gst/speexresample/README:
8527         Add README explaining where the resampling code was taken from
8528         and which changes were done.
8529
8530         * gst/speexresample/resample.c: (speex_alloc), (speex_realloc),
8531         (speex_free):
8532         Use g_malloc() and friends instead of malloc() to achieve higher
8533         portability and define the functions inline.
8534
8535         * gst/speexresample/speex_resampler.h:
8536         Add back some useless preprocessor stuff to keep the diff between
8537         our version and the one from the Speex SVN repository lower.
8538
8539 2007-11-21  Sebastian Dröge  <slomo@circular-chaos.org>
8540
8541         * gst/filter/gstbpwsinc.c: (bpwsinc_set_property):
8542         * gst/filter/gstlpwsinc.c: (lpwsinc_set_property):
8543         Post a GST_MESSAGE_LATENCY if the latency changes.
8544
8545 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
8546
8547         * ext/faac/gstfaac.c: (gst_faac_sink_event):
8548         Don't try to flush the decoder on EOS when it was not initialized.
8549         Fixes #498667
8550
8551 2007-11-21  Julien Moutte  <julien@fluendo.com>
8552
8553         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_write): Fix build
8554         on Mac OS X. (missing format parameter)
8555
8556 2007-11-21  Stefan Kost  <ensonic@users.sf.net>
8557
8558         * gst/equalizer/gstiirequalizer10bands.c:
8559         * gst/equalizer/gstiirequalizer3bands.c:
8560           Remove preset iface again. We'll re-add this after its been released
8561           in -good.
8562
8563 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8564
8565         * gst/speexresample/gstspeexresample.c:
8566         (gst_speex_fix_output_buffer), (gst_speex_resample_transform):
8567         Some small cleanup and addition of a TODO item.
8568
8569 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8570
8571         * gst/speexresample/Makefile.am:
8572         Add missing file.
8573
8574 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8575
8576         * docs/plugins/inspect/plugin-app.xml:
8577         * docs/plugins/inspect/plugin-bayer.xml:
8578         * docs/plugins/inspect/plugin-cdaudio.xml:
8579         * docs/plugins/inspect/plugin-dvb.xml:
8580         * docs/plugins/inspect/plugin-dvbsrc.xml:
8581         * docs/plugins/inspect/plugin-dvdspu.xml:
8582         * docs/plugins/inspect/plugin-festival.xml:
8583         * docs/plugins/inspect/plugin-flvdemux.xml:
8584         * docs/plugins/inspect/plugin-gstinterlace.xml:
8585         * docs/plugins/inspect/plugin-interleave.xml:
8586         * docs/plugins/inspect/plugin-ladspa.xml:
8587         * docs/plugins/inspect/plugin-mpeg4videoparse.xml:
8588         * docs/plugins/inspect/plugin-mpegtsparse.xml:
8589         * docs/plugins/inspect/plugin-mpegvideoparse.xml:
8590         * docs/plugins/inspect/plugin-mve.xml:
8591         * docs/plugins/inspect/plugin-nas.xml:
8592         * docs/plugins/inspect/plugin-nuvdemux.xml:
8593         * docs/plugins/inspect/plugin-quicktime.xml:
8594         * docs/plugins/inspect/plugin-real.xml:
8595         * docs/plugins/inspect/plugin-rfbsrc.xml:
8596         * docs/plugins/inspect/plugin-sdp.xml:
8597         * docs/plugins/inspect/plugin-sndfile.xml:
8598         * docs/plugins/inspect/plugin-soup.xml:
8599         * docs/plugins/inspect/plugin-speexresample.xml:
8600         * docs/plugins/inspect/plugin-stereo.xml:
8601         * docs/plugins/inspect/plugin-switch.xml:
8602         * docs/plugins/inspect/plugin-vcdsrc.xml:
8603         * docs/plugins/inspect/plugin-videocrop.xml:
8604         * docs/plugins/inspect/plugin-videoparse.xml:
8605         * docs/plugins/inspect/plugin-vmnc.xml:
8606         * docs/plugins/inspect/plugin-x264.xml:
8607         * docs/plugins/inspect/plugin-y4menc.xml:
8608         Add missing inspection files to CVS.
8609
8610 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8611
8612         * docs/plugins/Makefile.am:
8613         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
8614         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
8615         * docs/plugins/gst-plugins-bad-plugins.args:
8616         * docs/plugins/gst-plugins-bad-plugins.signals:
8617         * docs/plugins/inspect/plugin-bz2.xml:
8618         * docs/plugins/inspect/plugin-cdxaparse.xml:
8619         * docs/plugins/inspect/plugin-dtsdec.xml:
8620         * docs/plugins/inspect/plugin-equalizer.xml:
8621         * docs/plugins/inspect/plugin-faac.xml:
8622         * docs/plugins/inspect/plugin-faad.xml:
8623         * docs/plugins/inspect/plugin-filter.xml:
8624         * docs/plugins/inspect/plugin-freeze.xml:
8625         * docs/plugins/inspect/plugin-gio.xml:
8626         * docs/plugins/inspect/plugin-gsm.xml:
8627         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
8628         * docs/plugins/inspect/plugin-h264parse.xml:
8629         * docs/plugins/inspect/plugin-modplug.xml:
8630         * docs/plugins/inspect/plugin-mpeg2enc.xml:
8631         * docs/plugins/inspect/plugin-musepack.xml:
8632         * docs/plugins/inspect/plugin-musicbrainz.xml:
8633         * docs/plugins/inspect/plugin-nsfdec.xml:
8634         * docs/plugins/inspect/plugin-replaygain.xml:
8635         * docs/plugins/inspect/plugin-soundtouch.xml:
8636         * docs/plugins/inspect/plugin-spcdec.xml:
8637         * docs/plugins/inspect/plugin-spectrum.xml:
8638         * docs/plugins/inspect/plugin-speed.xml:
8639         * docs/plugins/inspect/plugin-tta.xml:
8640         * docs/plugins/inspect/plugin-videosignal.xml:
8641         * docs/plugins/inspect/plugin-xingheader.xml:
8642         * docs/plugins/inspect/plugin-xvid.xml:
8643         * gst/speexresample/gstspeexresample.h:
8644         Add speexresample to the docs and while at that do a make update.
8645
8646 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8647
8648         * gst/speexresample/gstspeexresample.c:
8649         (gst_speex_fix_output_buffer), (gst_speex_resample_process):
8650         If the resampler gives less output samples than expected
8651         adjust the output buffer and print a warning.
8652
8653 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
8654
8655         * configure.ac:
8656         * gst/speexresample/arch.h:
8657         * gst/speexresample/fixed_generic.h:
8658         * gst/speexresample/gstspeexresample.c:
8659         (gst_speex_resample_base_init), (gst_speex_resample_class_init),
8660         (gst_speex_resample_init), (gst_speex_resample_start),
8661         (gst_speex_resample_stop), (gst_speex_resample_get_unit_size),
8662         (gst_speex_resample_transform_caps),
8663         (gst_speex_resample_init_state), (gst_speex_resample_update_state),
8664         (gst_speex_resample_reset_state), (gst_speex_resample_parse_caps),
8665         (gst_speex_resample_transform_size), (gst_speex_resample_set_caps),
8666         (gst_speex_resample_event), (gst_speex_resample_check_discont),
8667         (gst_speex_resample_process), (gst_speex_resample_transform),
8668         (gst_speex_resample_set_property),
8669         (gst_speex_resample_get_property), (plugin_init):
8670         * gst/speexresample/gstspeexresample.h:
8671         * gst/speexresample/resample.c: (speex_alloc), (speex_realloc),
8672         (speex_free), (compute_func), (main), (sinc), (cubic_coef),
8673         (resampler_basic_direct_single), (resampler_basic_direct_double),
8674         (resampler_basic_interpolate_single),
8675         (resampler_basic_interpolate_double), (update_filter),
8676         (speex_resampler_init), (speex_resampler_init_frac),
8677         (speex_resampler_destroy), (speex_resampler_process_native),
8678         (speex_resampler_process_float), (speex_resampler_process_int),
8679         (speex_resampler_process_interleaved_float),
8680         (speex_resampler_process_interleaved_int),
8681         (speex_resampler_set_rate), (speex_resampler_get_rate),
8682         (speex_resampler_set_rate_frac), (speex_resampler_get_ratio),
8683         (speex_resampler_set_quality), (speex_resampler_get_quality),
8684         (speex_resampler_set_input_stride),
8685         (speex_resampler_get_input_stride),
8686         (speex_resampler_set_output_stride),
8687         (speex_resampler_get_output_stride), (speex_resampler_skip_zeros),
8688         (speex_resampler_reset_mem), (speex_resampler_strerror):
8689         * gst/speexresample/speex_resampler.h:
8690         * gst/speexresample/speex_resampler_float.c:
8691         * gst/speexresample/speex_resampler_int.c:
8692         * gst/speexresample/speex_resampler_wrapper.h:
8693         Add resample element based on the Speex resampling algorithm.
8694
8695 2007-11-20  Edgard Lima  <edgard.lima@indt.org.br>
8696
8697         * ext/metadata/gstmetadataparse.c:
8698         * ext/metadata/gstmetadataparse.h:
8699           Fixed buffer strip (safer wil pull and after seek).
8700
8701 2007-11-19  Stefan Kost  <ensonic@users.sf.net>
8702
8703         * gst/equalizer/gstiirequalizer10bands.c:
8704         * gst/equalizer/gstiirequalizer3bands.c:
8705           Activate preset iface and upload two presets here.
8706
8707 2007-11-19  Edgard Lima  <edgard.lima@indt.org.br>
8708
8709         * ext/metadata/gstmetadataparse.c:
8710         * ext/metadata/gstmetadataparse.h:
8711           Strip out in pull mode also. Seek and Query functions added.
8712
8713 2007-11-18  Edgard Lima  <edgard.lima@indt.org.br>
8714
8715         * ext/metadata/gstmetadataparse.c:
8716         * ext/metadata/gstmetadataparse.h:
8717         * ext/metadata/metadataparse.c:
8718         * ext/metadata/metadataparse.h:
8719         * ext/metadata/metadataparsejpeg.c:
8720         * ext/metadata/metadataparsejpeg.h:
8721         * ext/metadata/metadataparsepng.c:
8722         * ext/metadata/metadataparsepng.h:
8723         * ext/metadata/metadataparsetypes.h:
8724           Strip out metadata chunks.
8725
8726 2007-11-16  Stefan Kost  <ensonic@users.sf.net>
8727
8728         * configure.ac:
8729           Als use AG_GST_PLUGIN_DOCS (see #344039).
8730
8731 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8732
8733         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
8734
8735         * gst/mpegtsparse/mpegtspacketizer.c: (foreach_stream_clear),
8736         (remove_all), (mpegts_packetizer_clear):
8737         Ensure that the plugin does not crash when the property pat-info is
8738         queried before a PAT is available. It also ensures that the PAT info is
8739         cleared when the changing from PLAYING to READY.
8740         Fixes #487892.
8741
8742 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8743
8744         Patch by: Wouter Paesen <wouter at blue-gate dot be>
8745
8746         * ext/soundtouch/gstpitch.cc:
8747         Handle seeking correctly. Fixes #461068.
8748
8749 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8750
8751         Patch by: Michael Kötter <m dot koetter at oraise dot de>
8752
8753         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_set_caps),
8754         (alsaspdifsink_get_time), (alsaspdifsink_open),
8755         (alsaspdifsink_set_params), (alsaspdifsink_delay), (plugin_init):
8756         Fix sample rate and clocking.
8757         Remove buffer_time and period_time as this seems to break on some
8758         hardware. Fixes #485462.
8759
8760 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
8761
8762         Patch by: Wouter Cloetens <wouter at mind dot be>
8763
8764         * configure.ac:
8765         * ext/Makefile.am:
8766         * ext/soup/Makefile.am:
8767         * ext/soup/gstsouphttpsrc.c: (_do_init),
8768         (gst_souphttp_src_base_init), (gst_souphttp_src_class_init),
8769         (gst_souphttp_src_init), (gst_souphttp_src_dispose),
8770         (gst_souphttp_src_set_property), (gst_souphttp_src_get_property),
8771         (gst_souphttp_src_create), (gst_souphttp_src_start),
8772         (gst_souphttp_src_stop), (gst_souphttp_src_unlock),
8773         (gst_souphttp_src_set_location), (soup_got_chunk), (soup_response),
8774         (soup_session_close), (plugin_init):
8775         * ext/soup/gstsouphttpsrc.h:
8776         Added HTTP source based on libsoup. Fixes #497020.
8777
8778 2007-11-15  Thijs Vermeir  <thijsvermeir@gmail.com>
8779
8780         * gst/librfb/gstrfbsrc.c:
8781         don't forget to handle the offset's
8782         * gst/librfb/rfbdecoder.c:
8783         * gst/librfb/rfbdecoder.h:
8784         precalculate some many used values
8785
8786 2007-11-15  Thijs Vermeir  <thijsvermeir@gmail.com>
8787
8788         patch by: Armando Taffarel Neto <taffarel@solis.coop.br>
8789         * gst/librfb/gstrfbsrc.c:
8790         Set the timestamp for the output buffers
8791
8792 2007-11-14  Sebastian Dröge  <slomo@circular-chaos.org>
8793
8794         * tests/check/elements/spectrum.c: (GST_START_TEST):
8795         Fix spectrum unit test for the latest spectrum changes.
8796
8797 2007-11-12  Sebastian Dröge  <slomo@circular-chaos.org>
8798
8799         Patch by: René Stadler <mail at renestadler dot de>
8800
8801         * gst/replaygain/rganalysis.c: (yule_filter):
8802         Avoid slowdown from denormals when processing near-silence input data.
8803         Spotted by Gabriel Bouvigne. Fixes #494499.
8804
8805 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
8806
8807         * gst/flv/gstflvparse.c:
8808         Add mapping for Nellymoser ASAO audio codec.
8809         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Make sure we
8810         actually have data to read at the end of the tag. This avoids trying
8811         to allocate negative buffers.
8812
8813 2007-11-12  Edgard Lima  <edgard.lima@indt.org.br>
8814
8815         * ext/metadata/README:
8816           Added a design proposal from metadata parse and mux.
8817
8818 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8819
8820         * gst/equalizer/demo.c: (draw_spectrum):
8821         * gst/spectrum/demo-audiotest.c: (draw_spectrum):
8822         * gst/spectrum/demo-osssrc.c: (draw_spectrum):
8823         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
8824         Change the meaning of the magnitude values given in the
8825         GstMessages by spectrum to decibel instead of
8826         decibel+threshold.
8827
8828 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8829
8830         * gst/equalizer/gstiirequalizer10bands.c:
8831         * gst/equalizer/gstiirequalizer3bands.c:
8832         * gst/equalizer/gstiirequalizernbands.c:
8833         And continue to update docs. Also include some sample code
8834         for the n-band equalizer in the docs.
8835
8836 2007-11-11  Sebastian Dröge  <slomo@circular-chaos.org>
8837
8838         * gst/equalizer/gstiirequalizer10bands.c:
8839         (gst_iir_equalizer_10bands_class_init):
8840         * gst/equalizer/gstiirequalizer3bands.c:
8841         (gst_iir_equalizer_3bands_class_init):
8842         * gst/equalizer/gstiirequalizernbands.c:
8843         Update docs and property ranges to the real values.
8844
8845 2007-11-09  Sebastian Dröge  <slomo@circular-chaos.org>
8846
8847         * gst/spectrum/gstspectrum.c:
8848         Now do the scaling right for real. Also initialize a previously
8849         uninitialized variable.
8850
8851 2007-11-09  Edgard Lima  <edgard.lima@indt.org.br>
8852
8853         * ext/metadata/metadataparsexmp.c:
8854         (metadataparse_xmp_tag_list_add),
8855         (metadataparse_xmp_iter_simple_qual),
8856         (metadataparse_xmp_iter_simple), (metadataparse_xmp_iter_array),
8857         (metadataparse_xmp_iter):
8858           Extracting more detailed info from XMP.
8859
8860 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
8861
8862         * gst/equalizer/demo.c:
8863           Make default volume a bit less. Improve layout by giving more space to
8864           the slider with big-numbers and enable fill.
8865
8866 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8867
8868         * configure.ac:
8869         * tests/check/pipelines/gio.c: (GST_START_TEST):
8870         Require GIO >= 0.1.2 and adjust unit test for an API change.
8871
8872 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8873
8874         * tests/icles/equalizer-test.c: (do_slider_fiddling):
8875         Fix gain ranges for the latest equalizer changes.
8876
8877 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8878
8879         * ext/gio/gstgio.h:
8880         Add macro to check if a stream supports seeking.
8881
8882         * ext/gio/Makefile.am:
8883         * ext/gio/gstgiobasesink.c: (gst_gio_base_sink_base_init),
8884         (gst_gio_base_sink_class_init), (gst_gio_base_sink_init),
8885         (gst_gio_base_sink_finalize), (gst_gio_base_sink_start),
8886         (gst_gio_base_sink_stop), (gst_gio_base_sink_unlock),
8887         (gst_gio_base_sink_unlock_stop), (gst_gio_base_sink_event),
8888         (gst_gio_base_sink_render), (gst_gio_base_sink_query),
8889         (gst_gio_base_sink_set_stream):
8890         * ext/gio/gstgiobasesink.h:
8891         * ext/gio/gstgiobasesrc.c: (gst_gio_base_src_base_init),
8892         (gst_gio_base_src_class_init), (gst_gio_base_src_init),
8893         (gst_gio_base_src_finalize), (gst_gio_base_src_start),
8894         (gst_gio_base_src_stop), (gst_gio_base_src_get_size),
8895         (gst_gio_base_src_is_seekable), (gst_gio_base_src_unlock),
8896         (gst_gio_base_src_unlock_stop), (gst_gio_base_src_check_get_range),
8897         (gst_gio_base_src_create), (gst_gio_base_src_set_stream):
8898         * ext/gio/gstgiobasesrc.h:
8899         Refactor common GIO functions to GstGioBaseSink and GstGioBaseSrc
8900         base classes that only require a GInputStream or GOutputStream to
8901         work.
8902
8903         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
8904         (gst_gio_sink_class_init), (gst_gio_sink_init),
8905         (gst_gio_sink_finalize), (gst_gio_sink_start):
8906         * ext/gio/gstgiosink.h:
8907         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
8908         (gst_gio_src_class_init), (gst_gio_src_init),
8909         (gst_gio_src_finalize), (gst_gio_src_start):
8910         * ext/gio/gstgiosrc.h:
8911         Use the newly created base classes here.
8912
8913         * ext/gio/gstgio.c: (plugin_init):
8914         * ext/gio/gstgiostreamsink.c: (gst_gio_stream_sink_base_init),
8915         (gst_gio_stream_sink_class_init), (gst_gio_stream_sink_init),
8916         (gst_gio_stream_sink_finalize), (gst_gio_stream_sink_set_property),
8917         (gst_gio_stream_sink_get_property):
8918         * ext/gio/gstgiostreamsink.h:
8919         * ext/gio/gstgiostreamsrc.c: (gst_gio_stream_src_base_init),
8920         (gst_gio_stream_src_class_init), (gst_gio_stream_src_init),
8921         (gst_gio_stream_src_finalize), (gst_gio_stream_src_set_property),
8922         (gst_gio_stream_src_get_property):
8923         * ext/gio/gstgiostreamsrc.h:
8924         Implement GstGioStreamSink and GstGioStreamSrc that have a property
8925         to set the GInputStream/GOutputStream that should be used.
8926
8927         * tests/check/Makefile.am:
8928         * tests/check/pipelines/.cvsignore:
8929         * tests/check/pipelines/gio.c: (message_handler), (GST_START_TEST),
8930         (gio_testsuite), (main):
8931         Add unit test for giostreamsrc and giostreamsink.
8932
8933 2007-11-07  Sebastian Dröge  <slomo@circular-chaos.org>
8934
8935         * ext/gio/gstgio.c: (plugin_init):
8936         Remove nowadays unnecessary workaround for a crash.
8937         
8938         * ext/gio/gstgiosink.c: (gst_gio_sink_finalize),
8939         (gst_gio_sink_start), (gst_gio_sink_stop),
8940         (gst_gio_sink_unlock_stop):
8941         * ext/gio/gstgiosink.h:
8942         * ext/gio/gstgiosrc.c: (gst_gio_src_finalize), (gst_gio_src_start),
8943         (gst_gio_src_stop), (gst_gio_src_unlock_stop):
8944         * ext/gio/gstgiosrc.h:
8945         Make the finalize function safer, clean up everything that could stay
8946         around.
8947
8948         Reset the cancellable instead of creating a new one after cancelling
8949         some operation.
8950
8951         Don't store the GFile in the element, it's only necessary for creating
8952         the streams.
8953
8954 2007-11-06  Sebastian Dröge  <slomo@circular-chaos.org>
8955
8956         * gst/spectrum/demo-audiotest.c: (main):
8957         Use autoaudiosink instead of alsasink and use a sine wave.
8958
8959         * gst/spectrum/gstspectrum.c:
8960         Fix the magnitude calculation.
8961
8962 2007-11-04  Tim-Philipp Müller  <tim at centricular dot net>
8963
8964         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
8965
8966         * gst-libs/gst/dshow/gstdshowfakesink.cpp:
8967           (CDshowFakeSink.CDshowFakeSink):
8968         * gst-libs/gst/dshow/gstdshowfakesink.h: (CDshowFakeSink.m_hres):
8969           Fix crasher in constructor due to the base class's constructor
8970           not necessarily being NULL-safe (depends on the SDK version used
8971           apparently; #492406).
8972
8973         * sys/dshowsrcwrapper/gstdshowaudiosrc.c: (gst_dshowaudiosrc_prepare):
8974         * sys/dshowsrcwrapper/gstdshowvideosrc.c: (gst_dshowvideosrc_set_caps):
8975           Fix a couple of MSVC compiler warnings (#492406).
8976
8977 2007-11-03  Sebastian Dröge  <slomo@circular-chaos.org>
8978
8979         * gst/equalizer/demo.c: (main):
8980         * gst/equalizer/gstiirequalizer.c:
8981         (gst_iir_equalizer_band_class_init), (setup_filter):
8982         Allow setting 0 as bandwidth and handle this correctly.
8983         Also handle a bandwidth of rate/2 properly.
8984
8985         * gst/equalizer/gstiirequalizernbands.c:
8986         (gst_iir_equalizer_nbands_class_init):
8987         Make it possible to generate a N-band equalizer with 1 bands. The
8988         previous limit of 2 was caused by a nowadays replaced calculation
8989         doing a division by zero if number of bands was 1.
8990
8991 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
8992
8993         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
8994
8995         * gst/rtpmanager/gstrtpsession.c:
8996           Fix bad function signatures (#492798).
8997
8998 2007-11-02  Edgard Lima  <edgard.lima@indt.org.br>
8999
9000         * ext/metadata/Makefile.am:
9001         * ext/metadata/gstmetadataparse.c:
9002         * ext/metadata/gstmetadataparse.h:
9003         * ext/metadata/metadataparse.c:
9004         * ext/metadata/metadataparse.h:
9005         * ext/metadata/metadataparseexif.c:
9006         * ext/metadata/metadataparseexif.h:
9007         * ext/metadata/metadataparseiptc.c:
9008         * ext/metadata/metadataparseiptc.h:
9009         * ext/metadata/metadataparsejpeg.c:
9010         * ext/metadata/metadataparsejpeg.h:
9011         * ext/metadata/metadataparsepng.c:
9012         * ext/metadata/metadataparsepng.h:
9013         * ext/metadata/metadataparseutil.c:
9014         * ext/metadata/metadataparseutil.h:
9015         * ext/metadata/metadataparsexmp.c:
9016         * ext/metadata/metadataparsexmp.h:
9017           Added support for PNG/XMP. Indentation. And fixed pull mode to parse
9018           the file. 
9019
9020 2007-11-02  Edgard Lima  <edgard.lima@indt.org.br>
9021
9022         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_init),
9023         (gst_metadata_parse_activate), (gst_metadata_parse_get_range),
9024         (gst_metadata_parse_element_activate_src_pull):
9025           Now metadataparse works in push or pull mode.
9026
9027 2007-11-01  Edgard Lima  <edgard.lima@indt.org.br>
9028
9029         * configure.ac:
9030         * ext/metadata/Makefile.am:
9031         * ext/metadata/metadataparseexif.c:
9032         (metadataparse_exif_tags_register),
9033         (metadataparse_exif_tag_list_add):
9034         * ext/metadata/metadataparseiptc.c:
9035         * ext/metadata/metadataparsejpeg.c: (metadataparse_jpeg_init),
9036         (metadataparse_jpeg_dispose), (metadataparse_jpeg_parse),
9037         (metadataparse_jpeg_reading), (metadataparse_jpeg_xmp):
9038         * ext/metadata/metadataparseutil.c:
9039         (metadataparse_tag_list_add_chunk):
9040         * ext/metadata/metadataparseutil.h:
9041         * ext/metadata/metadataparsexmp.c:
9042         (metadataparse_xmp_tags_register),
9043         (metadataparse_xmp_tag_list_add), (metadataparse_xmp_init),
9044         (metadataparse_xmp_dispose):
9045         * ext/metadata/metadataparsexmp.h:
9046           Some XMP stuff added.
9047
9048 2007-10-31  Edgard Lima  <edgard.lima@indt.org.br>
9049
9050         * ext/metadata/gstmetadataparse.c:
9051         (gst_metadata_parse_dispose_members),
9052         (gst_metadata_parse_init_members), (gst_metadata_parse_send_tags),
9053         (gst_metadata_parse_chain), (gst_metadata_parse_get_range),
9054         (gst_metadata_parse_change_state),
9055         (gst_metadata_parse_plugin_init):
9056         * ext/metadata/gstmetadataparse.h:
9057         * ext/metadata/metadataparseexif.c:
9058         (metadataparse_exif_tags_register),
9059         (metadataparse_exif_tag_list_add),
9060         (exif_data_foreach_content_func),
9061         (exif_content_foreach_entry_func):
9062         * ext/metadata/metadataparseexif.h:
9063         * ext/metadata/metadataparseiptc.c:
9064         (metadataparse_iptc_tags_register),
9065         (metadataparse_tag_list_add_chunk),
9066         (metadataparse_iptc_tag_list_add),
9067         (iptc_data_foreach_dataset_func):
9068         * ext/metadata/metadataparseiptc.h:
9069         * ext/metadata/metadataparsexmp.c:
9070         (metadataparse_xmp_tags_register),
9071         (metadataparse_xmp_tag_list_add):
9072         * ext/metadata/metadataparsexmp.h:
9073           Now sending iptc tag in whole chunk. Ready to also send exif and xmp
9074           in the same way (look at bug #486659).
9075
9076 2007-10-31  Thijs Vermeir  <thijsvermeir@gmail.com>
9077
9078         * gst/librfb/rfbdecoder.c:
9079                 Some refactoring in RAW encoding
9080
9081 2007-10-31  Thijs Vermeir  <thijsvermeir@gmail.com>
9082
9083         * gst/librfb/d3des.h:
9084         * gst/librfb/gstrfbsrc.c:
9085         * gst/librfb/gstrfbsrc.h:
9086         * gst/librfb/rfbbuffer.h:
9087         * gst/librfb/rfbcontext.h:
9088         * gst/librfb/rfbdecoder.c:
9089         * gst/librfb/rfbdecoder.h:
9090         * gst/librfb/rfbutil.h:
9091         * gst/librfb/vncauth.h:
9092                 Added copyrect encoding
9093
9094 2007-10-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9095
9096         * sys/dvb/camswclient.c:
9097         Warn on failed write.
9098
9099 2007-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
9100
9101         * gst/equalizer/Makefile.am:
9102         * gst/equalizer/demo.c: (on_window_destroy), (on_configure_event),
9103         (on_gain_changed), (on_bandwidth_changed), (on_freq_changed),
9104         (draw_spectrum), (message_handler), (main):
9105         Add small demo application based on the spectrum demo applications
9106         that gets white noise as input, pushes it through an equalizer and
9107         paints the spectrum. For every equalizer band it's possible to set
9108         gain, bandwidth and frequency.
9109         * gst/equalizer/gstiirequalizer.c: (setup_filter):
9110         Add some guarding against too large or too small frequencies and
9111         bandwidths. Also improve debugging a bit.
9112
9113 2007-10-30  Sebastian Dröge  <slomo@circular-chaos.org>
9114
9115         * gst/equalizer/gstiirequalizer.c:
9116         (gst_iir_equalizer_band_set_property),
9117         (gst_iir_equalizer_band_get_property),
9118         (gst_iir_equalizer_band_class_init), (arg_to_scale),
9119         (setup_filter), (gst_iir_equalizer_compute_frequencies):
9120         Replace filters with a bit better filters for which we can actually
9121         find documentation, which don't change anything on zero gain, etc.
9122         
9123         Make the frequency property of the bands writable, rename the
9124         band-width property to bandwidth and change the meaning to the
9125         frequency difference between bandedges, change the meaning of the
9126         gain property to dB instead of a weird scale between -1 and 1 that
9127         has no real meaning.
9128
9129 2007-10-30  Stefan Kost  <ensonic@users.sf.net>
9130
9131         * sys/dvb/dvbbasebin.c:
9132           Fix the build.
9133
9134 2007-10-30  Edgard Lima  <edgard.lima@indt.org.br>
9135
9136         * ext/metadata/.cvsignore:
9137         * ext/metadata/gstmetadataparse.c: (gst_metadata_parse_base_init),
9138         (gst_metadata_parse_init), (gst_metadata_parse_get_caps),
9139         (gst_metadata_parse_configure_srccaps),
9140         (gst_metadata_parse_set_caps), (gst_metadata_parse_activate),
9141         (gst_metadata_parse_plugin_init):
9142         * ext/metadata/metadataparse.c: (metadataparse_parse):
9143         * ext/metadata/metadataparse.h:
9144           Changed kclass to "Parser/Extracter/Metadata", changed caps to
9145           "image/jpeg, tags-extract=true/false" and changed priority to
9146           GST_RANK_PRIMARY+1. Also, srcpad can only work in push mode until
9147           fixed to also work in pull mode.
9148
9149 2007-10-30  Edgard Lima  <edgard.lima@indt.org.br>
9150
9151         * configure.ac:
9152         * ext/Makefile.am:
9153         * ext/metadata/:
9154         * ext/metadata/Makefile.am:
9155         * ext/metadata/gstmetadata.c:
9156         * ext/metadata/gstmetadataparse.c:
9157         * ext/metadata/gstmetadataparse.h:
9158         * ext/metadata/metadataparse.c:
9159         * ext/metadata/metadataparse.h:
9160         * ext/metadata/metadataparseexif.c:
9161         * ext/metadata/metadataparseexif.h:
9162         * ext/metadata/metadataparseiptc.c:
9163         * ext/metadata/metadataparseiptc.h:
9164         * ext/metadata/metadataparsejpeg.c:
9165         * ext/metadata/metadataparsejpeg.h:
9166         * ext/metadata/metadataparsexmp.c:
9167         * ext/metadata/metadataparsexmp.h:
9168           Created new plugin ('medadata') and element ('metadataparse') that
9169           extract metadata from images (look at bug #486659).
9170
9171 2007-10-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9172
9173         * sys/dvb/dvbbasebin.c:
9174         Uncomment the line that sets the pid filter. Wrong way to 
9175         work-around driver issues.
9176
9177 2007-10-28  Tim-Philipp Müller  <tim at centricular dot net>
9178
9179         * ext/faac/gstfaac.c: (gst_faac_profile_get_type),
9180           (gst_faac_class_init), (gst_faac_init):
9181           Fix bitrate ranges and change enum nick for low complexity
9182           profile from LOW to LC for consistency (#490060).
9183
9184 2007-10-27  Tim-Philipp Müller  <tim at centricular dot net>
9185
9186         * gst/interleave/interleave.c: (gst_interleave_request_new_pad):
9187           Let's not call every request pad we create "sink%d", that'll
9188           create problems if there's to be more than one pad. Fixes #490682.
9189
9190         * tests/check/Makefile.am:
9191         * tests/check/elements/.cvsignore:
9192         * tests/check/elements/interleave.c:
9193           Add unit test for the above.
9194
9195 2007-10-27  Julien MOUTTE  <julien@moutte.net>
9196
9197         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_align),
9198         (gst_mpeg4vparse_drain), (gst_mpeg4vparse_chain),
9199         (gst_mpeg4vparse_sink_setcaps), (gst_mpeg4vparse_sink_event),
9200         (gst_mpeg4vparse_cleanup), (gst_mpeg4vparse_change_state),
9201         (gst_mpeg4vparse_dispose), (gst_mpeg4vparse_base_init),
9202         (gst_mpeg4vparse_class_init), (gst_mpeg4vparse_init),
9203         (plugin_init):
9204         * gst/mpeg4videoparse/mpeg4videoparse.h: Improved version not
9205         damaging headers using a simple state machine.
9206
9207 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
9208
9209         * ext/x264/gstx264enc.c:
9210           Fix build against the libx264 version that ships with debian stable.
9211
9212 2007-10-26  Julien MOUTTE  <julien@moutte.net>
9213
9214         * configure.ac:
9215         * gst/mpeg4videoparse/Makefile.am:
9216         * gst/mpeg4videoparse/mpeg4videoparse.c: (gst_mpeg4vparse_drain),
9217         (gst_mpeg4vparse_chain), (gst_mpeg4vparse_sink_setcaps),
9218         (gst_mpeg4vparse_sink_event), (gst_mpeg4vparse_cleanup),
9219         (gst_mpeg4vparse_change_state), (gst_mpeg4vparse_dispose),
9220         (gst_mpeg4vparse_base_init), (gst_mpeg4vparse_class_init),
9221         (gst_mpeg4vparse_init), (plugin_init):
9222         * gst/mpeg4videoparse/mpeg4videoparse.h: Add a simple MPEG4 ES
9223         parser.
9224
9225 2007-10-25  David Schleef  <ds@schleef.org>
9226
9227         * gst/multifile/Makefile.am:
9228         * gst/multifile/gstmultifilesink.c:
9229         * gst/multifile/gstmultifilesrc.c:
9230         * tests/check/Makefile.am:
9231         * tests/check/elements/multifile.c:
9232           Improve documentation, write some tests for multifilesrc/sink
9233           for upcoming ->good review.
9234
9235 2007-10-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9236
9237         * sys/dvb/gstdvbsrc.c:
9238         Actually use the code-rate-hp parameter for DVB-S.
9239         It turns out setting to AUTO does not always work (
9240         especially in diseq situations). Set by default to 
9241         FEC_AUTO.
9242
9243 2007-10-22  Julien MOUTTE  <julien@moutte.net>
9244
9245         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9246         (gst_flv_parse_tag_video), (gst_flv_parse_tag_type): Don't
9247         emit no-more-pads for single pad scenarios as the header
9248         is definitely not reliable. We emit them for 2 pads scenarios
9249         though to speed up media discovery.
9250
9251 2007-10-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9252
9253         * sys/dvb/dvbbasebin.c:
9254         Added proxy property of diseqc-source
9255
9256 2007-10-18  Sebastian Dröge  <slomo@circular-chaos.org>
9257
9258         * gst/equalizer/gstiirequalizer.c:
9259         (gst_iir_equalizer_band_set_property):
9260         Add a missing break.
9261
9262 2007-10-18  Sebastian Dröge  <slomo@circular-chaos.org>
9263
9264         * gst/equalizer/gstiirequalizer.c:
9265         (gst_iir_equalizer_band_set_property),
9266         (gst_iir_equalizer_band_get_property),
9267         (gst_iir_equalizer_band_class_init), (gst_iir_equalizer_band_init),
9268         (gst_iir_equalizer_band_get_type), (gst_iir_equalizer_class_init),
9269         (setup_filter), (gst_iir_equalizer_setup):
9270         * gst/equalizer/gstiirequalizer.h:
9271         Move bandwidth property to the separate bands and add float64 support.
9272
9273 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9274
9275         * ext/cdaudio/Makefile.am:
9276           Add another missing GST_LIBS.
9277
9278 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9279
9280         Patch by: Richard Hult <richard imendio com>
9281
9282         * gst/dvdspu/Makefile.am:
9283           Fix LIBS - we need to link against libgstreamer (fixes #487496).
9284
9285 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
9286
9287         * sys/dvb/camapplication.c:
9288         * sys/dvb/camresourcemanager.c:
9289           Fix some warnings.
9290
9291 2007-10-16  Thijs Vermeir  <thijsvermeir@gmail.com>
9292
9293         * gst/librfb/rfbdecoder.c:
9294           Add the set encodings client message
9295
9296 2007-10-16  Thijs Vermeir  <thijsvermeir@gmail.com>
9297
9298         * gst/librfb/Makefile.am:
9299         * gst/librfb/rfb.h:
9300         * gst/librfb/rfbbytestream.c:
9301         * gst/librfb/rfbbytestream.h:
9302         * gst/librfb/rfbdecoder.c:
9303         * gst/librfb/rfbdecoder.h:
9304           Remove the rfbbytestream dead code
9305
9306 2007-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9307
9308         patch by: Alessandro Decina
9309
9310         * sys/dvb/Makefile.am:
9311         * sys/dvb/cam.c:
9312         * sys/dvb/cam.h:
9313         * sys/dvb/camapplication.c:
9314         * sys/dvb/camapplication.h:
9315         * sys/dvb/camapplicationinfo.c:
9316         * sys/dvb/camapplicationinfo.h:
9317         * sys/dvb/camconditionalaccess.c:
9318         * sys/dvb/camconditionalaccess.h:
9319         * sys/dvb/camdevice.c:
9320         * sys/dvb/camdevice.h:
9321         * sys/dvb/camresourcemanager.c:
9322         * sys/dvb/camresourcemanager.h:
9323         * sys/dvb/camsession.c:
9324         * sys/dvb/camsession.h:
9325         * sys/dvb/camswclient.c:
9326         * sys/dvb/camswclient.h:
9327         * sys/dvb/camtransport.c:
9328         * sys/dvb/camtransport.h:
9329         * sys/dvb/camutils.c:
9330         * sys/dvb/camutils.h:
9331         * sys/dvb/dvbbasebin.c:
9332         * sys/dvb/dvbbasebin.h:
9333         * sys/dvb/gstdvb.c:
9334         * sys/dvb/gstdvbsrc.c:
9335         * sys/dvb/gstdvbsrc.h:
9336         Integrate SoC work done by Alessandro for the Freevo project.
9337         Adds cam support to the dvb stack in GStreamer and a new
9338         element (actually a bin) called dvbbasebin that integrates
9339         dvbsrc and mpegtsparse to a) handle decryption and b) allow 
9340         acquiring multiple channels on same transponder without 
9341         knowing pid numbers.
9342
9343 2007-10-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9344
9345         patch by: Alessandro Decina
9346
9347         * gst/mpegtsparse/mpegtspacketizer.c:
9348         * gst/mpegtsparse/mpegtsparse.c:
9349         * gst/mpegtsparse/mpegtsparse.h:
9350         Add request pad for getting the full transport stream coming in.
9351
9352 2007-10-14  Sebastian Dröge  <slomo@circular-chaos.org>
9353
9354         * configure.ac:
9355           Update the highest allowed neon version from 0.26.99 to 0.27.99.
9356           No code changes are required to work with the newest neon version.
9357
9358 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
9359
9360         * configure.ac:
9361           Require core CVS.  This is implicit in the -base CVS
9362           requirement already, so we might just well spell it
9363           out.  Also, we do need at least 0.10.14 for
9364           gst_element_class_set_details_simple().  Make check
9365           for gmyth a bit more restrictive so things don't break
9366           if the next version changes API.
9367
9368         * ext/alsaspdif/alsaspdifsink.c:
9369           Work around alsa alloca macros triggering 'always evaluates to
9370           true' warnings with gcc-4.2 and fix compilation with gcc-4.2.
9371           Also don't leak the device string.
9372
9373         * ext/mpeg2enc/gstmpeg2enc.cc:
9374         * ext/soundtouch/gstpitch.cc:
9375         * gst/modplug/gstmodplug.cc:
9376           Fix compilation with g++4.2 and -Wall -Werror (also needs plugin
9377           define fix from core CVS). Fixes #462737.
9378
9379 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
9380
9381         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
9382
9383         * gst/rtpmanager/gstrtpbin.c: (create_stream),
9384         (gst_rtp_bin_class_init):
9385         Fix memleak. Fixes #484990.
9386
9387 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
9388
9389         * gst/librfb/rfbbuffer.c: (rfb_buffer_new_and_alloc):
9390         * gst/librfb/rfbbuffer.h:
9391         * gst/librfb/rfbdecoder.c: (rfb_socket_get_buffer):
9392         * gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_chain):
9393         * gst/nsf/nes6502.c: (nes6502_execute):
9394         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
9395         * gst/real/gstrealvideodec.c: (open_library):
9396         * gst/real/gstrealvideodec.h:
9397         * gst/rtpmanager/gstrtpsession.c: (create_recv_rtp_sink),
9398         (create_recv_rtcp_sink), (create_send_rtp_sink):
9399         Fix compiler warnings shown by Forte.
9400
9401 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
9402
9403         * gst/rtpmanager/gstrtpbin.c: (get_pt_map),
9404         (gst_rtp_bin_clear_pt_map), (gst_rtp_bin_class_init):
9405         Fix caps refcounting for payload maps.
9406         When clearing payload maps, also clear sessions and streams payload
9407         maps.
9408
9409         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_get_caps),
9410         (gst_rtp_pt_demux_clear_pt_map), (gst_rtp_pt_demux_chain),
9411         (find_pad_for_pt):
9412         Implement clearing the payload map.
9413
9414         * gst/rtpmanager/gstrtpsession.c:
9415         (gst_rtp_session_event_send_rtp_sink):
9416         Forward flush events instead of leaking them.
9417
9418         * gst/rtpmanager/gstrtpssrcdemux.c:
9419         (gst_rtp_ssrc_demux_rtcp_sink_event):
9420         Correctly refcount events before pushing them.
9421
9422 2007-10-08  Sebastian Dröge  <slomo@circular-chaos.org>
9423
9424         * ext/gio/gstgio.c: (gst_gio_get_supported_protocols):
9425         Use GIO function to get a list of supported URI schemes instead of
9426         hard coding something.
9427
9428 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
9429
9430         * gst/rtpmanager/rtpsession.c: (rtp_session_next_timeout),
9431         When reconsidering RTCP timeouts, set the next timeout against the last
9432         report time instead of the current clock time so that we don't end up
9433         reconsidering forever.
9434
9435 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
9436
9437         * gst/rtpmanager/gstrtpjitterbuffer.c:
9438         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
9439         Only peek at the tail element instead of popping it off, which allows
9440         us to greatly simplify things when the tail element changes.
9441
9442         * gst/rtpmanager/gstrtpsession.c:
9443         (gst_rtp_session_event_recv_rtp_sink):
9444         * gst/rtpmanager/gstrtpssrcdemux.c:
9445         (gst_rtp_ssrc_demux_sink_event):
9446         Forward FLUSH events instead of leaking them.
9447
9448         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_reset_skew),
9449         (calculate_skew), (rtp_jitter_buffer_insert):
9450         * gst/rtpmanager/rtpjitterbuffer.h:
9451         Remove the tail-changed callback in favour of a simple boolean when we
9452         insert a buffer in the queue.
9453         Add method to peek the tail of the buffer.
9454
9455 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
9456
9457         Patch by: Gautier Portet <kassoulet at gmail dot com>
9458
9459         * gst/xingheader/gstxingmux.c:
9460         The size of the Xing header is actually 417 as it's rounded to the
9461         next smaller integer. Fixes #397759.
9462
9463         * gst/xingheader/gstxingmux.c: (xing_generate_header),
9464         (xing_push_header):
9465         Some random cleanup, add FIXMEs and TODOs and check if the newsegment
9466         event to the beginning was successful before pushing the header again.
9467
9468 2007-10-05  Sebastian Dröge  <slomo@circular-chaos.org>
9469
9470         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
9471
9472         * gst/mpegtsparse/mpegtspacketizer.c:
9473         (mpegts_packetizer_stream_new):
9474         Don't skip PAT with version number 0. Fixes #483400.
9475         * gst/mpegtsparse/mpegtsparse.c: (mpegts_parse_apply_pat):
9476         Make all values above 0 mark a referenced program as they can be
9477         incremented and only 1 had marked a referenced program before, causing
9478         actually referenced programs to be unreferenced.
9479
9480 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9481
9482         * gst/sdp/gstsdpdemux.h:
9483         Change signature of pt to fix compilation on some platforms.
9484
9485 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9486
9487         * gst/rtpmanager/gstrtpjitterbuffer.c:
9488         (gst_rtp_jitter_buffer_flush_start),
9489         (gst_rtp_jitter_buffer_flush_stop),
9490         (gst_rtp_jitter_buffer_change_state), (apply_offset),
9491         (gst_rtp_jitter_buffer_loop):
9492         Remove some old unused variables.
9493         Don't add the latency to the skew corrected timestamp, latency is only
9494         used to sync against the clock.
9495         Improve debugging.
9496
9497         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9498         (rtp_jitter_buffer_reset_skew), (calculate_skew):
9499         * gst/rtpmanager/rtpjitterbuffer.h:
9500         Handle case where server timestamp goes backwards or wildly jumps by
9501         temporarily pausing the skew correction.
9502         Improve debugging.
9503
9504 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
9505
9506         * gst/sdp/Makefile.am:
9507         Forgot to commit makefile.
9508
9509 2007-10-02  Sebastian Dröge  <slomo@circular-chaos.org>
9510
9511         * ext/gio/gstgiosink.c: (gst_gio_sink_start):
9512         Update to API changes in GIO.
9513
9514 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
9515
9516         * gst/sdp/gstsdpdemux.c: (gst_sdp_demux_media_to_caps):
9517         Use new function in -base to get the default clock-rate.
9518
9519 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
9520
9521         * configure.ac:
9522         * gst/sdp/gstsdpdemux.c: (_do_init), (gst_sdp_demux_base_init),
9523         (gst_sdp_demux_class_init), (gst_sdp_demux_init),
9524         (gst_sdp_demux_finalize), (gst_sdp_demux_set_property),
9525         (gst_sdp_demux_get_property), (find_stream_by_id),
9526         (find_stream_by_pt), (find_stream_by_udpsrc), (find_stream),
9527         (gst_sdp_demux_stream_free), (gst_sdp_demux_create_stream),
9528         (gst_sdp_demux_cleanup), (get_default_rate_for_pt),
9529         (gst_sdp_demux_parse_rtpmap), (gst_sdp_demux_media_to_caps),
9530         (new_session_pad), (request_pt_map), (gst_sdp_demux_do_stream_eos),
9531         (on_bye_ssrc), (on_timeout), (gst_sdp_demux_configure_manager),
9532         (gst_sdp_demux_stream_configure_udp),
9533         (gst_sdp_demux_stream_configure_udp_sink),
9534         (gst_sdp_demux_combine_flows), (gst_sdp_demux_stream_push_event),
9535         (gst_sdp_demux_handle_message), (gst_sdp_demux_start),
9536         (gst_sdp_demux_sink_event), (gst_sdp_demux_sink_chain),
9537         (gst_sdp_demux_change_state):
9538         * gst/sdp/gstsdpdemux.h:
9539         * gst/sdp/gstsdpelem.c: (plugin_init):
9540         Added SDP demuxer element. Fixes #426657.
9541
9542 2007-10-01  Sebastian Dröge  <slomo@circular-chaos.org>
9543
9544         Patch by: mutex at runbox dot com
9545
9546         * gst/mpegtsparse/mpegtspacketizer.c:
9547         (mpegts_packetizer_parse_adaptation_field_control):
9548         * gst/mpegtsparse/mpegtsparse.c: (mpegts_parse_base_init),
9549         (mpegts_parse_init), (mpegts_parse_push):
9550         * gst/mpegtsparse/mpegtsparse.h:
9551         Remove useless src pad that only results in not linked errors,
9552         fix a broken pointer dereference and make MAX_CONTINUITY constant
9553         conform to the standard to stop outputting corrupted data.
9554         Fixes #481276, #481279.
9555
9556 2007-09-29  Tim-Philipp Müller  <tim at centricular dot net>
9557
9558         * ext/mythtv/gstmythtvsrc.c:
9559           Re-apply docs patch from #468039; fix tab.
9560
9561         * gst/mpegtsparse/.cvsignore:
9562           Ignore marshaller files generated at build time.
9563
9564 2007-09-29  Sebastian Dröge  <slomo@circular-chaos.org>
9565
9566         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
9567         (gst_gio_sink_set_property), (gst_gio_sink_render):
9568         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
9569         (gst_gio_src_set_property):
9570         Some minor cleanup and allow setting the location only when the
9571         element is not playing or paused.
9572
9573 2007-09-29  Sebastian Dröge  <slomo@circular-chaos.org>
9574
9575         * configure.ac:
9576         Update gio's pkg-config file name as currently in SVN.
9577
9578         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_location):
9579         Remove special casing for a NULL query string. g_strjoin won't add
9580         the separator if there's only one string.
9581
9582 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9583
9584         * gst/rtpmanager/gstrtpbin.c: (free_client):
9585         Fix crasher in dispose.
9586
9587         * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew):
9588         Handle cases where input buffers have no timestamps so that no clock
9589         skew can be calculated, in this case interpolate timestamps based on
9590         rtp timestamp and assume a 0 clock skew.
9591
9592 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9593
9594         * gst/rtpmanager/gstrtpjitterbuffer.c: (apply_latency),
9595         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_query):
9596         Remove jitter correction code, it's now in the lower level object.
9597         Use new -core method for doing a peer query.
9598
9599         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9600         (calculate_skew), (rtp_jitter_buffer_insert):
9601         * gst/rtpmanager/rtpjitterbuffer.h:
9602         Move jitter correction to the lowlevel jitterbuffer.
9603         Increase the max window size.
9604         When filling the window, already start estimating the skew using a
9605         parabolic weighting factor so that we have a much better startup
9606         behaviour that gets more accurate with the more samples we have.
9607         Increase the default weighting factor for the steady state to get
9608         smoother timestamps.
9609
9610 2007-09-28  Sebastian Dröge  <slomo@circular-chaos.org>
9611
9612         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_proxy),
9613         (gst_neonhttp_src_send_request_and_redirect):
9614         Now that we require libneon >= 0.26 remove the neon 0.25 backward
9615         compatibility stuff. Also fix the default location.
9616
9617 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
9618
9619         * configure.ac:
9620         We require libneon >= 26 now for the query field in ne_uri.
9621
9622 2007-09-28  Sebastian Dröge  <slomo@circular-chaos.org>
9623
9624         Patch by: Wouter Cloetens <wouter@mind.be>
9625
9626         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_dispose),
9627         (gst_neonhttp_src_set_location),
9628         (gst_neonhttp_src_send_request_and_redirect):
9629         * ext/neon/gstneonhttpsrc.h:
9630         Don't discard GET parameters from URL if existing.
9631         Fixes #481200.
9632
9633 2007-09-27  Thijs Vermeir  <thijsvermeir@gmail.com>
9634
9635         * gst/librfb/gstrfbsrc.c:
9636         * gst/librfb/gstrfbsrc.h:
9637                 Added a property for incremental screen updates
9638
9639 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
9640
9641         * ext/xvid/gstxvidenc.c:
9642         * ext/xvid/gstxvidenc.h:
9643           Remove superfluous 'frame-encoded' signal (people can
9644           use an upstream identity's 'handoff' signal or a pad
9645           probe for this if they must know).
9646
9647 2007-09-27  Julien MOUTTE  <julien@moutte.net>
9648
9649         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9650         (gst_flv_parse_tag_video): I got it wrong again, audio rate 
9651         was not detected correctly in all cases.
9652
9653 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
9654
9655         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_dispose),
9656         (gst_rtp_bin_finalize):
9657         Fix cleanup crasher.
9658
9659         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
9660         (calculate_skew):
9661         * gst/rtpmanager/rtpjitterbuffer.h:
9662         Dynamically adjust the skew calculation window so that we calculate it
9663         over a period of around 2 seconds.
9664
9665 2007-09-26  Thijs Vermeir  <thijsvermeir@gmail.com>
9666
9667         * gst/librfb/gstrfbsrc.c:
9668                 fix bug from generic/states.gdb
9669
9670 2007-09-26  Julien MOUTTE  <julien@moutte.net>
9671
9672         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9673         (gst_flv_parse_tag_video): codec_data is needed for every tag
9674         not just the first one. (Fix a stupid bug i introduced without
9675         testing)
9676
9677 2007-09-26  Julien MOUTTE  <julien@moutte.net>
9678
9679         * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio),
9680         (gst_flv_parse_tag_video): Fix bit masks operations to be
9681         sure we detect the codec_tags and sample rates correctly.
9682         Fix raw audio caps generation.
9683
9684 2007-09-24  Stefan Kost  <ensonic@users.sf.net>
9685
9686         * ext/audioresample/gstaudioresample.c:
9687         * ext/x264/gstx264enc.c:
9688         * gst/dvdspu/gstdvdspu.c:
9689         * gst/dvdspu/gstdvdspu.h:
9690         * gst/festival/gstfestival.c:
9691         * gst/h264parse/gsth264parse.c:
9692         * gst/mpegtsparse/mpegtspacketizer.c:
9693         * gst/mpegtsparse/mpegtsparse.c:
9694         * gst/multifile/gstmultifilesink.c:
9695         * gst/multifile/gstmultifilesrc.c:
9696         * gst/nuvdemux/gstnuvdemux.c:
9697         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
9698         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
9699         * sys/vcd/vcdsrc.c:
9700           Massive leak fixing, plus code cleanups.
9701
9702 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9703
9704         * po/LINGUAS:
9705           Added translations.
9706
9707 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9708
9709         translated by: Jakub Bogusz <qboosh@pld-linux.org>
9710
9711         * po/pl.po:
9712           Added Polish translation.
9713
9714 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9715
9716         translated by: Ilkka Tuohela <hile@iki.fi>
9717
9718         * po/fi.po:
9719           Added Finnish translation.
9720
9721 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9722
9723         translated by: Jorge González González <aloriel@gmail.com>
9724
9725         * po/es.po:
9726           Added Spanish translation.
9727
9728 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9729
9730         translated by: Alexander Shopov <ash@contact.bg>
9731
9732         * po/bg.po:
9733           Added Bulgarian translation.
9734
9735 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9736
9737         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
9738         Update hierarchy.
9739         * ext/gio/gstgiosink.h:
9740         * ext/gio/gstgiosrc.h:
9741         Mark private fields of the instance structs private.
9742
9743 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9744
9745         * docs/plugins/Makefile.am:
9746         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
9747         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
9748         * docs/plugins/gst-plugins-bad-plugins.args:
9749         * docs/plugins/gst-plugins-bad-plugins.signals:
9750         * docs/plugins/inspect/plugin-bz2.xml:
9751         * docs/plugins/inspect/plugin-cdxaparse.xml:
9752         * docs/plugins/inspect/plugin-dfbvideosink.xml:
9753         * docs/plugins/inspect/plugin-dtsdec.xml:
9754         * docs/plugins/inspect/plugin-equalizer.xml:
9755         * docs/plugins/inspect/plugin-faac.xml:
9756         * docs/plugins/inspect/plugin-faad.xml:
9757         * docs/plugins/inspect/plugin-filter.xml:
9758         * docs/plugins/inspect/plugin-freeze.xml:
9759         * docs/plugins/inspect/plugin-gio.xml:
9760         * docs/plugins/inspect/plugin-gsm.xml:
9761         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
9762         * docs/plugins/inspect/plugin-h264parse.xml:
9763         * docs/plugins/inspect/plugin-modplug.xml:
9764         * docs/plugins/inspect/plugin-mpeg2enc.xml:
9765         * docs/plugins/inspect/plugin-musepack.xml:
9766         * docs/plugins/inspect/plugin-musicbrainz.xml:
9767         * docs/plugins/inspect/plugin-nsfdec.xml:
9768         * docs/plugins/inspect/plugin-replaygain.xml:
9769         * docs/plugins/inspect/plugin-soundtouch.xml:
9770         * docs/plugins/inspect/plugin-spcdec.xml:
9771         * docs/plugins/inspect/plugin-spectrum.xml:
9772         * docs/plugins/inspect/plugin-speed.xml:
9773         * docs/plugins/inspect/plugin-tta.xml:
9774         * docs/plugins/inspect/plugin-videosignal.xml:
9775         * docs/plugins/inspect/plugin-xingheader.xml:
9776         * docs/plugins/inspect/plugin-xvid.xml:
9777         Add the GIO plugin to the docs and do a make update
9778         while doing that.
9779
9780         * ext/gio/gstgiosrc.c: (gst_gio_src_start):
9781         Fix a small memleak.
9782
9783 2007-09-21  Sebastian Dröge  <slomo@circular-chaos.org>
9784
9785         Patch by: René Stadler <mail at renestadler dot de>
9786
9787         * configure.ac:
9788         * ext/Makefile.am:
9789         * ext/gio/Makefile.am:
9790         * ext/gio/gstgio.c: (gst_gio_error), (gst_gio_seek),
9791         (gst_gio_get_supported_protocols),
9792         (gst_gio_uri_handler_get_type_sink),
9793         (gst_gio_uri_handler_get_type_src),
9794         (gst_gio_uri_handler_get_protocols), (gst_gio_uri_handler_get_uri),
9795         (gst_gio_uri_handler_set_uri), (gst_gio_uri_handler_init),
9796         (gst_gio_uri_handler_do_init), (plugin_init):
9797         * ext/gio/gstgio.h:
9798         * ext/gio/gstgiosink.c: (gst_gio_sink_base_init),
9799         (gst_gio_sink_class_init), (gst_gio_sink_init),
9800         (gst_gio_sink_finalize), (gst_gio_sink_set_property),
9801         (gst_gio_sink_get_property), (gst_gio_sink_start),
9802         (gst_gio_sink_stop), (gst_gio_sink_unlock),
9803         (gst_gio_sink_unlock_stop), (gst_gio_sink_event),
9804         (gst_gio_sink_render), (gst_gio_sink_query):
9805         * ext/gio/gstgiosink.h:
9806         * ext/gio/gstgiosrc.c: (gst_gio_src_base_init),
9807         (gst_gio_src_class_init), (gst_gio_src_init),
9808         (gst_gio_src_finalize), (gst_gio_src_set_property),
9809         (gst_gio_src_get_property), (gst_gio_src_start),
9810         (gst_gio_src_stop), (gst_gio_src_get_size),
9811         (gst_gio_src_is_seekable), (gst_gio_src_unlock),
9812         (gst_gio_src_unlock_stop), (gst_gio_src_check_get_range),
9813         (gst_gio_src_create):
9814         * ext/gio/gstgiosrc.h:
9815         Add a GIO/GVFS plugin with source and sink elements. This will
9816         only be enabled when --enable-experimental is given to configure
9817         for now as the GIO API is not stable yet. Fixes #476916.
9818
9819 2007-09-21  Thijs Vermeir  <thijsvermeir@gmail.com>
9820
9821         * gst/librfb/gstrfbsrc.c:
9822         * gst/librfb/rfbdecoder.c:
9823         * gst/librfb/rfbdecoder.h:
9824                 Added offset-x, offset-y, width and height property
9825                 for selecting a region from the screen
9826
9827 2007-09-21  Thijs Vermeir  <thijsvermeir@gmail.com>
9828
9829         * gst/librfb/gstrfbsrc.c:
9830                 Minimum raw encoding is working now
9831         * gst/librfb/rfbdecoder.c:
9832                 fix address while reading from stream
9833
9834 2007-09-20  Thijs Vermeir  <thijsvermeir@gmail.com>
9835
9836         * gst/librfb/gstrfbsrc.c:
9837                 raw encoding is working, but it looks like the 
9838                 ffmpegcolorspace plugin can't handle high resolutions
9839
9840 2007-09-20  Thijs Vermeir  <thijsvermeir@gmail.com>
9841
9842         * gst/librfb/gstrfbsrc.c:
9843                 bpp, depth and endianness are now set from the
9844                 stream.
9845
9846 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9847
9848         * examples/app/appsrc_ex.c: (main):
9849         Fix compilation after changing the name of a method.
9850
9851 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
9852
9853         * ext/alsaspdif/alsaspdifsink.c:
9854         * ext/timidity/gsttimidity.c:
9855         * ext/timidity/gstwildmidi.c:
9856         * gst/mpegvideoparse/mpegvideoparse.c:
9857           Fix memory leaks. More to come.
9858
9859         * tests/check/Makefile.am:
9860         * tests/check/generic/states.c:
9861           Improved state change unit test.        
9862
9863 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9864
9865         * gst/rtpmanager/gstrtpbin.c: (on_ssrc_active), (create_session),
9866         (gst_rtp_bin_class_init):
9867         * gst/rtpmanager/gstrtpbin.h:
9868         * gst/rtpmanager/gstrtpsession.c: (on_ssrc_active),
9869         (gst_rtp_session_class_init), (gst_rtp_session_init),
9870         (gst_rtp_session_event_send_rtp_sink):
9871         * gst/rtpmanager/gstrtpsession.h:
9872         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
9873         (on_ssrc_active), (rtp_session_process_rb):
9874         * gst/rtpmanager/rtpsession.h:
9875         Add notification of active SSRCs to various RTP elements. Fixes #478566.
9876
9877 2007-09-20  Wim Taymans  <wim.taymans@gmail.com>
9878
9879         * gst-libs/gst/app/gstappsink.c: (gst_app_marshal_OBJECT__VOID),
9880         (gst_app_sink_class_init), (gst_app_sink_init),
9881         (gst_app_sink_dispose), (gst_app_sink_finalize),
9882         (gst_app_sink_set_property), (gst_app_sink_get_property),
9883         (gst_app_sink_flush_unlocked), (gst_app_sink_start),
9884         (gst_app_sink_event), (gst_app_sink_getcaps),
9885         (gst_app_sink_set_caps), (gst_app_sink_get_caps),
9886         (gst_app_sink_is_eos), (gst_app_sink_pull_preroll),
9887         (gst_app_sink_pull_buffer):
9888         * gst-libs/gst/app/gstappsink.h:
9889         Add properties, signals and actions to access the element even without
9890         linking to the library.
9891         Fix some method names and signatures.
9892
9893 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
9894
9895         Patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
9896
9897         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst),
9898         (gst_faad_srcgetcaps), (gst_faad_update_caps):
9899         Don't set channel positions on regular mono and stereo cases.
9900         Fixes #476370.
9901
9902 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9903
9904         * gst/librfb/gstrfbsrc.c:
9905         * gst/librfb/rfbdecoder.c:
9906         * gst/librfb/rfbdecoder.h:
9907                 It is now possible to connect to a vncserver.
9908                 there are still some issues with the ouput of 
9909                 the screen. Looks like some lines are confused
9910
9911 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
9912
9913         * docs/plugins/.cvsignore:
9914         * tests/check/.cvsignore:
9915           Ignore registries in any format.
9916
9917 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
9918
9919         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
9920         (open_library), (gst_real_video_dec_init),
9921         (gst_real_video_dec_set_property),
9922         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
9923         * gst/real/gstrealvideodec.h:
9924         Don't generate an error for occasional decoding errors.
9925         Add max-errors property.
9926         Error out when we receive max-errors in a row. Fixes #478159.
9927
9928 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9929
9930         * gst/librfb/gstrfbsrc.c: 
9931                 Add password property (write only)
9932         * gst/librfb/rfbdecoder.c: 
9933                 Read the reason on failure
9934                 Use the password property for authentication
9935         * gst/librfb/rfbdecoder.h:
9936                 Add defines for version checking
9937
9938 2007-09-19  Sebastian Dröge  <slomo@circular-chaos.org>
9939
9940         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_destroy),
9941         (gst_dfbsurface_class_init):
9942         When finalizing GstDfbSurface, a subclass of GstBuffer, correctly
9943         chain up to the parent class to free everything, including caps.
9944
9945 2007-09-19  Thijs Vermeir  <thijsvermeir@gmail.com>
9946
9947         * gst/librfb/Makefile.am:
9948         * gst/librfb/d3des.c:
9949         * gst/librfb/d3des.h:
9950         * gst/librfb/rfbdecoder.c:
9951         * gst/librfb/vncauth.c:
9952         * gst/librfb/vncauth.h:
9953         VNC Authentication should be working now
9954         temperaly with fake password 'testtest'
9955
9956 2007-09-18  Thijs Vermeir  <thijsvermeir@gmail.com>
9957
9958         * gst/librfb/rfbdecoder.c:
9959         * gst/librfb/rfbdecoder.h:
9960         Added some documentation about security handling
9961         start implementing security handling for rfb 3.3
9962
9963 2007-09-18  Stefan Kost  <ensonic@users.sf.net>
9964
9965         * gst/spectrum/demo-audiotest.c:
9966         * gst/spectrum/demo-osssrc.c:
9967           Handling window resize.
9968
9969 2007-09-18  Stefan Kost  <ensonic@users.sf.net>
9970
9971         * ChangeLog:
9972           Add missing newline.
9973
9974         * gst/librfb/rfbdecoder.c:
9975           Fix the build (missing stdlib.h).
9976
9977         * gst/spectrum/gstspectrum.c:
9978         * gst/spectrum/gstspectrum.h:
9979           Use basetransform segment so that it is correctly managed on flushes
9980           and start/stop. Report message timestamp as stream time, which is what
9981           an application can understand. (Yes these are adapted from wim recent
9982           level element changes)
9983
9984 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
9985
9986         * gst/rtpmanager/gstrtpbin.c: (new_ssrc_pad_found):
9987         Link to the right pads regardless of which one was created first in the
9988         ssrc demuxer.
9989
9990         * gst/rtpmanager/gstrtpjitterbuffer.c:
9991         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
9992         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
9993         (gst_rtp_session_chain_recv_rtp), (gst_rtp_session_chain_send_rtp):
9994         * gst/rtpmanager/rtpsource.c: (calculate_jitter):
9995         Improve debugging.
9996
9997         * gst/rtpmanager/gstrtpssrcdemux.c: (create_demux_pad_for_ssrc),
9998         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_finalize),
9999         (gst_rtp_ssrc_demux_sink_event),
10000         (gst_rtp_ssrc_demux_rtcp_sink_event), (gst_rtp_ssrc_demux_chain),
10001         (gst_rtp_ssrc_demux_rtcp_chain),
10002         (gst_rtp_ssrc_demux_internal_links):
10003         * gst/rtpmanager/gstrtpssrcdemux.h:
10004         Fix race in creating the RTP and RTCP pads when a new SSRC is detected.
10005
10006 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10007
10008         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_set_property),
10009         (gst_rtp_bin_get_property):
10010         Use lock to protect variable.
10011
10012         * gst/rtpmanager/gstrtpjitterbuffer.c:
10013         (gst_rtp_jitter_buffer_class_init),
10014         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_chain),
10015         (convert_rtptime_to_gsttime), (gst_rtp_jitter_buffer_loop):
10016         Reconstruct GST timestamp from RTP timestamps based on measured clock
10017         skew and sync offset.
10018
10019         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_init),
10020         (rtp_jitter_buffer_set_tail_changed),
10021         (rtp_jitter_buffer_set_clock_rate),
10022         (rtp_jitter_buffer_get_clock_rate), (calculate_skew),
10023         (rtp_jitter_buffer_insert), (rtp_jitter_buffer_peek):
10024         * gst/rtpmanager/rtpjitterbuffer.h:
10025         Measure clock skew.
10026         Add callback to be notfied when a new packet was inserted at the tail.
10027
10028         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10029         (calculate_jitter), (rtp_source_send_rtp):
10030         * gst/rtpmanager/rtpsource.h:
10031         Remove clock skew detection, it's move to the jitterbuffer now.
10032
10033 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
10034
10035         Patch by: Daniel Charles <dcharles at ti dot com>
10036
10037         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_bandmode_get_type),
10038         (gst_amrwbenc_set_property), (gst_amrwbenc_get_property),
10039         (gst_amrwbenc_class_init), (gst_amrwbenc_chain):
10040         * ext/amrwb/gstamrwbenc.h:
10041         Add property to control bandmode. Fixes #477306.
10042
10043 2007-09-15  Wim Taymans  <wim.taymans@gmail.com>
10044
10045         * gst/rtpmanager/gstrtpbin.c: (create_session):
10046         Also set NTP base time on new sessions.
10047
10048         * gst/rtpmanager/gstrtpjitterbuffer.c:
10049         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_query),
10050         (gst_rtp_jitter_buffer_set_property),
10051         (gst_rtp_jitter_buffer_get_property):
10052         Use the right lock to protect our variables.
10053         Fix some comment.
10054
10055         * gst/rtpmanager/gstrtpsession.c:
10056         (gst_rtp_session_getcaps_send_rtp),
10057         (gst_rtp_session_chain_send_rtp), (create_send_rtp_sink):
10058         Implement getcaps on the sender sinkpad so that payloaders can negotiate
10059         the right SSRC.
10060
10061 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
10062
10063         * gst/rtpmanager/gstrtpbin.c: (create_session), (free_session),
10064         (get_client), (free_client), (gst_rtp_bin_associate),
10065         (free_stream), (gst_rtp_bin_class_init), (gst_rtp_bin_dispose),
10066         (gst_rtp_bin_finalize):
10067         * gst/rtpmanager/gstrtpjitterbuffer.c:
10068         (gst_rtp_jitter_buffer_class_init),
10069         (gst_rtp_jitter_buffer_finalize):
10070         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_release):
10071         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_finalize),
10072         (gst_rtp_session_set_property), (gst_rtp_session_chain_recv_rtp),
10073         (gst_rtp_session_chain_send_rtp):
10074         * gst/rtpmanager/gstrtpssrcdemux.c:
10075         (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_dispose):
10076         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
10077         * gst/rtpmanager/rtpsession.h:
10078         Various leak fixes.
10079
10080 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
10081
10082         * gst/rtpmanager/gstrtpbin.c: (calc_ntp_ns_base),
10083         (gst_rtp_bin_change_state), (new_payload_found), (create_send_rtp):
10084         Calculate and configure the NTP base time so that we can generate better
10085         NTP times in SR packets.
10086         Set caps on new ghostpad.
10087
10088         * gst/rtpmanager/gstrtpjitterbuffer.c:
10089         (gst_rtp_jitter_buffer_loop):
10090         Clean debug statement.
10091
10092         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10093         (gst_rtp_session_init), (gst_rtp_session_set_property),
10094         (gst_rtp_session_get_property), (get_current_ntp_ns_time),
10095         (rtcp_thread), (gst_rtp_session_event_recv_rtp_sink),
10096         (gst_rtp_session_internal_links), (gst_rtp_session_chain_recv_rtp),
10097         (gst_rtp_session_event_send_rtp_sink),
10098         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
10099         (create_send_rtp_sink):
10100         * gst/rtpmanager/gstrtpsession.h:
10101         Add ntp-ns-base property to convert running_time to NTP time.
10102         Handle NEWSEGMENT events on send and recv RTP pads so that we can
10103         calculate the running time and thus NTP time of the packets.
10104         Simplify getting the current NTP time using the pipeline clock.
10105         Implement internal links functions.
10106         Use the buffer timestamp to calculate the NTP time instead of the clock.
10107
10108         * gst/rtpmanager/gstrtpssrcdemux.c: (create_demux_pad_for_ssrc),
10109         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_sink_event),
10110         (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_rtcp_chain),
10111         (gst_rtp_ssrc_demux_internal_links),
10112         (gst_rtp_ssrc_demux_src_query):
10113         * gst/rtpmanager/gstrtpssrcdemux.h:
10114         Implement internal links function.
10115         Calculate the diff between different streams, this might be used later
10116         to get the inter stream latency.
10117
10118         * gst/rtpmanager/rtpsession.c: (rtp_session_send_rtp):
10119         Simple cleanup.
10120
10121         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10122         (calculate_jitter), (rtp_source_send_rtp), (rtp_source_get_new_sr):
10123         Make the clock skew window a little bigger.
10124         Apply the clock skew to all buffers, not just one with a new timestamp.
10125         Calculate and debug sender clock drift.
10126         Use extended last timestamp to interpolate for SR reports.
10127
10128 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
10129
10130         Patch by: Peter Kjellerstedt  <pkj at axis com>
10131
10132         * gst-libs/gst/app/gstappsink.c:
10133         * gst/flv/gstflvdemux.c:
10134         * gst/flv/gstflvparse.c:
10135         * gst/interleave/deinterleave.c:
10136         * gst/switch/gstswitch.c:
10137           Printf format fixes (#476128).
10138
10139 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
10140
10141         Patch by: Thomas Green  <tom78999 gmail com>
10142
10143         * ext/neon/gstneonhttpsrc.c:
10144           With libneon 2.6, we need to set the NE_SESSFLAG_ICYPROTO
10145           flag if we want ICY streams to be handled too, otherwise
10146           libneon will error out with a 'can't parse reponse' error.
10147           Fixes #474696.
10148
10149         * tests/check/elements/neonhttpsrc.c:
10150           Unit test for the above by Yours Truly.
10151
10152 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
10153
10154         * configure.ac:
10155           Use AC_TRY_COMPILE instead of AC_TRY_RUN for the faad and the
10156           xvid configure checks, so they still work when cross-compiling.
10157           Fixes #452009.
10158
10159 2007-09-07  Sebastian Dröge  <slomo@circular-chaos.org>
10160
10161         * gst/spectrum/gstspectrum.c: (gst_spectrum_start),
10162         (gst_spectrum_transform_ip):
10163         Use the correct parameter order for the memset calls.
10164         Thanks to Christian Schaller for noticing.
10165
10166 2007-09-06  Stefan Kost  <ensonic@users.sf.net>
10167
10168         * gst/mpegtsparse/mpegtsparse.c:
10169           Fix the build (missing stdlib.h).
10170
10171 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
10172
10173         * gst/spectrum/fix_fft.c:
10174         Remove fixed point FFT as it's not used anymore.
10175
10176 2007-09-06  Sebastian Dröge  <slomo@circular-chaos.org>
10177
10178         * configure.ac:
10179         * gst/spectrum/Makefile.am:
10180         * gst/spectrum/demo-audiotest.c: (draw_spectrum),
10181         (message_handler), (main):
10182         * gst/spectrum/demo-osssrc.c: (draw_spectrum), (message_handler):
10183         * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init),
10184         (gst_spectrum_class_init), (gst_spectrum_init),
10185         (gst_spectrum_dispose), (gst_spectrum_set_property),
10186         (gst_spectrum_get_property), (gst_spectrum_start),
10187         (gst_spectrum_setup), (gst_spectrum_message_new),
10188         (gst_spectrum_transform_ip):
10189         * gst/spectrum/gstspectrum.h:
10190         Port GstSpectrum to GstAudioFilter and libgstfft, add support
10191         for int32, float and double, use floats for the message contents,
10192         average all FFTs done in one interval for better results, use
10193         a better windowing function, allow posting the phase in the message
10194         and actually do an FFT with the requested number of bands instead
10195         of interpolating.
10196
10197         * tests/check/elements/spectrum.c: (GST_START_TEST),
10198         (spectrum_suite):
10199         Improve the units tests by checking for a 11025Hz sine wave
10200         and add unit tests for all 4 supported sample types.
10201
10202 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
10203
10204         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
10205         (gst_real_video_dec_setcaps):
10206         Add some more debugging.
10207         Don't set LONG for width/height in caps.
10208         Set correct output buffer size when caps changed.
10209         The custom message sent to the decoder should not include the format and
10210         subformat. Fixes #471554.
10211
10212 2007-09-04  Tim-Philipp Müller  <tim at centricular dot net>
10213
10214         * gst/rtpmanager/gstrtpsession.c:
10215           Make compiler happy: fix compilation with -Wall -Werror
10216           (#473562).
10217
10218 2007-09-03  Johan Dahlin  <johan@gnome.org>
10219
10220         * gst/nsf/gstnsf.c: (gst_nsfdec_finalize), (start_play_tune):
10221         * gst/nsf/gstnsf.h:
10222         Add support for (very) basic tagging.
10223         
10224 2007-09-03  Wim Taymans  <wim.taymans@gmail.com>
10225
10226         * gst/rtpmanager/gstrtpbin-marshal.list:
10227         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_get_client),
10228         (gst_rtp_bin_associate), (gst_rtp_bin_sync_chain), (create_stream),
10229         (gst_rtp_bin_init), (caps_changed), (new_ssrc_pad_found),
10230         (create_recv_rtp), (create_recv_rtcp), (create_send_rtp):
10231         * gst/rtpmanager/gstrtpbin.h:
10232         Updated example pipelines in docs.
10233         Handle sync_rtcp buffers from the SSRC demuxer to perform lip-sync.
10234         Set the default latency correctly.
10235         Add some more points where we can get caps.
10236
10237         * gst/rtpmanager/gstrtpjitterbuffer.c:
10238         (gst_rtp_jitter_buffer_class_init),
10239         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_loop),
10240         (gst_rtp_jitter_buffer_query),
10241         (gst_rtp_jitter_buffer_set_property),
10242         (gst_rtp_jitter_buffer_get_property):
10243         Add ts-offset property to control timestamping.
10244
10245         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10246         (gst_rtp_session_init), (gst_rtp_session_set_property),
10247         (gst_rtp_session_get_property), (get_current_ntp_ns_time),
10248         (rtcp_thread), (stop_rtcp_thread), (gst_rtp_session_change_state),
10249         (gst_rtp_session_send_rtcp), (gst_rtp_session_sync_rtcp),
10250         (gst_rtp_session_cache_caps), (gst_rtp_session_clock_rate),
10251         (gst_rtp_session_sink_setcaps), (gst_rtp_session_chain_recv_rtp),
10252         (gst_rtp_session_event_send_rtp_sink),
10253         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
10254         (create_recv_rtcp_sink), (create_send_rtp_sink),
10255         (create_send_rtcp_src):
10256         Various cleanups.
10257         Feed rtpsession manager with NTP time based on pipeline clock when
10258         handling RTP packets and RTCP timeouts.
10259         Perform all RTCP with the system clock.
10260         Set caps on RTCP outgoing buffers.
10261
10262         * gst/rtpmanager/gstrtpssrcdemux.c: (find_demux_pad_for_ssrc),
10263         (create_demux_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init),
10264         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_sink_event),
10265         (gst_rtp_ssrc_demux_rtcp_sink_event), (gst_rtp_ssrc_demux_chain),
10266         (gst_rtp_ssrc_demux_rtcp_chain):
10267         * gst/rtpmanager/gstrtpssrcdemux.h:
10268         Also demux RTCP messages.
10269
10270         * gst/rtpmanager/rtpsession.c: (rtp_session_set_callbacks),
10271         (update_arrival_stats), (rtp_session_process_rtp),
10272         (rtp_session_process_rb), (rtp_session_process_sr),
10273         (rtp_session_process_rr), (rtp_session_process_rtcp),
10274         (rtp_session_send_rtp), (rtp_session_send_bye),
10275         (session_start_rtcp), (session_report_blocks), (session_cleanup),
10276         (rtp_session_on_timeout):
10277         * gst/rtpmanager/rtpsession.h:
10278         Remove the get_time callback, the GStreamer part will feed us with
10279         enough timing information.
10280         Split sync timing and RTCP timing information.
10281         Factor out common RB handling for SR and RR.
10282         Send out SR RTCP packets for lip-sync.
10283         Move SR and RR packet info generation to the source.
10284
10285         * gst/rtpmanager/rtpsource.c: (rtp_source_init),
10286         (rtp_source_update_caps), (get_clock_rate), (calculate_jitter),
10287         (rtp_source_process_rtp), (rtp_source_send_rtp),
10288         (rtp_source_process_sr), (rtp_source_process_rb),
10289         (rtp_source_get_new_sr), (rtp_source_get_new_rb),
10290         (rtp_source_get_last_sr):
10291         * gst/rtpmanager/rtpsource.h:
10292         * gst/rtpmanager/rtpstats.h:
10293         Use caps on incomming buffers to get timing information when they are
10294         there.
10295         Calculate clock scew of the receiver compared to the sender and adjust
10296         the rtp timestamps.
10297         Calculate the round trip in sources.
10298         Do SR and RR calculations in the source.
10299
10300 2007-09-03  Renato Filho  <renato.filho@indt.org.br>
10301
10302         * configure.ac:
10303         updated gmyth version
10304
10305         * ext/mythtv/gstmythtvsrc.c:
10306         * ext/mythtv/gstmythtvsrc.h:
10307         Code rewrite
10308
10309 2007-08-31  Wim Taymans  <wim.taymans@gmail.com>
10310
10311         * gst/rtpmanager/gstrtpjitterbuffer.c:
10312         (gst_rtp_jitter_buffer_flush_stop),
10313         (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_loop):
10314         Use extended timestamp to release buffers from the jitterbuffer so that
10315         we can handle the rtp wraparound correctly.
10316
10317 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
10318
10319         * gst/rtpmanager/gstrtpjitterbuffer.c:
10320         (gst_rtp_jitter_buffer_loop):
10321         Improve Comments.
10322
10323         * gst/rtpmanager/gstrtpsession.c: (stop_rtcp_thread),
10324         (gst_rtp_session_change_state), (gst_rtp_session_parse_caps),
10325         (gst_rtp_session_clock_rate), (gst_rtp_session_sink_setcaps),
10326         (gst_rtp_session_event_send_rtp_sink), (create_recv_rtp_sink),
10327         (create_send_rtp_sink):
10328         Also parse the sink caps for clock-rate instead of only relying on the
10329         result of the signal.
10330
10331         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
10332         Make sure we fetch the clock rate for payloads we are sending out so
10333         that we can use it for SR reports.
10334
10335 2007-08-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10336
10337         * gst/switch/gstswitch.c (gst_switch_chain, gst_switch_set_property):
10338         If all information is known at time of setting start-time
10339         property, send new segments then.
10340
10341 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
10342
10343         * gst/rtpmanager/gstrtpsession.c: (stop_rtcp_thread),
10344         (gst_rtp_session_change_state),
10345         (gst_rtp_session_event_send_rtp_sink):
10346         * gst/rtpmanager/gstrtpsession.h:
10347         Distribute synchronisation parameters to the session manager so that it
10348         can generate correct SR packets for lip-sync.
10349
10350         * gst/rtpmanager/rtpsession.c: (rtp_session_set_base_time),
10351         (rtp_session_set_timestamp_sync), (session_start_rtcp):
10352         * gst/rtpmanager/rtpsession.h:
10353         Add methods for setting sync parameters.
10354         Set correct RTP time in SR packets using the sync params.
10355
10356         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
10357         * gst/rtpmanager/rtpsource.h:
10358         Record last RTP <-> GST timestamp so that we can use them to convert NTP
10359         to RTP timestamps in SR packets.
10360
10361 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
10362
10363         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map):
10364         Add some more advanced example pipelines.
10365
10366         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
10367         (stop_rtcp_thread), (gst_rtp_session_send_rtcp):
10368         Add some debug and FIXME.
10369         Release LOCK when performing session cleanup.
10370
10371         * gst/rtpmanager/rtpsession.c: (session_report_blocks):
10372         Add some debug.
10373
10374         * gst/rtpmanager/rtpsource.c: (calculate_jitter),
10375         (rtp_source_send_rtp):
10376         Make sure we always send RTP packets with the session SSRC.
10377
10378 2007-08-28  Tim-Philipp Müller  <tim at centricular dot net>
10379
10380         * gst/dvdspu/gstdvdspu.c:
10381           Don't need this include (fixes compilation in uninstalled setup).
10382
10383 2007-08-27  Wim Taymans  <wim.taymans@gmail.com>
10384
10385         * gst/rtpmanager/gstrtpjitterbuffer.c:
10386         (gst_rtp_jitter_buffer_change_state), (gst_rtp_jitter_buffer_loop),
10387         (gst_rtp_jitter_buffer_query):
10388         When synchronizing buffers, take peer latency into account.
10389         Don't try to add our latency to invalid peer max latency values.
10390
10391 2007-08-27  Julien MOUTTE  <julien@moutte.net>
10392
10393         * gst/flv/gstflvdemux.c: (gst_flv_demux_handle_seek_pull):
10394         Make sure we initialize the seek result.
10395
10396 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
10397
10398         * gst/dvdspu/Makefile.am:
10399         Commit the makefile too.
10400
10401 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
10402
10403         * configure.ac:
10404         * gst/dvdspu/.cvsignore:
10405         * gst/dvdspu/Notes.txt:
10406         * gst/dvdspu/gstdvdspu-render.c: (dvdspu_recalc_palette),
10407         (dvdspu_update_palettes), (dvdspu_clear_comp_buffers),
10408         (dvdspu_get_nibble), (dvdspu_get_rle_code), (dvdspu_draw_rle_run),
10409         (rle_end_x), (dvdspu_render_line), (dvdspu_update_chgcol),
10410         (dvdspu_render_line_with_chgcol), (dvdspu_blend_comp_buffers),
10411         (gstdvdspu_render_spu):
10412         * gst/dvdspu/gstdvdspu.c: (dvdspu_base_init), (dvdspu_class_init),
10413         (dvdspu_init), (dvdspu_clear), (dvdspu_dispose), (dvdspu_finalize),
10414         (dvdspu_flush_spu_info), (dvdspu_buffer_alloc), (dvdspu_src_event),
10415         (dvdspu_video_set_caps), (dvdspu_video_proxy_getcaps),
10416         (dvdspu_video_event), (dvdspu_video_chain),
10417         (dvspu_handle_vid_buffer), (dvdspu_redraw_still),
10418         (gstdvdspu_parse_chg_colcon), (dvdspu_exec_cmd_blk),
10419         (dvdspu_finish_spu_buf), (dvdspu_setup_cmd_blk),
10420         (dvdspu_handle_new_spu_buf), (dvdspu_handle_dvd_event),
10421         (dvdspu_dump_dcsq), (dvdspu_advance_spu),
10422         (dvdspu_check_still_updates), (dvdspu_subpic_chain),
10423         (dvdspu_subpic_event), (dvdspu_change_state),
10424         (gstdvdspu_plugin_init):
10425         * gst/dvdspu/gstdvdspu.h:
10426
10427         dvdspu element donated by Fluendo. It implements a DVD Sub-Picture 
10428         Unit, decoding and overlaying DVD subtitles and menu graphics.
10429
10430         * gst/mpeg2sub/.cvsignore:
10431         * gst/mpeg2sub/Makefile.am:
10432         * gst/mpeg2sub/Notes.txt:
10433         * gst/mpeg2sub/gstmpeg2subt.c:
10434         * gst/mpeg2sub/gstmpeg2subt.h:
10435         * gst/mpeg2sub/mpeg2subt.vcproj:
10436         Delete old and broken mpeg2subt element that was never ported from 0.8
10437
10438 2007-08-24  Julien MOUTTE  <julien@moutte.net>
10439
10440         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
10441         (gst_flv_demux_chain), (gst_flv_demux_pull_tag),
10442         (gst_flv_demux_find_offset), (gst_flv_demux_handle_seek_push),
10443         (gst_flv_demux_handle_seek_pull), (gst_flv_demux_sink_event),
10444         (gst_flv_demux_src_event): Remove some useless ifdef.
10445
10446 2007-08-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10447
10448         * examples/switch/switcher.c (main):
10449         * gst/switch/gstswitch.c (gst_switch_chain):
10450         Make switch more reliable and also not lock up when
10451         sink pad caps change.
10452
10453 2007-08-24  Julien MOUTTE  <julien@moutte.net>
10454
10455         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
10456         (gst_flv_demux_cleanup), (gst_flv_demux_chain),
10457         (gst_flv_demux_pull_tag), (gst_flv_demux_find_offset),
10458         (gst_flv_demux_handle_seek_push), (gst_flv_demux_handle_seek_pull),
10459         (gst_flv_demux_sink_event), (gst_flv_demux_src_event): Implement
10460         seeking in push mode.
10461         * gst/flv/gstflvdemux.h:
10462
10463 2007-08-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10464
10465         * gst/mpegtsparse/flutspatinfo.c:
10466         * gst/mpegtsparse/flutspatinfo.h:
10467         * gst/mpegtsparse/flutspmtinfo.c:
10468         * gst/mpegtsparse/flutspmtinfo.h:
10469         Update licences to reflect LGPL-ness of these files also.
10470
10471 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10472
10473         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
10474         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
10475         * docs/plugins/gst-plugins-bad-plugins.interfaces:
10476         * docs/plugins/gst-plugins-bad-plugins.signals:
10477         * gst/rtpmanager/gstrtpbin.c:
10478         * gst/rtpmanager/gstrtpbin.h:
10479         * gst/rtpmanager/gstrtpclient.c:
10480         * gst/rtpmanager/gstrtpclient.h:
10481         * gst/rtpmanager/gstrtpjitterbuffer.c:
10482         * gst/rtpmanager/gstrtpjitterbuffer.h:
10483         * gst/rtpmanager/gstrtpptdemux.c:
10484         * gst/rtpmanager/gstrtpptdemux.h:
10485         * gst/rtpmanager/gstrtpsession.c:
10486         * gst/rtpmanager/gstrtpsession.h:
10487         * gst/rtpmanager/gstrtpssrcdemux.c:
10488         * gst/rtpmanager/gstrtpssrcdemux.h:
10489           Rename all GstRTPFoo structs to GstRtpFoo so that GST_BOILERPLATE
10490           registers a GType that's different than the GstRTPFoo types that
10491           farsight registers (luckily GType names are case sensitive). Should
10492           finally fix #430664.
10493
10494 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
10495
10496         * configure.ac:
10497         * win32/common/config.h:
10498         * win32/common/config.h.in:
10499           Automatically generate win32/common/config.h via configure (this
10500           ensures the win32 version of config.h is up-to-date when a release
10501           is made, #433373). config.h.in file might need some more work.
10502
10503 2007-08-22  Tim-Philipp Müller  <tim at centricular dot net>
10504
10505         Patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
10506
10507         * configure.ac:
10508         * gst/festival/Makefile.am:
10509         * gst/festival/gstfestival.c:
10510           Port festival plugin to GStreamer-0.10 (#461377).
10511
10512 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
10513
10514         * ext/faad/gstfaad.c: (gst_faad_chain):
10515         Don't unref the buffer when it was clipped.
10516
10517 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
10518
10519         * ext/faad/gstfaad.c: (gst_faad_chain):
10520         Don't unref the buffer when it was clipped.
10521
10522 2007-08-22  Julien MOUTTE  <julien@moutte.net>
10523
10524         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
10525         (gst_flv_demux_pull_tag):
10526         * gst/flv/gstflvdemux.h:
10527         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
10528         (gst_flv_parse_tag_script), (gst_flv_parse_tag_audio),
10529         (gst_flv_parse_tag_video): Handle pixel aspect ratio through
10530         metadata tags like ASF does. Fluendo muxer supports this and 
10531         Flash players can support it as well this way.
10532
10533 2007-08-22  Julien MOUTTE  <julien@moutte.net>
10534
10535         * gst/flv/gstflvdemux.c: (gst_flv_demux_pull_tag):
10536         * gst/flv/gstflvparse.c: (gst_flv_parse_metadata_item),
10537         (gst_flv_parse_tag_script), (gst_flv_parse_tag_audio),
10538         (gst_flv_parse_tag_video): Make sure we don't try filling up the
10539         index if no times object was parsed. Fix the way we decide to push
10540         tags and emit no-more-pads. Fix some printf typing in debugging.
10541
10542 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10543
10544         * gst/rtpmanager/gstrtpjitterbuffer.c:
10545         (gst_rtp_jitter_buffer_chain),
10546         (gst_rtp_jitter_buffer_set_property):
10547         When drop-on-latency is set but we have no latency configured, just push
10548         the buffer as fast as possible.
10549         Fix typo in comment.
10550
10551 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10552
10553         * gst/rtpmanager/rtpjitterbuffer.c:
10554         (rtp_jitter_buffer_get_ts_diff):
10555         * gst/rtpmanager/rtpjitterbuffer.h:
10556         Fix undefined overflow prone ts_diff handling.
10557
10558 2007-08-21  Wim Taymans  <wim.taymans@gmail.com>
10559
10560         * gst/modplug/gstmodplug.cc:
10561         Fix compiler warning.
10562
10563 2007-08-21  Stefan Kost  <ensonic@users.sf.net>
10564
10565         * gst/modplug/gstmodplug.cc:
10566           Don't use NULL caps for srcpad is not yet connected.
10567
10568 2007-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10569
10570         * configure.ac:
10571         * gst/mpegtsparse/Makefile.am:
10572         * gst/mpegtsparse/flutspatinfo.c:
10573         * gst/mpegtsparse/flutspatinfo.h:
10574         * gst/mpegtsparse/flutspmtinfo.c:
10575         * gst/mpegtsparse/flutspmtinfo.h:
10576         * gst/mpegtsparse/flutspmtstreaminfo.c:
10577         * gst/mpegtsparse/flutspmtstreaminfo.h:
10578         * gst/mpegtsparse/mpegtspacketizer.c:
10579         * gst/mpegtsparse/mpegtspacketizer.h:
10580         * gst/mpegtsparse/mpegtsparse.c:
10581         * gst/mpegtsparse/mpegtsparse.h:
10582         * gst/mpegtsparse/mpegtsparsemarshal.list:
10583         Add mpeg transport stream parser written by:
10584         Alessandro Decina. Includes a couple of files from the
10585         Fluendo transport stream demuxer that Fluendo have 
10586         kindly allowed to be licenced under LGPL also.
10587
10588 2007-08-20  Tim-Philipp Müller  <tim at centricular dot net>
10589
10590         Patch by: Bastien Nocera  <hadess at hadess net>
10591
10592         * ext/mythtv/gstmythtvsrc.c:
10593           Add examples for live mythtv:// URIs to docs (#468039).
10594           Also convert some tabs into spaces.
10595
10596 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
10597
10598         * gst/filter/gstbpwsinc.c:
10599         * gst/filter/gstlpwsinc.c:
10600         Add small comparision with the chebyshev filters in the docs.
10601
10602 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
10603
10604         * tests/check/elements/bpwsinc.c: (GST_START_TEST),
10605         (bpwsinc_suite):
10606         * tests/check/elements/lpwsinc.c: (GST_START_TEST),
10607         (lpwsinc_suite):
10608         Also test everything in 32 bit float mode.
10609
10610 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
10611
10612         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10613         (bpwsinc_set_property), (bpwsinc_get_property):
10614         * gst/filter/gstbpwsinc.h:
10615         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10616         (gst_lpwsinc_init), (lpwsinc_build_kernel), (lpwsinc_set_property),
10617         (lpwsinc_get_property):
10618         * gst/filter/gstlpwsinc.h:
10619         * tests/check/elements/lpwsinc.c: (GST_START_TEST):
10620         Use generator macros for the process functions for the different
10621         sample types, add lower upper boundaries for the GObject properties
10622         so automatically generated UIs can use sliders and change frequency
10623         properties to floats to save a bit of memory, even ints would in
10624         theory be enough. Also rename frequency to cutoff for consistency
10625         reasons.
10626         * docs/plugins/gst-plugins-bad-plugins.args:
10627         * docs/plugins/gst-plugins-bad-plugins.signals:
10628         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
10629         Regenerated for the above changes.
10630
10631 2007-08-17  Stefan Kost  <ensonic@users.sf.net>
10632
10633         * ext/amrwb/gstamrwbparse.c:
10634           Don't leak the adapter.
10635
10636 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
10637
10638         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10639         (gst_bpwsinc_init), (process_32), (process_64),
10640         (bpwsinc_build_kernel), (bpwsinc_push_residue),
10641         (bpwsinc_transform), (bpwsinc_start), (bpwsinc_query),
10642         (bpwsinc_query_type), (bpwsinc_event), (bpwsinc_set_property):
10643         * gst/filter/gstbpwsinc.h:
10644         Implement latency query and only forward those samples downstream
10645         that actually contain the data we want, i.e. drop kernel_length/2
10646         in the beginning and append kernel_length/2 (created by convolving
10647         the filter kernel with zeroes) to the end.
10648
10649         * tests/check/elements/bpwsinc.c: (GST_START_TEST):
10650         Adjust the unit test for this slightly changed behaviour.
10651
10652         * gst/filter/gstlpwsinc.c: (lpwsinc_build_kernel):
10653         Reset residue length only when actually creating a residue.
10654
10655 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10656
10657         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_class_init):
10658         Override the preroll vmethod instead of overriding the render method
10659         twice.
10660
10661 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10662
10663         * gst/rtpmanager/gstrtpjitterbuffer.c:
10664         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain),
10665         (gst_rtp_jitter_buffer_loop):
10666         Fix EOS handling.
10667         Convert some DEBUG into WARNINGs.
10668         Pause task when flushing.
10669
10670         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
10671         (rtcp_thread), (gst_rtp_session_event_recv_rtcp_sink):
10672         Use system clock for RTCP session management timeouts.
10673
10674         * gst/rtpmanager/rtpsession.c: (on_new_ssrc), (on_ssrc_collision),
10675         (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout):
10676         Release the session lock when emiting signals.
10677
10678 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
10679
10680         * ext/faad/gstfaad.c: (gst_faad_setcaps),
10681         (gst_faad_chanpos_to_gst):
10682         Add some debug info.
10683
10684 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
10685
10686         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10687         (gst_lpwsinc_init), (process_32), (process_64),
10688         (lpwsinc_build_kernel), (lpwsinc_push_residue),
10689         (lpwsinc_transform), (lpwsinc_start), (lpwsinc_query),
10690         (lpwsinc_query_type), (lpwsinc_event), (lpwsinc_set_property):
10691         * gst/filter/gstlpwsinc.h:
10692         Implement latency query and only forward those samples downstream
10693         that actually contain the data we want, i.e. drop kernel_length/2
10694         in the beginning and append kernel_length/2 (created by convolving
10695         the filter kernel with zeroes) to the end.
10696         * tests/check/elements/lpwsinc.c: (GST_START_TEST):
10697         Adjust the unit test for this slightly changed behaviour.
10698
10699 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
10700
10701         * ext/ladspa/gstladspa.c:
10702           Don't leak like hell.
10703
10704 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
10705
10706         * tests/check/Makefile.am:
10707         * tests/check/generic/.cvsignore:
10708         * tests/check/generic/states.c:
10709           Add generic state-change test suite to help to fi leaks.
10710
10711 2007-08-15  Stefan Kost  <ensonic@users.sf.net>
10712
10713         * ext/timidity/gstwildmidi.c:
10714         * ext/timidity/gstwildmidi.h:
10715           Look harder for a config. Based on patch by Hans de Goede.
10716           Fixes #456912
10717
10718 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10719
10720         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_flush_unlocked):
10721         Don't use new API.
10722
10723 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10724
10725         * gst-libs/gst/app/gstappsink.c: (gst_app_sink_base_init),
10726         (gst_app_sink_class_init), (gst_app_sink_dispose),
10727         (gst_app_sink_flush_unlocked), (gst_app_sink_start),
10728         (gst_app_sink_stop), (gst_app_sink_event), (gst_app_sink_preroll),
10729         (gst_app_sink_render), (gst_app_sink_get_caps),
10730         (gst_app_sink_set_caps), (gst_app_sink_end_of_stream),
10731         (gst_app_sink_pull_preroll), (gst_app_sink_pull_buffer):
10732         * gst-libs/gst/app/gstappsink.h:
10733         Make love to appsink.
10734         Make it support pulling of the preroll buffer.
10735         Add docs and debug statements.
10736         Fix some races wrt to EOS handling and stopping.
10737         Implement getcaps.
10738         Implement FLUSHING.
10739         API: gst_app_sink_pull_preroll()
10740
10741 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
10742
10743         * gst/flv/gstflvdemux.c: (gst_flv_demux_set_index),
10744         (gst_flv_demux_get_index):
10745         Fix locking and refcounting on the index.
10746
10747 2007-08-14  Julien MOUTTE  <julien@moutte.net>
10748
10749         * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup),
10750         (gst_flv_demux_adapter_flush), (gst_flv_demux_chain),
10751         (gst_flv_demux_pull_tag), (gst_flv_demux_do_seek),
10752         (gst_flv_demux_handle_seek), (gst_flv_demux_sink_event),
10753         (gst_flv_demux_src_event), (gst_flv_demux_query),
10754         (gst_flv_demux_change_state), (gst_flv_demux_set_index),
10755         (gst_flv_demux_get_index), (gst_flv_demux_dispose),
10756         (gst_flv_demux_class_init): First method for seeking in pull
10757         mode using the index built step by step or coming from metadata.
10758         * gst/flv/gstflvdemux.h:
10759         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
10760         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
10761         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Parse
10762         more metadata types and keyframes index.
10763
10764 2007-08-13  Sebastian Dröge  <slomo@circular-chaos.org>
10765
10766         * docs/plugins/Makefile.am:
10767         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
10768         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
10769         * docs/plugins/gst-plugins-bad-plugins.args:
10770         * docs/plugins/gst-plugins-bad-plugins.signals:
10771         * docs/plugins/inspect/plugin-bz2.xml:
10772         * docs/plugins/inspect/plugin-cdxaparse.xml:
10773         * docs/plugins/inspect/plugin-dtsdec.xml:
10774         * docs/plugins/inspect/plugin-faac.xml:
10775         * docs/plugins/inspect/plugin-faad.xml:
10776         * docs/plugins/inspect/plugin-filter.xml:
10777         * docs/plugins/inspect/plugin-freeze.xml:
10778         * docs/plugins/inspect/plugin-gsm.xml:
10779         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
10780         * docs/plugins/inspect/plugin-h264parse.xml:
10781         * docs/plugins/inspect/plugin-modplug.xml:
10782         * docs/plugins/inspect/plugin-mpeg2enc.xml:
10783         * docs/plugins/inspect/plugin-musepack.xml:
10784         * docs/plugins/inspect/plugin-musicbrainz.xml:
10785         * docs/plugins/inspect/plugin-nsfdec.xml:
10786         * docs/plugins/inspect/plugin-replaygain.xml:
10787         * docs/plugins/inspect/plugin-soundtouch.xml:
10788         * docs/plugins/inspect/plugin-spcdec.xml:
10789         * docs/plugins/inspect/plugin-spectrum.xml:
10790         * docs/plugins/inspect/plugin-speed.xml:
10791         * docs/plugins/inspect/plugin-tta.xml:
10792         * docs/plugins/inspect/plugin-videosignal.xml:
10793         * docs/plugins/inspect/plugin-xingheader.xml:
10794         * docs/plugins/inspect/plugin-xvid.xml:
10795         * gst/filter/gstbpwsinc.c:
10796         * gst/filter/gstbpwsinc.h:
10797         * gst/filter/gstlpwsinc.c:
10798         * gst/filter/gstlpwsinc.h:
10799         Add docs for lpwsinc and bpwsinc and integrate them
10800         into the build system. While doing that also update
10801         all other docs via make update in docs/plugins.
10802
10803 2007-08-13  Stefan Kost  <ensonic@users.sf.net>
10804
10805         * gst/rtpmanager/rtpjitterbuffer.c:
10806           Include stdlib.
10807
10808 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10809
10810         * tests/check/elements/bpwsinc.c: (GST_START_TEST):
10811         Make one test constraint a bit stricter.
10812
10813 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10814
10815         * tests/check/Makefile.am:
10816         * tests/check/elements/.cvsignore:
10817         * tests/check/elements/bpwsinc.c: (setup_bpwsinc),
10818         (cleanup_bpwsinc), (GST_START_TEST), (bpwsinc_suite), (main):
10819         Add unit tests for bpwsinc, testing fundamental functionality again.
10820
10821 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10822
10823         * tests/check/Makefile.am:
10824         * tests/check/elements/.cvsignore:
10825         * tests/check/elements/lpwsinc.c: (setup_lpwsinc),
10826         (cleanup_lpwsinc), (GST_START_TEST), (lpwsinc_suite), (main):
10827         Add unit tests for lpwsinc, testing fundamental functionality.
10828
10829 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10830
10831         * gst/filter/gstbpwsinc.c: (bpwsinc_build_kernel):
10832         * gst/filter/gstlpwsinc.c: (lpwsinc_build_kernel):
10833         Improve debugging a bit.
10834
10835 2007-08-12  Sebastian Dröge  <slomo@circular-chaos.org>
10836
10837         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10838         (bpwsinc_start):
10839         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10840         (lpwsinc_start):
10841         Reset the residue in BaseTransform::start to get a clean residue
10842         on stream changes.
10843
10844 2007-08-11  Sebastian Dröge  <slomo@circular-chaos.org>
10845
10846         * gst/filter/gstbpwsinc.c: (process_32), (process_64):
10847         * gst/filter/gstlpwsinc.c: (process_32), (process_64):
10848         Fix processing with buffer sizes that are smaller than the filter
10849         kernel size.
10850
10851 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
10852
10853         * gst/rtpmanager/Makefile.am:
10854         * gst/rtpmanager/async_jitter_queue.c:
10855         * gst/rtpmanager/async_jitter_queue.h:
10856         * gst/rtpmanager/rtpjitterbuffer.c: (rtp_jitter_buffer_class_init),
10857         (rtp_jitter_buffer_init), (rtp_jitter_buffer_finalize),
10858         (rtp_jitter_buffer_new), (compare_seqnum),
10859         (rtp_jitter_buffer_insert), (rtp_jitter_buffer_pop),
10860         (rtp_jitter_buffer_flush), (rtp_jitter_buffer_num_packets),
10861         (rtp_jitter_buffer_get_ts_diff):
10862         * gst/rtpmanager/rtpjitterbuffer.h:
10863         Remove complicated async queue and replace with more simple jitterbuffer
10864         code while also fixing some bugs.
10865
10866         * gst/rtpmanager/gstrtpbin-marshal.list:
10867         * gst/rtpmanager/gstrtpbin.c: (on_new_ssrc), (on_ssrc_collision),
10868         (on_ssrc_validated), (on_bye_ssrc), (on_bye_timeout), (on_timeout),
10869         (create_session), (gst_rtp_bin_class_init), (create_recv_rtp),
10870         (create_send_rtp):
10871         * gst/rtpmanager/gstrtpbin.h:
10872         * gst/rtpmanager/gstrtpjitterbuffer.c:
10873         (gst_rtp_jitter_buffer_init), (gst_rtp_jitter_buffer_dispose),
10874         (gst_jitter_buffer_sink_parse_caps),
10875         (gst_rtp_jitter_buffer_flush_start),
10876         (gst_rtp_jitter_buffer_flush_stop),
10877         (gst_rtp_jitter_buffer_change_state),
10878         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_chain),
10879         (gst_rtp_jitter_buffer_loop), (gst_rtp_jitter_buffer_set_property):
10880         * gst/rtpmanager/gstrtpsession.c: (on_new_ssrc),
10881         (on_ssrc_collision), (on_ssrc_validated), (on_bye_ssrc),
10882         (on_bye_timeout), (on_timeout), (gst_rtp_session_class_init),
10883         (gst_rtp_session_init):
10884         * gst/rtpmanager/gstrtpsession.h:
10885         * gst/rtpmanager/rtpsession.c: (on_bye_ssrc), (session_cleanup):
10886         Use new jitterbuffer code.
10887         Expose some new signals in preparation for handling EOS.
10888
10889 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10890
10891         * gst/filter/gstbpwsinc.c: (bpwsinc_build_kernel):
10892         Fix a segfault with more than one channel and don't rebuild
10893         the kernel & residue with every buffer.
10894
10895 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10896
10897         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_mode_get_type),
10898         (gst_bpwsinc_window_get_type), (gst_bpwsinc_class_init),
10899         (gst_bpwsinc_init), (bpwsinc_build_kernel), (bpwsinc_set_property),
10900         (bpwsinc_get_property):
10901         * gst/filter/gstbpwsinc.h:
10902         Add support for a bandreject mode and allow specifying the window
10903         function that should be used.
10904         * gst/filter/gstlpwsinc.c:
10905         And another small formatting fix.
10906
10907 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10908
10909         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init),
10910         (gst_bpwsinc_init), (process_32), (process_64),
10911         (bpwsinc_build_kernel), (bpwsinc_setup), (bpwsinc_get_unit_size),
10912         (bpwsinc_transform), (bpwsinc_set_property),
10913         (bpwsinc_get_property):
10914         * gst/filter/gstbpwsinc.h:
10915         Apply the same changes to the bandpass filter:
10916          - Support double input
10917          - Fix processing for input with >1 channels
10918          - Specify frequency in Hz
10919          - Specify actual filter kernel length
10920          - Use transform instead of transform_ip as we're working
10921            out of place anyway
10922          - Factor out filter kernel generation and update the filter
10923            kernel when the properties are set
10924         Fix bandpass filter kernel generation to actually generate
10925         a bandpass filter by creating a highpass instead of a second
10926         lowpass.
10927         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
10928         Small formatting fix.
10929
10930 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10931
10932         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init),
10933         (gst_lpwsinc_init), (process_32), (process_64),
10934         (lpwsinc_build_kernel), (lpwsinc_set_property),
10935         (lpwsinc_get_property):
10936         * gst/filter/gstlpwsinc.h:
10937         Specify the actual filter length instead of a weird
10938         2N+1. Setting the property will round to the next odd number.
10939         Also remove now obsolete FIXMEs.
10940
10941 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10942
10943         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_window_get_type),
10944         (gst_lpwsinc_class_init), (gst_lpwsinc_init),
10945         (lpwsinc_build_kernel), (lpwsinc_set_property),
10946         (lpwsinc_get_property):
10947         * gst/filter/gstlpwsinc.h:
10948         Allow choosing between hamming and blackman window. The blackman
10949         window provides a better stopband attenuation but a bit slower
10950         rolloff.
10951
10952 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10953
10954         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_mode_get_type),
10955         (gst_lpwsinc_class_init), (process_32), (process_64),
10956         (lpwsinc_build_kernel), (lpwsinc_set_property),
10957         (lpwsinc_get_property):
10958         * gst/filter/gstlpwsinc.h:
10959         Add a highpass mode.
10960
10961 2007-08-10  Sebastian Dröge  <slomo@circular-chaos.org>
10962
10963         * gst/filter/gstlpwsinc.c: (process_32), (process_64),
10964         (lpwsinc_build_kernel):
10965         Fix processing if the input has more than one channel.
10966
10967 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
10968
10969         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
10970         (gst_bpwsinc_init), (bpwsinc_setup), (bpwsinc_transform_ip),
10971         (bpwsinc_set_property), (bpwsinc_get_property):
10972         "this" is a C++ keyword, use "self" instead.
10973         Add TODOs and FIXMEs and remove two wrong FIXMEs.
10974         * gst/filter/gstlpwsinc.c:
10975         Add FIXMEs and a new TODO.
10976
10977 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
10978
10979         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
10980         (gst_lpwsinc_class_init), (gst_lpwsinc_init), (process_32),
10981         (process_64), (lpwsinc_build_kernel), (lpwsinc_setup),
10982         (lpwsinc_get_unit_size), (lpwsinc_transform),
10983         (lpwsinc_set_property), (lpwsinc_get_property):
10984         * gst/filter/gstlpwsinc.h:
10985         Add double support, replace "this" with "self" as the former
10986         is a C++ keyword.
10987         Implement the frequency property in Hz instead of fraction
10988         of sampling frequency.
10989         Remove some unecessary FIXMEs and add some TODOs, add some
10990         required locking and refactor the kernel generation into a
10991         separate function that is also called when the properties
10992         change now.
10993         And use BaseTransform::transform instead of transform_ip
10994         as the convolution is done out of place anyway. Should
10995         be done in place later.
10996
10997 2007-08-09  Sebastian Dröge  <slomo@circular-chaos.org>
10998
10999         * configure.ac:
11000         * gst/stereo/Makefile.am:
11001         * gst/stereo/gststereo.c: (gst_stereo_base_init),
11002         (gst_stereo_class_init), (gst_stereo_init),
11003         (gst_stereo_transform_ip), (gst_stereo_set_property),
11004         (gst_stereo_get_property):
11005         * gst/stereo/gststereo.h:
11006         Port the stereo element to GStreamer 0.10.
11007
11008 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11009
11010         submitted by: Raphael Higino <phhigino@gmail.com>
11011
11012         * po/LINGUAS:
11013         * po/pt_BR.po:
11014           Added Portuguese (Brazilian) translation.
11015
11016 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
11017
11018         * po/uk.po:
11019         * po/vi.po:
11020           Updated translations.
11021
11022 2007-08-08  Sebastian Dröge  <slomo@circular-chaos.org>
11023
11024         * gst/filter/Makefile.am:
11025         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
11026         (gst_bpwsinc_base_init), (gst_bpwsinc_class_init),
11027         (gst_bpwsinc_init), (bpwsinc_setup):
11028         * gst/filter/gstbpwsinc.h:
11029         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
11030         (gst_lpwsinc_base_init), (gst_lpwsinc_class_init),
11031         (gst_lpwsinc_init), (lpwsinc_setup):
11032         * gst/filter/gstlpwsinc.h:
11033         Use GstAudioFilter as base class and don't leak the memory
11034         of the filter kernel and residue.
11035
11036 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
11037
11038         Patch by: Josep Torra Valles <josep@fluendo.com>
11039
11040         * docs/plugins/gst-plugins-bad-plugins.args:
11041         * ext/libmms/gstmms.c: (gst_mms_class_init), (gst_mms_init),
11042         (gst_mms_start), (gst_mms_set_property), (gst_mms_get_property):
11043         * ext/libmms/gstmms.h:
11044         Add connection speed property to libmms. Fixes #464678.
11045
11046 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
11047
11048         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
11049         (gst_real_video_dec_activate_push), (open_library),
11050         (gst_real_video_dec_init), (gst_real_video_dec_finalize):
11051         * gst/real/gstrealvideodec.h:
11052         Remove some old unused vars.
11053
11054 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
11055
11056         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
11057         Small cleanups.
11058
11059         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain),
11060         (open_library):
11061         Remove fragment and timestamp correction code from the decoder to make
11062         the caps and buffer contents compatible with matroska/ffdec_rvx0/...
11063
11064 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
11065
11066         * po/POTFILES.skip:
11067           Add POTFILES.skip with list of source files that aren't disted at the
11068           moment but contain translatable strings. Should hopefully pacify
11069           broken tools and make it clearer that these files are left out
11070           intentionally (#461601 and others).
11071
11072 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
11073
11074         Patch by: Ian Munro  <imunro at netspace net au>
11075
11076         * gst/bayer/gstbayer2rgb.c:
11077           Include our own "_stdint.h" instead of <stdint.h> (which may not
11078           be available).
11079
11080         * gst/speed/gstspeed.h:
11081           Native HP-UX compiler dosn't seem to like enum typedefs before the
11082           actual enum was defined.
11083
11084         * gst/vmnc/vmncdec.c:
11085           Fix wrong usage of GST_ELEMENT_ERROR macro (#461373).
11086
11087 2007-07-26  Edward Hervey  <bilboed@bilboed.com>
11088
11089         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
11090         Use the proper context variable when setting the password !
11091         LOG => WARNING for errors.
11092         Give proper path when opening the codec (needs a '/' at the end).
11093
11094 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
11095
11096         * gst/real/Makefile.am:
11097           And dist the new header file too.
11098
11099 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
11100
11101         * gst/real/gstreal.h:
11102         Add missing header file.
11103
11104 2007-07-25  Julien MOUTTE  <julien@moutte.net>
11105
11106         (gst_flv_demux_chain), (gst_flv_demux_pull_tag),
11107         (gst_flv_demux_change_state), (gst_flv_demux_dispose),
11108         (gst_flv_demux_init):
11109         * gst/flv/gstflvdemux.h:
11110         * gst/flv/gstflvparse.c: (FLV_GET_STRING),
11111         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
11112         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
11113         (gst_flv_parse_header):
11114         * gst/flv/gstflvparse.h: Handle not linked pads, try to make it
11115         reusable, more safety checks.
11116
11117 2007-07-25  Stefan Kost  <ensonic@users.sf.net>
11118
11119         * ext/timidity/gsttimidity.c: (gst_timidity_init),
11120         (gst_timidity_change_state), (plugin_init):
11121         * ext/timidity/gsttimidity.h:
11122           Don't initialize timidity in plugin_init for similar reason as below.
11123
11124 2007-07-24  Stefan Kost  <ensonic@users.sf.net>
11125
11126         * ext/timidity/gstwildmidi.c: (wildmidi_open_config),
11127         (gst_wildmidi_init), (gst_wildmidi_change_state), (plugin_init):
11128         * ext/timidity/gstwildmidi.h:
11129           Don't initialize wildmidi in plugin_init as it also setups audio
11130           filters which is slow.
11131
11132 2007-07-24  Hans de Goede  <j.w.r.degoede@hhs.nl>
11133
11134         reviewed by: Edward Hervey  <bilboed@bilboed.com>
11135
11136         * gst/real/gstreal.c: (plugin_init):
11137         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
11138         (gst_real_audio_dec_finalize), (gst_real_audio_dec_set_property),
11139         (gst_real_audio_dec_get_property), (gst_real_audio_dec_class_init):
11140         * gst/real/gstrealvideodec.c: (open_library),
11141         (gst_real_video_dec_finalize), (gst_real_video_dec_set_property),
11142         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
11143         * gst/real/gstrealvideodec.h:
11144         Improved search algorithm for location of real .so files.
11145         Fixes #393461
11146
11147 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
11148
11149         * configure.ac:
11150         * ext/faad/gstfaad.c: (gst_faad_chain), (gst_faad_change_state):
11151         Use the new buffer clipping function from gstaudio here and
11152         require gst-plugins-base CVS.
11153
11154 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
11155
11156         * configure.ac:
11157           Sync liboil check with plugins-base.
11158
11159 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
11160
11161         * gst/equalizer/gstiirequalizer.c:
11162         (gst_iir_equalizer_band_set_property),
11163         (gst_iir_equalizer_child_proxy_get_child_by_index),
11164         (gst_iir_equalizer_child_proxy_get_children_count),
11165         (gst_iir_equalizer_child_proxy_interface_init),
11166         (gst_iir_equalizer_class_init), (arg_to_scale), (setup_filter),
11167         (gst_iir_equalizer_compute_frequencies):
11168         * gst/equalizer/gstiirequalizer10bands.c:
11169         (gst_iir_equalizer_10bands_class_init):
11170         * gst/equalizer/gstiirequalizer3bands.c:
11171         (gst_iir_equalizer_3bands_class_init):
11172         * gst/equalizer/gstiirequalizernbands.c:
11173           Better algorith for the center frequencies. Subtract band filters from
11174           input for negative gains. Rework the gain mapping.
11175
11176 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
11177
11178         * ext/dirac/Makefile.am:
11179           Also include stdlib here.
11180
11181 2007-07-19  Jan Schmidt  <thaytan@noraisin.net>
11182
11183         * tests/check/elements/.cvsignore:
11184         Fix the buildbot with the cvsignore it wants.
11185
11186 2007-07-19  Julien MOUTTE  <julien@moutte.net>
11187
11188         * configure.ac:
11189         * gst/flv/Makefile.am:
11190         * gst/flv/gstflvdemux.c: (gst_flv_demux_flush),
11191         (gst_flv_demux_cleanup), (gst_flv_demux_chain),
11192         (gst_flv_demux_pull_tag), (gst_flv_demux_pull_header),
11193         (gst_flv_demux_seek_to_prev_keyframe), (gst_flv_demux_loop),
11194         (gst_flv_demux_sink_activate), (gst_flv_demux_sink_activate_push),
11195         (gst_flv_demux_sink_activate_pull), (gst_flv_demux_sink_event),
11196         (gst_flv_demux_change_state), (gst_flv_demux_dispose),
11197         (gst_flv_demux_base_init), (gst_flv_demux_class_init),
11198         (gst_flv_demux_init), (plugin_init):
11199         * gst/flv/gstflvdemux.h:
11200         * gst/flv/gstflvparse.c: (FLV_GET_BEUI24), (FLV_GET_STRING),
11201         (gst_flv_demux_query_types), (gst_flv_demux_query),
11202         (gst_flv_parse_metadata_item), (gst_flv_parse_tag_script),
11203         (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video),
11204         (gst_flv_parse_tag_type), (gst_flv_parse_header):
11205         * gst/flv/gstflvparse.h: Adds a first draft of an FLV demuxer.
11206         It does not do seeking yet, it supports pull and push mode so YES
11207         you can use it to play youtube videos directly from an HTTP uri.
11208         Not so much testing done yet but it parses metadata, reply to 
11209         duration queries, etc...
11210
11211 2007-07-19  Stefan Kost  <ensonic@users.sf.net>
11212
11213         * tests/check/Makefile.am:
11214         * tests/check/elements/timidity.c (GST_START_TEST, timidity_suite,
11215           main):
11216           Add typefind test for midi.
11217
11218 2007-07-18  Michael Smith  <msmith@fluendo.com>
11219
11220         * ext/soundtouch/gstpitch.cc:
11221           If we receive a new segment event, don't try to push buffers out
11222           in response (without first sending it on!).
11223           Instead, flush internal buffers on receiving flush events.
11224           Fixes playback after seeking.
11225
11226 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11227
11228         * gst/bayer/gstbayer2rgb.c: (gst_bayer2rgb_set_caps),
11229         (gst_bayer2rgb_reset):
11230           Add basic docs. Use glibs mem routines.
11231
11232 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11233
11234         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
11235           Add example to the docs. Fix buffer-offset-end and add some debug.
11236
11237 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11238
11239         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
11240         (gst_jack_ring_buffer_acquire):
11241           Add stdlib include here too.
11242
11243 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
11244
11245         * examples/app/appsrc_ex.c:
11246         * examples/switch/switcher.c:
11247         * ext/neon/gstneonhttpsrc.c:
11248         * ext/timidity/gstwildmidi.c:
11249         * ext/x264/gstx264enc.c:
11250         * gst/mve/mveaudioenc.c: (mve_compress_audio):
11251         * gst/rtpmanager/gstrtpclient.c:
11252         * gst/rtpmanager/gstrtpjitterbuffer.c:
11253         * gst/spectrum/demo-audiotest.c:
11254         * gst/spectrum/demo-osssrc.c:
11255         * sys/dvb/gstdvbsrc.c:
11256           Add stdlib include (free, atoi, exit).
11257
11258 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
11259
11260         * ext/faad/gstfaad.c: (clip_outgoing_buffer):
11261         Fix buffer clipping to correctly clip to the segment stop.
11262
11263 2007-07-14  Wim Taymans  <wim.taymans@gmail.com>
11264
11265         Patch by: Hans de Goede <j.w.r.degoede at hhs dot nl>
11266
11267         * gst/modplug/gstmodplug.cc:
11268         add several missing supported mime-types to the modplug plugin.
11269         Fixes #456901.
11270
11271 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
11272
11273         * configure.ac:
11274         * tests/Makefile.am:
11275         Remove bogus check for libcheck, since we check for
11276         gstreamer-check and it pulls in the required info from there, and we
11277         weren't actually _using_ the information for libcheck ourselves
11278         anyway.
11279
11280 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
11281
11282         * configure.ac:
11283           Use pkg-config to locate check.
11284
11285 2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
11286
11287         * gst/interleave/deinterleave.c: (gst_deinterleave_process):
11288         * gst/vmnc/vmncdec.c: (vmnc_make_buffer):
11289           Fix build against core CVS.
11290
11291 2007-07-09  Stefan Kost  <ensonic@users.sf.net>
11292
11293         * REQUIREMENTS:
11294           Sync with changes in -ugly.
11295
11296 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
11297
11298         * REQUIREMENTS:
11299           Add download location of libamrwb.
11300
11301 2007-07-06  Tim-Philipp Müller  <tim at centricular dot net>
11302
11303         * docs/plugins/inspect/plugin-amrwb.xml:
11304         * docs/plugins/inspect/plugin-equalizer.xml:
11305         * docs/plugins/inspect/plugin-multifile.xml:
11306         * docs/plugins/inspect/plugin-timidity.xml:
11307         * docs/plugins/inspect/plugin-wildmidi.xml:
11308           Add missing inspect files. Fixes build (#454313).
11309
11310         * ext/timidity/gstwildmidi.c: (wildmidi_open_config):
11311           Scream a bit louder when initialisation fails.
11312
11313         * gst-libs/README:
11314         * gst-libs/ext/.cvsignore:
11315           Remove some cruft.
11316
11317 2007-07-05  Tim-Philipp Müller  <tim at centricular dot net>
11318
11319         * ext/ivorbis/Makefile.am:
11320           Dist header files. Fixes #454078.
11321
11322 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
11323
11324         * docs/plugins/Makefile.am:
11325           Simplify --extra-dir as gtkdoc scans recursively.
11326
11327         * ext/amrwb/gstamrwbenc.c:
11328           Fix comment start.
11329
11330 2007-07-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11331
11332         * sys/dvb/gstdvbsrc.c (dvbsrc_details, ARG_DVBSRC_ADAPTER,
11333           ARG_DVBSRC_FRONTEND, ARG_DVBSRC_DISEQC_SRC, ARG_DVBSRC_FREQUENCY,
11334           ARG_DVBSRC_POLARITY, gst_dvbsrc_class_init, gst_dvbsrc_init,
11335           gst_dvbsrc_set_property, gst_dvbsrc_get_property,
11336           gst_dvbsrc_open_frontend, gst_dvbsrc_open_dvr, read_device,
11337           gst_dvbsrc_create, gst_dvbsrc_set_pes_filters):
11338         * sys/dvb/gstdvbsrc.h (adapter_number, frontend_number):
11339         Removed property "device". Added properties "adapter" and "frontend".
11340         Fixes #453636.
11341         Rename freq property to frequency.
11342
11343 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
11344
11345         * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
11346         Fix property descriptions.
11347
11348 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11349
11350         * docs/plugins/Makefile.am:
11351         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11352         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11353         * ext/amrwb/gstamrwbdec.c:
11354         * ext/amrwb/gstamrwbenc.c:
11355         * ext/amrwb/gstamrwbparse.c:
11356           Also document AMR-WB elements.
11357
11358 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11359
11360         * docs/plugins/Makefile.am:
11361         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11362         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11363         * docs/plugins/gst-plugins-bad-plugins.args:
11364           Cleanup the section file so that -unused is empty again (and useful to
11365           spot new docs). Add not yet added docs to sgml file. Add more header
11366           to Makefile.am to make them introspectable.
11367
11368         * docs/plugins/inspect/plugin-bz2.xml:
11369         * docs/plugins/inspect/plugin-cdxaparse.xml:
11370         * docs/plugins/inspect/plugin-dtsdec.xml:
11371         * docs/plugins/inspect/plugin-faac.xml:
11372         * docs/plugins/inspect/plugin-faad.xml:
11373         * docs/plugins/inspect/plugin-filter.xml:
11374         * docs/plugins/inspect/plugin-freeze.xml:
11375         * docs/plugins/inspect/plugin-gdp.xml:
11376         * docs/plugins/inspect/plugin-gsm.xml:
11377         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
11378         * docs/plugins/inspect/plugin-h264parse.xml:
11379         * docs/plugins/inspect/plugin-modplug.xml:
11380         * docs/plugins/inspect/plugin-musicbrainz.xml:
11381         * docs/plugins/inspect/plugin-nsfdec.xml:
11382         * docs/plugins/inspect/plugin-replaygain.xml:
11383         * docs/plugins/inspect/plugin-spectrum.xml:
11384         * docs/plugins/inspect/plugin-speed.xml:
11385         * docs/plugins/inspect/plugin-tta.xml:
11386         * docs/plugins/inspect/plugin-videosignal.xml:
11387         * docs/plugins/inspect/plugin-xingheader.xml:
11388         * docs/plugins/inspect/plugin-xvid.xml:
11389           Update the doc blobs.
11390
11391 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11392
11393         * gst/multifile/Makefile.am:
11394         * gst/multifile/gstmultifile.c:
11395         * gst/multifile/gstmultifilesink.c:
11396         * gst/multifile/gstmultifilesink.h:
11397         * gst/multifile/gstmultifilesrc.c:
11398         * gst/multifile/gstmultifilesrc.h:
11399           Add .h files to be able to add it to the docs.
11400
11401 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11402
11403         * gst/modplug/gstmodplug.cc:
11404           Activate doc section.
11405
11406 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11407
11408         * ext/timidity/gsttimidity.c:
11409         * ext/timidity/gstwildmidi.c:
11410         * ext/timidity/gstwildmidi.h:
11411           Fix licence (both are GPL). Add element docs.
11412
11413 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11414
11415         * ext/musicbrainz/gsttrm.h:
11416           Fix _get_type signature.
11417
11418 2007-07-03  Stefan Kost  <ensonic@users.sf.net>
11419
11420         * gst/replaygain/gstrgvolume.h:
11421           Fix GObject macros.
11422
11423 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11424
11425         * ext/dc1394/gstdc1394.c: (gst_dc1394_src_fixate),
11426         (gst_dc1394_create), (gst_dc1394_caps_set_format_vmode_caps),
11427         (gst_dc1394_set_caps_framesize_range),
11428         (gst_dc1394_caps_set_framerate_list), (gst_dc1394_get_cam_caps),
11429         (gst_dc1394_framerate_frac_to_const),
11430         (gst_dc1394_open_cam_with_best_caps):
11431         Make a bunch of functions static, and move variable declarations
11432         to the start of blocks to avoid problems on older gcc.
11433
11434         Make sure to unset value types.
11435
11436 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11437
11438         * ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
11439
11440         The correct fourcc for the 4:1:1 packed format is 'IYU1'.
11441         With CVS of ffmpegcolorspace from plugins-base, I can now
11442         get 30 fps from the iSight.
11443
11444 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11445
11446         * ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
11447         Change a g_print to a GST_DEBUG message.
11448
11449 2007-06-29  Jan Schmidt  <thaytan@mad.scientist.com>
11450
11451         * configure.ac:
11452         * ext/Makefile.am:
11453         * ext/dc1394/Makefile.am:
11454         * ext/dc1394/gstdc1394.c: (gst_dc1394_base_init),
11455         (gst_dc1394_class_init), (gst_dc1394_init),
11456         (gst_dc1394_src_fixate), (gst_dc1394_set_property),
11457         (gst_dc1394_get_property), (gst_dc1394_getcaps),
11458         (gst_dc1394_setcaps), (gst_dc1394_get_times), (gst_dc1394_create),
11459         (gst_dc1394_parse_caps), (gst_dc1394_change_state),
11460         (gst_dc1394_caps_set_format_vmode_caps),
11461         (gst_dc1394_set_caps_color), (gst_dc1394_set_caps_framesize),
11462         (gst_dc1394_set_caps_framesize_range),
11463         (gst_dc1394_caps_set_framerate_list),
11464         (gst_dc1394_framerate_const_to_frac),
11465         (gst_dc1394_get_all_dc1394_caps), (gst_dc1394_get_cam_caps),
11466         (gst_dc1394_framerate_frac_to_const),
11467         (gst_dc1394_open_cam_with_best_caps),
11468         (gst_dc1394_change_camera_transmission), (plugin_init):
11469         * ext/dc1394/gstdc1394.h:
11470         Commit new dc1394src element.
11471         Patch By: Antoine Tremblay < hexa00 at gmail dot com >
11472         Patch By: Eric Jonas < jonas at mit dot edu >
11473         Close: #387251
11474
11475 2007-06-28  Wim Taymans  <wim@fluendo.com>
11476
11477         * gst/videosignal/gstvideodetect.c: (gst_video_detect_class_init):
11478         Register new property as well.
11479
11480 2007-06-28  Wim Taymans  <wim@fluendo.com>
11481
11482         * gst/videosignal/gstvideodetect.c: (gst_video_detect_420),
11483         (gst_video_detect_set_property), (gst_video_detect_get_property):
11484         * gst/videosignal/gstvideodetect.h:
11485         Add property to adjust the center, sensitivity is now the distance from
11486         this center.
11487
11488 2007-06-27  Wim Taymans  <wim@fluendo.com>
11489
11490         * gst/videosignal/gstvideodetect.c: (gst_video_detect_420),
11491         (gst_video_detect_set_property), (gst_video_detect_get_property),
11492         (gst_video_detect_class_init):
11493         * gst/videosignal/gstvideodetect.h:
11494         * gst/videosignal/gstvideomark.c: (gst_video_mark_draw_box),
11495         (gst_video_mark_420), (gst_video_mark_set_property),
11496         (gst_video_mark_get_property), (gst_video_mark_class_init):
11497         * gst/videosignal/gstvideomark.h:
11498         Add left and bottom offset properties to control the position of the
11499         pattern.
11500
11501 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
11502
11503         * docs/plugins/gst-plugins-bad-plugins.args:
11504         * docs/plugins/inspect/plugin-alsaspdif.xml:
11505         * docs/plugins/inspect/plugin-bz2.xml:
11506         * docs/plugins/inspect/plugin-cdxaparse.xml:
11507         * docs/plugins/inspect/plugin-dtsdec.xml:
11508         * docs/plugins/inspect/plugin-faac.xml:
11509         * docs/plugins/inspect/plugin-faad.xml:
11510         * docs/plugins/inspect/plugin-filter.xml:
11511         * docs/plugins/inspect/plugin-freeze.xml:
11512         * docs/plugins/inspect/plugin-gdp.xml:
11513         * docs/plugins/inspect/plugin-glimagesink.xml:
11514         * docs/plugins/inspect/plugin-gsm.xml:
11515         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
11516         * docs/plugins/inspect/plugin-h264parse.xml:
11517         * docs/plugins/inspect/plugin-jack.xml:
11518         * docs/plugins/inspect/plugin-mms.xml:
11519         * docs/plugins/inspect/plugin-modplug.xml:
11520         * docs/plugins/inspect/plugin-musicbrainz.xml:
11521         * docs/plugins/inspect/plugin-neon.xml:
11522         * docs/plugins/inspect/plugin-nsfdec.xml:
11523         * docs/plugins/inspect/plugin-replaygain.xml:
11524         * docs/plugins/inspect/plugin-sdl.xml:
11525         * docs/plugins/inspect/plugin-spectrum.xml:
11526         * docs/plugins/inspect/plugin-speed.xml:
11527         * docs/plugins/inspect/plugin-tta.xml:
11528         * docs/plugins/inspect/plugin-videosignal.xml:
11529         * docs/plugins/inspect/plugin-xingheader.xml:
11530         * docs/plugins/inspect/plugin-xvid.xml:
11531           Update docs with caps info.
11532
11533 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
11534
11535         * gconf/.cvsignore:
11536         * gconf/Makefile.am:
11537         * gconf/gstreamer.schemas.in:
11538           Remove dysfunctional directory (this stuff is in -good).
11539
11540         * ext/sndfile/gstsf.c: (plugin_init):
11541         * sys/dvb/gstdvbsrc.c: (plugin_init):
11542           Add i18n bindtextdomain stuff.
11543
11544         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_class_init),
11545         (plugin_init):
11546           Post an error message when returning GST_FLOW_ERROR; minor cleanups.
11547
11548         * po/POTFILES.in:
11549           Add more source files with translatable strings (fixes #450605).
11550
11551 2007-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11552
11553         Contributed by: Wenzheng Hu <db_lobster@163.com>
11554
11555         * po/LINGUAS:
11556         * po/zh_CN.po:
11557           Added Chinese (simplified) translation.
11558
11559 2007-06-22  Tim-Philipp Müller  <tim at centricular dot net>
11560
11561         Patch by: Jens Granseuer  <jensgr at gmx net>
11562
11563         * gst/equalizer/gstiirequalizer.c:
11564         * gst/equalizer/gstiirequalizer10bands.c:
11565         * gst/equalizer/gstiirequalizer3bands.c:
11566         * gst/equalizer/gstiirequalizernbands.c:
11567         * gst/rtpmanager/async_jitter_queue.c:
11568         (async_jitter_queue_push_sorted):
11569         * gst/rtpmanager/gstrtpjitterbuffer.c:
11570         (gst_rtp_jitter_buffer_chain):
11571         * gst/switch/gstswitch.c: (gst_switch_chain):
11572           Build fixes for gcc-2.9x (no mid-block variable declarations etc.).
11573           Fixes #450185.
11574
11575 2007-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11576
11577         * examples/switch/switcher.c (my_bus_callback, switch_timer,
11578           last_message_received, main):
11579         * gst/switch/gstswitch.c (gst_switch_release_pad,
11580           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
11581           gst_switch_set_property, gst_switch_get_property,
11582           gst_switch_get_linked_pad, gst_switch_getcaps,
11583           gst_switch_bufferalloc, gst_switch_dispose, gst_switch_init):
11584         * gst/switch/gstswitch.h (switch_mutex, GST_SWITCH_LOCK,
11585           GST_SWITCH_UNLOCK):
11586         Add an extra lock to protect against certain variables instead of
11587         using the object lock. Fix case where caps are different in the
11588         sink pads causes deadlock. Update example to use different caps
11589         on each sink pad.
11590
11591 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
11592
11593         * MAINTAINERS:
11594         Updating all the maintainers files
11595
11596 2007-06-22  Edward Hervey  <edward@fluendo.com>
11597
11598         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_init):
11599         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_init):
11600         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_init):
11601         * ext/audioresample/gstaudioresample.c:
11602         * ext/bz2/gstbz2dec.c: (gst_bz2dec_init):
11603         * ext/bz2/gstbz2enc.c: (gst_bz2enc_init):
11604         * ext/divx/gstdivxdec.c: (gst_divxdec_init):
11605         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
11606         * ext/faac/gstfaac.c: (gst_faac_init):
11607         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init):
11608         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init):
11609         * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_init):
11610         * ext/lcs/gstcolorspace.c: (gst_colorspace_init):
11611         * ext/libfame/gstlibfame.c: (gst_fameenc_init):
11612         * ext/snapshot/gstsnapshot.c: (gst_snapshot_init):
11613         * ext/spc/gstspc.c: (gst_spc_dec_init):
11614         * ext/swfdec/gstswfdec.c: (gst_swfdec_init):
11615         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init):
11616         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_init):
11617         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
11618         * gst/chart/gstchart.c: (gst_chart_init):
11619         * gst/colorspace/gstcolorspace.c: (gst_colorspace_init):
11620         * gst/festival/gstfestival.c: (gst_festival_init):
11621         * gst/freeze/gstfreeze.c: (gst_freeze_init):
11622         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_request_new_pad):
11623         * gst/mpeg1sys/gstmpeg1systemencode.c: (gst_system_encode_init):
11624         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
11625         * gst/nsf/gstnsf.c: (gst_nsfdec_init):
11626         * gst/overlay/gstoverlay.c: (gst_overlay_init):
11627         * gst/passthrough/gstpassthrough.c: (passthrough_init):
11628         * gst/playondemand/gstplayondemand.c: (play_on_demand_init):
11629         * gst/smooth/gstsmooth.c: (gst_smooth_init):
11630         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
11631         * gst/speed/gstspeed.c: (speed_init):
11632         * gst/vbidec/gstvbidec.c: (gst_vbidec_init):
11633         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
11634         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
11635         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
11636         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_init):
11637         Fix leaks.
11638
11639 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
11640
11641         * RELEASE:
11642         * sys/Makefile.am:
11643           Re-enable VCD source and fix up release notes.
11644
11645 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11646
11647         * gst/equalizer/gstiirequalizer.c:
11648           Document parameter mapping.
11649
11650 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11651
11652         * gst/spectrum/gstspectrum.c: (gst_spectrum_event),
11653         (gst_spectrum_transform_ip):
11654           Fix leaking buffers.
11655           
11656         * tests/check/Makefile.am:
11657         * tests/check/elements/spectrum.c: (setup_spectrum),
11658         (cleanup_spectrum), (GST_START_TEST), (spectrum_suite), (main):
11659           Add simple test for spectrum element.
11660
11661 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
11662
11663         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init),
11664         (gst_amrwbdec_class_init), (gst_amrwbdec_finalize),
11665         (gst_amrwbdec_event), (gst_amrwbdec_chain),
11666         (gst_amrwbdec_state_change):
11667         * ext/amrwb/gstamrwbdec.h:
11668         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init),
11669         (gst_amrwbparse_pull_header), (gst_amrwbparse_loop):
11670           Add newsegment and discont handling. Some code cleanups. Don't leak
11671           the adapter, unref it in a new finalize method instead. Sync the
11672           parser with the amr-nb changes.
11673
11674 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
11675
11676         * configure.ac:
11677         Back to CVS.
11678
11679         * gst-plugins-bad.doap:
11680         Add 0.10.5 to the doap file.
11681
11682 === release 0.10.5 ===
11683
11684 2007-06-19  Jan Schmidt <thaytan@mad.scientist.com>
11685
11686         * configure.ac:
11687           releasing 0.10.5, "Expedition to Lake Pahoe"
11688
11689 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
11690
11691         * win32/vs6/gst_plugins_bad.dsw:
11692         * win32/vs6/libdshowsrcwrapper.dsp:
11693         * win32/vs6/libgstdshow.dsp:
11694         * win32/vs6/libgstmpegvideoparse.dsp:
11695         * win32/vs6/libgstneon.dsp:
11696         Convert line endings to CRLF and mark as binary files.
11697
11698 2007-06-13  Wim Taymans  <wim@fluendo.com>
11699
11700         * sys/Makefile.am:
11701         Disable VCD build because we're frozen..
11702
11703 2007-06-13  Wim Taymans  <wim@fluendo.com>
11704
11705         * configure.ac:
11706         * sys/Makefile.am:
11707         * sys/vcd/Makefile.am:
11708         * sys/vcd/vcdsrc.c: (gst_vcdsrc_setup_interfaces),
11709         (gst_vcdsrc_base_init), (gst_vcdsrc_class_init), (gst_vcdsrc_init),
11710         (gst_vcdsrc_msf), (gst_vcdsrc_recalculate),
11711         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
11712         (gst_vcdsrc_create), (gst_vcdsrc_start), (gst_vcdsrc_stop),
11713         (gst_vcdsrc_uri_set_uri):
11714         * sys/vcd/vcdsrc.h:
11715         Port VCD element.
11716
11717 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
11718
11719         * win32/MANIFEST:
11720         Add megvideoparse, libdshow and dshowsrcwrapper to win32
11721         MANIFEST.
11722         * win32/vs6/gst_plugins_bad.dsw:
11723         Remove qtdemux, directdraw, directsound and waveform project files
11724         from the workspace as they have been moved to -good.
11725
11726 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11727
11728         * po/POTFILES.in:
11729         Remove qtdemux from the translation list.
11730
11731 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11732
11733         * configure.ac:
11734         * docs/plugins/Makefile.am:
11735         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11736         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11737         * docs/plugins/inspect/plugin-osxvideo.xml:
11738         * docs/plugins/inspect/plugin-videocrop.xml:
11739         * gst-plugins-bad.spec.in:
11740         * gst/videocrop/Makefile.am:
11741         * gst/videocrop/gstvideocrop.c:
11742         * gst/videocrop/gstvideocrop.h:
11743         * gst/videocrop/videocrop.vcproj:
11744         * sys/Makefile.am:
11745         * sys/osxvideo/Makefile.am:
11746         * sys/osxvideo/cocoawindow.h:
11747         * sys/osxvideo/cocoawindow.m:
11748         * sys/osxvideo/osxvideosink.h:
11749         * sys/osxvideo/osxvideosink.m:
11750         * tests/check/Makefile.am:
11751         * tests/check/elements/videocrop.c:
11752         * tests/icles/Makefile.am:
11753         * tests/icles/videocrop-test.c:
11754         Move videocrop and osxvideo to -good.
11755
11756 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11757
11758         * configure.ac:
11759         * docs/plugins/Makefile.am:
11760         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11761         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11762         * gst/qtdemux/Makefile.am:
11763         * gst/qtdemux/gstrtpxqtdepay.c:
11764         * gst/qtdemux/gstrtpxqtdepay.h:
11765         * gst/qtdemux/qtdemux.c:
11766         * gst/qtdemux/qtdemux.h:
11767         * gst/qtdemux/qtdemux.vcproj:
11768         * gst/qtdemux/qtdemux_dump.c:
11769         * gst/qtdemux/qtdemux_dump.h:
11770         * gst/qtdemux/qtdemux_fourcc.h:
11771         * gst/qtdemux/qtdemux_types.c:
11772         * gst/qtdemux/qtdemux_types.h:
11773         * gst/qtdemux/qtpalette.h:
11774         * gst/qtdemux/quicktime.c:
11775         * win32/MANIFEST:
11776         * win32/vs6/libgstqtdemux.dsp:
11777         Move qtdemux to -good.
11778
11779         * gst-plugins-bad.spec.in:
11780         Update spec file to reflect wavpack & qtdemux moving to -good.
11781
11782 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
11783
11784         * docs/plugins/Makefile.am:
11785         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11786         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11787         * docs/plugins/inspect/plugin-waveform.xml:
11788         * sys/waveform/gstwaveformplugin.c:
11789         * sys/waveform/gstwaveformsink.c:
11790         * sys/waveform/gstwaveformsink.h:
11791         * win32/MANIFEST:
11792         * win32/vs6/libgstwaveform.dsp:
11793         Remove the waveform plugin now that it is in -good.
11794
11795 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
11796
11797         * configure.ac:
11798         * docs/plugins/Makefile.am:
11799         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11800         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11801         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
11802         * docs/plugins/inspect/plugin-wavpack.xml:
11803         * ext/Makefile.am:
11804         * ext/wavpack/Makefile.am:
11805         * ext/wavpack/gstwavpack.c:
11806         * ext/wavpack/gstwavpackcommon.c:
11807         * ext/wavpack/gstwavpackcommon.h:
11808         * ext/wavpack/gstwavpackdec.c:
11809         * ext/wavpack/gstwavpackdec.h:
11810         * ext/wavpack/gstwavpackenc.c:
11811         * ext/wavpack/gstwavpackenc.h:
11812         * ext/wavpack/gstwavpackparse.c:
11813         * ext/wavpack/gstwavpackparse.h:
11814         * ext/wavpack/gstwavpackstreamreader.c:
11815         * ext/wavpack/gstwavpackstreamreader.h:
11816         * ext/wavpack/md5.c:
11817         * ext/wavpack/md5.h:
11818         * tests/check/Makefile.am:
11819         * tests/check/elements/wavpackdec.c:
11820         * tests/check/elements/wavpackenc.c:
11821         * tests/check/elements/wavpackparse.c:
11822           Move wavpack to good.
11823
11824 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
11825
11826         * configure.ac:
11827         * docs/plugins/Makefile.am:
11828         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11829         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11830         * docs/plugins/gst-plugins-bad-plugins.args:
11831         * docs/plugins/inspect/plugin-directdraw.xml:
11832         * docs/plugins/inspect/plugin-directsound.xml:
11833         * sys/Makefile.am:
11834         * sys/directdraw/Makefile.am:
11835         * sys/directdraw/gstdirectdrawplugin.c:
11836         * sys/directdraw/gstdirectdrawsink.c:
11837         * sys/directdraw/gstdirectdrawsink.h:
11838         * sys/directsound/Makefile.am:
11839         * sys/directsound/gstdirectsoundplugin.c:
11840         * sys/directsound/gstdirectsoundsink.c:
11841         * sys/directsound/gstdirectsoundsink.h:
11842         * win32/MANIFEST:
11843         * win32/gst.sln:
11844         * win32/vs6/libgstdirectdraw.dsp:
11845         * win32/vs6/libgstdirectsound.dsp:
11846         * win32/vs7/libgstdirectdraw.vcproj:
11847         * win32/vs7/libgstdirectsound.vcproj:
11848         * win32/vs8/libgstdirectdraw.vcproj:
11849         * win32/vs8/libgstdirectsound.vcproj:
11850         Remove DirectDraw & DirectSound plugins, as they've moved to Good
11851
11852 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
11853
11854         * ext/timidity/gsttimidity.c: (gst_timidity_loop):
11855         * ext/timidity/gstwildmidi.c: (gst_wildmidi_loop):
11856         * gst/tta/gstttaparse.c: (gst_tta_parse_loop):
11857           When driving the pipeline, also post an error when we get a
11858           not-linked flow return from downstream.
11859
11860 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
11861
11862         * docs/plugins/gst-plugins-bad-plugins.args:
11863         * sys/directdraw/gstdirectdrawsink.c:
11864         (gst_directdraw_sink_class_init):
11865         Rename the keep-aspect-ratio property to force-aspect-ratio to make
11866         it consistent with xvimagesink and ximagesink.
11867
11868 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
11869
11870         * tests/icles/videocrop-test.c: (main):
11871           Default to xvimagesink instead of autovideosink while
11872           autovideosink/ghostpads/whatever don't handle the way we use it in
11873           the way we expect it to.
11874
11875 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11876
11877         * configure.ac:
11878           Bump requirements to released versions of core and -base, and remove
11879           special-casing for equalizer and rtpmanager as it's not needed any
11880           longer.
11881
11882 2007-06-06  Jan Schmidt  <thaytan@mad.scientist.com>
11883
11884         * sys/glsink/glimagesink.c: (gst_glimage_sink_stop),
11885         (gst_glimage_sink_create_window), (gst_glimage_sink_init_display):
11886         Sprinkle in some XSync calls to avoid raciness with broken
11887         drivers (ATI) when re-using a single glimagesink.
11888
11889 2007-06-06  Jan Schmidt  <thaytan@mad.scientist.com>
11890
11891         * gst/mpegvideoparse/mpegpacketiser.c:
11892         (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr),
11893         (mpeg_util_parse_picture_hdr):
11894         * gst/mpegvideoparse/mpegvideoparse.c:
11895         (mpegvideoparse_handle_sequence), (mpegvideoparse_drain_avail):
11896         Fix some silly bugs with calculating the guard sizes.
11897         Properly compare the old sequence header structure with the new one.
11898         Don't error out on an invalid sequence - just ignore it.
11899
11900 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11901
11902         * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode):
11903           Printf fix in debug statement; also print the right number there.
11904
11905 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
11906
11907         * ext/sdl/Makefile.am:
11908         * ext/sdl/sdlvideosink.c: (gst_sdlv_process_events):
11909           Add GST_CFLAGS, which apparently somehow fixes the build somewhere
11910           (#444499); initialise variable to avoid false compiler warning.
11911
11912 2007-06-01  Wim Taymans  <wim@fluendo.com>
11913
11914         * docs/plugins/Makefile.am:
11915         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11916         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11917         * docs/plugins/inspect/plugin-videosignal.xml:
11918         * gst/videosignal/Makefile.am:
11919         * gst/videosignal/gstvideomark.c: (gst_video_mark_set_caps),
11920         (gst_video_mark_draw_box), (gst_video_mark_420),
11921         (gst_video_mark_transform_ip), (gst_video_mark_set_property),
11922         (gst_video_mark_get_property), (gst_video_mark_base_init),
11923         (gst_video_mark_class_init), (gst_video_mark_init),
11924         (gst_video_mark_get_type):
11925         * gst/videosignal/gstvideomark.h:
11926         * gst/videosignal/gstvideosignal.c: (plugin_init):
11927         Add plugin to generate a pattern detectable by videodetect.
11928
11929 2007-06-01  Tim-Philipp Müller  <tim at centricular dot net>
11930
11931         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create):
11932           Don't leak buffer when returning an error.
11933
11934 2007-06-01  Wim Taymans  <wim@fluendo.com>
11935
11936         Patch by René Stadler <mail at renestadler dot de>:
11937
11938         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
11939         (gst_neonhttp_src_init), (gst_neonhttp_src_dispose),
11940         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
11941         (gst_neonhttp_src_start), (gst_neonhttp_src_do_seek),
11942         (gst_neonhttp_src_set_location),
11943         (gst_neonhttp_src_send_request_and_redirect),
11944         (gst_neonhttp_src_uri_get_uri), (gst_neonhttp_src_uri_set_uri):
11945         * ext/neon/gstneonhttpsrc.h:
11946         Deprecated "uri" property.  Clean up property descriptions.
11947         Change default User-Agent to the slightly more descriptive
11948         "GStreamer neonhttpsrc".
11949         Various other small cleanups, mostly property related.
11950
11951 2007-05-31  Tim-Philipp Müller  <tim at centricular dot net>
11952
11953         * ext/libmms/gstmms.h:
11954           No reason to use gpointers instead of typed pointes here as far as I
11955           can see.
11956
11957         * ext/mythtv/gstmythtvsrc.c:
11958         * ext/neon/gstneonhttpsrc.c:
11959         * gst/switch/gstswitch.c:
11960           Don't use gtk-doc magic markers for things that aren't meant to be
11961           parsed by gtk-doc. Makes gtk-doc complain a bit less.
11962
11963 2007-05-30  Wim Taymans  <wim@fluendo.com>
11964
11965         * configure.ac:
11966         * docs/plugins/Makefile.am:
11967         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
11968         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
11969         * docs/plugins/inspect/plugin-videosignal.xml:
11970         * gst/videosignal/Makefile.am:
11971         * gst/videosignal/gstvideoanalyse.c: (gst_video_analyse_set_caps),
11972         (gst_video_analyse_post_message), (gst_video_analyse_420),
11973         (gst_video_analyse_transform_ip), (gst_video_analyse_set_property),
11974         (gst_video_analyse_get_property), (gst_video_analyse_base_init),
11975         (gst_video_analyse_class_init), (gst_video_analyse_init),
11976         (gst_video_analyse_get_type):
11977         * gst/videosignal/gstvideoanalyse.h:
11978         * gst/videosignal/gstvideodetect.c: (gst_video_detect_set_caps),
11979         (gst_video_detect_post_message),
11980         (gst_video_detect_calc_brightness), (gst_video_detect_420),
11981         (gst_video_detect_transform_ip), (gst_video_detect_set_property),
11982         (gst_video_detect_get_property), (gst_video_detect_base_init),
11983         (gst_video_detect_class_init), (gst_video_detect_init),
11984         (gst_video_detect_get_type):
11985         * gst/videosignal/gstvideodetect.h:
11986         * gst/videosignal/gstvideosignal.c: (plugin_init):
11987         * gst/videosignal/gstvideosignal.h:
11988         Added videosignal plugin with two plugins to analyse video frames.
11989         Added videoanalyse to report about brightness and variance in video
11990         frames.
11991         Added videodetect to detect predefined patterns in a video signal.
11992
11993 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
11994
11995         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
11996         * docs/plugins/gst-plugins-bad-plugins.interfaces:
11997         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
11998         * docs/plugins/gst-plugins-bad-plugins.signals:
11999           More updates.
12000
12001 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
12002
12003         * docs/plugins/gst-plugins-bad-plugins.args:
12004         * docs/plugins/gst-plugins-bad-plugins.signals:
12005         * docs/plugins/inspect/plugin-dtsdec.xml:
12006         * docs/plugins/inspect/plugin-gstrtpmanager.xml:
12007         * docs/plugins/inspect/plugin-musepack.xml:
12008         * docs/plugins/inspect/plugin-rtpmanager.xml:
12009         * docs/plugins/inspect/plugin-sdl.xml:
12010         * docs/plugins/inspect/plugin-spcdec.xml:
12011         * docs/plugins/inspect/plugin-swfdec.xml:
12012           Updates; update inspect info for rtpmanager => gstrtpmanager rename,
12013           hopefully that makes the build bots happy again.
12014
12015 2007-05-28  Wim Taymans  <wim@fluendo.com>
12016
12017         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12018         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12019         * gst/rtpmanager/gstrtpbin.c: (create_session), (create_stream),
12020         (gst_rtp_bin_class_init), (create_recv_rtp), (create_recv_rtcp),
12021         (create_send_rtp), (create_rtcp), (gst_rtp_bin_request_new_pad):
12022         * gst/rtpmanager/gstrtpclient.c: (create_stream),
12023         (gst_rtp_client_request_new_pad):
12024         * gst/rtpmanager/gstrtpjitterbuffer.c:
12025         (gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
12026         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
12027         * gst/rtpmanager/gstrtpptdemux.c:
12028         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
12029         (gst_rtp_session_request_new_pad):
12030         * gst/rtpmanager/gstrtpssrcdemux.c:
12031         Rename elements to avoid conflict with farsight elements with the same
12032         name. Fixes #430664.
12033
12034 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
12035
12036         Patch by: Vincent Torri  <vtorri at univ-evry fr>
12037
12038         * sys/directdraw/gstdirectdrawsink.c:
12039         (gst_directdraw_sink_buffer_alloc),
12040         (gst_directdraw_sink_show_frame),
12041         (gst_directdraw_sink_check_primary_surface),
12042         (gst_directdraw_sink_check_offscreen_surface),
12043         (EnumModesCallback2), (gst_directdraw_sink_get_ddrawcaps),
12044         (gst_directdraw_sink_surface_create):
12045         * sys/directdraw/gstdirectdrawsink.h:
12046           Fix more warnings when compiling with MingW (#439914).
12047
12048 2007-05-24  Sebastian Moutte  <sebastien@moutte.net>
12049
12050         * docs/plugins/gst-plugins-bad-plugins.args:
12051         Remove directsoundsink property doc as this sink use the mixer
12052         interface now.
12053         * docs/plugins/gst-plugins-bad-plugins.interfaces:
12054         Add interfaces implemented by Windows sinks.
12055         * sys/directsound/gstdirectsoundsink.c:
12056         * sys/directsound/gstdirectsoundsink.h:
12057         Remove directsoundsink property  and implement the mixer interface.
12058         * win32/vs6/gst_plugins_bad.dsw:
12059         * win32/vs6/libgstdirectsound.dsp:
12060         Update project files.
12061         * gst-libs/gst/dshow/gstdshow.cpp:
12062         * gst-libs/gst/dshow/gstdshow.h:
12063         * gst-libs/gst/dshow/gstdshowfakesink.cpp:
12064         * gst-libs/gst/dshow/gstdshowfakesink.h:
12065         * gst-libs/gst/dshow/gstdshowfakesrc.cpp:
12066         * gst-libs/gst/dshow/gstdshowfakesrc.h:
12067         * gst-libs/gst/dshow/gstdshowinterface.cpp:
12068         * gst-libs/gst/dshow/gstdshowinterface.h:
12069         * win32/common/libgstdshow.def:
12070         * win32/vs6/libgstdshow.dsp:
12071         Add a new gst library which allow to create internal Direct Show
12072         graph (pipelines) to wrap Windows sources, decoders or encoders.
12073         It includes a DirectShow fake source and sink and utility functions.    
12074         * sys/dshowsrcwrapper/gstdshowaudiosrc.c:
12075         * sys/dshowsrcwrapper/gstdshowaudiosrc.h:
12076         * sys/dshowsrcwrapper/gstdshowsrcwrapper.c:
12077         * sys/dshowsrcwrapper/gstdshowsrcwrapper.h:
12078         * sys/dshowsrcwrapper/gstdshowvideosrc.c:
12079         * sys/dshowsrcwrapper/gstdshowvideosrc.h:
12080         * win32/vs6/libdshowsrcwrapper.dsp:
12081         Add a new plugin to wrap DirectShow sources on Windows.
12082         It gets data from any webcam, dv cam, micro. We could add 
12083         tv tunner card later.
12084         
12085 2007-05-23  Sebastian Dröge  <slomo@circular-chaos.org>
12086
12087         Patch by René Stadler <mail at renestadler dot de>:
12088
12089         * ext/sdl/sdlvideosink.c:
12090         Separate the authors by newlines instead of nothing. Fixes #440774.
12091
12092 2007-05-23  Wim Taymans  <wim@fluendo.com>
12093
12094         * docs/plugins/inspect/plugin-rtpmanager.xml:
12095         Add doc xml file.
12096
12097 2007-05-23  Wim Taymans  <wim@fluendo.com>
12098
12099         * docs/plugins/Makefile.am:
12100         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12101         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12102         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
12103         * gst/rtpmanager/gstrtpbin.h:
12104         * gst/rtpmanager/gstrtpclient.c:
12105         * gst/rtpmanager/gstrtpjitterbuffer.c:
12106         (gst_rtp_jitter_buffer_class_init),
12107         (gst_rtp_jitter_buffer_clear_pt_map), (gst_rtp_jitter_buffer_loop):
12108         * gst/rtpmanager/gstrtpjitterbuffer.h:
12109         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init),
12110         (gst_rtp_pt_demux_clear_pt_map):
12111         * gst/rtpmanager/gstrtpptdemux.h:
12112         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
12113         (rtcp_thread), (gst_rtp_session_clear_pt_map):
12114         * gst/rtpmanager/gstrtpsession.h:
12115         * gst/rtpmanager/gstrtpssrcdemux.c:
12116         (gst_rtp_ssrc_demux_class_init):
12117         Document stuff.
12118         Add clear-pt-map action signal where needed.
12119
12120 2007-05-22  Stefan Kost  <ensonic@users.sf.net>
12121
12122         * configure.ac:
12123           Depend on gstreamer-0.10.12.1.
12124         
12125         * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
12126           _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
12127           parent_class, gst_iir_equalizer_band_set_property,
12128           gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
12129           gst_iir_equalizer_child_proxy_get_child_by_index,
12130           gst_iir_equalizer_child_proxy_get_children_count,
12131           gst_iir_equalizer_child_proxy_interface_init, setup_filter,
12132           gst_iir_equalizer_compute_frequencies,
12133           gst_iir_equalizer_set_property, gst_iir_equalizer_get_property,
12134           plugin_init):
12135         * gst/equalizer/gstiirequalizer.h (audiofilter):
12136         * gst/equalizer/gstiirequalizernbands.c (ARG_NUM_BANDS,
12137           gst_iir_equalizer_nbands_base_init, gst_iir_equalizer_nbands_init,
12138           gst_iir_equalizer_nbands_set_property):
12139           Use new locking macros.
12140
12141         * gst/filter/gstbpwsinc.c (bpwsinc_set_caps):
12142           Add fixme.
12143
12144         * gst/spectrum/gstspectrum.c (SPECTRUM_WINDOW_BASE,
12145           SPECTRUM_WINDOW_LEN, gst_spectrum_init, gst_spectrum_set_property,
12146           gst_spectrum_event, gst_spectrum_transform_ip):
12147           Use new locking macros. Turn two fixed values into #defines.
12148
12149 2007-05-22  Edward Hervey  <edward@fluendo.com>
12150
12151         * docs/plugins/Makefile.am:
12152         Also look for .m (objectivec) files.
12153         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12154         * docs/plugins/gst-plugins-bad-plugins.args:
12155         * sys/osxvideo/osxvideosink.m:
12156         Add documentation for element and properties.
12157
12158 2007-05-21  Stefan Kost  <ensonic@users.sf.net>
12159
12160         * ChangeLog:
12161           ChangeLog surgery.
12162         * gst/equalizer/gstiirequalizer.c (ARG_BAND_WIDTH, _do_init, ARG_GAIN,
12163           _GstIirEqualizerBand, object, _GstIirEqualizerBandClass,
12164           parent_class, gst_iir_equalizer_band_set_property,
12165           gst_iir_equalizer_band_class_init, gst_iir_equalizer_band_get_type,
12166           gst_iir_equalizer_child_proxy_get_child_by_index,
12167           gst_iir_equalizer_child_proxy_get_children_count,
12168           gst_iir_equalizer_child_proxy_interface_init, setup_filter,
12169           gst_iir_equalizer_compute_frequencies, plugin_init):
12170         * tests/icles/equalizer-test.c:
12171           Add fixme and comment for example.
12172
12173 2007-05-21  Stefan Kost  <ensonic@users.sf.net>
12174
12175         * gst/spectrum/gstspectrum.c (gst_spectrum_set_property,
12176           gst_spectrum_event, gst_spectrum_transform_ip):
12177           Use lock to protect from concurrent access.
12178
12179 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
12180
12181         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
12182         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
12183         Specify and use properties as unsigned int that are an unsigned int.
12184
12185 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
12186
12187         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
12188         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
12189         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
12190         * ext/wavpack/gstwavpackenc.h:
12191         Fixup docs, make the bitrate property an int as it should be and
12192         allow to set the different extra processing modes instead of only
12193         allowing none and the default one.
12194
12195 2007-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
12196
12197         * ext/wavpack/gstwavpackenc.c:
12198         Add missing audioconverts in the example pipelines of wavpackenc. As
12199         the wavpack stuff now needs input with 32 bit width (and random depth)
12200         this is needed now. The example pipelines for the parser and decoder
12201         are still fine.
12202
12203 2007-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
12204
12205         * docs/plugins/Makefile.am:
12206         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12207           Fix docs build and hierarchy.
12208
12209 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
12210
12211         * sys/directdraw/gstdirectdrawsink.c: (gst_ddrawsurface_finalize),
12212         (gst_directdraw_sink_buffer_alloc),
12213         (gst_directdraw_sink_get_ddrawcaps),
12214         (gst_directdraw_sink_surface_create):
12215           Bunch of small fixes: remove static function that doesn't exist;
12216           declare another one that does; printf format fix; use right macro
12217           when specifying debug category; remove a bunch of unused variables;
12218           #if 0 out an unused chunk of code (partially fixes #439914).
12219
12220 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
12221
12222         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample):
12223         * gst/switch/gstswitch.c: (gst_switch_chain):
12224           Printf format fixes (#439910, #439911).
12225
12226 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12227
12228         * tests/check/Makefile.am:
12229           Remove bits for deinterleave check which isn't in CVS yet.
12230
12231 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
12232
12233         Patch by: René Stadler <mail at renestadler de>
12234
12235         * docs/plugins/Makefile.am:
12236         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12237         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12238         * docs/plugins/inspect/plugin-replaygain.xml:
12239         * gst/replaygain/Makefile.am:
12240         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_class_init),
12241         (gst_rg_analysis_start), (gst_rg_analysis_set_caps),
12242         (gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
12243         (gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
12244         (gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
12245         (gst_rg_analysis_album_result):
12246         * gst/replaygain/gstrganalysis.h:
12247         * gst/replaygain/gstrglimiter.c: (gst_rg_limiter_base_init),
12248         (gst_rg_limiter_class_init), (gst_rg_limiter_init),
12249         (gst_rg_limiter_set_property), (gst_rg_limiter_get_property),
12250         (gst_rg_limiter_transform_ip):
12251         * gst/replaygain/gstrglimiter.h:
12252         * gst/replaygain/gstrgvolume.c: (gst_rg_volume_base_init),
12253         (gst_rg_volume_class_init), (gst_rg_volume_init),
12254         (gst_rg_volume_set_property), (gst_rg_volume_get_property),
12255         (gst_rg_volume_dispose), (gst_rg_volume_change_state),
12256         (gst_rg_volume_sink_event), (gst_rg_volume_tag_event),
12257         (gst_rg_volume_reset), (gst_rg_volume_update_gain),
12258         (gst_rg_volume_determine_gain):
12259         * gst/replaygain/gstrgvolume.h:
12260         * gst/replaygain/replaygain.c: (plugin_init):
12261         * gst/replaygain/replaygain.h:
12262         * gst/replaygain/rganalysis.h:
12263         * tests/check/Makefile.am:
12264         * tests/check/elements/.cvsignore:
12265         * tests/check/elements/rganalysis.c: (send_eos_event),
12266         (GST_START_TEST):
12267         * tests/check/elements/rglimiter.c: (setup_rglimiter),
12268         (cleanup_rglimiter), (set_playing_state), (create_test_buffer),
12269         (verify_test_buffer), (GST_START_TEST), (rglimiter_suite), (main):
12270         * tests/check/elements/rgvolume.c: (event_func), (setup_rgvolume),
12271         (cleanup_rgvolume), (set_playing_state), (set_null_state),
12272         (send_eos_event), (send_tag_event), (test_buffer_new),
12273         (fail_unless_target_gain), (fail_unless_result_gain),
12274         (fail_unless_gain), (GST_START_TEST), (rgvolume_suite), (main):
12275           Add replaygain playback elements (#412710).
12276
12277 2007-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
12278
12279         * sys/glsink/glimagesink.c: (gst_glimage_sink_init_display):
12280         Update the cached caps after opening the display so that we report
12281         only the supported caps formats, not just the template caps.
12282         Fixes: #439405
12283
12284 2007-05-18  Stefan Kost  <ensonic@users.sf.net>
12285
12286         * ext/amrwb/gstamrwbdec.c (gst_amrwbdec_debug, GST_CAT_DEFAULT,
12287           _do_init, gst_amrwbdec_base_init, gst_amrwbdec_class_init):
12288         * ext/amrwb/gstamrwbenc.c (gst_amrwbenc_debug, GST_CAT_DEFAULT,
12289           _do_init, gst_amrwbenc_base_init, gst_amrwbenc_class_init):
12290         * ext/amrwb/gstamrwbparse.c (gst_amrwbparse_debug, GST_CAT_DEFAULT,
12291           _do_init, gst_amrwbparse_base_init, gst_amrwbparse_class_init):
12292           First round of cleanups, that use GST_BOILERPLATE, GST_ELEMENT_DETAILS,
12293           GST_DEBUG_FUNCPTR and add log-category.
12294
12295 2007-05-17  Edward Hervey  <edward@fluendo.com>
12296
12297         * sys/osxvideo/osxvideosink.h:
12298         * sys/osxvideo/osxvideosink.m:
12299         Remove the event-loop-in-separate-thread modifications, because MacOSX
12300         is $#@(*%$# ! For those wondering, the event handling needs to be done
12301         in the main thread after all..
12302
12303 2007-05-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12304
12305         * gst/switch/gstswitch.c (ARG_0, ARG_NB_SOURCES, ARG_ACTIVE_SOURCE,
12306           ARG_START_VALUE, ARG_STOP_VALUE, ARG_LAST_TS, ARG_QUEUE_BUFFERS,
12307           parent_class, gst_switch_release_pad, gst_switch_request_new_pad,
12308           gst_switch_chain, gst_switch_event, gst_switch_set_property,
12309           gst_switch_get_property, gst_switch_getcaps, gst_switch_dispose,
12310           unref_buffer, unref_buffers_and_destroy_list, gst_switch_init,
12311           gst_switch_base_init, gst_switch_class_init):
12312         * gst/switch/gstswitch.h (need_to_send_newsegment, queue_buffers,
12313           stop_value, start_value, current_start, last_ts, stored_buffers):
12314         Add handling of application provided stop and start values, allowing
12315         A/V sync across 2 switch elements.
12316
12317 2007-05-17  Edward Hervey  <edward@fluendo.com>
12318
12319         * sys/osxvideo/osxvideosink.h:
12320         * sys/osxvideo/osxvideosink.m:
12321         Fix a stupid #if vs #ifdef bug. Should use the proper colorspace now.
12322         Use a separate thread/task for the cocoa event_loop, else it wouldn't
12323         stop.
12324
12325 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
12326
12327         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
12328         (gst_real_audio_dec_setcaps):
12329         * gst/real/gstrealvideodec.c: (gst_real_video_dec_chain):
12330           Don't crash when we get a buffer and our input caps haven't been set
12331           yet; also, don't leak all the input buffers (realaudiodec only).
12332
12333 2007-05-16  Stefan Kost  <ensonic@users.sf.net>
12334
12335         patch by: Stanislav Brabec <sbrabec@suse.cz>
12336
12337         * configure.ac:
12338         * ext/amrwb/Makefile.am:
12339         * ext/amrwb/amrwb-code/Makefile.am:
12340         * ext/amrwb/amrwb-code/amrwb/Makefile.am:
12341         * ext/amrwb/amrwb-code/amrwb/README:
12342         * ext/amrwb/gstamrwbdec.c:
12343         * ext/amrwb/gstamrwbdec.h (__GST_AMRWBDEC_H__):
12344         * ext/amrwb/gstamrwbenc.h (__GST_AMRWBENC_H__):
12345         * ext/amrwb/gstamrwbparse.c:
12346         * ext/amrwb/gstamrwbparse.h (__GST_AMRWBPARSE_H__):
12347         * gst-libs/Makefile.am:
12348         * gst-libs/ext/Makefile.am:
12349         * gst-libs/ext/amrwb/Makefile.am:
12350         * gst-libs/ext/amrwb/README:
12351           Use external shared libamrwb. Fixes #423741 (with lots of cleanup).
12352
12353 2007-05-16  Stefan Kost  <ensonic@users.sf.net>
12354
12355         * ext/x264/gstx264enc.c (gst_x264_enc_init_encoder):
12356           This needs a version check.
12357
12358         * gst/bayer/Makefile.am:
12359           Fix the build.
12360
12361 2007-05-15  Tim-Philipp Müller  <tim at centricular dot net>
12362
12363         * configure.ac:
12364         * sys/directdraw/Makefile.am:
12365         * sys/directsound/Makefile.am:
12366           Add DIRECTDRAW_CFLAGS and DIRECTSOUND_CFLAGS to Makefile.am; save
12367           and restore the various flags in the directdraw/directsound
12368           detection section. Apparently improves cross-compiling for win32
12369           with mingw32 under some circumstances (#437539).
12370
12371 2007-05-15  Wim Taymans  <wim@fluendo.com>
12372
12373         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
12374         We always use fixed caps.
12375
12376 2007-05-14  David Schleef  <ds@schleef.org>
12377
12378         * gst/rtpmanager/gstrtpbin.c:
12379           g_hash_table_remove_all() only exists in 2.12.  Work around.
12380
12381 2007-05-14  David Schleef  <ds@schleef.org>
12382
12383         * configure.ac:
12384         * gst/bayer/Makefile.am:
12385         * gst/bayer/gstbayer.c:
12386         * gst/bayer/gstbayer2rgb.c:
12387           Add a Bayer-to-RGB converter.  You know you want one, uh-huh.
12388           Partial fix for #314160.
12389
12390 2007-05-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12391
12392         * gst/switch/gstswitch.c (ARG_ACTIVE_SOURCE, ARG_STOP_VALUE,
12393           ARG_LAST_TS, parent_class, gst_switch_release_pad,
12394           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
12395           gst_switch_set_property, gst_switch_get_property, gst_switch_getcaps,
12396           gst_switch_dispose, gst_switch_init, gst_switch_class_init):
12397         * gst/switch/gstswitch.h (previous_sinkpad, nb_sinkpads, stop_value,
12398           current_start, last_ts):
12399         Allow application to provide a stop timestamp, so a new segment
12400         update can be sent before switching.
12401
12402 2007-05-14  Wim Taymans  <wim@fluendo.com>
12403
12404         * gst/rtpmanager/async_jitter_queue.c:
12405         (async_jitter_queue_set_flushing_unlocked):
12406         Fix leak when flushing.
12407
12408         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_clear_pt_map),
12409         (gst_rtp_bin_class_init):
12410         * gst/rtpmanager/gstrtpbin.h:
12411         Add clear-pt-map signal.
12412
12413         * gst/rtpmanager/gstrtpjitterbuffer.c:
12414         (gst_rtp_jitter_buffer_flush_stop),
12415         (gst_rtp_jitter_buffer_sink_event), (gst_rtp_jitter_buffer_loop):
12416         Init clock-rate to -1 to mark unknow clock rate.
12417         Fix flushing.
12418
12419 2007-05-13  David Schleef  <ds@schleef.org>
12420
12421         * gst/replaygain/rganalysis.c:
12422           Fix wrong ifdef for visual C++.  Fixes: #437403.
12423           By Ali Sabil <ali.sabil@gmail.com>.
12424
12425 2007-05-12  David Schleef  <ds@schleef.org>
12426
12427         * ext/neon/gstneonhttpsrc.c:
12428           Make redirection the default behavior.  Fixes #413818.
12429
12430 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12431
12432         * gst/qtdemux/qtdemux.c (gst_qtdemux_move_stream,
12433           gst_qtdemux_loop_state_header, gst_qtdemux_activate_segment,
12434           gst_qtdemux_prepare_current_sample, gst_qtdemux_combine_flows,
12435           gst_qtdemux_loop_state_movie, gst_qtdemux_loop,
12436           qtdemux_parse_segments, qtdemux_parse_trak):
12437         * gst/rtpmanager/rtpsession.c (rtp_session_get_bandwidth,
12438           rtp_session_get_rtcp_bandwidth, rtp_session_get_cname,
12439           rtp_session_get_name, rtp_session_get_email, rtp_session_get_phone,
12440           rtp_session_get_location, rtp_session_get_tool,
12441           rtp_session_process_bye, session_report_blocks):
12442         * gst/rtpmanager/rtpsource.c (rtp_source_process_rtp,
12443           rtp_source_send_rtp, rtp_source_process_sr, rtp_source_process_rb):
12444           More format arg fixing (spotted by Ali Sabil <ali.sabil@gmail.com>).
12445
12446         * gst/switch/Makefile.am:
12447           Add require libraries(spotted by Ali Sabil <ali.sabil@gmail.com>).
12448
12449 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12450
12451         * gst/rtpmanager/async_jitter_queue.c (tail_buffer_duration,
12452           async_jitter_queue_ref, async_jitter_queue_ref_unlocked,
12453           async_jitter_queue_set_low_threshold,
12454           async_jitter_queue_length_ts_units_unlocked,
12455           async_jitter_queue_unref_and_unlock, async_jitter_queue_unref,
12456           async_jitter_queue_lock, async_jitter_queue_push,
12457           async_jitter_queue_push_unlocked, async_jitter_queue_push_sorted,
12458           async_jitter_queue_pop_intern_unlocked, async_jitter_queue_pop,
12459           async_jitter_queue_pop_unlocked, async_jitter_queue_length_unlocked,
12460           async_jitter_queue_set_flushing_unlocked,
12461           async_jitter_queue_unset_flushing_unlocked):
12462           Format arg fix (spotted by Ali Sabil <ali.sabil@gmail.com>).
12463
12464 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12465
12466         * common/m4/gst-x11.m4:
12467           Restore CFLAGS and LIBS.
12468
12469         * configure.ac:
12470           Revert previous patch.
12471
12472 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
12473
12474         Patch by: Ali Sabil <ali.sabil@gmail.com>
12475
12476         * configure.ac:
12477           Save and restore CFLAGS for OpenGL check. Fixes #437260.
12478         
12479
12480 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
12481
12482         * docs/plugins/gst-plugins-bad-plugins.args:
12483         Add directraw and directsound sinks properties.
12484
12485 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
12486
12487         * configure.ac:
12488           Fix --disable-external (hopefully).
12489
12490 2007-05-09  Wim Taymans  <wim@fluendo.com>
12491
12492         * gst/rtpmanager/gstrtpjitterbuffer.c:
12493         (gst_rtp_jitter_buffer_query):
12494         Pass queries upstream.
12495
12496 2007-05-06  Tim-Philipp Müller  <tim at centricular dot net>
12497
12498         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps),
12499         (gst_real_audio_dec_finalize):
12500         * gst/real/gstrealaudiodec.h:
12501         * gst/real/gstrealvideodec.c: (open_library), (close_library):
12502         * gst/real/gstrealvideodec.h:
12503           Use GModule instead of using dlsym() directly. Fixes #430598.
12504
12505 2007-05-04  Sebastien Moutte <sebastien@moutte.net>
12506
12507         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12508         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12509         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12510           Add docs for Windows sinks.
12511
12512 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
12513
12514         * gst/speed/gstspeed.c: (speed_src_event), (speed_sink_event),
12515         (speed_chain), (speed_change_state):
12516           Fix event handling a bit by replacing completely dubious code
12517           written by someone else with completely dubious code written
12518           by me. Should at least fix #412077 though.
12519
12520 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
12521
12522         * gst/speed/gstspeed.c: (speed_src_query), (speed_chain),
12523         (plugin_init):
12524           Add debug category; use gst_pad_query_peer_*() utility functions;
12525           use gst_util_scale*(); add gtk-doc blurb.
12526
12527 2007-05-04  Wim Taymans  <wim@fluendo.com>
12528
12529         * gst/rtpmanager/gstrtpjitterbuffer.c:
12530         (gst_rtp_jitter_buffer_query):
12531         Add some debug info.
12532
12533         * gst/rtpmanager/rtpsession.c: (rtp_session_init),
12534         (rtp_session_send_rtp):
12535         Store real user name in the session.
12536
12537 2007-05-03  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
12538
12539         * configure.ac:
12540         * examples/Makefile.am:
12541         * examples/switch/switcher.c (loop, my_bus_callback, switch_timer,
12542           last_message_received, main):
12543         * gst/switch/gstswitch.c (GST_CAT_DEFAULT, gst_switch_details,
12544           gst_switch_src_factory, parent_class, gst_switch_release_pad,
12545           gst_switch_request_new_pad, gst_switch_chain, gst_switch_event,
12546           gst_switch_set_property, gst_switch_get_property,
12547           gst_switch_get_linked_pad, gst_switch_getcaps,
12548           gst_switch_bufferalloc, gst_switch_get_linked_pads,
12549           gst_switch_dispose, gst_switch_init, gst_switch_base_init,
12550           gst_switch_class_init):
12551         * gst/switch/gstswitch.h (GstSwitch, GstSwitchClass, _GstSwitch,
12552           element, active_sinkpad, srcpad, nb_sinkpads, newsegment_events,
12553           need_to_send_newsegment):
12554         Port switch element and example program to 0.10.
12555
12556 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12557
12558         * ext/wavpack/gstwavpack.c: (plugin_init):
12559         Call bindtextdomain() to get localized strings.
12560         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
12561         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
12562         (gst_wavpack_parse_handle_seek_event),
12563         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_chain):
12564         * ext/wavpack/gstwavpackparse.h:
12565         Handle DISCONT buffers by correctly setting the DISCONT flag
12566         on outgoing buffers when necessary.
12567         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_handle_seek_event)
12568         Send newsegment from the streaming thread.
12569
12570 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12571
12572         * ext/wavpack/gstwavpackparse.c:
12573         (gst_wavpack_parse_handle_seek_event):
12574         Remove old workaround that was needed when seeking after the last
12575         sample. With the fixed error handling this works now as expected
12576         without pushing the last sample although it wasn't requested.
12577
12578 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12579
12580         * ext/wavpack/gstwavpackparse.c:
12581         (gst_wavpack_parse_handle_seek_event):
12582         Handle segment seeks in the seek event handler, correctly work with
12583         stop position == -1 and instead of stopping the task on seek just
12584         pause it.
12585
12586 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12587
12588         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_loop):
12589         Add handling for segment seeks.
12590
12591 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
12592
12593         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_pull_buffer),
12594         (gst_wavpack_parse_create_src_pad),
12595         (gst_wavpack_parse_resync_loop), (gst_wavpack_parse_loop),
12596         (gst_wavpack_parse_chain):
12597         Correctly handle errors, especially in the loop function. Before it
12598         was easy to get the task paused but no error being posted on the bus.
12599
12600 2007-04-30  Wim Taymans  <wim@fluendo.com>
12601
12602         * gst/rtpmanager/async_jitter_queue.c: (signal_waiting_threads),
12603         (async_jitter_queue_pop_intern_unlocked):
12604         Fix the case where the buffer underruns and does not block.
12605
12606         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_base_init),
12607         (create_recv_rtcp), (create_send_rtp), (create_rtcp),
12608         (gst_rtp_bin_request_new_pad):
12609         Rename RTCP send pad, like in the session manager.
12610         Allow getting an RTCP pad for receiving even if we don't receive RTP.
12611         fix handling of send_rtp_src pad.
12612
12613         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
12614         When no pt map could be found, fall back to the sinkpad caps.
12615
12616         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_process_rtp),
12617         (gst_rtp_session_send_rtp), (create_recv_rtp_sink),
12618         (create_recv_rtcp_sink), (create_send_rtp_sink),
12619         (create_send_rtcp_src):
12620         Fix pad names.
12621
12622         * gst/rtpmanager/rtpsession.c: (source_push_rtp),
12623         (rtp_session_create_source), (rtp_session_process_sr),
12624         (rtp_session_send_rtp), (session_start_rtcp):
12625         * gst/rtpmanager/rtpsession.h:
12626         Unlock session when performing a callback.
12627         Add callbacks for the internal session object.
12628         Fix sending of RTP packets.
12629         first attempt at adding NTP times in the SR packets.
12630         Small debug and doc improvements.
12631
12632         * gst/rtpmanager/rtpsource.c: (rtp_source_send_rtp):
12633         Update stats for SR reports.
12634
12635 2007-04-29  Wim Taymans  <wim@fluendo.com>
12636
12637         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_send_rtcp):
12638         Remove debug.
12639
12640         * gst/rtpmanager/rtpsession.c: (rtp_session_process_sr),
12641         (rtp_session_process_sdes), (calculate_rtcp_interval),
12642         (rtp_session_next_timeout), (session_report_blocks):
12643         * gst/rtpmanager/rtpstats.c: (rtp_stats_calculate_rtcp_interval):
12644         Improve debugging
12645         Fix interval for BYE/RTCP packets.
12646
12647 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12648
12649         * docs/plugins/gst-plugins-bad-plugins.args:
12650         * docs/plugins/gst-plugins-bad-plugins.signals:
12651           Commit result of running scanobj-update
12652
12653 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12654
12655         * autogen.sh:
12656           Require automake 1.7
12657         * ext/alsaspdif/Makefile.am:
12658         * ext/divx/Makefile.am:
12659         * ext/ivorbis/Makefile.am:
12660         * ext/musicbrainz/Makefile.am:
12661         * ext/neon/Makefile.am:
12662         * ext/sdl/Makefile.am:
12663         * ext/swfdec/Makefile.am:
12664         * ext/theora/Makefile.am:
12665         * ext/wavpack/Makefile.am:
12666         * ext/xvid/Makefile.am:
12667         * gst/modplug/Makefile.am:
12668           Fix up Makefile.am accordingly.
12669
12670 2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12671
12672         * docs/plugins/inspect/plugin-alsaspdif.xml:
12673         * docs/plugins/inspect/plugin-bz2.xml:
12674         * docs/plugins/inspect/plugin-cdxaparse.xml:
12675         * docs/plugins/inspect/plugin-dfbvideosink.xml:
12676         * docs/plugins/inspect/plugin-faac.xml:
12677         * docs/plugins/inspect/plugin-faad.xml:
12678         * docs/plugins/inspect/plugin-filter.xml:
12679         * docs/plugins/inspect/plugin-freeze.xml:
12680         * docs/plugins/inspect/plugin-glimagesink.xml:
12681         * docs/plugins/inspect/plugin-gsm.xml:
12682         * docs/plugins/inspect/plugin-h264parse.xml:
12683         * docs/plugins/inspect/plugin-jack.xml:
12684         * docs/plugins/inspect/plugin-mms.xml:
12685         * docs/plugins/inspect/plugin-modplug.xml:
12686         * docs/plugins/inspect/plugin-musepack.xml:
12687         * docs/plugins/inspect/plugin-musicbrainz.xml:
12688         * docs/plugins/inspect/plugin-neon.xml:
12689         * docs/plugins/inspect/plugin-nsfdec.xml:
12690         * docs/plugins/inspect/plugin-replaygain.xml:
12691         * docs/plugins/inspect/plugin-sdl.xml:
12692         * docs/plugins/inspect/plugin-soundtouch.xml:
12693         * docs/plugins/inspect/plugin-spectrum.xml:
12694         * docs/plugins/inspect/plugin-speed.xml:
12695         * docs/plugins/inspect/plugin-tta.xml:
12696         * docs/plugins/inspect/plugin-videocrop.xml:
12697         * docs/plugins/inspect/plugin-wavpack.xml:
12698         * docs/plugins/inspect/plugin-xingheader.xml:
12699         * docs/plugins/inspect/plugin-xvid.xml:
12700           Add jack and update.
12701
12702 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
12703
12704         * configure.ac:
12705           Don't build equalizer unless we have core from CVS (it won't
12706           work with earlier versions due to GstChildProxy brokeness).
12707           Also up requirements to last released core/base.
12708
12709 2007-04-27  Wim Taymans  <wim@fluendo.com>
12710
12711         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
12712         (gst_rtp_session_send_rtcp), (gst_rtp_session_reconsider):
12713         Move reconsideration code to the rtpsession object.
12714         Simplify timout handling and add reconsideration.
12715
12716         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
12717         (rtp_session_init), (rtp_session_finalize), (on_bye_ssrc),
12718         (on_bye_timeout), (on_timeout), (rtp_session_set_callbacks),
12719         (obtain_source), (rtp_session_create_source),
12720         (update_arrival_stats), (rtp_session_process_rtp),
12721         (rtp_session_process_sr), (rtp_session_process_rr),
12722         (rtp_session_process_bye), (rtp_session_process_rtcp),
12723         (calculate_rtcp_interval), (rtp_session_send_bye),
12724         (rtp_session_next_timeout), (session_start_rtcp),
12725         (session_report_blocks), (session_cleanup), (session_sdes),
12726         (session_bye), (is_rtcp_time), (rtp_session_on_timeout):
12727         * gst/rtpmanager/rtpsession.h:
12728         Handle timeout of inactive sources and senders.
12729         Implement BYE scheduling.
12730
12731         * gst/rtpmanager/rtpsource.c: (calculate_jitter),
12732         (rtp_source_process_sr), (rtp_source_get_last_sr),
12733         (rtp_source_get_last_rb):
12734         * gst/rtpmanager/rtpsource.h:
12735         Add members to check for timeouts.
12736
12737         * gst/rtpmanager/rtpstats.c: (rtp_stats_init_defaults),
12738         (rtp_stats_calculate_rtcp_interval), (rtp_stats_add_rtcp_jitter),
12739         (rtp_stats_calculate_bye_interval):
12740         * gst/rtpmanager/rtpstats.h:
12741         Use RFC algorithm for calculating the reporting interval.
12742
12743 2007-04-26  Edward Hervey  <edward@fluendo.com>
12744
12745         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
12746         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
12747         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
12748         * docs/plugins/inspect/plugin-osxvideo.xml:
12749         Add documentation for osxvideo
12750
12751 2007-04-25  Wim Taymans  <wim@fluendo.com>
12752
12753         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread):
12754         Implement forward and reverse reconsideration.
12755
12756         * gst/rtpmanager/rtpsession.c: (rtp_session_get_num_sources),
12757         (rtp_session_get_num_active_sources), (rtp_session_process_sr),
12758         (session_report_blocks):
12759         * gst/rtpmanager/rtpsession.h:
12760         Small cleanups.
12761
12762 2007-04-25  Wim Taymans  <wim@fluendo.com>
12763
12764         reviewed by: <delete if not using a buddy>
12765
12766         * gst/rtpmanager/gstrtpbin.c: (create_stream),
12767         (gst_rtp_bin_class_init), (gst_rtp_bin_set_property),
12768         (gst_rtp_bin_get_property):
12769         * gst/rtpmanager/gstrtpbin.h:
12770         Make default jitterbuffer latency configurable.
12771
12772         * gst/rtpmanager/gstrtpjitterbuffer.c:
12773         (gst_rtp_jitter_buffer_class_init),
12774         (gst_jitter_buffer_sink_parse_caps), (gst_rtp_jitter_buffer_loop),
12775         (gst_rtp_jitter_buffer_set_property),
12776         (gst_rtp_jitter_buffer_get_property):
12777         Debuging cleanups.
12778
12779 2007-04-25  Wim Taymans  <wim@fluendo.com>
12780
12781         * gst/rtpmanager/gstrtpjitterbuffer.c:
12782         (gst_rtp_jitter_buffer_change_state):
12783         Report NO_PREROLL when going to PAUSED.
12784
12785         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread):
12786         Don't send RTCP right before we are shutting down.
12787
12788         * gst/rtpmanager/rtpsession.c: (rtp_session_process_rtp),
12789         (rtp_session_process_sr), (session_report_blocks),
12790         (rtp_session_perform_reporting):
12791         Improve report blocks.
12792
12793         * gst/rtpmanager/rtpsource.c: (calculate_jitter), (init_seq),
12794         (rtp_source_process_rtp), (rtp_source_process_sr),
12795         (rtp_source_process_rb), (rtp_source_get_last_sr),
12796         (rtp_source_get_last_rb):
12797         * gst/rtpmanager/rtpsource.h:
12798         * gst/rtpmanager/rtpstats.h:
12799         Cleanups, add methods to access stats. 
12800
12801 2007-04-25  Wim Taymans  <wim@fluendo.com>
12802
12803         * gst/rtpmanager/gstrtpbin.c: (create_rtcp):
12804         fix for pad name change
12805
12806         * gst/rtpmanager/gstrtpsession.c: (rtcp_thread),
12807         (gst_rtp_session_send_rtcp), (gst_rtp_session_clock_rate):
12808         Fix for renamed methods.
12809
12810         * gst/rtpmanager/rtpsession.c: (rtp_session_init),
12811         (rtp_session_finalize), (rtp_session_set_cname),
12812         (rtp_session_get_cname), (rtp_session_set_name),
12813         (rtp_session_get_name), (rtp_session_set_email),
12814         (rtp_session_get_email), (rtp_session_set_phone),
12815         (rtp_session_get_phone), (rtp_session_set_location),
12816         (rtp_session_get_location), (rtp_session_set_tool),
12817         (rtp_session_get_tool), (rtp_session_set_note),
12818         (rtp_session_get_note), (source_push_rtp), (obtain_source),
12819         (rtp_session_add_source), (rtp_session_get_source_by_ssrc),
12820         (rtp_session_create_source), (rtp_session_process_rtp),
12821         (rtp_session_process_sr), (rtp_session_process_sdes),
12822         (rtp_session_process_rtcp), (rtp_session_send_rtp),
12823         (rtp_session_get_reporting_interval), (session_report_blocks),
12824         (session_sdes), (rtp_session_perform_reporting):
12825         * gst/rtpmanager/rtpsession.h:
12826         Prepare for implementing SSRC sampling.
12827         Create SSRC for the session. 
12828         Add methods to set the SDES entries.
12829         fix accounting of senders/receivers.
12830         Implement SR/RR/SDES RTCP reporting.
12831
12832         * gst/rtpmanager/rtpsource.c: (rtp_source_init), (init_seq),
12833         (rtp_source_process_rtp), (rtp_source_process_sr):
12834         * gst/rtpmanager/rtpsource.h:
12835         Implement extended sequence number.
12836
12837         * gst/rtpmanager/rtpstats.c: (rtp_stats_calculate_rtcp_interval):
12838         * gst/rtpmanager/rtpstats.h:
12839         Rename some fields.
12840
12841 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
12842
12843         * gst/y4m/gsty4mencode.c: (gst_y4m_encode_init),
12844         (gst_y4m_encode_setcaps):
12845         * tests/check/elements/y4menc.c: (GST_START_TEST):
12846           Plug some leaks; try to make build bot happy again.
12847
12848 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
12849
12850         * gst/Makefile.am:
12851           Fix distcheck, hopefully (rtpmanager is already in GST_PLUGINS_ALL).
12852
12853 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
12854
12855         * gst/rtpmanager/rtpsession.c: (rtp_session_finalize):
12856           Don't use GLib-2.10 API, we only require GLib 2.8 at the moment.
12857
12858 2007-04-20  Michael Smith  <msmith@fluendo.com>
12859
12860         * ext/faad/gstfaad.c: (gst_faad_open_decoder):
12861           FAAD fails to decode low (e.g. 8 kHz) sample rate AAC data in
12862           quicktime because of sample rate mismatches.
12863           Reenable overriding the implicit SBR behaviour (accidently changed?)
12864           to allow playback of these files.
12865
12866 2007-04-19  David Schleef  <ds@schleef.org>
12867
12868         * configure.ac:
12869           Change rtpmanager disabling to keep -bad releasable.
12870
12871 2007-04-18  David Schleef  <ds@schleef.org>
12872
12873         * configure.ac:
12874         * gst/Makefile.am:
12875           Fix wtay's hack.  rtpmanager is disabled in configure.ac on
12876           line 268.
12877
12878 2007-04-18  Wim Taymans  <wim@fluendo.com>
12879
12880         * gst/Makefile.am:
12881         Add rtpmanager dir to dist.
12882
12883 2007-04-18  Wim Taymans  <wim@fluendo.com>
12884
12885         * configure.ac:
12886         Disable rtpmanager for now because it depends on CVS -base.
12887
12888         * gst/rtpmanager/Makefile.am:
12889         Added new files for session manager.
12890
12891         * gst/rtpmanager/gstrtpjitterbuffer.h:
12892         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
12893         (create_stream), (pt_map_requested), (new_ssrc_pad_found):
12894         Some cleanups. 
12895         the session manager can now also request a pt-map.
12896
12897         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_base_init),
12898         (gst_rtp_session_class_init), (gst_rtp_session_init),
12899         (gst_rtp_session_finalize), (rtcp_thread), (start_rtcp_thread),
12900         (stop_rtcp_thread), (gst_rtp_session_change_state),
12901         (gst_rtp_session_process_rtp), (gst_rtp_session_send_rtp),
12902         (gst_rtp_session_send_rtcp), (gst_rtp_session_clock_rate),
12903         (gst_rtp_session_get_time), (gst_rtp_session_event_recv_rtp_sink),
12904         (gst_rtp_session_chain_recv_rtp),
12905         (gst_rtp_session_event_recv_rtcp_sink),
12906         (gst_rtp_session_chain_recv_rtcp),
12907         (gst_rtp_session_event_send_rtp_sink),
12908         (gst_rtp_session_chain_send_rtp), (create_send_rtcp_src),
12909         (gst_rtp_session_request_new_pad):
12910         * gst/rtpmanager/gstrtpsession.h:
12911         We can ask for pt-map now too when the session manager needs it.
12912         Hook up to the new session manager, implement the needed callbacks for
12913         pushing data, getting clock time and requesting clock-rates.
12914         Rename rtcp_src to send_rtcp_src to make it clear that this RTCP is to
12915         be send to clients.
12916         Add code to start and stop the thread that will schedule RTCP through
12917         the session manager.
12918
12919         * gst/rtpmanager/rtpsession.c: (rtp_session_class_init),
12920         (rtp_session_init), (rtp_session_finalize),
12921         (rtp_session_set_property), (rtp_session_get_property),
12922         (on_new_ssrc), (on_ssrc_collision), (on_ssrc_validated),
12923         (on_bye_ssrc), (rtp_session_new), (rtp_session_set_callbacks),
12924         (rtp_session_set_bandwidth), (rtp_session_get_bandwidth),
12925         (rtp_session_set_rtcp_bandwidth), (rtp_session_get_rtcp_bandwidth),
12926         (source_push_rtp), (source_clock_rate), (check_collision),
12927         (obtain_source), (rtp_session_add_source),
12928         (rtp_session_get_num_sources),
12929         (rtp_session_get_num_active_sources),
12930         (rtp_session_get_source_by_ssrc),
12931         (rtp_session_get_source_by_cname), (rtp_session_create_source),
12932         (update_arrival_stats), (rtp_session_process_rtp),
12933         (rtp_session_process_sr), (rtp_session_process_rr),
12934         (rtp_session_process_sdes), (rtp_session_process_bye),
12935         (rtp_session_process_app), (rtp_session_process_rtcp),
12936         (rtp_session_send_rtp), (rtp_session_get_rtcp_interval),
12937         (rtp_session_produce_rtcp):
12938         * gst/rtpmanager/rtpsession.h:
12939         The advanced beginnings of the main session manager that handles the
12940         participant database of RTPSources, SSRC probation, SSRC collisions,
12941         parse RTCP to update source stats. etc..
12942
12943         * gst/rtpmanager/rtpsource.c: (rtp_source_class_init),
12944         (rtp_source_init), (rtp_source_finalize), (rtp_source_new),
12945         (rtp_source_set_callbacks), (rtp_source_set_as_csrc),
12946         (rtp_source_set_rtp_from), (rtp_source_set_rtcp_from),
12947         (push_packet), (get_clock_rate), (calculate_jitter),
12948         (rtp_source_process_rtp), (rtp_source_process_bye),
12949         (rtp_source_send_rtp), (rtp_source_process_sr),
12950         (rtp_source_process_rb):
12951         * gst/rtpmanager/rtpsource.h:
12952         Object that encapsulates an SSRC and its state in the database.
12953         Calculates the jitter and transit times of data packets.
12954
12955         * gst/rtpmanager/rtpstats.c: (rtp_stats_init_defaults),
12956         (rtp_stats_calculate_rtcp_interval), (rtp_stats_add_rtcp_jitter):
12957         * gst/rtpmanager/rtpstats.h:
12958         Various stats regarding the session and sources.
12959         Used to calculate the RTCP interval.
12960
12961 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
12962
12963         * gst/app/Makefile.am:
12964           Fix CFLAGS and hopefully #430594.
12965
12966 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
12967
12968         * gst/nsf/types.h:
12969           Rename #ifndef header guard symbol to something less generic, so
12970           types.h doesn't get skipped over when compiling on MingW. Include
12971           GLib headers and use those to set the endianness and the basic
12972           types so that this isn't entirely broken for non-x86 architectures.
12973
12974 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
12975
12976         * gst/mve/gstmvedemux.c: (gst_mve_audio_init):
12977           Use G_LITTLE_ENDIAN instead of LITTLE_ENDIAN, so stuff compiles on
12978           MingW (no idea though why we add a BYTE_ORDER endianness field if
12979           the audio is compressed).
12980
12981 2007-04-14  Sebastien Moutte <sebastien@moutte.net>
12982
12983         * docs/plugins/inspect/plugin-directdraw.xml:
12984         * docs/plugins/inspect/plugin-directsound.xml:
12985         * docs/plugins/inspect/plugin-waveform.xml:
12986           Add xml doc files for Windows sinks
12987         * win32/vs6/libgstqtdemux.dsp:
12988         * win32/vs6/libgstmpegvideoparse.dsp:
12989         * win32/vs6/gst_plugins_bad.dsw:
12990          Update projects files.
12991         
12992 2007-04-13  Wim Taymans  <wim@fluendo.com>
12993
12994         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
12995         (gst_rtp_bin_init), (gst_rtp_bin_finalize), (new_ssrc_pad_found),
12996         (create_recv_rtp), (gst_rtp_bin_request_new_pad):
12997         * gst/rtpmanager/gstrtpbin.h:
12998         * gst/rtpmanager/gstrtpclient.c:
12999         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
13000         (gst_rtp_session_init), (gst_rtp_session_finalize),
13001         (gst_rtp_session_event_recv_rtp_sink),
13002         (gst_rtp_session_event_recv_rtcp_sink),
13003         (gst_rtp_session_chain_recv_rtcp),
13004         (gst_rtp_session_request_new_pad):
13005         Protect lists and structures with locks.
13006         Return FLOW_OK from RTCP messages for now.
13007
13008 2007-04-12  Wim Taymans  <wim@fluendo.com>
13009
13010         * gst/qtdemux/qtdemux.c:
13011         Make timescale 32 bits again so we don't screw up the pts_offset
13012         calculations.
13013
13014 2007-04-12  Wim Taymans  <wim@fluendo.com>
13015
13016         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13017         (create_stream), (gst_rtp_bin_class_init), (pt_map_requested):
13018         Emit pt map requests and cache results.
13019
13020         * gst/rtpmanager/gstrtpjitterbuffer.c:
13021         (gst_rtp_jitter_buffer_class_init),
13022         (gst_jitter_buffer_sink_parse_caps),
13023         (gst_jitter_buffer_sink_setcaps),
13024         (gst_rtp_jitter_buffer_get_clock_rate),
13025         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop):
13026         * gst/rtpmanager/gstrtpjitterbuffer.h:
13027         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
13028         Emit request-pt-map signals.
13029
13030 2007-04-11  Wim Taymans  <wim@fluendo.com>
13031
13032         * gst/rtpmanager/gstrtpbin-marshal.list:
13033         Some more custom marshallers.
13034
13035         * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map),
13036         (clock_rate_request), (create_stream), (gst_rtp_bin_class_init),
13037         (pt_map_requested), (new_ssrc_pad_found), (create_recv_rtp):
13038         * gst/rtpmanager/gstrtpbin.h:
13039         Prepare for caching pt maps.
13040         Connect to signals to collect pt maps.
13041
13042         * gst/rtpmanager/gstrtpjitterbuffer.c:
13043         (gst_rtp_jitter_buffer_class_init),
13044         (gst_jitter_buffer_sink_setcaps), (gst_rtp_jitter_buffer_loop):
13045         * gst/rtpmanager/gstrtpjitterbuffer.h:
13046         Add request_clock_rate signal.
13047         Use scale insteat of scale_int because the later does not deal with
13048         negative numbers.
13049
13050         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init),
13051         (gst_rtp_pt_demux_chain):
13052         * gst/rtpmanager/gstrtpptdemux.h:
13053         Implement request-pt-map signal.
13054
13055 2007-04-11  Wim Taymans  <wim@fluendo.com>
13056
13057         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
13058         (qtdemux_parse_samples), (qtdemux_parse_segments),
13059         (qtdemux_parse_trak), (qtdemux_parse_tree):
13060         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_mdhd):
13061         Handle version 1 mdhd atoms to get extended precision durations.
13062         Fixes #426972.
13063
13064 2007-04-10  Wim Taymans  <wim@fluendo.com>
13065
13066         * gst/rtpmanager/.cvsignore:
13067         * gst/rtpmanager/Makefile.am:
13068         * gst/rtpmanager/gstrtpbin-marshal.list:
13069         Added custom marshallers for signals.
13070
13071         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init):
13072         * gst/rtpmanager/gstrtpbin.h:
13073         Prepare for emiting pt map signals.
13074
13075         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_class_init):
13076         * gst/rtpmanager/gstrtpssrcdemux.c:
13077         (gst_rtp_ssrc_demux_class_init):
13078         Fix signals.
13079
13080 2007-04-06  Wim Taymans  <wim@fluendo.com>
13081
13082         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
13083         (gst_rtp_bin_init), (gst_rtp_bin_provide_clock):
13084         * gst/rtpmanager/gstrtpbin.h:
13085         Provide a clock.
13086
13087 2007-04-06  Wim Taymans  <wim@fluendo.com>
13088
13089         * gst/rtpmanager/gstrtpbin.c: (create_rtcp):
13090         Fix pad template name parsing.
13091
13092 2007-04-05  Wim Taymans  <wim@fluendo.com>
13093
13094         * gst/rtpmanager/gstrtpjitterbuffer.c:
13095         (gst_jitter_buffer_sink_setcaps), (gst_rtp_jitter_buffer_chain),
13096         (gst_rtp_jitter_buffer_loop):
13097         Add some debug and comments.
13098         Fix double unref() in error cases.
13099
13100 2007-04-05  Wim Taymans  <wim@fluendo.com>
13101
13102         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
13103         (gst_rtp_xqt_depay_change_state):
13104         * gst/qtdemux/gstrtpxqtdepay.h:
13105         Try to recover from packet loss a little better.
13106
13107 2007-04-05  Wim Taymans  <wim@fluendo.com>
13108
13109         * gst/rtpmanager/gstrtpbin.c: (find_session_by_id),
13110         (create_session), (find_stream_by_ssrc), (create_stream),
13111         (gst_rtp_bin_class_init), (new_payload_found),
13112         (new_ssrc_pad_found), (create_recv_rtp), (create_recv_rtcp),
13113         (create_send_rtp), (create_rtcp):
13114         * gst/rtpmanager/gstrtpbin.h:
13115         Add debugging category.
13116         Added RTPStream to manage stream per SSRC, each with its own
13117         jitterbuffer and ptdemux.
13118         Added SSRCDemux.
13119         Connect to various SSRC and PT signals and create ghostpads, link stuff.
13120
13121
13122         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13123         Added rtpbin to elements.
13124
13125         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_chain):
13126         Fix caps and forward GstFlowReturn
13127
13128         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_class_init),
13129         (gst_rtp_session_event_recv_rtp_sink),
13130         (gst_rtp_session_chain_recv_rtp),
13131         (gst_rtp_session_event_recv_rtcp_sink),
13132         (gst_rtp_session_chain_recv_rtcp),
13133         (gst_rtp_session_event_send_rtp_sink),
13134         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
13135         (create_recv_rtcp_sink), (create_send_rtp_sink), (create_rtcp_src),
13136         (gst_rtp_session_request_new_pad):
13137         Add debug category.
13138         Add event handling
13139
13140         * gst/rtpmanager/gstrtpssrcdemux.c: (find_rtp_pad_for_ssrc),
13141         (create_rtp_pad_for_ssrc), (gst_rtp_ssrc_demux_class_init),
13142         (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_chain),
13143         (gst_rtp_ssrc_demux_change_state):
13144         * gst/rtpmanager/gstrtpssrcdemux.h:
13145         Add debug category.
13146         Add new-pt-pad signal.
13147
13148 2007-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13149
13150         submitted by: Mogens Jaeger <mogens@jaeger.tf>
13151
13152         * po/LINGUAS:
13153         * po/da.po:
13154           Added Danish translation.
13155
13156 2007-04-04  Wim Taymans  <wim@fluendo.com>
13157
13158         * gst/rtpmanager/Makefile.am:
13159         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13160         * gst/rtpmanager/gstrtpssrcdemux.c: (find_pad_for_ssrc),
13161         (create_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init),
13162         (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_init),
13163         (gst_rtp_ssrc_demux_finalize), (gst_rtp_ssrc_demux_sink_event),
13164         (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_src_event),
13165         (gst_rtp_ssrc_demux_change_state):
13166         * gst/rtpmanager/gstrtpssrcdemux.h:
13167         Added simple SSRC demuxer.
13168
13169 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
13170
13171         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_open_device),
13172         (gst_jack_ring_buffer_acquire):
13173           Try t better name clients. properly handle return codes when re-
13174           establishing links.
13175
13176 2007-04-03  David Schleef  <ds@schleef.org>
13177
13178         * sys/glsink/glimagesink.c:
13179           Fix handling of video/x-raw-yuv.  Add overlay handling.
13180
13181 2007-04-03  Wim Taymans  <wim@fluendo.com>
13182
13183         * gst/rtpmanager/gstrtpbin.c: (find_session_by_id),
13184         (create_session), (gst_rtp_bin_base_init), (create_recv_rtp),
13185         (create_recv_rtcp), (create_send_rtp), (create_rtcp),
13186         (gst_rtp_bin_request_new_pad):
13187         * gst/rtpmanager/gstrtpbin.h:
13188         * gst/rtpmanager/gstrtpclient.c:
13189         Some more ghostpad magic.
13190
13191 2007-04-03  Wim Taymans  <wim@fluendo.com>
13192
13193         * gst/rtpmanager/Makefile.am:
13194         Add .h file so it can be disted properly.
13195
13196 2007-04-03  Wim Taymans  <wim@fluendo.com>
13197
13198         * configure.ac:
13199         * gst/rtpmanager/Makefile.am:
13200         * gst/rtpmanager/async_jitter_queue.c: (async_jitter_queue_new),
13201         (signal_waiting_threads), (async_jitter_queue_ref),
13202         (async_jitter_queue_ref_unlocked),
13203         (async_jitter_queue_set_low_threshold),
13204         (async_jitter_queue_set_high_threshold),
13205         (async_jitter_queue_set_max_queue_length),
13206         (async_jitter_queue_get_g_queue), (calculate_ts_diff),
13207         (async_jitter_queue_length_ts_units_unlocked),
13208         (async_jitter_queue_unref_and_unlock), (async_jitter_queue_unref),
13209         (async_jitter_queue_lock), (async_jitter_queue_unlock),
13210         (async_jitter_queue_push), (async_jitter_queue_push_unlocked),
13211         (async_jitter_queue_push_sorted),
13212         (async_jitter_queue_push_sorted_unlocked),
13213         (async_jitter_queue_insert_after_unlocked),
13214         (async_jitter_queue_pop_intern_unlocked), (async_jitter_queue_pop),
13215         (async_jitter_queue_pop_unlocked), (async_jitter_queue_length),
13216         (async_jitter_queue_length_unlocked),
13217         (async_jitter_queue_set_flushing_unlocked),
13218         (async_jitter_queue_unset_flushing_unlocked),
13219         (async_jitter_queue_set_blocking_unlocked):
13220         * gst/rtpmanager/async_jitter_queue.h:
13221         * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_base_init),
13222         (gst_rtp_bin_class_init), (gst_rtp_bin_init),
13223         (gst_rtp_bin_finalize), (gst_rtp_bin_set_property),
13224         (gst_rtp_bin_get_property), (gst_rtp_bin_change_state),
13225         (gst_rtp_bin_request_new_pad), (gst_rtp_bin_release_pad):
13226         * gst/rtpmanager/gstrtpbin.h:
13227         * gst/rtpmanager/gstrtpclient.c: (new_pad), (create_stream),
13228         (free_stream), (find_stream_by_ssrc), (gst_rtp_client_base_init),
13229         (gst_rtp_client_class_init), (gst_rtp_client_init),
13230         (gst_rtp_client_finalize), (gst_rtp_client_set_property),
13231         (gst_rtp_client_get_property), (gst_rtp_client_change_state),
13232         (gst_rtp_client_request_new_pad), (gst_rtp_client_release_pad):
13233         * gst/rtpmanager/gstrtpclient.h:
13234         * gst/rtpmanager/gstrtpjitterbuffer.c:
13235         (gst_rtp_jitter_buffer_base_init),
13236         (gst_rtp_jitter_buffer_class_init), (gst_rtp_jitter_buffer_init),
13237         (gst_rtp_jitter_buffer_dispose), (gst_rtp_jitter_buffer_getcaps),
13238         (gst_jitter_buffer_sink_setcaps), (free_func),
13239         (gst_rtp_jitter_buffer_flush_start),
13240         (gst_rtp_jitter_buffer_flush_stop),
13241         (gst_rtp_jitter_buffer_src_activate_push),
13242         (gst_rtp_jitter_buffer_change_state), (priv_compare_rtp_seq_lt),
13243         (compare_rtp_buffers_seq_num), (gst_rtp_jitter_buffer_sink_event),
13244         (gst_rtp_jitter_buffer_chain), (gst_rtp_jitter_buffer_loop),
13245         (gst_rtp_jitter_buffer_query),
13246         (gst_rtp_jitter_buffer_set_property),
13247         (gst_rtp_jitter_buffer_get_property):
13248         * gst/rtpmanager/gstrtpjitterbuffer.h:
13249         * gst/rtpmanager/gstrtpmanager.c: (plugin_init):
13250         * gst/rtpmanager/gstrtpptdemux.c: (gst_rtp_pt_demux_base_init),
13251         (gst_rtp_pt_demux_class_init), (gst_rtp_pt_demux_init),
13252         (gst_rtp_pt_demux_finalize), (gst_rtp_pt_demux_chain),
13253         (gst_rtp_pt_demux_getcaps), (find_pad_for_pt),
13254         (gst_rtp_pt_demux_setup), (gst_rtp_pt_demux_release),
13255         (gst_rtp_pt_demux_change_state):
13256         * gst/rtpmanager/gstrtpptdemux.h:
13257         * gst/rtpmanager/gstrtpsession.c: (gst_rtp_session_base_init),
13258         (gst_rtp_session_class_init), (gst_rtp_session_init),
13259         (gst_rtp_session_finalize), (gst_rtp_session_set_property),
13260         (gst_rtp_session_get_property), (gst_rtp_session_change_state),
13261         (gst_rtp_session_chain_recv_rtp),
13262         (gst_rtp_session_chain_recv_rtcp),
13263         (gst_rtp_session_chain_send_rtp), (create_recv_rtp_sink),
13264         (create_recv_rtcp_sink), (create_send_rtp_sink), (create_rtcp_src),
13265         (gst_rtp_session_request_new_pad), (gst_rtp_session_release_pad):
13266         * gst/rtpmanager/gstrtpsession.h:
13267         Add RTP session management elements. Still in progress.
13268
13269 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
13270
13271         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
13272         (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps),
13273         (gst_wavpack_dec_clip_outgoing_buffer),
13274         (gst_wavpack_dec_post_tags), (gst_wavpack_dec_chain):
13275         * ext/wavpack/gstwavpackdec.h:
13276         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
13277         (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config),
13278         (gst_wavpack_enc_chain):
13279         * ext/wavpack/gstwavpackenc.h:
13280         * ext/wavpack/gstwavpackparse.c:
13281         Don't play audioconvert. As wavpack wants/outputs all samples with
13282         width==32 and depth=[1,32] accept this and let audioconvert convert
13283         to accepted formats instead of doing it in the element for n*8 depths.
13284         This also adds support for non-n*8 depths and prevents some useless
13285         memory allocations. Fixes #421598
13286         Also add a workaround for bug #421542 in wavpackenc for now...
13287         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
13288         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
13289         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
13290         Consider the change above in the unit tests and test if the correct
13291         caps are accepted and set. Also check for GST_BUFFER_OFFSET_END in
13292         the wavpackparse unit test.
13293
13294         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init),
13295         (gst_wavpack_dec_sink_set_caps):
13296         Set caps on the src pad as soon as possible.
13297
13298         * ext/wavpack/gstwavpackdec.h:
13299         * ext/wavpack/gstwavpackcommon.h:
13300         * ext/wavpack/gstwavpackenc.h:
13301         * ext/wavpack/gstwavpackparse.h:
13302         Fix indention. gst-indent is now called by cicl.
13303
13304 2007-03-28  Edward Hervey  <edward@fluendo.com>
13305
13306         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
13307         (gst_qtdemux_chain), (qtdemux_parse_samples):
13308         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_ctts):
13309         * gst/qtdemux/qtdemux_dump.h:
13310         * gst/qtdemux/qtdemux_fourcc.h:
13311         * gst/qtdemux/qtdemux_types.c:
13312         Process 'ctts' atoms, which are present in AVC ISO files (.mov files
13313         with h264 video).
13314         Use the offset present in 'ctts' to calculate the PTS for each packet
13315         and set the PTS on outgoing buffers.
13316         Fixes #423283
13317
13318 2007-03-27  Julien MOUTTE  <julien@moutte.net>
13319
13320         * ext/xvid/gstxviddec.c: (gst_xviddec_chain): Add some
13321         debug log and fix a stupid output buffer duration bug.
13322
13323 2007-03-25  Tim-Philipp Müller  <tim at centricular dot net>
13324
13325         Patch by: Michal Benes <michal.benes at itonis tv>
13326         Patch by: Josef Zlomek <josef.zlomek at itonis tv>
13327
13328         * configure.ac:
13329         * ext/Makefile.am:
13330         * ext/x264/Makefile.am:
13331         * ext/x264/gstx264enc.c: (gst_x264_enc_me_get_type),
13332         (gst_x264_enc_analyse_get_type),
13333         (gst_x264_enc_timestamp_queue_init),
13334         (gst_x264_enc_timestamp_queue_free),
13335         (gst_x264_enc_timestamp_queue_put),
13336         (gst_x264_enc_timestamp_queue_get), (gst_x264_enc_header_buf),
13337         (gst_x264_enc_set_src_caps), (gst_x264_enc_sink_set_caps),
13338         (gst_x264_enc_base_init), (gst_x264_enc_class_init),
13339         (gst_x264_enc_init), (gst_x264_enc_init_encoder),
13340         (gst_x264_enc_close_encoder), (gst_x264_enc_dispose),
13341         (gst_x264_enc_sink_event), (gst_x264_enc_chain),
13342         (gst_x264_enc_encode_frame), (gst_x264_enc_change_state),
13343         (gst_x264_enc_set_property), (gst_x264_enc_get_property),
13344         (plugin_init):
13345         * ext/x264/gstx264enc.h:
13346           Add libx264-based h264 encoder plugin (#421110). Probably doesn't
13347           handle 'odd' widths and heights correctly yet.
13348
13349 2007-03-24  Tim-Philipp Müller  <tim at centricular dot net>
13350
13351         * gst/interleave/deinterleave.c: (gst_deinterleave_sink_setcaps):
13352           Remove 'channel-positions' field when munging input caps into
13353           1-channel output caps (I guess technically we should set the
13354           position for each channel on the output caps if it's non-NONE,
13355           but I'll save that as a task for another day).
13356
13357 2007-03-23  Michael Smith  <msmith@fluendo.com>
13358
13359         * gst/vmnc/vmncdec.c: (gst_vmnc_dec_class_init),
13360         (gst_vmnc_dec_init), (vmnc_dec_finalize), (gst_vmnc_dec_reset),
13361         (vmnc_handle_wmvi_rectangle), (render_colour_cursor),
13362         (render_cursor), (vmnc_make_buffer), (vmnc_handle_wmvd_rectangle),
13363         (vmnc_handle_wmve_rectangle), (vmnc_handle_wmvf_rectangle),
13364         (vmnc_handle_wmvg_rectangle), (vmnc_handle_wmvh_rectangle),
13365         (vmnc_handle_wmvj_rectangle), (render_raw_tile), (render_subrect),
13366         (vmnc_handle_raw_rectangle), (vmnc_handle_copy_rectangle),
13367         (vmnc_handle_hextile_rectangle), (vmnc_handle_packet),
13368         (vmnc_dec_setcaps), (vmnc_dec_chain_frame), (vmnc_dec_chain),
13369         (vmnc_dec_set_property), (vmnc_dec_get_property):
13370           Redesign to include a parser for raw files (no timestamps in that
13371           mode yet, though).
13372
13373 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
13374
13375         * gst/interleave/deinterleave.c: (gst_deinterleave_add_new_pads),
13376         (gst_deinterleave_remove_pads), (gst_deinterleave_process),
13377         (gst_deinterleave_chain):
13378           Don't leak input buffer in chain function; maintain our own list of
13379           source pads - there are no guarantees about the order of the list
13380           in the GstElement struct, and we want a very specific order; lastly,
13381           some more debugging.
13382
13383 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
13384
13385         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_init):
13386           Alloc user agent string only once.
13387
13388 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13389
13390         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13391         Revert last commit, preventing infinite plugging loops with ranks
13392         is no clean solution and in general there's no reason why one wants
13393         to parse framed wavpack data again.
13394
13395 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13396
13397         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block):
13398         Send the new segment event in time format instead of bytes. This
13399         allows "wavpackenc ! wavpackdec ! someaudiosink" pipelines.
13400
13401         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13402         Accept framed and non-framed input, wavpackparse doesn't care. To
13403         prevent "wavpackparse ! wavpackparse ! ..." pipelines lower the
13404         rank of wavpackparse by one. This allows "wavpackenc ! wavpackparse !
13405         ..." pipelines.
13406
13407 2007-03-22  Thomas Vander Stichele  <thomas at apestaart dot org>
13408
13409         * gst-libs/gst/app/Makefile.am:
13410           Use GST_ALL_LDFLAGS, which actually exists, but maybe David
13411           can confirm that was what he wanted.
13412
13413 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13414
13415         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
13416         Revert to use gst_pad_alloc_buffer() here. We can and should use it.
13417         Thanks to Jan and Mike for noticing my mistake.
13418
13419 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13420
13421         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
13422         (gst_wavpack_enc_init), (gst_wavpack_enc_chain),
13423         (gst_wavpack_enc_rewrite_first_block):
13424         * ext/wavpack/gstwavpackenc.h:
13425         Put the write helpers into the GstWavpackEnc struct directly and not
13426         as a pointer to save two small, but useless mallocs. This also makes
13427         it possible to drop the finalize method.
13428         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_push_buffer):
13429         For consistency reasons also set GST_BUFFER_OFFSET_END on the outgoing
13430         buffers the same way wavpackenc does it.
13431
13432 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
13433
13434         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
13435         Don't use gst_pad_alloc_buffer() as we might clip the buffer later and
13436         BaseTransform-based elements will likely break because of wrong
13437         unit-size. Also plug a possible memleak that happens when decoding
13438         fails for some reason.
13439
13440 2007-03-18  Wim Taymans  <wim@fluendo.com>
13441
13442         Based on patch by: Paul Davis <paul at linuxaudiosystems dot com>
13443
13444         * ext/jack/gstjackaudioclient.c: (gst_jack_audio_unref_connection):
13445         Don't need to take the connection lock, it will not be used and could
13446         cause deadlocks.
13447
13448 2007-03-16  Edward Hervey  <edward@fluendo.com>
13449
13450         * sys/osxvideo/osxvideosink.m:
13451         Fix previous commit, we want to pass the NSView in the message.
13452
13453 2007-03-16  Edward Hervey  <edward@fluendo.com>
13454
13455         * sys/osxvideo/osxvideosink.m:
13456         Emit 'have-ns-view' message when working in embedded mode. The message
13457         will contain a pointer to the newly created NSView.
13458
13459 2007-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13460
13461         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_util_find_start_code),
13462         (collect_packets), (set_par_from_dar), (set_fps_from_code),
13463         (mpeg_util_parse_extension_packet), (mpeg_util_parse_sequence_hdr),
13464         (mpeg_util_parse_picture_hdr):
13465         * gst/mpegvideoparse/mpegpacketiser.h:
13466         * gst/mpegvideoparse/mpegvideoparse.c:
13467         (mpegvideoparse_handle_sequence), (mpegvideoparse_handle_picture),
13468         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain),
13469         (mpv_parse_sink_event), (plugin_init):
13470         * gst/mpegvideoparse/mpegvideoparse.h:
13471         Move the MPEG specific byte parsing into the mpegpacketiser code.
13472
13473         Add parsing of picture types, that just feeds into a debug message
13474         for now.
13475
13476         Fix some 64-bit format strings.
13477
13478 2007-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
13479
13480         * gst/mpegaudioparse:
13481         Remove empty dir.
13482
13483 2007-03-16  Stefan Kost  <ensonic@users.sf.net>
13484
13485         * gst/equalizer/gstiirequalizer10bands.c:
13486         (gst_iir_equalizer_10bands_init):
13487           A 10 band EQ should be initialized to 10 bands and not to 3.
13488
13489 2007-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
13490
13491         * configure.ac:
13492         * gst/mpeg1videoparse/Makefile.am:
13493         * gst/mpeg1videoparse/gstmp1videoparse.c:
13494         * gst/mpeg1videoparse/gstmp1videoparse.h:
13495         * gst/mpeg1videoparse/mp1videoparse.vcproj:
13496         * gst/mpegvideoparse/Makefile.am:
13497         * gst/mpegvideoparse/mpegpacketiser.c: (mpeg_packetiser_init),
13498         (mpeg_packetiser_free), (mpeg_packetiser_add_buf),
13499         (mpeg_packetiser_flush), (mpeg_find_start_code),
13500         (get_next_free_block), (complete_current_block),
13501         (append_to_current_block), (start_new_block), (handle_packet),
13502         (collect_packets), (mpeg_packetiser_handle_eos),
13503         (mpeg_packetiser_get_block), (mpeg_packetiser_next_block):
13504         * gst/mpegvideoparse/mpegpacketiser.h:
13505         * gst/mpegvideoparse/mpegvideoparse.c: (mpegvideoparse_get_type),
13506         (gst_mpegvideoparse_base_init), (gst_mpegvideoparse_class_init),
13507         (mpv_parse_reset), (gst_mpegvideoparse_init),
13508         (gst_mpegvideoparse_dispose), (set_par_from_dar),
13509         (set_fps_from_code), (mpegvideoparse_parse_seq),
13510         (gst_mpegvideoparse_time_code), (gst_mpegvideoparse_flush),
13511         (mpegvideoparse_drain_avail), (gst_mpegvideoparse_chain),
13512         (mpv_parse_sink_event), (gst_mpegvideoparse_change_state),
13513         (plugin_init):
13514         * gst/mpegvideoparse/mpegvideoparse.h:
13515         * gst/mpegvideoparse/mpegvideoparse.vcproj:
13516         Port mpeg1videoparse to 0.10 and give it rank SECONDARY-1, so
13517         that it's below existing decoders.
13518         
13519         Rename it to mpegvideoparse to reflect that it handles MPEG-1 and
13520         MPEG-2 now.
13521
13522         Re-write the parsing code so that it collects packets differently
13523         and timestamps Picture packets correctly.
13524
13525         Add a list of FIXME's at the top.
13526
13527 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
13528
13529         * tests/icles/equalizer-test.c: (equalizer_set_band_value),
13530         (equalizer_set_all_band_values),
13531         (equalizer_set_band_value_and_wait),
13532         (equalizer_set_all_band_values_and_wait), (do_slider_fiddling),
13533         (main):
13534           Port the example to new equalizer api.
13535
13536 2007-03-14  Edward Hervey  <edward@fluendo.com>
13537
13538         * sys/osxvideo/cocoawindow.h:
13539         * sys/osxvideo/cocoawindow.m:
13540         * sys/osxvideo/osxvideosink.h:
13541         * sys/osxvideo/osxvideosink.m:
13542         Fix leaks when running a NSApp.
13543         Accept any kind of resolutions.
13544         Works in fullscreen. Can maximize.
13545         Only thing left before being able to move this to -good is documentation
13546         and embedded window support.
13547
13548 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13549
13550         * po/hu.po:
13551         * po/it.po:
13552         * po/sv.po:
13553           Updated translations.
13554
13555 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
13556
13557         * gst/equalizer/Makefile.am:
13558         * gst/equalizer/gstiirequalizer.c: (_do_init),
13559         (gst_iir_equalizer_band_set_property),
13560         (gst_iir_equalizer_band_class_init),
13561         (gst_iir_equalizer_band_get_type),
13562         (gst_iir_equalizer_child_proxy_get_child_by_index),
13563         (gst_iir_equalizer_child_proxy_get_children_count),
13564         (gst_iir_equalizer_child_proxy_interface_init), (setup_filter),
13565         (gst_iir_equalizer_compute_frequencies),
13566         (gst_iir_equalizer_transform_ip), (plugin_init):
13567         * gst/equalizer/gstiirequalizer10bands.c:
13568         (gst_iir_equalizer_10bands_base_init),
13569         (gst_iir_equalizer_10bands_class_init),
13570         (gst_iir_equalizer_10bands_init),
13571         (gst_iir_equalizer_10bands_set_property),
13572         (gst_iir_equalizer_10bands_get_property):
13573         * gst/equalizer/gstiirequalizer10bands.h:
13574         * gst/equalizer/gstiirequalizer3bands.c:
13575         (gst_iir_equalizer_3bands_base_init),
13576         (gst_iir_equalizer_3bands_class_init),
13577         (gst_iir_equalizer_3bands_init),
13578         (gst_iir_equalizer_3bands_set_property),
13579         (gst_iir_equalizer_3bands_get_property):
13580         * gst/equalizer/gstiirequalizer3bands.h:
13581         * gst/equalizer/gstiirequalizernbands.c:
13582         (gst_iir_equalizer_nbands_base_init),
13583         (gst_iir_equalizer_nbands_init):
13584           Add 3 and 10 band version and add missing gst_object_sync_values.
13585
13586         * gst/spectrum/gstspectrum.c: (gst_spectrum_event),
13587         (gst_spectrum_transform_ip):
13588           Add some comments about float support.
13589
13590 2007-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
13591
13592         * gst/mpegaudioparse/Makefile.am:
13593         * gst/mpegaudioparse/gstmpegaudioparse.c:
13594         * gst/mpegaudioparse/gstmpegaudioparse.h:
13595         * gst/mpegaudioparse/mpegaudioparse.vcproj:
13596         Remove bogus 2nd copy of mp3parse - it's actually
13597         in -ugly.
13598
13599 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
13600
13601         * examples/app/.cvsignore:
13602         The buildbot demands .cvsignore files, and I comply.
13603
13604 2007-03-11  Sebastien Moutte  <sebastien@moutte.net>
13605
13606         * sys/directdraw/gstdirectdrawsink.c:
13607         * sys/directdraw/gstdirectdrawsink.h:
13608         Handle display mode changes during playback.
13609
13610 2007-03-10  David Schleef  <ds@schleef.org>
13611
13612         * configure.ac:
13613         * examples/Makefile.am:
13614         * examples/app/Makefile.am:
13615         * examples/app/appsrc_ex.c:
13616           Add appsrc/appsink example.
13617         * gst-libs/gst/app/Makefile.am:
13618         * gst-libs/gst/app/gstapp.c:
13619         * gst-libs/gst/app/gstappsink.c:
13620         * gst-libs/gst/app/gstappsink.h:
13621         * gst/app/gstapp.c:
13622           Add appsink.
13623
13624 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
13625
13626         * ext/nas/nassink.c: (NAS_createFlow):
13627         * ext/sndfile/gstsfsrc.c: (gst_sf_src_create):
13628           Printf format string fixes.
13629
13630 2007-03-09  Stefan Kost  <ensonic@users.sf.net>
13631
13632         * gst/equalizer/Makefile.am:
13633         * gst/equalizer/gstiirequalizer.c: (_do_init),
13634         (gst_iir_equalizer_band_set_property),
13635         (gst_iir_equalizer_band_get_property),
13636         (gst_iir_equalizer_band_class_init),
13637         (gst_iir_equalizer_band_get_type),
13638         (gst_iir_equalizer_child_proxy_get_child_by_index),
13639         (gst_iir_equalizer_child_proxy_get_children_count),
13640         (gst_iir_equalizer_child_proxy_interface_init),
13641         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
13642         (gst_iir_equalizer_finalize), (setup_filter),
13643         (gst_iir_equalizer_compute_frequencies),
13644         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
13645         (gst_iir_equalizer_setup), (plugin_init):
13646         * gst/equalizer/gstiirequalizer.h:
13647         * gst/equalizer/gstiirequalizernbands.c:
13648         (gst_iir_equalizer_nbands_base_init),
13649         (gst_iir_equalizer_nbands_class_init),
13650         (gst_iir_equalizer_nbands_init),
13651         (gst_iir_equalizer_nbands_set_property),
13652         (gst_iir_equalizer_nbands_get_property):
13653         * gst/equalizer/gstiirequalizernbands.h:
13654           Refactor plugin into a base class and a first subclass (nband eq). The
13655           nband eq uses GstChildProxy and is controlable. More subclasses will
13656           follow.
13657
13658 2007-03-08  Wim Taymans  <wim@fluendo.com>
13659
13660         Includes patch by: Paul Davis <paul at linuxaudiosystems dot com>
13661
13662         * ext/jack/Makefile.am:
13663         * ext/jack/gstjackaudioclient.c: (gst_jack_audio_client_init),
13664         (jack_process_cb), (jack_sample_rate_cb), (jack_buffer_size_cb),
13665         (jack_shutdown_cb), (connection_find),
13666         (gst_jack_audio_make_connection), (gst_jack_audio_get_connection),
13667         (gst_jack_audio_unref_connection),
13668         (gst_jack_audio_connection_add_client),
13669         (gst_jack_audio_connection_remove_client),
13670         (gst_jack_audio_client_new), (gst_jack_audio_client_free),
13671         (gst_jack_audio_client_get_client),
13672         (gst_jack_audio_client_set_active):
13673         * ext/jack/gstjackaudioclient.h:
13674         Make an object to manage client connections to the jack server which we
13675         will use in the future to run selected jack elements with the same jack
13676         connection.
13677         Make some stuff a bit more threadsafe.
13678         Activate the jack client ASAP.
13679
13680         * ext/jack/gstjackaudiosink.c:
13681         (gst_jack_audio_sink_allocate_channels),
13682         (gst_jack_audio_sink_free_channels), (jack_process_cb),
13683         (gst_jack_ring_buffer_open_device),
13684         (gst_jack_ring_buffer_close_device),
13685         (gst_jack_ring_buffer_acquire), (gst_jack_ring_buffer_release),
13686         (gst_jack_audio_sink_class_init), (gst_jack_audio_sink_init),
13687         (gst_jack_audio_sink_getcaps):
13688         * ext/jack/gstjackaudiosink.h:
13689         Use new client object to manage connections.
13690         Don't remove and recreate all ports, try to reuse them.
13691
13692 2007-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
13693
13694         * ext/wavpack/gstwavpack.c: (plugin_init):
13695         * ext/wavpack/gstwavpackcommon.c:
13696           Use a general wavpack debug category for common code.
13697         * ext/wavpack/gstwavpackstreamreader.c:
13698         (gst_wavpack_stream_reader_set_pos_abs),
13699         (gst_wavpack_stream_reader_set_pos_rel),
13700         (gst_wavpack_stream_reader_write_bytes):
13701           Use the general wavpack debug category here too and add debug
13702           output to the functions that should not be called at all by
13703           the wavpack library.
13704         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_plugin_init):
13705         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_plugin_init):
13706         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_plugin_init):
13707           Change debugging category names to conform to the conventions.
13708
13709 2007-03-07  Edward Hervey  <edward@fluendo.com>
13710
13711         * gst/qtdemux/qtdemux.c:
13712         * gst/qtdemux/qtdemux.h:
13713         Share qtdemux debug category across all files, otherwise all debugging
13714         in files other than qtdemux.c would end up in the default category.
13715
13716 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
13717
13718         * gst/spectrum/gstspectrum.c: (gst_spectrum_start),
13719         (gst_spectrum_event), (gst_spectrum_transform_ip):
13720         * gst/spectrum/gstspectrum.h:
13721           One FIXME less, by resolving message timestamps against the playback
13722           segment.
13723
13724 2007-03-06  Wim Taymans  <wim@fluendo.com>
13725
13726         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
13727         (gst_spectrum_init), (gst_spectrum_set_property),
13728         (gst_spectrum_transform_ip):
13729         Fix and cleanup default property values.
13730         Add FIXMEs for stuff that looks rather wrong.
13731
13732 2007-03-05  Stefan Kost  <ensonic@users.sf.net>
13733
13734         * gst/spectrum/demo-audiotest.c: (message_handler):
13735         * gst/spectrum/demo-osssrc.c: (message_handler):
13736           Remove two obsolete and confusing comments.
13737
13738 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
13739
13740         * ext/nas/nassink.c: (gst_nas_sink_class_init),
13741         (gst_nas_sink_init), (gst_nas_sink_getcaps),
13742         (gst_nas_sink_unprepare):
13743           Some more cleanups/changes; use boilerplate macro.
13744
13745 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
13746
13747         * ext/nas/Makefile.am:
13748         * ext/nas/README:
13749         * ext/nas/nassink.c: (gst_nas_sink_get_type),
13750         (gst_nas_sink_base_init), (gst_nas_sink_class_init),
13751         (gst_nas_sink_init), (gst_nas_sink_finalize),
13752         (gst_nas_sink_getcaps), (gst_nas_sink_prepare),
13753         (gst_nas_sink_unprepare), (gst_nas_sink_delay),
13754         (gst_nas_sink_reset), (gst_nas_sink_write),
13755         (gst_nas_sink_set_property), (gst_nas_sink_get_property),
13756         (gst_nas_sink_open), (gst_nas_sink_close), (NAS_flush),
13757         (NAS_sendData), (NAS_EventHandler), (gst_nas_sink_sink_get_format),
13758         (NAS_createFlow), (plugin_init):
13759         * ext/nas/nassink.h:
13760           Bunch of nassink clean-ups: make build by adding the right CFLAGS
13761           and LIBS to Makefile.am; rename structure, macros and functions
13762           according to canonical naming scheme; move some things around a bit;
13763           use GST_CAT_DEFAULT instead of GST_CAT_* everywhere; remove README
13764           file that didn't really contain any useful information anyway (the
13765           useful bits have been moved into the 'host' property description).
13766
13767 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
13768
13769         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_finalize):
13770         Chain up in finalize.
13771
13772 2007-03-03  Michael Smith  <msmith@fluendo.com>
13773
13774         * configure.ac:
13775         * gst/vmnc/Makefile.am:
13776           Fix up dist.
13777
13778 2007-03-03  Michael Smith  <msmith@fluendo.com>
13779
13780         * configure.ac:
13781         * gst/vmnc/Makefile.am:
13782         * gst/vmnc/vmncdec.c: (gst_vmnc_dec_base_init),
13783         (gst_vmnc_dec_class_init), (gst_vmnc_dec_init),
13784         (gst_vmnc_dec_reset), (vmnc_handle_wmvi_rectangle),
13785         (render_colour_cursor), (render_cursor), (vmnc_make_buffer),
13786         (vmnc_handle_wmvd_rectangle), (vmnc_handle_wmve_rectangle),
13787         (vmnc_handle_wmvf_rectangle), (vmnc_handle_wmvg_rectangle),
13788         (vmnc_handle_wmvh_rectangle), (vmnc_handle_wmvj_rectangle),
13789         (render_raw_tile), (render_subrect), (vmnc_handle_raw_rectangle),
13790         (vmnc_handle_hextile_rectangle), (vmnc_handle_packet),
13791         (vmnc_dec_setcaps), (vmnc_dec_chain), (vmnc_dec_change_state),
13792         (vmnc_dec_set_property), (vmnc_dec_get_property), (plugin_init):
13793           Add VMnc decoder.
13794           Still missing support for:
13795            - rectangle types I didn't find in my samples (e.g. copy, RRE,
13796              ZRLE)
13797            - alpha-composited cursors
13798
13799 2007-03-03  David Schleef  <ds@schleef.org>
13800
13801         * gst-libs/gst/app/Makefile.am:
13802           Install the headers.
13803
13804 2007-03-03  David Schleef  <ds@schleef.org>
13805
13806         * gst-libs/gst/app/Makefile.am:
13807         * gst-libs/gst/app/gstappbuffer.c:
13808         * gst-libs/gst/app/gstappbuffer.h:
13809         * gst-libs/gst/app/gstappsrc.c:
13810           Add GstAppBuffer that includes a callback and closure for
13811           proper handling of data chunks.
13812
13813 2007-03-03  David Schleef  <ds@schleef.org>
13814
13815         * gst-libs/gst/app/gstappsrc.c:
13816         * gst-libs/gst/app/gstappsrc.h:
13817           Hacking to address issues in 413418.
13818
13819 2007-03-03  David Schleef  <ds@schleef.org>
13820
13821         * Makefile.am:
13822         * configure.ac:
13823         * ext/Makefile.am:
13824         * gst-libs/gst/Makefile.am:
13825         * gst-libs/gst/app/Makefile.am:
13826         * gst-libs/gst/app/gstapp.c:
13827         * gst-libs/gst/app/gstappsrc.c:
13828         * gst-libs/gst/app/gstappsrc.h:
13829         * gst/app/Makefile.am:
13830         * gst/app/gstapp.c:
13831         * gst/app/gstappsrc.c:
13832         * gst/app/gstappsrc.h:
13833           Move the app library to gst-libs/gst/app (duh!)
13834
13835 2007-03-02 Christian Schaller <christian at fluendo dot com>
13836         
13837         Patch by: Nguyen Thai Ngoc Duy <pcloud@gmail.com>
13838
13839         * ext/nas: Upgrade of NAS plugin to 0.10 (#345633)
13840
13841 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13842
13843         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_sink_event):
13844           A few small clean-ups.
13845
13846         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
13847           More debug output for failure cases.
13848
13849 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13850
13851         Patch by: Young-Ho Cha  <ganadist at chollian net>
13852
13853         * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_frame),
13854         (gst_dtsdec_change_state):
13855           Don't do forced downmixing to stereo, but check what downstream
13856           can do and let libdts do the downmixing based on that (#400555).
13857
13858 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
13859
13860         Patch by: Lutz Mueller  <lutz topfrose de>
13861
13862         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
13863         (gst_neonhttp_src_init), (gst_neonhttp_src_set_property),
13864         (gst_neonhttp_src_set_uri), (gst_neonhttp_src_set_proxy),
13865         (gst_neonhttp_src_send_request_and_redirect),
13866         (gst_neonhttp_src_uri_set_uri):
13867         * ext/neon/gstneonhttpsrc.h:
13868           Simplify _set_uri() and _set_proxy() and remove the unused ishttp
13869           member (#388050).
13870
13871         * tests/check/elements/neonhttpsrc.c: (GST_START_TEST):
13872           Fix bogus URI to something that actually exists, otherwise we just
13873           bypass the test (and also to something that doesn't redirect, since
13874           neonhttpsrc doesn't seem to handle this very gracefully yet)
13875
13876 2007-03-01  Chris Lord <chris@openedhand.com>
13877
13878         Reviewed by Christian Schaller <christian@fluendo.com>
13879
13880         Fixes Bug 357055
13881         * ext/ivorbis/Makefile.am:
13882         * ext/ivorbis/vorbisdec.c: Add support for Vorbis streams
13883         * ext/ivorbis/vorbisdec.h
13884         * ext/ivorbis/vorbis.c :
13885
13886 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
13887
13888         * tests/check/Makefile.am:
13889         Draw plugins in from the build tree sys/ dir, rather than
13890         picking up the already installed versions.
13891
13892 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
13893
13894         * configure.ac:
13895           Convert to new AG_GST style.
13896
13897 2007-02-27  Christian Schaller <christian at fluendo dot com>
13898
13899         * sys/direct*: Add Pioneers of the Inevitable to copyright
13900         * sys/macosxvideosink: Add Pioneers of the Inevitable to copyright
13901
13902 2007-02-27  Edward Hervey  <edward@fluendo.com>
13903
13904         * sys/osxvideo/cocoawindow.h:
13905         * sys/osxvideo/cocoawindow.m:
13906         * sys/osxvideo/osxvideosink.h:
13907         * sys/osxvideo/osxvideosink.m:
13908         Disable the cocoa event loop since it's a huge memory leak. Should only
13909         matter if the sink isn't used within an NSApp (which has already got
13910         a coca event loop).
13911         Remove all unused code.
13912
13913 2007-02-26  David Schleef  <ds@schleef.org>
13914
13915         * configure.ac:
13916         * gst/app/Makefile.am:
13917         * gst/app/gstapp.c:
13918         * gst/app/gstappsrc.c:
13919         * gst/app/gstappsrc.h:
13920           Add a new plugin/library to make it easy for apps to shove
13921           data into a pipeline.
13922
13923 2007-02-26  Tim-Philipp Müller  <tim at centricular dot net>
13924
13925         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_init):
13926         * gst/real/gstrealvideodec.c: (gst_real_video_dec_init):
13927           Use gst_pad_use_fixed_caps() on source pads, to avoid negotiation
13928           errors in certain situations (e.g. dec ! cs ! ximagesink and the
13929           imagesink window is resized); also, some minor clean-ups.
13930
13931 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
13932
13933         * configure.ac:
13934         * ext/gsm/Makefile.am:
13935         * ext/ladspa/Makefile.am:
13936         * ext/wavpack/Makefile.am:
13937         * gst/equalizer/Makefile.am:
13938         * gst/filter/Makefile.am:
13939         * gst/mve/Makefile.am:
13940         * gst/nsf/Makefile.am:
13941         * gst/replaygain/Makefile.am:
13942         * gst/speed/Makefile.am:
13943           Fix build with LDFLAGS='-Wl,-z,defs'.
13944
13945 2007-02-20  Sébastien Moutte  <sebastien@moutte.net>
13946
13947         * sys/directsound/gstdirectsoundsink.c:
13948         * sys/directsound/gstdirectsoundsink.h:
13949           Remove include of unused headers.
13950         * sys/waveform/gstwaveformplugin.c:
13951         * sys/waveform/gstwaveformsink.c:
13952         * sys/waveform/gstwaveformsink.h:
13953         * win32/vs6/libgstwaveform.dsp:
13954           Add a new waveform plugin which includes an audio sink 
13955           element using the WaveForm win32 API.
13956         * win32/MANIFEST:
13957           Add the new project file form waveform plugin.
13958         
13959 2007-02-18  Sébastien Moutte  <sebastien@moutte.net>
13960         
13961         * sys/directdraw/gstdirectdrawplugin.c:
13962         * sys/directdraw/gstdirectdrawsink.c:
13963         * sys/directdraw/gstdirectdrawsink.h:
13964           Prepare the plugin to move to good:
13965           Remove unused/untested code (rendering to an extern surface,
13966           yuv format rendering).Use GST_(DEBUG/*)_OBJECT macros
13967       Rename all functions from gst_directdrawsink to gst_directdraw_sink.
13968           Add gtk doc section
13969           Fix a bug in gst_directdraw_sink_show_frame, memcpy line by line
13970           respecting destination surface stride.
13971         * sys/directsound/gstdirectsoundplugin.c:
13972         * sys/directsound/gstdirectsoundsink.c:
13973         * sys/directsound/gstdirectsoundsink.h:
13974           Prepare the plugin to move to good:
13975           Rename all functions from gst_directsoundsink to gst_directsound_sink.
13976           Add gtk doc section
13977         * win32/common/config.h.in:
13978         * win32/MANIFEST:
13979           Add config.h.in
13980
13981 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
13982
13983         * configure.ac:
13984         * docs/plugins/Makefile.am:
13985           Add crossreferences to glib/gobject/gstream docs. Also fix typo in
13986           timidity.cfg check.
13987
13988         * ext/timidity/gsttimidity.c: (plugin_init):
13989           Also build if no config was detected at configure time.
13990
13991 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
13992
13993         * configure.ac:
13994         * ext/timidity/Makefile.am:
13995         * ext/timidity/gsttimidity.c: (plugin_init):
13996         * ext/timidity/gstwildmidi.c: (gst_wildmidi_base_init),
13997         (gst_wildmidi_class_init), (gst_wildmidi_init),
13998         (gst_wildmidi_src_convert), (gst_wildmidi_src_query),
13999         (gst_wildmidi_get_upstream_size), (gst_wildmidi_get_segment),
14000         (gst_wildmidi_get_new_segment_event), (gst_wildmidi_src_event),
14001         (gst_wildmidi_activate), (gst_wildmidi_activatepull),
14002         (gst_wildmidi_allocate_buffer), (gst_wildmidi_clip_buffer),
14003         (gst_wildmidi_fill_buffer), (gst_wildmidi_get_buffer),
14004         (gst_wildmidi_loop), (gst_wildmidi_change_state),
14005         (gst_wildmidi_set_property), (gst_wildmidi_get_property),
14006         (gst_wildmidi_typefind), (wildmidi_open_config), (plugin_init):
14007         * ext/timidity/gstwildmidi.h:
14008           Add second midi renderer. Fix some double frees and leaks. Clean up
14009           logging.
14010
14011 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
14012
14013         * Makefile.am:
14014           Add win32 MANIFEST
14015         * sys/directdraw/gstdirectdrawsink.c:
14016         * sys/directdraw/gstdirectdrawsink.h:
14017           Clear unused code and add comments.
14018           Remove yuv from template caps, it only supports RGB
14019           actually.
14020           Implement XOverlay interface and remove window and fullscreen 
14021           properties.
14022           Add debug logs.
14023           Test for blit capabilities to return only the current colorspace if
14024           the hardware can't blit for one colorspace to another.
14025         * sys/directsound/gstdirectsoundsink.c:
14026           Add some debugs.
14027         * win32/MANIFEST:
14028           Add VS7 project files and solution.
14029         * win32/vs6/gst_plugins_bad.dsw:
14030         * win32/vs6/libgstdirectdraw.dsp:
14031         * win32/vs6/libgstdirectsound.dsp:
14032         * win32/vs6/libgstqtdemux.dsp:
14033           Update project files.
14034
14035 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14036
14037         * ext/faad/gstfaad.c:
14038           Also update the comment that describes the hack.
14039
14040 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14041
14042         * configure.ac:
14043           Tell the code which faad it is, so that we can adjust the hacks
14044           needed.
14045
14046         * ext/faad/gstfaad.c:
14047           Make our hacks dependent on the fadd lib in use.
14048
14049 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
14050
14051         * configure.ac:
14052           Fix faad detection to support also fadd with new symbol prefix.
14053           ChangeLog surgery.
14054           
14055 2007-02-08  Stefan Kost  <ensonic@users.sf.net>
14056
14057         Patch by: Wouter Paesen <wouter@blue-gate.be>
14058
14059         * configure.ac:
14060         * ext/Makefile.am:
14061         * ext/timidity/Makefile.am:
14062         * ext/timidity/gsttimidity.c: (gst_timidity_base_init),
14063         (gst_timidity_class_init), (gst_timidity_init),
14064         (gst_timidity_set_song_options), (gst_timidity_src_convert),
14065         (gst_timidity_src_query), (gst_timidity_get_upstream_size),
14066         (gst_timidity_get_segment), (gst_timidity_get_new_segment_event),
14067         (gst_timidity_src_event), (gst_timidity_activate),
14068         (gst_timidity_activatepull), (gst_timidity_allocate_buffer),
14069         (gst_timidity_clip_buffer), (gst_timidity_fill_buffer),
14070         (gst_timidity_get_buffer), (gst_timidity_loop),
14071         (gst_timidity_change_state), (gst_timidity_typefind),
14072         (plugin_init):
14073         * ext/timidity/gsttimidity.h:
14074           Add timidity midi render plugin (#403992)
14075
14076 2007-02-07  Edward Hervey  <edward@fluendo.com>
14077
14078         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_query):
14079         GST_PAD_PARENT doesn't return a GstObject with an incremented refcount.
14080         Switched to using gst_pad_get_parent().
14081
14082 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14083
14084         * gst/modplug/gstmodplug.cc:
14085           Remove superfluous gst_caps_get_structure() call.
14086
14087 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14088
14089         * configure.ac:
14090           Increase required libsndfile version to a version that's known to
14091           have the function sf_write_sync() to make the build bots happy.
14092
14093 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
14094
14095         * ext/sndfile/gstsfsrc.c:
14096           Fix build (installed setup).
14097
14098 2007-02-05  Andy Wingo  <wingo@pobox.com>
14099
14100         * ext/sndfile/Makefile.am:
14101         * ext/sndfile/gstsfsrc.h:
14102         * ext/sndfile/gstsfsrc.c: Port sfsrc to 0.10, pull or push, with
14103         random access woo.
14104
14105 2007-02-03  Tim-Philipp Müller  <tim at centricular dot net>
14106
14107         * configure.ac:
14108         * gst/equalizer/Makefile.am:
14109         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init),
14110         (gst_iir_equalizer_class_init), (gst_iir_equalizer_init),
14111         (setup_filter), (gst_iir_equalizer_compute_frequencies),
14112         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14113         (gst_iir_equalizer_transform_ip), (gst_iir_equalizer_setup),
14114         (plugin_init):
14115         * gst/equalizer/gstiirequalizer.h:
14116           Fix up to use the newly ported (actually working) GstAudioFilter.
14117           Bump core/base requirements to CVS for this.
14118
14119         * tests/icles/.cvsignore:
14120         * tests/icles/Makefile.am:
14121         * tests/icles/equalizer-test.c: (check_bus),
14122         (equalizer_set_band_value), (equalizer_set_all_band_values),
14123         (equalizer_set_band_value_and_wait),
14124         (equalizer_set_all_band_values_and_wait), (do_slider_fiddling),
14125         (main):
14126           Add brain-dead interactive test for equalizer.
14127
14128 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14129
14130         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_class_init),
14131         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14132         (gst_iir_equalizer_filter_inplace):
14133           Rename "values" property to "band-values" and change type into a
14134           GValueArray, so it's more easily bindable and the range of the
14135           values passed in is defined and checked etc.; also do some
14136           locking.
14137
14138 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14139
14140         Patch by: James "Doc" Livingston  <doclivingston at gmail com>
14141
14142         * configure.ac:
14143         * gst/equalizer/Makefile.am:
14144         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
14145         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
14146         (gst_iir_equalizer_compute_frequencies),
14147         (gst_iir_equalizer_set_property),
14148         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
14149         (plugin_init):
14150           Port equalizer plugin to 0.10 (#403572).
14151
14152 2007-02-02  Andy Wingo  <wingo@pobox.com>
14153
14154         * configure.ac: 
14155         * ext/Makefile.am
14156         * ext/sndfile/Makefile.am:
14157         * ext/sndfile/gstsf.c:
14158         * ext/sndfile/gstsf.h:
14159         * ext/sndfile/gstsfsink.c:
14160         * ext/sndfile/gstsfsink.h: Port sfsink to 0.10. Works in pull or
14161         push mode with interleaved float or int data.
14162
14163 2007-02-02  Tim-Philipp Müller  <tim at centricular dot net>
14164
14165         * ext/alsaspdif/alsaspdifsink.c: (plugin_init):
14166           Set rank to NONE so that it doesn't get autoplugged by autoaudiosink
14167           (which didn't happen previously because the klass string didn't
14168           contain anything autoaudiosink was looking for).
14169
14170 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
14171
14172         * gst/real/gstrealaudiodec.c:
14173         * gst/real/gstrealvideodec.c:
14174           Fix classification in GstElementDetails.
14175
14176 2007-01-31  Sebastian Dröge  <slomo@circular-chaos.org>
14177
14178         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
14179         (gst_wavpack_parse_handle_seek_event),
14180         (gst_wavpack_parse_create_src_pad):
14181         Fix a off by one that leads to the duration reported as one
14182         sample less than it is
14183
14184 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
14185
14186         * ext/alsaspdif/alsaspdifsink.c:
14187         * gst/nsf/gstnsf.c:
14188           Fix classification in GstElementDetails.
14189
14190         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init),
14191         (gst_ladspa_class_init):
14192           Improve Klassification and reduce code slighly.
14193
14194 2007-01-30  Edward Hervey  <edward@fluendo.com>
14195
14196         * configure.ac:
14197         Check for an Objective C compiler
14198         * sys/Makefile.am:
14199         * sys/osxvideo/Makefile.am:
14200         * sys/osxvideo/cocoawindow.h:
14201         * sys/osxvideo/cocoawindow.m:
14202         * sys/osxvideo/osxvideosink.h:
14203         * sys/osxvideo/osxvideosink.m:
14204         Port of osxvideo plugin to 0.10. Do NOT consider 100% stable !
14205         Fixes #402470
14206
14207 2007-01-28  Tim-Philipp Müller  <tim at centricular dot net>
14208
14209         * gst/videocrop/gstvideocrop.c:
14210         (gst_video_crop_get_image_details_from_caps),
14211         (gst_video_crop_transform_packed_complex):
14212           Fix cropping for packed 4:2:2 formats YUYV/YUY2 and UYVY.
14213
14214         * tests/icles/videocrop-test.c: (check_bus_for_errors),
14215         (test_with_caps), (main):
14216           Block streaming thread before changing filter caps while the
14217           pipeline is running so that we don't get random not-negotiated
14218           errors just because GStreamer can't handle that yet.
14219
14220 2007-01-28  Stefan Kost  <ensonic@users.sf.net>
14221
14222         * ext/ladspa/Makefile.am:
14223         * ext/ladspa/gstladspa.c: (gst_ladspa_class_get_param_spec):
14224           add GstController support to ladspa
14225
14226 2007-01-28  Tim-Philipp Müller  <tim at centricular dot net>
14227
14228         Patch by: Rosfran Borges <rosfran dot borges at idnt org br>
14229
14230         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_start),
14231         (gst_mythtv_src_next_program_chain):
14232           Remove sleep calls, they've been moved into the library now ...
14233           (#354451).
14234
14235 2007-01-27  Tim-Philipp Müller  <tim at centricular dot net>
14236
14237         * tests/icles/videocrop-test.c: (test_with_caps):
14238           Catch errors while the test is running.
14239
14240 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
14241
14242         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query):
14243         Fix the SEEKING query. We can seek if we are in pull mode, not the
14244         other way around. Also set the correct format in the seeking query and
14245         handle the case where the headers are not read yet and we can't say
14246         anything about our seeking capabilities.
14247         
14248 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
14249
14250         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
14251         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
14252         Fix spelling in 2 places: It's called Wavpack, not WavePack.
14253
14254 2007-01-25  Edward Hervey  <edward@fluendo.com>
14255
14256         * gst/multifile/gstmultifilesink.c:
14257         (gst_multi_file_sink_class_init):
14258         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_class_init):
14259         * gst/mve/gstmvedemux.c: (gst_mve_video_create_buffer),
14260         (gst_mve_video_palette), (gst_mve_video_code_map),
14261         (gst_mve_audio_init), (gst_mve_audio_data), (gst_mve_timer_create),
14262         (gst_mve_demux_chain):
14263         * gst/mve/gstmvemux.c: (gst_mve_mux_push_chunk):
14264         * gst/mve/mveaudioenc.c: (mve_compress_audio):
14265         * gst/mve/mvevideodec16.c: (ipvideo_copy_block):
14266         * gst/mve/mvevideodec8.c: (ipvideo_copy_block):
14267         * gst/mve/mvevideoenc16.c: (mve_encode_frame16):
14268         * gst/mve/mvevideoenc8.c: (mve_encode_frame8):
14269         Use proper print statements.
14270         Fixes build on mac os x.
14271         <wingo> oo look at me my name is edward i'm hacking on macos wooo
14272
14273 2007-01-24  Wim Taymans  <wim@fluendo.com>
14274
14275         * gst/qtdemux/gstrtpxqtdepay.c:
14276         Fix caps on the depayloader.
14277
14278 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
14279
14280         * ext/mythtv/gstmythtvsrc.c: (gst_mythtv_src_set_property):
14281           Use break here instead of goto.
14282
14283 2007-01-13  Andy Wingo  <wingo@pobox.com>
14284
14285         * gst/interleave/deinterleave.c (gst_deinterleave_add_new_pads):
14286         Use fixed caps on src pads.
14287         (gst_deinterleave_remove_pads): Remove src pads, not sink pads. I
14288         seem to have reverse midas disease!
14289         (gst_deinterleave_process): Proxy timestamps, offsets, durations,
14290         and set caps on outgoing buffers. Fixes #395597, I think.
14291
14292         * gst/interleave/interleave.c (gst_interleave_init): Init the
14293         activation mode properly.
14294         (gst_interleave_src_setcaps, gst_interleave_src_getcaps)
14295         (gst_interleave_init): Set a setcaps and getcaps function on the
14296         src pad, so that we can implement pull-mode negotiation.
14297         (gst_interleave_sink_setcaps): Renamed from
14298         gst_interleave_setcaps, as it only does the sink logic now.
14299         Implement both for pull-mode and push-mode.
14300         (gst_interleave_process): Set caps on our outgoing buffer.
14301         (gst_interleave_src_activate_pull): Fix some more bogus casts.
14302         What is up with this.
14303
14304 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
14305
14306         * ext/mythtv/gstmythtvsrc.c: (do_read_request_response),
14307         (gst_mythtv_src_create), (gst_mythtv_src_get_position),
14308         (gst_mythtv_src_do_seek), (gst_mythtv_src_start),
14309         (gst_mythtv_src_next_program_chain), (gst_mythtv_src_get_size),
14310         (gst_mythtv_src_handle_event), (gst_mythtv_src_handle_query),
14311         (gst_mythtv_src_change_state), (gst_mythtv_src_set_property),
14312         (gst_mythtv_src_uri_get_type):
14313           Clean up a bit, mostly the debug statements; fix deadlock in
14314           _set_property() in the error cases; fix up query function.
14315
14316 2007-01-12  Andy Wingo  <wingo@pobox.com>
14317
14318         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_fixate)
14319         (gst_signal_processor_ouija_caps, gst_signal_processor_prepare):
14320         Remove fixate/ouija stuff, thankfully, due to the new
14321         part-negotiation.txt pull-mode negotiation scheme.
14322         (gst_signal_processor_setcaps_pull)
14323         (gst_signal_processor_setcaps): Implement upstream set_caps pull
14324         proxying for pull mode. Now this works: ladspa-sine-fcac !
14325         audioconvert ! alsasink.
14326
14327 2007-01-12  Edgard Lima <edgard.lima@indt.org.br>
14328
14329         Patch by: Rosfran Borges <rosfran.borges@indt.org.br>
14330
14331         * configure.ac:
14332         * gst-plugins-bad.spec.in:
14333         * ext/Makefile.am:
14334         * ext/mythtv/Makefile.am:
14335         * ext/mythtv/gstmythtvsrc.c:
14336         * ext/mythtv/gstmythtvsrc.h:
14337         MythTV client source plugin created (#354451).
14338
14339 2007-01-12  Wim Taymans  <wim@fluendo.com>
14340
14341         * gst/qtdemux/Makefile.am:
14342         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_base_init),
14343         (gst_rtp_xqt_depay_class_init), (gst_rtp_xqt_depay_init),
14344         (gst_rtp_xqt_depay_finalize), (gst_rtp_quicktime_parse_sd),
14345         (gst_rtp_xqt_depay_setcaps), (gst_rtp_xqt_depay_process),
14346         (gst_rtp_xqt_depay_set_property), (gst_rtp_xqt_depay_get_property),
14347         (gst_rtp_xqt_depay_change_state), (gst_rtp_xqt_depay_plugin_init):
14348         * gst/qtdemux/gstrtpxqtdepay.h:
14349         * gst/qtdemux/qtdemux.c: (gst_qtdemux_base_init),
14350         (gst_qtdemux_loop_state_header), (gst_qtdemux_loop),
14351         (qtdemux_parse_moov), (qtdemux_parse_container),
14352         (qtdemux_parse_node), (gst_qtdemux_add_stream),
14353         (qtdemux_parse_trak), (qtdemux_audio_caps):
14354         * gst/qtdemux/qtdemux.h:
14355         * gst/qtdemux/quicktime.c: (plugin_init):
14356         Add X-QT depayloader that will eventually share code with the demuxer.
14357         Make new plugin entry point with quicktime releated stuff.
14358
14359 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
14360
14361         * gst/qtdemux/Makefile.am:
14362           Dist all new files.
14363
14364 2007-01-12  Wim Taymans  <wim@fluendo.com>
14365
14366         * docs/plugins/Makefile.am:
14367         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
14368         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
14369         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
14370         * docs/plugins/gst-plugins-bad-plugins.signals:
14371         * docs/plugins/inspect/plugin-qtdemux.xml:
14372         Activate docs for jack, sdl and qtdemux.
14373
14374 2007-01-12  Wim Taymans  <wim@fluendo.com>
14375
14376         * ext/jack/gstjackaudiosink.c: (jack_sample_rate_cb),
14377         (jack_buffer_size_cb), (jack_shutdown_cb),
14378         (gst_jack_ring_buffer_acquire):
14379         * ext/jack/gstjackaudiosink.h:
14380         Improve docs.
14381
14382 2007-01-12  Wim Taymans  <wim@fluendo.com>
14383
14384         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init):
14385         Fix typo in docs.
14386
14387 2007-01-12  Wim Taymans  <wim@fluendo.com>
14388
14389         * gst/qtdemux/Makefile.am:
14390         * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc),
14391         (gst_qtdemux_loop_state_header), (gst_qtdemux_combine_flows),
14392         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
14393         (gst_qtdemux_chain), (qtdemux_sink_activate_pull),
14394         (qtdemux_inflate), (qtdemux_parse_moov), (qtdemux_parse_container),
14395         (qtdemux_parse_node), (qtdemux_tree_get_child_by_type),
14396         (qtdemux_tree_get_sibling_by_type), (gst_qtdemux_add_stream),
14397         (qtdemux_parse_samples), (qtdemux_parse_segments),
14398         (qtdemux_parse_trak), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
14399         (qtdemux_tag_add_date), (qtdemux_tag_add_gnre),
14400         (qtdemux_parse_udta), (qtdemux_redirects_sort_func),
14401         (qtdemux_process_redirects), (qtdemux_parse_redirects),
14402         (qtdemux_parse_tree), (gst_qtdemux_handle_esds),
14403         (qtdemux_video_caps), (qtdemux_audio_caps):
14404         * gst/qtdemux/qtdemux.h:
14405         * gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_mvhd),
14406         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
14407         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
14408         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
14409         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
14410         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
14411         (qtdemux_dump_unknown), (qtdemux_node_dump_foreach),
14412         (qtdemux_node_dump):
14413         * gst/qtdemux/qtdemux_dump.h:
14414         * gst/qtdemux/qtdemux_fourcc.h:
14415         * gst/qtdemux/qtdemux_types.c: (qtdemux_type_get):
14416         * gst/qtdemux/qtdemux_types.h:
14417         * gst/qtdemux/qtpalette.h:
14418         Cleanup and refactor to make the code more readable.
14419         Move debugging/tables into separate files.
14420         Add 2/4/16 color palletee support.
14421         Fix raw 15 bit RGB handling.
14422         Use more FOURCC constants.
14423         Add some docs.
14424
14425 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14426
14427         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
14428
14429         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
14430         (gst_wavpack_enc_correction_mode_get_type),
14431         (gst_wavpack_enc_joint_stereo_mode_get_type):
14432           Minor clean-up: use enum values instead of hardcoded constants (#395536).
14433
14434 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14435
14436         * gst/mve/gstmvedemux.c: (gst_mve_demux_get_src_query_types),
14437         (gst_mve_demux_handle_src_query), (gst_mve_demux_handle_src_event),
14438         (gst_mve_add_stream):
14439           Support SEEKING query (bad news now delivered properly!); add event
14440           function to source pads to make sure seeks aren't propagated
14441           upstream, even if they aren't handled.
14442
14443 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
14444
14445         Patch by: Jens Granseuer  <jensgr at gmx net>
14446
14447         * configure.ac:
14448         * gst/mve/Makefile.am:
14449         * gst/mve/TODO:
14450         * gst/mve/gstmve.c:
14451         * gst/mve/gstmvedemux.c:
14452         * gst/mve/gstmvedemux.h:
14453         * gst/mve/gstmvemux.c:
14454         * gst/mve/gstmvemux.h:
14455         * gst/mve/mve.h:
14456         * gst/mve/mveaudiodec.c:
14457         * gst/mve/mveaudioenc.c:
14458         * gst/mve/mvevideodec16.c:
14459         * gst/mve/mvevideodec8.c:
14460         * gst/mve/mvevideoenc16.c:
14461         * gst/mve/mvevideoenc8.c:
14462           Add Interplay MVE format demuxer/decoder and muxer/encoder. Demuxer
14463           doesn't support seeking yet, but seems to work fine otherwise.
14464           Closes #348973.
14465
14466 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
14467
14468         * gst/real/Makefile.am:
14469           Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
14470
14471 2007-01-07  Andy Wingo  <wingo@pobox.com>
14472
14473         * configure.ac: 
14474         * gst/interleave/Makefile.am: 
14475         * gst/interleave/plugin.h: 
14476         * gst/interleave/plugin.c: 
14477         * gst/interleave/interleave.c: 
14478         * gst/interleave/deinterleave.c: New elements interleave and
14479         deinterleave, implement channel interleaving and deinterleaving.
14480         The interleaver can operate in pull or push mode but the
14481         deinterleaver is more like a demuxer and can only operate in push
14482         mode.
14483         
14484 2007-01-06  Edward Hervey  <edward@fluendo.com>
14485
14486         * configure.ac:
14487         Properly detect the two architectures on which the real plugin can be
14488         built.
14489         Fixes #393622
14490
14491 2007-01-06  Andy Wingo  <wingo@pobox.com>
14492
14493         * ext/ladspa/gstsignalprocessor.c
14494         (gst_signal_processor_ouija_caps): Move around in the source
14495         file...
14496         (gst_signal_processor_prepare, gst_signal_processor_do_pulls):
14497         Call ouija_caps in prepare() instead of do_pulls(), a bit earlier.
14498         This allows us to have caps when we do the pad_alloc_buffer().
14499         (gst_pad_alloc_buffer_and_set_caps): Use self->caps instead of the
14500         pad caps, which might not be set yet.
14501
14502         * ext/ladspa/gstsignalprocessor.c: 
14503         (gst_signal_processor_add_pad_from_template)
14504         (gst_signal_processor_fixate): Add a fixate function, to assist in
14505         pathological ladspa-sine-fcac ! fakesink can-activate-pull=true
14506         cases.
14507         (gst_signal_processor_prepare, gst_signal_processor_process): Add
14508         nframes args so that getrange can tell ladspa how many frames to
14509         process.
14510         (gst_signal_processor_ouija_caps): setcaps needs to be called
14511         before processing, which normally happens when chaining a buffer
14512         to a pad. However in getrange mode with no sinks we need to check
14513         explicitly for this condition, guess some caps to use, and use
14514         those to setcaps(). Hence this mystical function.
14515         (gst_signal_processor_do_pulls): Pull in bytes, not samples.
14516         Divine the caps if necessary.
14517         (gst_signal_processor_getrange): Interpret the length as bytes,
14518         not samples.
14519         (gst_signal_processor_chain): nframes=G_MAXUINT, will be limited
14520         by incoming buffer sizes.
14521
14522 2007-01-06  Edward Hervey  <edward@fluendo.com>
14523
14524         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_finalize):
14525         Don't call the RAFreeDecoder since it randomly causes segfaults.
14526         * gst/real/gstrealaudiodec.h:
14527         indent properly.
14528
14529 2007-01-06  Edward Hervey  <edward@fluendo.com>
14530
14531         Patch by: Lutz Mueller <lutz@topfrose.de>
14532         
14533         * gst/real/gstrealvideodec.c: (gst_real_video_dec_decode),
14534         (gst_real_video_dec_setcaps), (open_library), (close_library),
14535         (gst_real_video_dec_finalize):
14536         * gst/real/gstrealvideodec.h:
14537         Implement error recovery on setcaps failure.
14538
14539 2007-01-06  Edward Hervey  <edward@fluendo.com>
14540
14541         Patch by: Lutz Mueller <lutz@topfrose.de>
14542         
14543         * gst/real/Makefile.am:
14544         * gst/real/gstreal.c: (plugin_init):
14545         * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_chain),
14546         (gst_real_audio_dec_setcaps), (gst_real_audio_dec_init),
14547         (gst_real_audio_dec_base_init), (gst_real_audio_dec_change_state),
14548         (gst_real_audio_dec_finalize), (gst_real_audio_dec_set_property),
14549         (gst_real_audio_dec_get_property), (gst_real_audio_dec_class_init):
14550         * gst/real/gstrealaudiodec.h:
14551         Added RealAudio wrapper elementfactory.
14552         Modified structures so it can also work on x86_64 using the
14553         adequate .so .
14554
14555 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14556
14557         * configure.ac:
14558         * gst/qtdemux/Makefile.am:
14559         * gst/qtdemux/qtdemux.c: (qtdemux_parse_moov):
14560           Check for zlib and if available pass it explicitly to the linker
14561           when linking qtdemux. If not available (or --disable-external has
14562           been specified!), disable the bits in qtdemux that use it. Fixes
14563           build on MingW (#392856).
14564
14565 2007-01-05  Edward Hervey  <edward@fluendo.com>
14566
14567         * configure.ac:
14568         Real video .so are now also available for x86_64, so we can build the
14569         Real plugin on i386 AND x86_64.
14570         * gst/real/Makefile.am:
14571         * gst/real/gstreal.c: (plugin_init):
14572         New plugin file for real .so wrapper plugins.
14573         * gst/real/gstrealvideodec.c: (gst_real_video_dec_alloc_buffer),
14574         (gst_real_video_dec_decode), (gst_real_video_dec_chain),
14575         (gst_real_video_dec_activate_push), (gst_real_video_dec_setcaps),
14576         (open_library), (close_library), (gst_real_video_dec_init),
14577         (gst_real_video_dec_base_init), (gst_real_video_dec_finalize),
14578         (gst_real_video_dec_set_property),
14579         (gst_real_video_dec_get_property), (gst_real_video_dec_class_init):
14580         * gst/real/gstrealvideodec.h:
14581         Moved RealVideo element to separate file
14582         Cleaned up code some more.
14583         Make it work on x86_64.
14584         Try several possible locations for .so
14585         Separate opening/closing libraries in separate functions.
14586
14587 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14588
14589         * tests/icles/videocrop-test.c: (main):
14590           Call g_thread_init() right at the beginning. Remove superfluous
14591           gst_init() - we've already been inited via the GOption stuff.
14592
14593 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
14594
14595         * configure.ac:
14596           Don't compile rfbsource if we don't have sys/socket.h.
14597           Should fix compilation on MingW.
14598
14599 2007-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
14600
14601         * configure.ac:
14602         * ext/amrwb/Makefile.am:
14603         * ext/amrwb/amrwb-code/Makefile.am:
14604         * ext/amrwb/amrwb-code/run.sh:
14605         * gst-libs/Makefile.am:
14606         * gst-libs/ext/Makefile.am:
14607         * gst-libs/ext/amrwb/Makefile.am:
14608         * gst-libs/ext/amrwb/README:
14609           Move amrwb code getting and building to gst-libs/ext/amrwb
14610           Adapt everything else to match.
14611
14612 2007-01-04  Julien MOUTTE  <julien@moutte.net>
14613
14614         * ext/directfb/dfbvideosink.c:
14615         (gst_dfbvideosink_navigation_send_event),
14616         (gst_dfbvideosink_get_type):
14617         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_open):
14618         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_setcaps),
14619         (gst_sdlvideosink_show_frame),
14620         (gst_sdlvideosink_navigation_send_event):
14621         * ext/sdl/sdlvideosink.h: Fix various compiler warnings that 
14622         reveal potential bugs.
14623
14624 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
14625
14626         Patch by: Vincent Torri  <vtorri at univ-evry fr>
14627
14628         * configure.ac:
14629         * sys/Makefile.am:
14630         * sys/directsound/Makefile.am:
14631         * sys/directsound/gstdirectsoundsink.c:
14632         (gst_directsoundsink_reset):
14633           Add directsoundsink to build and dist it, so it gets built when
14634           compiling with MingW on win32 and the required headers and libraries
14635           are available (fixes: #392638). Also simplify DirectDraw check a bit.
14636
14637         * tests/check/elements/.cvsignore:
14638           Fix CVS ignore for neonhttpsrc test binary.
14639
14640 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
14641
14642         Patch by: Vincent Torri  <vtorri at univ-evry fr>
14643
14644         * configure.ac:
14645         * sys/Makefile.am:
14646         * sys/directdraw/Makefile.am:
14647           Add directdrawsink to build and dist it, so it gets built when
14648           compiling with MingW on win32 and the required headers and libraries
14649           are available (fixes: #392313).
14650
14651         * sys/directdraw/gstdirectdrawsink.c:
14652         (gst_directdrawsink_center_rect), (gst_directdrawsink_show_frame),
14653         (gst_directdrawsink_setup_ddraw),
14654         (gst_directdrawsink_surface_create):
14655           Comment out some unused things and fix some printf format issues in
14656           order to avoid warnings when buildling with MingW (#392313).
14657
14658 2007-01-03  Tim-Philipp Müller  <tim at centricular dot net>
14659
14660         Patch by: Jens Granseuer  <jensgr at gmx net>
14661
14662         * ext/xvid/gstxvidenc.c: (gst_xvidenc_encode),
14663         (gst_xvidenc_get_property):
14664         * gst/filter/gstbpwsinc.c: (bpwsinc_transform_ip):
14665         * gst/filter/gstfilter.c: (plugin_init):
14666         * gst/filter/gstiir.c: (iir_transform_ip):
14667         * gst/filter/gstlpwsinc.c: (lpwsinc_transform_ip):
14668         * gst/modplug/gstmodplug.cc:
14669         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_header_load),
14670         (gst_nuv_demux_stream_extend_header):
14671           Fix build with gcc-2.x (declare variables at the beginning of a
14672           block etc.). Fixes #391971.
14673
14674 2007-01-02  Lutz Mueller <lutz@topfrose.de>
14675
14676         reviewed by: Edward Hervey  <edward@fluendo.com>
14677
14678         * gst/real/gstreal.c:
14679         (gst_realdec_setcaps): Use codec_data supplied in caps.
14680         (gst_realdec_get_property): Correctly return default path.
14681         (gst_realdec_class_init): Remove unused state_change method.
14682
14683 2007-01-01  Edward Hervey  <edward@fluendo.com>
14684
14685         * configure.ac:
14686         Only build the plugin on 32bit x86 architectures.
14687
14688 2007-01-01  Lutz Mueller <lutz@topfrose.de>
14689
14690         reviewed by: Edward Hervey  <edward@fluendo.com>
14691
14692         * configure.ac:
14693         * gst/real/Makefile.am:
14694         * gst/real/gstreal.c: (gst_realdec_alloc_buffer),
14695         (gst_realdec_decode), (gst_realdec_chain),
14696         (gst_realdec_activate_push), (gst_realdec_setcaps),
14697         (gst_realdec_init), (gst_realdec_base_init),
14698         (gst_realdec_change_state), (gst_realdec_finalize),
14699         (gst_realdec_set_property), (gst_realdec_get_property),
14700         (gst_realdec_class_init), (plugin_init):
14701         New plugin for decoding RealVideo Streams using the x86 32bit
14702         shared libraries.
14703         Closes #354174
14704
14705 2006-12-30  Tim-Philipp Müller  <tim at centricular dot net>
14706
14707         * tests/check/elements/videocrop.c: (GST_START_TEST),
14708         (videocrop_test_cropping_init_context):
14709           When we can't create an element needed for the test, print a message
14710           detailing which element it actually is that's missing (#390673).
14711
14712 2006-12-22 Edgard Lima <edgard.lima@indt.org.br>
14713
14714         * ext/neon/gstneonhttpsrc.c:
14715         * ext/neon/gstneonhttpsrc.h:
14716         Added seek support.
14717         Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
14718         Fixes: #375264.
14719
14720 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
14721
14722         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14723         (cleanup_mpeg2enc):
14724         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14725         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14726         (cleanup_wavpackdec):
14727         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14728         (cleanup_wavpackenc):
14729         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14730           reapply consistent pad (de)activation
14731
14732 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
14733
14734         * configure.ac:
14735         Back to CVS
14736
14737         * gst-plugins-bad.doap:
14738         Add release section for 0.10.4
14739
14740 === release 0.10.4 ===
14741
14742 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
14743
14744         * configure.ac:
14745           releasing 0.10.4, "Black Bugs"
14746
14747 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
14748
14749         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14750         (cleanup_mpeg2enc):
14751         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14752         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14753         (cleanup_wavpackdec):
14754         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14755         (cleanup_wavpackenc):
14756         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14757           revert my freeze breakage
14758
14759 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
14760
14761         * tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),
14762         (cleanup_mpeg2enc):
14763         * tests/check/elements/rganalysis.c: (cleanup_rganalysis):
14764         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
14765         (cleanup_wavpackdec):
14766         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
14767         (cleanup_wavpackenc):
14768         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc):
14769           consistent pad (de)activation
14770
14771 2006-12-18  Tim-Philipp Müller  <tim at centricular dot net>
14772
14773         * gst/qtdemux/qtdemux.c: (gst_qtdemux_post_progress),
14774         (gst_qtdemux_chain):
14775           Don't post BUFFERING messages in streaming mode if the stream
14776           headers are behind the movie data; instead, post "progress" element
14777           messages as a temporary solution. Apps might get confused and do
14778           silly things to the pipeline state if they see buffering messages
14779           from different sources and don't realize they come from different
14780           sources (#387160).
14781
14782 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14783
14784         * configure.ac:
14785         * ext/Makefile.am:
14786         * ext/ladspa/*:
14787           Move LADPSA plugin from -good for the release, as it's not quite
14788           ready to be enabled by default in the -good module yet.
14789
14790 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14791
14792         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain),
14793         (gst_qtdemux_add_stream):
14794           Don't output g_warning for an unsupported format, just send a
14795           GST_ELEMENT_WARNING and don't add the pad.
14796           Fix the case where it doesn't check for a NULL pad in streaming mode.
14797           Fixes #387137
14798
14799 2006-12-18  Tim-Philipp Müller  <tim at centricular dot net>
14800
14801         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
14802           Fix crash dereferencing NULL pointer if there's no stco atom.
14803           Fixes #387122.
14804
14805 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
14806
14807         * ext/wavpack/gstwavpackenc.h:
14808         Use local copy of md5.h, as it disappeared in recent wavpack
14809         installs.
14810         Patch by: Sebastian Dröge <slomo at ubuntu dot com>
14811         Fixes: #387076
14812
14813 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
14814
14815         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
14816         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event):
14817           We don't support seeking in streaming mode, so don't even try.
14818           Implement seeking query so apps can query seekability properly
14819           (see #365414). Fix duration query.
14820
14821 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
14822
14823         * Makefile.am:
14824         * gst-plugins-bad.doap:
14825         * gst-plugins-bad.spec.in:
14826           add doap file
14827
14828 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
14829
14830         * ext/libmms/gstmms.c: (gst_mms_create):
14831           These debug statements should be using LOG level.
14832
14833 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
14834
14835         * gst/modplug/libmodplug/sndfile.cpp:
14836           Fix potential buffer overflow (CVE-2006-4192) (#385788).
14837
14838 2006-12-13  Wim Taymans  <wim@fluendo.com>
14839
14840         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14841         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14842         (qtdemux_audio_caps):
14843         Add AMR-WB to the list of supported formats.
14844
14845 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14846
14847         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create),
14848         (send_request_and_redirect):
14849           Fix minor mem leak in redirect code.
14850
14851         * tests/check/Makefile.am:
14852         * tests/check/elements/.cvsignore:
14853         * tests/check/elements/neonhttpsrc.c: (handoff_cb),
14854         (GST_START_TEST), (neonhttpsrc_suite):
14855         * tests/check/gst-plugins-bad.supp:
14856           Add super-basic unit test for #384140.
14857
14858 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14859
14860         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_create),
14861         (send_request_and_redirect):
14862           Set offset on buffers pushed out (id3demux gets confused if the
14863           first buffer does not have an offset of 0). Fixes #384140.
14864
14865 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
14866
14867         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
14868         (gst_neonhttp_src_create), (send_request_and_redirect),
14869         (gst_neonhttp_src_start), (oom_callback):
14870          Minor clean-ups; remove newlines at end of debug statements.
14871
14872 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
14873
14874         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
14875           Fix non-working redirects from inetfilm.com (handle 'alis' reference
14876           data type as well). Fixes #378613.
14877
14878 2006-12-11  Wim Taymans  <wim@fluendo.com>
14879
14880         Patch by: Jonathan Matthew <jonathan at kaolin wh9 net>).
14881
14882         * gst/modplug/gstmodplug.cc:
14883         Fix modplug duration query. Fixes #384294.
14884
14885 2006-12-08  Wim Taymans  <wim@fluendo.com>
14886
14887         Patch by: René Stadler  <mail at renestadler de>
14888
14889         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14890         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14891         (qtdemux_audio_caps):
14892         Fix caps for 24 bit raw PCM audio (2).
14893         Fixes #383471.
14894
14895 2006-12-07  Wim Taymans  <wim@fluendo.com>
14896
14897         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14898         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
14899         (qtdemux_video_caps):
14900         Handle more H263 variants.
14901
14902 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
14903
14904         * ext/jack/.cvsignore:
14905         Ignore old files as requested by the build slave.
14906
14907 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
14908
14909         * configure.ac:
14910         Update the Jack requirement to the version where I think options_t
14911         appeared
14912
14913 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
14914
14915         * win32/MANIFEST:
14916         Fix compilation on win32 under VS8
14917         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
14918         Partially fixes #381175
14919
14920 2006-11-30  Wim Taymans  <wim@fluendo.com>
14921
14922         Patch by: René Stadler  <mail at renestadler de>
14923
14924         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_event):
14925           Call the base class handler.  Fixes #380610.
14926
14927 2006-11-30  Wim Taymans  <wim@fluendo.com>
14928
14929         * ext/Makefile.am:
14930         Fix build.
14931
14932         * ext/jack/gstjackaudiosink.c: (jack_process_cb),
14933         (jack_sample_rate_cb), (jack_buffer_size_cb), (jack_shutdown_cb),
14934         (gst_jack_ring_buffer_acquire):
14935         Small cleanups.
14936
14937 2006-11-30  Wim Taymans  <wim@fluendo.com>
14938
14939         * configure.ac:
14940         * ext/Makefile.am:
14941         * ext/jack/Makefile.am:
14942         * ext/jack/gstjack.c: (plugin_init):
14943         * ext/jack/gstjack.h:
14944         * ext/jack/gstjackaudiosink.c: (gst_jack_ring_buffer_get_type),
14945         (gst_jack_ring_buffer_class_init), (jack_process_cb),
14946         (jack_sample_rate_cb), (jack_buffer_size_cb), (jack_shutdown_cb),
14947         (gst_jack_ring_buffer_init), (gst_jack_ring_buffer_dispose),
14948         (gst_jack_ring_buffer_finalize),
14949         (gst_jack_ring_buffer_open_device),
14950         (gst_jack_ring_buffer_close_device),
14951         (gst_jack_ring_buffer_acquire), (gst_jack_ring_buffer_release),
14952         (gst_jack_ring_buffer_start), (gst_jack_ring_buffer_pause),
14953         (gst_jack_ring_buffer_stop), (gst_jack_ring_buffer_delay),
14954         (gst_jack_connect_get_type), (gst_jack_audio_sink_base_init),
14955         (gst_jack_audio_sink_class_init), (gst_jack_audio_sink_init),
14956         (gst_jack_audio_sink_set_property),
14957         (gst_jack_audio_sink_get_property), (gst_jack_audio_sink_getcaps),
14958         (gst_jack_audio_sink_create_ringbuffer):
14959         * ext/jack/gstjackaudiosink.h:
14960           Added fully functional jackaudiosink.
14961
14962 2006-11-27  Wim Taymans  <wim@fluendo.com>
14963
14964         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
14965         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak):
14966           Remove some asserts and replace them with a proper error
14967           message. Fixes #379261.
14968
14969 2006-11-26  Michael Smith  <msmith@fluendo.com>
14970
14971         * ext/theora/theoradec.c: (theora_dec_src_query),
14972         (theora_dec_src_event), (theora_handle_data_packet),
14973         (theora_dec_chain):
14974           Send events on the right pads, since they don't work very well if
14975           you send them in the wrong direction.
14976
14977 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
14978
14979         * ext/audiofile/gstafsink.c:
14980         * ext/polyp/plugin.c: (plugin_init):
14981         * ext/polyp/polypsink.c:
14982         * ext/polyp/polypsink.h:
14983         * sys/dxr3/dxr3audiosink.h:
14984         * sys/dxr3/dxr3spusink.h:
14985         * sys/dxr3/dxr3videosink.h:
14986           remove obsolete _factory_init protos and functions
14987
14988 2006-11-19  Michael Smith  <msmith@fluendo.com>
14989
14990         * gst/librfb/Makefile.am:
14991           Compile with appropriate cflags. Fixes build.
14992
14993 2006-11-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14994
14995         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_tune):
14996         Actually set the TONE parameter for DVB-S when we should.
14997
14998 2006-11-16  David Schleef  <ds@schleef.org>
14999
15000         * gst/librfb/rfbdecoder.c: Fixes for 64-bit architectures.
15001
15002 2006-11-16  David Schleef  <ds@schleef.org>
15003
15004         * gst/librfb/gstrfbsrc.h:  Oops, add this file.
15005
15006 2006-11-16  David Schleef  <ds@schleef.org>
15007
15008         Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
15009
15010         * configure.ac:
15011         * gst/librfb/Makefile.am:
15012         * gst/librfb/gstrfbsrc.c:
15013         * gst/librfb/rfb.c:
15014         * gst/librfb/rfb.h:
15015         * gst/librfb/rfbbuffer.c:
15016         * gst/librfb/rfbbuffer.h:
15017         * gst/librfb/rfbbytestream.c:
15018         * gst/librfb/rfbbytestream.h:
15019         * gst/librfb/rfbcontext.h:
15020         * gst/librfb/rfbdecoder.c:
15021         * gst/librfb/rfbdecoder.h:
15022         * gst/librfb/rfbutil.h:
15023           Port librfb to 0.10 (#376106).
15024
15025 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
15026
15027         * ext/spc/gstspc.c: (spc_play):
15028           Fix build with disabled gst-debug.
15029
15030 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
15031
15032         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
15033
15034         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
15035         (gst_wavpack_dec_init), (gst_wavpack_dec_change_state):
15036         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init),
15037         (gst_wavpack_enc_class_init), (gst_wavpack_enc_reset),
15038         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config),
15039         (gst_wavpack_enc_change_state):
15040         * ext/wavpack/gstwavpackparse.c:
15041           Some small clean-ups: use enums instead of hard-coded numbers,
15042           const-ify element details, re-factor some code into _reset()
15043           functions (#352605).
15044
15045 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
15046
15047         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_create):
15048         * sys/dvb/gstdvbsrc.h:
15049           Fix minor printf format issue; remove overly paranoid checks in
15050           create function; fix GObject boilerplate macros.
15051
15052 2006-11-14  Wim Taymans  <wim@fluendo.com>
15053
15054         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15055         (gst_qtdemux_handle_src_query), (qtdemux_parse_trak):
15056         Don't parse extra sample params for raw pcm. Fixes #374914.
15057
15058 2006-11-14  Wim Taymans  <wim@fluendo.com>
15059
15060         * tests/check/elements/.cvsignore:
15061         Add cdaudio to ignore.
15062
15063 2006-11-14  Wim Taymans  <wim@fluendo.com>
15064
15065         * ext/Makefile.am:
15066         dist cdaudio dir.
15067
15068 2006-11-14  Wim Taymans  <wim@fluendo.com>
15069
15070         * configure.ac:
15071         * ext/Makefile.am:
15072         Fix cdaudio build.
15073
15074 2006-11-14  Wim Taymans  <wim@fluendo.com>
15075
15076         Patch by: Mark Nauwelaerts <manauw at skynet be>
15077
15078         * tests/check/Makefile.am:
15079         * tests/check/elements/y4menc.c: (setup_y4menc), (cleanup_y4menc),
15080         (GST_START_TEST), (y4menc_suite), (main):
15081         Added y4m test. Fixes #372243.
15082
15083 2006-11-13  Wim Taymans  <wim@fluendo.com>
15084
15085         Patch by: Mark Nauwelaerts <manauw at skynet be>
15086
15087         * configure.ac:
15088         Enable cdaudio and y4m.
15089
15090         * gst/y4m/Makefile.am:
15091         * gst/y4m/gsty4mencode.c: (gst_y4m_encode_base_init),
15092         (gst_y4m_encode_class_init), (gst_y4m_encode_init),
15093         (gst_y4m_encode_reset), (gst_y4m_encode_setcaps),
15094         (gst_y4m_encode_get_stream_header),
15095         (gst_y4m_encode_get_frame_header), (gst_y4m_encode_chain),
15096         (gst_y4m_encode_set_property), (gst_y4m_encode_get_property),
15097         (gst_y4m_encode_change_state), (plugin_init):
15098         * gst/y4m/gsty4mencode.h:
15099         Port of y4mencode to 0.10. 
15100
15101 2006-11-10  David Schleef  <ds@schleef.org>
15102
15103         * configure.ac:
15104         * gst/videoparse/Makefile.am:
15105         * gst/videoparse/gstvideoparse.c:
15106           A little pluggy to make sense out of the random chunks we get
15107           from multifilesrc.
15108
15109 2006-11-10  David Schleef  <ds@schleef.org>
15110
15111         * gst/multifile/Makefile.am:
15112           Let's not depend on a file that doesn't exist.
15113
15114 2006-11-10  David Schleef  <ds@schleef.org>
15115
15116         * gst/multifilesink/Makefile.am:
15117         * gst/multifilesink/gstmultifilesink.c:
15118         * gst/multifilesink/gstmultifilesink.h:
15119         * gst/multifilesink/multifilesink.vcproj:
15120           Remove the old one.
15121
15122 2006-11-10  David Schleef  <ds@schleef.org>
15123
15124         * configure.ac:
15125         * gst/multifile/Makefile.am:
15126         * gst/multifile/gstmultifile.c:
15127         * gst/multifile/gstmultifilesink.c:
15128         * gst/multifile/gstmultifilesrc.c:
15129         * gst/multifile/multifile.vproj:
15130           Revive multifile[src|sink].
15131
15132 2006-11-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15133
15134         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_set_property)
15135         (gst_dvbsrc_create), (gst_dvbsrc_output_frontend_stats),
15136         (gst_dvbsrc_tune), (gst_dvbsrc_set_pes_filters):
15137         Rename set_pes_filter to set_pes_filters for consistency.
15138         Do run-time pid filtering.
15139
15140 2006-11-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15141
15142         * sys/dvb/gstdvbsrc.c: (read_device):
15143         Do not call output_frontend_stats from a method that does not
15144         have the gstdvbsrc object.
15145         This fixes the build, sorry guys!
15146
15147 2006-11-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15148
15149         * sys/dvb/gstdvbsrc.c: (read_device), (gst_dvbsrc_create),
15150         (gst_dvbsrc_output_frontend_stats), (gst_dvbsrc_tune),
15151         (gst_dvbsrc_set_pes_filter):
15152         * sys/dvb/gstdvbsrc.h:
15153         Force PAT to always be in the filter.
15154         Try to continue reading after failing 10 times.
15155
15156 2006-11-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15157
15158         * po/POTFILES.in:
15159           add dvbsrc
15160         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_class_init), (gst_dvbsrc_init),
15161         (gst_dvbsrc_set_property), (gst_dvbsrc_get_property),
15162         (gst_dvbsrc_open_frontend), (gst_dvbsrc_open_dvr),
15163         (gst_dvbsrc_finalize), (read_device), (gst_dvbsrc_create),
15164         (gst_dvbsrc_start), (gst_dvbsrc_frontend_status),
15165         (gst_dvbsrc_tune), (gst_dvbsrc_unset_pes_filters),
15166         (gst_dvbsrc_set_pes_filter):
15167         * sys/dvb/gstdvbsrc.h:
15168           adapter-prefix is a terrible name for a device, so replace it.
15169           strerror should be used immediately after the syscall related to it.
15170           Actually throw a reasonable GST_ELEMENT_ERROR if we fail to open
15171           (pretty easy to trigger by opening the same device twice).
15172           Use _OBJECT macros where it makes sense.
15173           This element is going to need some work before it moves.
15174
15175 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
15176
15177         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
15178
15179         * configure.ac:
15180         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
15181         (gst_wavpack_enc_correction_mode_get_type),
15182         (gst_wavpack_enc_joint_stereo_mode_get_type),
15183         (gst_wavpack_enc_init), (gst_wavpack_enc_set_wp_config):
15184           Fix enum nicks; only emit no-more-pads once; add support for very
15185           fast encoding mode in upcoming 4.40.0 release (#369539).
15186
15187 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
15188
15189         Patch by: Sergey Scobich  <sergey dot scobich at gmail com>
15190
15191         * sys/directdraw/gstdirectdrawsink.c:
15192         (gst_directdrawsink_window_thread),
15193         (gst_directdrawsink_create_default_window):
15194         * sys/directdraw/gstdirectdrawsink.h:
15195         * sys/directsound/gstdirectsoundsink.c:
15196           Wait until the window is created before using it; guard unistd.h
15197           includes with HAVE_UNISTD_H. (#366523)
15198
15199         * win32/vs8/libgstdirectdraw.vcproj:
15200         * win32/vs8/libgstdirectsound.vcproj:
15201           Update project files.
15202
15203 2006-10-31  Wim Taymans  <wim@fluendo.com>
15204
15205         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
15206         (gst_qtdemux_handle_src_query), (qtdemux_parse_tree),
15207         (qtdemux_parse_trak):
15208         Handle unbounded length streams a bit better. Fixes #367696.
15209
15210 2006-10-29  Tim-Philipp Müller  <tim at centricular dot net>
15211
15212         * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_frame):
15213           Fix flow handling and buffer refcounting (gst_pad_push() takes
15214           ownership of the buffer passed to it, the buffer does not have
15215           to be unreffed no matter what flow value gst_pad_push() returns).
15216
15217 2006-10-26  Edgard Lima <edgard.lima@indt.org.br>
15218
15219         Patch by: Renato Filho <renato.filho@indt.org.br> 
15220
15221         * gst/nuvdemux/gstnuvdemux.c:
15222         * gst/nuvdemux/gstnuvdemux.h:
15223         Fixed bug for files with timestamps less than 0.
15224         
15225 2006-10-21  David Schleef  <ds@schleef.org>
15226
15227         * configure.ac:
15228         * gst/multifilesink/Makefile.am:
15229         * gst/multifilesink/gstmultifilesink.c:
15230         * gst/multifilesink/gstmultifilesink.h:
15231           I copied over filesink a while ago and modified it to work
15232           as multifilesink.  Might as well check it in.  This could
15233           use some work before being declared useful.
15234
15235 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15236
15237         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_set_wp_config):
15238         * ext/wavpack/gstwavpackparse.c:
15239         (gst_wavpack_parse_create_src_pad):
15240         * gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_create_pads):
15241         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad):
15242           Activate pads before adding them to running element.
15243
15244 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15245
15246         Patch by: Josep Torra Valles  <josep at fluendo com>
15247
15248         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
15249         (next_entry_size), (qtdemux_inflate), (qtdemux_parse_moov),
15250         (qtdemux_parse_tree), (qtdemux_parse_trak), (qtdemux_tag_add_str),
15251         (qtdemux_tag_add_num), (qtdemux_tag_add_date),
15252         (qtdemux_tag_add_gnre):
15253           Make compile with Forte compiler, mostly don't do pointer arithmetic
15254           with void pointers (#362626).
15255
15256 2006-10-17  Edgard Lima <edgard.lima@indt.org.br>
15257
15258         * gst/nuvdemux/gstnuvdemux.c:
15259         Just a cast to make it compile oos big_endian systems.
15260
15261 2006-10-17  Edgard Lima <edgard.lima@indt.org.br>
15262
15263         Patch by: Renato Filho <renato.filho@indt.org.br> and Rosfran Borges
15264         <rosfran.borges@indt.org.br>
15265
15266         * configure.ac:
15267         * gst/nuvdemux/:
15268         * gst/nuvdemux/Makefile.am:
15269         * gst/nuvdemux/gstnuvdemux.c:
15270         * gst/nuvdemux/gstnuvdemux.h:
15271         Created new element nuvdemux.
15272         
15273 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15274
15275         Patch by: Josep Torra Valles  <josep at fluendo com>
15276
15277         * gst/nsf/fds_snd.c:
15278         * gst/nsf/mmc5_snd.c:
15279         * gst/nsf/nsf.c:
15280         * gst/nsf/vrc7_snd.c:
15281         * gst/nsf/vrcvisnd.c:
15282           Fix some things the Forte compiler warns about (#362626).
15283
15284 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15285
15286         * gst/qtdemux/qtdemux.c: (qtdemux_parse_moov), (qtdemux_parse),
15287         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
15288         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
15289         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
15290         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
15291         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
15292         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
15293         (qtdemux_dump_unknown), (qtdemux_tree_get_child_by_type),
15294         (qtdemux_tree_get_sibling_by_type):
15295         * gst/qtdemux/qtdemux.h:
15296           Avoid void pointer usage, better use guint8 * instead.
15297
15298 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
15299
15300         * configure.ac:
15301         * gst/deinterlace/Makefile.am:
15302         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_base_init),
15303         (gst_deinterlace_class_init), (gst_deinterlace_init),
15304         (gst_deinterlace_stop), (gst_deinterlace_transform_caps),
15305         (gst_deinterlace_set_caps), (gst_deinterlace_transform_ip),
15306         (gst_deinterlace_set_property), (gst_deinterlace_get_property):
15307         * gst/deinterlace/gstdeinterlace.h:
15308           Port simple deinterlacer from 0.8. Use at your own risk, don't blame
15309           me for anything it does or does not do to your precious pictures.
15310
15311 2006-10-11  Edward Hervey  <edward@fluendo.com>
15312
15313         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
15314         Add some fourcc for DV format.
15315
15316 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
15317
15318         * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc),
15319         (gst_qtdemux_loop_state_header):
15320           Printf format fixes.
15321
15322         * sys/dvb/gstdvbsrc.c:
15323           Use "_stdint.h".
15324
15325 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15326
15327         * sys/dvb/Makefile.am:
15328         * sys/dvb/dvb-api/Makefile.am:
15329         * sys/dvb/dvb-api/audio.h:
15330         * sys/dvb/dvb-api/ca.h:
15331         * sys/dvb/dvb-api/dmx.h:
15332         * sys/dvb/dvb-api/frontend.h:
15333         * sys/dvb/dvb-api/net.h:
15334         * sys/dvb/dvb-api/osd.h:
15335         * sys/dvb/dvb-api/version.h:
15336         * sys/dvb/dvb-api/video.h:
15337         Remove these files, not needed use system files.
15338         * sys/dvb/gstdvbsrc.c: (gst_dvbsrc_set_property),
15339         (gst_dvbsrc_create), (gst_dvbsrc_output_frontend_stats),
15340         (gst_dvbsrc_tune):
15341         Fix warnings, uint16_t etc. is in stdint.h.
15342         Use system includes not our local ones.
15343
15344 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15345
15346         * configure.ac:
15347         * sys/Makefile.am:
15348         Add dvb detection and allow dvbsrc to be built.
15349
15350 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15351         
15352         * configure.ac:
15353         * sys/Makefile.am:
15354         * sys/dvb/AUTHORS:
15355         * sys/dvb/Makefile.am:
15356         * sys/dvb/README:
15357         * sys/dvb/dvb-api/Makefile.am:
15358         * sys/dvb/dvb-api/audio.h:
15359         * sys/dvb/dvb-api/ca.h:
15360         * sys/dvb/dvb-api/dmx.h:
15361         * sys/dvb/dvb-api/frontend.h:
15362         * sys/dvb/dvb-api/net.h:
15363         * sys/dvb/dvb-api/osd.h:
15364         * sys/dvb/dvb-api/version.h:
15365         * sys/dvb/dvb-api/video.h:
15366         * sys/dvb/gstdvbsrc.c: 
15367         * sys/dvb/gstdvbsrc.h:
15368         Initial import of dvbsrc.
15369         Currently won't be built.
15370
15371 2006-10-10  Wim Taymans  <wim@fluendo.com>
15372
15373         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
15374         (gst_qtdemux_push_event), (gst_qtdemux_do_seek),
15375         (gst_qtdemux_change_state), (extract_initial_length_and_fourcc),
15376         (gst_qtdemux_loop_state_header), (gst_qtdemux_activate_segment),
15377         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
15378         (gst_qtdemux_post_buffering), (gst_qtdemux_chain),
15379         (gst_qtdemux_add_stream), (qtdemux_process_redirects),
15380         (qtdemux_parse_tree), (qtdemux_parse_trak):
15381         Reorganise some stuff.
15382         Parse RTSP redirection URLS.
15383
15384 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
15385
15386         * docs/plugins/gst-plugins-bad-plugins.args:
15387         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
15388         * docs/plugins/gst-plugins-bad-plugins.interfaces:
15389         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
15390         * docs/plugins/inspect/plugin-dtsdec.xml:
15391         * docs/plugins/inspect/plugin-mms.xml:
15392         * docs/plugins/inspect/plugin-mpeg2enc.xml:
15393         * docs/plugins/inspect/plugin-neon.xml:
15394         * docs/plugins/inspect/plugin-replaygain.xml:
15395         * docs/plugins/inspect/plugin-soundtouch.xml:
15396         * docs/plugins/inspect/plugin-spcdec.xml:
15397         * docs/plugins/inspect/plugin-swfdec.xml:
15398         * docs/plugins/inspect/plugin-videocrop.xml:
15399         * docs/plugins/inspect/plugin-wavpack.xml:
15400           Add/update docs stuff.
15401
15402 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
15403
15404         Patch by: René Stadler  <mail at renestadler de>
15405
15406         * configure.ac:
15407         * docs/plugins/Makefile.am:
15408         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15409         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15410         * gst/replaygain/Makefile.am:
15411         * gst/replaygain/gstrganalysis.c: (gst_rg_analysis_base_init),
15412         (gst_rg_analysis_class_init), (gst_rg_analysis_init),
15413         (gst_rg_analysis_set_property), (gst_rg_analysis_get_property),
15414         (gst_rg_analysis_start), (gst_rg_analysis_set_caps),
15415         (gst_rg_analysis_transform_ip), (gst_rg_analysis_event),
15416         (gst_rg_analysis_stop), (gst_rg_analysis_handle_tags),
15417         (gst_rg_analysis_handle_eos), (gst_rg_analysis_track_result),
15418         (gst_rg_analysis_album_result), (plugin_init):
15419         * gst/replaygain/gstrganalysis.h:
15420         * gst/replaygain/rganalysis.c: (yule_filter), (butter_filter),
15421         (apply_filters), (reset_filters), (accumulator_add),
15422         (accumulator_clear), (accumulator_result), (rg_analysis_new),
15423         (rg_analysis_set_sample_rate), (rg_analysis_destroy),
15424         (rg_analysis_analyze_mono_float),
15425         (rg_analysis_analyze_stereo_float),
15426         (rg_analysis_analyze_mono_int16),
15427         (rg_analysis_analyze_stereo_int16), (rg_analysis_analyze),
15428         (rg_analysis_track_result), (rg_analysis_album_result),
15429         (rg_analysis_reset_album), (rg_analysis_reset):
15430         * gst/replaygain/rganalysis.h:
15431           Add ReplayGain analysis element (#357069).
15432
15433         * tests/check/Makefile.am:
15434         * tests/check/elements/.cvsignore:
15435         * tests/check/elements/rganalysis.c: (get_expected_gain),
15436         (setup_rganalysis), (cleanup_rganalysis), (set_playing_state),
15437         (send_eos_event), (send_tag_event), (poll_eos), (poll_tags),
15438         (fail_unless_track_gain), (fail_unless_track_peak),
15439         (fail_unless_album_gain), (fail_unless_album_peak),
15440         (fail_if_track_tags), (fail_if_album_tags),
15441         (fail_unless_num_tracks), (test_buffer_const_float_mono),
15442         (test_buffer_const_float_stereo), (test_buffer_const_int16_mono),
15443         (test_buffer_const_int16_stereo), (test_buffer_square_float_mono),
15444         (test_buffer_square_float_stereo), (test_buffer_square_int16_mono),
15445         (test_buffer_square_int16_stereo), (push_buffer), (GST_START_TEST),
15446         (rganalysis_suite), (main):
15447           Unit tests for the new replaygain element.
15448
15449 2006-10-06  Wim Taymans  <wim@fluendo.com>
15450
15451         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain),
15452         (gst_faad_close_decoder):
15453         Some cleanups.
15454         Added some more debugging.
15455         Don't ever ignore unlinked, we're not a demuxer.
15456
15457         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
15458         Activate pad before adding it to the element.
15459
15460 2006-10-06  Michael Smith  <msmith@fluendo.com>
15461
15462         * ext/theora/theoradec.c: (gst_theoradec_reset),
15463         (theora_get_query_types), (theora_dec_src_query),
15464         (theora_dec_src_event), (theora_dec_sink_event),
15465         (theora_handle_comment_packet), (theora_handle_type_packet),
15466         (theora_handle_header_packet), (clip_buffer), (theora_dec_push),
15467         (theora_handle_422_image), (theora_handle_420_image),
15468         (theora_handle_data_packet), (theora_dec_chain),
15469         (theora_dec_change_state):
15470         * ext/theora/theoradec.h:
15471           Port lots of changes from theoradec to theoraexpdec.
15472           This catches this plugin up to theoradec. Note that duplicate frames
15473           are broken in theoradec at the moment.
15474
15475 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
15476
15477         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
15478           Fix mem leak, avoid unnecessary memcpy.
15479
15480 2006-10-06  Stefan Kost  <ensonic@users.sf.net>
15481
15482         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15483         (gst_spectrum_transform_ip):
15484           Removed cruft code that was just commented out. Removed some obsolete
15485           debug logs statements.
15486
15487 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
15488
15489         * ext/dts/gstdtsdec.c: (gst_dtsdec_chain):
15490         * ext/musicbrainz/gsttrm.c: (gst_trm_setcaps):
15491         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
15492         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain), (qtdemux_parse),
15493         (qtdemux_parse_trak):
15494         * gst/spectrum/gstspectrum.c: (gst_spectrum_transform_ip):
15495           Another batch of printf format fixes.
15496
15497 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15498
15499         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
15500         (gst_video_crop_init),
15501         (gst_video_crop_get_image_details_from_caps),
15502         (gst_video_crop_transform_packed_complex),
15503         (gst_video_crop_transform_packed_simple),
15504         (gst_video_crop_transform), (gst_video_crop_transform_caps),
15505         (gst_video_crop_set_caps),
15506         (gst_videocrop_clear_negotiated_caps_locked),
15507         (gst_video_crop_set_property):
15508         * gst/videocrop/gstvideocrop.h:
15509           Handle packed YUV formats (UYVY, YUY2, YUYV) separately; also, fix
15510           passthrough mode; lastly, clear negotiated basetransform caps when
15511           the cropping changes in order to force renegotiation.
15512
15513 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15514
15515         * tests/icles/.cvsignore:
15516         * tests/icles/Makefile.am:
15517         * tests/icles/videocrop-test.c: (quit_mainloop), (tick_cb),
15518         (test_with_caps), (video_crop_get_test_caps), (main):
15519           Visual test for videocrop, shows that packed yuv doesn't work right
15520           yet. --with-ffmpegcolorspace option doesn't work yet for unknown
15521           reasons (another basetransform issue?)
15522
15523 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
15524
15525         * po/POTFILES.in:
15526         * sys/v4l2/.cvsignore:
15527           Remove more v4l2 stuff, hopefully fixing 'make distcheck' again.
15528
15529 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15530
15531         * docs/plugins/Makefile.am:
15532         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15533         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15534         * docs/plugins/inspect/plugin-video4linux2.xml:
15535         * gst-plugins-bad.spec.in:
15536           removed v4l2
15537
15538 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15539
15540         * configure.ac:
15541         * sys/Makefile.am:
15542         * sys/v4l2/Makefile.am:
15543         * sys/v4l2/README:
15544         * sys/v4l2/gstv4l2.c:
15545         * sys/v4l2/gstv4l2colorbalance.c:
15546         * sys/v4l2/gstv4l2colorbalance.h:
15547         * sys/v4l2/gstv4l2object.c:
15548         * sys/v4l2/gstv4l2object.h:
15549         * sys/v4l2/gstv4l2src.c:
15550         * sys/v4l2/gstv4l2src.h:
15551         * sys/v4l2/gstv4l2tuner.c:
15552         * sys/v4l2/gstv4l2tuner.h:
15553         * sys/v4l2/gstv4l2vidorient.c:
15554         * sys/v4l2/gstv4l2vidorient.h:
15555         * sys/v4l2/gstv4l2xoverlay.c:
15556         * sys/v4l2/gstv4l2xoverlay.h:
15557         * sys/v4l2/v4l2_calls.c:
15558         * sys/v4l2/v4l2_calls.h:
15559         * sys/v4l2/v4l2src_calls.c:
15560         * sys/v4l2/v4l2src_calls.h:
15561           moved to gst-plugins-good
15562
15563 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15564
15565         * sys/v4l2/gstv4l2object.c:
15566         (gst_v4l2_object_install_properties_helper):
15567           comment out the properties that are already part of the tuner
15568           interface.
15569
15570 2006-10-03  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15571
15572         * sys/v4l2/gstv4l2src.c:
15573         Improve docs.
15574
15575 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
15576
15577         * ext/xvid/gstxvid.c: (plugin_init):
15578           Set rank of xviddec to NONE until someone fixes it (too many crasher
15579           bug reports against totem, people should use gst-ffmpeg).
15580
15581 2006-09-28  Wim Taymans  <wim@fluendo.com>
15582
15583         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_all_caps),
15584         (gst_v4l2src_get_caps):
15585         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
15586         Framerate can be 0/1 too.
15587         Init framerate to 0/1 before querying it so that we can detect
15588         devices that don't know about a framerate.
15589         Add some more debugging info.
15590
15591 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
15592
15593         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
15594           Add support for 'yv12' fourcc.
15595
15596 2006-09-27  Edgard Lima <edgard.lima@indt.org.br>
15597
15598         * sys/v4l2/gstv4l2src.c:
15599         * sys/v4l2/gstv4l2src.h:
15600         * tests/icles/v4l2src-test.c:
15601         Removed set-undef-fps.
15602
15603 2006-09-27  Wim Taymans  <wim@fluendo.com>
15604
15605         * sys/v4l2/gstv4l2object.c:
15606         (gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
15607         (gst_v4l2_object_set_property_helper),
15608         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
15609         * sys/v4l2/gstv4l2object.h:
15610         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
15611         (gst_v4l2src_create):
15612         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_contains_channel),
15613         (gst_v4l2_tuner_list_channels),
15614         (gst_v4l2_tuner_set_channel_and_notify),
15615         (gst_v4l2_tuner_get_channel), (gst_v4l2_tuner_contains_norm),
15616         (gst_v4l2_tuner_list_norms), (gst_v4l2_tuner_set_norm_and_notify),
15617         (gst_v4l2_tuner_get_norm):
15618         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15619         (gst_v4l2_fill_lists), (gst_v4l2_empty_lists):
15620         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_get_fps):
15621         Renamed some properties to match the tuner interface naming.
15622
15623 2006-09-27  Wim Taymans  <wim@fluendo.com>
15624
15625         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_set_property_helper),
15626         (gst_v4l2_set_defaults):
15627         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15628         (gst_v4l2src_create):
15629         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
15630         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15631         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_set_norm),
15632         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
15633         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
15634         (gst_v4l2_set_attribute), (gst_v4l2_get_input),
15635         (gst_v4l2_set_input):
15636         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
15637         (gst_v4l2src_grab_frame), (gst_v4l2src_get_capture),
15638         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init),
15639         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop),
15640         (gst_v4l2src_buffer_new):
15641         * tests/icles/v4l2src-test.c: (my_bus_callback), (main):
15642         Small cleanups.
15643         Fix error messages.
15644         Use locks when getting timestamps.
15645         Fix leaks in test.
15646         Add licensing header to tests.
15647
15648 2006-09-27  Edgard Lima <edgard.lima@indt.org.br>
15649
15650         * sys/v4l2/gstv4l2colorbalance.c:
15651         * sys/v4l2/gstv4l2object.c:
15652         * sys/v4l2/gstv4l2src.c:
15653         * sys/v4l2/gstv4l2src.h:
15654         * sys/v4l2/gstv4l2tuner.c:
15655         * sys/v4l2/v4l2_calls.c:
15656         * sys/v4l2/v4l2src_calls.c:
15657         * tests/icles/v4l2src-test.c:
15658         Some cleanups and comments.
15659
15660 2006-09-26  Wim Taymans  <wim@fluendo.com>
15661
15662         * docs/plugins/Makefile.am:
15663         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15664         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15665         Add v4l2 plugin to the docs.
15666
15667         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15668         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15669         * sys/v4l2/gstv4l2src.h:
15670         * sys/v4l2/gstv4l2vidorient.c:
15671         Fix docs.
15672         Remove some more externs.
15673
15674 2006-09-26  Wim Taymans  <wim@fluendo.com>
15675
15676         * sys/v4l2/Makefile.am:
15677         Fix makefile, list libs in stack order.
15678
15679         * sys/v4l2/gstv4l2colorbalance.c:
15680         * sys/v4l2/gstv4l2colorbalance.h:
15681         * sys/v4l2/gstv4l2object.c: (gst_v4l2_device_get_type),
15682         (gst_v4l2_object_install_properties_helper):
15683         * sys/v4l2/gstv4l2object.h:
15684         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read),
15685         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15686         * sys/v4l2/gstv4l2src.h:
15687         * sys/v4l2/gstv4l2tuner.h:
15688         * sys/v4l2/gstv4l2vidorient.h:
15689         * sys/v4l2/gstv4l2xoverlay.h:
15690         * sys/v4l2/v4l2_calls.h:
15691         * sys/v4l2/v4l2src_calls.h:
15692         Fix coding style:
15693         - Remove extern from functions.
15694         - Fix header indentation.
15695         Fix Flags, add defaults for properties.
15696         Remove unused enums.
15697         Fix TOO_LAZY in error messages.
15698
15699 2006-09-26  Wim Taymans  <wim@fluendo.com>
15700
15701         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices),
15702         (gst_v4l2_probe_needs_probe),
15703         (gst_v4l2_object_install_properties_helper), (gst_v4l2_object_new),
15704         (gst_v4l2_object_destroy), (gst_v4l2_object_set_property_helper),
15705         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults),
15706         (gst_v4l2_object_start), (gst_v4l2_object_stop):
15707         * sys/v4l2/gstv4l2object.h:
15708         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
15709         (gst_v4l2src_init), (gst_v4l2src_dispose),
15710         (gst_v4l2src_set_property), (gst_v4l2src_get_property),
15711         (gst_v4l2src_fixate), (gst_v4l2src_get_caps),
15712         (gst_v4l2src_set_caps), (gst_v4l2src_get_read),
15713         (gst_v4l2src_get_mmap), (gst_v4l2src_create):
15714         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15715         (gst_v4l2_open), (gst_v4l2_close), (gst_v4l2_get_norm),
15716         (gst_v4l2_set_norm), (gst_v4l2_get_frequency),
15717         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
15718         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute),
15719         (gst_v4l2_get_input), (gst_v4l2_set_input):
15720         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
15721         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
15722         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
15723         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
15724         (gst_v4l2src_capture_stop), (gst_v4l2src_capture_deinit),
15725         (gst_v4l2src_get_size_limits), (gst_v4l2src_set_fps),
15726         (gst_v4l2src_get_fps), (gst_v4l2src_buffer_finalize),
15727         (gst_v4l2src_buffer_new):
15728         Fix pass at code cleanups, move errors cases out of the normal
15729         flow for additional code clarity.
15730
15731 2006-09-23  Wim Taymans  <wim@fluendo.com>
15732
15733         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
15734         (gst_cdaudio_init), (gst_cdaudio_set_property),
15735         (gst_cdaudio_get_property), (gst_cdaudio_change_state),
15736         (gst_cdaudio_send_event), (gst_cdaudio_get_query_types),
15737         (gst_cdaudio_query), (cdaudio_uri_set_uri):
15738         Port to 0.10.
15739
15740 2006-09-22  David Schleef  <ds@schleef.org>
15741
15742         * sys/glsink/glimagesink.c:
15743           Fix problems when the element cannot open the display.
15744           (fixes #357212)
15745
15746 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
15747
15748         * configure.ac:
15749           Up requirements to -base CVS and core CVS (the format for the
15750           video orientation interface used by v4l2src and the latter
15751           since that's what -base CVS requires).
15752
15753 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
15754
15755         * ext/directfb/dfbvideosink.c: (plugin_init):
15756           Lower rank from SECONDARY to MARGINAL. Plugins in -bad that might
15757           be autoplugged shouldn't trump plugins in -base, -good or -ugly
15758           (in this case ximagesink).
15759
15760         * sys/glsink/glimagesink.c: (plugin_init):
15761           Set rank to NONE to prevent it from being autoplugged until
15762           errors are handled properly (see #357212).
15763
15764 2006-09-21  Edgard Lima <edgard.lima@indt.org.br>
15765
15766         * ext/neon/Makefile.am:
15767         * ext/neon/gstneonhttpsrc.c:
15768         * ext/neon/gstneonhttpsrc.h:
15769         Reverted previous commit (2006-09-19 - Allow internal codes from
15770         last.fm). As dicussed on #gstreamer it should be done in separete
15771         element.
15772
15773 2006-09-21  Wim Taymans  <wim@fluendo.com>
15774
15775         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad),
15776         (gst_faac_chain):
15777         Add decoder specific info on the caps.
15778         Some cleanups here and there.
15779
15780 2006-09019  Edgard Lima <edgard.lima@indt.org.br>
15781
15782         Patch by: Milosz Derezynski <internalerror@gmail.com> and
15783                   Rosfran Borges <rosfran.borges@indt.org.br>
15784
15785         * ext/neon/Makefile.am:
15786         * ext/neon/gstneonhttpsrc.c:
15787         * ext/neon/gstneonhttpsrc.h:
15788         Allow internal codes from last.fm
15789         
15790
15791 2006-09-19  Edgard Lima <edgard.lima@indt.org.br>
15792
15793         * tests/icles/v4l2src-test.c:
15794         Just a small fix to the app options.
15795
15796 2006-09-19  Edgard Lima <edgard.lima@indt.org.br>
15797
15798         * sys/v4l2/Makefile.am:
15799         * sys/v4l2/gstv4l2src.c:
15800         * sys/v4l2/gstv4l2vidorient.c:
15801         * sys/v4l2/gstv4l2vidorient.h:
15802         * tests/icles/v4l2src-test.c:
15803         Add Video Orientation interface support to v4l2src.
15804         
15805 2006-09-19  Wim Taymans  <wim@fluendo.com>
15806
15807         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init),
15808         (gst_gsmdec_sink_setcaps), (gst_gsmdec_sink_event),
15809         (gst_gsmdec_chain):
15810         * ext/gsm/gstgsmdec.h:
15811         Handle WAV49 variant (GSM in WAV).
15812         Some small cleanups.
15813
15814 2006-09-18  Edgard Lima <edgard.lima@indt.org.br>
15815
15816         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_buffer_new ):
15817         Fix GST_BUFFER_DURATION.
15818
15819 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
15820
15821         * ext/hermes/gsthermescolorspace.c:
15822         * ext/ivorbis/vorbisfile.c:
15823         * ext/lcs/gstcolorspace.c:
15824         * ext/wavpack/gstwavpackenc.h:
15825         * ext/xine/xineaudiodec.c:
15826         * ext/xine/xineaudiosink.c:
15827         * ext/xine/xineinput.c:
15828         * gst/chart/gstchart.c:
15829         * gst/equalizer/gstiirequalizer.c:
15830         * gst/games/gstpuzzle.c:
15831         * gst/librfb/gstrfbsrc.c:
15832         * gst/mixmatrix/mixmatrix.c:
15833         * gst/nsf/gstnsf.h:
15834         * gst/vbidec/gstvbidec.c:
15835         * gst/virtualdub/gstxsharpen.c:
15836           More G_OBJECT macro fixing.
15837
15838 2006-09-15  Edgard Lima <edgard.lima@indt.org.br>
15839
15840         * sys/v4l2/gstv4l2src.c:
15841         * sys/v4l2/gstv4l2src.h:
15842         * sys/v4l2/gstv4l2xoverlay.c:
15843         * sys/v4l2/v4l2_calls.c:
15844         * sys/v4l2/v4l2src_calls.c:
15845         * tests/icles/v4l2src-test.c:
15846         The test application and the plgind error messages has been improved.
15847         
15848 2006-09-12  Stefan Kost  <ensonic@users.sf.net>
15849
15850         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
15851         (gst_spectrum_start), (gst_spectrum_stop), (gst_spectrum_event):
15852           Implements stop() to clear the adapter and event() to clear the
15853           adapter on FLUSH_STOP and EOS.
15854
15855 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
15856
15857         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15858         (gst_spectrum_set_property):
15859         * gst/spectrum/gstspectrum.h:
15860           Fix type mixup in spectrum->interval (gdouble<->guint64). Spotted by
15861           René Stadler
15862
15863 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
15864
15865         * gst/spectrum/demo-osssrc.c: (draw_spectrum), (main):
15866           Use more defines
15867
15868         * gst/spectrum/gstspectrum.c: (gst_spectrum_init),
15869         (gst_spectrum_dispose), (gst_spectrum_set_caps),
15870         (gst_spectrum_transform_ip):
15871         * gst/spectrum/gstspectrum.h:
15872           Apply some of the spectrum cleanup changes suggested in #348085.
15873
15874 2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>
15875
15876         * configure.ac:
15877           Bump requirements of -base (videocrop test case needs this).
15878
15879         * gst/videocrop/gstvideocrop.c:
15880           Document sloppy handling of subsampled chroma planes if
15881           left/top cropping is an odd number.
15882
15883         * tests/check/elements/videocrop.c: (handoff_cb),
15884         (videocrop_test_cropping_init_context),
15885         (videocrop_test_cropping_deinit_context),
15886         (videocrop_test_cropping), (check_1x1_buffer), (GST_START_TEST),
15887         (videocrop_suite), (main):
15888           Add another unit test that crops the input to 1x1 (and checks
15889           that that pixel has the expected values in a number of formats).
15890
15891 2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>
15892
15893         * gst/videocrop/Makefile.am:
15894         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init),
15895         (gst_video_crop_transform_packed),
15896         (gst_video_crop_transform_planar):
15897           Some quick tests indicate that it doesn't make a great deal
15898           of sense to use liboil here, at least not for the memcpy()s
15899           we do, so remove liboil usage until there is clear evidence
15900           it actually makes a positive difference somewhere.
15901
15902 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
15903
15904         * tests/check/elements/videocrop.c: (handoff_cb),
15905         (buffer_probe_cb), (test_caps_transform), (test_passthrough),
15906         (notgst_value_list_get_nth_int), (videocrop_suite):
15907           More tests: check passthrough mode and caps transform in
15908           both directions with fixed values, ranges and lists.
15909
15910 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
15911
15912         * docs/plugins/Makefile.am:
15913         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
15914         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
15915         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
15916           Add videocrop to docs.
15917
15918         * gst/videocrop/Makefile.am:
15919         * gst/videocrop/gstvideocrop.c:
15920         * gst/videocrop/gstvideocrop.h:
15921           Move boilerplate stuff and structures into a header file.
15922
15923         * tests/check/Makefile.am:
15924         * tests/check/elements/.cvsignore:
15925         * tests/check/elements/videocrop.c: (video_crop_get_test_caps),
15926         (test_unit_sizes), (videocrop_test_cropping_init_context),
15927         (videocrop_test_cropping_deinit_context),
15928         (videocrop_test_cropping), (test_cropping), (videocrop_suite):
15929           Add unit tests for videocrop.
15930
15931 2006-09-02  Tim-Philipp Müller  <tim at centricular dot net>
15932
15933         * configure.ac:
15934         * gst/videocrop/Makefile.am:
15935         * gst/videocrop/gstvideocrop.c: (gst_video_crop_base_init),
15936         (gst_video_crop_class_init), (gst_video_crop_init),
15937         (gst_video_crop_get_image_details_from_caps),
15938         (gst_video_crop_get_unit_size), (gst_video_crop_transform_packed),
15939         (gst_video_crop_transform_planar), (gst_video_crop_transform),
15940         (gst_video_crop_transform_dimension),
15941         (gst_video_crop_transform_dimension_value),
15942         (gst_video_crop_transform_caps), (gst_video_crop_set_caps),
15943         (gst_video_crop_set_property), (gst_video_crop_get_property),
15944         (plugin_init):
15945           Port/rewrite videocrop from scratch for GStreamer-0.10, and make
15946           it support all formats videoscale supports (#345653).
15947
15948 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
15949
15950         * sys/v4l2/gstv4l2.c:
15951         * sys/v4l2/gstv4l2colorbalance.c:
15952         * sys/v4l2/gstv4l2object.c:
15953         (gst_v4l2_object_install_properties_helper):
15954         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
15955         * sys/v4l2/gstv4l2src.h:
15956           Whitespace cleanups, dashify property-names.
15957
15958 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
15959
15960         * sys/v4l2/gstv4l2.c:
15961         * sys/v4l2/gstv4l2colorbalance.c:
15962         * sys/v4l2/gstv4l2colorbalance.h:
15963         * sys/v4l2/gstv4l2object.c:
15964         * sys/v4l2/gstv4l2object.h:
15965         * sys/v4l2/gstv4l2src.c:
15966         * sys/v4l2/gstv4l2src.h:
15967         * sys/v4l2/gstv4l2tuner.c:
15968         * sys/v4l2/gstv4l2tuner.h:
15969         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
15970         * sys/v4l2/gstv4l2xoverlay.h:
15971         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
15972         (gst_v4l2_open):
15973         * sys/v4l2/v4l2_calls.h:
15974         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_queue_frame),
15975         (gst_v4l2src_capture_init):
15976         * sys/v4l2/v4l2src_calls.h:
15977           Cleanup error messages and unify header comments
15978
15979 2006-08-31  Jan Schmidt  <thaytan@mad.scientist.com>
15980
15981         * gst/nsf/Makefile.am:
15982         Add missing GST_LIBS
15983
15984 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
15985
15986         * sys/v4l2/gstv4l2src.c:
15987         Another small fix to set_caps function (sucks copy/paste error).
15988         
15989 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
15990
15991         * sys/v4l2/gstv4l2src.c:
15992         Send new_segment in GST_FORMAT_TIME instead of in GST_FORMAT_BYTES.
15993
15994 2006-08-30  Edgard Lima <edgard.lima@indt.org.br>
15995
15996         * sys/v4l2/gstv4l2src.c:
15997         A small fix to set_caps function.
15998
15999 2006-08-30  Edward Hervey  <edward@fluendo.com>
16000
16001         * gst/qtdemux/qtdemux.c:
16002         (gst_qtdemux_do_seek):
16003         Reset each streams last_flow to GST_FLOW_OK.
16004         (gst_qtdemux_activate_segment):
16005         Removing mystic modifications for good.
16006
16007 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
16008
16009         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16010         (qtdemux_parse_tree):
16011           put back 'segment start<=stop' change that was mystically reverted by
16012           the last commit
16013
16014 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
16015
16016         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16017         (qtdemux_parse_tree):
16018         Fix the build for disabled debug
16019
16020 2006-08-29  Edgard Lima <edgard.lima@indt.org.br>
16021
16022         * sys/v4l2/gstv4l2src.c:
16023         * sys/v4l2/v4l2src_calls.c:
16024         * sys/v4l2/v4l2src_calls.h:
16025         Fixed framerate negotiation.
16026         
16027 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
16028
16029         Patch by: Andrew Andkjar  <enki at goodship net>
16030
16031         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_close):
16032         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_supported),
16033         (gst_sdlvideosink_deinitsdl):
16034           Only de-init the subsystem we previously initialised. Avoids
16035           borkage when both sdlvideosink and sdlaudiosink are used
16036           at the same time and one is shut down.
16037
16038 2006-08-28  Wim Taymans  <wim@fluendo.com>
16039
16040         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
16041         (gst_qtdemux_add_stream), (qtdemux_parse_trak),
16042         (qtdemux_video_caps):
16043         Make sure segment start<=stop in weird quicktime files.
16044
16045 2006-08-28  Stefan Kost  <ensonic@users.sf.net>
16046
16047         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
16048           add comments and more debug logging
16049
16050 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
16051
16052         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16053
16054         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_post_tags),
16055         (gst_wavpack_dec_chain):
16056           Post audio codec and average bitrate tags on bus (#344472).
16057
16058         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
16059         (gst_wavpack_parse_src_query):
16060           Forward queries in other formats (BYTE format in particular)
16061           upstream; add Sebastian to authors.
16062
16063 2006-08-23  Edgard Lima <edgard.lima@indt.org.br>
16064
16065         * sys/v4l2/gstv4l2src.c:
16066         * sys/v4l2/v4l2src_calls.c:
16067         * sys/v4l2/v4l2src_calls.h:
16068         Fix set_caps to set width and height to the values the driver is
16069         really working with.
16070
16071 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16072
16073         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_push_block):
16074           Fix mem leak, send newsegment event on correction pad
16075           as well (#352476).
16076
16077         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
16078           Restore original author (on Sebastian's request).
16079
16080         * tests/check/Makefile.am:
16081         * tests/check/gst-plugins-bad.supp:
16082           Add (so far empty) suppression file for -bad. Remove
16083           wavpackenc test from VALGRIND_TO_FIX now that the leak
16084           is fixed.
16085
16086 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16087
16088         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16089
16090         * tests/check/Makefile.am:
16091         * tests/check/elements/.cvsignore:
16092         * tests/check/elements/wavpackdec.c: (setup_wavpackdec),
16093         (cleanup_wavpackdec), (GST_START_TEST), (wavpackdec_suite), (main):
16094         * tests/check/elements/wavpackenc.c: (setup_wavpackenc),
16095         (cleanup_wavpackenc), (GST_START_TEST), (wavpackenc_suite), (main):
16096         * tests/check/elements/wavpackparse.c: (wavpackparse_found_pad),
16097         (setup_wavpackparse), (cleanup_wavpackparse), (GST_START_TEST),
16098         (wavpackparse_suite), (main):
16099           Add unit tests for wavpack elements (#352476).
16100
16101 2006-08-23  Tim-Philipp Müller  <tim at centricular dot net>
16102
16103         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16104
16105         * docs/plugins/Makefile.am:
16106         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16107         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16108         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
16109         * docs/plugins/inspect/plugin-wavpack.xml:
16110         * ext/wavpack/gstwavpackdec.c:
16111         * ext/wavpack/gstwavpackdec.h:
16112         * ext/wavpack/gstwavpackenc.c:
16113         * ext/wavpack/gstwavpackenc.h:
16114         * ext/wavpack/gstwavpackparse.c:
16115         * ext/wavpack/gstwavpackparse.h:
16116           Add docs for wavpack elements (#352476).
16117
16118 2006-08-22  Edgard Lima <edgard.lima@indt.org.br>
16119
16120         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_size_limits)
16121         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fixate)
16122         Fixed query size to work with drivers that uses intermediate step
16123         like "width * height" to find closest size.
16124         
16125 2006-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
16126
16127         * configure.ac:
16128         * docs/plugins/Makefile.am:
16129         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16130         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16131         * gst/gdp/Makefile.am:
16132         * gst/gdp/gstgdp.c:
16133         * gst/gdp/gstgdpdepay.c:
16134         * gst/gdp/gstgdpdepay.h:
16135         * gst/gdp/gstgdppay.c:
16136         * gst/gdp/gstgdppay.h:
16137         * tests/check/Makefile.am:
16138         * tests/check/elements/gdpdepay.c:
16139         * tests/check/elements/gdppay.c:
16140           move gdp plugin to good.
16141
16142 2006-08-21  Wim Taymans  <wim@fluendo.com>
16143
16144         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
16145         (qtdemux_node_dump_foreach), (qtdemux_parse_trak),
16146         (qtdemux_video_caps), (qtdemux_audio_caps):
16147         Some more constification.
16148         Fix some paletted data formats again.
16149         Fix ulaw/alaw in qt.
16150         Set correct caps for raw RGB.
16151         Add support for yuv2, which is like Yuv2.
16152         Add support for raw audio with the NONE fourcc, which is like raw.
16153
16154 2006-08-21  Wim Taymans  <wim@fluendo.com>
16155
16156         * ext/gsm/gstgsm.c: (plugin_init):
16157         Make rank PRIMARY now that GSM seems to work fine.
16158
16159 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
16160
16161         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init),
16162         (gst_wavpack_enc_finalize), (gst_wavpack_enc_sink_set_caps),
16163         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_format_samples),
16164         (gst_wavpack_enc_push_block), (gst_wavpack_enc_chain),
16165         (gst_wavpack_enc_rewrite_first_block),
16166         (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state),
16167         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
16168         * ext/wavpack/gstwavpackenc.h:
16169         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
16170         (gst_wavpack_parse_src_query), (gst_wavpack_parse_src_event),
16171         (gst_wavpack_parse_init), (gst_wavpack_parse_get_upstream_length),
16172         (gst_wavpack_parse_loop):
16173           More clean-ups: use shorter variable names to make code easier to
16174           read; prefix structures we define with 'Gst' to make it clearer
16175           where they come from.
16176
16177 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
16178
16179         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_init),
16180         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
16181         (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block),
16182         (gst_wavpack_enc_sink_event):
16183           Fix caps set on buffers and template caps (output is framed)
16184           and make them match (#351663); use GST_WARNING_OBJECT instead of
16185           GST_ELEMENT_WARNING; simplify push_block(); do some small
16186           clean-ups here and there; fix memleak (#351663).
16187
16188 2006-08-18  Tim-Philipp Müller  <tim at centricular dot net>
16189
16190         Based on patch by: Sebastian Dröge <slomo at circular-chaos.org>
16191
16192         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_sink_event),
16193         (gst_wavpack_parse_get_upstream_length),
16194         (gst_wavpack_parse_find_marker), (gst_wavpack_parse_resync_loop),
16195         (gst_wavpack_parse_loop), (gst_wavpack_parse_resync_adapter):
16196           Fix resyncing in push mode not stopping re-syncing at embedded
16197           zeroes; skip garbage between frames in pull mode as well if
16198           necessary; use gst_pad_query_peer_duration(); push EOS and
16199           NEWSEGMENT event in right direction (#351659).
16200
16201 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
16202
16203         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16204
16205         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init):
16206         * ext/wavpack/gstwavpackparse.c:
16207         (gst_wavpack_parse_resync_adapter), (gst_wavpack_parse_chain):
16208           In push mode, re-sync to next wavpack header if sync is lost
16209           (#351557). Also use hyphens instead of underscores in
16210           GObject property names.
16211
16212 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
16213
16214         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16215
16216         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_class_init),
16217         (gst_wavpack_parse_reset), (gst_wavpack_parse_get_src_query_types),
16218         (gst_wavpack_parse_src_query),
16219         (gst_wavpack_parse_handle_seek_event),
16220         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_init),
16221         (gst_wavpack_parse_create_src_pad),
16222         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop),
16223         (gst_wavpack_parse_chain), (gst_wavpack_parse_sink_activate),
16224         (gst_wavpack_parse_sink_activate_pull):
16225         * ext/wavpack/gstwavpackparse.h:
16226           Make wavpackparse also work in push-mode (not seekable yet though);
16227           some small clean-ups along the way; add support for SEEKING query
16228           and query types function. (#351495).
16229
16230 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
16231
16232         * ext/libfame/gstlibfame.c: (gst_fameenc_get_property):
16233         * sys/glsink/glimagesink.c: (gst_glimage_sink_get_property):
16234           Fix leaks (#351502).
16235
16236 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
16237
16238         * gst/qtdemux/qtdemux.c: (qtdemux_redirects_sort_func),
16239         (qtdemux_process_redirects), (qtdemux_parse_tree):
16240           Extract all references/redirections if there is more
16241           than one and sort them; also extract minimum required
16242           bitrate information if available. (#350399)
16243           
16244 2006-08-10  Tim-Philipp Müller  <tim at centricular dot net>
16245
16246         Patch by: Michal Benes  <michal.benes at itonis tv>
16247
16248         * ext/faac/gstfaac.c: (gst_faac_configure_source_pad):
16249           Bitrate in the faac structure is per output channel,
16250           not total bitrate (#350741).
16251
16252 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
16253
16254         * ext/xvid/gstxvidenc.c: (gst_xvidenc_chain):
16255           Fix GST_ELEMENT_ERROR usage.
16256
16257 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
16258
16259         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
16260           Fix silly typo.
16261
16262 2006-08-08  Edward Hervey  <edward@fluendo.com>
16263
16264         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
16265         I forgot to include the file containing the #define :)
16266         Now includes "config.h"
16267
16268 2006-08-08  Edward Hervey  <edward@fluendo.com>
16269
16270         * tests/check/elements/gdpdepay.c: (gdpdepay_suite):
16271         Ignore test known to fail on PPC64. See #348114.
16272
16273 2006-08-04  Edgard Lima <edgard.lima@indt.org.br>
16274
16275         Patch by: Rosfran Borges <rosfran dot borges at indt dot org dot
16276         br>
16277
16278         * ext/neon/gstneonhttpsrc.c:
16279         * ext/neon/gstneonhttpsrc.h:
16280         Allow HTTP redirect (HTTP status code 302).
16281
16282 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16283
16284         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16285         Fix event parsing by gdpdepay.  Fixes #349916.
16286
16287 2006-08-03  Tim-Philipp Müller  <tim at centricular dot net>
16288
16289         Patch by: Thadeu Lima de Souza Cascardo <cascardo at holoscopio dot
16290         com>
16291
16292         * ext/Makefile.am:
16293           Use right variables when USE_SPC is defined.
16294
16295 2006-08-02  Wim Taymans  <wim@fluendo.com>
16296
16297         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init),
16298         (gst_gdp_depay_finalize), (gst_gdp_depay_sink_event),
16299         (gst_gdp_depay_src_event), (gst_gdp_depay_chain),
16300         (gst_gdp_depay_change_state):
16301         Disable seeking.
16302         Small cleanups.
16303         Clear adapter on disconts.
16304         Clear caps when going to READY instead of NULL
16305
16306         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16307         (gst_gdp_pay_init), (gst_gdp_pay_finalize), (gst_gdp_pay_reset),
16308         (gst_gdp_buffer_from_caps), (gst_gdp_pay_buffer_from_buffer),
16309         (gst_gdp_buffer_from_event), (gst_gdp_pay_reset_streamheader),
16310         (gst_gdp_queue_buffer), (gst_gdp_pay_chain),
16311         (gst_gdp_pay_sink_event), (gst_gdp_pay_src_event),
16312         (gst_gdp_pay_change_state):
16313         * gst/gdp/gstgdppay.h:
16314         Reset payloader when going to READY.
16315         Fix leaked buffers in ->queue on push errors.
16316         Disable seeking.
16317         Code cleanups.
16318         Create packetizer in _init, free in _finalize.
16319
16320 2006-07-31  Julien MOUTTE  <julien@moutte.net>
16321
16322         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_change_state),
16323         (gst_dfbvideosink_buffer_alloc): Post an error message.
16324
16325 2006-07-31  Julien MOUTTE  <julien@moutte.net>
16326
16327         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_change_state),
16328         (gst_dfbvideosink_buffer_alloc): Don't try allocating if we are not
16329         setup yet. Fail changing state if setup fails.
16330
16331 2006-07-31  Wim Taymans  <wim@fluendo.com>
16332
16333         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init),
16334         (gst_gdp_depay_sink_event), (gst_gdp_depay_chain):
16335         Consume all events except EOS because we generate events from
16336         the gdp payload instead. Fixes #349204
16337
16338 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
16339
16340         * ext/xvid/gstxviddec.c: (gst_xviddec_init), (gst_xviddec_reset),
16341         (gst_xviddec_unset), (gst_xviddec_handle_sink_event),
16342         (gst_xviddec_setup), (gst_xviddec_negotiate), (gst_xviddec_chain),
16343         (gst_xviddec_flush_buffers), (gst_xviddec_src_getcaps),
16344         (gst_xviddec_setcaps), (gst_xviddec_change_state):
16345         * ext/xvid/gstxviddec.h:
16346           Clean-ups and code reflows. Pass return value from
16347           gst_pad_alloc_buffer() upstream among other things. Also check
16348           for NULL GValue before using GST_VALUE_TYPE macro (#348976).
16349           Mass rename of xviddec -> dec variable for better
16350           code readability.
16351
16352 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
16353
16354         * ext/xvid/gstxvid.c: (gst_xvid_image_fill):
16355           Fix size calculation for I420/YV12. Fixes #348976.
16356
16357 2006-07-27  Wim Taymans  <wim@fluendo.com>
16358
16359         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init),
16360         (gst_gsmdec_sink_setcaps), (gst_gsmdec_sink_event):
16361         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_setcaps):
16362         Fix negotiation.
16363
16364 2006-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16365
16366         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init):
16367           proxying get/set caps is the wrong thing to do, since we really
16368           do change caps quite fundamentally
16369         * tests/check/elements/gdpdepay.c:
16370         * tests/check/elements/gdppay.c:
16371           remove declaration of buffers, it's already done in gstcheck.h
16372
16373 2006-07-24  Sebastien Moutte  <sebastien@moutte.net>
16374
16375         * sys/directsound/gstdirectsoundsink.h:
16376         * sys/directsound/gstdirectsoundsink.c:
16377         Add an attenuation property that will directly attenuate the 
16378         directsound buffer.
16379         Change the size of the directsound secondary buffer to a half second.
16380         Add more debug logs.
16381         Add a lock to protect dsound buffer write access.
16382         Fix a bad implementation of reset.
16383         * sys/directsound/gstdirectdrawsink.c:
16384         * sys/directsound/gstdirectdrawsink.h:
16385         Add a keep_aspect_ratio property.
16386         Do not use overlay if not supported.
16387         Add more debug logs.
16388         Remove overwrite of WM_ERASEBKGND message handling. It was not
16389         redrawing border when keep_aspect_ratio was enabled.
16390         * win32/common/config.h:
16391         update version waiting an auto-generated config.h
16392
16393 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
16394
16395         Patch by: Chris Lee  <clee at kde org>
16396
16397         * configure.ac:
16398         * ext/Makefile.am:
16399         * ext/spc/Makefile.am:
16400         * ext/spc/gstspc.c: (spc_negotiate), (gst_spc_dec_base_init),
16401         (gst_spc_dec_class_init), (gst_spc_dec_init), (gst_spc_dec_chain),
16402         (gst_spc_dec_sink_event), (gst_spc_dec_src_event),
16403         (gst_spc_dec_src_query), (spc_play), (spc_setup),
16404         (gst_spc_dec_change_state), (plugin_init):
16405         * ext/spc/gstspc.h:
16406           Add libopenspc-based SPC decoder element (#348220).
16407
16408 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
16409
16410         Patch by: Martin Szulecki
16411
16412         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_get_property_helper):
16413           If "device-name" is requested and the device is not
16414           open, try to temporarily open it to obtain this
16415           information (#342494).
16416
16417 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
16418
16419         * gst/nsf/nsf.c: (nsf_load):
16420           Really fix compilation. Apparently it's not enough to
16421           just check the return value for errors, but we need to
16422           check for short reads as well (now if only we handled
16423           them too ...). Fixes #347935.
16424
16425 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16426
16427         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
16428           Fix caps after previous change to byte order endianness.
16429
16430         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
16431         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_init),
16432         (gst_wavpack_parse_loop):
16433         * ext/wavpack/gstwavpackparse.h:
16434           Queue incoming events if there's no source pad yet and
16435           send them downstream later when the pad is there.
16436
16437 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16438
16439         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init),
16440         (gst_wavpack_dec_format_samples),
16441         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16442         (gst_wavpack_dec_change_state):
16443         * ext/wavpack/gstwavpackdec.h:
16444           Output audio in native byte order (which is also how we get
16445           samples from wavpack); output samples with 21-24 bit depth
16446           with 32 bit width (makes things easier for us).
16447
16448 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16449
16450         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init),
16451         (gst_wavpack_dec_class_init), (gst_wavpack_dec_init),
16452         (gst_wavpack_dec_finalize), (gst_wavpack_dec_format_samples),
16453         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16454         (gst_wavpack_dec_sink_event), (gst_wavpack_dec_change_state):
16455         * ext/wavpack/gstwavpackdec.h:
16456           More clean-ups: remove most of the disfunctional correction
16457           pad stuff for now, if it ever gets implemented a lot of stuff
16458           will have to be rewritten anyway; redo chain function, move
16459           errors to end, error out instead of g_assert()ing. Also rename
16460           overly long variable 'wavpackdec' to just 'dec'; miscellaneous
16461           other small stuff.
16462
16463 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
16464
16465         Patch by: Sebastian Dröge <slomo at circular-chaos.org>
16466
16467         * configure.ac:
16468           Check for wavpack version and define WAVPACK_OLD_API if
16469           necessary.
16470
16471         * ext/wavpack/Makefile.am:
16472         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_read_header),
16473         (gst_wavpack_read_metadata):
16474         * ext/wavpack/gstwavpackcommon.h:
16475         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init),
16476         (gst_wavpack_dec_class_init), (gst_wavpack_dec_init),
16477         (gst_wavpack_dec_finalize), (gst_wavpack_dec_format_samples),
16478         (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_chain),
16479         (gst_wavpack_dec_sink_event), (gst_wavpack_dec_change_state),
16480         (gst_wavpack_dec_request_new_pad), (gst_wavpack_dec_plugin_init):
16481         * ext/wavpack/gstwavpackdec.h:
16482         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_class_init),
16483         (gst_wavpack_enc_init), (gst_wavpack_enc_finalize),
16484         (gst_wavpack_enc_set_wp_config):
16485         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
16486         (gst_wavpack_parse_finalize), (gst_wavpack_parse_class_init),
16487         (gst_wavpack_parse_index_get_entry_from_sample),
16488         (gst_wavpack_parse_scan_to_find_sample),
16489         (gst_wavpack_parse_handle_seek_event),
16490         (gst_wavpack_parse_create_src_pad):
16491         * ext/wavpack/gstwavpackstreamreader.c:
16492         * ext/wavpack/gstwavpackstreamreader.h:
16493           Port to new/official wavpack API, don't use API that was exported
16494           in wavpack header files and in the lib but meant to be private, at
16495           least not for recent wavpack versions; misc. 'cleanups' (#347443).
16496
16497 2006-07-18  Wim Taymans  <wim@fluendo.com>
16498
16499         * gst/nsf/nsf.c: (nsf_load):
16500         Fix compilation by not ignoring return values of fread.
16501
16502 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16503
16504         * docs/plugins/inspect/plugin-alsaspdif.xml:
16505         * docs/plugins/inspect/plugin-filter.xml:
16506         * docs/plugins/inspect/plugin-h264parse.xml:
16507         * docs/plugins/inspect/plugin-musepack.xml:
16508         * docs/plugins/inspect/plugin-nsfdec.xml:
16509         * docs/plugins/inspect/plugin-sdl.xml:
16510         * docs/plugins/inspect/plugin-spectrum.xml:
16511           adding more inspect docs
16512
16513 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16514
16515         * docs/plugins/inspect/plugin-gdp.xml:
16516           actually commit inspectation of gdp element
16517
16518 2006-07-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16519
16520         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_class_init):
16521         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16522           remove parent_class setting, BOILERPLATE does this
16523         (gst_gdp_pay_reset_streamheader):
16524           fix typo in comment
16525
16526 2006-07-17  Wim Taymans  <wim@fluendo.com>
16527
16528         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
16529         (gst_qtdemux_prepare_current_sample),
16530         (gst_qtdemux_loop_state_movie):
16531         Store duration in uint64 too instead of clipping.
16532         When we do a keyframe seek and the requested time is at the
16533         keyframe, don't seek back to the beginning of the keyframe.
16534         Fixes #347439.
16535
16536 2006-07-16  Wim Taymans  <wim@fluendo.com>
16537
16538         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_sync):
16539         Don't crash on small buffers.
16540
16541 2006-07-15  Stefan Kost  <ensonic@users.sf.net>
16542
16543         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_sink_activate):
16544         Reset adapter.
16545
16546 2006-07-15  Stefan Kost  <ensonic@users.sf.net>
16547
16548         * gst/spectrum/demo-audiotest.c: (main):
16549         * gst/spectrum/demo-osssrc.c: (main):
16550         Do not use deprecated gtk functions.
16551
16552 2006-07-14  Wim Taymans  <wim@fluendo.com>
16553
16554         * gst/nsf/Makefile.am:
16555         * gst/nsf/memguard.c:
16556         * gst/nsf/memguard.h:
16557         * gst/nsf/types.h:
16558         Remove crack malloc/free replacement.
16559
16560 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
16561
16562         * docs/plugins/Makefile.am:
16563         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
16564         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
16565           add more plugins and elements to docs
16566         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16567           fix segfaults due to wrong g_free
16568           add example
16569         * gst/gdp/gstgdppay.c:
16570           add example
16571
16572 2006-07-13  Wim Taymans  <wim@fluendo.com>
16573
16574         * gst/nsf/Makefile.am:
16575         Fix build.
16576
16577 2006-07-13  Wim Taymans  <wim@fluendo.com>
16578
16579         Based on patches by: Johan Dahlin <johan at gnome dot org>
16580                 Ronald Bultje <rbultje at ronald dot bitfreak dot net>
16581
16582         * configure.ac:
16583         * gst/nsf/Makefile.am:
16584         * gst/nsf/dis6502.h:
16585         * gst/nsf/fds_snd.c:
16586         * gst/nsf/fds_snd.h:
16587         * gst/nsf/fmopl.c:
16588         * gst/nsf/fmopl.h:
16589         * gst/nsf/gstnsf.c:
16590         * gst/nsf/gstnsf.h:
16591         * gst/nsf/log.c:
16592         * gst/nsf/log.h:
16593         * gst/nsf/memguard.c:
16594         * gst/nsf/memguard.h:
16595         * gst/nsf/mmc5_snd.c:
16596         * gst/nsf/mmc5_snd.h:
16597         * gst/nsf/nes6502.c:
16598         * gst/nsf/nes6502.h:
16599         * gst/nsf/nes_apu.c:
16600         * gst/nsf/nes_apu.h:
16601         * gst/nsf/nsf.c:
16602         * gst/nsf/nsf.h:
16603         * gst/nsf/osd.h:
16604         * gst/nsf/types.h:
16605         * gst/nsf/vrc7_snd.c:
16606         * gst/nsf/vrc7_snd.h:
16607         * gst/nsf/vrcvisnd.c:
16608         * gst/nsf/vrcvisnd.h:
16609         Added NSF decoder plugin. Fixes 151192. 
16610
16611 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16612
16613         * tests/check/Makefile.am:
16614           Only run mpeg2enc unit test if we built the mpeg2enc plugin.
16615
16616 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16617
16618         * configure.ac:
16619           Don't error out in configure if mjpegtools dev is not there.
16620
16621 2006-07-13  Tim-Philipp Müller  <tim at centricular dot net>
16622
16623         Patch by: Mark Nauwelaerts <manauw at skynet be>
16624
16625         * configure.ac:
16626         * ext/Makefile.am:
16627         * ext/mpeg2enc/Makefile.am:
16628         * ext/mpeg2enc/gstmpeg2enc.cc:
16629         * ext/mpeg2enc/gstmpeg2enc.hh:
16630         * ext/mpeg2enc/gstmpeg2encoder.cc:
16631         * ext/mpeg2enc/gstmpeg2encoder.hh:
16632         * ext/mpeg2enc/gstmpeg2encoptions.cc:
16633         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
16634         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
16635         * ext/mpeg2enc/gstmpeg2encstreamwriter.cc:
16636         * ext/mpeg2enc/gstmpeg2encstreamwriter.hh:
16637           Port mpeg2enc to 0.10 (#343184).
16638
16639         * tests/check/Makefile.am:
16640         * tests/check/elements/.cvsignore:
16641         * tests/check/elements/mpeg2enc.c:
16642           Add unit test for mpeg2enc.
16643
16644         * tests/icles/.cvsignore:
16645           Ignore pitch-test.
16646
16647 2006-07-12  Tim-Philipp Müller  <tim at centricular dot net>
16648
16649         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
16650           Fix typo in property nick.
16651
16652 2006-07-10  Wim Taymans  <wim@fluendo.com>
16653
16654         * gst/filter/gstbpwsinc.h:
16655         * gst/filter/gstiir.h:
16656         * gst/filter/gstlpwsinc.h:
16657         Don't forget new files.
16658
16659 2006-07-10  Wim Taymans  <wim@fluendo.com>
16660
16661         Patch by: Mathis Hofer <mathis dot hofer at dreamlab dot net>
16662
16663         * configure.ac:
16664         * gst/filter/Makefile.am:
16665         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_dispose),
16666         (gst_bpwsinc_base_init), (gst_bpwsinc_class_init),
16667         (gst_bpwsinc_init), (bpwsinc_set_caps), (bpwsinc_transform_ip),
16668         (bpwsinc_set_property), (bpwsinc_get_property):
16669         * gst/filter/gstfilter.c: (plugin_init):
16670         * gst/filter/gstfilter.h:
16671         * gst/filter/gstiir.c: (gst_iir_dispose), (gst_iir_base_init),
16672         (gst_iir_class_init), (gst_iir_init), (iir_set_caps),
16673         (iir_transform_ip), (iir_set_property), (iir_get_property):
16674         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_dispose),
16675         (gst_lpwsinc_base_init), (gst_lpwsinc_class_init),
16676         (gst_lpwsinc_init), (lpwsinc_set_caps), (lpwsinc_transform_ip),
16677         (lpwsinc_set_property), (lpwsinc_get_property):
16678         Ported the gstfilter plugin to GStreamer 0.10.
16679         Fixes #346853.
16680
16681 2006-07-10  Wim Taymans  <wim@fluendo.com>
16682
16683         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
16684           Extract comment information!!
16685
16686 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
16687
16688         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
16689         (qtdemux_tag_add_date):
16690           Extract year/date information (fixes #347079).
16691
16692 2006-07-07  Wim Taymans  <wim@fluendo.com>
16693
16694         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
16695         Don't crash on twos/sowt/raw audio. #345830.
16696
16697 2006-07-07  Wim Taymans  <wim@fluendo.com>
16698
16699         Patch by: Lutz Mueller <lutz at topfrose dot de>
16700
16701         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
16702         (gst_neonhttp_src_init), (gst_neonhttp_src_finalize),
16703         (request_dispatch), (gst_neonhttp_src_create),
16704         (gst_neonhttp_src_start), (gst_neonhttp_src_get_size),
16705         (gst_neonhttp_src_stop), (set_proxy), (set_uri),
16706         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
16707         (gst_neonhttp_src_uri_set_uri), (size_header_handler):
16708         * ext/neon/gstneonhttpsrc.h:
16709         Remove unlock function. start/stop will do everything needed
16710         Removed code that was never called.
16711         Use gst_pad_alloc_buffer. Don't send EOS - parent class does that for us.
16712         Do not escape path. Fixes #346723.
16713         Additional code cleanups.
16714
16715 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
16716
16717         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16718         (gst_qtdemux_loop_state_header), (qtdemux_video_caps):
16719           Fix silly crasher in state change function; add
16720           IV41 fourcc (see bug #171111); don't output confusing
16721           debug message when skipping atoms.
16722
16723 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
16724
16725         * ext/directfb/dfbvideosink.c:
16726         * ext/gsm/gstgsmdec.c:
16727         * ext/gsm/gstgsmenc.c:
16728         * ext/libmms/gstmms.c:
16729         * ext/neon/gstneonhttpsrc.c:
16730         * ext/theora/theoradec.c:
16731         * gst/freeze/gstfreeze.c:
16732         * gst/gdp/gstgdpdepay.c:
16733         * gst/gdp/gstgdppay.c:
16734         * sys/glsink/glimagesink.c:
16735           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
16736           and fix one GObject boilerplate macro.
16737
16738 2006-06-20  Wim Taymans  <wim@fluendo.com>
16739
16740         * gst/modplug/libmodplug/stdafx.h:
16741         Fix modplug on AMD64. Fixes #345336.
16742
16743 2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>
16744
16745         * configure.ac:
16746           Fix check so that future libneon API changes won't break the build.
16747
16748         * ext/neon/gstneonhttpsrc.c:
16749           Fix build with libneon-0.26.x (#345182).
16750
16751 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
16752
16753         * configure.ac:
16754           Fix --disable-external (can't set conditionals conditionally,
16755           #343602).
16756           
16757 2006-06-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16758
16759         * gst/spectrum/Makefile.am:
16760         Fix build.
16761
16762 2006-06-16  Stefan Kost  <ensonic@users.sf.net>
16763
16764         * gst/spectrum/demo-audiotest.c: (on_window_destroy),
16765         (draw_spectrum), (message_handler), (main):
16766         * gst/spectrum/demo-osssrc.c: (on_window_destroy), (draw_spectrum),
16767         (message_handler), (main):
16768         port to use message to get results, cleanly exit when closing the window
16769         
16770         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
16771         (gst_spectrum_init), (gst_spectrum_dispose),
16772         (gst_spectrum_set_property), (gst_spectrum_get_property),
16773         (gst_spectrum_set_caps), (gst_spectrum_start),
16774         (gst_spectrum_message_new), (gst_spectrum_transform_ip):
16775         * gst/spectrum/gstspectrum.h:
16776         port to derive from basetransform and send results via messages
16777         (like level element)
16778
16779 2006-06-15  Wim Taymans  <wim@fluendo.com>
16780
16781         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
16782         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie),
16783         (gst_qtdemux_loop), (gst_qtdemux_chain), (qtdemux_parse_trak):
16784         Combine return values from src pad pushes.
16785
16786 2006-06-15  Wim Taymans  <wim@fluendo.com>
16787
16788         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header),
16789         (gst_qtdemux_prepare_current_sample), (gst_qtdemux_advance_sample),
16790         (gst_qtdemux_add_stream):
16791         Don't crash on files with 0 samples, EOS immediatly instead.
16792         Fixes #344944.
16793
16794 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
16795
16796         Patch by: Wouter Paesen  <wouter at kangaroot net>
16797
16798         * ext/soundtouch/Makefile.am:
16799         * ext/soundtouch/gstpitch.cc:
16800           Make pitch element controllable via GstController interface
16801           (#344821).
16802           
16803         * configure.ac:
16804           Up core requirements to 0.10.8.1/CVS because earlier
16805           GstControllers can't handle float properties correctly.
16806           Check for GstController CFLAGS and LIBS.
16807
16808         * tests/icles/Makefile.am:
16809         * tests/icles/pitch-test.c: (main):
16810           Add small test program for the above (welcome to the 80s!).
16811
16812 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
16813
16814         Patch by: Sebastian Dröge  <slomo at circular-chaos org>
16815
16816         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_base_init),
16817         (gst_wavpack_enc_class_init), (gst_wavpack_enc_set_wp_config),
16818         (gst_wavpack_enc_chain), (gst_wavpack_enc_sink_event),
16819         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property):
16820         * ext/wavpack/gstwavpackenc.h:
16821           Use bitrate property solely for bitrates and add new
16822           bits-per-sample property for the other stuff. Set duration
16823           to 'unknown' in initial header and resend header with proper
16824           duration on EOS; update Sebastian's e-mail address.
16825
16826 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16827
16828         * examples/directfb/.cvsignore:
16829         * ext/directfb/.cvsignore:
16830           #define red green
16831
16832 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16833
16834         * gst/spectrum/.cvsignore:
16835           Ignore more.
16836
16837 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
16838
16839         * ext/libmms/gstmms.c: (gst_mms_create):
16840           Set caps on outgoing buffers.
16841
16842         * sys/directdraw/gstdirectdrawsink.c: (gst_directdrawsink_init):
16843           Comment out unused global instance variable.
16844
16845 2006-06-10  Tim-Philipp Müller  <tim at centricular dot net>
16846
16847         Patch by: Sebastian Dröge  <mail at slomosnail de>
16848
16849         * ext/wavpack/Makefile.am:
16850         * ext/wavpack/gstwavpack.c: (plugin_init):
16851         * ext/wavpack/gstwavpackcommon.h:
16852         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_mode_get_type),
16853         (gst_wavpack_enc_correction_mode_get_type),
16854         (gst_wavpack_enc_joint_stereo_mode_get_type),
16855         (gst_wavpack_enc_base_init), (gst_wavpack_enc_class_init),
16856         (gst_wavpack_enc_init), (gst_wavpack_enc_dispose),
16857         (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config),
16858         (gst_wavpack_enc_format_samples), (gst_wavpack_enc_push_block),
16859         (gst_wavpack_enc_chain), (gst_wavpack_enc_rewrite_first_block),
16860         (gst_wavpack_enc_sink_event), (gst_wavpack_enc_change_state),
16861         (gst_wavpack_enc_set_property), (gst_wavpack_enc_get_property),
16862         (gst_wavpack_enc_plugin_init):
16863         * ext/wavpack/gstwavpackenc.h:
16864         * ext/wavpack/md5.c:
16865         * ext/wavpack/md5.h:
16866           Add wavpack encoder element (#343131).
16867
16868 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
16869
16870         * configure.ac:
16871           Check for X before using X_CFLAGS in the check for opengl (#343866).
16872           
16873         * ext/musepack/Makefile.am:
16874         * ext/wavpack/Makefile.am:
16875         * gst/speed/Makefile.am:
16876           Add missing GST_LIBS, fixes build on cygwin (#343866).
16877
16878 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16879
16880         * configure.ac:
16881           enable building of GDP elements
16882         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
16883         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16884         (gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
16885         (gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
16886         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_sink_event),
16887         (gst_gdp_pay_set_property), (gst_gdp_pay_get_property),
16888         (gst_gdp_pay_change_state):
16889         * gst/gdp/gstgdppay.h:
16890           add version 1.0
16891
16892 2006-06-02  Michael Smith  <msmith@fluendo.com>
16893
16894         * ext/theora/theoradec.c: (theora_dec_src_convert),
16895         (theora_handle_type_packet), (theora_handle_422_image),
16896         (theora_handle_444_image), (theora_handle_420_image),
16897         (theora_handle_data_packet):
16898           Theora 4:4:4 pixel format support.
16899
16900 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16901
16902         * gst/gdp/gstgdppay.c: (gst_gdp_pay_class_init),
16903         (gst_gdp_pay_init), (gst_gdp_buffer_from_caps),
16904         (gst_gdp_pay_buffer_from_buffer), (gst_gdp_buffer_from_event),
16905         (gst_gdp_pay_reset_streamheader), (gst_gdp_pay_chain),
16906         (gst_gdp_pay_sink_event), (gst_gdp_pay_set_property),
16907         (gst_gdp_pay_get_property):
16908           add crc-header and crc-payload properties
16909           don't error out on some things that are recoverable
16910         * tests/check/elements/gdppay.c: (GST_START_TEST), (gdppay_suite):
16911           add test for crc
16912
16913 2006-06-02  Stefan Kost  <ensonic@users.sf.net>
16914
16915         * ext/alsaspdif/alsaspdifsink.h:
16916         * ext/amrwb/gstamrwbdec.h:
16917         * ext/amrwb/gstamrwbenc.h:
16918         * ext/amrwb/gstamrwbparse.h:
16919         * ext/arts/gst_arts.h:
16920         * ext/artsd/gstartsdsink.h:
16921         * ext/audiofile/gstafparse.h:
16922         * ext/audiofile/gstafsink.h:
16923         * ext/audiofile/gstafsrc.h:
16924         * ext/audioresample/gstaudioresample.h:
16925         * ext/bz2/gstbz2dec.h:
16926         * ext/bz2/gstbz2enc.h:
16927         * ext/dirac/gstdiracdec.h:
16928         * ext/directfb/dfbvideosink.h:
16929         * ext/divx/gstdivxdec.h:
16930         * ext/divx/gstdivxenc.h:
16931         * ext/dts/gstdtsdec.h:
16932         * ext/faac/gstfaac.h:
16933         * ext/gsm/gstgsmdec.h:
16934         * ext/gsm/gstgsmenc.h:
16935         * ext/ivorbis/vorbisenc.h:
16936         * ext/libfame/gstlibfame.h:
16937         * ext/nas/nassink.h:
16938         * ext/neon/gstneonhttpsrc.h:
16939         * ext/polyp/polypsink.h:
16940         * ext/sdl/sdlaudiosink.h:
16941         * ext/sdl/sdlvideosink.h:
16942         * ext/shout/gstshout.h:
16943         * ext/snapshot/gstsnapshot.h:
16944         * ext/sndfile/gstsf.h:
16945         * ext/swfdec/gstswfdec.h:
16946         * ext/tarkin/gsttarkindec.h:
16947         * ext/tarkin/gsttarkinenc.h:
16948         * ext/theora/theoradec.h:
16949         * ext/wavpack/gstwavpackdec.h:
16950         * ext/wavpack/gstwavpackparse.h:
16951         * ext/xine/gstxine.h:
16952         * ext/xvid/gstxviddec.h:
16953         * ext/xvid/gstxvidenc.h:
16954         * gst/cdxaparse/gstcdxaparse.h:
16955         * gst/cdxaparse/gstcdxastrip.h:
16956         * gst/colorspace/gstcolorspace.h:
16957         * gst/festival/gstfestival.h:
16958         * gst/freeze/gstfreeze.h:
16959         * gst/gdp/gstgdpdepay.h:
16960         * gst/gdp/gstgdppay.h:
16961         * gst/modplug/gstmodplug.h:
16962         * gst/mpeg1sys/gstmpeg1systemencode.h:
16963         * gst/mpeg1videoparse/gstmp1videoparse.h:
16964         * gst/mpeg2sub/gstmpeg2subt.h:
16965         * gst/mpegaudioparse/gstmpegaudioparse.h:
16966         * gst/multifilesink/gstmultifilesink.h:
16967         * gst/overlay/gstoverlay.h:
16968         * gst/playondemand/gstplayondemand.h:
16969         * gst/qtdemux/qtdemux.h:
16970         * gst/rtjpeg/gstrtjpegdec.h:
16971         * gst/rtjpeg/gstrtjpegenc.h:
16972         * gst/smooth/gstsmooth.h:
16973         * gst/smoothwave/gstsmoothwave.h:
16974         * gst/spectrum/gstspectrum.h:
16975         * gst/speed/gstspeed.h:
16976         * gst/stereo/gststereo.h:
16977         * gst/switch/gstswitch.h:
16978         * gst/tta/gstttadec.h:
16979         * gst/tta/gstttaparse.h:
16980         * gst/videodrop/gstvideodrop.h:
16981         * gst/xingheader/gstxingmux.h:
16982         * sys/directdraw/gstdirectdrawsink.h:
16983         * sys/directsound/gstdirectsoundsink.h:
16984         * sys/dxr3/dxr3audiosink.h:
16985         * sys/dxr3/dxr3spusink.h:
16986         * sys/dxr3/dxr3videosink.h:
16987         * sys/qcam/gstqcamsrc.h:
16988         * sys/vcd/vcdsrc.h:
16989         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
16990
16991 2006-05-31  Edward Hervey  <edward@fluendo.com>
16992
16993         * ext/faad/gstfaad.h:
16994         Forgot to commit the header file too.
16995
16996 2006-05-31  Edward Hervey  <edward@fluendo.com>
16997
16998         * ext/faad/gstfaad.c: (gst_faad_class_init), (gst_faad_init),
16999         (gst_faad_dispose), (gst_faad_sink_event), (clip_outgoing_buffer),
17000         (gst_faad_chain), (gst_faad_change_state):
17001         Added GstSegment to control segments.
17002         Added clipping/dropping of outgoing buffers in order to have accurate
17003         seeking working properly.
17004
17005 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
17006
17007         Patch by: Lutz Müller  <lutz at topfrose de>
17008
17009         * ext/bz2/Makefile.am:
17010         * ext/bz2/gstbz2dec.c: (gst_bz2dec_chain), (gst_bz2dec_init),
17011         (gst_bz2dec_change_state), (gst_bz2dec_class_init):
17012           Use gst_type_find_helper_* functions for typefinding; use
17013           correct caps with gst_pad_alloc_buffer(); add state change
17014           function and reset decoder in it; don't unref buffer if
17015           pad_push fails; use fixed caps on source pad. (#341524).
17016
17017 2006-05-27  Stefan Kost  <ensonic@users.sf.net>
17018
17019         * gst/spectrum/Makefile.am:
17020         * gst/spectrum/demo-audiotest.c: (on_frequency_changed),
17021         (spectrum_chain), (main):
17022         * gst/spectrum/demo-osssrc.c:
17023         added another example
17024         
17025         * sys/v4l2/gstv4l2src.c:
17026         fix typo
17027
17028 2006-05-26  Edward Hervey  <edward@fluendo.com>
17029
17030         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment): 
17031         Clip the outputed NEWSEGMENT stop time to the configured segment stop
17032         time.
17033
17034 2006-05-26  Wim Taymans  <wim@fluendo.com>
17035
17036         * gst/qtdemux/qtdemux.c: (gst_qtdemux_do_seek):
17037         Don't clear the running variable in the seek code.
17038
17039 2006-05-24  Wim Taymans  <wim@fluendo.com>
17040
17041         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_esds):
17042         Detect QCELP in mp4a descriptors.
17043
17044 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
17045
17046         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak), (plugin_init):
17047           po/POTFILES.in:
17048           Throw an error when the file is encrypted. Move plugin_init stuff
17049           to the end of the file, add stuff for i18n, make debug category
17050           static.
17051
17052 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
17053
17054         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
17055
17056         * configure.ac:
17057         * gst/h264parse/Makefile.am:
17058         * gst/h264parse/gsth264parse.c: (gst_h264_parse_base_init),
17059         (gst_h264_parse_finalize), (gst_h264_parse_class_init),
17060         (gst_h264_parse_init), (gst_h264_parse_chain),
17061         (gst_h264_parse_handle_event), (plugin_init):
17062         * gst/h264parse/gsth264parse.h:
17063           New plugin: h264parse (#340638)
17064
17065 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17066
17067         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain),
17068         (gst_gdp_depay_change_state):
17069         * gst/gdp/gstgdpdepay.h:
17070         * gst/gdp/gstgdppay.c: (gst_gdp_pay_reset_streamheader),
17071         (gst_gdp_pay_chain), (gst_gdp_pay_sink_event),
17072         (gst_gdp_pay_change_state):
17073         * gst/gdp/gstgdppay.h:
17074           Handle error cases when calling functions
17075           do downwards state change after parent's change_state
17076         * tests/check/elements/gdpdepay.c: (GST_START_TEST):
17077         * tests/check/elements/gdppay.c: (GST_START_TEST):
17078           clean up more
17079
17080 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17081
17082         * gst/gdp/Makefile.am:
17083         * gst/gdp/gstgdp.c: (plugin_init):
17084         * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_base_init),
17085         (gst_gdp_depay_class_init), (gst_gdp_depay_init),
17086         (gst_gdp_depay_finalize), (gst_gdp_depay_chain),
17087         (gst_gdp_depay_change_state), (gst_gdp_depay_plugin_init):
17088         * gst/gdp/gstgdpdepay.h:
17089         * gst/gdp/gstgdppay.c: (gst_gdp_pay_base_init),
17090         (gst_gdp_pay_class_init), (gst_gdp_pay_init),
17091         (gst_gdp_pay_dispose), (gst_gdp_stamp_buffer),
17092         (gst_gdp_buffer_from_caps), (gst_gdp_pay_buffer_from_buffer),
17093         (gst_gdp_buffer_from_event), (gst_gdp_pay_reset_streamheader),
17094         (gst_gdp_queue_buffer), (gst_gdp_pay_chain),
17095         (gst_gdp_pay_sink_event), (gst_gdp_pay_change_state),
17096         (gst_gdp_pay_plugin_init):
17097         * gst/gdp/gstgdppay.h:
17098         * tests/check/Makefile.am:
17099         * tests/check/elements/gdpdepay.c: (setup_gdpdepay),
17100         (cleanup_gdpdepay), (gdpdepay_push_per_byte), (GST_START_TEST),
17101         (setup_gdpdepay_streamheader), (gdpdepay_suite), (main):
17102         * tests/check/elements/gdppay.c: (setup_gdppay), (cleanup_gdppay),
17103         (GST_START_TEST), (setup_gdppay_streamheader), (gdppay_suite),
17104         (main):
17105           adding GDP payloader and depayloader.  Build integration will
17106           follow later when the GDP issues for core are sorted out.
17107
17108 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17109
17110         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
17111         (gst_spectrum_init), (gst_spectrum_set_sink_caps),
17112         (gst_spectrum_get_sink_caps), (gst_spectrum_chain):
17113           Use boilerplate macro, fix strings to match plugin-moval-requirements
17114
17115 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17116
17117         * gst/spectrum/Makefile.am:
17118           Link to base libraries
17119
17120         * gst/spectrum/demo-osssrc.c: (main):
17121           use new threshhold property
17122
17123         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init),
17124         (gst_spectrum_init), (gst_spectrum_dispose),
17125         (gst_spectrum_set_property), (gst_spectrum_set_sink_caps),
17126         (gst_spectrum_get_sink_caps), (gst_spectrum_chain),
17127         (gst_spectrum_change_state):
17128         * gst/spectrum/gstspectrum.h:
17129         Use gst_adapter, support multiple-channels, add threshold property for
17130         result, add docs, fix resulting spectrum range (was including mirrored
17131         results)
17132
17133 2006-05-21  Stefan Kost  <ensonic@users.sf.net>
17134
17135         * configure.ac:
17136         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main):
17137         * gst/spectrum/fix_fft.c: (gst_spectrum_fix_dot):
17138         * gst/spectrum/gstspectrum.c: (gst_spectrum_get_type),
17139         (gst_spectrum_base_init), (gst_spectrum_class_init),
17140         (gst_spectrum_init), (gst_spectrum_dispose),
17141         (gst_spectrum_set_property), (gst_spectrum_chain):
17142         * gst/spectrum/gstspectrum.h:
17143         Initial port of the spectrum element
17144
17145 2006-05-19  Edgard Lima <edgard.lima@indt.org.br>
17146
17147         * sys/v4l2/gstv4l2.c:
17148         * sys/v4l2/gstv4l2object.c:
17149         * sys/v4l2/gstv4l2object.h:
17150         * sys/v4l2/gstv4l2src.c:
17151         * sys/v4l2/gstv4l2xoverlay.c:
17152         Some clean-ups requested by wingo in bug #338818.       
17153
17154 2006-05-19  Michael Smith  <msmith@fluendo.com>
17155
17156         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_base_init),
17157         (alsaspdifsink_class_init), (alsaspdifsink_init),
17158         (alsaspdifsink_dispose), (alsaspdifsink_set_property),
17159         (alsaspdifsink_get_property), (alsaspdifsink_set_caps),
17160         (alsaspdifsink_get_time), (alsaspdifsink_open),
17161         (alsaspdifsink_close), (alsaspdifsink_find_pcm_device),
17162         (alsaspdifsink_write_frame), (alsaspdifsink_event),
17163         (alsaspdifsink_get_times), (alsaspdifsink_current_delay),
17164         (generate_iec958_zero_frame), (alsaspdifsink_render),
17165         (ignore_alsa_err), (alsaspdifsink_change_state), (plugin_init):
17166         * ext/alsaspdif/alsaspdifsink.h:
17167           Use sampling rate from set_caps. Comment out some more unused code.
17168
17169 2006-05-18  Stefan Kost  <ensonic@users.sf.net>
17170
17171         * configure.ac:
17172           Check for X11
17173         * sys/v4l2/gstv4l2object.c: (gst_v4l2_class_probe_devices):
17174         * sys/v4l2/gstv4l2object.h:
17175         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_iface_supported):
17176         * sys/v4l2/gstv4l2src.h:
17177         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open):
17178         * sys/v4l2/gstv4l2xoverlay.h:
17179           Code cleanups, fix debug macros
17180
17181 2006-05-18  Michael Smith  <msmith@fluendo.com>
17182
17183         * ext/Makefile.am:
17184           Fix distcheck?
17185
17186 2006-05-18  Michael Smith  <msmith@fluendo.com>
17187
17188         * configure.ac:
17189         * ext/Makefile.am:
17190         * ext/alsaspdif/Makefile.am:
17191         * ext/alsaspdif/alsaspdifsink.c: (alsaspdifsink_base_init),
17192         (alsaspdifsink_class_init), (alsaspdifsink_init),
17193         (alsaspdifsink_dispose), (alsaspdifsink_set_property),
17194         (alsaspdifsink_get_property), (alsaspdifsink_provide_clock),
17195         (alsaspdifsink_get_time), (alsaspdifsink_open),
17196         (alsaspdifsink_close), (alsaspdifsink_find_pcm_device),
17197         (alsaspdifsink_write_frame), (alsaspdifsink_event),
17198         (alsaspdifsink_get_times), (alsaspdifsink_current_delay),
17199         (generate_iec958_zero_frame), (alsaspdifsink_render),
17200         (ignore_alsa_err), (alsaspdifsink_change_state), (plugin_init):
17201         * ext/alsaspdif/alsaspdifsink.h:
17202           Add an alsa plugin to output IEC958 frames over S/PDIF
17203
17204 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
17205
17206         * ext/faad/gstfaad.c: (gst_faad_update_caps), (gst_faad_chain):
17207           Remove unused caps cruft from chain function altogether.
17208
17209 2006-05-17  Edward Hervey  <edward@fluendo.com>
17210
17211         * ext/faad/gstfaad.c: (gst_faad_chain): 
17212         There's no guarantee that caps was set to something, and if it did, the
17213         function called to fill that variable actually sets the caps on the
17214         sourcpad, so we call gst_pad_alloc_buffer_and_set_caps() using
17215         GST_PAD_CAPS(faad->srcpad).
17216
17217 2006-05-13  Tim-Philipp Müller  <tim at centricular dot net>
17218
17219         Patch by: Young-Ho Cha  <ganadist chollian net>
17220
17221         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chain),
17222         (gst_faad_change_state):
17223         * ext/faad/gstfaad.h:
17224           If we encounter a decoding error, don't error out immediately,
17225           but try to resync (or see if we have better luck with the next
17226           buffer in case of framed input). Only error out after five
17227           consecutive errors. Fixes #341563.
17228
17229 2006-05-12  Wim Taymans  <wim@fluendo.com>
17230
17231         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init),
17232         (gst_xvidenc_init), (gst_xvidenc_finalize),
17233         (gst_xvidenc_handle_sink_event), (gst_xvidenc_setup),
17234         (gst_xvidenc_setcaps), (gst_xvidenc_encode), (gst_xvidenc_chain),
17235         (gst_xvidenc_flush_buffers), (gst_xvidenc_set_property),
17236         (gst_xvidenc_get_property):
17237         Compile fixes.
17238
17239 2006-05-12  Wim Taymans  <wim@fluendo.com>
17240
17241         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
17242
17243         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_structure_to_csp),
17244         (gst_xvid_csp_to_caps), (gst_xvid_image_get_size),
17245         (gst_xvid_image_fill):
17246         * ext/xvid/gstxvid.h:
17247         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
17248         (gst_xviddec_init), (gst_xviddec_reset), (gst_xviddec_unset),
17249         (gst_xviddec_handle_sink_event), (gst_xviddec_setup),
17250         (gst_xviddec_add_par), (gst_xviddec_negotiate),
17251         (gst_xviddec_decode), (gst_xviddec_chain),
17252         (gst_xviddec_flush_buffers), (gst_xviddec_src_getcaps),
17253         (gst_xviddec_src_link), (gst_xviddec_setcaps),
17254         (gst_xviddec_change_state):
17255         * ext/xvid/gstxviddec.h:
17256         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
17257         (gst_xvidenc_quant_type_get_type), (gst_xvidenc_pass_get_type),
17258         (gst_xvidenc_get_type), (gst_xvidenc_base_init),
17259         (gst_xvidenc_class_init), (gst_xvidenc_init),
17260         (gst_xvidenc_finalize), (gst_xvidenc_handle_sink_event),
17261         (gst_xvidenc_setup), (gst_xvidenc_setcaps), (gst_xvidenc_encode),
17262         (gst_xvidenc_chain), (gst_xvidenc_flush_buffers),
17263         (gst_xvidenc_set_property), (gst_xvidenc_get_property),
17264         (gst_xvidenc_change_state):
17265         * ext/xvid/gstxvidenc.h:
17266         xvid plugin to support more capabilities of XviD codec.
17267         Fixes #339462.
17268         Some more cleanups here and there.
17269
17270 2006-05-11  Edgard Lima <edgard.lima@indt.org.br>
17271
17272         * sys/v4l2/Makefile.am:
17273         * sys/v4l2/gstv4l2.c:
17274         * sys/v4l2/gstv4l2colorbalance.c:
17275         * sys/v4l2/gstv4l2colorbalance.h:
17276         * sys/v4l2/gstv4l2element.c:
17277         * sys/v4l2/gstv4l2element.h:
17278         * sys/v4l2/gstv4l2object.c:
17279         * sys/v4l2/gstv4l2object.h:
17280         * sys/v4l2/gstv4l2src.c:
17281         * sys/v4l2/gstv4l2src.h:
17282         * sys/v4l2/gstv4l2tuner.c:
17283         * sys/v4l2/gstv4l2tuner.h:
17284         * sys/v4l2/gstv4l2xoverlay.c:
17285         * sys/v4l2/gstv4l2xoverlay.h:
17286         * sys/v4l2/v4l2_calls.c:
17287         * sys/v4l2/v4l2_calls.h:
17288         * sys/v4l2/v4l2src_calls.c:
17289         * sys/v4l2/v4l2src_calls.h:
17290         Changes proposed by Wingo in bug #338818.
17291
17292 2006-05-11  Wim Taymans  <wim@fluendo.com>
17293
17294         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_parse_trak),
17295         (gst_qtdemux_handle_esds):
17296         Figure out the real audio type in mp4a boxes by parsing the
17297         optional descriptors in the optional esds box. Promote the
17298         default AAC to mp3 when indicated. Fixes #330632.
17299
17300 2006-05-10  Wim Taymans  <wim@fluendo.com>
17301
17302         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_dump_unknown),
17303         (qtdemux_parse_trak), (gst_qtdemux_handle_esds):
17304         Parse version 2 sample descriptions. Fixes #341231
17305         Don't #define gst_util_dump_mem(), use something more
17306         specific instead to avoid confusion.
17307
17308 2006-05-08  Edgard Lima <edgard.lima@indt.org.br>
17309
17310         * sys/v4l2/gstv4l2src.c:
17311         * sys/v4l2/v4l2src_calls.c:
17312         Fix fourcc name printed out. Patch from Martin Rubli.
17313
17314 2006-05-08  Wim Taymans  <wim@fluendo.com>
17315
17316         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_query),
17317         (qtdemux_dump_mvhd):
17318         Don't cause side effects in a debugging function.
17319         Also report duration in push mode since we can.
17320
17321 2006-05-08  Edward Hervey  <edward@fluendo.com>
17322
17323         * autogen.sh: (CONFIGURE_DEF_OPT): 
17324         libtoolize on Darwin/MacOSX is called glibtoolize
17325
17326 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
17327
17328         * ext/amrwb/gstamrwbdec.c:
17329         * ext/amrwb/gstamrwbenc.c:
17330         * ext/sdl/sdlaudiosink.c:
17331         * ext/sdl/sdlvideosink.c:
17332         * ext/wavpack/gstwavpackdec.c:
17333         * ext/xine/xine.c:
17334         * ext/xine/xineaudiodec.c:
17335         * ext/xine/xineaudiosink.c:
17336         * ext/xine/xineinput.c:
17337         * gst/cdxaparse/gstcdxaparse.c:
17338         * gst/freeze/gstfreeze.c:
17339         * sys/v4l2/gstv4l2element.c:
17340         Add semicolons after GST_BOILERPLATE[_FULL] so that
17341         indent doesn't mess up following lines.
17342
17343 2006-05-05  Edgard Lima <edgard.lima@indt.org.br>
17344
17345         * sys/v4l2/gstv4l2element.c:
17346         * sys/v4l2/gstv4l2element.h:
17347         * sys/v4l2/gstv4l2src.c:
17348         * sys/v4l2/gstv4l2src.h:
17349         * sys/v4l2/gstv4l2tuner.c:
17350         * sys/v4l2/gstv4l2tuner.h:
17351         * sys/v4l2/v4l2_calls.c:
17352         * sys/v4l2/v4l2_calls.h:
17353         * sys/v4l2/v4l2src_calls.c:
17354         * sys/v4l2/v4l2src_calls.h:
17355         * tests/icles/v4l2src-test.c:
17356         Some changes proposed by wingo in bug #338818 (but not everything
17357         yet). Patch from Martin Rubli to fix framerate detection.
17358
17359 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
17360
17361         * ext/sdl/sdlaudiosink.c: (gst_sdlaudio_sink_prepare):
17362           Use (NULL) instead of just NULL in GST_ELEMENT_ERROR macro.
17363
17364 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
17365
17366         * configure.ac:
17367           Back to CVS
17368
17369 === release 0.10.3 ===
17370
17371 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
17372
17373         * configure.ac:
17374           releasing 0.10.3, "Petition to request permission"
17375
17376 2006-05-04  Julien MOUTTE  <julien@moutte.net>
17377
17378         * tests/icles/Makefile.am: Fix build.
17379
17380 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17381
17382         * ext/musicbrainz/Makefile.am:
17383           Add GST_PLUGINS_BASE_CFLAGS to CFLAGS for gst/tag/tag.h
17384
17385 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
17386
17387         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17388         Clean up one piece of logic slightly and remove a 
17389         dead code block.
17390
17391 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17392
17393         * docs/plugins/Makefile.am:
17394         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17395         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17396         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
17397         * docs/plugins/inspect/plugin-musicbrainz.xml:
17398         * ext/musicbrainz/gsttrm.c:
17399         * ext/musicbrainz/gsttrm.h:
17400           Everybody loves docs - add docs for musicbrainz plugin.
17401
17402 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17403
17404         * ext/Makefile.am:
17405           Add musicbrainz dir to DIST_SUBDIRS as well (fixes distcheck).
17406           
17407 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17408
17409         * ext/Makefile.am:
17410           Forgot to commit this one.
17411
17412 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
17413
17414         Patch by: James "Doc" Livingston  <doclivingston gmail com>
17415
17416         * configure.ac:
17417         * ext/musicbrainz/Makefile.am:
17418         * ext/musicbrainz/gsttrm.c: (gst_trm_base_init),
17419         (gst_trm_class_init), (gst_trm_init), (gst_trm_setcaps),
17420         (gst_trm_chain), (gst_trm_emit_signature), (gst_trm_set_property),
17421         (gst_trm_get_property), (gst_trm_change_state), (plugin_init):
17422         * ext/musicbrainz/gsttrm.h:
17423           Port MusicBrainz TRM plugin (#336898).
17424
17425 2006-05-03  Michael Smith  <msmith@fluendo.com>
17426
17427         * ext/faad/gstfaad.c: (gst_faad_setcaps),
17428         (looks_like_valid_header), (gst_faad_chain):
17429           Fix #334748: use fake_codec_data if the first bytes of the first
17430           buffer we process doesn't look like plausible AAC data (e.g.
17431           reserved values for rate, or channels). Fixes playback of Apple's
17432           movie trailers.
17433
17434 2006-05-02  Edgard Lima <edgard.lima@indt.org.br>
17435
17436         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_caps):
17437         Fix get_caps func to work when no framerate is available and the caps
17438         isn't simple.
17439
17440 2006-05-01  Edgard Lima <edgard.lima@indt.org.br>
17441
17442         * sys/v4l2/Makefile.am:
17443         * sys/v4l2/gstv4l2colorbalance.c:
17444         * sys/v4l2/gstv4l2xoverlay.c:
17445         * sys/v4l2/v4l2_calls.c:
17446         * tests/icles/Makefile.am:
17447         * tests/icles/v4l2src-test.c:
17448         Few improvements to move to good.
17449
17450 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
17451
17452         * configure.ac:
17453         * docs/plugins/Makefile.am:
17454         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17455         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17456         * docs/plugins/inspect/plugin-taglib.xml:
17457         * ext/Makefile.am:
17458         * ext/taglib/Makefile.am:
17459         * ext/taglib/gstid3v2mux.cc:
17460         * ext/taglib/gstid3v2mux.h:
17461         * ext/taglib/gsttaglib.cc:
17462         * ext/taglib/gsttaglib.h:
17463         * tests/check/Makefile.am:
17464         * tests/check/elements/tagid3v2mux.c:
17465           moved to good.  Closes #336110
17466
17467 2006-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17468
17469         * docs/plugins/Makefile.am:
17470         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
17471         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
17472         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17473         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
17474         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
17475           Fix up docs for taglib plugin
17476           Also scan .cc files
17477
17478 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
17479
17480         * ext/taglib/gsttaglib.cc:
17481           Post an error message on the bus in the (extremely unlikely)
17482           case of an error.
17483
17484 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
17485
17486         * ext/taglib/Makefile.am:
17487         * ext/taglib/gstid3v2mux.cc:
17488         * ext/taglib/gstid3v2mux.h:
17489         * ext/taglib/gsttaglib.cc:
17490         * ext/taglib/gsttaglib.h:
17491           Split the actual ID3v2 tag rendering code into
17492           its own subclass.
17493
17494 2006-04-29  Sebastien Moutte  <sebastien@moutte.net>
17495
17496         * ext/neon/gstneonhttpsrc.c:
17497         * ext/neon/gstneonhttpsrc.h:
17498           added iradio-mode support as in gnomevfssrc to enable 
17499           connections with icydemux that will send title tag messages on 
17500           shoutcast/icecast streams. I've also added iradio properties
17501           iradio-name, iradio-genre, iradio-url.
17502           added user-agent property because some shoutcast streams don't return 
17503           data if the GET requests don't have a User-Agent.
17504         * win32/common/libgstneon.dsp:
17505           use debug version of libneon in debug mode
17506 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
17507
17508         * configure.ac:
17509         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
17510         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
17511         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
17512         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
17513         * sys/Makefile.am:
17514         * sys/ximagesrc/Makefile.am:
17515         * sys/ximagesrc/ximagesrc.c:
17516         * sys/ximagesrc/ximagesrc.h:
17517         * sys/ximagesrc/ximageutil.c:
17518         * sys/ximagesrc/ximageutil.h:
17519         * tests/Makefile.am:
17520         * tests/icles/.cvsignore:
17521         * tests/icles/Makefile.am:
17522         * tests/icles/ximagesrc-test.c:
17523           moved ximagesrc to good (See #336756)
17524
17525 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
17526
17527         * ext/faad/gstfaad.c: (gst_faad_init), (aac_rate_idx),
17528         (gst_faad_setcaps), (gst_faad_chain), (gst_faad_open_decoder),
17529         (gst_faad_close_decoder), (gst_faad_change_state):
17530         * ext/faad/gstfaad.h:
17531           If we run into a decoding error, try re-opening the decoder
17532           with faacDecInit2() using fake codec data created from the
17533           data the demuxer gave us. Should fix a whole bunch of
17534           GStreamer-faad problems incl. 'channel coupling not
17535           implemented', 'maximum number of scalefactor bands exceeded'
17536           etc. (#173007, #332892).
17537
17538 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
17539
17540         * ext/amrwb/gstamrwbdec.c:
17541         * ext/amrwb/gstamrwbenc.c:
17542         * ext/amrwb/gstamrwbparse.c:
17543         * ext/arts/gst_arts.c:
17544         * ext/artsd/gstartsdsink.c:
17545         * ext/audiofile/gstafparse.c:
17546         * ext/audiofile/gstafsink.c:
17547         * ext/audiofile/gstafsrc.c:
17548         * ext/audioresample/gstaudioresample.c:
17549         * ext/bz2/gstbz2dec.c:
17550         * ext/bz2/gstbz2enc.c:
17551         * ext/cdaudio/gstcdaudio.c:
17552         * ext/directfb/dfbvideosink.c:
17553         * ext/divx/gstdivxdec.c:
17554         * ext/divx/gstdivxenc.c:
17555         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17556         * ext/faac/gstfaac.c: (gst_faac_base_init):
17557         * ext/faad/gstfaad.c:
17558         * ext/gsm/gstgsmdec.c:
17559         * ext/gsm/gstgsmenc.c:
17560         * ext/hermes/gsthermescolorspace.c:
17561         * ext/ivorbis/vorbisfile.c:
17562         * ext/lcs/gstcolorspace.c:
17563         * ext/libfame/gstlibfame.c:
17564         * ext/libmms/gstmms.c: (gst_mms_base_init):
17565         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init):
17566         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17567         * ext/nas/nassink.c: (gst_nassink_base_init):
17568         * ext/neon/gstneonhttpsrc.c:
17569         * ext/sdl/sdlaudiosink.c:
17570         * ext/sdl/sdlvideosink.c:
17571         * ext/shout/gstshout.c:
17572         * ext/snapshot/gstsnapshot.c:
17573         * ext/sndfile/gstsf.c:
17574         * ext/swfdec/gstswfdec.c:
17575         * ext/tarkin/gsttarkindec.c:
17576         * ext/tarkin/gsttarkinenc.c:
17577         * ext/theora/theoradec.c:
17578         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
17579         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
17580         * ext/xvid/gstxviddec.c:
17581         * ext/xvid/gstxvidenc.c:
17582         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_base_init):
17583         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_base_init):
17584         * gst/chart/gstchart.c:
17585         * gst/colorspace/gstcolorspace.c:
17586         * gst/deinterlace/gstdeinterlace.c:
17587         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init):
17588         * gst/festival/gstfestival.c:
17589         * gst/filter/gstbpwsinc.c:
17590         * gst/filter/gstiir.c:
17591         * gst/filter/gstlpwsinc.c:
17592         * gst/freeze/gstfreeze.c:
17593         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17594         * gst/librfb/gstrfbsrc.c:
17595         * gst/mixmatrix/mixmatrix.c:
17596         * gst/mpeg1sys/gstmpeg1systemencode.c:
17597         * gst/mpeg1videoparse/gstmp1videoparse.c:
17598         * gst/mpeg2sub/gstmpeg2subt.c:
17599         * gst/mpegaudioparse/gstmpegaudioparse.c:
17600         * gst/multifilesink/gstmultifilesink.c:
17601         * gst/overlay/gstoverlay.c:
17602         * gst/passthrough/gstpassthrough.c:
17603         * gst/playondemand/gstplayondemand.c:
17604         * gst/qtdemux/qtdemux.c:
17605         * gst/rtjpeg/gstrtjpegdec.c:
17606         * gst/rtjpeg/gstrtjpegenc.c:
17607         * gst/smooth/gstsmooth.c:
17608         * gst/smoothwave/gstsmoothwave.c:
17609         * gst/spectrum/gstspectrum.c:
17610         * gst/speed/gstspeed.c:
17611         * gst/stereo/gststereo.c:
17612         * gst/switch/gstswitch.c:
17613         * gst/tta/gstttadec.c: (gst_tta_dec_base_init):
17614         * gst/tta/gstttaparse.c: (gst_tta_parse_base_init):
17615         * gst/vbidec/gstvbidec.c:
17616         * gst/videocrop/gstvideocrop.c:
17617         * gst/videodrop/gstvideodrop.c:
17618         * gst/virtualdub/gstxsharpen.c:
17619         * gst/xingheader/gstxingmux.c: (gst_xing_mux_base_init):
17620         * gst/y4m/gsty4mencode.c:
17621         * sys/cdrom/gstcdplayer.c:
17622         * sys/directdraw/gstdirectdrawsink.c:
17623         * sys/directsound/gstdirectsoundsink.c:
17624         * sys/glsink/glimagesink.c:
17625         * sys/qcam/gstqcamsrc.c:
17626         * sys/v4l2/gstv4l2src.c:
17627         * sys/vcd/vcdsrc.c: (gst_vcdsrc_base_init):
17628         * sys/ximagesrc/ximagesrc.c:
17629           Define GstElementDetails as const and also static (when defined as
17630           global)
17631
17632 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
17633
17634         * ext/musepack/gstmusepackdec.c:
17635         (gst_musepackdec_handle_seek_event), (gst_musepackdec_loop):
17636           Add support for segment seeks.
17637
17638 2006-04-20  Edgard Lima  <edgard.lima@indt.org.br>
17639
17640         * sys/v4l2/gstv4l2src.c:
17641         Added a couple of ifdefs to make it compile with other kernels.
17642         
17643 2006-04-20  Wim Taymans  <wim@fluendo.com>
17644
17645         Patch by: j^ <j at bootlab dot org>
17646
17647         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
17648         (qtdemux_video_caps):
17649         Never treat video streams as an audio stream.
17650         Add qtdrw mime type.
17651         Fixes #339041
17652
17653 2006-04-19  Wim Taymans  <wim@fluendo.com>
17654
17655         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17656         For VBR audio, don't try to calculate the samples_per_frame.
17657         Fixes #338935.
17658
17659 2006-04-13  Edgard Lima  <edgard.lima@indt.org.br>
17660
17661         * sys/v4l2/gstv4l2src.c:
17662         Just added a gtk-doc comment.
17663
17664 2006-04-17  Michael Smith  <msmith@fluendo.com>
17665
17666         * ext/theora/theoradec.c: (theora_dec_src_convert),
17667         (theora_handle_type_packet), (theora_handle_422_image),
17668         (theora_handle_420_image), (theora_handle_data_packet):
17669         * ext/theora/theoradec.h:
17670           Apply fix from j^ for API change in libtheoradec.
17671
17672           Implement 4:2:2 pixel format. Untested at the moment.
17673
17674 2006-04-14  Tim-Philipp Müller  <tim at centricular dot net>
17675
17676         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_init),
17677         (gst_musepack_stream_init):
17678           Fix track/album peak tag values; use GST_DEBUG_FUNCPTR and
17679           gst_pad_new_from_static_template().
17680
17681 2006-04-13  Edgard Lima  <edgard.lima@indt.org.br>
17682
17683         * sys/v4l2/gstv4l2src.c: (gst_v4l2element_class_init),
17684         (gst_v4l2src_dispose):
17685         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_buffer_new):
17686         Fixed some memory leaks.
17687
17688 2006-04-12  Edgard Lima  <edgard.lima@indt.org.br>
17689
17690         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_read):
17691         Fix to work in read mode.
17692
17693 2006-04-10  Wim Taymans  <wim@fluendo.com>
17694
17695         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17696         Fix parsing of newer stsd chunks again.
17697
17698 2006-04-10  Wim Taymans  <wim@fluendo.com>
17699
17700         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
17701         (qtdemux_parse_trak):
17702         Fix framerate calculation.
17703
17704 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
17705
17706         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_class_init):
17707           Fix build (class_init declaration/definition mismatch).
17708
17709 2006-04-10  Wim Taymans  <wim@fluendo.com>
17710
17711         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17712         force mono 8000 Hz on AMR samples.
17713
17714 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
17715
17716         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_start):
17717           remove atoll by using g_ascii_strtoull (atoll is not supported on WIN32)
17718         * sys/directdraw/gstdirectdrawsink.c:
17719         * sys/directsound/gstdirectsoundsink.c:
17720           done some cleans in sources
17721         * win32/vs6:
17722           add project files for neon, qtdemux
17723           
17724 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17725
17726         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_class_init):
17727         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_class_init):
17728         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_class_init):
17729         * ext/arts/gst_arts.c: (gst_arts_class_init):
17730         * ext/artsd/gstartsdsink.c: (gst_artsdsink_class_init):
17731         * ext/audiofile/gstafsink.c: (gst_afsink_class_init):
17732         * ext/audiofile/gstafsrc.c: (gst_afsrc_class_init):
17733         * ext/audioresample/gstaudioresample.c:
17734         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
17735         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_class_init):
17736         * ext/divx/gstdivxdec.c: (gst_divxdec_class_init):
17737         * ext/hermes/gsthermescolorspace.c:
17738         (gst_hermes_colorspace_class_init):
17739         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_class_init):
17740         * ext/jack/gstjack.c: (gst_jack_class_init):
17741         * ext/jack/gstjackbin.c: (gst_jack_bin_class_init):
17742         * ext/lcs/gstcolorspace.c: (gst_colorspace_class_init):
17743         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init):
17744         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
17745         * ext/nas/nassink.c: (gst_nassink_class_init):
17746         * ext/shout/gstshout.c: (gst_icecastsend_class_init):
17747         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
17748         * ext/sndfile/gstsf.c: (gst_sf_class_init):
17749         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_class_init),
17750         (gst_swfdec_class_init):
17751         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_class_init):
17752         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_class_init):
17753         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_class_init):
17754         * gst/chart/gstchart.c: (gst_chart_class_init):
17755         * gst/colorspace/gstcolorspace.c: (gst_colorspace_class_init):
17756         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_class_init):
17757         * gst/festival/gstfestival.c: (gst_festival_class_init):
17758         * gst/filter/gstbpwsinc.c: (gst_bpwsinc_class_init):
17759         * gst/filter/gstiir.c: (gst_iir_class_init):
17760         * gst/filter/gstlpwsinc.c: (gst_lpwsinc_class_init):
17761         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init):
17762         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_class_init):
17763         * gst/mpeg1sys/gstmpeg1systemencode.c:
17764         (gst_system_encode_class_init):
17765         * gst/mpeg1videoparse/gstmp1videoparse.c:
17766         (gst_mp1videoparse_class_init):
17767         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_class_init):
17768         * gst/mpegaudioparse/gstmpegaudioparse.c:
17769         (gst_mp3parse_class_init):
17770         * gst/overlay/gstoverlay.c: (gst_overlay_class_init):
17771         * gst/passthrough/gstpassthrough.c: (passthrough_class_init):
17772         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init):
17773         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_class_init):
17774         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_class_init):
17775         * gst/smooth/gstsmooth.c: (gst_smooth_class_init):
17776         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init):
17777         * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init):
17778         * gst/stereo/gststereo.c: (gst_stereo_class_init):
17779         * gst/switch/gstswitch.c: (gst_switch_class_init):
17780         * gst/tta/gstttadec.c: (gst_tta_dec_class_init):
17781         * gst/tta/gstttaparse.c: (gst_tta_parse_class_init):
17782         * gst/vbidec/gstvbidec.c: (gst_vbidec_class_init):
17783         * gst/videocrop/gstvideocrop.c: (gst_video_crop_class_init):
17784         * gst/virtualdub/gstxsharpen.c: (gst_xsharpen_class_init):
17785         * gst/y4m/gsty4mencode.c: (gst_y4mencode_class_init):
17786         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
17787         * sys/directsound/gstdirectsoundsink.c:
17788         (gst_directsoundsink_class_init):
17789         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_class_init):
17790         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
17791         * sys/dxr3/dxr3videosink.c: (dxr3videosink_class_init):
17792         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_class_init):
17793         * sys/v4l2/gstv4l2colorbalance.c:
17794         (gst_v4l2_color_balance_channel_class_init):
17795         * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_channel_class_init),
17796         (gst_v4l2_tuner_norm_class_init):
17797         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_class_init):
17798         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
17799
17800 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17801
17802         * gst/colorspace/gstcolorspace.h:
17803         * gst/deinterlace/gstdeinterlace.h:
17804         * gst/passthrough/gstpassthrough.h:
17805         * gst/y4m/gsty4mencode.h:
17806         Fix more broken GObject macros
17807
17808 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
17809
17810         * ext/xine/gstxine.h:
17811         * gst-libs/gst/play/play.h:
17812         * sys/v4l2/gstv4l2element.h:
17813         * sys/ximagesrc/ximageutil.h:
17814         Fix broken GObject macros
17815
17816 2006-04-08  Wim Taymans  <wim@fluendo.com>
17817
17818         * gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
17819         (gst_qtdemux_chain), (gst_qtdemux_add_stream), (qtdemux_dump_stsz),
17820         (qtdemux_dump_stco), (qtdemux_parse_trak):
17821         Don't make rounding errors in timestamp/duration calculations.
17822         Fix timestamps for AMR and IMA4.  Fixes (#337436).
17823         Create a dummy segment even when there is no edit list.
17824
17825 2006-04-07  Julien MOUTTE  <julien@moutte.net>
17826
17827         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt: Updates.
17828         * examples/directfb/Makefile.am: Add example resource files to
17829         dist.
17830
17831 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17832
17833         * ext/amrwb/amrwb-code/Makefile.am:
17834         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
17835         (gst_ximagesrc_create), (gst_ximagesrc_set_property):
17836         Typo fix, s/XFree86/X11 and added doc blurb saying that it fixates to
17837         25fps
17838
17839 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17840
17841         * tests/icles/ximagesrc-test.c: (main):
17842         Actually assert that pipeline goes to playing
17843
17844 2006-04-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17845
17846         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
17847         (composite_pixel), (gst_ximagesrc_ximage_get),
17848         (gst_ximagesrc_create), (gst_ximagesrc_set_property):
17849         Fix typo, C++ style comments and other small cleanups
17850         
17851 2006-04-06  Wim Taymans  <wim@fluendo.com>
17852
17853         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
17854         (gst_qtdemux_handle_src_query), (gst_qtdemux_find_index),
17855         (gst_qtdemux_find_keyframe), (gst_qtdemux_find_segment),
17856         (gst_qtdemux_move_stream), (gst_qtdemux_perform_seek),
17857         (gst_qtdemux_do_seek), (gst_qtdemux_change_state),
17858         (gst_qtdemux_activate_segment),
17859         (gst_qtdemux_prepare_current_sample), (gst_qtdemux_advance_sample),
17860         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
17861         (qtdemux_parse_trak):
17862         Added full edit list support.
17863         Avoid overflows in prologue image detection code.
17864         Avoid roundoff errors in timestamp calculations.
17865
17866 2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17867
17868         * configure.ac:
17869           clean up so report properly on missing stuff
17870           fix modplug detection
17871
17872 2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17873
17874         * ext/Makefile.am:
17875         * ext/amrwb/amrwb-code/Makefile.am:
17876           don't dist amr wb source code
17877
17878 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17879
17880         Patch by: j^  <j at bootlab dot org>
17881
17882         * ext/amrwb/gstamrwbdec.c:
17883         * ext/amrwb/gstamrwbenc.c:
17884         * ext/amrwb/gstamrwbparse.c:
17885         * ext/arts/gst_arts.c:
17886         * ext/artsd/gstartsdsink.c:
17887         * ext/audiofile/gstafparse.c:
17888         * ext/audiofile/gstafsink.c:
17889         * ext/audiofile/gstafsrc.c:
17890         * ext/cdaudio/gstcdaudio.c:
17891         * ext/directfb/dfbvideosink.c:
17892         * ext/divx/gstdivxdec.c:
17893         * ext/divx/gstdivxenc.c:
17894         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17895         * ext/faac/gstfaac.c: (gst_faac_base_init):
17896         * ext/faad/gstfaad.c:
17897         * ext/gsm/gstgsmdec.c:
17898         * ext/gsm/gstgsmenc.c:
17899         * ext/hermes/gsthermescolorspace.c:
17900         * ext/ivorbis/vorbisfile.c:
17901         * ext/lcs/gstcolorspace.c:
17902         * ext/libfame/gstlibfame.c:
17903         * ext/libmms/gstmms.c: (gst_mms_base_init):
17904         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17905         * ext/nas/nassink.c: (gst_nassink_base_init):
17906         * ext/neon/gstneonhttpsrc.c:
17907         * ext/polyp/polypsink.c: (gst_polypsink_base_init):
17908         * ext/sdl/sdlaudiosink.c:
17909         * ext/sdl/sdlvideosink.c:
17910         * ext/shout/gstshout.c:
17911         * ext/snapshot/gstsnapshot.c:
17912         * ext/sndfile/gstsf.c:
17913         * ext/tarkin/gsttarkindec.c:
17914         * ext/tarkin/gsttarkinenc.c:
17915         * ext/theora/theoradec.c:
17916         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_base_init):
17917         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init):
17918         * ext/xvid/gstxviddec.c:
17919         * ext/xvid/gstxvidenc.c:
17920         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxa_parse_base_init):
17921         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_base_init):
17922         * gst/chart/gstchart.c:
17923         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_base_init):
17924         * gst/festival/gstfestival.c:
17925         * gst/filter/gstiir.c:
17926         * gst/filter/gstlpwsinc.c:
17927         * gst/freeze/gstfreeze.c:
17928         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
17929         * gst/mixmatrix/mixmatrix.c:
17930         * gst/mpeg1sys/gstmpeg1systemencode.c:
17931         * gst/mpeg1videoparse/gstmp1videoparse.c:
17932         * gst/mpeg2sub/gstmpeg2subt.c:
17933         * gst/mpegaudioparse/gstmpegaudioparse.c:
17934         * gst/multifilesink/gstmultifilesink.c:
17935         * gst/overlay/gstoverlay.c:
17936         * gst/passthrough/gstpassthrough.c:
17937         * gst/playondemand/gstplayondemand.c:
17938         * gst/qtdemux/qtdemux.c:
17939         * gst/rtjpeg/gstrtjpegdec.c:
17940         * gst/rtjpeg/gstrtjpegenc.c:
17941         * gst/smooth/gstsmooth.c:
17942         * gst/tta/gstttadec.c: (gst_tta_dec_base_init):
17943         * gst/tta/gstttaparse.c: (gst_tta_parse_base_init):
17944         * gst/videocrop/gstvideocrop.c:
17945         * gst/videodrop/gstvideodrop.c:
17946         * gst/virtualdub/gstxsharpen.c:
17947         * gst/xingheader/gstxingmux.c: (gst_xing_mux_base_init):
17948         * gst/y4m/gsty4mencode.c:
17949           Unify the long descriptions in the plugin details (#337263).
17950
17951 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
17952
17953         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
17954         (gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property):
17955           Add back "uri" property and mark it as deprecated; undoes
17956           API/ABI breakage from 2006-02-24.
17957
17958 2006-04-05  Wim Taymans  <wim@fluendo.com>
17959
17960         * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek),
17961         (gst_qtdemux_do_seek), (gst_qtdemux_loop_state_movie),
17962         (gst_qtdemux_loop):
17963         Use duration as segment stop position if none is
17964         explicitly configured.
17965         Also perform EOS when we run past the segment stop.
17966
17967 2006-04-04  Wim Taymans  <wim@fluendo.com>
17968
17969         * gst/qtdemux/qtdemux.c: (gst_qtdemux_go_back),
17970         (gst_qtdemux_perform_seek), (gst_qtdemux_do_seek),
17971         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop),
17972         (gst_qtdemux_chain), (qtdemux_parse_tree), (qtdemux_parse_trak):
17973         More cleanups, added comments.
17974         Mark discontinuities on outgoing buffers.
17975         Post better errors when something goes wrong.
17976         Handle EOS and segment end properly.
17977
17978 2006-04-04  Wim Taymans  <wim@fluendo.com>
17979
17980         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
17981         (gst_qtdemux_push_event), (gst_qtdemux_go_back),
17982         (gst_qtdemux_perform_seek), (gst_qtdemux_do_seek),
17983         (gst_qtdemux_handle_src_event), (plugin_init),
17984         (gst_qtdemux_change_state), (gst_qtdemux_loop_state_movie),
17985         (gst_qtdemux_loop), (gst_qtdemux_chain),
17986         (qtdemux_sink_activate_pull), (gst_qtdemux_add_stream),
17987         (qtdemux_parse), (qtdemux_parse_tree), (qtdemux_parse_trak),
17988         (qtdemux_parse_udta), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
17989         (qtdemux_tag_add_gnre), (gst_qtdemux_handle_esds):
17990         * gst/qtdemux/qtdemux.h:
17991         Handle stss boxes so we can mark and find keyframes.
17992         Implement correct accurate and keyframe seeking.
17993         Use _DEBUG_OBJECT when possible.
17994         Fixes #332155
17995
17996 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
17997
17998         * tests/check/Makefile.am:
17999           Only run the id3v2mux check if taglib is available and
18000           the taglib plugin has been built.
18001
18002 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18003
18004         * ext/swfdec/Makefile.am:
18005           Don't set plugindir.
18006
18007         * ext/swfdec/gstswfdec.c:
18008           GST_PLUGIN_DEFINE_STATIC isn't a good idea for installed plugins.
18009
18010 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18011
18012         * configure.ac:
18013           Add AX_CREATE_STDINT_H to create _stdint.h, needed by
18014           the dts plugin.
18015
18016 2006-04-03  Tim-Philipp Müller  <tim at centricular dot net>
18017
18018         * ext/soundtouch/gstpitch.cc:
18019         * ext/theora/theoradec.c:
18020         * gst/modplug/gstmodplug.cc:
18021           GST_ORIGIN => GST_PACKAGE_ORIGIN
18022           GST_PACKAGE => GST_PACKAGE_NAME
18023
18024 2006-04-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18025
18026         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
18027         * docs/plugins/inspect/plugin-bz2.xml:
18028         * docs/plugins/inspect/plugin-cdxaparse.xml:
18029         * docs/plugins/inspect/plugin-freeze.xml:
18030         * docs/plugins/inspect/plugin-glimagesink.xml:
18031         * docs/plugins/inspect/plugin-modplug.xml:
18032         * docs/plugins/inspect/plugin-neon.xml:
18033         * docs/plugins/inspect/plugin-sdl.xml:
18034         * docs/plugins/inspect/plugin-video4linux2.xml:
18035         * docs/plugins/inspect/plugin-ximagesrc.xml:
18036         * docs/plugins/inspect/plugin-xingheader.xml:
18037           add more plugins to docs
18038
18039 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18040
18041         * sys/dxr3/ac3_padder.h:
18042           fix up doc strings
18043         * docs/plugins/Makefile.am:
18044         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18045         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
18046         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
18047         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
18048         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
18049         * docs/plugins/inspect/plugin-qtdemux.xml:
18050         * docs/plugins/inspect/plugin-speed.xml:
18051         * docs/plugins/inspect/plugin-taglib.xml:
18052         * docs/plugins/inspect/plugin-tta.xml:
18053           commit updates
18054         * configure.ac:
18055         * ext/taglib/gsttaglib.cc:
18056         * tests/Makefile.am:
18057         * tests/check/.cvsignore:
18058         * tests/check/Makefile.am:
18059         * tests/check/elements/.cvsignore:
18060         * tests/check/elements/tagid3v2mux.c:
18061         (test_taglib_id3mux_create_tags), (test_taglib_id3mux_check_tags),
18062         (fill_mp3_buffer), (got_buffer), (demux_pad_added),
18063         (test_taglib_id3mux_check_output_buffer),
18064         (test_taglib_id3mux_with_tags), (GST_START_TEST),
18065         (tagid3v2mux_suite), (main):
18066            add the tagid3v2mux check from #336110
18067
18068 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18069
18070         * configure.ac:
18071           rework like the other configure.ac files
18072         * Makefile.am:
18073         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18074         * ext/amrwb/gstamrwb.c:
18075         * ext/arts/gst_arts.c:
18076         * ext/artsd/gstartsdsink.c:
18077         * ext/audiofile/gstaf.c:
18078         * ext/audioresample/gstaudioresample.c:
18079         * ext/bz2/gstbz2.c:
18080         * ext/cdaudio/gstcdaudio.c:
18081         * ext/directfb/dfbvideosink.c:
18082         * ext/dts/gstdtsdec.c:
18083         * ext/faac/gstfaac.c:
18084         * ext/faad/gstfaad.c:
18085         * ext/hermes/gsthermescolorspace.c:
18086         * ext/ivorbis/vorbis.c:
18087         * ext/jack/gstjack.c:
18088         * ext/lcs/gstcolorspace.c:
18089         * ext/musepack/gstmusepackdec.c:
18090         * ext/musicbrainz/gsttrm.c:
18091         * ext/nas/nassink.c:
18092         * ext/sdl/gstsdl.c:
18093         * ext/snapshot/gstsnapshot.c:
18094         * ext/sndfile/gstsf.c:
18095         * ext/swfdec/gstswfdec.c:
18096         * ext/tarkin/gsttarkin.c:
18097         * ext/xine/xine.c:
18098         * ext/xvid/gstxvid.c:
18099         * gst/cdxaparse/gstcdxaparse.c:
18100         * gst/chart/gstchart.c:
18101         * gst/colorspace/gstcolorspace.c:
18102         * gst/deinterlace/gstdeinterlace.c:
18103         * gst/equalizer/gstiirequalizer.c:
18104         * gst/festival/gstfestival.c:
18105         * gst/filter/gstfilter.c:
18106         * gst/freeze/gstfreeze.c:
18107         * gst/games/gstpuzzle.c:
18108         * gst/librfb/gstrfbsrc.c:
18109         * gst/mixmatrix/mixmatrix.c:
18110         * gst/mpeg1sys/gstmpeg1systemencode.c:
18111         * gst/mpeg1videoparse/gstmp1videoparse.c:
18112         * gst/mpeg2sub/gstmpeg2subt.c:
18113         * gst/mpegaudioparse/gstmpegaudioparse.c:
18114         * gst/multifilesink/gstmultifilesink.c:
18115         * gst/overlay/gstoverlay.c:
18116         * gst/passthrough/gstpassthrough.c:
18117         * gst/playondemand/gstplayondemand.c:
18118         * gst/qtdemux/qtdemux.c:
18119         * gst/rtjpeg/gstrtjpeg.c:
18120         * gst/smooth/gstsmooth.c:
18121         * gst/smoothwave/gstsmoothwave.c:
18122         * gst/spectrum/gstspectrum.c:
18123         * gst/speed/gstspeed.c:
18124         * gst/stereo/gststereo.c:
18125         * gst/switch/gstswitch.c:
18126         * gst/vbidec/gstvbidec.c:
18127         * gst/videocrop/gstvideocrop.c:
18128         * gst/videodrop/gstvideodrop.c:
18129         * gst/virtualdub/gstvirtualdub.c:
18130         * gst/xingheader/gstxingmux.c:
18131         * gst/y4m/gsty4mencode.c:
18132         * sys/cdrom/gstcdplayer.c:
18133         * sys/directdraw/gstdirectdrawplugin.c:
18134         * sys/directsound/gstdirectsoundplugin.c:
18135         * sys/dxr3/dxr3init.c:
18136         * sys/glsink/glimagesink.c:
18137         * sys/qcam/gstqcamsrc.c:
18138         * sys/v4l2/gstv4l2.c:
18139         * sys/vcd/vcdsrc.c:
18140         * sys/ximagesrc/ximagesrc.c:
18141           update to use correct defines
18142         * po/POTFILES.in:
18143         * po/af.po:
18144         * po/az.po:
18145         * po/cs.po:
18146         * po/en_GB.po:
18147         * po/hu.po:
18148         * po/it.po:
18149         * po/nb.po:
18150         * po/nl.po:
18151         * po/or.po:
18152         * po/sq.po:
18153         * po/sr.po:
18154         * po/sv.po:
18155         * po/uk.po:
18156         * po/vi.po:
18157           v4l2 has translations, pick them up
18158
18159 2006-03-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18160
18161         * sys/ximagesrc/ximagesrc.c: 
18162           Add docs to ximagesrc
18163
18164 2006-03-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18165
18166         * sys/ximagesrc/ximagesrc.c: (composite_pixel),
18167         (gst_ximagesrc_ximage_get), (gst_ximagesrc_set_property),
18168         (gst_ximagesrc_get_caps), (gst_ximagesrc_class_init):
18169         * sys/ximagesrc/ximagesrc.h:
18170         * sys/ximagesrc/ximageutil.c: (ximageutil_xcontext_get):
18171         * sys/ximagesrc/ximageutil.h:
18172           Fix ximagesrc so a) the cursor doesnt trail and b) there are no
18173           yellow rectangles with the cursor
18174
18175 2006-03-31  Michael Smith  <msmith@fluendo.com>
18176
18177         * configure.ac:
18178           Add autoconfery for theoradec.
18179         * ext/Makefile.am:
18180           Add theora directory.
18181         * ext/theora/Makefile.am:
18182         * ext/theora/theoradec.c: (gst_theoradec_base_init),
18183         (gst_theoradec_class_init), (gst_theoradec_init),
18184         (gst_theoradec_reset), (inc_granulepos), (theora_get_query_types),
18185         (gst_theoradec_granule_clocktime), (theora_dec_src_convert),
18186         (theora_dec_sink_convert), (theora_dec_src_query),
18187         (theora_dec_sink_query), (theora_dec_src_event),
18188         (theora_dec_sink_event), (theora_handle_comment_packet),
18189         (theora_handle_type_packet), (theora_handle_header_packet),
18190         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
18191         (theora_dec_change_state), (plugin_init):
18192         * ext/theora/theoradec.h:
18193           Add theora plugin for theora-exp decoder. Very heavily based on the
18194           existing theora decoder plugin.
18195
18196 2006-03-29  Wim Taymans  <wim@fluendo.com>
18197
18198         * ext/gsm/gstgsmdec.c: (gst_gsmdec_class_init), (gst_gsmdec_init),
18199         (gst_gsmdec_finalize), (gst_gsmdec_sink_event), (gst_gsmdec_chain):
18200         * ext/gsm/gstgsmdec.h:
18201         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
18202         (gst_gsmenc_finalize), (gst_gsmenc_chain):
18203         Cleanups, fix leaks.
18204         Handle events and DISCONT.
18205         Use adapter in the decoder.
18206
18207 2006-03-29  Wim Taymans  <wim@fluendo.com>
18208
18209         Patch by: Renato Araujo Oliveira Filho <renatox at gmail dot com>
18210
18211         * configure.ac:
18212         * ext/Makefile.am:
18213         * ext/amrwb/Makefile.am:
18214         * ext/amrwb/README:
18215         * ext/amrwb/amrwb-code/Makefile.am:
18216         * ext/amrwb/amrwb-code/run.sh:
18217         * ext/amrwb/gstamrwb.c: (plugin_init):
18218         * ext/amrwb/gstamrwbdec.c: (gst_amrwbdec_base_init),
18219         (gst_amrwbdec_class_init), (gst_amrwbdec_init),
18220         (gst_amrwbdec_setcaps), (gst_amrwbdec_event), (gst_amrwbdec_chain),
18221         (gst_amrwbdec_state_change):
18222         * ext/amrwb/gstamrwbdec.h:
18223         * ext/amrwb/gstamrwbenc.c: (gst_amrwbenc_base_init),
18224         (gst_amrwbenc_class_init), (gst_amrwbenc_init),
18225         (gst_amrwbenc_finalize), (gst_amrwbenc_setcaps),
18226         (gst_amrwbenc_chain), (gst_amrwbenc_state_change):
18227         * ext/amrwb/gstamrwbenc.h:
18228         * ext/amrwb/gstamrwbparse.c: (gst_amrwbparse_base_init),
18229         (gst_amrwbparse_class_init), (gst_amrwbparse_init),
18230         (gst_amrwbparse_querytypes), (gst_amrwbparse_query),
18231         (gst_amrwbparse_chain), (gst_amrwbparse_read_header),
18232         (gst_amrwbparse_loop), (gst_amrwbparse_sink_activate),
18233         (gst_amrwbparse_sink_activate_pull), (gst_amrwbparse_state_change):
18234         * ext/amrwb/gstamrwbparse.h:
18235         Added new plugin amrwb parse.
18236         Renamed audio/AMR to audio/AMR-WB as per spec.
18237         Fixes #333307
18238
18239 2006-03-27  Edgard Lima <edgard.lima@indt.org.br>
18240
18241         * gst-plugins-bad/sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init):
18242         Small fix, now pwc driver can tell about its buffers.
18243
18244 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
18245
18246         * configure.ac:
18247           Remove CXX tag from AS_LIBTOOL_TAGS, just like we
18248           did for -good and -ugly. Fixes build on some systems
18249           and doesn't seem to be required for C++ code.
18250
18251 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
18252
18253         * ext/taglib/gsttaglib.cc:
18254         * ext/taglib/gsttaglib.h:
18255           Fix newsegment event handling a bit. We need to
18256           cache the first newsegment event, because we can't
18257           adjust offsets yet when we get it, as we don't
18258           know the size of the tag yet for sure at that point.
18259           Also do some minor cleaning up here and there and add
18260           some debug statements.
18261
18262 2006-03-25  Tim-Philipp Müller  <tim at centricular dot net>
18263
18264         * ext/taglib/gsttaglib.cc:
18265           We do not want to proxy the caps on the sink pad; our 
18266           source pad should have application/x-id3 caps; also,
18267           don't use already-freed strings in debug messages;
18268           finally, adjust buffer offsets on buffers sent out.
18269
18270 2006-03-25  Tim-Philipp Müller  <tim at centricular dot net>
18271
18272         * sys/v4l2/gstv4l2src.c:
18273           Older kernels don't seem to have this particular v4l2 format,
18274           so comment out until this gets fixed properly (and make
18275           buildbots happy).
18276
18277 2006-03-25  Edgard Lima  <edgard.lima@indt.org.br>
18278
18279         * sys/v4l2/gstv4l2colorbalance.c:
18280         * sys/v4l2/gstv4l2colorbalance.h:
18281         * sys/v4l2/gstv4l2element.c:
18282         * sys/v4l2/gstv4l2src.c:
18283         * sys/v4l2/gstv4l2src.h:
18284         * sys/v4l2/gstv4l2tuner.c:
18285         * sys/v4l2/v4l2_calls.c:
18286         * sys/v4l2/v4l2src_calls.c:
18287         * sys/v4l2/v4l2src_calls.h:
18288         Just make few things more robust and also some identation.
18289
18290 2006-03-23  Wim Taymans  <wim@fluendo.com>
18291
18292         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
18293
18294         * ext/xvid/gstxvidenc.c: (gst_xvidenc_init), (gst_xvidenc_setup),
18295         (gst_xvidenc_chain):
18296         Patch to mark outgoing encoded buffers as delta-units (or not).
18297         Note that this patch also patches:
18298         - the setting of fincr and fbase in xvid-encoder creation based on
18299           caps framerate
18300         - makes 0, rather than 2, the default max_b_frames, as the current
18301           xvidenc does not seem "fully prepared" to handle b-frame 
18302           "effects", such as encoder returning 0 encoded bytes, etc.
18303         Fixes #335585
18304
18305 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18306
18307         * gst/modplug/libmodplug/Makefile.am:
18308         * gst/modplug/libmodplug/load_it.cpp:
18309           Try that again (not only should it be MODPLUG_ instead
18310           of MODFILE, also that define is already set in stdafx.h;
18311           what we really need is some more #ifndefs).
18312
18313 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18314
18315         * gst/modplug/libmodplug/Makefile.am:
18316           More gcc-4.1 fixes (we don't need file saving, so just
18317           define MODPLUG_NO_FILESAVE. That way, the compiler won't
18318           complain about modplug ignoring the return value of fwrite
18319           any longer and we might even save a few bytes as well).
18320
18321 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
18322
18323         Patch by: Wouter Paeson  <wouter at kangaroot dot net>
18324
18325         * configure.ac:
18326         * ext/Makefile.am:
18327         * ext/soundtouch/Makefile.am:
18328         * ext/soundtouch/gstpitch.cc:
18329         * ext/soundtouch/gstpitch.hh:
18330           Add new libsoundtouch-based pitch plugin (#331335).
18331
18332 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
18333
18334         * gst/modplug/libmodplug/load_ptm.cpp:
18335           Fix compilation with gcc-4.1 and -Werror (#327355).
18336
18337 2006-03-20  Tim-Philipp Müller  <tim at centricular dot net>
18338
18339         * ext/taglib/gsttaglib.h:
18340           Fix left-over gst_my_filter_get_type.
18341
18342 2006-03-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18343
18344         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_open_display),
18345         (gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
18346         (gst_ximagesrc_class_init), (gst_ximagesrc_init):
18347         Have a show mouse pointer property and use it if we can
18348
18349 2006-03-15  Edward Hervey  <edward@fluendo.com>
18350
18351         * gst/qtdemux/qtdemux.c: (gst_qtdemux_dispose):
18352         Let's not forget to chain up to the parent dispose.
18353
18354 2006-03-15  Edward Hervey  <edward@fluendo.com>
18355
18356         * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
18357         (gst_qtdemux_init), (gst_qtdemux_dispose),
18358         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
18359         Series of memleak fixes:
18360         - Unref the GstAdapter in finalize.
18361         - Use gst_pad_new_from_static_template(), shorter and safer.
18362         - Free unused QtDemuxStream when not used.
18363
18364 2006-03-14  Edward Hervey  <edward@fluendo.com>
18365
18366         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_base_init),
18367         (gst_v4l2src_class_init):
18368         Initialization of the debugging category should be as early as possible,
18369         moving it from _class_init() to beginning of _base_init().
18370
18371 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
18372
18373         * ext/taglib/gsttaglib.cc:
18374           Add gtk-doc blurb (unused for the time being); match registered
18375           plugin name to the filename of the plugin (taglibmux => taglib)
18376
18377 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
18378
18379         Patch by: Mikhail Zabaluev  <mhz altlinux org>
18380
18381         * autogen.sh:
18382           Don't check for file that only exists in CVS but isn't
18383           disted (#334417)
18384
18385 2006-03-13  Julien MOUTTE  <julien@moutte.net>
18386
18387         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
18388         * sys/v4l2/Makefile.am: Fix build of v4l2 (sigh)
18389
18390 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18391
18392         * Makefile.am:
18393         * configure.ac:
18394           Fix distcheck.
18395
18396 2006-03-12  Edward Hervey  <edward@fluendo.com>
18397
18398         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
18399         (gst_v4l2src_buffer_pool_free):
18400         g_atomic_int_set is only available in glib-0.10, use gst_atomic_int_et
18401         instead.
18402
18403 2006-03-12  Edward Hervey  <edward@fluendo.com>
18404
18405         * sys/v4l2/gstv4l2element.h:
18406         Remove tim's addition of "_stdint.h" since it doesn't make the PPC
18407         buildbot happy.
18408         I will just use the same comment Ronald used when he added these lines:
18409         Yet Another Hack (tm) for kernel header borkedness.
18410
18411 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18412
18413         * ext/taglib/Makefile.am:
18414         * ext/taglib/gsttaglib.cc:
18415         * ext/taglib/gsttaglib.h:
18416           Add support for writing MusicBrainz IDs.
18417
18418 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
18419
18420         * sys/v4l2/gstv4l2element.h:
18421           Include "_stdint.h" in an attempt to make the
18422           PPC-buildbot happy.
18423
18424 2006-03-11  Edgard Lima  <edgard.lima@indt.org.br>
18425
18426         * configure.ac:
18427         * sys/Makefile.am:
18428         * sys/v4l2/Makefile.am:
18429         * sys/v4l2/gstv4l2.c:
18430         * sys/v4l2/gstv4l2colorbalance.h:
18431         * sys/v4l2/gstv4l2element.c:
18432         * sys/v4l2/gstv4l2element.h:
18433         * sys/v4l2/gstv4l2src.c:
18434         * sys/v4l2/gstv4l2src.h:
18435         * sys/v4l2/gstv4l2tuner.c:
18436         * sys/v4l2/gstv4l2tuner.h:
18437         * sys/v4l2/gstv4l2xoverlay.c:
18438         * sys/v4l2/gstv4l2xoverlay.h:
18439         * sys/v4l2/v4l2_calls.c:
18440         * sys/v4l2/v4l2_calls.h:
18441         * sys/v4l2/v4l2src_calls.c:
18442         * sys/v4l2/v4l2src_calls.h:
18443         V4L2 ported to 0.10.
18444         
18445 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
18446
18447         * configure.ac:
18448           Only compile the taglib plugin if a C++ compiler is
18449           present. Use GST_DEFAULT_ELEMENTS macro from common/
18450           for all the defaults stuff.
18451
18452 2006-03-11  Christophe Fergeau  <teuf@gnome.org>
18453
18454         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18455
18456         * configure.ac:
18457         * gst/xingheader/Makefile.am:
18458         * gst/xingheader/gstxingmux.c: 
18459         * gst/xingheader/gstxingmux.h: added new element to add Xing headers
18460         to MP3 files (this allows decoder to figure out the length of VBR
18461         files) 
18462
18463 2006-03-11  Christophe Fergeau  <teuf@gnome.org>
18464         
18465         Patch by: Alex Lancaster
18466         
18467         * ext/taglib/gsttaglib.cc: fix writing of TPOS tags (album number),
18468         and add support for TCOP (copyright)
18469
18470 2006-03-10  Julien MOUTTE  <julien@moutte.net>
18471
18472         * gst/modplug/Makefile.am:
18473         * gst/modplug/gstmodplug.cc: Fix modplug compilation.
18474
18475 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
18476
18477         * configure.ac:
18478         * gst/modplug/Makefile.am:
18479         * gst/modplug/gstmodplug.cc:
18480         * gst/modplug/gstmodplug.h:
18481         * gst/modplug/libmodplug/sndfile.cpp:
18482         * gst/modplug/libmodplug/sndfile.h:
18483           modplug plugin ported to 0.10 (#332598, patch by:
18484           Jonathan Matthew <jonathan at kaolin wh9 net>).
18485
18486 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
18487
18488         * ext/libmms/gstmms.c: (gst_mms_urihandler_init),
18489         (gst_mms_base_init), (gst_mms_class_init), (gst_mms_init),
18490         (gst_mms_finalize), (gst_mms_create), (gst_mms_start),
18491         (gst_mms_set_property), (gst_mms_get_property),
18492         (gst_mms_uri_get_uri):
18493         * ext/libmms/gstmms.h:
18494           Some clean-ups; more debug output; use blocksize property
18495           of GstBaseSrc instead of re-registering our own; make debug
18496           category actually be used.
18497
18498 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
18499
18500         * gst/qtdemux/qtdemux.c: (gst_qtdemux_send_event):
18501           Fix build with gcc-4.1 (#327355).
18502
18503 2006-03-09  Christophe Fergeau  <teuf@gnome.org>
18504
18505         reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
18506
18507         * configure.ac:
18508         * ext/Makefile.am:
18509         * ext/taglib/Makefile.am:
18510         * ext/taglib/gsttaglib.cc:
18511         * ext/taglib/gsttaglib.h: new id3v2 muxer based on TagLib
18512
18513 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
18514
18515         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
18516           Extract disc number and count from files that use
18517           'disk' instead of 'disc' as node identifier for that
18518           (fixes #332066).
18519
18520 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
18521
18522         * ext/musepack/gstmusepackdec.h:
18523         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek):
18524           Forgot those two.
18525
18526 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
18527
18528         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
18529         (gst_musepackdec_init), (gst_musepackdec_send_newsegment),
18530         (gst_musepackdec_handle_seek_event),
18531         (gst_musepackdec_get_src_query_types), (gst_musepackdec_src_query),
18532         (gst_musepack_stream_init), (gst_musepackdec_sink_activate),
18533         (gst_musepackdec_sink_activate_pull), (gst_musepackdec_loop),
18534         (gst_musepackdec_change_state):
18535           Some cleanups; pause task when push fails.
18536
18537 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
18538
18539         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
18540           Add support for '3IVD' fourcc (#333403).
18541
18542 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
18543
18544         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_send_tags),
18545         (gst_faad_setcaps), (gst_faad_do_raw_seek), (gst_faad_src_event),
18546         (gst_faad_sink_event), (gst_faad_src_convert),
18547         (gst_faad_src_query), (gst_faad_chain), (gst_faad_change_state):
18548           Add query function for position/duration querying (mostly for
18549           raw AAC streams); make seeking in raw AAC streams work; post
18550           tags with codec name if this is a raw AAC stream.
18551
18552 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
18553
18554         * sys/directdraw:
18555         * sys/directsound:
18556           sinks are now using GST_RANK_PRIMARY to be used with autodectection
18557         * win32/vs6:
18558           project files updated to fix some bugs
18559         * win32/vs7:
18560         * win32/vs8:
18561           vs7 and vs8 project files added
18562         
18563 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
18564
18565         * ext/xvid/gstxviddec.c: (gst_xviddec_chain):
18566           Declare variable at the beginning of the block and make gcc-2.9x
18567           happy (fixes #333283; patch by: Jens Granseuer).
18568
18569 2006-03-03  Edward Hervey  <edward@fluendo.com>
18570
18571         * gst/qtdemux/qtdemux.c: (qtdemux_parse), (qtdemux_parse_trak):
18572         Use GST_WARNING instead of GST_ERROR for all the too short/long atoms
18573         when parsing.
18574         Also let's be a bit less vulgar in our warning messages :)
18575
18576 2006-02-28  Tim-Philipp Müller  <tim at centricular dot net>
18577
18578         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18579           Can't divide through zero (suppress warning in case of
18580           stream with one single still picture) (see #327083)
18581
18582 2006-02-25  Julien MOUTTE  <julien@moutte.net>
18583
18584         * sys/glsink/glimagesink.c: It doesn't seem we need GLU.h
18585
18586 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
18587
18588         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
18589         (qtdemux_parse_trak), (qtdemux_video_caps):
18590           Add support for palettised Apple SMC videos (#327075, based on
18591           patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>).
18592
18593 2006-02-24  Michael Smith  <msmith@fluendo.com>
18594
18595         * autogen.sh:
18596           Allow automake 1.9
18597
18598 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
18599
18600         * ext/neon/gstneonhttpsrc.c:
18601         Changed property name from "uri" to "location" 
18602
18603 2006-02-22  Jan Schmidt  <thaytan@mad.scientist.com>
18604
18605         * configure.ac:
18606         * sys/glsink/Makefile.am:
18607         Merge patch from #317048 for building on Cygwin. Patch by 
18608         Cygwin Ports maintainer.
18609         * sys/glsink/glimagesink.c: (gst_glimage_sink_init_display):
18610         Move normal debug output to LOG level not ERROR.
18611
18612 2006-02-19  Jan Gerber  <j@bootlab.org>
18613
18614         Reviewed by : Edward Hervey <edward@fluendo.com>
18615
18616         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
18617           Add 'dvsd' and 'dv25' to list of possible fourcc values for DV Video.
18618           Add image/png for fourcc 'png '
18619  
18620 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
18621
18622         * configure.ac:
18623           Surely this is supposed to be >= a.b, not == a.b
18624
18625 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18626
18627         * configure.ac:
18628         * sys/Makefile.am:
18629         * sys/ximagesrc/Makefile.am:
18630         * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_return_buf),
18631         (gst_ximagesrc_open_display), (gst_ximagesrc_start),
18632         (gst_ximagesrc_stop), (gst_ximagesrc_unlock),
18633         (gst_ximagesrc_recalc), (composite_pixel),
18634         (gst_ximagesrc_ximage_get), (gst_ximagesrc_create),
18635         (gst_ximagesrc_set_property), (gst_ximagesrc_get_property),
18636         (gst_ximagesrc_clear_bufpool), (gst_ximagesrc_base_init),
18637         (gst_ximagesrc_dispose), (gst_ximagesrc_finalize),
18638         (gst_ximagesrc_get_caps), (gst_ximagesrc_set_caps),
18639         (gst_ximagesrc_fixate), (gst_ximagesrc_class_init),
18640         (gst_ximagesrc_init), (plugin_init):
18641         * sys/ximagesrc/ximagesrc.h:
18642         * sys/ximagesrc/ximageutil.c: (ximageutil_handle_xerror),
18643         (ximageutil_check_xshm_calls), (ximageutil_xcontext_get),
18644         (ximageutil_xcontext_clear),
18645         (ximageutil_calculate_pixel_aspect_ratio),
18646         (gst_ximagesrc_buffer_finalize), (gst_ximage_buffer_free),
18647         (gst_ximagesrc_buffer_init), (gst_ximagesrc_buffer_class_init),
18648         (gst_ximagesrc_buffer_get_type), (gst_ximageutil_ximage_new),
18649         (gst_ximageutil_ximage_destroy):
18650         * sys/ximagesrc/ximageutil.h:
18651
18652         Port ximagesrc to 0.10 (Closes #304795)
18653
18654 2006-02-20  Edgard Lima <edgard.lima@indt.org.br>
18655
18656         * gst/freeze/gstfreeze.c:
18657         * gst/freeze/gstfreeze.h:
18658         Some event handling added by Renato Filho <renato.filho@indt.org.br>
18659
18660 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
18661
18662         * configure.ac:
18663         Back to CVS nano
18664
18665 === release 0.10.1 ===
18666
18667 2006-02-20  Jan Schmidt <thaytan@mad.scientist.com>
18668
18669         * configure.ac:
18670           releasing 0.10.1, "Slimy - yet satisfying"
18671
18672 2006-02-19  Jan Schmidt <thaytan@mad.scientist.com>
18673
18674         * configure.ac:
18675           Release 0.10.0.3 - pre-release for 0.10.1
18676
18677 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
18678
18679         * ext/bz2/gstbz2.c:
18680         * ext/bz2/gstbz2dec.c:
18681         * ext/bz2/gstbz2dec.h:
18682         * ext/bz2/gstbz2enc.c:
18683         * ext/bz2/gstbz2enc.h:
18684           Add proper copyright headers identifying Lutz Müller
18685           as the author and copyright holder (#331600).
18686
18687 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
18688
18689         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
18690           Don't GST_LOG timestamps from nonexistent index
18691           entries (#331582).
18692
18693 2006-02-17  Edward Hervey  <edward@fluendo.com>
18694
18695         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_header):
18696         Check that the size of the returned buffer is of the correct size
18697         because the parser assumes that.
18698         Fixes #331543.
18699
18700 2006-02-17  Jan Schmidt <thaytan@mad.scientist.com>
18701
18702         * configure.ac:
18703           Release 0.10.0.2 - pre-release for 0.10.1
18704
18705 2006-02-16  Edward Hervey  <edward@fluendo.com>
18706
18707         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event),
18708         (gst_qtdemux_loop), (qtdemux_sink_activate_pull):
18709         Don't stop the task if the pad isn't linked.
18710
18711 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
18712
18713         * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain):
18714           It appears 100% equals 1/1 and not 100/1 ...
18715
18716 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
18717
18718         * gst/qtdemux/qtdemux.c: (gst_qtdemux_post_buffering),
18719         (gst_qtdemux_chain):
18720           When buffering MDAT data, show the user something is
18721           happening by posting 'buffering' messages on the bus.
18722
18723 2006-02-14  Edward Hervey  <edward@fluendo.com>
18724
18725         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18726         (gst_qtdemux_handle_src_query), (gst_qtdemux_change_state),
18727         (next_entry_size), (gst_qtdemux_chain):
18728         * gst/qtdemux/qtdemux.h:
18729         Make push-based work if mdat atom is before moov atom.
18730         Don't answer duration query. This should be transformed into replying
18731         FALSE to seek events.
18732
18733 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
18734
18735         * ext/libmms/gstmms.c: (gst_mms_class_init), (gst_mms_create),
18736         (gst_mms_start):
18737           Return FLOW_UNEXPECTED on EOS, not FLOW_ERROR. Also, no need to
18738           push our own EOS event on EOS, the base class will do that for us;
18739           fix bogus query code; post semi-decent errors on the bus when an
18740           error occurs in ::start(), otherwise the user will get to see
18741           whatever cryptic default message GstBaseSrc comes up with.
18742
18743 2006-02-14  Andy Wingo  <wingo@pobox.com>
18744
18745         * sys/glsink/glimagesink.c (gst_glimage_sink_init): Come on
18746         schleef, don't break me gst-inspect -a.
18747
18748 2006-02-14  Edward Hervey  <edward@fluendo.com>
18749
18750         * gst/qtdemux/qtdemux.c: (next_entry_size), (gst_qtdemux_chain):
18751         Handle the case where data atoms are before moov atoms in push-based mode.
18752         Errors out gracefully.
18753
18754 2006-02-13  Edward Hervey  <edward@fluendo.com>
18755
18756         * gst/qtdemux/Makefile.am:
18757         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
18758         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
18759         (extract_initial_length_and_fourcc),
18760         (gst_qtdemux_loop_state_header), (gst_qtdemux_loop_state_movie),
18761         (gst_qtdemux_loop_header), (next_entry_size), (gst_qtdemux_chain),
18762         (qtdemux_sink_activate), (qtdemux_sink_activate_pull),
18763         (qtdemux_sink_activate_push), (qtdemux_parse_trak):
18764         * gst/qtdemux/qtdemux.h:
18765         QtDemux can now work push-based.
18766         It still needs some love for seeking.
18767
18768 2006-02-13  Edgard Lima  <edgard.lima@indt.org.br>
18769
18770         * configure.ac:
18771         * gst/freeze/Makefile.am:
18772         * gst/freeze/gstfreeze.c:
18773         * gst/freeze/gstfreeze.h:
18774         * gst/freeze/FAQ:
18775         freeze plugin ported to 0.10 by
18776         Renato Filho <renato.filho@indt.org.br>
18777
18778 2006-02-10  Tim-Philipp Müller  <tim at centricular dot net>
18779
18780         * configure.ac:
18781         * gst/cdxaparse/Makefile.am:
18782         * gst/cdxaparse/gstcdxaparse.c:
18783         * gst/cdxaparse/gstcdxaparse.h:
18784           Port cdxaparse, makes VCD playback work.
18785
18786 2006-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18787
18788         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18789         (qtdemux_parse_trak):
18790           use the correct variable to check if we can calculate
18791           the last chunk.  Looks like an obvious bug, and makes
18792           the dump of offsets comparable to other tools
18793
18794 2006-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18795
18796         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18797         (qtdemux_parse_trak):
18798           clean up some debugging, using _OBJECT, moving recurring
18799           messages to LOG level
18800
18801 2006-02-06  Edgard Lima <edgard.lima@indt.org.br>
18802
18803         * configure.ac:
18804         * ext/neon/gstneonhttpsrc.c:
18805         Now it uses libneon 0.25.5 that supports shoutcast.
18806
18807 2006-02-06  Lutz Mueller <lutz@topfrose.de>
18808
18809         Reviewed by: Edward Hervey <edward@fluendo.com>
18810         
18811         * ext/bz2/gstbz2enc.c: Accepd "ANY" caps. Use "x-bzip" instead of
18812         "x-bz2".
18813         * ext/bz2/gstbz2dec.c: Use "x-bzip" instead of "x-bz2". Initial
18814         caps are "ANY".
18815         (gst_bz2dec_chain): Configure the source pad if we can figure out
18816         the mime type of the decompressed data.
18817         (gst_bz2dec_[get,set]_property):
18818         (gst_bz2dec_class_init: New property "first_buffer_size".
18819         
18820
18821 2006-02-06  Wim Taymans  <wim@fluendo.com>
18822
18823         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_query),
18824         (gst_qtdemux_handle_src_event), (gst_qtdemux_loop_header),
18825         (qtdemux_inflate), (qtdemux_parse), (qtdemux_parse_trak),
18826         (qtdemux_parse_udta), (qtdemux_tag_add_str), (qtdemux_tag_add_num),
18827         (qtdemux_tag_add_gnre), (gst_qtdemux_handle_esds),
18828         (qtdemux_video_caps), (qtdemux_audio_caps):
18829         * gst/qtdemux/qtdemux.h:
18830         Some QT demux loving.
18831         Handle seeking in a less broken way.
18832         Fix AMR caps to match the AMR decoder.
18833         Set first timestamp on AMR samples to 0 for now.
18834         Remove some \n in DEBUG strings.
18835         Use _scale_int for maximum precision.
18836
18837 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
18838
18839         * gst/apetag/Makefile.am:
18840         * gst/apetag/apedemux.c:
18841         * gst/apetag/apedemux.h:
18842         * gst/apetag/apetag.c:
18843           Remove old files, apetag is in gst-plugins-good now.
18844
18845 2006-02-06  Andy Wingo  <wingo@pobox.com>
18846
18847         * ext/bz2/gstbz2enc.c (gst_bz2enc_class_init): 
18848         * ext/bz2/gstbz2dec.c (gst_bz2dec_class_init): No need to init
18849         parent_class, the boilerplate does it for you.
18850
18851 2006-02-05  Lutz Mueller <lutz@topfrose.de>
18852
18853         reviewed by: Andy Wingo <wingo@pobox.com>
18854
18855         * configure.ac:
18856         * ext/Makefile.am: Hook it up.
18857         * ext/bz2/gstbz2.c:
18858         * ext/bz2/gstbz2dec.h:
18859         * ext/bz2/gstbz2dec.c:
18860         * ext/bz2/gstbz2enc.h:
18861         * ext/bz2/gstbz2enc.c: New plugin, implements bz2 encoding and
18862         decoding (#303167).
18863         
18864 2006-01-30  Andy Wingo  <wingo@pobox.com>
18865
18866         * sys/glsink/Makefile.am (libgstglimagesink_la_LIBADD) 
18867         (libgstglimagesink_la_CFLAGS): Add PLUGINS_BASE cflags and libs.
18868
18869 2006-01-29  Tim-Philipp Müller  <tim at centricular dot net>
18870
18871         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_setcaps),
18872         (gst_wavpack_dec_base_init), (gst_wavpack_dec_dispose),
18873         (gst_wavpack_dec_class_init), (gst_wavpack_dec_sink_event),
18874         (gst_wavpack_dec_init), (gst_wavpack_dec_format_samples),
18875         (gst_wavpack_dec_chain), (gst_wavpack_dec_plugin_init):
18876           Add debug category, use boilerplate macros, fix handling
18877           of widths of 32 bits.
18878
18879         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_base_init),
18880         (gst_wavpack_parse_dispose), (gst_wavpack_parse_class_init),
18881         (gst_wavpack_parse_index_get_last_entry),
18882         (gst_wavpack_parse_index_get_entry_from_sample),
18883         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
18884         (gst_wavpack_parse_src_query),
18885         (gst_wavpack_parse_scan_to_find_sample),
18886         (gst_wavpack_parse_send_newsegment),
18887         (gst_wavpack_parse_handle_seek_event),
18888         (gst_wavpack_parse_src_event), (gst_wavpack_parse_init),
18889         (gst_wavpack_parse_get_upstream_length),
18890         (gst_wavpack_parse_pull_buffer),
18891         (gst_wavpack_parse_create_src_pad), (gst_wavpack_parse_loop),
18892         (gst_wavpack_parse_change_state),
18893         (gst_wavepack_parse_sink_activate),
18894         (gst_wavepack_parse_sink_activate_pull),
18895         (gst_wavpack_parse_plugin_init):
18896         * ext/wavpack/gstwavpackparse.h:
18897           Rewrite a bit, mostly to fix flow logic and to make seeking work.
18898           Fix buffer/event refcounting. Add some debug statements. Add
18899           width of 32 to source pad template caps. Use boilerplate macros.
18900
18901 2006-01-28  Edward Hervey  <edward@fluendo.com>
18902
18903         * sys/glsink/Makefile.am:
18904         glimagesink.h is dead, long live glimagesink.h
18905
18906 2006-01-27  David Schleef  <ds@schleef.org>
18907
18908         * configure.ac:
18909         * sys/Makefile.am:
18910         * sys/glsink/Makefile.am:
18911         * sys/glsink/glimagesink.c:
18912         * sys/glsink/glimagesink.h:
18913           revival of glimagesink.  Kind of works.
18914
18915 2006-01-27  Tim-Philipp Müller  <tim at centricular dot net>
18916
18917         * ext/faad/gstfaad.c: (gst_faad_setcaps),
18918         (gst_faad_chanpos_to_gst), (gst_faad_sync), (gst_faad_chain):
18919           Handle 'framed' field in caps; Port syncing for raw streams
18920           from 0.8 branch (for AAC+ radio streams) (#328854, #328721).
18921
18922 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
18923
18924         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_supported),
18925         (gst_sdlvideosink_xoverlay_set_xwindow_id),
18926         (gst_sdlvideosink_deinitsdl), (gst_sdlv_process_events),
18927         (gst_sdlvideosink_event_thread), (gst_sdlvideosink_initsdl),
18928         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
18929         (gst_sdlvideosink_setcaps), (gst_sdlvideosink_show_frame),
18930         (gst_sdlvideosink_change_state),
18931         (gst_sdlvideosink_navigation_send_event):
18932         * ext/sdl/sdlvideosink.h:
18933           Fix output stride copying, so that it displays correctly on 
18934           framebuffer devices that don't match our implict GStreamer stride
18935           arrangement.
18936
18937           Fix locking things. Offer XOverlay only when SDL is running against
18938           X. Make non-scaled (and ugly) embedding work via X Overlay. It can't
18939           actually match the embedded window size because there's no way to
18940           figure out what size that should be from the XOverlay interface.
18941           See comment in sdlvideosink.c
18942
18943 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
18944
18945         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
18946           Fix wrong memcpy source pointer.
18947
18948 2006-01-25  Edgard Lima <edgard.lima@indt.org.br>
18949
18950         * ext/libmms/gstmms.c: (gst_mms_finalize):
18951         * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_finalize):
18952         Just chain up finalize calls (calling parent_class->finalize).
18953
18954 2006-01-25  Edgard Lima <edgard.lima@indt.org.br>
18955
18956         * ext/libmms/gstmms.c: (gst_mms_finalize), (gst_mms_set_property),
18957         (gst_mms_get_property), (gst_mms_src_query), (gst_mms_class_init):
18958         Finalize method has been created and others small changes.
18959
18960 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
18961
18962         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_base_init),
18963         (gst_musepackdec_class_init), (gst_musepackdec_init),
18964         (gst_musepackdec_send_newsegment),
18965         (gst_musepackdec_handle_seek_event), (gst_musepackdec_src_event),
18966         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
18967         (gst_musepack_stream_init), (gst_musepackdec_sink_activate_pull),
18968         (gst_musepackdec_loop), (gst_musepackdec_change_state):
18969         * ext/musepack/gstmusepackdec.h:
18970         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
18971         (gst_musepack_reader_seek), (gst_musepack_reader_tell),
18972         (gst_musepack_reader_get_size):
18973         * ext/musepack/gstmusepackreader.h:
18974           Fix seeking in musepack files (it's still incredibly slow, but I
18975           don't think that is our plugin's fault). Clean up code and get
18976           rid of old cruft. Post tags with all kind of neat information like
18977           replay gain and such on the bus, if it is available. Add a
18978           'musepackdec' debug category.
18979
18980 2006-01-24  Edward Hervey  <edward@fluendo.com>
18981
18982         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
18983         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
18984         More coherent framerate setting on caps.
18985         If sample_size is available, use that for the samples' duration in
18986         the index. This enables single frame streams to work (and I imagine
18987         fixes some other cases).
18988         Tested on testsuite, no regression.
18989
18990 2006-01-23  Edward Hervey  <edward@fluendo.com>
18991
18992         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
18993         (qtdemux_video_caps), (qtdemux_audio_caps):
18994         Added codec recognition for:
18995         _ VP31 : video/x-vp3
18996         _ AVDJ : image/jpeg
18997         _ dvcp, dvc  : video/x-dv, systemstream=(boolean)false
18998         _ 0x6d730017 : audio/x-adpcm, layout=(string)quicktime
18999
19000 2006-01-21  David Schleef  <ds@schleef.org>
19001
19002         * configure.ac:
19003         * ext/swfdec/gstswfdec.c: Update from swfdec.
19004
19005 2006-01-21  Tim-Philipp Müller  <tim at centricular dot net>
19006
19007         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak),
19008         (qtdemux_audio_caps):
19009           'twos' and 'sowt' fourcc can be 16bit or 8bit audio.
19010           Fix 8bit case (#327133, based on patch by: Fabrizio
19011           Gennari <fabrizio dot ge at tiscali dot it>).
19012           Also, "G_LITTLE_ENDIAN" and "G_BIG_ENDIAN" are not
19013           valid literals for endianness in caps strings,
19014           only "LITTLE_ENDIAN" and "BIG_ENDIAN" are valid. 
19015
19016 2006-01-20  Edgard Lima <edgard.lima@indt.org.br>
19017
19018         * ext/ivorbis/vorbisfile.c:
19019         * ext/neon/gstneonhttpsrc.c:
19020         Fixed state transictions PLAYING->NULL->PLAYING.
19021         
19022 2006-01-19  Edgard Lima <edgard.lima@indt.org.br>
19023
19024         * ext/tremor/vorbisfile.c:
19025         Some minor improvements on log messages.
19026
19027 2006-01-18  Edgard Lima <edgard.lima@indt.org.br>
19028
19029         * gst/qtdemux/qtdemux.c: qtdemux_parse_trak:
19030         Ronald's patch applied. see bug #326318.
19031
19032 2006-01-17  Tim-Philipp Müller  <tim at centricular dot net>
19033
19034         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
19035         (gst_qtdemux_send_event), (gst_qtdemux_handle_src_event),
19036         (gst_qtdemux_change_state), (gst_qtdemux_loop_header):
19037         * gst/qtdemux/qtdemux.h:
19038           Fix seeking for quicktime files. Could still use some more
19039           love and sophistication.
19040
19041 2006-01-16  Edgard Lima <edgard.lima@indt.org.br>
19042
19043         * ext/libmms/gstmms.c: gst_mms_init:
19044         * ext/neon/gstneonhttpsrc.c: gst_neonhttp_src_init:
19045         * ext/sdl/sdlaudiosink.c: gst_sdlaudio_sink_dispose:
19046         Removed gst_base_src_set_live from mms and neon, and now calling
19047         parent_class->dispose in dispose on sdlaudio.
19048         
19049 2006-01-11  Edgard Lima <edgard.lima@indt.org.br>
19050
19051         * ext/sdl/sdlvideosink.c:
19052         Now implementing navigation interface and using
19053         GST_BOILER_PLATE_FULL.
19054         
19055 2006-01-11  Christian Schaller  <christian@fluendo.com>
19056
19057         Remove SunAudio plugin as Brian's new one is in -good
19058
19059         * sys/Makefile.am:
19060         * sys/sunaudio/Makefile.am:
19061         * sys/sunaudio/gstsunaudio.c:
19062         * sys/sunaudio/gstsunaudiosrc.c:
19063         * sys/sunaudio/gstsunaudiosrc.h:
19064         * sys/sunaudio/gstsunelement.c:
19065         * sys/sunaudio/gstsunelement.h:
19066         * sys/sunaudio/gstsunmixer.c:
19067         * sys/sunaudio/gstsunmixer.h:
19068
19069 2006-01-11  Edgard Lima <edgard.lima@indt.org.br>
19070
19071         * ext/sdl/sdlaudiosink.c:
19072         Replaced wrong style code by GST_BOILERPLATE.
19073         
19074 2006-01-11  Fabrizio Gennari <fabrizio.ge@tiscali.it>
19075
19076         reviewed by: Edward Hervey  <edward@fluendo.com>
19077
19078         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
19079         Add support for Indeo3 video in Quicktime files.
19080         Closes #326524
19081
19082 2006-01-09  Edgard Lima <edgard.lima@indt.org.br>
19083
19084         * configure.ac:
19085         * ext/sdl/Makefile.am:
19086         * ext/sdl/gstsdl.c:
19087         * ext/sdl/sdlaudiosink.c:
19088         * ext/sdl/sdlaudiosink.h:
19089         * ext/sdl/sdlvideosink.c:
19090         Created new element, sdlaudiosink.
19091         
19092 2006-01-05  Sebastien Moutte  <sebastien@moutte.net>
19093
19094         * added sys/directdraw
19095         * added sys/directsound
19096         * added win32/vs6/gst_plugins_bad.dsw
19097         * added win32/vs6/libgstdirectsound.dsp
19098         * added win32/vs6/libgstdirectdraw.dsp
19099         * added win32/common/config.h
19100         
19101 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
19102
19103         * gst/games/gstpuzzle.c: (plugin_init):
19104           call oil_init() when using liboil
19105
19106 2006-01-04  Edgard Lima <edgard.lima@indt.org.br>
19107
19108         * ext/neon/gstneonhttpsrc.c:
19109         * ext/neon/gstneonhttpsrc.h:
19110         Some improvements in cancellation and debug messages.
19111                         
19112 2006-01-04  Edgard Lima <edgard.lima@indt.org.br>
19113
19114         * ext/neon/gstneonhttpsrc.c:
19115         * ext/neon/gstneonhttpsrc.h:
19116         Removed not need thread and changed to push out blocksize bytes.
19117         
19118 2005-12-28  Edgard Lima <edgard.lima@indt.org.br>
19119
19120         * configure.ac:
19121         * ext/Makefile.am
19122         * ext/neon:
19123         * ext/neon/Makefile.am:
19124         * ext/neon/gstneonhttpsrc.c:
19125         * ext/neon/gstneonhttpsrc.h:
19126         Created new element neonhttpsrc.
19127
19128 2005-12-19  Edward Hervey  <edward@fluendo.com>
19129
19130         * ext/swfdec/gstswfdec.c: (gst_swfdec_class_init),
19131         (gst_swfdec_chain), (gst_swfdec_render):
19132         Add debugging category and return GstFlowReturn in the right places
19133         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link):
19134         Get something from the peer pad once we've checked if there is a peer pad.
19135         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
19136         (qtdemux_tree_get_child_by_type), (qtdemux_parse_trak),
19137         (qtdemux_video_caps):
19138         Couple of fixes
19139
19140 2005-12-19  Edgard Lima <edgard.lima@indt.org.br>
19141
19142         * ext/divx/Makefile.am:
19143         just a small fix. I have to pay more attention when commiting ;-)
19144
19145 2005-12-19  Edgard Lima <edgard.lima@indt.org.br>
19146
19147         * configure.ac:
19148         * ext/Makefile.am:
19149         * ext/divx/Makefile.am:
19150         * ext/divx/gstdivxdec.c:
19151         * ext/divx/gstdivxdec.h:
19152         * ext/divx/gstdivxenc.c:
19153         * ext/divx/gstdivxenc.h:
19154         divxdec and divxenc ported to 0.10
19155         
19156 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19157
19158         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19159         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19160         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices),
19161         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19162         (gst_dfbvideosink_can_blit_from_format),
19163         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19164         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc),
19165         (gst_dfbsurface_finalize),
19166         (gst_dfbvideosink_navigation_send_event),
19167         (gst_dfbvideosink_update_colorbalance),
19168         (gst_dfbvideosink_set_property), (gst_dfbvideosink_init): Some
19169         more refactoring, handle exotic DirectFB row stride.
19170
19171 2005-12-18  Julien MOUTTE  <julien@moutte.net>
19172
19173         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19174         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt: Updates.
19175         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19176         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_devices),
19177         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19178         (gst_dfbvideosink_can_blit_from_format),
19179         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19180         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_buffer_alloc),
19181         (gst_dfbsurface_finalize),
19182         (gst_dfbvideosink_navigation_send_event),
19183         (gst_dfbvideosink_update_colorbalance),
19184         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19185         (gst_dfbvideosink_finalize), (gst_dfbvideosink_init),
19186         (gst_dfbvideosink_class_init):
19187         * ext/directfb/dfbvideosink.h: Implement pixel-aspect-ratio.
19188         This should work both for hardware accelerated scaling and
19189         reverse caps negotiation with a scaling element.
19190
19191 2005-12-17  Julien MOUTTE  <julien@moutte.net>
19192
19193         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19194         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
19195         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19196         * docs/plugins/gst-plugins-bad-plugins.args:
19197         * docs/plugins/gst-plugins-bad-plugins.interfaces:
19198         * docs/plugins/gst-plugins-bad-plugins.signals:
19199         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19200         * docs/plugins/inspect/plugin-qtdemux.xml:
19201         * docs/plugins/inspect/plugin-sdlvideosink.xml:
19202         * docs/plugins/inspect/plugin-speed.xml:
19203         * docs/plugins/inspect/plugin-tta.xml: Updates.
19204         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19205         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_vmodes),
19206         (gst_dfbvideosink_enum_devices), (gst_dfbvideosink_setup),
19207         (gst_dfbvideosink_cleanup),
19208         (gst_dfbvideosink_can_blit_from_format),
19209         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19210         (gst_dfbvideosink_setcaps), (gst_dfbvideosink_show_frame),
19211         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19212         (gst_dfbvideosink_interface_supported),
19213         (gst_dfbvideosink_navigation_send_event),
19214         (gst_dfbvideosink_update_colorbalance),
19215         (gst_dfbvideosink_colorbalance_list_channels),
19216         (gst_dfbvideosink_colorbalance_set_value),
19217         (gst_dfbvideosink_colorbalance_get_value),
19218         (gst_dfbvideosink_colorbalance_init),
19219         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19220         (gst_dfbvideosink_init), (gst_dfbvideosink_class_init):
19221         * ext/directfb/dfbvideosink.h: Implement vertical sync and 
19222         color balance interface.
19223
19224 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
19225
19226         * ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio):
19227         * gst/festival/gstfestival.c: (socket_receive_file_to_buff):
19228         * gst/vbidec/vbidata.c:
19229         * gst/vbidec/vbidata.h:
19230         * gst/vbidec/vbiscreen.c:
19231         * sys/dxr3/ac3_padder.c:
19232           don't use doc comments for non-docs
19233           change some char* into char[]
19234
19235 2005-12-16  Julien MOUTTE  <julien@moutte.net>
19236
19237         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19238         (gst_dfbvideosink_init): Always prefer the primary layer.
19239
19240 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19241
19242         * ext/wavpack/gstwavpackdec.c:
19243           Oops, remove trailing comma from caps string.
19244
19245 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
19246
19247         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link):
19248         * ext/wavpack/gstwavpackparse.c:
19249           Wavpack supports samplerates from 6-192kHz, fix pad template
19250           caps (fixes #322973; patch by: gcocatre@gmail.com). Also
19251           remove buffer-frames from caps, they are gone in 0.10.
19252
19253 2005-12-15  Edgard Lima <edgard.lima@indt.org.br>
19254
19255         * ext/xvid/Makefile.am:
19256         * ext/xvid/gstxviddec.c:
19257         * ext/xvid/gstxvidenc.c:
19258         Fixed some mem-leaks in xvid.
19259
19260 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19261
19262         * configure.ac:
19263         * ext/Makefile.am:
19264         * ext/xvid/gstxvid.c:
19265         * ext/xvid/gstxvid.h:
19266         * ext/xvid/gstxviddec.c:
19267         * ext/xvid/gstxviddec.h:
19268         * ext/xvid/gstxvidenc.c:
19269         * ext/xvid/gstxvidenc.h:
19270         xviddec and xvideenc ported to 0.10
19271                 
19272
19273 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
19274
19275         * configure.ac:
19276         * ext/Makefile.am:
19277         * ext/dts/Makefile.am:
19278         * ext/dts/gstdtsdec.c:
19279         * ext/dts/gstdtsdec.h:
19280         dtsdec ported to 0.10
19281
19282 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
19283
19284         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
19285         * ext/libmms/gstmms.c: (gst_mms_src_query), (gst_mms_create):
19286         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_src_query),
19287         (gst_musepackdec_loop):
19288         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_link),
19289         (gst_swfdec_src_query):
19290         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query):
19291           GstObjects must be unref'ed with gst_object_unref() instead of
19292           g_object_unref(), otherwise things break for GLib-2.6 users.
19293
19294 2005-12-12  David Schleef  <ds@schleef.org>
19295
19296         * ext/swfdec/gstswfdec.c: (gst_swfdecbuffer_get_type),
19297         (gst_swfdecbuffer_class_init), (gst_swfdecbuffer_finalize),
19298         (gst_swfdec_buffer_from_swf), (gst_swfdec_render): Add a subclass
19299         of GstBuffer that wraps SwfdecBuffers.  Fix a massive memleak
19300         because the video buffers previously never got freed.
19301
19302 2005-12-11  Edgard Lima <edgard.lima@indt.org.br>
19303
19304         * ext/libmms/gstmms.c:
19305         Just removed a weird printf ;-)
19306
19307 2005-12-11  Edgard Lima <edgard.lima@indt.org.br>
19308
19309         * configure.ac:
19310         * ext/libmms/gstmms.c:
19311         * ext/libmms/gstmms.h:
19312         Added suport to mmsh. There's still a sucks msg "ERROR: Pipeline cant
19313         PREROOL..." to be fixed.
19314
19315 2005-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
19316
19317         * ext/faad/gstfaad.c: (gst_faad_chanpos_to_gst),
19318         (gst_faad_update_caps):
19319           Assume that an unknown channel mapping with 2 channels
19320           is stereo and play it that way instead of erroring.
19321
19322         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19323         (gst_qtdemux_add_stream), (qtdemux_parse_trak):
19324           Handle e.g. jpeg streams with 0 duration frames as having 0 framerate.
19325           Debug fixes. Some 64 bit variable fixes
19326
19327 2005-12-09  Edgard Lima <edgard.lima@indt.org.br>
19328
19329         * configure.ac:
19330         * ext/Makefile.am:
19331         * ext/swfdec/Makefile.am:
19332         * ext/swfdec/gstswfdec.c:
19333         * ext/swfdec/gstswfdec.h:
19334         swfdec Ported to 0.10.
19335
19336 2005-12-07  Edward Hervey  <edward@fluendo.com>
19337
19338         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19339         (gst_qtdemux_add_stream):
19340         Memleak fixes.
19341         Send out EOS for valid reasons (couldn't pull_range() from upstream
19342         for example).
19343
19344 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19345
19346         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19347         * ext/audiofile/gstafparse.h:
19348         * ext/audiofile/gstafsink.c: (gst_afsink_chain):
19349         * ext/audiofile/gstafsink.h:
19350         * ext/audiofile/gstafsrc.c: (gst_afsrc_close_file):
19351         * ext/audiofile/gstafsrc.h:
19352         * ext/cdaudio/gstcdaudio.c:
19353         * ext/divx/gstdivxenc.c:
19354         * ext/dts/gstdtsdec.h:
19355         * ext/faac/gstfaac.h:
19356         * ext/ivorbis/vorbisenc.h:
19357         * ext/ivorbis/vorbisfile.c:
19358         * ext/musepack/gstmusepackdec.h:
19359         * ext/nas/nassink.c:
19360         * ext/snapshot/gstsnapshot.c:
19361         * ext/sndfile/gstsf.h:
19362         * ext/tarkin/gsttarkindec.h:
19363         * ext/tarkin/gsttarkinenc.h:
19364         * ext/xine/gstxine.h:
19365         * ext/xine/xinecaps.c:
19366         * ext/xvid/gstxvid.h:
19367         * gst-libs/gst/play/play.h:
19368         * gst/apetag/apedemux.h:
19369         * gst/cdxaparse/gstcdxaparse.h:
19370         * gst/cdxaparse/gstcdxastrip.h:
19371         * gst/colorspace/yuv2rgb.c:
19372         * gst/colorspace/yuv2rgb.h:
19373         * gst/equalizer/gstiirequalizer.c:
19374         * gst/festival/gstfestival.h:
19375         * gst/games/gstpuzzle.c:
19376         * gst/games/gstvideoimage.c:
19377         * gst/games/gstvideoimage.h:
19378         * gst/modplug/gstmodplug.h:
19379         * gst/modplug/libmodplug/it_defs.h:
19380         * gst/modplug/libmodplug/modplug.h:
19381         * gst/modplug/libmodplug/sndfile.h:
19382         * gst/modplug/libmodplug/stdafx.h:
19383         * gst/mpeg1sys/buffer.c:
19384         * gst/mpeg1sys/gstmpeg1systemencode.h:
19385         * gst/mpeg1sys/main.h:
19386         * gst/mpeg1sys/systems.c:
19387         * gst/mpeg1videoparse/gstmp1videoparse.h:
19388         * gst/mpeg2sub/gstmpeg2subt.h:
19389         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
19390         * gst/mpegaudioparse/gstmpegaudioparse.h:
19391         * gst/multifilesink/gstmultifilesink.h:
19392         * gst/overlay/gstoverlay.h:
19393         * gst/qtdemux/qtdemux.c:
19394         * gst/qtdemux/qtdemux.h:
19395         * gst/rtjpeg/RTjpeg.c: (RTjpeg_dctY), (RTjpeg_idct):
19396         * gst/rtjpeg/RTjpeg.h:
19397         * gst/tta/crc32.h:
19398         * gst/tta/filters.h:
19399         * gst/tta/ttadec.h:
19400         * gst/videodrop/gstvideodrop.h:
19401         * sys/cdrom/gstcdplayer.h:
19402         * sys/cdrom/gstcdplayer_ioctl.c:
19403         * sys/cdrom/gstcdplayer_ioctl.h:
19404         * sys/cdrom/gstcdplayer_ioctl_bsd.h:
19405         * sys/cdrom/gstcdplayer_ioctl_irix.h:
19406         * sys/cdrom/gstcdplayer_ioctl_solaris.h:
19407         * sys/dxr3/dxr3audiosink.c:
19408         * sys/dxr3/dxr3audiosink.h:
19409         * sys/dxr3/dxr3spusink.c:
19410         * sys/dxr3/dxr3spusink.h:
19411         * sys/dxr3/dxr3videosink.c:
19412         * sys/dxr3/dxr3videosink.h:
19413         * sys/qcam/dark.c:
19414         * sys/qcam/gstqcamsrc.c:
19415         * sys/v4l2/gstv4l2colorbalance.h:
19416         * sys/v4l2/gstv4l2element.h:
19417         * sys/v4l2/gstv4l2src.h:
19418         * sys/v4l2/gstv4l2tuner.h:
19419         * sys/v4l2/gstv4l2xoverlay.h:
19420         * sys/v4l2/v4l2_calls.c:
19421         * sys/v4l2/v4l2_calls.h:
19422         * sys/v4l2/v4l2src_calls.c:
19423         * sys/v4l2/v4l2src_calls.h:
19424         * sys/vcd/vcdsrc.h:
19425           expand tabs
19426
19427 === release 0.10.0 ===
19428
19429 2005-12-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19430
19431         * configure.ac:
19432           releasing 0.10.0, "Camembert"
19433
19434 2005-12-05  Andy Wingo  <wingo@pobox.com>
19435
19436         * ext/faac/gstfaac.c: (gst_faac_sink_event), (gst_faac_chain):
19437         * ext/faad/gstfaad.c: (gst_faad_chain):
19438         * ext/hermes/gsthermescolorspace.c: (gst_hermes_colorspace_chain):
19439         * ext/lcs/gstcolorspace.c: (gst_colorspace_chain):
19440         * ext/xine/xineinput.c: (gst_xine_input_get):
19441         * gst/colorspace/gstcolorspace.c: (gst_colorspace_chain):
19442         * gst/speed/gstspeed.c: (speed_chain):
19443         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain): Update for
19444         alloc_buffer changes.
19445
19446 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
19447
19448         * ext/Makefile.am:
19449           Add missing $(WAVPACK_DIR) (#322962).
19450
19451 === release 0.9.7 ===
19452
19453 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19454
19455         * configure.ac:
19456           releasing 0.9.7, "Arrigato Gasuimas Skebisan"
19457
19458 2005-11-28  Edgard Lima <edgard.lima@indt.org.br>
19459
19460         * PORTED_09:
19461         * configure.ac:
19462         * ext/Makefile.am:
19463         * ext/libmms/Makefile.am:
19464         * ext/libmms/gstmms.c:
19465         * ext/libmms/gstmms.h:
19466         libmm ported to 0.9. It works fine, but print some error messages. I
19467         ll fix them soon. Tested with  mmssrc location=mms:// ! filesink.
19468         
19469 2005-11-28  Edward Hervey  <edward@fluendo.com>
19470
19471         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
19472         Handle gracefully the consequence of "Maximum number of scalefactor
19473         bands exceeded", which results in 0 channels with samplerates of 0.
19474         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state):
19475         Do upward transitions, then call parent state_change, then do
19476         downward transitions.
19477
19478 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19479
19480         * ext/Makefile.am:
19481           alphabets, so hard to master.  Should fix distcheck.
19482
19483 2005-11-25  Edgard Lima  <edgard.lima@indt.org.br>
19484
19485         * configure.ac:
19486         * PORTED_09:
19487         * ext/Makefile.am:
19488         * ext/wavpack/Makefile.am:
19489         * ext/wavpack/gstwavpackdec.c:
19490         * ext/wavpack/gstwavpackdec.h:
19491         * ext/wavpack/gstwavpackparse.c:
19492         * ext/wavpack/gstwavpackparse.h:
19493         Wavpack ported to 0.9. No support for correction file yet.
19494
19495 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19496
19497         * ext/wavpack/Makefile.am:
19498         * ext/wavpack/gstwavpack.c: (plugin_init):
19499         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_read_header):
19500         * ext/wavpack/gstwavpackcommon.h:
19501         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_link),
19502         (gst_wavpack_dec_wvclink), (gst_wavpack_dec_get_type),
19503         (gst_wavpack_dec_base_init), (gst_wavpack_dec_dispose),
19504         (gst_wavpack_dec_class_init), (gst_wavpack_dec_src_query),
19505         (gst_wavpack_dec_init), (gst_wavpack_dec_setup_context),
19506         (gst_wavpack_dec_format_samples), (gst_wavpack_dec_loop),
19507         (gst_wavpack_dec_plugin_init):
19508         * ext/wavpack/gstwavpackdec.h:
19509         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_get_type),
19510         (gst_wavpack_parse_base_init), (gst_wavpack_parse_dispose),
19511         (gst_wavpack_parse_class_init), (gst_wavpack_parse_src_query),
19512         (gst_wavpack_parse_src_event), (find_header), (find_sample),
19513         (gst_wavpack_parse_seek), (gst_wavpack_parse_init),
19514         (gst_wavpack_parse_handle_event), (gst_wavpack_parse_loop),
19515         (gst_wavpack_parse_change_state), (gst_wavpack_parse_plugin_init):
19516         * ext/wavpack/gstwavpackparse.h:
19517           put back wavpack - still needs porting
19518
19519 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19520
19521         * configure.ac: back to HEAD
19522
19523 === release 0.9.6 ===
19524
19525 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
19526
19527         * configure.ac:
19528           releasing 0.9.6, "Hot Tea"
19529
19530 2005-11-23  Julien MOUTTE  <julien@moutte.net>
19531
19532         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19533         * ext/directfb/dfb-example.c: (main):
19534         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_destroy),
19535         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_setup),
19536         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_setcaps),
19537         (gst_dfbvideosink_change_state), (gst_dfbvideosink_get_times),
19538         (gst_dfbvideosink_bufferpool_clear),
19539         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19540         (gst_dfbvideosink_navigation_send_event),
19541         (gst_dfbvideosink_finalize), (gst_dfbvideosink_init),
19542         (gst_dfbvideosink_class_init):
19543         * ext/directfb/dfbvideosink.h: Use fraction for framerate, various
19544         fixes.
19545
19546 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19547
19548         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init),
19549         (gst_sdlvideosink_get_times), (gst_sdlvideosink_init),
19550         (gst_sdlvideosink_setcaps), (gst_sdlvideosink_change_state):
19551         * ext/sdl/sdlvideosink.h:
19552         Updates for fractional framerates and XOverlay interface changes
19553
19554 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19555
19556         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19557         (gst_qtdemux_add_stream), (qtdemux_dump_mvhd),
19558         (qtdemux_parse_trak):
19559         Convert to fractional framerates
19560
19561 2005-11-23  Edward Hervey  <edward@fluendo.com>
19562
19563         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_loop):
19564         Fix for latest API changes
19565
19566 2005-11-22  Edgard Lima <edgard.lima@indt.org.br>
19567         * configure.ac:
19568         * PORTED_09:
19569         * extt/Makefile.am:
19570         * ext/musepack/gstmusepackdec.c:
19571         * ext/musepack/gstmusepackdec.h:
19572         * ext/musepack/gstmusepackreader.c:
19573         * ext/musepack/gstmusepackreader.h:
19574         Musepackdec ported to 0.9. There is still a small problem to be
19575         solved, after the end of file, the pipeline doens't stop.
19576
19577 2005-11-22  Andy Wingo  <wingo@pobox.com>
19578
19579         * ext/faad/gstfaad.c (gst_faad_event)
19580         * ext/ivorbis/vorbisfile.c (gst_ivorbisfile_loop)
19581         * gst/qtdemux/qtdemux.c (gst_qtdemux_loop_header)
19582         * gst/speed/gstspeed.c (speed_sink_event)
19583         * gst/tta/gstttaparse.c (gst_tta_parse_src_event)
19584         (gst_tta_parse_parse_header): Run update-funcnames.
19585
19586 2005-11-21  Michael Smith <msmith@fluendo.com>
19587
19588         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_event):
19589           Don't take STREAM_LOCK in sink event handlers any more.
19590
19591 2005-11-21  Wim Taymans  <wim@fluendo.com>
19592
19593         * ext/faac/gstfaac.c: (gst_faac_sink_event):
19594         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_src_event):
19595         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event):
19596         Fix for stream lock updates.
19597
19598 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19599
19600         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
19601           Add DX50, DIVX and DIV3 fourccs (patch by
19602           j@bootlab.org, #321903).
19603
19604 2005-11-21  Andy Wingo  <wingo@pobox.com>
19605
19606         * *.h:
19607         * *.c: Ran scripts/update-macros. Oh yes.
19608
19609 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19610
19611         * ext/directfb/dfbvideosink.c:
19612         (gst_dfbvideosink_get_format_from_caps):
19613         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create):
19614         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
19615         (qtdemux_parse), (qtdemux_type_get), (qtdemux_node_dump_foreach),
19616         (qtdemux_dump_hdlr), (qtdemux_dump_dref), (qtdemux_dump_stsd),
19617         (qtdemux_dump_dcom), (qtdemux_parse_trak), (qtdemux_video_caps),
19618         (qtdemux_audio_caps):
19619         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
19620         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
19621         (gst_v4l2src_capture_init), (gst_v4l2src_get_size_limits):
19622           Update for GST_FOURCC_FORMAT API change.
19623
19624 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19625
19626         * ext/audioresample/gstaudioresample.c:
19627         * ext/polyp/polypsink.c: (gst_polypsink_sink_fixate):
19628         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_fixate):
19629         * gst/modplug/gstmodplug.cc:
19630         * sys/glsink/glimagesink.c: (gst_glimagesink_fixate):
19631         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_fixate):
19632         Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
19633         (#322027)
19634
19635 2005-11-21  Edgard Lima <edgard.lima@indt.org.br>
19636
19637         * ext/Makefile.am:
19638         * ext/ivorbis/vorbisfile.c:
19639         Now it works in push-mode. Tested with gnomevfssrc location=http://..
19640         ! tremor ! alsasink. Some issues to be solved yet:
19641         1- set correct timestamps
19642         2- seek is forced to disabled in pull-mode
19643         
19644 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
19645
19646         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
19647         (gst_faac_sink_setcaps), (gst_faac_configure_source_pad),
19648         (gst_faac_chain):
19649           Set proper caps on source pad (#320532).
19650
19651         * ext/faad/gstfaad.c:
19652           Don't use gtk-doc markers for comment block.
19653
19654 2005-11-14  Andy Wingo  <wingo@pobox.com>
19655
19656         * configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better
19657         debugging, allows dll builds on windows. Fixes #316076.
19658
19659 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
19660
19661         * configure.ac: back to HEAD
19662
19663 === release 0.9.5 ===
19664
19665 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
19666
19667         * configure.ac:
19668           releasing 0.9.5, "Thrice Belgian Bar"
19669
19670 2005-11-11  Michael Smith <msmith@fluendo.com>
19671
19672         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain):
19673           Make this compile on systems with broken headers. 
19674
19675 2005-11-11  Michael Smith <msmith@fluendo.com>
19676
19677         * ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain):
19678           Call functions with the correct API. Unfortunately, unless your
19679           distribution patches upstream, the public header file for FAAD
19680           doesn't actually declare the API accurately. So, some nastiness
19681           ensues...
19682
19683 2005-11-10  Daniel Amelang  <daniel dot amelang at gmail dot com>
19684
19685         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
19686
19687         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta):
19688           Add support for custom genre tags.
19689
19690 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
19691
19692         * ext/tarkin/wavelet.c:
19693         * ext/tarkin/wavelet.h:
19694         * gst/mpegaudioparse/gstmpegaudioparse.c:
19695         * gst/vbidec/vbidata.c:
19696         * gst/vbidec/vbiscreen.h:
19697         * sys/dxr3/ac3_padder.c:
19698         * sys/dxr3/dxr3audiosink.c:
19699         * sys/dxr3/dxr3spusink.c:
19700         * sys/dxr3/dxr3videosink.c:
19701         * sys/qcam/dark.c:
19702           Don't use gtk-doc markers for normal comments. Fix
19703           gtk-doc formatting where required.
19704
19705 2005-11-08  Edgard Lima <edgard.lima@indt.org.br>
19706
19707         * configure.ac:
19708         * PORTED_09:
19709         * ext/Makefile.am:
19710         * ext/ivorbis/vorbis.c:
19711         * ext/ivorbis/vorbisfile.c:
19712         Ported to 0.9. Some issues to be solved yet:
19713         1- set correct timestamps
19714         2- seg fault when eos
19715         3- seek is now disabled
19716
19717 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19718
19719         * examples/Makefile.am: Cleanup non existing
19720         examples.
19721
19722 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19723
19724         * docs/plugins/inspect.stamp: Add missing files.
19725
19726 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19727
19728         * examples/Makefile.am: Make buildbot happy.
19729
19730 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19731
19732         * Makefile.am: examples in dist subdirs.
19733         * configure.ac: enable parameter for building 
19734         examples.
19735         * docs/plugins/gst-plugins-bad-plugins.args:
19736         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19737         * examples/Makefile.am: Updates.
19738
19739 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19740
19741         * Makefile.am:
19742         * autogen.sh:
19743         * configure.ac:
19744         * docs/Makefile.am:
19745         * docs/plugins/.cvsignore:
19746         * docs/plugins/Makefile.am:
19747         * docs/plugins/gst-plugins-bad-plugins-decl-list.txt:
19748         * docs/plugins/gst-plugins-bad-plugins-decl.txt:
19749         * docs/plugins/gst-plugins-bad-plugins-docs.sgml:
19750         * docs/plugins/gst-plugins-bad-plugins-sections.txt:
19751         * docs/plugins/gst-plugins-bad-plugins-undocumented.txt:
19752         * docs/plugins/gst-plugins-bad-plugins.args:
19753         * docs/plugins/gst-plugins-bad-plugins.hierarchy:
19754         * docs/plugins/gst-plugins-bad-plugins.interfaces:
19755         * docs/plugins/gst-plugins-bad-plugins.prerequisites:
19756         * docs/plugins/gst-plugins-bad-plugins.signals:
19757         * docs/plugins/gst-plugins-bad-plugins.types:
19758         * docs/plugins/inspect/plugin-dfbvideosink.xml:
19759         * docs/version.entities.in: Enable documentation.
19760         * examples/Makefile.am:
19761         * examples/directfb/Makefile.am:
19762         * examples/directfb/decker.ttf:
19763         * examples/directfb/dfblogo.png:
19764         * examples/directfb/gstdfb.c: (myclock), (dynamic_link),
19765         (size_changed), (setup_dynamic_link), (main): Add an example
19766         application for DirectFB.
19767
19768 2005-11-06  Julien MOUTTE  <julien@moutte.net>
19769
19770         * ext/directfb/Makefile.am: Add the example application.
19771         * ext/directfb/dfb-example.c: (get_me_out), (main):
19772         Here is an example application that runs videotestsrc for 20
19773         seconds. It's included in the documentation.
19774         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19775         (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format),
19776         (gst_dfbvideosink_getcaps), (gst_dfbvideosink_buffer_alloc):
19777         More fixes, calculate new size of the buffer when renegotiating.
19778         This completely breaks ffmpegcolorspace but i need to discuss 
19779         that with Wim on monday. Add documentation.
19780
19781 2005-11-05  Julien MOUTTE  <julien@moutte.net>
19782
19783         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),
19784         (gst_dfbvideosink_setup), (gst_dfbvideosink_can_blit_from_format),
19785         (gst_dfbvideosink_getcaps): Make acceleration detection work, 
19786         better, add safety checks and ARGB support for cards that
19787         support it.
19788
19789 2005-11-04  Julien MOUTTE  <julien@moutte.net>
19790
19791         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_surface_create),
19792         (gst_dfbvideosink_surface_destroy),
19793         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19794         (gst_dfbvideosink_center_rect), (gst_dfbvideosink_show_frame),
19795         (gst_dfbvideosink_buffer_alloc):
19796         * ext/directfb/dfbvideosink.h: Now does clipping when surface
19797         is too small, handles upstream elements that are not calling
19798         gst_pad_alloc_buffer, fixes a lot of bugs.
19799
19800 2005-11-03  Julien MOUTTE  <julien@moutte.net>
19801
19802         * ext/directfb/Makefile.am: Prepare for liboil usage.
19803         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_show_frame),
19804         (gst_dfbvideosink_buffer_alloc):  Prepare for liboil, handle
19805         rendering in external surface correctly. Will commit a neat
19806         example soon.
19807
19808 2005-11-03  Edgard Lima <edgard.lima@indt.org.br>
19809
19810         * ext/sdl/sdlvideosink.c: (SDL_WaitEventTimeout),
19811         (gst_sdlvideosink_event_thread), (gst_sdlvideosink_initsdl),
19812         (gst_sdlvideosink_change_state), (gst_sdlvideosink_deinitsdl):
19813         * ext/sdl/sdlvideosink.h:
19814         Add support to exit when 'Esc' key is pressed.
19815
19816 2005-11-02  Julien MOUTTE  <julien@moutte.net>
19817
19818         * configure.ac: Requires DirectFB 0.9.24
19819
19820 2005-11-02  Julien MOUTTE  <julien@moutte.net>
19821
19822         * configure.ac:
19823         * ext/Makefile.am:
19824         * ext/directfb/Makefile.am:
19825         * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_get_format_name),
19826         (gst_dfbvideosink_surface_create),
19827         (gst_dfbvideosink_surface_destroy),
19828         (gst_dfbvideosink_event_thread), (gst_dfbvideosink_enum_layers),
19829         (gst_dfbvideosink_enum_vmodes), (gst_dfbvideosink_enum_devices),
19830         (gst_dfbvideosink_setup), (gst_dfbvideosink_cleanup),
19831         (gst_dfbvideosink_get_format_from_caps),
19832         (gst_dfbvideosink_get_caps_from_format),
19833         (gst_dfbvideosink_can_blit_from_format),
19834         (gst_dfbvideosink_get_best_vmode), (gst_dfbvideosink_getcaps),
19835         (gst_dfbvideosink_setcaps), (gst_dfbvideosink_change_state),
19836         (gst_dfbvideosink_get_times), (gst_dfbvideosink_center_rect),
19837         (gst_dfbvideosink_show_frame), (gst_dfbvideosink_bufferpool_clear),
19838         (gst_dfbvideosink_buffer_alloc), (gst_dfbsurface_finalize),
19839         (gst_dfbsurface_init), (gst_dfbsurface_class_init),
19840         (gst_dfbsurface_get_type), (gst_dfbvideosink_interface_supported),
19841         (gst_dfbvideosink_interface_init),
19842         (gst_dfbvideosink_navigation_send_event),
19843         (gst_dfbvideosink_navigation_init),
19844         (gst_dfbvideosink_set_property), (gst_dfbvideosink_get_property),
19845         (gst_dfbvideosink_init), (gst_dfbvideosink_base_init),
19846         (gst_dfbvideosink_class_init), (gst_dfbvideosink_get_type),
19847         (plugin_init):
19848         * ext/directfb/dfbvideosink.h:
19849         * ext/directfb/directfbvideosink.c:
19850         * ext/directfb/directfbvideosink.h: Complete rewrite/port of
19851         DirectFB video sink to 0.9. Handles reverse negotiation, hardware
19852         scaling, navigation, buffer allocation from video memory etc...
19853
19854 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
19855
19856         * gst-plugins-bad/ext/sdl/sdlvideosink.c:
19857         gst_sdlvideosink_set_property, gst_sdlvideosink_init,
19858         gst_sdlvideosink_create:
19859         Changed property full-screen to fullscreen, using SDL_SWSURFACE
19860         instead of SDL_HWSURFACE when in full screen mode.
19861         
19862 2005-10-31 Edgard Lima <edgard.lima@indt.org.br>
19863
19864         * gst-plugins-bad/ext/sdl/sdlvideosink.c: gst_sdlvideosink_class_init,
19865         gst_sdlvideosink_set_property, gst_sdlvideosink_get_property,
19866         gst_sdlvideosink_init, gst_sdlvideosink_create:
19867         * gst-plugins-bad/ext/sdl/sdlvideosink.h:
19868         Added a property that allows full-screen.
19869
19870 2005-10-28  Tim-Philipp Müller  <tim at centricular dot net>
19871
19872         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init),
19873         (gst_sdlvideosink_class_init),
19874         (gst_sdlvideosink_get_sdl_from_fourcc), (gst_sdlvideosink_setcaps),
19875         (gst_sdlvideosink_show_frame):
19876         * ext/sdl/sdlvideosink.h:
19877           Fix I420 output on some machines (not very nice, but should work).
19878           Add an 'sdlvideosink' debug category. Disable formats that do
19879           not work. Fix some vararg function issues.
19880
19881 2005-10-27  Wim Taymans  <wim@fluendo.com>
19882
19883         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
19884         (gst_sdlvideosink_get_times), (gst_sdlvideosink_class_init),
19885         (gst_sdlvideosink_init), (gst_sdlvideosink_lock),
19886         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create),
19887         (gst_sdlvideosink_show_frame), (gst_sdlvideosink_set_property),
19888         (gst_sdlvideosink_get_property), (gst_sdlvideosink_change_state):
19889         Fix SDL videosink and did some cleanups.
19890
19891 2005-10-27  Edgard Lima <edgard.lima@indt.org.br>
19892
19893         * ext/sdl/sdlvideosink.c:
19894         * ext/sdl/sdlvideosink.h:
19895         Trying to fix videos out of sync (not fixed yet)
19896         
19897 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
19898
19899         * gst/qtdemux/qtdemux.h:
19900           Remove got_redirect from class structure as well.
19901
19902 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
19903
19904         * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init),
19905         (qtdemux_parse_tree):
19906           Remove 'got-redirect' signal and post element message
19907           on the bus instead.
19908
19909 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
19910
19911         * ext/gsm/gstgsm.c:
19912         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
19913         * ext/gsm/gstgsmdec.h:
19914         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
19915         (gst_gsmenc_chain):
19916         Fixing stuff as wingo pointed out.
19917
19918 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
19919
19920         * ext/gsm/gstgsm.c: (plugin_init):
19921         * ext/gsm/gstgsmdec.c: (gst_gsmdec_class_init), (gst_gsmdec_init),
19922         (gst_gsmdec_chain):
19923         * ext/gsm/gstgsmdec.h:
19924         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init), (gst_gsmenc_init),
19925         (gst_gsmenc_chain):
19926         * ext/gsm/gstgsmenc.h:
19927         Over-writing Wim's gsm plugins (currently not working) with that from the 
19928         farsight repo. Also made sure that they work with the RTP (de)payloader.
19929
19930 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
19931
19932         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), 
19933         (gst_gsmenc_sink_event), (gst_gsmenc_chain):
19934         * ext/gsm/gstgsmenc.h:
19935         Fixed event handling
19936
19937 2005-10-24  Christian Schaller  <christian@fluendo.com>
19938
19939         * configure.ac: port over thomas's plugin listing from base
19940
19941 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19942
19943         * configure.ac:
19944           back to HEAD
19945
19946 === release 0.9.4 ===
19947
19948 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19949
19950         * NEWS:
19951         * RELEASE:
19952         * configure.ac:
19953           Releasing 0.9.4, "Utahraptor"
19954
19955 2005-10-23  Julien MOUTTE  <julien@moutte.net>
19956
19957         * gst/tta/gstttaparse.c: (gst_tta_parse_loop): STOPPED->FAILED.
19958
19959 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
19960
19961         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_class_init),
19962         (gst_faad_init), (gst_faad_srcgetcaps), (gst_faad_event),
19963         (gst_faad_chain), (gst_faad_change_state):
19964         * ext/faad/gstfaad.h:
19965           Do some timestamp smoothing (matroskademux apparently sends
19966           multiple buffers in a row with the same timestamp); fix
19967           duration on outgoing buffers; fix change state function; use
19968           GST_DEBUG_FUNCPTR for pad functions.
19969
19970 2005-10-19  Wim Taymans  <wim@fluendo.com>
19971
19972         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_query_types),
19973         (gst_qtdemux_handle_src_query):
19974         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query):
19975         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
19976         (gst_tta_parse_get_query_types), (gst_tta_parse_query):
19977         API change fix.
19978
19979 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
19980
19981         * configure.ac:
19982           All the cool kids use GST_DOCBOOK_CHECK now.
19983
19984 2005-10-18  Julien MOUTTE  <julien@moutte.net>
19985
19986         * gst/speed/Makefile.am: Fix build of speed. 
19987
19988 2005-10-17  Edgard Lima <edgard.lima@indt.org.br>
19989
19990         * gst/speed/gstspeed.c: (speed_chain), (speed_setcaps),
19991         (speed_parse_caps), (speed_src_event), (speed_sink_event),
19992         (speed_src_query), (speed_init), (speed_set_property),
19993         (speed_change_state), (gst_speed_convert):
19994         Fixed speed - the previous version, 1.38, has been ported to 0.9
19995         from a wrong version, 1.37 (from 1.36). That fix already includes
19996         the changes done in 1.36.2.4.
19997
19998 2005-10-16  Tim-Philipp Müller  <tim at centricular dot net>
19999
20000         * configure.ac:
20001           Fix glib check
20002
20003 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
20004
20005         * examples/stats/mp2ogg.c:
20006         * ext/tarkin/tarkin.c: (tarkin_analysis_framein),
20007         (tarkin_synthesis_packetin):
20008           and more typos fixed
20009
20010 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
20011
20012         * ext/faac/gstfaac.c: (gst_faac_class_init), (gst_faac_init),
20013         (gst_faac_sink_setcaps), (gst_faac_src_setcaps),
20014         (gst_faac_sink_event), (gst_faac_chain), (gst_faac_set_property),
20015         (gst_faac_get_property), (gst_faac_change_state):
20016           Gst09-ize code a little bit more: use gst_pad_alloc_buffer(),
20017           move event handling from chain function into an event function,
20018           add some locks here and there, do some cleanups; disable 32-bit
20019           integer and float input formats until we're sure that those 
20020           actually work (couldn't play back the produced files with 
20021           anything).
20022
20023 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
20024
20025         * examples/indexing/indexmpeg.c: (main):
20026         * ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio),
20027         (gst_artsdsink_close_audio), (gst_artsdsink_change_state):
20028         * ext/artsd/gstartsdsink.h:
20029         * ext/audiofile/gstafparse.c: (gst_afparse_open_file),
20030         (gst_afparse_close_file):
20031         * ext/audiofile/gstafparse.h:
20032         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
20033         (gst_afsink_close_file), (gst_afsink_chain),
20034         (gst_afsink_change_state):
20035         * ext/audiofile/gstafsink.h:
20036         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
20037         (gst_afsrc_close_file), (gst_afsrc_change_state):
20038         * ext/audiofile/gstafsrc.h:
20039         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_init):
20040         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_init):
20041         * ext/dts/gstdtsdec.c: (gst_dtsdec_init):
20042         * ext/jack/gstjack.h:
20043         * ext/jack/gstjackbin.c: (gst_jack_bin_init),
20044         (gst_jack_bin_change_state):
20045         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_init):
20046         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_init):
20047         * ext/nas/nassink.c: (gst_nassink_open_audio),
20048         (gst_nassink_close_audio), (gst_nassink_change_state):
20049         * ext/nas/nassink.h:
20050         * ext/polyp/polypsink.c: (gst_polypsink_init):
20051         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
20052         * ext/sdl/sdlvideosink.h:
20053         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
20054         * ext/sndfile/gstsf.c: (gst_sf_set_property),
20055         (gst_sf_change_state), (gst_sf_release_request_pad),
20056         (gst_sf_open_file), (gst_sf_close_file), (gst_sf_loop):
20057         * ext/sndfile/gstsf.h:
20058         * ext/swfdec/gstswfdec.c: (gst_swfdec_init):
20059         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_init):
20060         * gst/apetag/apedemux.c: (gst_ape_demux_init):
20061         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init):
20062         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_init):
20063         * gst/festival/gstfestival.c: (gst_festival_change_state):
20064         * gst/festival/gstfestival.h:
20065         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
20066         * gst/multifilesink/gstmultifilesink.c: (gst_multifilesink_init),
20067         (gst_multifilesink_set_location), (gst_multifilesink_open_file),
20068         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
20069         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
20070         (gst_multifilesink_chain), (gst_multifilesink_change_state):
20071         * gst/multifilesink/gstmultifilesink.h:
20072         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init):
20073         * sys/cdrom/gstcdplayer.c: (cdplayer_init):
20074         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init),
20075         (dxr3audiosink_open), (dxr3audiosink_close),
20076         (dxr3audiosink_chain_pcm), (dxr3audiosink_chain_ac3),
20077         (dxr3audiosink_change_state):
20078         * sys/dxr3/dxr3audiosink.h:
20079         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init), (dxr3spusink_open),
20080         (dxr3spusink_close), (dxr3spusink_chain),
20081         (dxr3spusink_change_state):
20082         * sys/dxr3/dxr3spusink.h:
20083         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init),
20084         (dxr3videosink_open), (dxr3videosink_close),
20085         (dxr3videosink_write_data), (dxr3videosink_change_state):
20086         * sys/dxr3/dxr3videosink.h:
20087         * sys/glsink/glimagesink.c: (gst_glimagesink_init):
20088         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
20089         (gst_qcamsrc_open), (gst_qcamsrc_close):
20090         * sys/qcam/gstqcamsrc.h:
20091         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
20092         * sys/vcd/vcdsrc.c: (gst_vcdsrc_set_property), (gst_vcdsrc_get),
20093         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
20094         (gst_vcdsrc_change_state), (gst_vcdsrc_recalculate):
20095         * sys/vcd/vcdsrc.h:
20096         renamed GST_FLAGS macros to GST_OBJECT_FLAGS
20097         moved bitshift from macro to enum definition
20098
20099 2005-10-12  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20100
20101         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20102
20103         * ext/faac/gstfaac.c: (gst_faac_sink_setcaps):
20104           Fix depth/width handling for float audio (#318659).
20105
20106 2005-10-12  Josef Zlomek  <josef dot zlomek at xeris dot cz>
20107
20108         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20109
20110         * ext/faac/gstfaac.c: (gst_faac_sink_setcaps),
20111         (gst_faac_src_setcaps), (gst_faac_chain):
20112           Refcount fixes (#318660)
20113
20114 2005-10-12  Julien MOUTTE  <julien@moutte.net>
20115
20116         * ext/Makefile.am: libvisual and snapshot are not here anymore. Makes
20117         automake-1.7 happy again.
20118
20119 2005-10-12  Tim-Philipp Müller  <tim at centricular dot net>
20120
20121         * ext/faad/gstfaad.c: (gst_faad_event):
20122           newsegment API update
20123
20124 2005-10-11  Wim Taymans  <wim@fluendo.com>
20125
20126         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
20127         * gst/tta/gstttaparse.c: (gst_tta_parse_src_event),
20128         (gst_tta_parse_parse_header):
20129         newsegment API update.
20130
20131 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20132
20133         * configure.ac:
20134           back to development
20135
20136 === release 0.9.3 ===
20137
20138 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20139
20140         * configure.ac:
20141           Releasing 0.9.3, "Porthos"
20142
20143 2005-09-28  Wim Taymans  <wim@fluendo.com>
20144
20145         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
20146         No need to take stream lock here.
20147
20148 2005-09-26  Christian Schaller  <uraeus@gnome.org>
20149
20150         * configure.ac: add speed and rfb where needed
20151         * gst/librfb/Makefile.am: add rfbsrc.c file to files getting disted
20152
20153 2005-09-23  Edgard Lima  <edgard.lima@indt.org.br>
20154
20155         * ext/gsm/Makefile.am:
20156         * ext/gsm/gstgsm.c:
20157         * ext/gsm/gstgsmdec.c:
20158         * PORTED_09:
20159         Gsmdec ported to 0.9.
20160
20161 2005-09-22  Arwed v. Merkatz  <v.merkatz@gmx.net>
20162
20163         * configure.ac:
20164         * gst/tta/gstttadec.c: (gst_tta_dec_setcaps), (gst_tta_dec_init),
20165         (gst_tta_dec_chain):
20166         * gst/tta/gstttaparse.c: (gst_tta_parse_dispose),
20167         (gst_tta_parse_class_init), (gst_tta_parse_reset),
20168         (gst_tta_parse_init), (gst_tta_parse_src_event),
20169         (gst_tta_parse_get_query_types), (gst_tta_parse_query),
20170         (gst_tta_parse_activate), (gst_tta_parse_activate_pull),
20171         (gst_tta_parse_parse_header), (gst_tta_parse_stream_data),
20172         (gst_tta_parse_loop), (gst_tta_parse_change_state):
20173         * gst/tta/gstttaparse.h:
20174           Ported tta plugin to 0.9.
20175
20176
20177 2005-09-20  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20178
20179         * ext/gsm/gstgsmenc.c:
20180           Setting caps on the outgoing buffers.
20181           Need to fix: rtpencoder does not know what it is handling and
20182           errors out
20183
20184 2005-09-20  Edgard Lima  <edgard.lima@indt.org.br>
20185
20186         * configure.ac:
20187         * ext/sdl/Makefile.am:
20188           Fixed Makefile.am - removed hard coded flags from Makefile.am.
20189           Added AC_PATH_XTRA to configure.ac to be used by Makefile.am.
20190
20191 2005-09-19  Edgard Lima  <edgard.lima@indt.org.br>
20192
20193         * Makefile.am:
20194         * configure.ac:
20195         * ext/sdl/Makefile.am:
20196         * ext/sdl/sdlvideosink.c:
20197         * PORTED_09:
20198           Ported to 0.9.
20199
20200 === release 0.9.1 ===
20201
20202 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20203
20204         * configure.ac:
20205         * gst/speed/Makefile.am:
20206         * gst/speed/gstspeed.c: Ported to GStreamer 0.9.
20207         * PORTED_09:
20208
20209 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20210
20211         * NEWS:
20212         * README:
20213         * RELEASE:
20214         * configure.ac:
20215         * autogen.sh:
20216           releasing 0.9.1, "Angel Eyes"
20217
20218 2005-09-05  Jan Schmidt  <thaytan@mad.scientist.com>
20219         * examples/gstplay/player.c: (main):
20220         * examples/stats/mp2ogg.c: (main):
20221         * ext/artsd/gstartsdsink.c: (gst_artsdsink_change_state):
20222         * ext/audiofile/gstafsink.c: (gst_afsink_change_state):
20223         * ext/audiofile/gstafsrc.c: (gst_afsrc_change_state):
20224         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_change_state):
20225         * ext/dirac/gstdiracdec.cc:
20226         * ext/directfb/directfbvideosink.c:
20227         (gst_directfbvideosink_change_state):
20228         * ext/dts/gstdtsdec.c: (gst_dtsdec_change_state):
20229         * ext/faac/gstfaac.c: (gst_faac_change_state):
20230         * ext/hermes/gsthermescolorspace.c:
20231         (gst_hermes_colorspace_change_state):
20232         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_change_state):
20233         * ext/jack/gstjack.c: (gst_jack_change_state):
20234         * ext/jack/gstjackbin.c: (gst_jack_bin_change_state):
20235         * ext/lcs/gstcolorspace.c: (gst_colorspace_change_state):
20236         * ext/libmms/gstmms.c: (gst_mms_change_state):
20237         * ext/mpeg2enc/gstmpeg2enc.cc:
20238         * ext/mplex/gstmplex.cc:
20239         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_change_state):
20240         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_change_state):
20241         * ext/nas/nassink.c: (gst_nassink_change_state):
20242         * ext/polyp/polypsink.c: (gst_polypsink_change_state),
20243         (context_state_callback), (gst_polypsink_link):
20244         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_change_state):
20245         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
20246         * ext/smoothwave/gstsmoothwave.c: (gst_sw_change_state):
20247         * ext/sndfile/gstsf.c: (gst_sf_change_state):
20248         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
20249         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_change_state):
20250         * ext/xine/xine.c: (gst_xine_change_state):
20251         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_change_state):
20252         * ext/xine/xineaudiosink.c: (gst_xine_audio_sink_change_state):
20253         * ext/xine/xineinput.c: (gst_xine_input_change_state):
20254         * ext/xvid/gstxviddec.c: (gst_xviddec_change_state):
20255         * ext/xvid/gstxvidenc.c: (gst_xvidenc_change_state):
20256         * gst/apetag/apedemux.c: (gst_ape_demux_change_state):
20257         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_change_state):
20258         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_change_state):
20259         * gst/colorspace/gstcolorspace.c: (gst_colorspace_change_state):
20260         * gst/festival/gstfestival.c: (gst_festival_change_state):
20261         * gst/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state):
20262         * gst/modplug/gstmodplug.cc:
20263         * gst/mpeg1videoparse/gstmp1videoparse.c:
20264         (gst_mp1videoparse_change_state):
20265         * gst/mpegaudioparse/gstmpegaudioparse.c:
20266         (gst_mp3parse_change_state):
20267         * gst/multifilesink/gstmultifilesink.c:
20268         (gst_multifilesink_change_state):
20269         * gst/speed/gstspeed.c: (speed_change_state):
20270         * gst/switch/gstswitch.c: (gst_switch_change_state):
20271         * gst/videocrop/gstvideocrop.c: (gst_video_crop_change_state):
20272         * gst/videodrop/gstvideodrop.c: (gst_videodrop_change_state):
20273         * gst/y4m/gsty4mencode.c: (gst_y4mencode_change_state):
20274         * po/af.po:
20275         * po/az.po:
20276         * po/cs.po:
20277         * po/en_GB.po:
20278         * po/hu.po:
20279         * po/it.po:
20280         * po/nb.po:
20281         * po/nl.po:
20282         * po/or.po:
20283         * po/sq.po:
20284         * po/sr.po:
20285         * po/sv.po:
20286         * po/uk.po:
20287         * po/vi.po:
20288         * sys/cdrom/gstcdplayer.c: (cdplayer_change_state):
20289         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_change_state):
20290         * sys/dxr3/dxr3spusink.c: (dxr3spusink_change_state):
20291         * sys/dxr3/dxr3videosink.c: (dxr3videosink_change_state):
20292         * sys/glsink/glimagesink.c: (gst_glimagesink_change_state):
20293         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state):
20294         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_change_state):
20295         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_change_state):
20296         * sys/sunaudio/gstsunelement.c: (gst_sunaudioelement_change_state):
20297         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_change_state):
20298         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_change_state):
20299         * sys/vcd/vcdsrc.c: (gst_vcdsrc_change_state):
20300           Fix up all the state change functions.
20301
20302 2005-09-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20303
20304         * created gst-plugins-bad
20305
20306 2005-09-02  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20307
20308         * configure.ac:
20309         * ext/Makefile.am:
20310         * ext/gsm/Makefile.am:
20311         * ext/gsm/gstgsm.c: 
20312         * ext/gsm/gstgsmenc.c: Ported GSM Encoder to GStreamer 0.9.
20313         * PORTED_09:
20314
20315 2005-08-31  Flavio Oliveira  <flavio.oliveira@indt.org.br>
20316
20317         * configure.ac:
20318         * ext/Makefile.am:
20319         * ext/faac/Makefile.am:
20320         * ext/faac/gstfaac.c: Ported to GStreamer 0.9.