configure.ac: Move the checks for bison, flex and as to the program section and the...
[platform/upstream/gst-plugins-good.git] / ChangeLog
1 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
2
3         * configure.ac:
4         Move the checks for bison, flex and as to the program section and the
5         check for gcc inline asm to the compiler characteristics section.
6
7 2008-03-03  Peter Kjellerstedt  <pkj@axis.com>
8
9         * configure.ac:
10         Use AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to simplify which
11         plug-ins are included/excluded. (#498222)
12
13 2008-02-29  Michael Smith <msmith@fluendo.com>
14
15         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
16           Don't call gst_object_sync_values() unless we have a valid timestamp.
17
18 2008-02-28  David Schleef  <ds@schleef.org>
19
20         * gst/matroska/matroska-demux.c:
21         * gst/matroska/matroska-ids.h:
22         * gst/matroska/matroska-mux.c:
23           Fix Dirac mapping.  I had previously added a VfW-type
24           mapping, but it looks like Dirac will get a native Matroska
25           mapping, and this is the most likely method.
26
27 2008-02-28  David Schleef  <ds@schleef.org>
28
29         * gst/avi/gstavimux.c: Add Dirac encoding
30
31 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
32
33         Patch by: Peter Kjellerstedt <pkj at axis com>
34
35         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
36         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_unlock),
37         (gst_udpsrc_unlock_stop), (gst_udpsrc_stop):
38         * gst/udp/gstudpsrc.h:
39         Port to GstPoll. See #505417.
40
41 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
42
43         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
44         Return GST_FLOW_NOT_NEGOTIATED when the caps are not set
45         yet on the srcpad. We need rate and channels before we
46         can do any processing. Fixes bug #519088.
47
48 2008-02-26  Jan Schmidt  <jan.schmidt@sun.com>
49
50         * configure.ac:
51         Detect and indicate if GCC inline assembly syntax is
52         available.
53
54         * gst/goom/Makefile.am:
55         * gst/goom/convolve_fx.c:
56         * gst/goom/flying_stars_fx.c:
57         * gst/goom/goom_config.h:
58         * gst/goom/goom_core.c:
59         * gst/goom/goomsl.c:
60         * gst/goom/ifs.c:
61         * gst/goom/mmx.c:
62         * gst/goom/plugin_info.c:
63         * gst/goom/xmmx.c:
64         Fix various GCC-isms, and only build the inline assembly
65         with compilers that support GCC inline assembly.
66
67         Fix a couple of other warnings shown with Forte.
68
69 2008-02-25  Stefan Kost  <ensonic@users.sf.net>
70
71         * gst/goom/xmmx.c:
72           Use 'emms' instead of 'femms' to not crash on cpus that do not
73           implement this 3dnow specific instruction.
74
75 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
76
77         * gst/goom/plugin_info.c: (setOptimizedMethods):
78         Use extended MMX for draw_line() too if available, not only
79         normal MMX.
80
81 2008-02-25  Sebastian Dröge  <slomo@circular-chaos.org>
82
83         * ext/jpeg/gstjpeg.c: (plugin_init):
84         Remove (commented out) smoke typefinder. This is in base now.
85
86 2008-02-23  Jan Schmidt  <jan.schmidt@sun.com>
87
88         * gst/goom2k1/Makefile.am:
89         * gst/goom2k1/gstgoom.c:
90
91         Rename the installed library, and don't register the same 
92         GType name as the new goom.
93
94 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
95
96         * configure.ac:
97         * ext/taglib/Makefile.am:
98           Check for and define ERROR_CXXFLAGS and use them when building
99           C++ code (#516509).
100
101 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
102
103         * gst/goom/gstgoom.c: (goom_debug), (plugin_init):
104         * gst/goom/plugin_info.c: (goom_debug), (GST_CAT_DEFAULT),
105           (setOptimizedMethods):
106           Call oil_init(), otherwise oil_get_cpu_flags() won't return
107           anything useful. Export goom debug category so we can get
108           rid of the VERBOSE define and the printfs.
109
110 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
111
112         * gst/goom/goomsl_heap.c: (align_it):
113         * gst/goom/plugin_info.c: (setOptimizedMethods):
114           Compile fixes for x86-64.
115
116 2008-02-23  Bastien Nocera  <hadess@hadess.net>
117
118         * gst/goom/Makefile.am: Don't compile lex or yacc outputs
119         with warnings, but add other CFLAGS
120
121         * gst/goom/goomsl.c (gsl_instr_set_namespace),
122         (gsl_instr_add_param), (iflow_execute), (gsl_enternamespace),
123         (calculate_labels), (gsl_read_file):
124         * gst/goom/goomsl_lex.l:
125         * gst/goom/goomsl_yacc.y:
126         * gst/goom/plugin_info.c: Remove a few live printf, and
127         fprintf, replace exit() calls with g_assert_not_reached()
128         if it not optimal for a library
129
130 2008-02-23  Bastien Nocera  <hadess@hadess.net>
131
132         * gst/goom/Makefile.am: Remove the warnings being disabled,
133         fix linkage on x86, spotted by Sebastian Dröge
134         <slomo@circular-chaos.org>
135
136         * gst/goom/convolve_fx.c (convolve_init),
137         (create_output_with_brightness), (convolve_apply):
138         * gst/goom/filters.c (zoomFilterVisualFXWrapper_create):
139         * gst/goom/goomsl.c:
140         * gst/goom/ifs.c (ifs_update), (ifs_visualfx_create):
141         * gst/goom/plugin_info.c:
142         * gst/goom/tentacle3d.c (tentacle_fx_create):
143         Fix warnings, and disable the motifs in the convolve_fx
144         plugin (they were causing warnings, and they were just
145         "Goom" in funny letterring)
146
147 2008-02-23  Bastien Nocera  <hadess@hadess.net>
148
149         * configure.ac: Add checks for Flex/Yacc/Bison and other
150         furry animals, for the new goom 2k4 based plugin
151
152         * gst/goom/*: Update to use goom 2k4, uses liboil to detect
153         CPU optimisations (not working yet), move the old plugin to...
154
155         * gst/goom2k1/*: ... here, in case somebody is sick enough
156
157         Fixes #515073
158
159 2008-02-22  Wim Taymans  <wim.taymans@collabora.co.uk>
160
161         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
162         Post the server response code in an error message instead of a generic
163         'error' message. Fixes #517237.
164
165 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
166
167         * tests/check/Makefile.am:
168         Ignore gconfaudiosrc for the states unit test too. It will fallback
169         to alsasrc if the gconf settings can't be read and not everybody has
170         alsa.
171
172 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
173
174         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_src_query),
175         (gst_wavpack_parse_create_src_pad):
176         * ext/wavpack/gstwavpackparse.h:
177         Always report the duration if we know it in push mode and don't
178         return 0 just to make totem believe we can't seek in push mode.
179         Newer totem version use the SEEKING query which properly reports
180         if we can seek or not.
181
182 2008-02-22  Sebastian Dröge  <slomo@circular-chaos.org>
183
184         Patch by: Jens Granseuer <jensgr at gmx dot net>
185
186         * tests/examples/equalizer/demo.c: (main):
187         C89 fix, moving variable declarations to the beginning of
188         the block. Fixes bug #517933.
189
190 2008-02-21  Jan Schmidt  <jan.schmidt@sun.com>
191
192         * configure.ac:
193         Back to development...
194
195 === release 0.10.7 ===
196
197 2008-02-20  Jan Schmidt <jan.schmidt@sun.com>
198
199         * configure.ac:
200           releasing 0.10.7, "Red Door Black"
201
202 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
203
204         * gst/alpha/Makefile.am:
205         Link alpha plugin with libgstbase. Fixes bug #517386.
206
207 2008-02-18  Wim Taymans  <wim.taymans@collabora.co.uk>
208
209         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream):
210         Init values to -1 instead of the default 0 value.
211         Fixes #516524.
212
213 2008-02-14  Stefan Kost  <ensonic@users.sf.net>
214
215         * tests/examples/spectrum/spectrum-example.c:
216         Add missing include to fix compilation when libxml usage is disabled.
217         Fixes: #516371
218
219 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
220
221         patch by:  Wim Taymans  <wim.taymans@collabora.co.uk>
222         fixes: #514889
223
224         * gst/rtp/gstrtph264pay.c:
225         * gst/rtp/gstrtpmp4gdepay.c:
226         * gst/rtp/gstrtpmp4gpay.c:
227         * gst/rtp/gstrtpmp4gpay.h:
228         * gst/rtp/gstrtptheorapay.c:
229         * gst/rtp/gstrtpvorbispay.c:
230
231         Fix various leaks shown up in valgrind
232         - free sprops and buffer in error cases in H264 payloader
233         - fix leak in mp4g depayloader when construction the caps
234         - don't leak config string in the mp4g payloader
235         - don't leak buffers and headers in theora and vorbis payloaders
236
237         * tests/check/elements/rtp-payloading.c:
238
239         Fix the RTP data test
240         - Actually send valid amr data to the payloader instead of 20
241         zero-bytes
242         - The mp4g payloader expects codec_data on the caps
243
244 2008-02-12  Sebastien Moutte  <sebastien@moutte.net>
245
246         * win32/MANIFEST:
247         Add libgstpng.dsp to MANIFEST.
248         * win32/vs6/libgstaudiofx.dsp:
249         Add new source files to VS project file.
250
251 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
252
253         * sys/ximage/gstximagesrc.c:
254         Initialise variables when opening the X display rather
255         than in _start(), as the display can be opened before that.
256
257         Fixes: #515985
258
259 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
260
261         * sys/directdraw/gstdirectdrawsink.c:
262         (gst_ddrawsurface_class_init), (gst_ddrawsurface_finalize),
263         (gst_directdraw_sink_finalize):
264         Properly chain up finalize functions. Fixes bug #515980.
265
266 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
267
268         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
269         (gst_v4l2_buffer_class_init), (gst_v4l2_buffer_pool_finalize),
270         (gst_v4l2_buffer_pool_class_init):
271         Chain up the finalize functions. Fixes bug #515984.
272
273 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
274
275         * sys/ximage/ximageutil.c:
276         Chain up in the finalize function for our custom
277         buffer sub-class.
278         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
279         Fixes: #515706
280
281 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
282
283         * gst/debug/efence.c: (gst_fenced_buffer_finalize),
284         (gst_fenced_buffer_class_init):
285         Properly chain up finalize method. Fixes bug #515979.
286
287 2008-02-12  Jan Schmidt  <jan.schmidt@sun.com>
288
289         * sys/ximage/gstximagesrc.c:
290         Free allocated Damage memory before closing our connection to the
291         X server. Partially fixes: #515706
292
293 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
294
295         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
296         * tests/check/Makefile.am:
297         * tests/check/gst-plugins-good.supp:
298         Add a few libjpeg suppressions and initialize a variable to
299         make smokeenc valgrind clean. Fixes bug #515701.
300
301 2008-02-11  Jan Schmidt  <jan.schmidt@sun.com>
302
303         * gst/avi/gstavidemux.c:
304         Revert patch which sends timestamps only on keyframes, as it
305         breaks playback with current gst-ffmpeg.
306
307         Fixes: #515562
308
309 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
310
311         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
312         * tests/check/elements/multifile.c: (GST_START_TEST):
313         Close some memory leaks spotted by the unit test. Fixes bug #515697.
314
315 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
316
317         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
318         Use and unset the GError when pipeline creation fails instead of
319         simply leaking it. Fixes bug #515704.
320
321 2008-02-10  Sebastian Dröge  <slomo@circular-chaos.org>
322
323         * gst/audiofx/audioamplify.c:
324         * gst/audiofx/audiochebband.c:
325         * gst/audiofx/audiocheblimit.c:
326         * gst/audiofx/audiodynamic.c:
327         * gst/audiofx/audioinvert.c:
328         * gst/audiofx/audiopanorama.c:
329         * gst/audiofx/audiowsincband.c:
330         * gst/audiofx/audiowsinclimit.c:
331         Fix long description of audiofx elements. Fixes bug #515457.
332
333 2008-02-09  Jan Schmidt  <jan.schmidt@sun.com>
334
335         * docs/plugins/Makefile.am:
336         * gst/spectrum/gstspectrum.c:
337         * tests/examples/spectrum/.cvsignore:
338         * tests/examples/spectrum/Makefile.am:
339         * tests/examples/spectrum/spectrum-example.c:
340
341         Add a simple example application for the spectrum element, include it
342         in the docs, and fix some documentation ambiguities.
343
344         Fixes: #348085
345
346 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
347
348         * gst/equalizer/Makefile.am:
349         * gst/spectrum/Makefile.am:
350         Fix includes order
351
352         * tests/check/Makefile.am:
353         Exclude v4l2src from the states test - it takes too long to start.
354
355         * tests/check/elements/spectrum.c:
356         Make the test run properly with CK_FORK=no
357
358 2008-02-08 Christian Schaller <christian.schaller@collabora.co.uk>
359
360         * gst/audiofix/Makefile.am: add missing header files 
361
362 2008-02-08  Julien Moutte  <julien@fluendo.com>
363
364         * gst/matroska/matroska-demux.c:
365         (gst_matroska_demux_parse_blockgroup_or_simpleblock): Flag
366         keyframe and delta units correctly when dealign with a BlockGroup.
367         Fixes: #514397
368
369 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
370
371         * tests/check/elements/.cvsignore:
372         Spell the new tests correctly in .cvsignore
373
374 2008-02-08  Tim-Philipp Müller  <tim at centricular dot net>
375
376         * gst/multifile/gstmultifilesrc.c: (gst_multi_file_src_create):
377           Need to use gsize here for the size, fixes compiler warning.
378
379         * tests/examples/equalizer/.cvsignore:
380         * tests/examples/equalizer/Makefile.am:
381         * tests/examples/spectrum/.cvsignore:
382         * tests/examples/spectrum/Makefile.am:
383           Add missing files to fix the build.
384
385 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
386
387         * configure.ac:
388         * docs/plugins/Makefile.am:
389         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
390         * docs/plugins/gst-plugins-good-plugins-sections.txt:
391         * docs/plugins/gst-plugins-good-plugins.args:
392         * docs/plugins/gst-plugins-good-plugins.hierarchy:
393         * docs/plugins/inspect/plugin-multifile.xml:
394         * tests/check/Makefile.am:
395         * tests/check/elements/.cvsignore:
396
397         Move multifile plugin from -bad.
398         Fixes: #490283
399
400 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
401
402         * configure.ac:
403         * docs/plugins/Makefile.am:
404         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
405         * docs/plugins/gst-plugins-good-plugins-sections.txt:
406         * docs/plugins/gst-plugins-good-plugins.args:
407         * docs/plugins/gst-plugins-good-plugins.hierarchy:
408         * docs/plugins/inspect/plugin-spectrum.xml:
409         * gst/spectrum/Makefile.am:
410         * tests/check/Makefile.am:
411         * tests/check/elements/.cvsignore:
412         * tests/examples/Makefile.am:
413
414         Move spectrum plugin from -bad.
415         Move examples into tests/examples/spectrum.
416
417 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
418
419         * configure.ac:
420         * docs/plugins/Makefile.am:
421         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
422         * docs/plugins/gst-plugins-good-plugins-sections.txt:
423         * docs/plugins/gst-plugins-good-plugins.args:
424         * docs/plugins/gst-plugins-good-plugins.hierarchy:
425         * docs/plugins/gst-plugins-good-plugins.interfaces:
426         * docs/plugins/inspect/plugin-equalizer.xml:
427         * gst/equalizer/Makefile.am:
428         * tests/check/Makefile.am:
429         * tests/examples/Makefile.am:
430         Move the equalizer plugin across from -bad
431
432         * tests/check/elements/.cvsignore:
433         Add equalizer, audiosincwband and audiosincwlimit
434
435         * tests/check/elements/equalizer.c:
436         Fix compiler warnings
437
438         Fixes: #415627
439
440 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
441
442         * configure.ac:
443         Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
444         are treated like releases and build without it.
445
446 2008-02-07  Jan Schmidt  <jan.schmidt@sun.com>
447
448         * docs/plugins/Makefile.am:
449         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
450         * docs/plugins/gst-plugins-good-plugins-sections.txt:
451         * docs/plugins/gst-plugins-good-plugins.args:
452         * docs/plugins/inspect/plugin-audiofx.xml:
453         * gst/audiofx/Makefile.am:
454         * gst/audiofx/audiofx.c:
455         * gst/audiofx/audiowsincband.c:
456         * gst/audiofx/audiowsincband.h:
457         * gst/audiofx/audiowsinclimit.c:
458         * gst/audiofx/audiowsinclimit.h:
459         * tests/check/Makefile.am:
460         * tests/check/elements/audiowsincband.c:
461         * tests/check/elements/audiowsinclimit.c:
462
463         Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
464         the audiofx plugin, and rename to audiowsinclimit and audiowsincband
465         respectively.
466
467         Fixes: #467666
468
469 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
470
471         * gst/icydemux/gsticydemux.c: (gst_icydemux_chain):
472         * tests/check/elements/icydemux.c:
473           Return GST_FLOW_NOT_NEGOTIATED if we get a buffer without
474           caps, and add a somewhat useful debug message. Plus test.
475
476 2008-02-07  Sebastien Moutte  <sebastien@moutte.net>
477
478         * gst/rtsp/gstrtspsrc.c:
479         Include unistd.h only if HAVE_UNISTD_H is defined
480         * win32/common/config.h.in:
481         * win32/common/config.h:
482         Define socklen_t as it seems it's not defined in default 
483         Visual Studio headers.
484         * win32/vs6/libgstalpha.dsp:
485         * win32/vs6/libgstapetag.dsp:
486         * win32/vs6/libgstavi.dsp:
487         * win32/vs6/libgstrtp.dsp:
488         * win32/vs6/libgstrtsp.dsp:
489         * win32/vs6/libgstvideomixer.dsp:
490         Update project file dependencies and add new source files       
491
492 2008-02-07  Sebastian Dröge  <slomo@circular-chaos.org>
493
494         Patch by: Bjarne Rosengren <bjarne at axis dot com>
495
496         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
497         Don't leak buffers when we don't push them downstream.
498         Fixes bug #514965.
499
500 2008-02-07  Tim-Philipp Müller  <tim at centricular dot net>
501
502         * configure.ac:
503           Bump requirements to (good) released versions to avoid
504           confusion and make implicit core requirement explicit.
505
506 2008-02-06  Jan Schmidt  <jan.schmidt@sun.com>
507
508         * docs/plugins/Makefile.am:
509         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
510         * docs/plugins/gst-plugins-good-plugins-sections.txt:
511         * docs/plugins/gst-plugins-good-plugins.args:
512         * docs/plugins/inspect/plugin-audiofx.xml:
513         * gst/audiofx/Makefile.am:
514         * gst/audiofx/audiochebband.c:
515         * gst/audiofx/audiochebband.h:
516         * gst/audiofx/audiocheblimit.c:
517         * gst/audiofx/audiocheblimit.h:
518         * gst/audiofx/audiochebyshevfreqband.c:
519         * gst/audiofx/audiochebyshevfreqband.h:
520         * gst/audiofx/audiochebyshevfreqlimit.c:
521         * gst/audiofx/audiochebyshevfreqlimit.h:
522         * gst/audiofx/audiofx.c:
523         * tests/check/Makefile.am:
524         * tests/check/elements/.cvsignore:
525         * tests/check/elements/audiochebband.c:
526         * tests/check/elements/audiocheblimit.c:
527         * tests/check/elements/audiochebyshevfreqband.c:
528         * tests/check/elements/audiochebyshevfreqlimit.c:
529
530         Rename audiochebyshevfreqband -> audiochebband and
531         audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS
532         surgery.
533
534         Closes: #491811
535
536 2008-02-05  Wim Taymans  <wim.taymans@collabora.co.uk>
537
538         Patch by: Orjan Friberg <orjanf at axis dot com>
539
540         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
541         Fix caps memory leak. Fixes #514573.
542
543 2008-02-04  Edward Hervey  <edward.hervey@collabora.co.uk>
544
545         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex):
546         If there's no entries in the subindex, don't try to do anything stupid,
547         just return.
548
549 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
550
551         Patch by: John Millikin <jmillikin at gmail dot com>
552
553         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_for_last_block),
554           (gst_flac_extract_picture_buffer), (gst_flac_dec_metadata_callback):
555           Fix extraction of picture blocks with newer libflac versions again:
556           FLAC__METADATA_TYPE_PICTURE is an enum, not a define (#513628).
557
558 2008-02-02  Tim-Philipp Müller  <tim at centricular dot net>
559
560         * tests/check/Makefile.am:
561           Add rtp-payloading test to VALGRIND_TO_FIX.
562
563         * tests/check/elements/rtp-payloading.c:
564           Add semicolons after GST_TEST_END so gst-indent gets the
565           formatting right; make test less verbose in general, but
566           more verbose in the error case (which should probably
567           make the test fail anyway).
568
569 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
570
571         * docs/plugins/Makefile.am:
572         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
573         * docs/plugins/gst-plugins-good-plugins-sections.txt:
574         * gst/avi/gstavisubtitle.c:
575         Add documentation for avisubtitle and change class to
576         Codec/Parser/Subtitle
577
578 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
579
580         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
581         Treat ENOTTY (driver does not implement ioctl) the same as
582         EINVAL since it implies there are no available standards.
583
584         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
585         (gst_v4l2src_get_nearest_size):
586         Replace gst_v4l2src_get_size_limits with 2 calls to new function
587         gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to
588         probe if the driver does not support VIDIOC_TRY_FMT for whatever
589         reason, and if we aren't yet actively capturing.
590
591         * sys/v4l2/v4l2src_calls.h:
592         Remove replaced function declaration.
593
594 2008-01-31  Jan Schmidt  <Jan.Schmidt@sun.com>
595
596         * configure.ac:
597         Bump plugins-base requirement to 0.10.16 for the gst_video_format_*
598         API.
599
600 2008-01-31  Jan Schmidt  <jan.schmidt@sun.com>
601
602         * configure.ac:
603         Fix typo.
604
605 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
606
607         * gst/alpha/Makefile.am:
608         * gst/alpha/gstalpha.c:
609
610         Re-write the 'alpha' plugin to be BaseTransform based, simplifying
611         some stuff, and making buffer-alloc and resizing work automatically.
612         No longer crashes on odd frame widths and heights, although there
613         seems to be a disagreement with ffmpegcolorspace about what size
614         an AYUV frame with odd height should be.
615
616 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
617
618         Patch by: Alessandro Decina <alessandro at nnva dot org>
619
620         * ext/libpng/gstpngenc.c: (user_write_data), (gst_pngenc_chain):
621         * ext/libpng/gstpngenc.h:
622         Preallocate the output buffer so that g_memdup() and
623         gst_buffer_merge() aren't needed anymore. This greatly improves
624         performances and fixes #512544.
625
626 2008-01-29  Wim Taymans  <wim.taymans@collabora.co.uk>
627
628         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry),
629         (gst_avi_demux_stream_data):
630         GStreamer timestamps are PTS values while AVI only knows about DTS
631         timestamps. Make sure we only copy the DTS as the buffer timestamp when
632         we are dealing with a key frame.
633
634 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
635
636         * tests/check/Makefile.am:
637         * tests/check/elements/.cvsignore:
638         * tests/check/elements/rtp-payloading.c:
639           Add add testsuite for the rtp-payloader that tries simulating
640           dataflow. Needs more test data.
641
642 2008-01-29  Stefan Kost  <ensonic@users.sf.net>
643
644         * tests/check/elements/alphacolor.c:
645           Remove two unused variables.
646
647 2008-01-28  Tim-Philipp Müller  <tim at centricular dot net>
648
649         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
650           Use g_ascii_strtoll() instead of atoll, which is only
651           available in C99.
652
653 2008-01-25  Thijs Vermeir  <thijsvermeir@gmail.com>
654
655         * gst/rtp/Makefile.am:
656         * gst/rtp/gstrtp.c:
657         * gst/rtp/gstrtpmpvpay.c:
658         * gst/rtp/gstrtpmpvpay.h:
659         Add MPEG2 video payloader
660
661 2008-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
662
663         * gst/level/gstlevel.c:
664         Use #include <math.h> instead of #include "math.h".
665
666 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
667
668         * tests/check/Makefile.am:
669         Fix up some CFLAGS sets.
670         Don't include gconfvideosrc in the states test.
671
672         * tests/check/elements/autodetect.c: (GST_START_TEST):
673         Add some error strings to fail_unless arguments to fix some weird
674         compiler errors on Solaris.
675
676 2008-01-21  Jan Schmidt  <Jan.Schmidt@sun.com>
677
678         * configure.ac:
679         Detect video4linux headers on Solaris too.
680         * sys/v4l2/gstv4l2colorbalance.h:
681         * sys/v4l2/gstv4l2object.h:
682         * sys/v4l2/v4l2_calls.c:
683         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
684         (gst_v4l2_buffer_new):
685
686         Make v4l2 build on Solaris.
687         Patch by: Brian Cameron  <brian.cameron at sun dot com>
688         Fixes: #510505
689
690 2008-01-21  Stefan Kost  <ensonic@users.sf.net>
691
692         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
693           Update list from (still local) scanning script.
694
695 2008-01-19  Sebastian Dröge  <slomo@circular-chaos.org>
696
697         Based on a patch by:
698             Victor STINNER <victor dot stinner at haypocalc dot com>
699
700         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
701         Set variable to NULL after freeing it to prevent double frees
702         or make failures by another use of it afterwards more obvious
703         and fix use of it after the freeing. Fixes bug #510592.
704
705 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
706
707         * gst/udp/gstmultiudpsink.c:
708         use GST_WARNING for logging
709
710 2008-01-18  Thijs Vermeir  <thijsvermeir@gmail.com>
711
712         * gst/udp/gstmultiudpsink.c:
713         Don't try to leave a multicast group with an invalid socket
714
715 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
716
717         * ext/flac/gstflacdec.c:
718           Fix compilation against flac 1.1.2 (as on debian stable), where
719           the picture metadata defines and structs don't exist yet.
720           Fixes #509301.
721
722 2008-01-17  Wim Taymans  <wim.taymans@collabora.co.uk>
723
724         Patch by: Olivier Crete <tester at tester dot ca>
725
726         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
727         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
728         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
729         (gst_multiudpsink_add_internal), (gst_multiudpsink_remove):
730         * gst/udp/gstmultiudpsink.h:
731         Add property to automatically join a multicast group or not. This can be
732         useful when sharing a socket between multiple elements.
733         Fixes #509531.
734
735 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
736
737         * gst/videomixer/Makefile.am:
738           Add controller flags.
739
740 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
741
742         * gst/videomixer/videomixer.c:
743           Also commit the missing gst_object_sync_values().
744
745 2008-01-16  Stefan Kost  <ensonic@users.sf.net>
746
747         * docs/plugins/Makefile.am:
748           Remove duplicate entry.
749
750 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
751
752         * docs/plugins/Makefile.am:
753         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
754         * docs/plugins/gst-plugins-good-plugins-sections.txt:
755         * docs/plugins/inspect/plugin-gamma.xml:
756         * docs/plugins/inspect/plugin-monoscope.xml:
757         * docs/plugins/inspect/plugin-video4linux2.xml:
758           Add 3 more plugins to docs.
759
760 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
761
762         * docs/plugins/gst-plugins-good-plugins-sections.txt:
763         * sys/osxvideo/osxvideosink.h:
764           Revert previous change caused by a file that got stuck on an old
765           revision.
766
767 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
768
769         * docs/plugins/gst-plugins-good-plugins-sections.txt:
770         * gst/multipart/Makefile.am:
771         * gst/multipart/multipartdemux.c:
772         * gst/multipart/multipartdemux.h:
773         * gst/multipart/multipartmux.c:
774         * gst/multipart/multipartmux.h:
775           Re-add multipartdemux to the docs. Last round of section cleanup.
776
777 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
778
779         * docs/plugins/Makefile.am:
780         * docs/plugins/gst-plugins-good-plugins-sections.txt:
781         * sys/osxaudio/gstosxaudiosink.h:
782         * sys/osxvideo/osxvideosink.h:
783           Managed to resolve most unused declarations. Filed a bug for one left.          
784
785 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
786
787         * docs/plugins/gst-plugins-good-plugins-sections.txt:
788           Cleanup section file.
789
790 2008-01-15  Stefan Kost  <ensonic@users.sf.net>
791
792         * docs/plugins/Makefile.am:
793         * docs/plugins/gst-plugins-good-plugins.args:
794         * docs/plugins/gst-plugins-good-plugins.signals:
795         * docs/plugins/inspect/plugin-alaw.xml:
796         * docs/plugins/inspect/plugin-alpha.xml:
797         * docs/plugins/inspect/plugin-alphacolor.xml:
798         * docs/plugins/inspect/plugin-annodex.xml:
799         * docs/plugins/inspect/plugin-apetag.xml:
800         * docs/plugins/inspect/plugin-audiofx.xml:
801         * docs/plugins/inspect/plugin-auparse.xml:
802         * docs/plugins/inspect/plugin-autodetect.xml:
803         * docs/plugins/inspect/plugin-avi.xml:
804         * docs/plugins/inspect/plugin-cairo.xml:
805         * docs/plugins/inspect/plugin-cdio.xml:
806         * docs/plugins/inspect/plugin-cutter.xml:
807         * docs/plugins/inspect/plugin-debug.xml:
808         * docs/plugins/inspect/plugin-dv.xml:
809         * docs/plugins/inspect/plugin-efence.xml:
810         * docs/plugins/inspect/plugin-effectv.xml:
811         * docs/plugins/inspect/plugin-flac.xml:
812         * docs/plugins/inspect/plugin-flxdec.xml:
813         * docs/plugins/inspect/plugin-gconfelements.xml:
814         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
815         * docs/plugins/inspect/plugin-goom.xml:
816         * docs/plugins/inspect/plugin-halelements.xml:
817         * docs/plugins/inspect/plugin-icydemux.xml:
818         * docs/plugins/inspect/plugin-id3demux.xml:
819         * docs/plugins/inspect/plugin-jpeg.xml:
820         * docs/plugins/inspect/plugin-ladspa.xml:
821         * docs/plugins/inspect/plugin-level.xml:
822         * docs/plugins/inspect/plugin-matroska.xml:
823         * docs/plugins/inspect/plugin-mulaw.xml:
824         * docs/plugins/inspect/plugin-multipart.xml:
825         * docs/plugins/inspect/plugin-navigationtest.xml:
826         * docs/plugins/inspect/plugin-png.xml:
827         * docs/plugins/inspect/plugin-quicktime.xml:
828         * docs/plugins/inspect/plugin-rtp.xml:
829         * docs/plugins/inspect/plugin-rtsp.xml:
830         * docs/plugins/inspect/plugin-shout2send.xml:
831         * docs/plugins/inspect/plugin-smpte.xml:
832         * docs/plugins/inspect/plugin-speex.xml:
833         * docs/plugins/inspect/plugin-taglib.xml:
834         * docs/plugins/inspect/plugin-udp.xml:
835         * docs/plugins/inspect/plugin-videobalance.xml:
836         * docs/plugins/inspect/plugin-videobox.xml:
837         * docs/plugins/inspect/plugin-videocrop.xml:
838         * docs/plugins/inspect/plugin-videoflip.xml:
839         * docs/plugins/inspect/plugin-videomixer.xml:
840         * docs/plugins/inspect/plugin-wavenc.xml:
841         * docs/plugins/inspect/plugin-wavpack.xml:
842         * docs/plugins/inspect/plugin-wavparse.xml:
843           Update plugin docs.
844
845         * gst/videomixer/Makefile.am:
846         * gst/videomixer/videomixer.c:
847         * gst/videomixer/videomixer.h:
848         * gst/videomixer/videomixerpad.h:
849           Split out header to fix warnings from the doc-build.
850
851 2008-01-14  Wim Taymans  <wim.taymans@collabora.co.uk>
852
853         As found by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
854
855         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpinfo):
856         Use atoll to parse the rtptime with enough precision. Fixes #509329.
857
858 2008-01-14  Tim-Philipp Müller  <tim at centricular dot net>
859
860         * gst/avi/gstavisubtitle.c: (gst_avi_subtitle_extract_file):
861         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
862           Initialise variables to work around (false) 'foo might be used
863           uninitialized in this function' warnings by gcc-3.3.3 (#509298).
864
865 2008-01-11  David Schleef  <ds@schleef.org>
866
867         * docs/plugins/.cvsignore:
868         * tests/check/pipelines/.cvsignore:
869           Ignore more files for the buildbot.
870
871 2008-01-11  Jan Schmidt  <Jan.Schmidt@sun.com>
872
873         * ext/flac/gstflacdec.c: (gst_flac_extract_picture_buffer):
874         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
875         Generate the image-type values correctly. Leave them out of the caps
876         when outputting a "preview image" tag, since it only makes sense
877         to have one of those - the type is irrelevant.
878
879         * sys/sunaudio/gstsunaudiomixerctrl.c:
880         (gst_sunaudiomixer_ctrl_open):
881         If we can, mark the mixer multiple open when we use it, in case
882         (for some reason) the process wants to open it again elsewhere.
883
884 2008-01-11  Wim Taymans  <wim.taymans@collabora.co.uk>
885
886         Patch by: Olivier Crete <tester at tester dot ca>
887
888         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_setcaps):
889         * gst/rtp/gstrtptheorapay.c:
890         Fix the clock rate to 90000 as required by the RFC.
891         Fixes #508644.
892
893 2008-01-11  Tim-Philipp Müller  <tim at centricular dot net>
894
895         * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
896           Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
897
898 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
899
900         * autogen.sh:
901           Add -Wno-portability to the automake parameters to stop warnings
902           about GNU make extensions being used. We require GNU make in almost
903           every Makefile anyway.
904           
905         * configure.ac:
906           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
907           at the same time is required for per target flags.
908
909 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
910
911         * gst/videomixer/videomixer.c: (gst_videomixer_init):
912         Fix error from my last commit.
913
914 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
915
916         Based on patch by: Tommi Myöhänen <ext-tommi.myohanen nokia com>
917
918         * gst/id3demux/id3v2frames.c: (parse_comment_frame):
919           Make sure the ISO 639-X language code in ID3v2 COMM frames
920           is actually valid UTF-8 (or rather: ASCII), so we don't end
921           up with non-UTF8 strings in tags if there's garbage in the
922           language field. Also make sure the language code is always
923           lower case. Fixes: #508291.
924
925 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
926
927         * ChangeLog:
928           Fix ChangeLog typo.
929
930 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
931
932         * Makefile.am:
933           Include lcov.mak to allow building coverage reports. Guard
934           check-torture target like in the other packages.
935
936 2008-01-09  Sameer Naik  <sameer@damagehead.com>
937
938         reviewed by: Edward Hervey  <edward.hervey@collabora.co.uk>
939
940         * gst/videomixer/videomixer.c:
941         (gst_videomixer_set_master_geometry), (_do_init),
942         (gst_videomixer_child_proxy_get_child_by_index),
943         (gst_videomixer_child_proxy_get_children_count),
944         (gst_videomixer_child_proxy_init), (gst_videomixer_reset),
945         (gst_videomixer_init), (gst_videomixer_request_new_pad),
946         (gst_videomixer_release_pad), (gst_videomixer_fill_queues):
947         Implement GstChildProxy interface.
948         Send newsegment at the right moment
949         Fixes #488879
950
951 2008-01-09  Edward Hervey  <edward.hervey@collabora.co.uk>
952
953         * gst/alpha/Makefile.am:
954         * gst/alpha/gstalpha.c: (gst_alpha_class_init), (gst_alpha_init),
955         (gst_alpha_sink_event), (gst_alpha_chain),
956         (gst_alpha_change_state), (plugin_init):
957         Make the various properties of 'alpha' controllable. This allows doing
958         niceties like fade-in/fade-out.
959
960 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
961
962         * gst/rtp/gstasteriskh263.c:
963         * gst/rtp/gstrtpL16depay.c:
964         * gst/rtp/gstrtpac3depay.c:
965         * gst/rtp/gstrtpamrpay.c:
966         * gst/rtp/gstrtpdepay.c:
967         * gst/rtp/gstrtpgsmdepay.c:
968         * gst/rtp/gstrtph263depay.c:
969         * gst/rtp/gstrtph263pdepay.c:
970         * gst/rtp/gstrtph263ppay.c:
971         * gst/rtp/gstrtph264depay.c:
972         * gst/rtp/gstrtph264pay.c:
973         * gst/rtp/gstrtpmp2tdepay.c:
974         * gst/rtp/gstrtpmp4adepay.c:
975         * gst/rtp/gstrtpmp4gdepay.c:
976         * gst/rtp/gstrtpmp4gpay.c:
977         * gst/rtp/gstrtpmp4vdepay.c:
978         * gst/rtp/gstrtpmpadepay.c:
979         * gst/rtp/gstrtpmpvdepay.c:
980         * gst/rtp/gstrtpsv3vdepay.c:
981         * gst/rtp/gstrtptheoradepay.c:
982         * gst/rtp/gstrtptheorapay.c:
983         * gst/rtp/gstrtpvorbisdepay.c:
984         * gst/rtp/gstrtpvorbispay.c:
985           Remove copy/paste unused code (property setters and getter) found by
986           the coverage suite (yay, saves ~20k on disk).
987
988 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
989
990         * gst/matroska/matroska-mux.c: (COMMON_VIDEO_CAPS_NO_FRAMERATE),
991           (videosink_templ):
992           Also fix up pad templates to indicate that image/jpeg doesn't
993           absolutely require the framerate property to be set (#504081).
994
995 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
996
997         Based on patch by: Wouter Cloetens  <wouter at mind be>
998
999         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_setcaps),
1000           (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
1001           (gst_matroska_mux_finish), (gst_matroska_mux_collected):
1002         * gst/matroska/matroska-mux.h:
1003           Keep track of first and last timestamps for each incoming stream,
1004           so we can calculate the total duration for live sources and other
1005           input where we can't query the duration from the start or where
1006           there's no constant framerate from which we can deduce the
1007           duration; also use calculated/observed duration if it is bigger
1008           than the previously queried duration. Furthermore, use
1009           gst_pad_query_peer_duration() and take into account that it may
1010           return TRUE but still a duration of CLOCK_TIME_NONE, which easily
1011           screws up comparisons when using unsigned integers. Fixes #504081.
1012
1013 2008-01-08  Sebastian Dröge  <slomo@circular-chaos.org>
1014
1015         * configure.ac:
1016         * gst/audiofx/audioamplify.c:
1017         (gst_audio_amplify_clipping_method_get_type),
1018         (gst_audio_amplify_init), (gst_audio_amplify_transform_ip):
1019         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_init),
1020         (gst_audio_dynamic_transform_ip):
1021         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
1022         (gst_audio_invert_transform_ip):
1023         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
1024         (gst_audio_panorama_transform):
1025         * gst/level/gstlevel.c: (gst_level_init):
1026         Make elements GST_BUFFER_FLAG_GAP aware and call
1027         gst_base_transform_set_gap_aware for this.
1028         Bump core requirement to CVS.
1029         
1030         * gst/audiofx/audiochebyshevfreqband.c:
1031         (gst_audio_chebyshev_freq_band_transform_ip):
1032         * gst/audiofx/audiochebyshevfreqlimit.c:
1033         (gst_audio_chebyshev_freq_limit_transform_ip):
1034         Also sync GObject properties to the controller if operating
1035         in passthrough mode.
1036
1037 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
1038
1039         * sys/directdraw/gstdirectdrawsink.c:
1040           (gst_directdraw_sink_window_thread):
1041           FALSE is not a gpointer.
1042
1043 2008-01-05  Julien Moutte  <julien@fluendo.com>
1044
1045         * sys/directdraw/gstdirectdrawsink.c:
1046         (gst_directdraw_sink_set_window_id),
1047         (gst_directdraw_sink_set_caps), (gst_directdraw_sink_change_state),
1048         (gst_directdraw_sink_buffer_alloc),
1049         (gst_directdraw_sink_draw_borders),
1050         (gst_directdraw_sink_show_frame),
1051         (gst_directdraw_sink_setup_ddraw),
1052         (gst_directdraw_sink_window_thread),
1053         (gst_directdraw_sink_get_ddrawcaps),
1054         (gst_directdraw_sink_surface_create): Make sure we create our
1055         internal window only when we need it. That will give a chance to
1056         the application to get the prepare-xwindow-id bus message. Draw
1057         black borders when keeping aspect ratio. Handle the case where our
1058         rendering window disappears (closed or errors) like other sinks
1059         do. Various 80 columns fixes, improve state change order. That
1060         element could need some more love.
1061
1062 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
1063
1064         * ext/taglib/gstapev2mux.h:
1065         * ext/taglib/gstid3v2mux.h:
1066         Remove useless typedefs without new type name. Fixes a warning with
1067         gcc 4.3.
1068
1069 2008-01-03  Wim Taymans  <wim.taymans@collabora.co.uk>
1070
1071         Patch by: John Millikin <jmillikin at gmail dot com>
1072
1073         * ext/flac/gstflacdec.c: (gst_flac_dec_setup_seekable_decoder),
1074         (gst_flac_dec_setup_stream_decoder),
1075         (gst_flac_normalize_picture_mime_type),
1076         (gst_flac_extract_picture_buffer),
1077         (gst_flac_dec_metadata_callback):
1078         Emit metadata messages when a PICTURE block is encountered.
1079         Fixes #506715.
1080
1081 2008-01-02  Thijs Vermeir  <thijsvermeir@gmail.com>
1082
1083         * gst/avi/gstavi.c:
1084         increase rank because no known issues anymore ...
1085         * gst/avi/gstavisubtitle.c:
1086         send subtitle name to the srcpad
1087
1088 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
1089
1090         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send), (gst_rtspsrc_open):
1091         * gst/rtsp/gstrtspsrc.h:
1092         Implement redirect for the DESCRIBE reply. Fixes #506025.
1093
1094 2007-12-29  Sebastian Dröge  <slomo@circular-chaos.org>
1095
1096         * ext/flac/gstflacdec.c: (gst_flac_dec_write):
1097         Fix 'xyz may be used uninitialized' compiler warnings caused
1098         by broken g_assert_not_reached() macro in GLib-2.15.x and don't
1099         abort() in any case but properly report the error.
1100
1101 2007-12-26  Tim-Philipp Müller  <tim at centricular dot net>
1102
1103         * gst/avi/gstavidemux.c: (gst_avi_demux_loop):
1104         * gst/wavparse/gstwavparse.c: (gst_wavparse_chain):
1105         * sys/ximage/gstximagesrc.c: (composite_pixel):
1106           Fix 'xyz may be used uninitialized' compiler warnings caused
1107           by broken g_assert_not_reached() macro in GLib-2.15.x (it's
1108           not really nice to abort in any case). Fixes #505745.
1109
1110 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
1111
1112         * tests/check/elements/avisubtitle.c: (check_correct_buffer):
1113           Small unit test fix (has no practical impact at the moment,
1114           since we're only feeding utf8 and hence just create a sub-
1115           buffer for the output).
1116
1117 2007-12-18  Thijs Vermeir <thijsvermeir@gmail.com>
1118
1119         * gst/avi/gstavisubtitle.c:
1120         * tests/check/elements/avisubtitle.c:
1121         Add seeking support for avi subtitle
1122
1123 2007-12-18  Wim Taymans  <wim.taymans@collabora.co.uk>
1124
1125         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
1126         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
1127         (gst_flac_dec_write):
1128         * ext/flac/gstflacdec.h:
1129         Remove some unused vars.
1130         Do more cleanup of leftover events and tags.
1131         Output tags after the segment event. Fixes #504018.
1132
1133 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
1134
1135         * gst/avi/gstavisubtitle.c: (IS_BOM_UTF8), (IS_BOM_UTF16_BE),
1136           (IS_BOM_UTF16_LE), (IS_BOM_UTF32_BE), (IS_BOM_UTF32_LE),
1137           (gst_avi_subtitle_extract_file), (gst_avi_subtitle_parse_gab2_chunk):
1138           Detect other UTF byte order markers and convert to UTF-8 as
1139           appropriate.
1140
1141 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
1142
1143         * gst/avi/gstavisubtitle.c: (src_template),
1144           (gst_avi_subtitle_extract_utf8_file),
1145           (gst_avi_subtitle_parse_gab2_chunk), (gst_avi_subtitle_chain),
1146           (gst_avi_subtitle_base_init), (gst_avi_subtitle_class_init),
1147           (gst_avi_subtitle_init), (gst_avi_subtitle_change_state):
1148         * gst/avi/gstavisubtitle.h:
1149           Refactor a bit; fix name extraction; don't assume all the data
1150           in the chunk is actually subtitle data, there may be padding at
1151           the end; fix GST_ELEMENT_ERROR usage; store extracted subtitle
1152           file so it's there to send again after a seek (for future use).
1153
1154 2007-12-18  Thijs Vermeir  <thijsvermeir@gmail.com>
1155
1156         * gst/avi/Makefile.am:
1157         * gst/avi/gstavi.c:
1158         * gst/avi/gstavisubtitle.c:
1159         * gst/avi/gstavisubtitle.h:
1160         * tests/check/Makefile.am:
1161         * tests/check/elements/avisubtitle.c:
1162         * win32/common/config.h:
1163                 Add avi subtitle element for bug #442034. Need seeking support
1164                 and more support for character conversion.
1165
1166 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
1167
1168         * Makefile.am:
1169           Include common/win32.mak for CRLF check of win32 project
1170           files (see #393626).
1171
1172         * win32/vs6/libgstpng.dsp:
1173           Fix line endings and do cvs admin -kb.
1174
1175 2007-12-17  Edward Hervey  <edward.hervey@collabora.co.uk>
1176
1177         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
1178         Actually drop the buffers which are outside the currently configured
1179         segment instead of just emitting a WARNING.
1180
1181 2007-12-14  Wim Taymans  <wim.taymans@collabora.co.uk>
1182
1183         * ext/flac/gstflacdec.c: (gst_flac_dec_metadata_callback),
1184         (gst_flac_dec_write):
1185         * ext/flac/gstflacdec.h:
1186         Send segments from the streaming thread. Fixes #502187.
1187         Fix segment seeking and a bunch of other seeking cases.
1188
1189 2007-12-14  Tim-Philipp Müller  <tim at centricular dot net>
1190
1191         * gst/id3demux/id3v2frames.c: (parse_url_link_frame):
1192           Parse WOAF frames and put the result into GST_TAG_CONTACT,
1193           which is where it would end up if the same information was
1194           put in a vorbis comment (don't think it's worth adding a
1195           new URI tag for this). Fixes #488112.
1196
1197 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
1198
1199         * configure.ac:
1200           We need core/base 0.10.15 or later.
1201
1202 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1203
1204         Patch by: Mark Nauwelaerts <manauw skynet be>
1205
1206         * gst/avi/gstavimux.c: (gst_avi_mux_start_file):
1207         Fix regression in stream numbering. Fixes #502655.
1208
1209 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1210
1211         Patch by: Wai-Ming Ho <webregbox at yahoo dot co dot uk>
1212
1213         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_init),
1214         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
1215         (next_start_code), (is_nal_equal), (gst_rtp_h264_pay_decode_nal),
1216         (encode_base64), (gst_rtp_h264_pay_parse_sps_pps),
1217         (gst_rtp_h264_pay_handle_buffer):
1218         * gst/rtp/gstrtph264pay.h:
1219         Use higher performance start-code searching.
1220         Parse NALs and store SPS, PPS and profile in the caps so that they can
1221         be used in the SDP. Fixes #502814.
1222
1223 2007-12-11  Tim-Philipp Müller  <tim at centricular dot net>
1224
1225         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
1226         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list):
1227           Init some structs to zero before we pass them to ioctl, which
1228           avoids valgrind warnings.  Also fix a small memory leak.
1229
1230 2007-12-11  Wim Taymans  <wim.taymans@collabora.co.uk>
1231
1232         Patch by: Wouter Cloetens <wouter at mind dot be>
1233
1234         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
1235         Copy timestamp from input to output. Not very perfect yet but better
1236         than nothing. Fixes #503023.
1237
1238 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
1239
1240         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
1241           Also print a useful error message with the old Wavpack API
1242           if possible.
1243
1244 2007-12-09  Tim-Philipp Müller  <tim at centricular dot net>
1245
1246         * ext/wavpack/gstwavpackdec.c:
1247           More build fixes for old libwavpack versions: include config.h so
1248           that WAVPACK_OLD_API is actually defined as detected; only use
1249           WavpackGetErrorMessage if it is available. This fixes the build
1250           on debian stable for me.
1251
1252 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
1253
1254         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
1255         * ext/wavpack/gstwavpackparse.c:
1256           (gst_wavpack_parse_create_src_pad):
1257           Workaround the non-existance of WavpackGetChannelMask in Wavpack
1258           versions below 4.40.0.
1259
1260 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
1261
1262         * configure.ac:
1263           And now do it right for real...
1264
1265 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
1266
1267         * configure.ac:
1268           Correctly reset $LIBS to not contain -lm.
1269
1270 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
1271
1272         Based on a patch by: Kwang Yul Seo <kwangyul dot seo at gmail dot com>
1273
1274         * configure.ac:
1275         * ext/cairo/gsttimeoverlay.c:
1276           (gst_cairo_time_overlay_print_smpte_time):
1277           Fix compilation with MSVC by using gst_util_guint64_to_gdouble()
1278           and checking for rint() and implementing it ourself if it doesn't
1279           exist. Fixes #497293.
1280
1281 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
1282
1283         * configure.ac:
1284           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
1285
1286 2007-12-08  Jan Schmidt  <jan.schmidt@sun.com>
1287
1288         * sys/oss/gstosshelper.c:
1289         Verify that the format returned after the ioctl is the one
1290         we requested. It is valid for the ioctl to succeed while
1291         substituting an alternate 'supported' sample format.
1292
1293 2007-12-07  Tim-Philipp Müller  <tim at centricular dot net>
1294
1295         * sys/oss/gstossaudio.c: (plugin_init):
1296         * sys/oss/gstosssink.c: (gst_oss_sink_open):
1297         * sys/oss/gstosssrc.c: (gst_oss_src_open):
1298           Post decent (and translated) error message when we can't
1299           open the audio device for some reason.
1300
1301 2007-12-07  Jan Schmidt  <jan.schmidt@sun.com>
1302
1303         * sys/oss/gstosssink.c:
1304         * sys/oss/gstosssrc.c:
1305         Allow the AUDIODEV environment variable to redirect us
1306         to a different default OSS device, like sunaudiosink does
1307         on Solaris (makes audio play automatically on SunRays).
1308
1309 2007-12-06  Sebastian Dröge  <slomo@circular-chaos.org>
1310
1311         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
1312         * gst/audiofx/audiochebyshevfreqband.c:
1313         (gst_audio_chebyshev_freq_band_transform_ip):
1314         * gst/audiofx/audiochebyshevfreqlimit.c:
1315         (gst_audio_chebyshev_freq_limit_transform_ip):
1316         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
1317         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
1318         The transform_ip() methods should do nothing if in passthrough mode.
1319         It might get non-writable buffers in that case but the buffer might
1320         as well be writable.
1321
1322         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_transform):
1323         The transform() methods won't be called in passthrough mode and
1324         otherwise the buffer is always writable so don't check here.
1325
1326 2007-12-06  Tim-Philipp Müller  <tim at centricular dot net>
1327
1328         * gst/wavparse/gstwavparse.c: (gst_wavparse_srcpad_event):
1329           Fix seeking in .wav files again (#501775).  Some people seem to think
1330           they don't need to test their changes when they're just 'reflowing'
1331           some code.
1332
1333 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
1334
1335         * gst/autodetect/gstautovideosink.c:
1336         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
1337         (gst_auto_video_sink_init),
1338         (gst_auto_video_sink_create_element_with_pretty_name),
1339         (gst_auto_video_sink_find_best),
1340         (gst_auto_video_sink_set_property),
1341         (gst_auto_video_sink_get_property):
1342         * gst/autodetect/gstautovideosink.h:
1343         Fix docs.
1344         Use same error reporting code as autoaudiosink.
1345         Add property to filter sinks based on caps. Only select raw video sinks
1346         by default for backwards compat.
1347         API: GstAutoVideoSink::filter-caps
1348
1349 2007-12-05  Wim Taymans  <wim.taymans@gmail.com>
1350
1351         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1352
1353         * gst/autodetect/gstautoaudiosink.c:
1354         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
1355         (gst_auto_audio_sink_init), (gst_auto_audio_sink_find_best),
1356         (gst_auto_audio_sink_set_property),
1357         (gst_auto_audio_sink_get_property):
1358         * gst/autodetect/gstautoaudiosink.h:
1359         Add property to filter sinks based on caps. Only select raw audio sinks
1360         by default for backwards compat.  Fixes #417420.
1361         API: GstAutoAudioSink::filter-caps
1362
1363 2007-11-29  Michael Smith <msmith@fluendo.com>
1364
1365         Patch by: Arek Korbik <arkadini@gmail.com>
1366
1367         * gst/videobox/gstvideobox.c: (plugin_init):
1368           Initialise liboil in plugin_init()
1369
1370 2007-11-29  Wim Taymans  <wim.taymans@gmail.com>
1371
1372         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
1373         Post error before sending EOS. Fixes #499178.
1374
1375 2007-11-28  Sebastien Moutte  <sebastien@moutte.net>
1376
1377         * win32/vs6/gst_plugins_good.dsw:
1378         * win32/vs6/libgstpng.dsp:
1379         Add a project file for libgstpng
1380
1381 2007-11-28  Edward Hervey  <bilboed@bilboed.com>
1382
1383         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_class_init),
1384         (gst_rtp_h263_depay_process):
1385         Code beautification.
1386         Added debug statements.
1387         Don't bit-shift everything, just do operations on last/first byte
1388         instead.
1389
1390 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
1391
1392         Patch by: Jayarama S. Santana <sundarsantana at gmail dot com>
1393
1394         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_process):
1395         Fix wrong comparison in overrun check. Fixes #499239 some more.
1396
1397 2007-11-27  Edward Hervey  <bilboed@bilboed.com>
1398
1399         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_init),
1400         (gst_rtp_h263_depay_process):
1401         * gst/rtp/gstrtph263depay.h:
1402         Fix h263 depayloader so that ANY h263 decoder can handle the outgoing
1403         stream.
1404
1405 2007-11-26  Wim Taymans  <wim.taymans@gmail.com>
1406
1407         Based on Path by: Jayarama S. Santana <sundarsantana at gmail dot com>
1408
1409         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_setcaps),
1410         (gst_rtp_mp4a_depay_process):
1411         * gst/rtp/gstrtpmp4adepay.h:
1412         Fix depayloading when multiple frames are inside one RTP packet.
1413         Fixes #499239.
1414
1415 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
1416
1417         * gst/level/gstlevel.c:
1418           Add GAP-flag support.
1419
1420 2007-11-26  Edward Hervey  <bilboed@bilboed.com>
1421
1422         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_process):
1423         Read the I flag for Mode A h263 rtp stream and set the
1424         GST_BUFFER_FLAG_DELTA_UNIT accordingly.
1425         Fixes #499383
1426
1427 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
1428
1429         * gst/level/gstlevel.c:
1430           Remove some dead code and do cleanups.
1431
1432 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
1433
1434         * tests/check/pipelines/simple-launch-lines.c:
1435           Improve the tests by allowing to set a target state.
1436
1437 2007-11-26  Sebastian Dröge  <slomo@circular-chaos.org>
1438
1439         * tests/check/elements/wavpackenc.c: (GST_START_TEST):
1440         Don't check the caps of the output buffer if they're equal some
1441         other caps. The caps can change in a backward compatible way
1442         and did at this point.
1443
1444 2007-11-24  Julien MOUTTE  <julien@moutte.net>
1445
1446         * gst/qtdemux/qtdemux.c: (gst_qtdemux_find_segment),
1447         (gst_qtdemux_move_stream), (gst_qtdemux_do_seek),
1448         (gst_qtdemux_seek_to_previous_keyframe),
1449         (gst_qtdemux_activate_segment), (gst_qtdemux_advance_sample),
1450         (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop): Implement
1451         reverse playback support.
1452
1453 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
1454
1455         * ext/wavpack/gstwavpackcommon.c: (gst_wavpack_set_channel_layout):
1456         Also set the channel layout on the Wavpack caps if we're having
1457         a mono layout. Of course only do it for "audio/x-wavpack".
1458
1459 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
1460
1461         * ext/wavpack/gstwavpackcommon.c:
1462         (gst_wavpack_get_default_channel_mask),
1463         (gst_wavpack_set_channel_layout),
1464         (gst_wavpack_get_default_channel_positions),
1465         (gst_wavpack_get_channel_mask_from_positions),
1466         (gst_wavpack_set_channel_mapping):
1467         * ext/wavpack/gstwavpackcommon.h:
1468         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
1469         (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_chain):
1470         * ext/wavpack/gstwavpackdec.h:
1471         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset),
1472         (gst_wavpack_enc_init), (gst_wavpack_enc_sink_set_caps),
1473         (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_push_block),
1474         (gst_wavpack_enc_fix_channel_order), (gst_wavpack_enc_chain),
1475         (gst_wavpack_enc_rewrite_first_block),
1476         (gst_wavpack_enc_sink_event):
1477         * ext/wavpack/gstwavpackenc.h:
1478         * ext/wavpack/gstwavpackparse.c:
1479         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
1480         (gst_wavpack_parse_scan_to_find_sample),
1481         (gst_wavpack_parse_sink_event), (gst_wavpack_parse_create_src_pad),
1482         (gst_wavpack_parse_push_buffer), (gst_wavpack_parse_loop):
1483         * ext/wavpack/gstwavpackparse.h:
1484         Add support for encoding, parsing and decoding multichannel
1485         files with up to 8 channels. This also improves the robustness
1486         of parsing quite a bit.
1487
1488         * ext/wavpack/gstwavpackstreamreader.c:
1489         (gst_wavpack_stream_reader_read_bytes),
1490         (gst_wavpack_stream_reader_get_pos),
1491         (gst_wavpack_stream_reader_set_pos_abs),
1492         (gst_wavpack_stream_reader_set_pos_rel),
1493         (gst_wavpack_stream_reader_push_back_byte),
1494         (gst_wavpack_stream_reader_get_length),
1495         (gst_wavpack_stream_reader_can_seek),
1496         (gst_wavpack_stream_reader_write_bytes):
1497         Improve debugging.
1498
1499 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
1500
1501         * ext/libpng/gstpngdec.c:
1502         * ext/libpng/gstpngdec.h:
1503           Don't release the png-memory from within the callback.
1504
1505 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
1506
1507         Patch by: René Stadler <mail at renestadler dot de>
1508
1509         * ext/libpng/gstpngenc.c:
1510           Don't leak buffer data memory. Fixes #498395.
1511
1512 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
1513
1514         Patch by: René Stadler <mail at renestadler dot de>
1515
1516         * tests/check/pipelines/simple-launch-lines.c:
1517           Tests for #498395.
1518
1519 2007-11-20  Julien MOUTTE  <julien@moutte.net>
1520
1521         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag),
1522         (gst_tag_lib_mux_adjust_event_offsets):
1523         * gst/qtdemux/qtdemux.c: (qtdemux_parse_theora_extension):
1524         * sys/osxaudio/Makefile.am:
1525         * sys/osxvideo/cocoawindow.h:
1526         * sys/osxvideo/cocoawindow.m: Fix build on Mac OS X 10.5
1527
1528 2007-11-15  David Schleef  <ds@schleef.org>
1529
1530         * ext/cairo/gsttextoverlay.c:
1531           Change strcasecmp() to g_strcasecmp().  Fixes #497292.
1532
1533 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
1534
1535         Patch by: Jordi Jaen Pallares <jordijp at gmail dot com>
1536
1537         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_class_init),
1538         (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_finalize),
1539         (gst_rtp_mp2t_pay_flush), (gst_rtp_mp2t_pay_handle_buffer):
1540         * gst/rtp/gstrtpmp2tpay.h:
1541         Fill the MTU with as many packets as possible. Fixes #491323.
1542
1543 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
1544
1545         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1546
1547         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
1548         Fix some more leaks. Fixes #497007.
1549
1550 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
1551
1552         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1553
1554         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_free),
1555         (gst_rtspsrc_stream_configure_tcp):
1556         Fix 3 pad leaks. Fixes #496983.
1557
1558 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
1559
1560         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1561
1562         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
1563         Fix small leak. Fixes #497017.
1564
1565 2007-11-15  Wim Taymans  <wim.taymans@gmail.com>
1566
1567         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1568         (gst_qtdemux_prepare_current_sample),
1569         (gst_qtdemux_loop_state_movie), (qtdemux_parse_theora_extension),
1570         (qtdemux_parse_node), (qtdemux_parse_trak), (qtdemux_video_caps):
1571         * gst/qtdemux/qtdemux_fourcc.h:
1572         * gst/qtdemux/qtdemux_types.c:
1573         Add suppport for theora in quicktime according to XiphQT.
1574
1575 2007-11-15  Edgard Lima  <edgard.lima@indt.org.br>
1576
1577         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
1578         (gst_v4l2src_init), (gst_v4l2src_set_property),
1579         (gst_v4l2src_get_property):
1580         * sys/v4l2/gstv4l2src.h:
1581         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
1582           Always copy buffers by default (handle safer with bugged drivers)
1583           and added a property to make it possible to use mmap effectively (no
1584           copy if possible) when application wants to. Fixes: #480557.
1585
1586 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
1587
1588         * gst/id3demux/id3tags.c:
1589         * gst/id3demux/id3tags.h:
1590         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
1591           We don't want the same string multiple times in a tag list for the
1592           same tag ever, for any tag, not just for GST_TAG_GENRE, so make sure
1593           this doesn't happen and remove special-case code for GST_TAG_GENRE.
1594
1595 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
1596
1597         * ext/taglib/gstid3v2mux.cc: (add_musicbrainz_tag), (add_funcs):
1598           Write GST_TAG_MUSICBRAINZ_DISCID and GST_TAG_CDDA_CDDB_DISCID
1599           into ID3v2 TXXX frames (fixes #347848).
1600
1601 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
1602
1603         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1604           Don't leak sdp message contents (fixes #496773).
1605
1606         * gst/udp/gstudpsink.c: (gst_udpsink_finalize):
1607           Don't leak URI string.
1608
1609 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
1610
1611         Patch by: Julien Puydt <julien dot puydt at laposte net>
1612
1613         * ext/raw1394/Makefile.am:
1614         * ext/raw1394/gst1394probe.c: (gst_1394_get_guid_array),
1615           (gst_1394_property_probe_get_properties),
1616           (gst_1394_property_probe_probe_property),
1617           (gst_1394_property_probe_needs_probe),
1618           (gst_1394_property_probe_get_values),
1619           (gst_1394_property_probe_interface_init),
1620           (gst_1394_type_add_property_probe_interface):
1621         * ext/raw1394/gst1394probe.h: (GST_1394_PROBE_H):
1622         * ext/raw1394/gstdv1394src.c: (_do_init), (gst_dv1394src_class_init),
1623           (gst_dv1394src_init), (gst_dv1394src_dispose),
1624           (gst_dv1394src_set_property), (gst_dv1394src_get_property),
1625           (gst_dv1394src_discover_avc_node), (gst_dv1394src_query),
1626           (gst_dv1394src_update_device_name):
1627         * ext/raw1394/gstdv1394src.h:
1628           Implement GstPropertyProbe interface and add "device-name" property,
1629           so applications can use this to probe for available devices in the
1630           same way they can already with v4lsrc and v4l2src (however horrible
1631           this property probe interface may be). Fixes #358841.
1632
1633 2007-11-14  Tim-Philipp Müller  <tim at centricular dot net>
1634
1635         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1636
1637         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
1638           (gst_rtspsrc_parse_range):
1639           Don't leak event, don't leak range (fixes #496752).
1640
1641 2007-11-14  Michael Smith <msmith@fluendo.com>
1642
1643         Patch by: Arek Korbik <arkadini@gmail.com>
1644
1645         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
1646           Detect RGBA/BGRA correctly on little endian systems.
1647
1648 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
1649
1650         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format):
1651           If VIDIOC_ENUM_FRAMESIZES is defined (= recent kernel), but the
1652           corresponding ioctl() call fails even though the driver claims to
1653           support this format, just fall back to the pre-2.6.19 kernel
1654           routine that creates caps with suitable height and width ranges
1655           (see #448278).
1656
1657 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
1658
1659         Patch by: Mark Nauwelaerts <manauw skynet be>
1660
1661         * gst/matroska/matroska-demux.c:
1662           (gst_matroska_demux_push_dvd_clut_change_event),
1663           (gst_matroska_demux_parse_blockgroup_or_simpleblock),
1664           (gst_matroska_demux_subtitle_caps):
1665         * gst/matroska/matroska-ids.h:
1666           Extract palette data for dvd subpicture streams and send it
1667           downstream as custom gstreamer dvd event (fixes #453417).
1668
1669 2007-11-13  Tim-Philipp Müller  <tim at centricular dot net>
1670
1671         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_font_init):
1672           Implement minimal parsing of the passed pango font description
1673           string, so passing a font size works the same as with the
1674           pango textoverlay plugin; fixes #455086.
1675           (Maybe we could just use pangocairo here at some point).
1676
1677 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
1678
1679         * gst/avi/gstavidemux.c:
1680         * gst/wavparse/gstwavparse.c:
1681           Return the result in _activate_pull(). Don't ref element there.
1682
1683 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
1684
1685         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
1686         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
1687         (gst_wavparse_srcpad_event):
1688           Ref the element when we should, but not when we its not needed. Reflow
1689           the event_handling to not leak the event.       
1690
1691 2007-11-12  Edward Hervey  <bilboed@bilboed.com>
1692
1693         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
1694         (qtdemux_parse_samples):
1695         Properly free QTDemuxSamples array.
1696         Protect table write with a sensible check, some files apparently DO contain
1697         stts values starting with 0 :(
1698
1699 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
1700
1701         * gst/avi/gstavidemux.c:
1702         * gst/qtdemux/qtdemux.c:
1703           Drop QOS in _handle_src_event(). Fix the refcount in qtdemux that
1704           previous commit messed up.
1705
1706 2007-11-12  Stefan Kost  <ensonic@users.sf.net>
1707
1708         * gst/avi/gstavidemux.c:
1709         * gst/qtdemux/qtdemux.c:
1710           Sync _handle_src_event() with oggdemux. In avidemux also ref the
1711           element when we should, but not when we its not needed.
1712
1713 2007-11-08  Stefan Kost  <ensonic@users.sf.net>
1714
1715         * gst/wavparse/gstwavparse.c:
1716           Return FALSE if we can't handle a query instead of changing the
1717           format. Ignore fact when dealing with mpeg audio.
1718
1719 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
1720
1721         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
1722
1723         * configure.ac:
1724         * gst/udp/gstdynudpsink.c:
1725         * gst/udp/gstdynudpsink.h:
1726         * gst/udp/gstmultiudpsink.c:
1727         * gst/udp/gstmultiudpsink.h:
1728         * gst/udp/gstudpsink.c:
1729         * gst/udp/gstudpsink.h:
1730           Fix includes for MSVC and GLib-2.14.0 (#492388).
1731
1732         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
1733           No more pipe define since GLib-2.14.0, need to use _pipe() directly.
1734
1735 2007-11-02  Edward Hervey  <bilboed@bilboed.com>
1736
1737         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
1738         (gst_mulawdec_chain):
1739         * gst/law/mulaw-decode.h:
1740         Calculate outgoing buffer duration if incoming buffer didn't have a
1741         valid duration.
1742
1743 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
1744
1745         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
1746         (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie):
1747         Smarter combine_flow code that also deals with downstream elements
1748         returning UNEXPECTED when they receive data out of the segment
1749         boundaries. Fixes #491305.
1750
1751 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
1752
1753         * sys/v4l2/v4l2src_calls.c:
1754           Fix 'unused variable' compiler warning when compiling against
1755           older kernel headers.
1756
1757 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
1758
1759         * ext/taglib/gstid3v2mux.cc (add_funcs):
1760           Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
1761
1762 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
1763
1764         * tests/check/pipelines/simple-launch-lines.c:
1765            Improve the tests a little more.
1766
1767 2007-10-23  Zaheer Abbas Merali <zaheerabbas at merali dot org>
1768
1769         patch by: Yun Zheng Hu
1770
1771         * sys/osxaudio/gstosxaudiosrc.c:
1772         Use default input device instead of default output device and
1773         only memcpy actual available bytes.
1774
1775 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
1776
1777         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
1778           Fixes "v4l2src ! queue ! xvimagesink". The queue ask for buffer too
1779           early. It is temporary until we find something better.
1780
1781 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
1782
1783         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1784
1785         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved):
1786         Fix race when pausing a RTSP stream in interleaved.
1787         Fixes #475784.
1788
1789 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
1790
1791         Patch by: Peter Kjellerstedt <pkj at axis com>
1792
1793         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_finalize):
1794         Use correct unref function for buffers. #488844.
1795
1796 2007-10-19  Stefan Kost  <ensonic@users.sf.net>
1797
1798         * gst/avi/gstavimux.c:
1799         * tests/check/elements/avimux.c:
1800           Add some debug and sync tests with the fix.     
1801
1802 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
1803
1804         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
1805
1806         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
1807         When the socket is used by the app for other purposes, don't generate an
1808         error if there is activaty on the socket that is not data related.
1809         Fixes #487488.
1810
1811 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
1812
1813         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_finalize),
1814         (gst_v4l2src_grab_frame):
1815         Add some more debug info. Generate an error when we run out of buffers
1816         for some reason. See #480557.
1817
1818 2007-10-18  Wim Taymans  <wim.taymans@gmail.com>
1819
1820         Patch by: Anders Skargren <anders dot skargren at axis dot com>
1821
1822         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
1823         Set marker bit correctly.
1824
1825 2007-10-17  Wim Taymans  <wim.taymans@gmail.com>
1826
1827         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
1828         Use allowed name for the GstStructure.
1829
1830 2007-10-17  Tim-Philipp Müller  <tim at centricular dot net>
1831
1832         * ext/gconf/gstswitchsink.c:
1833         * gst/autodetect/gstautoaudiosink.c:
1834           Use new gst_bus_pop_filtered().
1835
1836 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
1837
1838         * sys/v4l2/gstv4l2src.c:
1839         * sys/v4l2/v4l2src_calls.c:
1840           When probing the formats and sizes a camera supports, make
1841           sure the best ones (highest resolution, prefered format)
1842           end up at the beginning of the probed caps and the less
1843           desirable ones at the end.  This is important because the
1844           order within the caps matters for things like fixation and
1845           negotiation, ie. what format is chosen in the end.
1846           With recent kernels, the current probing code will end up
1847           querying the supported sizes from lowest resolution to
1848           highest resolution, adding them to the probed caps in that
1849           order, resulting to v4l2src fixating to the lowest possible
1850           resolution if downstream does not express a size preference.
1851           Also make up a somewhat random ranking of prefered output
1852           formats for the same reason. Fixes #485828.
1853         
1854 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
1855
1856         Based on patch by: Jason Kivlighn  <jkivlighn gmail com>
1857
1858         * gst/id3demux/id3v2frames.c:
1859           Extract license/copyright URIs from ID3v2 WCOP frames
1860           (Fixes #447000).
1861
1862         * tests/check/elements/id3demux.c:
1863         * tests/files/Makefile.am:
1864         * tests/files/id3-447000-wcop.tag:
1865           Add simple unit test.
1866
1867 2007-10-11  Tim-Philipp Müller  <tim at centricular dot net>
1868
1869         * ext/taglib/gstid3v2mux.cc:
1870           Add support for license/copyright URI tags (ID3v2 WCOP frame).
1871           Prerequisite for #447000.
1872
1873 2007-10-08  Jan Schmidt  <Jan.Schmidt@sun.com>
1874
1875         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush):
1876         Fix compiler warning by using GST_CLOCK_TIME_NONE to initialise
1877         a GstClockTime.
1878
1879 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
1880
1881         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
1882         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
1883         (gst_rtspsrc_configure_caps), (gst_rtspsrc_loop_udp),
1884         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_play),
1885         (gst_rtspsrc_change_state):
1886         More seeking fixes, mostly passing around the new playback segment in
1887         order to configure it properly.
1888         Also reset base_time of udp sources when setting them back to PLAYING as
1889         a temporary hack until core supports seek in live sources properly.
1890
1891 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
1892
1893         * gst/rtp/gstrtpmp4adepay.c:
1894         Fix caps as to not confuse autopluggers.
1895
1896 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
1897
1898         * gst/id3demux/gstid3demux.c:
1899         * gst/id3demux/gstid3demux.h:
1900         * gst/id3demux/id3tags.c:
1901         * gst/id3demux/id3tags.h:
1902         * gst/id3demux/id3v2frames.c:
1903           Port ID3 tag demuxer over to the new GstTagDemux in -base
1904           (now would be a good time to test re-importing your music
1905           collection).
1906
1907 2007-10-06  Tim-Philipp Müller  <tim at centricular dot net>
1908
1909         * gst/apetag/Makefile.am:
1910         * gst/apetag/gstapedemux.c:
1911         * gst/apetag/gstapedemux.h:
1912         * gst/apetag/gsttagdemux.c:
1913         * gst/apetag/gsttagdemux.h:
1914           Port APE tag demuxer over to the new GstTagDemux in -base.
1915
1916 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
1917
1918         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
1919         (gst_rtspsrc_perform_seek), (gst_rtspsrc_handle_src_event),
1920         (gst_rtspsrc_handle_internal_src_query),
1921         (gst_rtspsrc_handle_src_query), (new_session_pad),
1922         (gst_rtspsrc_stream_configure_tcp),
1923         (gst_rtspsrc_stream_configure_transport),
1924         (gst_rtspsrc_loop_send_cmd):
1925         Improve flushing behaviour.
1926         Set state of the udp sources to PAUSE/PLAYING correctly.
1927         Handle events and queries for UDP and TCP transport now.
1928
1929 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
1930
1931         * gst/rtp/gstrtpgsmdepay.c:
1932         * gst/rtp/gstrtpgsmpay.c:
1933           Add log category.
1934
1935 2007-10-04  Stefan Kost  <ensonic@users.sf.net>
1936
1937         Patch by: Timo Hotti <Timo.Hotti@sysopendigia.com>
1938
1939         * tests/check/Makefile.am:
1940         * tests/check/pipelines/simple-launch-lines.c:
1941           Add unit tests for payloaders/depayloaders.
1942
1943 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
1944
1945         * gst/avi/gstavimux.c:
1946         * gst/avi/gstavimux.h:
1947           Also save codec data for audio streams. Fixes #482495.
1948
1949 2007-10-02  Stefan Kost  <ensonic@users.sf.net>
1950
1951         * gst/avi/gstavimux.c:
1952           Fix "Index entry has invalid stream nr 1".
1953           Add support for muxing aac - work in progress (see #482495).
1954
1955 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
1956
1957         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_bandwidth),
1958         (gst_rtspsrc_collect_bandwidth), (gst_rtspsrc_create_stream),
1959         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
1960         * gst/rtsp/gstrtspsrc.h:
1961         Parse bandwidth modifiers, they are not yet configured in the session
1962         manager because we don't have an API for that yet.
1963
1964 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
1965
1966         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
1967         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_loop_interleaved):
1968         Use shiny new function in -base to get the default clock-rate.
1969         Update some docs.
1970
1971 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
1972
1973         * win32/MANIFEST:
1974         Add files to win32 manifest.
1975         * win32/vs6/libgstaudiofx.dsp:
1976         * win32/vs6/libgstqtdemux.dsp:
1977         * win32/vs6/libgstrtp.dsp:
1978         * win32/vs6/libgstrtsp.dsp:
1979         Update project files.
1980
1981 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
1982
1983         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
1984         (gst_rtspsrc_play):
1985         * gst/rtsp/gstrtspsrc.h:
1986         In TCP mode, only timestamp the first buffer. TCP is not real time and
1987         it does not make sense to try to skew compensate, also some servers send
1988         the first batch of data in a burst.
1989
1990 2007-09-27  Tim-Philipp Müller  <tim at centricular dot net>
1991
1992         * gst/matroska/matroska-demux.c:
1993           Fix setting the discont flag on the first buffer
1994           pushed downstream for formats with private codec
1995           data that needs to be deserialised into buffers
1996           (such as vorbis and FLAC when in a matroska container).
1997
1998 2007-09-27  Wim Taymans  <wim.taymans@gmail.com>
1999
2000         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2001
2002         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
2003         (gst_rtp_mp4v_pay_finalize), (gst_rtp_mp4v_pay_flush),
2004         (gst_rtp_mp4v_pay_handle_buffer):
2005         * gst/rtp/gstrtpmp4vpay.h:
2006         Free the config string. Fixes #480707.
2007         Clean up the timestamp code a little.
2008
2009 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
2010
2011         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
2012         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_loop_interleaved),
2013         (gst_rtspsrc_loop_udp), (gst_rtspsrc_close):
2014         * gst/rtsp/gstrtspsrc.h:
2015         Set timestamps on RTP buffers in interleaved mode.
2016         Mark first buffers with a DISCONT.
2017         Remove flush hack now that sync for live sources has been figured out.
2018
2019 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
2020
2021         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
2022         Update documentation.
2023
2024 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
2025
2026         * gst/qtdemux/gstrtpxqtdepay.c: (gst_rtp_xqt_depay_process),
2027         (gst_rtp_xqt_depay_change_state):
2028         * gst/qtdemux/gstrtpxqtdepay.h:
2029         Fail if we don't know the quicktime format.
2030
2031 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
2032
2033         * ext/flac/gstflacenc.c:
2034         * ext/flac/gstflacenc.h:
2035           Save the flow return from the last gst_pad_push() and
2036           make sure we pass the right flow return value upstream
2037           in the case of failure; minor clean-ups.
2038
2039 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2040
2041         * ext/taglib/gstapev2mux.cc:
2042         * ext/taglib/gstid3v2mux.cc:
2043         * gst/apetag/gstapedemux.c:
2044           Add support for the new GST_TAG_COMPOSER (#459809).
2045
2046 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2047
2048         * gst/law/alaw-decode.c:
2049         * gst/law/alaw-decode.h:
2050         * gst/law/alaw-encode.c:
2051         * gst/law/alaw-encode.h:
2052         * gst/law/alaw.c:
2053         * gst/law/mulaw-conversion.h:
2054           Compulsive clean-ups: use boilerplate macros, add debug
2055           categories, fix up things to conform to symbol nomenklatura,
2056           etc.
2057
2058 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
2059
2060         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
2061
2062         * gst/law/alaw-decode.c:
2063         * gst/law/alaw-encode.c:
2064           Use static tables for A-Law decoding and encoding; this makes
2065           A-Law decoding and encoding less CPU-intensive, but increases
2066           the binary size a bit. Leaving old code around for now,
2067           selectable by a define in the code. Fixes #435435.
2068
2069 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
2070
2071         * configure.ac:
2072         Use AG_GST_ARG_WITH_PLUGINS, AG_GST_ARG_ENABLE_EXTERNAL and
2073         AG_GST_ARG_ENABLE_EXPERIMENTAL instead of duplicating those macros
2074         in configure.ac.
2075
2076 2007-09-25  Sebastian Dröge  <slomo@circular-chaos.org>
2077
2078         Patch by: Jan Gerber <j at bootlab dot org>
2079
2080         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
2081         Add fourccs for MPEG2 HDV streams. Fixes #479960.
2082
2083 2007-09-23  Stefan Kost  <ensonic@users.sf.net>
2084
2085         * sys/oss/gstosshelper.c:
2086           Use GST_WARNING instead of a g_critical. This situation is not caused
2087           by the application.
2088
2089 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2090
2091         * po/LINGUAS:
2092         * po/nl.po:
2093           Updated translations.
2094
2095 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2096
2097         translated by: Mikel Olasagasti <hey_neken@mundurat.net>
2098
2099         * po/eu.po:
2100           Added Basque translation.
2101
2102 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2103
2104         translated by: Abel Cheung <abelcheung@gmail.com>
2105
2106         * po/zh_HK.po:
2107         * po/zh_TW.po:
2108           Added Chinese (traditional and Hong Kong) translation.
2109
2110 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2111
2112         translated by: Jakub Bogusz <qboosh@pld-linux.org>
2113
2114         * po/pl.po:
2115           Added Polish translation.
2116
2117 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2118
2119         translated by: Ilkka Tuohela <hile@iki.fi>
2120
2121         * po/fi.po:
2122           Added Finnish translation.
2123
2124 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2125
2126         translated by: Jorge González González <aloriel@gmail.com>
2127
2128         * po/es.po:
2129           Added Spanish translation.
2130
2131 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2132
2133         translated by: Mogens Jaeger <mogens@jaeger.tf>
2134
2135         * po/da.po:
2136           Added Danish translation.
2137
2138 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2139
2140         translated by: Funda Wang <fundawang@linux.net.cn>
2141
2142         * po/zh_CN.po:
2143           Added Chinese (simplified) translation.
2144
2145 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2146
2147         translated by: Alexander Shopov <ash@contact.bg>
2148
2149         * po/bg.po:
2150           Added Bulgarian translation.
2151
2152 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
2153
2154         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_process):
2155         Set outgoing packet duration because we can. Fixes #478244 some more.
2156
2157 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
2158
2159         * ext/cairo/gsttextoverlay.c:
2160           Add info about static leak.
2161         
2162         * tests/check/Makefile.am:
2163         * tests/check/generic/states.c:
2164           Improved state change unit test.
2165
2166 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
2167
2168         * docs/plugins/.cvsignore:
2169         * tests/check/.cvsignore:
2170           Ignore registries in any format.
2171
2172 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
2173
2174         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_handle_buffer):
2175         Removed some unused code.
2176
2177         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
2178         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_handle_buffer):
2179         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_handle_buffer):
2180         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_handle_buffer):
2181         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_init_packet),
2182         (gst_rtp_theora_pay_flush_packet):
2183         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_flush_packet):
2184         Try to preserve the incomming buffer duration on the outgoing
2185         packets. Fixes #478244.
2186
2187 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
2188
2189         * ext/taglib/gstapev2mux.cc:
2190         * ext/taglib/gstid3v2mux.cc:
2191           Work around compiler warnings with g++-4.2 when assigning a
2192           string constant to a gchar * (partially fixes #478092).
2193
2194 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
2195
2196         * configure.ac:
2197           We require core CVS now for gst_base_src_set_do_timestamp().
2198
2199 2007-09-17  Jan Schmidt  <Jan.Schmidt@sun.com>
2200
2201         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_class_init):
2202         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
2203         (new_session_pad), (request_pt_map), (gst_rtspsrc_do_stream_eos),
2204         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
2205         (gst_rtspsrc_handle_message):
2206         Fix compiler warnings shown with Forte.
2207
2208 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
2209
2210         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams),
2211         (gst_rtspsrc_dup_printf):
2212         Give meaningfull error when all streams failed to configure for some
2213         reason.
2214
2215 2007-09-16  Wim Taymans  <wim.taymans@gmail.com>
2216
2217         * gst/rtp/README:
2218         Update README with the design for synchronisation rules of RTP on
2219         sender and receiver.
2220
2221 2007-09-14  Sebastian Dröge  <slomo@circular-chaos.org>
2222
2223         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop),
2224         (gst_wavparse_chain):
2225         Don't push EOS from the chain function, the element
2226         driving the pipeline is responsible for this. The bug
2227         this was meant to fix seems to be queue not forwarding
2228         EOS in all cases (see #476514).
2229
2230 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
2231
2232         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_start),
2233         (gst_level_transform_ip):
2234         * gst/level/gstlevel.h:
2235         Use basetransform segment so that it is correctly managed on flushes and
2236         start/stop.
2237         Report message timestamp as stream time, which is what an application
2238         can understand.
2239
2240 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
2241
2242         * ext/taglib/gstapev2mux.cc:
2243         * ext/taglib/gstapev2mux.h:
2244         * ext/taglib/gsttaglibmux.c:
2245         * tests/check/elements/apev2mux.c:
2246         Update my mail address.
2247
2248 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
2249
2250         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_eos),
2251         (gst_wavparse_loop), (gst_wavparse_chain):
2252         Add EOS logic for the push-based mode too. Fixes #476514.
2253
2254 2007-09-12  Wim Taymans  <wim.taymans@gmail.com>
2255
2256         * gst/law/alaw-encode.c: (gst_alawenc_init), (gst_alawenc_chain):
2257         * gst/law/alaw-encode.h:
2258         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
2259         (gst_mulawenc_chain):
2260         * gst/law/mulaw-encode.h:
2261         Fix law encoder timestamps.
2262
2263 2007-09-12  Stefan Kost  <ensonic@users.sf.net>
2264
2265         * ext/gconf/gstgconfaudiosink.c:
2266           Fix warning when building without debug.
2267
2268         * sys/oss/gstossmixertrack.c:
2269           Use const like in alsamixertrack.c (fixes warnings).
2270
2271 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
2272
2273         * sys/v4l2/v4l2src_calls.c:
2274         (gst_v4l2src_probe_caps_for_format_and_size):
2275         Fix framerate detection code some more.
2276         Handle the case where there is a weird step in the stepwise framerates.
2277         Don't overwrite the min interval with the framerate, use a temp variable
2278         instead.
2279         Use max in the Continuous framerate intervals instead of step, which is
2280         1 according to the docs. Fixes #475424.
2281
2282 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
2283
2284         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create):
2285         Make udpsrc timestamp outgoing buffers based on when they were received.
2286         Also make it output a segment in time.
2287
2288 2007-09-10  Stefan Kost  <ensonic@users.sf.net>
2289
2290         * gst/avi/gstavidemux.c:
2291           Plug a little leak. Little code cleanups.
2292
2293 2007-09-09  Tim-Philipp Müller  <tim at centricular dot net>
2294
2295         * configure.ac:
2296           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for old
2297           flac versions, 's good for cross-compilation karma.
2298
2299 2007-09-07  Tim-Philipp Müller  <tim at centricular dot net>
2300
2301         Patch by: Haakon Sporsheim  <haakon.sporsheim at tandberg com>
2302
2303         * gst/rtp/gstrtph263pay.c:
2304           Fix up header structure so that compilers don't add padding
2305           between the structure fields, since that would lead to us
2306           sending RTP packets with broken headers (as is currently the
2307           case when compiling with MSVC). Also see similar fixes in
2308           libgstrtp in gst-plugins-base. (#474616; #471194)
2309
2310 2007-09-07  Wim Taymans  <wim.taymans@gmail.com>
2311
2312         * sys/v4l2/v4l2src_calls.c:
2313         (gst_v4l2src_probe_caps_for_format_and_size):
2314         Don't overwrite our GValue with 0 but instead use the previously
2315         computed value. Fixes #471823 some more.
2316
2317 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
2318
2319         * docs/plugins/gst-plugins-good-plugins.hierarchy:
2320           No tabs in this file please, or gtk-doc will end up documenting
2321           rather absurd class hierarchies.
2322
2323 2007-09-06  Tim-Philipp Müller  <tim at centricular dot net>
2324
2325         * ext/gconf/gstswitchsink.c:
2326           If the new kid element fails to change state for some reason
2327           (e.g. esdsink not being able to connect to the sound server),
2328           forward the error message it posted on the bus instead of just
2329           posting a generic 'Internal state change error: please file a
2330           bug' error message. Fixes #471364.
2331
2332 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
2333
2334         * gst/qtdemux/Makefile.am:
2335         * gst/qtdemux/qtdemux.c:
2336           Don't assume tags are encoded as UTF-8 (#473670).
2337
2338 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
2339
2340         * sys/v4l2/gstv4l2src.c:
2341         * sys/v4l2/gstv4l2src.h:
2342         * sys/v4l2/v4l2src_calls.c:
2343           Implement LATENCY queries in the crudest way possible so I don't
2344           have to use sync=false any longer when testing with videosinks.
2345
2346 2007-09-05  Tim-Philipp Müller  <tim at centricular dot net>
2347
2348         * configure.ac:
2349           Fix build.
2350
2351 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
2352
2353         * sys/v4l2/v4l2src_calls.c:
2354         (gst_v4l2src_probe_caps_for_format_and_size):
2355         Add some more debugging in the framerate function.
2356         Iterate stepwise framerate up to and _including_ the max and if nothing
2357         was added to the list, add a dummy 0/1 to 100/1 framerate so that we
2358         don't end up with an empty list. Fixes #471823
2359
2360 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
2361
2362         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
2363         (gst_multiudpsink_set_clients_string),
2364         (gst_multiudpsink_get_clients_string),
2365         (gst_multiudpsink_set_property), (gst_multiudpsink_get_property),
2366         (gst_multiudpsink_init_send), (gst_multiudpsink_add_internal),
2367         (gst_multiudpsink_add), (gst_multiudpsink_clear_internal),
2368         (gst_multiudpsink_clear):
2369         Add property do configure destination address/port pairs
2370         API:GstMultiUDPSink::clients
2371
2372 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
2373
2374         * tests/examples/Makefile.am:
2375         * tests/examples/rtp/Makefile.am:
2376         * tests/examples/rtp/client-H263p-AMR.sh:
2377         * tests/examples/rtp/client-H263p-PCMA.sdp:
2378         * tests/examples/rtp/client-H263p-PCMA.sh:
2379         * tests/examples/rtp/client-H264-PCMA.sdp:
2380         * tests/examples/rtp/client-H264-PCMA.sh:
2381         * tests/examples/rtp/client-PCMA.sh:
2382         * tests/examples/rtp/server-VTS-H263p-ATS-PCMA.sh:
2383         * tests/examples/rtp/server-alsasrc-PCMA.sh:
2384         * tests/examples/rtp/server-v4l2-H263p-alsasrc-AMR.sh:
2385         * tests/examples/rtp/server-v4l2-H264-alsasrc-PCMA.sh:
2386         Added some RTP example scripts for sending and receiving RTP streams.
2387
2388 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
2389
2390         * sys/v4l2/gstv4l2src.c: (gst_v4l2_get_caps_info),
2391         (gst_v4l2src_set_caps), (gst_v4l2src_get_mmap):
2392         Restructure the setcaps function so that we can also compute the
2393         expected GStreamer output size of the video frames.
2394         Set frame_byte_size correctly so that read-based devices have a chance
2395         of working correctly.
2396         When grabbing a frame, discard frames that are not of the expected size.
2397         Some cameras don't output the right framesize for the first buffer.
2398         Try only a couple of times to get a valid frame, else error out.
2399
2400         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
2401         (gst_v4l2_fill_lists), (gst_v4l2_get_input):
2402         Add some more debug info when scanning the device.
2403
2404         * sys/v4l2/v4l2src_calls.c: (gst_v4l2_buffer_new),
2405         (gst_v4l2_buffer_pool_new), (gst_v4l2_buffer_pool_activate),
2406         (gst_v4l2src_fill_format_list), (gst_v4l2src_grab_frame),
2407         (gst_v4l2src_set_capture), (gst_v4l2src_capture_init):
2408         Add some more debug info when dequeing a frame.
2409
2410 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
2411
2412         * gst/wavparse/gstwavparse.c:
2413           More code cleanups. Add some more comment and improve debugs logs.
2414
2415 2007-09-04  Stefan Kost  <ensonic@users.sf.net>
2416
2417         * gst/wavparse/gstwavparse.c:
2418         * gst/wavparse/gstwavparse.h:
2419           Implement seek-query. Refactor duration calculations. Appropriate use
2420           of uint64_scale_int and uint64_scale. Move repeadedly calculated stuff
2421           out of loops.
2422
2423 2007-09-03  Stefan Kost  <ensonic@users.sf.net>
2424
2425         * gst/avi/gstavidemux.c:
2426           Implement seek-query.
2427
2428 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
2429
2430         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_udp_sink),
2431         (gst_rtspsrc_dup_printf):
2432         Use new basesink async property to make sparse RTCP packet not wait for
2433         preroll.
2434
2435 2007-08-27  Jan Schmidt  <thaytan@mad.scientist.com>
2436
2437         * gst/audiofx/Makefile.am:
2438         Dist the right file.
2439
2440 2007-08-23  Wim Taymans  <wim.taymans@gmail.com>
2441
2442         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_dup_printf),
2443         (gst_rtspsrc_get_float), (gst_rtspsrc_play):
2444         Make sure we generate and parse floating point values in the POSIX
2445         locale instead of the current locale. 
2446
2447 2007-08-22  Wim Taymans  <wim.taymans@gmail.com>
2448
2449         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_seek),
2450         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
2451         (gst_rtspsrc_play):
2452         * gst/rtsp/gstrtspsrc.h:
2453         Fix method detection again.
2454         Keep track of when we must send a Range header.
2455         Use segment values for Range, Speed and Scale headers.
2456         Parse Speed and Scale headers to update the segment values.
2457
2458 2007-08-22  Stefan Kost  <ensonic@users.sf.net>
2459
2460         patch by: Mark Nauwelaerts <manauw@skynet.be>
2461
2462         * sys/v4l2/v4l2src_calls.c:
2463           Handle optional v4l2 ioctls gracefully.
2464
2465 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
2466
2467         * gst/rtp/Makefile.am:
2468         * gst/rtp/gstrtp.c: (plugin_init):
2469         * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init),
2470         (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init),
2471         (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps),
2472         (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property),
2473         (gst_rtp_h263_depay_get_property),
2474         (gst_rtp_h263_depay_change_state),
2475         (gst_rtp_h263_depay_plugin_init):
2476         * gst/rtp/gstrtph263depay.h:
2477         Added an H263 depayloader. Fixes #369392.
2478
2479         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
2480         (gst_rtp_h263p_depay_process):
2481         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
2482         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush):
2483         Make the H263+ pay/depayloader support H263-1998 and H263-2000
2484         payloads.
2485         Also alow plain H263 on the h263p payloaders. Fixes #465040.
2486
2487 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
2488
2489         * gst/audiofx/audiochebyshevfreqband.c:
2490         * gst/audiofx/audiochebyshevfreqlimit.c:
2491         Add small comparision with the windowed sinc filters in the docs.
2492
2493 2007-08-19  Sebastian Dröge  <slomo@circular-chaos.org>
2494
2495         * tests/check/elements/audiochebyshevfreqband.c: (GST_START_TEST),
2496         (audiochebyshevfreqband_suite):
2497         * tests/check/elements/audiochebyshevfreqlimit.c: (GST_START_TEST),
2498         (audiochebyshevfreqlimit_suite):
2499         Also test 32 bit float mode and the type 2 variants of the filters.
2500
2501 2007-08-18  Wim Taymans  <wim.taymans@gmail.com>
2502
2503         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_interleaved),
2504         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
2505         (gst_rtspsrc_loop):
2506         Refactor the udp and interleaved loop function a bit.
2507
2508 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
2509
2510         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
2511         (gst_rtspsrc_finalize), (gst_rtspsrc_connection_send),
2512         (gst_rtspsrc_connection_receive), (gst_rtspsrc_sink_chain),
2513         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
2514         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
2515         (gst_rtspsrc_try_send), (gst_rtspsrc_pause):
2516         * gst/rtsp/gstrtspsrc.h:
2517         Protect connection activity with a new lock, avoids deadlocks when going
2518         to PAUSED. Fixes #455808.
2519
2520 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
2521
2522         * gst/debug/rndbuffersize.c: (gst_rnd_buffer_size_loop):
2523         Fix debug statement.
2524
2525 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
2526
2527         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_do_stream_eos):
2528         Fix stray %u in debug line as spotted by Saur on IRC.
2529
2530 2007-08-17  Sebastian Dröge  <slomo@circular-chaos.org>
2531
2532         * gst/audiofx/audiochebyshevfreqband.c:
2533         (gst_audio_chebyshev_freq_band_class_init):
2534         * gst/audiofx/audiochebyshevfreqlimit.c:
2535         (gst_audio_chebyshev_freq_limit_class_init):
2536         Use generator macros for the process functions for the different
2537         sample types, add lower upper boundaries for the GObject properties
2538         so automatically generated UIs can use sliders and add a note about
2539         the number of poles as a too high number of poles combined with
2540         very low or very high frequencies will produce only noise.
2541         * docs/plugins/gst-plugins-good-plugins.args:
2542         Regenerated for the property changes.
2543
2544 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
2545
2546         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_property),
2547         (gst_rtspsrc_flush), (gst_rtspsrc_sink_chain),
2548         (gst_rtspsrc_stream_configure_udp_sink),
2549         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_interleaved),
2550         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
2551         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
2552         (gst_rtspsrc_parse_methods), (gst_rtspsrc_parse_range),
2553         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_pause),
2554         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
2555         * gst/rtsp/gstrtspsrc.h:
2556         Improve timeout handling.
2557         Use the same socket for sending and receiving RTCP packets so that some
2558         servers can track clients better.
2559         Improve connection closed handling. Try to reconnect.
2560         Don't overwrite our content base with NULL.
2561         Improve debugging.
2562         Improve range parsing and handling.
2563         Remove flushing hack now that core does the right thing.
2564
2565 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
2566
2567         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
2568         (gst_multiudpsink_init), (gst_multiudpsink_set_property),
2569         (gst_multiudpsink_get_property), (gst_multiudpsink_init_send),
2570         (gst_multiudpsink_close), (gst_multiudpsink_add):
2571         * gst/udp/gstmultiudpsink.h:
2572         Add support for getting and setting the socket to use.
2573
2574         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
2575         (gst_udpsrc_create), (gst_udpsrc_get_property):
2576         Add support for getting the currently used socket.
2577
2578 2007-08-16  Sebastian Dröge  <slomo@circular-chaos.org>
2579
2580         reviewed by: Stefan Kost  <ensonic@users.sf.net>
2581
2582         * gst/audiofx/Makefile.am:
2583         * gst/audiofx/audiochebyshevfreqband.c:
2584         (gst_audio_chebyshev_freq_band_mode_get_type),
2585         (gst_audio_chebyshev_freq_band_base_init),
2586         (gst_audio_chebyshev_freq_band_dispose),
2587         (gst_audio_chebyshev_freq_band_class_init),
2588         (gst_audio_chebyshev_freq_band_init),
2589         (generate_biquad_coefficients), (calculate_gain),
2590         (generate_coefficients),
2591         (gst_audio_chebyshev_freq_band_set_property),
2592         (gst_audio_chebyshev_freq_band_get_property),
2593         (gst_audio_chebyshev_freq_band_setup), (process), (process_64),
2594         (process_32), (gst_audio_chebyshev_freq_band_transform_ip),
2595         (gst_audio_chebyshev_freq_band_start):
2596         * gst/audiofx/audiochebyshevfreqband.h:
2597         * gst/audiofx/audiochebyshevfreqlimit.c:
2598         (gst_audio_chebyshev_freq_limit_mode_get_type),
2599         (gst_audio_chebyshev_freq_limit_base_init),
2600         (gst_audio_chebyshev_freq_limit_dispose),
2601         (gst_audio_chebyshev_freq_limit_class_init),
2602         (gst_audio_chebyshev_freq_limit_init),
2603         (generate_biquad_coefficients), (calculate_gain),
2604         (generate_coefficients),
2605         (gst_audio_chebyshev_freq_limit_set_property),
2606         (gst_audio_chebyshev_freq_limit_get_property),
2607         (gst_audio_chebyshev_freq_limit_setup), (process), (process_64),
2608         (process_32), (gst_audio_chebyshev_freq_limit_transform_ip),
2609         (gst_audio_chebyshev_freq_limit_start):
2610         * gst/audiofx/audiochebyshevfreqlimit.h:
2611         * gst/audiofx/audiofx.c: (plugin_init):
2612         Add Chebyshev lowpass/highpass and bandpass/bandreject elements.
2613         Fixes #464800.
2614
2615         * tests/check/Makefile.am:
2616         * tests/check/elements/.cvsignore:
2617         * tests/check/elements/audiochebyshevfreqband.c:
2618         (setup_audiochebyshevfreqband), (cleanup_audiochebyshevfreqband),
2619         (GST_START_TEST), (audiochebyshevfreqband_suite), (main):
2620         * tests/check/elements/audiochebyshevfreqlimit.c:
2621         (setup_audiochebyshevfreqlimit), (cleanup_audiochebyshevfreqlimit),
2622         (GST_START_TEST), (audiochebyshevfreqlimit_suite), (main):
2623         Add unit tests for the chebyshev filters.
2624
2625         * docs/plugins/Makefile.am:
2626         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2627         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2628         * docs/plugins/gst-plugins-good-plugins.args:
2629         * docs/plugins/inspect/plugin-1394.xml:
2630         * docs/plugins/inspect/plugin-audiofx.xml:
2631         * docs/plugins/inspect/plugin-dv.xml:
2632         * docs/plugins/inspect/plugin-flac.xml:
2633         * docs/plugins/inspect/plugin-jpeg.xml:
2634         * docs/plugins/inspect/plugin-png.xml:
2635         * docs/plugins/inspect/plugin-rtp.xml:
2636         * docs/plugins/inspect/plugin-shout2send.xml:
2637         * docs/plugins/inspect/plugin-wavpack.xml:
2638         And add docs for the chebyshev filters. While doing
2639         that also run make update in docs/plugins.
2640
2641 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
2642
2643         * ext/annodex/gstcmmltag.c:
2644         * gst/rtp/gstrtpvorbispay.c:
2645           Make ro memory to share.
2646
2647 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
2648
2649         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
2650         Improve UDP performance by avoiding a select() when we have data
2651         available immediatly.
2652
2653 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
2654
2655         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_VOID__UINT_UINT),
2656         (gst_rtp_dec_class_init):
2657         * gst/rtsp/gstrtpdec.h:
2658         Add (dummy) SSRC management signals.
2659
2660         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
2661         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
2662         (find_stream), (gst_rtspsrc_create_stream), (new_session_pad),
2663         (request_pt_map), (gst_rtspsrc_do_stream_eos), (on_bye_ssrc),
2664         (on_timeout), (gst_rtspsrc_stream_configure_manager),
2665         (gst_rtspsrc_stream_push_event), (gst_rtspsrc_push_event),
2666         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_rtpinfo),
2667         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
2668         * gst/rtsp/gstrtspsrc.h:
2669         Add connection-speed property.
2670         Add find_stream helper functions.
2671         Handle stream EOS based on BYE messages or SSRC timeout.
2672         Returns SUCCESS from the state change function as we hide our async
2673         elements from the parent.
2674
2675 2007-08-16  Stefan Kost  <ensonic@users.sf.net>
2676
2677         * gst/debug/rndbuffersize.c:
2678           Fix da leak.
2679
2680 2007-08-14  Stefan Kost  <ensonic@users.sf.net>
2681
2682         * gst/debug/Makefile.am:
2683         * gst/debug/breakmydata.c:
2684         * gst/debug/gstdebug.c:
2685         * gst/debug/negotiation.c:
2686         * gst/debug/progressreport.c:
2687         * gst/debug/rndbuffersize.c:
2688         * gst/debug/testplugin.c:
2689           Add new test element and clean-up the others a little.
2690
2691 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
2692
2693         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
2694         Fix parsing of mp4a version 0 atoms. Fixes #465774.
2695
2696 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
2697
2698         * gst/rtp/gstrtpilbcdepay.c:
2699           Include stdlib.
2700
2701 2007-08-10  Wim Taymans  <wim.taymans@gmail.com>
2702
2703         * gst/rtp/gstrtpmpvdepay.c:
2704         Set the mpegversion in the caps so that autoplugging does not get
2705         confused.
2706
2707 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
2708
2709         * po/hu.po:
2710         * po/uk.po:
2711         * po/vi.po:
2712           Updated translations.
2713
2714 2007-08-08  Michael Smith <msmith@fluendo.com>
2715
2716         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
2717           Render right border in the correct location.
2718
2719 2007-08-08  Wim Taymans  <wim.taymans@gmail.com>
2720
2721         Patch by: Olivier Crete <tester at tester dot ca>
2722
2723         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
2724         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
2725         Make mode property a string. Fixes #464475.
2726
2727 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
2728
2729         * ext/flac/gstflacenc.c:
2730           Widen caps to match decoder a bit and add more FIXMEs.
2731
2732 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
2733
2734         patch by: Mark Nauwelaerts <manauw@skynet.be>
2735
2736         * gst/avi/gstavimux.c:
2737           Fix ODML index tag numbering. Fixes #463624.
2738
2739 2007-08-03  Wim Taymans  <wim.taymans@gmail.com>
2740
2741         * gst/rtsp/gstrtspsrc.c: (get_default_rate_for_pt),
2742         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
2743         (gst_rtspsrc_stream_configure_tcp),
2744         (gst_rtspsrc_stream_configure_udp_sink):
2745         Fix default clock-rate for realmedia.
2746         Fix parsing of transport.
2747         Don't try to link NULL pads.
2748
2749 2007-07-30  Tim-Philipp Müller  <tim at centricular dot net>
2750
2751         * po/POTFILES.skip:
2752           Add POTFILES.skip with list of source files that aren't disted at the
2753           moment but contain translatable strings. Should hopefully pacify
2754           broken tools and make it clearer that these files are left out
2755           intentionally (#461600).
2756
2757 2007-07-30  Edward Hervey  <bilboed@bilboed.com>
2758
2759         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
2760         If the buffer was entirely clipped ... don't try sending it :)
2761
2762 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
2763
2764         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams),
2765         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_parse_methods),
2766         (gst_rtspsrc_create_transports_string),
2767         (gst_rtspsrc_prepare_transports):
2768         If we don't hav a session manager, set the caps on outgoing buffers
2769         ourselves.
2770         Force PAUSE/PLAY methods for now until the extensions can overwrite.
2771         Append final bit of the transport string even when it does not contain a
2772         placeholder.
2773
2774 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
2775
2776         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_free),
2777         (gst_rtsp_ext_list_connect):
2778         * gst/rtsp/gstrtspext.h:
2779         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
2780         (gst_rtspsrc_finalize), (gst_rtspsrc_send_cb):
2781         Clean up the interface list.
2782         Allow connecting to interface signals for the extensions.
2783         Remove old extension code.
2784         Free list on cleanup.
2785         Allow extensions to send additional RTSP messages.
2786
2787 2007-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
2788
2789         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
2790         Handle a NULL gconf key gracefully by rendering the default element.
2791
2792 2007-07-27  Wim Taymans  <wim.taymans@gmail.com>
2793
2794         * gst/rtsp/gstrtspext.h:
2795         Fix include path for extension interface.
2796
2797 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
2798
2799         * gst/audiofx/audioamplify.h:
2800         Also remove a now unecessary variable here.
2801
2802 2007-07-26  Sebastian Dröge  <slomo@circular-chaos.org>
2803
2804         * gst/audiofx/audioamplify.c: (gst_audio_amplify_init),
2805         (gst_audio_amplify_setup), (gst_audio_amplify_transform_ip):
2806         * gst/audiofx/audiodynamic.c:
2807         (gst_audio_dynamic_set_process_function), (gst_audio_dynamic_init),
2808         (gst_audio_dynamic_setup), (gst_audio_dynamic_transform_ip):
2809         * gst/audiofx/audiodynamic.h:
2810         * gst/audiofx/audioinvert.c: (gst_audio_invert_init),
2811         (gst_audio_invert_setup), (gst_audio_invert_transform_ip):
2812         * gst/audiofx/audioinvert.h:
2813         Don't save format information ourselves, this is already saved in
2814         GstAudioFilter.
2815
2816 2007-07-26  Wim Taymans  <wim.taymans@gmail.com>
2817
2818         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
2819         (gst_rtsp_ext_list_stream_select):
2820         * gst/rtsp/gstrtspext.h:
2821         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
2822         Use rank to filter out extensions.
2823         Add url to stream_select interface call.
2824
2825 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
2826
2827         * gst/rtsp/Makefile.am:
2828         * gst/rtsp/base64.c:
2829         * gst/rtsp/base64.h:
2830         * gst/rtsp/gstrtspext.c: (gst_rtsp_ext_list_filter),
2831         (gst_rtsp_ext_list_init), (gst_rtsp_ext_list_get),
2832         (gst_rtsp_ext_list_detect_server), (gst_rtsp_ext_list_before_send),
2833         (gst_rtsp_ext_list_after_send), (gst_rtsp_ext_list_parse_sdp),
2834         (gst_rtsp_ext_list_setup_media),
2835         (gst_rtsp_ext_list_configure_stream),
2836         (gst_rtsp_ext_list_get_transports),
2837         (gst_rtsp_ext_list_stream_select):
2838         * gst/rtsp/gstrtspext.h:
2839         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
2840         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
2841         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
2842         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
2843         (gst_rtspsrc_flush), (gst_rtspsrc_do_seek),
2844         (gst_rtspsrc_sink_chain), (gst_rtspsrc_stream_configure_manager),
2845         (gst_rtspsrc_stream_configure_tcp),
2846         (gst_rtspsrc_stream_configure_mcast),
2847         (gst_rtspsrc_stream_configure_udp),
2848         (gst_rtspsrc_stream_configure_udp_sink),
2849         (gst_rtspsrc_stream_configure_transport),
2850         (gst_rtspsrc_handle_request), (gst_rtspsrc_send_keep_alive),
2851         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
2852         (gst_rtspsrc_loop_send_cmd), (gst_rtsp_auth_method_to_string),
2853         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
2854         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
2855         (gst_rtspsrc_parse_methods),
2856         (gst_rtspsrc_create_transports_string),
2857         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
2858         (gst_rtspsrc_parse_range), (gst_rtspsrc_open), (gst_rtspsrc_close),
2859         (gst_rtspsrc_play), (gst_rtspsrc_pause),
2860         (gst_rtspsrc_change_state), (gst_rtspsrc_uri_set_uri):
2861         * gst/rtsp/gstrtspsrc.h:
2862         * gst/rtsp/rtsp.h:
2863         * gst/rtsp/rtspconnection.c:
2864         * gst/rtsp/rtspconnection.h:
2865         * gst/rtsp/rtspdefs.c:
2866         * gst/rtsp/rtspdefs.h:
2867         * gst/rtsp/rtspext.h:
2868         * gst/rtsp/rtspextwms.c:
2869         * gst/rtsp/rtspextwms.h:
2870         * gst/rtsp/rtspmessage.c:
2871         * gst/rtsp/rtspmessage.h:
2872         * gst/rtsp/rtsprange.c:
2873         * gst/rtsp/rtsprange.h:
2874         * gst/rtsp/rtsptransport.c:
2875         * gst/rtsp/rtsptransport.h:
2876         * gst/rtsp/rtspurl.c:
2877         * gst/rtsp/rtspurl.h:
2878         * gst/rtsp/sdp.h:
2879         * gst/rtsp/sdpmessage.c:
2880         * gst/rtsp/sdpmessage.h:
2881         * gst/rtsp/test.c:
2882         Use shiny new RTSP and SDP library.
2883         Implement RTSP extensions using the new interface.
2884         Remove a lot of old code.
2885
2886 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
2887
2888         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
2889         Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
2890
2891 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
2892
2893         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
2894         Don't unref the outgoing buffer twice when dropping it because it's
2895         outside of the segment.
2896
2897 2007-07-24  Sebastian Dröge  <slomo@circular-chaos.org>
2898
2899         * configure.ac:
2900         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
2901         (gst_wavpack_dec_chain), (gst_wavpack_dec_sink_event):
2902         Use the new buffer clipping function from gstaudio here and
2903         require gst-plugins-base CVS.
2904         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
2905         For framed Wavpack buffers we require a valid timestamp.
2906
2907 2007-07-23  Wim Taymans  <wim.taymans@gmail.com>
2908
2909         * gst/qtdemux/qtdemux.c: (gst_qtdemux_activate_segment),
2910         (gst_qtdemux_clip_buffer), (gst_qtdemux_loop_state_movie),
2911         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
2912         Clip raw audio and video when we can, keep track of current output
2913         segment.
2914         Don't leak buffers and events when there is no output pad.
2915         Improve debugging here and there.
2916
2917 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
2918
2919         * configure.ac:
2920           Sync liboil check with plugins-base.
2921
2922 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
2923
2924         * ext/annodex/Makefile.am:
2925           Fix CFLAGS/LIBS.
2926
2927         * ext/cdio/gstcdiocddasrc.c:
2928         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
2929           Include stdlib
2930
2931         * ext/cairo/Makefile.am:
2932         * gst/videofilter/Makefile.am:
2933         * tests/examples/level/Makefile.am:
2934           Use $(LIBM) instead of -lm
2935
2936 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
2937
2938         * sys/v4l2/gstv4l2src.c:
2939           Add another example pipeline.
2940
2941 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
2942
2943         Patch by: Alexander Eichner <alexeichi@yahoo.de>
2944
2945         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
2946           Use define here.
2947
2948         * sys/v4l2/gstv4l2tuner.c:
2949         (gst_v4l2_tuner_set_frequency_and_notify):
2950           Don't touch the property - its still disabled.
2951
2952         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format),
2953         (gst_v4l2src_grab_frame), (gst_v4l2src_get_size_limits):
2954         * sys/v4l2/v4l2src_calls.h:
2955           Improve fallback format negotionation. Fixes #451388
2956
2957 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
2958
2959         * tests/check/elements/videocrop.c: (GST_START_TEST):
2960           Fix the test.
2961
2962 2007-07-18  Stefan Kost  <ensonic@users.sf.net>
2963
2964         * docs/plugins/Makefile.am:
2965         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
2966         * docs/plugins/gst-plugins-good-plugins-sections.txt:
2967         * docs/plugins/inspect/plugin-jpeg.xml:
2968         * docs/plugins/inspect/plugin-png.xml:
2969         * ext/jpeg/gstjpegdec.c:
2970         * ext/libpng/gstpngdec.c: (gst_pngdec_task),
2971         (gst_pngdec_sink_setcaps):
2972           More docs. More logs in pngdec.
2973
2974 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
2975
2976         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init):
2977           Initialize num_buffers with minimum value.
2978
2979         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
2980         (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_grab_frame):
2981           Handle frame-size query failure gracefully.
2982
2983 2007-07-16  Wim Taymans  <wim.taymans@gmail.com>
2984
2985         * gst/qtdemux/qtdemux.c: (qtdemux_parse_node):
2986         Fix parsing of esds atoms inside mp4a atoms so that we can set correct
2987         codec_info for AAC audio. Fixes #457097 along with a whole other bunch
2988         of qt/aac files.
2989
2990 2007-07-16  Sebastian Dröge  <slomo@circular-chaos.org>
2991
2992         * ext/wavpack/gstwavpackdec.c:
2993         (gst_wavpack_dec_clip_outgoing_buffer):
2994         Fix buffer clipping to correctly clip to the segment stop.
2995
2996 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
2997
2998         * configure.ac:
2999         * tests/Makefile.am:
3000         Remove bogus check for libcheck, since we check for
3001         gstreamer-check and it pulls in the required info from there,
3002         and we weren't actually _using_ the information for libcheck
3003         ourselves anyway.
3004
3005 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
3006
3007         * configure.ac:
3008           Use pkg-config to locate check.
3009
3010 2007-07-11  Tim-Philipp Müller  <tim at centricular dot net>
3011
3012         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
3013         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
3014         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
3015         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
3016         * gst/debug/gstnavigationtest.c: (gst_navigationtest_transform):
3017         * gst/effectv/gstaging.c: (gst_agingtv_transform):
3018         * gst/effectv/gstdice.c: (gst_dicetv_transform):
3019         * gst/effectv/gstedge.c: (gst_edgetv_transform):
3020         * gst/effectv/gstquark.c: (gst_quarktv_transform):
3021         * gst/effectv/gstrev.c: (gst_revtv_transform):
3022         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_transform):
3023         * gst/effectv/gstvertigo.c: (gst_vertigotv_transform):
3024         * gst/effectv/gstwarp.c: (gst_warptv_transform):
3025         * gst/matroska/matroska-demux.c:
3026         (gst_matroska_demux_add_wvpk_header),
3027         (gst_matroska_demux_check_subtitle_buffer),
3028         (gst_matroska_decode_buffer):
3029         * gst/videofilter/gstvideoflip.c: (gst_video_flip_transform):
3030           Fix build against core CVS.
3031
3032 2007-07-10  Edward Hervey  <bilboed@gmail.com>
3033
3034         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
3035         Don't return GST_FLOW_ERROR when pushing an event returns FALSE. We
3036         don't have enough granularity to convert that boolean into a
3037         GstFlowReturn.
3038
3039 2007-07-06  Michael Smith <msmith@fluendo.com>
3040
3041         * gst/law/alaw-decode.c: (alawdec_sink_setcaps),
3042         (gst_alawdec_class_init), (gst_alawdec_init), (gst_alawdec_chain),
3043         (gst_alawdec_change_state):
3044         * gst/law/alaw-decode.h:
3045         * gst/law/mulaw-decode.c: (mulawdec_sink_setcaps),
3046         (gst_mulawdec_class_init), (gst_mulawdec_init),
3047         (gst_mulawdec_chain), (gst_mulawdec_change_state):
3048         * gst/law/mulaw-decode.h:
3049           Fix capsnego bogosity in *law decoders. 
3050
3051 2007-07-06  Michael Smith <msmith@fluendo.com>
3052
3053         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init),
3054         (gst_smokeenc_setcaps), (gst_smokeenc_chain),
3055         (gst_smokeenc_change_state):
3056         * ext/jpeg/gstsmokeenc.h:
3057           Remove stupidity in get/set caps functions.
3058           Fix some refcounting problems.
3059
3060 2007-07-06  Jan Schmidt  <thaytan@mad.scientist.com>
3061
3062         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set):
3063         Remove endianness-flipping hack that seems to have been required
3064         only because of a bug in ffmpegcolorspace.
3065         Partially Fixes: #451908
3066
3067 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
3068
3069         * docs/plugins/Makefile.am:
3070           Simplify --extra-dir as gtkdoc scans recursively.
3071
3072 2007-07-03  Wim Taymans  <wim@fluendo.com>
3073
3074         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
3075
3076         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_setcaps):
3077         Set the encoding-name in the rtp caps to all uppercase, as required by
3078         the caps spec.
3079         Some small cleanups in the error paths. Fixes #453037.
3080
3081 2007-06-28  Sebastian Dröge  <slomo@circular-chaos.org>
3082
3083         * ext/wavpack/gstwavpackparse.c:
3084         (gst_wavpack_parse_index_get_last_entry),
3085         (gst_wavpack_parse_index_get_entry_from_sample),
3086         (gst_wavpack_parse_index_append_entry), (gst_wavpack_parse_reset),
3087         (gst_wavpack_parse_scan_to_find_sample):
3088         * ext/wavpack/gstwavpackparse.h:
3089         Use a GSList for the GArray that is used like a list anyway.
3090
3091 2007-06-28  Tim-Philipp Müller  <tim at centricular dot net>
3092
3093         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
3094         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_flush),
3095         (gst_gdk_pixbuf_sink_event), (gst_gdk_pixbuf_change_state):
3096           Add state change function where we set 0/1 as default framerate in
3097           case our setcaps function isn't called, like it might not in a
3098           filesrc ! gdkpixbufdec scenario. Fixes assertion triggered by
3099           gdkpixbufdec trying to create caps with a 0/0 framerate.
3100           Also post an error message on the bus if gst_pad_push() fails when
3101           called from our sink event handler (+1 for flow returns for event
3102           functions in 0.11) instead of failing silently.
3103
3104 2007-06-27  Wim Taymans  <wim@fluendo.com>
3105
3106         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps):
3107         Cast stack args to the proper types. Fixes #451249.
3108
3109 2007-06-27  Wim Taymans  <wim@fluendo.com>
3110
3111         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
3112         (new_session_pad), (gst_rtspsrc_setup_streams):
3113         * gst/rtsp/gstrtspsrc.h:
3114         For container formats we only need to activate one of the streams so
3115         that we correctly signal no-more-pads. Fixes #451015.
3116
3117 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
3118
3119         * docs/plugins/gst-plugins-good-plugins.args:
3120         * docs/plugins/inspect/plugin-aasink.xml:
3121         * docs/plugins/inspect/plugin-alaw.xml:
3122         * docs/plugins/inspect/plugin-alpha.xml:
3123         * docs/plugins/inspect/plugin-alphacolor.xml:
3124         * docs/plugins/inspect/plugin-annodex.xml:
3125         * docs/plugins/inspect/plugin-apetag.xml:
3126         * docs/plugins/inspect/plugin-audiofx.xml:
3127         * docs/plugins/inspect/plugin-auparse.xml:
3128         * docs/plugins/inspect/plugin-autodetect.xml:
3129         * docs/plugins/inspect/plugin-avi.xml:
3130         * docs/plugins/inspect/plugin-cacasink.xml:
3131         * docs/plugins/inspect/plugin-cairo.xml:
3132         * docs/plugins/inspect/plugin-cdio.xml:
3133         * docs/plugins/inspect/plugin-cutter.xml:
3134         * docs/plugins/inspect/plugin-debug.xml:
3135         * docs/plugins/inspect/plugin-efence.xml:
3136         * docs/plugins/inspect/plugin-effectv.xml:
3137         * docs/plugins/inspect/plugin-esdsink.xml:
3138         * docs/plugins/inspect/plugin-flac.xml:
3139         * docs/plugins/inspect/plugin-flxdec.xml:
3140         * docs/plugins/inspect/plugin-gconfelements.xml:
3141         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
3142         * docs/plugins/inspect/plugin-goom.xml:
3143         * docs/plugins/inspect/plugin-halelements.xml:
3144         * docs/plugins/inspect/plugin-icydemux.xml:
3145         * docs/plugins/inspect/plugin-id3demux.xml:
3146         * docs/plugins/inspect/plugin-jpeg.xml:
3147         * docs/plugins/inspect/plugin-ladspa.xml:
3148         * docs/plugins/inspect/plugin-level.xml:
3149         * docs/plugins/inspect/plugin-matroska.xml:
3150         * docs/plugins/inspect/plugin-mulaw.xml:
3151         * docs/plugins/inspect/plugin-multipart.xml:
3152         * docs/plugins/inspect/plugin-navigationtest.xml:
3153         * docs/plugins/inspect/plugin-ossaudio.xml:
3154         * docs/plugins/inspect/plugin-png.xml:
3155         * docs/plugins/inspect/plugin-quicktime.xml:
3156         * docs/plugins/inspect/plugin-rtp.xml:
3157         * docs/plugins/inspect/plugin-rtsp.xml:
3158         * docs/plugins/inspect/plugin-smpte.xml:
3159         * docs/plugins/inspect/plugin-speex.xml:
3160         * docs/plugins/inspect/plugin-taglib.xml:
3161         * docs/plugins/inspect/plugin-udp.xml:
3162         * docs/plugins/inspect/plugin-videobalance.xml:
3163         * docs/plugins/inspect/plugin-videobox.xml:
3164         * docs/plugins/inspect/plugin-videocrop.xml:
3165         * docs/plugins/inspect/plugin-videoflip.xml:
3166         * docs/plugins/inspect/plugin-videomixer.xml:
3167         * docs/plugins/inspect/plugin-wavenc.xml:
3168         * docs/plugins/inspect/plugin-wavparse.xml:
3169         * docs/plugins/inspect/plugin-ximagesrc.xml:
3170           Update docs with caps info.
3171
3172 2007-06-25  Tim-Philipp Müller  <tim at centricular dot net>
3173
3174         * po/POTFILES.in:
3175           Add more files with translatable strings (#450878).
3176
3177 2007-06-22  Jan Schmidt  <thaytan@noraisin.net>
3178
3179         * MAINTAINERS:
3180         Updating all the maintainers files
3181
3182 2007-06-22  Edward Hervey  <edward@fluendo.com>
3183
3184         * ext/flac/gstflactag.c: (gst_flac_tag_init):
3185         * gst/interleave/deinterleave.c: (deinterleave_init),
3186         (deinterleave_sink_link):
3187         * gst/interleave/interleave.c: (interleave_init):
3188         * gst/median/gstmedian.c: (gst_median_init):
3189         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init):
3190         Fix memory leaks.
3191         * tests/check/elements/id3demux.c: (pad_added_cb):
3192         Remove unused variable.
3193
3194 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
3195
3196         * ext/gconf/gconf.h:
3197         Make the prototype of gst_gconf_get_key_for_sink_profile
3198         match the implementation.
3199         Patch by: Damien Carbery <damien dot carbery at sun dot com>
3200         Fixes: #449747
3201
3202 2007-06-20  Michael Smith <msmith@fluendo.com>
3203
3204         * gst/rtp/gstrtpdepay.c:
3205           Fix description - rtpdepay is not a payloader.
3206
3207 2007-06-20  Stefan Kost  <ensonic@users.sf.net>
3208
3209         * gst/qtdemux/qtdemux.c: (qtdemux_parse_samples),
3210         (qtdemux_video_caps):
3211         * gst/qtdemux/qtdemux_fourcc.h:
3212           Add MJPG to the variants of motion jpeg.
3213
3214 2007-06-19  Tim-Philipp Müller  <tim at centricular dot net>
3215
3216         * tests/check/Makefile.am:
3217         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
3218         * tests/check/elements/videocrop.c: (GST_START_TEST):
3219         * tests/check/elements/videofilter.c:
3220         * tests/check/elements/wavpackdec.c: (GST_START_TEST):
3221         * tests/check/elements/wavpackparse.c: (GST_START_TEST):
3222           Add GST_OPTION_CFLAGS to CFLAGS when building unit tests, so the
3223           error flags are included and it errors out on compiler warnings
3224           for CVS builds; remove unused variables in various unit tests.
3225
3226 2007-06-19  Wim Taymans  <wim@fluendo.com>
3227
3228         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
3229         (rtsp_connection_close), (rtsp_connection_free):
3230         Use threadsafe inet_ntop to convert an ip number to a string. 
3231         Fixes #447961.
3232         Don't leak fd (and ip) when freeing a connection without first closing
3233         it.
3234
3235 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
3236
3237         * configure.ac:
3238         Back to CVS
3239
3240         * gst-plugins-good.doap:
3241         Add 0.10.6 to the doap file.
3242
3243 === release 0.10.6 ===
3244
3245 2007-06-18  Jan Schmidt <thaytan@mad.scientist.com>
3246
3247         * configure.ac:
3248           releasing 0.10.6, "Wobble Board"
3249
3250 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
3251
3252         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
3253         (rtsp_connection_free):
3254           Revert previous commit again, since we are frozen (sorry).
3255
3256 2007-06-17  Tim-Philipp Müller  <tim at centricular dot net>
3257
3258         Patch by: Peter Kjellerstedt <pkj at axis com>
3259
3260         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
3261         (rtsp_connection_free):
3262           inet_ntoa() uses a static buffer internally, so we need to copy the
3263           returned string if we want to store it for later (#447961).
3264
3265 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
3266
3267         * win32/vs6/autogen.dsp:
3268         * win32/vs6/gst_plugins_good.dsw:
3269         * win32/vs6/libgstalaw.dsp:
3270         * win32/vs6/libgstalpha.dsp:
3271         * win32/vs6/libgstalphacolor.dsp:
3272         * win32/vs6/libgstapetag.dsp:
3273         * win32/vs6/libgstaudiofx.dsp:
3274         * win32/vs6/libgstauparse.dsp:
3275         * win32/vs6/libgstautodetect.dsp:
3276         * win32/vs6/libgstavi.dsp:
3277         * win32/vs6/libgstcutter.dsp:
3278         * win32/vs6/libgstdirectdraw.dsp:
3279         * win32/vs6/libgstdirectsound.dsp:
3280         * win32/vs6/libgsteffectv.dsp:
3281         * win32/vs6/libgstflx.dsp:
3282         * win32/vs6/libgstgoom.dsp:
3283         * win32/vs6/libgsticydemux.dsp:
3284         * win32/vs6/libgstid3demux.dsp:
3285         * win32/vs6/libgstinterleave.dsp:
3286         * win32/vs6/libgstjpeg.dsp:
3287         * win32/vs6/libgstlevel.dsp:
3288         * win32/vs6/libgstmatroska.dsp:
3289         * win32/vs6/libgstmedian.dsp:
3290         * win32/vs6/libgstmonoscope.dsp:
3291         * win32/vs6/libgstmulaw.dsp:
3292         * win32/vs6/libgstmultipart.dsp:
3293         * win32/vs6/libgstqtdemux.dsp:
3294         * win32/vs6/libgstrtp.dsp:
3295         * win32/vs6/libgstrtsp.dsp:
3296         * win32/vs6/libgstsmpte.dsp:
3297         * win32/vs6/libgstspeex.dsp:
3298         * win32/vs6/libgstudp.dsp:
3299         * win32/vs6/libgstvideobalance.dsp:
3300         * win32/vs6/libgstvideobox.dsp:
3301         * win32/vs6/libgstvideocrop.dsp:
3302         * win32/vs6/libgstvideoflip.dsp:
3303         * win32/vs6/libgstvideomixer.dsp:
3304         * win32/vs6/libgstwaveform.dsp:
3305         * win32/vs6/libgstwavenc.dsp:
3306         * win32/vs6/libgstwavparse.dsp:
3307         Mark *.dsp & *.dsw as binary files and convert to DOS line
3308         endings, as they don't load into VS6 correctly otherwise.
3309
3310 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
3311
3312         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
3313         (rtsp_connection_connect):
3314         Fix the MingW build. 
3315         Patch By: Vincent Torri <vtorri at univ-evry dot fr>
3316         Fixes: #446981
3317
3318 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
3319
3320         * tests/check/elements/.cvsignore:
3321         * tests/icles/.cvsignore:
3322         Hush the buildbots up
3323
3324 2007-06-14  Jan Schmidt  <thaytan@mad.scientist.com>
3325
3326         * configure.ac:
3327         * sys/Makefile.am:
3328         * sys/directdraw/Makefile.am:
3329         * sys/directsound/Makefile.am:
3330         * sys/waveform/Makefile.am:
3331         Make sure to dist everything needed for win32 builds.
3332
3333 2007-06-14  Edward Hervey  <edward@fluendo.com>
3334
3335         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
3336         For AMR-NB streams, export the AMRSpecificBox as codec_data on the
3337         caps.
3338         Fixes #447458
3339
3340 2007-06-13  Wim Taymans  <wim@fluendo.com>
3341
3342         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
3343         Make sure we allocate enough memory for the codec_data.
3344         Fixes #447210.
3345
3346 2007-06-12  Sebastien Moutte  <sebastien@moutte.net>
3347
3348         * win32/MANIFEST:
3349         Add videocrop project file to the win32 manifest.
3350         * win32/vs6/gst_plugins_good.dsw:
3351         Add qtdemux,videocrop and waveform projects to the workspace.
3352         * win32/vs6/libgstqtdemux.dsp:
3353         Add zlib to the link list of qtdemux.
3354         * win32/vs6/libgstvideocrop.dsp:
3355         Add a project file for videocrop.
3356
3357 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
3358
3359         * po/POTFILES.in:
3360         Add qtdemux for translation
3361
3362 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
3363
3364         * configure.ac:
3365         * docs/plugins/Makefile.am:
3366         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3367         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3368         * docs/plugins/inspect/plugin-videocrop.xml:
3369         * gst-plugins-good.spec.in:
3370         * sys/Makefile.am:
3371         * tests/check/Makefile.am:
3372         * tests/icles/Makefile.am:
3373         * tests/icles/videocrop-test.c:
3374         Move videocrop and osxvideo from -bad.
3375
3376 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
3377
3378         * configure.ac:
3379         * docs/plugins/Makefile.am:
3380         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3381         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3382         * docs/plugins/gst-plugins-good-plugins.args:
3383         * docs/plugins/inspect/plugin-qtdemux.xml:
3384         * docs/plugins/inspect/plugin-quicktime.xml:
3385         * win32/MANIFEST:
3386         Move qtdemux from -bad.
3387
3388         * gst-plugins-good.spec.in:
3389         Update spec file to reflect moving of qtdemux and wavpack
3390
3391 2007-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
3392         
3393         * win32/MANIFEST:
3394         * docs/plugins/Makefile.am:
3395         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3396         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3397         * docs/plugins/inspect/plugin-directdraw.xml:
3398         * docs/plugins/inspect/plugin-directsound.xml:
3399         * docs/plugins/inspect/plugin-waveform.xml:
3400         Move the waveform plugin from -bad too. Update the inspect xml
3401         files to mention Plugins Good instead of Plugins Bad.
3402
3403 2007-06-12  Andy Wingo  <wingo@pobox.com>
3404
3405         * sys/v4l2/v4l2src_calls.c (gst_v4l2_buffer_finalize)
3406         (gst_v4l2_buffer_class_init, gst_v4l2_buffer_get_type)
3407         (gst_v4l2_buffer_new): Behave more like ximagesink's buffers, with
3408         finalization and resuscitation. No longer public.
3409         (gst_v4l2_buffer_pool_finalize, gst_v4l2_buffer_pool_init)
3410         (gst_v4l2_buffer_pool_class_init, gst_v4l2_buffer_pool_get_type)
3411         (gst_v4l2_buffer_pool_new, gst_v4l2_buffer_pool_activate)
3412         (gst_v4l2_buffer_pool_destroy): Make the pool follow common
3413         miniobject semantics, and be threadsafe.
3414         (gst_v4l2src_queue_frame): Remove this function, as we just call
3415         the ioctls directly in the two places where we queue buffers.
3416         (gst_v4l2src_grab_frame): Return a flowreturn and fill the buffer
3417         directly.
3418         (gst_v4l2src_capture_init): Use the new buffer_pool_new function
3419         to allocate the pool, which also preallocates the GstBuffers.
3420         (gst_v4l2src_capture_start): Call buffer_pool_activate instead of
3421         queueing the frames directly.
3422         (gst_v4l2src_grab_frame): Return a copy of the pool buffer if all
3423         mmap buffers have been dequeued.
3424
3425         * sys/v4l2/gstv4l2src.h (struct _GstV4l2BufferPool): Make this a
3426         real MiniObject instead of rolling our own refcounting and
3427         finalizing. Give it a lock.
3428         (struct _GstV4l2Buffer): Remove one intermediary object, having
3429         the buffers hold the struct v4l2_buffer directly.
3430
3431         * sys/v4l2/gstv4l2src.c (gst_v4l2src_set_caps): Pass the caps to
3432         capture_init so that it can set them on the buffers that it will
3433         create.
3434         (gst_v4l2src_get_read): For better or for worse, include the
3435         timestamping and offsetting code here; really we should be using
3436         bufferalloc though.
3437         (gst_v4l2src_get_mmap): Just make grab_frame return one of our
3438         preallocated, mmap'd buffers.
3439
3440 2007-06-11  Wim Taymans  <wim@fluendo.com>
3441
3442         Patch by: daniel fischer <dan at f3c dot com>
3443
3444         * sys/ximage/gstximagesrc.c: (gst_ximage_src_start),
3445         (gst_ximage_src_get_caps):
3446         Actually use the display_name property so that we can dump any
3447         available X display. Fixes #445905.
3448
3449 2007-06-11  Wim Taymans  <wim@fluendo.com>
3450
3451         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
3452
3453         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_setcaps):
3454         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_setcaps):
3455         Add missing rate fields to caps. Fixes #441118.
3456
3457 2007-06-10  Sebastien Moutte  <sebastien@moutte.net>
3458
3459         * win32/vs6/gst_plugins_good.dsw:
3460         * win32/vs8/gst-plugins-good.sln:
3461         Add DirectSound and DirectDraw sinks project files to
3462         workspace and solution files.
3463
3464 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
3465
3466         Patch by: Josh Coalson <xflac at yahoo dot com>,
3467         updated by Alexis Ballier <aballier at gentoo dot org>:
3468
3469         * configure.ac:
3470         * ext/flac/gstflacdec.c: (gst_flac_dec_reset_decoders),
3471         (gst_flac_dec_setup_seekable_decoder),
3472         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_seek),
3473         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
3474         (gst_flac_dec_read_seekable), (gst_flac_dec_read_stream):
3475         * ext/flac/gstflacdec.h:
3476         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
3477         (gst_flac_enc_finalize), (gst_flac_enc_set_metadata),
3478         (gst_flac_enc_sink_setcaps), (gst_flac_enc_update_quality),
3479         (gst_flac_enc_seek_callback), (gst_flac_enc_write_callback),
3480         (gst_flac_enc_tell_callback), (gst_flac_enc_sink_event),
3481         (gst_flac_enc_chain), (gst_flac_enc_set_property),
3482         (gst_flac_enc_get_property), (gst_flac_enc_change_state):
3483         * ext/flac/gstflacenc.h:
3484         Add support for flac >= 1.1.3 which changed the API. Fixes bug #385887.
3485         
3486 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
3487
3488         * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_sink_set_caps):
3489         Remove workaround for bug #421543. This is fixed in core 0.10.13 and
3490         not necessary anymore as we need at least that core version. 
3491
3492 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
3493
3494         * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset),
3495         (gst_wavpack_dec_chain):
3496         * ext/wavpack/gstwavpackdec.h:
3497         * ext/wavpack/gstwavpackparse.c: (gst_wavpack_parse_reset),
3498         (gst_wavpack_parse_push_buffer):
3499         * ext/wavpack/gstwavpackparse.h:
3500         Improve discont handling by checking if the next Wavpack block has
3501         the expected, following block index.
3502
3503 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
3504
3505         * gst/rtp/gstrtpmp4vpay.c (gst_rtp_mp4vpay_details):
3506           Fix element description.
3507
3508 2007-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
3509
3510         * configure.ac:
3511         * docs/plugins/Makefile.am:
3512         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3513         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3514         * docs/plugins/gst-plugins-good-plugins.args:
3515         * docs/plugins/gst-plugins-good-plugins.hierarchy:
3516         * docs/plugins/gst-plugins-good-plugins.signals:
3517         * docs/plugins/inspect/plugin-autodetect.xml:
3518         * docs/plugins/inspect/plugin-gconfelements.xml:
3519         * docs/plugins/inspect/plugin-ladspa.xml:
3520         * docs/plugins/inspect/plugin-rtp.xml:
3521         * docs/plugins/inspect/plugin-wavpack.xml:
3522         * ext/Makefile.am:
3523         * tests/check/Makefile.am:
3524           move wavpack plugin.  See #352605.
3525
3526 2007-06-08  Jan Schmidt  <thaytan@mad.scientist.com>
3527
3528         * configure.ac:
3529         * docs/plugins/Makefile.am:
3530         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
3531         * docs/plugins/gst-plugins-good-plugins-sections.txt:
3532         * docs/plugins/gst-plugins-good-plugins.args:
3533         * sys/Makefile.am:
3534         * win32/MANIFEST:
3535         Add DirectDraw & DirectSound plugins to the build and docs.
3536
3537 2007-06-08  Tim-Philipp Müller  <tim at centricular dot net>
3538
3539         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
3540         * ext/libpng/gstpngdec.c: (user_read_data), (gst_pngdec_task):
3541           When operating in pull mode, error out correct on not-linked.
3542
3543 2007-06-06  Andy Wingo  <wingo@pobox.com>
3544
3545         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_probe_caps_for_format)
3546         (gst_v4l2src_probe_caps_for_format_and_size): Only probe for
3547         format and size if the ioctls are defined; should fix compilation
3548         on Linux < 2.16.19.
3549
3550 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
3551
3552         * gst/videobox/gstvideobox.c: (gst_video_box_ayuv_i420):
3553           Printf fixes in debug statements; use LOG level for debug statements
3554           that are printed for each and every frame; convert c++ comments to
3555           C-style comments; not much point using g_try_malloc() if we then not
3556           even check the return value.
3557
3558 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
3559
3560         * configure.ac:
3561           Bump requirements to released versions (core and base 0.10.13).
3562
3563         * gst/icydemux/gsticydemux.c: (gst_icydemux_unicodify):
3564           Use gst_tag_utf8_from_freeform_string() from libgsttag instead of
3565           own implementation.
3566
3567 2007-06-05  Andy Wingo  <wingo@pobox.com>
3568
3569         * sys/v4l2/gstv4l2src.c (gst_v4l2src_start, gst_v4l2src_stop): Add
3570         some useless comments.
3571
3572         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_capture_init): Don't queue
3573         frames before calling STREAMON, that might leave them in a state
3574         where they can't be dequeued if we go back to NULL without calling
3575         STREAMON, according to the docs.
3576         (gst_v4l2src_capture_start): Enqueue buffers here instead, right
3577         before we call STREAMON.
3578         (gst_v4l2src_capture_deinit): Remove crack to work around dequeue
3579         failures. (For me this code hung.) The pool refcounting is still
3580         crack; added a note to that effect.
3581
3582 2007-06-05  Wim Taymans  <wim@fluendo.com>
3583
3584         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
3585         (gst_multipart_mux_get_mime), (gst_multipart_mux_collected):
3586         Add support for mapping gst structure names to the MIME type equivalent.
3587         Implemented for audio/x-mulaw->audio/basic. Fixes #442874.
3588
3589 2007-06-03  Sebastian Dröge  <slomo@circular-chaos.org>
3590
3591         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
3592         (gst_wavenc_sink_setcaps), (gst_wavenc_format_samples),
3593         (gst_wavenc_chain), (gst_wavenc_change_state):
3594         * gst/wavenc/gstwavenc.h:
3595         Properly write wav files with width!=depth by having the depth most
3596         significant bytes set and all others zero. Fixes #442535.
3597
3598 2007-06-01  Wim Taymans  <wim@fluendo.com>
3599
3600         * gst/rtsp/rtspconnection.c:
3601         Add include to make buildbot happy.
3602
3603 2007-06-01  Wim Taymans  <wim@fluendo.com>
3604
3605         Patch by: Peter Kjellerstedt  <pkj at axis com>
3606
3607         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
3608         (rtsp_connection_connect), (add_date_header),
3609         (rtsp_connection_send), (parse_response_status),
3610         (parse_request_line), (parse_line), (rtsp_connection_receive):
3611         * gst/rtsp/rtspdefs.c: (rtsp_version_as_text):
3612         * gst/rtsp/rtspdefs.h:
3613         * gst/rtsp/rtspmessage.c: (key_value_foreach),
3614         (rtsp_message_init_request), (rtsp_message_init_response),
3615         (rtsp_message_remove_header), (rtsp_message_append_headers),
3616         (rtsp_message_dump):
3617         * gst/rtsp/rtspmessage.h:
3618         Improves version checking, allowing an RTSP server to reply with "505
3619         RTSP Version not supported.
3620         Adds a Date header to all messages.
3621         Replies with RTSP_EPARSE rather than RTSP_EINVALID in cases where we
3622         want to be able to send a response even if something in the request was
3623         invalid. EINVAL is only used when passing wrong arguments to functions.
3624         Do not handle an invalid method in parse_request_line(). Defer this to
3625         the caller so it can respond with "405 Method Not Allowed".
3626         Improves parsing of the timeout parameter to the Session header,
3627         allowing whitespace after the semicolon. 
3628         Avoids a compiler warning due to variables shadowing a function argument.
3629
3630 2007-06-01  Wim Taymans  <wim@fluendo.com>
3631
3632         Based on Patch by: Daniel Charles <dcharles at ti dot com>
3633
3634         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
3635         (gst_rtp_amr_depay_process):
3636         * gst/rtp/gstrtpamrdepay.h:
3637         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_base_init),
3638         (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_init),
3639         (gst_rtp_amr_pay_setcaps), (gst_rtp_amr_pay_handle_buffer):
3640         * gst/rtp/gstrtpamrpay.h:
3641         Add support for AMR-WB.
3642         Small cleanups such as using BOILERPLATE.
3643
3644 2007-05-31  Wim Taymans  <wim@fluendo.com>
3645
3646         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream):
3647         Fix compile warning when debug is disabled as spotted bu Saur on IRC.
3648
3649 2007-05-30  Andy Wingo  <wingo@pobox.com>
3650
3651         * sys/v4l2/gstv4l2object.h: 
3652         * sys/v4l2/gstv4l2object.c (gst_v4l2_object_new): Revert some
3653         unintended changes.
3654
3655         * sys/v4l2/v4l2src_calls.h: 
3656         * sys/v4l2/v4l2src_calls.c (gst_v4l2src_fill_format_list): Store
3657         the format list in the order that the driver gives it to us.
3658         (gst_v4l2src_probe_caps_for_format_and_size)
3659         (gst_v4l2src_probe_caps_for_format): New functions, fill GstCaps
3660         based on the capabilities of the device.
3661         (gst_v4l2src_grab_frame): Update for object variable renaming.
3662         (gst_v4l2src_set_capture): Update to be strict in its parameters,
3663         as in the set_caps below.
3664         (gst_v4l2src_capture_init): Update for object variable renaming,
3665         and reflow.
3666         (gst_v4l2src_capture_start, gst_v4l2src_capture_stop)
3667         (gst_v4l2src_capture_deinit): Update for object variable renaming.
3668         (gst_v4l2src_update_fps, gst_v4l2src_set_fps)
3669         (gst_v4l2src_get_fps): Remove; these functions don't have much
3670         meaning outside of an atomic set_caps method.
3671         (gst_v4l2src_buffer_new): Don't set buffer duration, it is not
3672         known.
3673
3674         * sys/v4l2/gstv4l2tuner.c (gst_v4l2_tuner_set_channel): Remove
3675         call to update_fps; not sure about this change.
3676         (gst_v4l2_tuner_set_norm): Work around the fact that for the
3677         moment we don't have an update_fps_func.
3678
3679         * sys/v4l2/gstv4l2src.h (struct _GstV4l2Src): Don't put v4l2
3680         structures in the object, just store what we need. Do store the
3681         probed caps of the device. Don't store the current frame rate.
3682
3683         * sys/v4l2/gstv4l2src.c (gst_v4l2src_init): Remove the
3684         update_fps_function, for now. Update for new object variable
3685         naming.
3686         (gst_v4l2src_set_property, gst_v4l2src_get_property): Update for
3687         new object variable naming.
3688         (gst_v4l2src_v4l2fourcc_to_structure): Rename from ..._to_caps.
3689         (gst_v4l2_structure_to_v4l2fourcc): Rename from ...caps_to_....
3690         (gst_v4l2src_get_caps): Rework to probe the device for supported
3691         frame sizes and frame rates.
3692         (gst_v4l2src_set_caps): Rework to be strict in the given
3693         parameters: if someone asks us to have a certain size and rate,
3694         that is what we configure.
3695         (gst_v4l2src_get_read): Update for object variable naming. Don't
3696         leak buffers on short reads.
3697         (gst_v4l2src_get_mmap): Update for object variable naming, and add
3698         comments.
3699         (gst_v4l2src_create): Update for object variable naming.
3700
3701 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
3702
3703         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
3704         (gst_avi_demux_reset), (gst_avi_demux_parse_stream):
3705         * gst/avi/gstavidemux.h:
3706           Parse subtitle text streams instead of erroring out (#442034). Still
3707           needs a parser for the subtitles to actually show up.
3708
3709 2007-05-30  Tim-Philipp Müller  <tim at centricular dot net>
3710
3711         * gst/avi/gstavidemux.c: (gst_avi_demux_push_event),
3712         (gst_avi_demux_loop):
3713           Make _push_event() return TRUE if the event could be pushed on at
3714           least one pad and not only if it could be pushed on all pads,
3715           otherwise we'll end up posting an error message on EOS if one or
3716           more source pads are not connected.
3717
3718 2007-05-28  Wim Taymans  <wim@fluendo.com>
3719
3720         * gst/rtsp/rtsptransport.c:
3721         Use renamed RTP bin.
3722
3723 2007-05-28  Wim Taymans  <wim@fluendo.com>
3724
3725         Based on patch by: Dejan Sakelšak <sakdean at gmail dot com>
3726
3727         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
3728         (gst_video_box_set_property), (gst_video_box_transform_caps),
3729         (video_box_recalc_transform), (gst_video_box_set_caps),
3730         (gst_video_box_get_unit_size), (gst_video_box_apply_alpha),
3731         (gst_video_box_ayuv_ayuv), (gst_video_box_clear), (UVfloor),
3732         (UVceil), (gst_video_box_ayuv_i420), (gst_video_box_i420_ayuv),
3733         (gst_video_box_i420_i420), (gst_video_box_transform),
3734         (plugin_init):
3735         Add AYUV->AYUV and AYUV->I420 formats. 
3736         Fix negotiation and I420->AYUV conversion.
3737         Fixes #429329.
3738
3739 2007-05-26  Wim Taymans  <wim@fluendo.com>
3740
3741         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_data):
3742         Use different variables for nested for loops so that the outer loop
3743         functions properly and speex files with multiple frames per buffer work
3744         properly.
3745         Fixes #441408.
3746
3747 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
3748
3749         * gst/id3demux/gstid3demux.c: (gst_id3demux_sink_event):
3750           Don't leak newsegment events.
3751
3752 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
3753
3754         * gst/wavparse/Makefile.am:
3755           Add '-lm' to LIBS for ceil(), don't assume one of our dependencies
3756           drags it in.
3757
3758 2007-05-25  Tim-Philipp Müller  <tim at centricular dot net>
3759
3760         * ext/flac/gstflacenc.c: (gst_flac_enc_init),
3761         (notgst_value_array_append_buffer),
3762         (gst_flac_enc_process_stream_headers),
3763         (gst_flac_enc_write_callback), (gst_flac_enc_chain),
3764         (gst_flac_enc_change_state):
3765         * ext/flac/gstflacenc.h:
3766           Collect headers, add "streamheader" field to output caps and set
3767           BUFFER_IN_CAPS flag on pushed header buffers. That way oggmux
3768           produces output according to the official FLAC-to-Ogg mapping
3769           instead of completely broken files. Fixes #426044.
3770
3771 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
3772
3773         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset),
3774         (gst_id3demux_send_new_segment), (gst_id3demux_chain),
3775         (gst_id3demux_sink_event):
3776         * gst/id3demux/gstid3demux.h:
3777         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset),
3778         (gst_tag_demux_chain), (gst_tag_demux_sink_event),
3779         (gst_tag_demux_send_new_segment):
3780         Handle and adjust new-segment events so that downstream really
3781         sees a stream with the tag pieces stripped off the front and back.
3782         Fixes strangeness in seeking when mp3 decoders use the new-segment
3783         byte position to estimate their current playback position timestamp
3784         and then the arriving buffers don't match up.
3785
3786 2007-05-25  Jan Schmidt  <thaytan@mad.scientist.com>
3787
3788         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_detect):
3789           Don't unnecessarily perform a READY->NULL->READY transition on the
3790           detected audio sink when starting up. Fixes: #440127
3791
3792 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
3793
3794         * ext/flac/gstflacenc.c: (gst_flac_enc_sink_setcaps),
3795         (gst_flac_enc_chain):
3796           Don't crash in chain function if setcaps hasn't been called.
3797
3798 2007-05-24  Wim Taymans  <wim@fluendo.com>
3799
3800         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_methods):
3801         Init value to avoid infinte loops.
3802
3803 2007-05-24  Wim Taymans  <wim@fluendo.com>
3804
3805         Patch by: Peter Kjellerstedt  <pkj at axis com>
3806
3807         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_auth),
3808         (gst_rtspsrc_try_send), (gst_rtspsrc_parse_methods),
3809         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
3810         (gst_rtspsrc_play):
3811         (rtsp_connection_send), (rtsp_connection_receive):
3812         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send):
3813         Fix for new API.
3814
3815         * gst/rtsp/rtspconnection.c: (add_auth_header),
3816         Only add authorisation and session headers when sending messages.
3817
3818         * gst/rtsp/rtspmessage.c: (key_value_foreach), (rtsp_message_init),
3819         (rtsp_message_init_request), (rtsp_message_init_response),
3820         (rtsp_message_unset), (rtsp_message_add_header),
3821         (rtsp_message_remove_header), (rtsp_message_get_header),
3822         (rtsp_message_append_headers), (dump_key_value),
3823         (rtsp_message_dump):
3824         * gst/rtsp/rtspmessage.h:
3825         Add support for multiple headers of the same type by storing the parsed
3826         headers in a GArray instaed of a hashtable.
3827
3828 2007-05-21  Wim Taymans  <wim@fluendo.com>
3829
3830         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
3831         (gst_udpsrc_create), (gst_udpsrc_unlock), (gst_udpsrc_unlock_stop):
3832         Since we depend on 0.10.13 -core, override the unlock_stop vmethod for
3833         safer shutdown.
3834
3835 2007-05-21  Wim Taymans  <wim@fluendo.com>
3836
3837         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init):
3838         * gst/rtsp/gstrtpdec.h:
3839         Added signal for backwards compat.
3840
3841 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
3842         
3843         Patch by: René Stadler <mail at renestadler dot de>
3844
3845         * configure.ac:
3846         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
3847         (gst_au_parse_parse_header), (gst_au_parse_chain):
3848         * gst/auparse/gstauparse.h:
3849         Use audioconvert for converting from non-native endianness floats
3850         in auparse instead of doing it ourself. Fixes #424527.
3851         This needs the audioconvert from plugins-base CVS.
3852         
3853 2007-05-21  Wim Taymans  <wim@fluendo.com>
3854
3855         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
3856         (gst_rtp_h263p_pay_flush):
3857         Fix enum registration.
3858
3859 2007-05-21  Wim Taymans  <wim@fluendo.com>
3860
3861         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
3862
3863         * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type),
3864         (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_init),
3865         (gst_rtp_h263p_pay_set_property), (gst_rtp_h263p_pay_get_property),
3866         (gst_rtp_h263p_pay_flush):
3867         * gst/rtp/gstrtph263ppay.h:
3868         Add new fragmentation mode base on GOB headers. Fixes #438940.
3869
3870 2007-05-20  Tim-Philipp Müller  <tim at centricular dot net>
3871
3872         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp):
3873           Printf format fix.
3874
3875 2007-05-18  Wim Taymans  <wim@fluendo.com>
3876
3877         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_setup_streams):
3878         Don't crash when an unsupported transport error was returned by the
3879         server, just try to configure the next stream. Fixes #439255.
3880
3881 2007-05-18  Wim Taymans  <wim@fluendo.com>
3882
3883         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
3884         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
3885         (gst_rtspsrc_stream_configure_udp), (gst_rtspsrc_loop_interleaved),
3886         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
3887         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open):
3888         * gst/rtsp/gstrtspsrc.h:
3889         Add TCP timeout property and use it for all TCP connection.
3890
3891         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
3892         (rtsp_connection_write), (rtsp_connection_next_timeout),
3893         (rtsp_connection_reset_timeout):
3894         Make connect and writes cancelable and make them use the timeout.
3895
3896 2007-05-18  Wim Taymans  <wim@fluendo.com>
3897
3898         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
3899         (gst_rtspsrc_loop_interleaved), (gst_rtspsrc_loop_udp),
3900         (gst_rtspsrc_try_send), (gst_rtspsrc_send),
3901         (gst_rtspsrc_setup_streams):
3902         Refactor timeout handling.
3903         Also send keep-alive when dealing with TCP transport.
3904
3905         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
3906         (rtsp_connection_free), (rtsp_connection_next_timeout),
3907         (rtsp_connection_reset_timeout):
3908         * gst/rtsp/rtspconnection.h:
3909         Use a timer to handle the session timeouts, add some methods to deal
3910         with timeouts.
3911
3912 2007-05-17  Wim Taymans  <wim@fluendo.com>
3913
3914         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
3915         (gst_rtspsrc_setup_streams):
3916         Ignore streams that fail the setup command, we will retry with a
3917         different transport later on.
3918
3919         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
3920         (rtsp_ext_wms_configure_stream):
3921         Fix encoding name case.
3922
3923 2007-05-16  Edward Hervey  <edward@fluendo.com>
3924
3925         * ext/libpng/gstpngdec.c: (user_endrow_callback), (user_read_data):
3926         Fix build on macosx.
3927
3928 2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
3929
3930         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri):
3931         Replace direct comparison of a string with the string literal "" with
3932         a comparison of the first character with '\0'. Fixes #438926.
3933
3934 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
3935
3936         * gst/debug/breakmydata.c (gst_break_my_data_init):
3937           One more try. This should be the proper fix now.
3938
3939 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
3940
3941         * gst/debug/breakmydata.c:
3942           Ooops, no // comments please.
3943
3944 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
3945
3946         * gst/debug/breakmydata.c: (gst_break_my_data_class_init),
3947         (gst_break_my_data_init):
3948           Fix gst_buffer_is_writable() assertion.
3949
3950 2007-05-14  David Schleef  <ds@schleef.org>
3951
3952         * sys/v4l2/gstv4l2src.c: Add support for Bayer images as
3953           video/x-raw-bayer.  Fixes #314160.
3954
3955 2007-05-14  Wim Taymans  <wim@fluendo.com>
3956
3957         * gst/rtp/gstrtptheoradepay.c: (decode_base64),
3958         (gst_rtp_theora_depay_parse_configuration):
3959         * gst/rtp/gstrtptheorapay.c: (encode_base64),
3960         (gst_rtp_theora_pay_finish_headers),
3961         (gst_rtp_theora_pay_handle_buffer):
3962         Update theora pay/depayloader in a similar to vorbis.
3963
3964         * gst/rtp/gstrtpvorbisdepay.c:
3965         (gst_rtp_vorbis_depay_parse_configuration):
3966         Update docs.
3967
3968 2007-05-14  Wim Taymans  <wim@fluendo.com>
3969
3970         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send):
3971         When we try to execute a method that is not supported by the server,
3972         don't error out but remove the method from the accepted methods so that
3973         we never try to perform this method again.
3974
3975 2007-05-14  Wim Taymans  <wim@fluendo.com>
3976
3977         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
3978         Remove annoying _dump_mem.
3979
3980 2007-05-14  Wim Taymans  <wim@fluendo.com>
3981
3982         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_range):
3983         Parse range correctly.
3984
3985         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
3986         The baseurl now always has a '/' at the start.
3987
3988 2007-05-14  Wim Taymans  <wim@fluendo.com>
3989
3990         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_configure_caps),
3991         (gst_rtspsrc_parse_range), (gst_rtspsrc_open),
3992         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
3993         Factor out caps configuration and configure more stuff such as the time
3994         ranges and speed/scale values.
3995
3996         * gst/rtsp/rtsptransport.c:
3997         Add Copyright after non-trival fixes.
3998
3999 2007-05-12  Wim Taymans  <wim@fluendo.com>
4000
4001         Patch by: Peter Kjellerstedt  <pkj at axis com>
4002
4003         * gst/rtsp/gstrtspsrc.h:
4004         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
4005         * gst/rtsp/rtspmessage.c: (rtsp_message_init_data),
4006         (rtsp_message_get_header):
4007         * gst/rtsp/rtspmessage.h:
4008         Make channel guint8 where possible.
4009         Make rtsp_message_init_data() take the channel as a guint8.
4010
4011         * gst/rtsp/rtspdefs.c:
4012         Fixed a typo: Timout -> Timeout
4013
4014         * gst/rtsp/rtspdefs.h:
4015         Make RTSP_CHECK() behave as a statement.
4016
4017         * gst/rtsp/sdpmessage.c:
4018         Avoid a compiler warning in INIT_ARRAY().
4019         Fixes #437692.
4020
4021 2007-05-12  Wim Taymans  <wim@fluendo.com>
4022
4023         Patch by: Peter Kjellerstedt  <pkj at axis com>
4024
4025         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free),
4026         (rtsp_url_get_request_uri):
4027         * gst/rtsp/rtspurl.h:
4028         Add support for query parameters to RTSP URLs.
4029
4030 2007-05-12  Wim Taymans  <wim@fluendo.com>
4031
4032         Patch by: Peter Kjellerstedt  <pkj at axis com>
4033
4034         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
4035         (parse_range), (range_as_text), (rtsp_transport_mode_as_text),
4036         (rtsp_transport_profile_as_text), (rtsp_transport_ltrans_as_text),
4037         (rtsp_transport_parse), (rtsp_transport_as_text):
4038         * gst/rtsp/rtsptransport.h:
4039         Add validation to rtsp_transport_parse().
4040         Add rtsp_transport_as_text() to generate an RTSP header from an
4041         RTSPTransport.
4042         Change ssrc to guint (was a string) since that is what it is, even
4043         though it is sent as a hex string.
4044         Correctly identify PLAY|RECORD mode parameters (the syntax in the RFC is
4045         incorrect, which can be seen when looking at the examples in the RFC).
4046         Fixes #437670.
4047
4048 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
4049
4050         Patch by: Eric Anholt
4051
4052         * sys/ximage/gstximagesrc.c (gst_ximage_src_open_display,
4053           gst_ximage_src_ximage_get):
4054         Use union of all damage between frames to make it faster.
4055         Fixes bug #342463.
4056         Also fix crasher when cursor is at bottom right of window.
4057
4058 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
4059
4060         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
4061           Skip LIST chunks before the fmt chunk (fixes #437499). Also fix
4062           streaming mode regression for file from #343837 with 'bext' chunk
4063           before the 'fmt' chunk.
4064
4065 2007-05-11  Wim Taymans  <wim@fluendo.com>
4066
4067         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_flush),
4068         (gst_rtspsrc_do_seek), (gst_rtspsrc_perform_seek),
4069         (gst_rtspsrc_handle_src_event),
4070         (gst_rtspsrc_stream_configure_manager),
4071         (gst_rtspsrc_stream_configure_tcp), (gst_rtspsrc_loop_interleaved),
4072         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open),
4073         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
4074         * gst/rtsp/gstrtspsrc.h:
4075         * gst/rtsp/rtspdefs.h:
4076         Preliminary seek support.
4077         Activate internal pads so that we can receive events on them.
4078         Don't try to parse a range string when it's NULL.
4079
4080 2007-05-11  Wim Taymans  <wim@fluendo.com>
4081
4082         * gst/rtp/README:
4083         Update README with new RTP variables that will be used for
4084         synchronisation.
4085
4086         * gst/rtp/gstrtpvorbisdepay.c: (decode_base64),
4087         (gst_rtp_vorbis_depay_parse_configuration),
4088         (gst_rtp_vorbis_depay_process):
4089         * gst/rtp/gstrtpvorbispay.c: (encode_base64),
4090         (gst_rtp_vorbis_pay_finish_headers),
4091         (gst_rtp_vorbis_pay_handle_buffer):
4092         Update vorbis pay and depayloader to draft-04.
4093
4094 2007-05-11  Wim Taymans  <wim@fluendo.com>
4095
4096         * gst/rtsp/rtsptransport.c:
4097         UDP MCAST is actually the default for RTP/AVP.
4098 2007-05-13  Sebastien Moutte  <sebastien@moutte.net>
4099
4100         * gst/level/gstlevel.c: (gst_level_transform_ip):
4101         Use guint8 * instead of gpointer then vs6 can build 
4102         in_data += (filter->width / 8).
4103
4104 2007-05-11  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
4105
4106         * sys/ximage/gstximagesrc.c (gst_ximage_src_start,
4107           gst_ximage_src_ximage_get):
4108         * sys/ximage/gstximagesrc.h (last_ximage):
4109         When using Damage actually keep the last frame, and not assume
4110         that the buffer we get already has the last frame on it.
4111         Copy the cursor over if we specify a non-zero start x and
4112         start y.
4113
4114 2007-05-11  Wim Taymans  <wim@fluendo.com>
4115
4116         * gst/rtsp/rtsptransport.c:
4117         Make UDP the default transport when not specified.
4118
4119 2007-05-09  David Schleef  <ds@schleef.org>
4120
4121         * gst/level/gstlevel.c:
4122           Revert last change.
4123
4124 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
4125
4126         * gst/level/gstlevel.c: (gst_level_calculate_##TYPE),
4127         (gst_level_transform_ip):
4128         Use guint8 * instead of gpointer then vs6 know the size of data
4129         pointed when moving the pointer.
4130         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_handle_buffer):
4131         Move instructions after variables declaration.
4132         * win32/vs6/autogen.dsp:
4133         * win32/vs6/libgstrtp.dsp:
4134         * win32/vs6/libgstrtsp.dsp:
4135         Update vs6 project files.
4136
4137 2007-05-09  Wim Taymans  <wim@fluendo.com>
4138
4139         * gst/rtsp/Makefile.am:
4140         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_query),
4141         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_open):
4142         * gst/rtsp/rtsprange.c: (parse_npt_time), (parse_npt_range),
4143         (parse_clock_range), (parse_smpte_range), (rtsp_range_parse),
4144         (rtsp_range_free):
4145         * gst/rtsp/rtsprange.h:
4146         Add code to parse time ranges.
4147         Report DURATION on the stream when possible.
4148
4149 2007-05-08  Tim-Philipp Müller  <tim at centricular dot net>
4150
4151         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
4152         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
4153         (gst_videomixer_collected):
4154           Fix strides calculation for AYUV (it's just width*4) (#436910).
4155
4156 2007-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
4157
4158         * gst/audiofx/audioamplify.c: (gst_audio_amplify_transform_ip):
4159         * gst/audiofx/audiodynamic.c: (gst_audio_dynamic_transform_ip):
4160         * gst/audiofx/audioinvert.c: (gst_audio_invert_transform_ip):
4161         Sync the GObject properties before each processing step to properly
4162         work with the controller.
4163
4164 2007-05-04  Wim Taymans  <wim@fluendo.com>
4165
4166         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive),
4167         (gst_rtspsrc_loop_udp), (gst_rtspsrc_try_send), (gst_rtspsrc_send),
4168         (gst_rtspsrc_setup_streams), (gst_rtspsrc_open),
4169         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
4170         (gst_rtspsrc_change_state):
4171         Let more error state trickle down so that we can catch more error
4172         cases.
4173         Handle keep-alive a little smarter by selecting a method the server
4174         actually supports.
4175         Fix a race in UDP streaming shutdown.
4176
4177 2007-05-04  Wim Taymans  <wim@fluendo.com>
4178
4179         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send_keep_alive):
4180         Ignore errors when trying to use the keep-alive messages.
4181
4182 2007-05-04  Wim Taymans  <wim@fluendo.com>
4183
4184         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event),
4185         (gst_rtspsrc_handle_src_query), (gst_rtspsrc_sink_chain),
4186         (gst_rtspsrc_stream_configure_manager),
4187         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
4188         (gst_rtspsrc_stream_configure_mcast),
4189         (gst_rtspsrc_stream_configure_udp),
4190         (gst_rtspsrc_stream_configure_udp_sink),
4191         (gst_rtspsrc_stream_configure_transport):
4192         Send RTCP messages back to the server over the TCP connection.
4193
4194         * gst/rtsp/rtspconnection.c: (rtsp_connection_write),
4195         (rtsp_connection_send), (rtsp_connection_read), (read_body),
4196         (rtsp_connection_receive):
4197         * gst/rtsp/rtspconnection.h:
4198         Factor out and expose lowlevel _write and _read methods.
4199         Implement sending data messages to the server.
4200
4201 2007-05-03  Wim Taymans  <wim@fluendo.com>
4202
4203         * gst/multipart/multipartmux.c: (gst_multipart_mux_queue_pads),
4204         (gst_multipart_mux_collected):
4205         Fix timestamps on outgoing buffers.
4206
4207 2007-05-03  Wim Taymans  <wim@fluendo.com>
4208
4209         * gst/multipart/multipartmux.c:
4210         (gst_multipart_mux_request_new_pad), (gst_multipart_mux_collected),
4211         (gst_multipart_mux_change_state):
4212         Emit NEWSEGMENT events before pushing the first buffer.
4213
4214 2007-05-03  Wim Taymans  <wim@fluendo.com>
4215
4216         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
4217         (gst_rtspsrc_alloc_udp_ports), (gst_rtspsrc_handle_src_event),
4218         (gst_rtspsrc_handle_src_query),
4219         (gst_rtspsrc_stream_configure_manager),
4220         (gst_rtspsrc_stream_free_udp), (gst_rtspsrc_stream_configure_tcp),
4221         (gst_rtspsrc_stream_configure_mcast),
4222         (gst_rtspsrc_stream_configure_udp),
4223         (gst_rtspsrc_stream_configure_udp_sink),
4224         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
4225         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
4226         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
4227         (gst_rtspsrc_pause):
4228         Refactor transport configuration code.
4229         Create internal pads for TCP transport so that we can implement events
4230         and queries.
4231         Handle events and queries.
4232         Parse range from the SDP.
4233         Fix race in pause handler where the connection could still be flushing.
4234
4235 2007-05-02  Wim Taymans  <wim@fluendo.com>
4236
4237         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4238         (gst_rtspsrc_finalize), (new_session_pad), (request_pt_map),
4239         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
4240         (gst_rtspsrc_send), (gst_rtspsrc_async_open), (gst_rtspsrc_close),
4241         (gst_rtspsrc_play), (gst_rtspsrc_handle_message),
4242         (gst_rtspsrc_change_state):
4243         * gst/rtsp/gstrtspsrc.h:
4244         Fix race when multiple udp sources post timeouts, just act on the first
4245         received timeout.
4246         Protect stream list with a recursive lock to fix some races.
4247         Flush connection when we need to do a reconnect or stop.
4248         Make state lock recursive.
4249
4250         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
4251         (rtsp_connection_close):
4252         Some small cleanups.
4253
4254 2007-05-02  Wim Taymans  <wim@fluendo.com>
4255
4256         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
4257         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
4258         Only set DISCONT when there actually is a discont or when we just
4259         started.
4260
4261 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
4262
4263         * ext/flac/gstflac.c: (plugin_init):
4264         Call bindtextdomain() to get localized strings.
4265
4266 2007-05-02  Wim Taymans  <wim@fluendo.com>
4267
4268         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
4269         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
4270         (gst_wavparse_stream_data):
4271         * gst/wavparse/gstwavparse.h:
4272         Be a bit more clever when dealing with VBR files with FACT tags, we
4273         don't want to timestamp buffers in that case but the estimated BPS can
4274         be used for seeking.
4275         Only send close segment in the streaming thread.
4276
4277 2007-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
4278
4279         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
4280         Correctly post an error on the bus if something went wrong in the loop
4281         function. This fixes a few cases where the task was paused and nothing
4282         happened anymore.
4283
4284 2007-05-02  Wim Taymans  <wim@fluendo.com>
4285
4286         * gst/rtsp/test.c: (main):
4287         Fix compilation of deprecated test just because I'm too lazy to delete
4288         it.
4289
4290 2007-05-02  Wim Taymans  <wim@fluendo.com>
4291
4292         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4293         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
4294         (gst_rtspsrc_handle_request), (gst_rtspsrc_loop_interleaved),
4295         (gst_rtspsrc_send_keep_alive), (gst_rtspsrc_loop_udp),
4296         (gst_rtspsrc_loop_send_cmd), (gst_rtspsrc_try_send),
4297         (gst_rtspsrc_open), (gst_rtspsrc_handle_message):
4298         * gst/rtsp/gstrtspsrc.h:
4299         Fix sending RTCP to the right place.
4300         Fix bug in reffing the wrong UDP element.
4301         Use new pad names for the session manager.
4302         Implement handling server requests in interleaved and UDP modes.
4303         Handle session keep-alive in UDP modes.
4304         Remove GCond for handling UDP timeouts.
4305
4306         * gst/rtsp/rtspconnection.c: (rtsp_connection_connect),
4307         (rtsp_connection_send), (rtsp_connection_read), (read_body),
4308         (rtsp_connection_receive), (rtsp_connection_close):
4309         * gst/rtsp/rtspconnection.h:
4310         Store connection IP address for later.
4311         Add timeout args to all operations that might block forever.
4312         Parse session timeout.
4313         Only close sockets when not already closed.
4314
4315         * gst/rtsp/rtspdefs.c:
4316         * gst/rtsp/rtspdefs.h:
4317         Add timeout return value and error string.
4318
4319         * gst/rtsp/rtspmessage.c: (rtsp_message_init_response):
4320         Add small comment.
4321
4322 2007-05-01  Wim Taymans  <wim@fluendo.com>
4323
4324         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4325
4326         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_init),
4327         (gst_rtp_mp4v_pay_empty), (gst_rtp_mp4v_pay_event):
4328         * gst/rtp/gstrtpmp4vpay.h:
4329         Handle NEWSEGMENT and FLUSH events. Fixes #434824.
4330
4331 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
4332
4333         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4334           Remove v4l2src from docs, since it breaks the docs build, and the
4335           plugin is only built if --enable-experimental is used anyway.
4336
4337         * docs/plugins/Makefile.am:
4338           Spaces => tab.
4339
4340 2007-04-29  Wim Taymans  <wim@fluendo.com>
4341
4342         * gst/udp/gstmultiudpsink.c: (leave_multicast),
4343         (gst_multiudpsink_add), (gst_multiudpsink_remove):
4344         Add code to drop membership of a multicast group.
4345
4346         * gst/udp/gstudpsink.c: (gst_udpsink_update_uri),
4347         (gst_udpsink_set_uri):
4348         Implement URI handler.
4349
4350         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
4351         (gst_rtspsrc_parse_rtpinfo):
4352         Use URI handler to make udpsink instace.
4353         Improve code to configure port and destination.
4354
4355 2007-04-29  Wim Taymans  <wim@fluendo.com>
4356
4357         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
4358         Fix multicast detection.
4359         Don't try to join a multicast group if the address is not multicast.
4360
4361         * gst/udp/gstudpsrc.c: (gst_udpsrc_update_uri):
4362         Small debug improvement.
4363
4364 2007-04-27  Wim Taymans  <wim@fluendo.com>
4365
4366         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
4367         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
4368         (gst_rtspsrc_handle_message):
4369         Ignore ASYNC state messages from the udpsink, it's irrelevant for the
4370         parent.
4371
4372 2007-04-27  Wim Taymans  <wim@fluendo.com>
4373
4374         * gst/rtp/gstrtpilbcdepay.h:
4375         Fix mode property when specified as an arg.
4376
4377 2007-04-26  Edward Hervey  <edward@fluendo.com>
4378
4379         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4380         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4381         * docs/plugins/gst-plugins-good-plugins.hierarchy:
4382         * docs/plugins/inspect/plugin-osxaudio.xml:
4383         Add documentation for osxaudio plugin.
4384
4385 2007-04-26  Wim Taymans  <wim@fluendo.com>
4386
4387         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
4388         (gst_rtspsrc_finalize), (gst_rtspsrc_stream_configure_transport),
4389         (gst_rtspsrc_open), (gst_rtspsrc_close),
4390         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play),
4391         (gst_rtspsrc_pause):
4392         * gst/rtsp/gstrtspsrc.h:
4393         Protect state changes with a lock.
4394
4395         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
4396         (parse_line):
4397         * gst/rtsp/rtspconnection.h:
4398         Remove some unused stuff.
4399
4400 2007-04-26  Wim Taymans  <wim@fluendo.com>
4401
4402         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
4403         Handle the case where there are exactly 0 bytes to read and the ioctl
4404         did not report an error. Fixes #433530.
4405
4406 2007-04-26  Wim Taymans  <wim@fluendo.com>
4407
4408         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
4409         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
4410         * gst/wavparse/gstwavparse.h:
4411         Apply DISCONT to buffers.
4412         Only apply timestamp to the first sample after a DISCONT, too many VBR
4413         files cause random jitter in the timestamps. Fixes #433119.
4414
4415 2007-04-25  Wim Taymans  <wim@fluendo.com>
4416
4417         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_class_init),
4418         (gst_rtp_dec_init), (gst_rtp_dec_set_property),
4419         (gst_rtp_dec_get_property):
4420         * gst/rtsp/gstrtpdec.h:
4421         Add dummy latency property to be backwards compat with rtpbin.
4422
4423         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
4424         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
4425         (gst_rtspsrc_stream_configure_transport),
4426         (gst_rtspsrc_parse_rtpinfo):
4427         * gst/rtsp/gstrtspsrc.h:
4428         Add latency property and configure in the session manager.
4429         Don't set invalid clock-base and seqnum-base on caps, some servers
4430         sometimes don't send them.
4431
4432 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
4433
4434         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
4435         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps):
4436           Double-check that RGB input caps are really RGBA caps (apparently
4437           the core doesn't always catch it if those caps aren't a subset of
4438           our template caps, also see #421543). Fixes #429319 in a way.
4439           Also, don't leak the pad template in the transform_caps function.
4440
4441         * tests/check/Makefile.am:
4442         * tests/check/elements/.cvsignore:
4443         * tests/check/elements/alphacolor.c: (setup_alphacolor),
4444         (cleanup_alphacolor), (create_caps_rgb24), (create_caps_rgba32),
4445         (create_buffer_rgb24_3x4), (create_buffer_rgba32_3x4),
4446         (GST_START_TEST), (alphacolor_suite):
4447           Add some basic unit tests for alphacolor.
4448
4449 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
4450
4451         * ext/libpng/gstpngdec.c: (gst_pngdec_task):
4452           If we get a fatal flow return in the loop function, first post the
4453           error message and only then send the EOS event downstream, otherwise
4454           applications might get an eos message before the error message and
4455           think everything was ok (related to #429319).
4456
4457 2007-04-25  Wim Taymans  <wim@fluendo.com>
4458
4459         * gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
4460         Read the channel byte as an unsigned byte.
4461
4462 2007-04-25  Wim Taymans  <wim@fluendo.com>
4463
4464         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_set_property):
4465         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init),
4466         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
4467         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_init),
4468         (gst_rtp_gsm_depay_setcaps):
4469         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps):
4470         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
4471         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_class_init),
4472         (gst_rtp_ilbc_depay_init), (gst_rtp_ilbc_depay_setcaps),
4473         (gst_rtp_ilbc_depay_process), (gst_ilbc_depay_set_property),
4474         (gst_ilbc_depay_get_property):
4475         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
4476         * gst/rtp/gstrtpmp4adepay.c:
4477         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_init),
4478         (gst_rtp_pcma_depay_setcaps):
4479         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_init),
4480         (gst_rtp_pcmu_depay_setcaps):
4481         Make sure we configure the clock_rate in the baseclass in the setcaps
4482         function. Fixes #431282.
4483
4484 2007-04-25  Wim Taymans  <wim@fluendo.com>
4485
4486         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
4487         (gst_rtspsrc_stream_free), (request_pt_map),
4488         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open):
4489         * gst/rtsp/gstrtspsrc.h:
4490         Parse server address from SDP.
4491         Hook up a udpsink to send RTCP back to the server.
4492
4493         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4494         * gst/rtsp/rtsptransport.h:
4495         Add some docs.
4496
4497 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
4498
4499         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
4500           Make header field check conditional. Fixes #433135
4501
4502 2007-04-24  Tim-Philipp Müller  <tim at centricular dot net>
4503
4504         * docs/plugins/Makefile.am:
4505         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
4506         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4507         * docs/plugins/inspect/plugin-alphacolor.xml:
4508         * gst/alpha/Makefile.am:
4509         * gst/alpha/gstalphacolor.c:
4510         * gst/alpha/gstalphacolor.h:
4511           Add minimal docs blurb to alphacolor; split out headers into
4512           separate header file for gtk-doc.
4513
4514 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
4515
4516         * gst/debug/progressreport.c: (gst_progress_report_report):
4517           Don't try to post NULL message (in case we can't query upstream
4518           position or duration).
4519
4520 2007-04-18  Michael Smith  <msmith@fluendo.com>
4521
4522         * gst/cutter/gstcutter.c: (gst_cutter_init), (gst_cutter_chain),
4523         (gst_cutter_get_caps):
4524         * gst/cutter/gstcutter.h:
4525           Fix some of the most obvious bugs in cutter. Now doesn't leak
4526           everything if input is silent.
4527
4528 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
4529
4530         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
4531         (gst_wavenc_sink_setcaps), (gst_wavenc_change_state):
4532         * gst/wavenc/gstwavenc.h:
4533         Wav apparently only supports width==GST_ROUND_UP(depth), everything
4534         else results in a invalid block align and invalid files.
4535
4536 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
4537
4538         Patch by: Snaik <snaik32 gmail com>
4539
4540         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw):
4541           Add missing break statement for BOX_HORIZONTAL case.
4542
4543 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
4544
4545         Patch by: Vincent Torri <vtorri at univ-evry dot fr>
4546
4547         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
4548         Use correct format strings for integer types.
4549
4550 2007-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
4551
4552         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
4553         (gst_wavparse_create_sourcepad):
4554         Use gst_riff_create_audio_template_caps () instead of the local caps.
4555         This makes updates of the local caps unecessary whenever libgstriff
4556         gets support for new formats.
4557
4558 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
4559
4560         Patch by: Brian Cameron  <brian.cameron at sun dot com>
4561
4562         * sys/sunaudio/gstsunaudio.c:
4563         * sys/sunaudio/gstsunaudiomixer.c:
4564         * sys/sunaudio/gstsunaudiomixer.h:
4565         * sys/sunaudio/gstsunaudiomixerctrl.c:
4566         * sys/sunaudio/gstsunaudiomixerctrl.h:
4567         * sys/sunaudio/gstsunaudiomixertrack.h:
4568         * sys/sunaudio/gstsunaudiosink.c:
4569         * sys/sunaudio/gstsunaudiosink.h:
4570         * sys/sunaudio/gstsunaudiosrc.c:
4571         * sys/sunaudio/gstsunaudiosrc.h:
4572           Fix and/or update copyright attributions (#430228).
4573
4574 2007-04-13  Wim Taymans  <wim@fluendo.com>
4575
4576         * docs/plugins/gst-plugins-good-plugins-sections.txt:
4577         Fix docs.
4578
4579         * gst/rtsp/URLS:
4580         Add some more example urls.
4581
4582         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
4583         (gst_rtp_dec_chain_rtp):
4584         Better debugging.
4585
4586         * gst/rtsp/gstrtspsrc.c: (request_pt_map),
4587         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
4588         (gst_rtspsrc_parse_rtpinfo):
4589         Remove unused code.
4590
4591 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
4592
4593         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
4594         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
4595         (gst_wavparse_stream_data):
4596           Relax the audio/mpeg caps again and add FIXME: comment.
4597
4598 2007-04-13  Stefan Kost  <ensonic@users.sf.net>
4599
4600         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
4601         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
4602         (gst_wavparse_stream_data):
4603         * gst/wavparse/gstwavparse.h:
4604           More sanity check for the header fields. Fix type for 'rate' header
4605           field.
4606
4607 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
4608
4609         * gst/icydemux/gsticydemux.c: (notgst_tag_freeform_string_to_utf8),
4610         (gst_icydemux_unicodify):
4611           If the metadata strings we get in the stream are not UTF-8, try to
4612           interpret them according to the character encodings specified in the
4613           GST_ICY_TAG_ENCODING and GST_TAG_ENCODING environment variables, and
4614           only fall back to locale/ISO-8859-1 if those aren't set or don't
4615           work. Should fix #428901.
4616
4617 2007-04-12  Wim Taymans  <wim@fluendo.com>
4618
4619         * gst/rtp/gstrtph264depay.c:
4620         Use the proper sync word for SPS and PPS.
4621
4622 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4623
4624         * gst/rtp/Makefile.am:
4625         * gst/rtp/fnv1hash.c (MASK_24, FNV1_HASH_32_INIT, FNV1_HASH_32_PRIME,
4626           fnv1_hash_32_new, fnv1_hash_32_update, fnv1_hash_32_to_24):
4627         * gst/rtp/fnv1hash.h (__GST_FNV1_HASH_H__):
4628           Add a simple hashing implementation that we can use to generate
4629           a 24-bit ident value based on the codebooks for vorbis and theora.
4630         * gst/rtp/gstrtptheorapay.c (gst_rtp_theora_pay_finish_headers,
4631           gst_rtp_theora_pay_handle_buffer):
4632         * gst/rtp/gstrtpvorbisdepay.c
4633           (gst_rtp_vorbis_depay_parse_configuration,
4634           gst_rtp_vorbis_depay_switch_codebook, gst_rtp_vorbis_depay_process):
4635         * gst/rtp/gstrtpvorbispay.c (gst_rtp_vorbis_pay_reset_packet,
4636           gst_rtp_vorbis_pay_init_packet, gst_rtp_vorbis_pay_flush_packet,
4637           gst_rtp_vorbis_pay_finish_headers, gst_rtp_vorbis_pay_handle_buffer):
4638           Use the hashing function, ensuring that the same codebooks result
4639           in the same ident and thus the same SDP description.
4640           Various log fixes/changes.
4641
4642 2007-04-12  Wim Taymans  <wim@fluendo.com>
4643
4644         Patch by: jerry tan <jerry dot tan at sun dot com>
4645
4646         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
4647         remove the call of  ioctl (fd, AUDIO_MIXER_MULTIPLE_OPEN), it is the
4648         application's responsibility to make sure it open the device once.
4649         Remove a careless error if AUDIODEV is set. Fixes #392620.
4650
4651 2007-04-12  Wim Taymans  <wim@fluendo.com>
4652
4653         * gst/rtsp/gstrtpdec.c: (gst_rtp_dec_marshal_BOXED__UINT_UINT),
4654         (gst_rtp_dec_class_init), (gst_rtp_dec_chain_rtp):
4655         * gst/rtsp/gstrtpdec.h:
4656         Make backward compat with rtpbin by adding the request-pt-map signals.
4657
4658         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
4659         (new_session_pad), (request_pt_map),
4660         (gst_rtspsrc_stream_configure_transport),
4661         (gst_rtspsrc_stream_configure_caps),
4662         (gst_rtspsrc_activate_streams):
4663         * gst/rtsp/gstrtspsrc.h:
4664         Implement request-pt-map signals instead of setting caps on the buffers
4665         for the session manager.
4666
4667 2007-04-11  Wim Taymans  <wim@fluendo.com>
4668
4669         * gst/udp/gstudp.c: (plugin_init):
4670         Register GstNetBuffer in plugin_init so that the type can be used from
4671         multiple threads without races.
4672
4673 2007-04-10  Wim Taymans  <wim@fluendo.com>
4674
4675         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_setcaps),
4676         (gst_rtp_amr_depay_process):
4677         Fix depayloader clock_rate and some cleanups.
4678
4679         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_finalize),
4680         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
4681         * gst/rtp/gstrtph264depay.h:
4682         Don't push codec_data in the adapter because it might get flushed when
4683         we get a discont.
4684
4685         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
4686         Handle multiple AU per packet.
4687
4688         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process),
4689         (gst_rtp_sv3v_depay_plugin_init):
4690         Disable rank, this one does not work.
4691         Remove timestamping, base class does that.
4692
4693 2007-04-10  Stefan Kost  <ensonic@users.sf.net>
4694
4695         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
4696           limit caps to the formats we announce in the template
4697
4698         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
4699         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
4700         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data):
4701           fix some crashers/asserts when dealing with broken files
4702
4703 2007-04-10  Wim Taymans  <wim@fluendo.com>
4704
4705         Patch by: Peter Kjellerstedt  <pkj at axis com>
4706
4707         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
4708         * gst/rtp/gstrtpL16depay.c:
4709         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
4710         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_get_mode),
4711         (gst_rtp_speex_depay_setcaps):
4712         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
4713         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_loop_udp):
4714         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init_send):
4715         Fix some compiler warnings. Fixes #428182.
4716
4717 2007-04-06  Wim Taymans  <wim@fluendo.com>
4718
4719         * gst/rtsp/Makefile.am:
4720         * gst/rtsp/gstrtpdec.c: (find_session_by_id), (create_session),
4721         (free_session), (gst_rtp_dec_base_init), (gst_rtp_dec_class_init),
4722         (gst_rtp_dec_init), (gst_rtp_dec_finalize),
4723         (gst_rtp_dec_query_src), (gst_rtp_dec_chain_rtp),
4724         (gst_rtp_dec_chain_rtcp), (gst_rtp_dec_set_property),
4725         (gst_rtp_dec_get_property), (gst_rtp_dec_provide_clock),
4726         (gst_rtp_dec_change_state), (create_recv_rtp), (create_recv_rtcp),
4727         (create_rtcp), (gst_rtp_dec_request_new_pad),
4728         (gst_rtp_dec_release_pad):
4729         * gst/rtsp/gstrtpdec.h:
4730         * gst/rtsp/gstrtsp.c: (plugin_init):
4731         Morph RTPDec into something compatible with RTPBin as a fallback.
4732         Various other style fixes.
4733
4734         * gst/rtsp/gstrtspsrc.c: (find_stream_by_id),
4735         (find_stream_by_udpsrc), (gst_rtspsrc_stream_free),
4736         (gst_rtspsrc_cleanup), (gst_rtspsrc_media_to_caps),
4737         (new_session_pad), (gst_rtspsrc_stream_configure_transport),
4738         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
4739         (gst_rtspsrc_loop_udp), (gst_rtspsrc_setup_auth),
4740         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
4741         * gst/rtsp/gstrtspsrc.h:
4742         Implement RTPBin session manager handling.
4743         Don't try to add empty properties to caps.
4744         Implement fallback session manager, handling.
4745         Don't combine errors from RTCP streams, just ignore them.
4746
4747         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_manager):
4748         * gst/rtsp/rtsptransport.h:
4749         Implement fallback session manager.
4750         Make RTPBin the default one when available.
4751
4752 2007-04-05  Wim Taymans  <wim@fluendo.com>
4753
4754         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
4755         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_plugin_init):
4756         This element is ready to be autoplugged.
4757
4758 2007-04-05  Julien MOUTTE  <julien@moutte.net>
4759
4760         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
4761         Don't leave the offsets defined by upstream element on the
4762         compressed data buffer we are pushing downstream. Make them
4763         GST_BUFFER_OFFSET_NONE.
4764
4765 2007-04-04  Stefan Kost  <ensonic@users.sf.net>
4766
4767         * gst/avi/README:
4768         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
4769         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
4770         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
4771         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
4772         (gst_avi_demux_calculate_durations_from_index),
4773         (gst_avi_demux_stream_header_push),
4774         (gst_avi_demux_stream_header_pull), (gst_avi_demux_combine_flows),
4775         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
4776           Don't abort on out-of-memory. Use stream-nr as unsigned integer only.
4777
4778 2007-04-03  Wim Taymans  <wim@fluendo.com>
4779
4780         * gst/smpte/barboxwipes.c:
4781         Fix error as spotted by Snaik <snaik32 at gmail dot com>
4782
4783 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
4784
4785         * gst/wavparse/gstwavparse.c:
4786         Support audio/x-raw-float in wav files. This only works with
4787         plugins-base CVS, using an older version doesn't have any
4788         disadvantages though.
4789
4790 2007-03-30  Sebastian Dröge  <slomo@circular-chaos.org>
4791
4792         * configure.ac:
4793         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
4794         (gst_au_parse_parse_header), (gst_au_parse_chain):
4795         * gst/auparse/gstauparse.h:
4796         Revert last change as we don't want plugins-good to depend on
4797         plugins-base CVS now.
4798
4799 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
4800
4801         * configure.ac:
4802         Require gst-plugins-base CVS for audioconvert with non-native
4803         float support and width/depth fix in libgstriff.
4804
4805         Patch by: René Stadler <mail at renestadler dot de>
4806
4807         * gst/auparse/gstauparse.c: (gst_au_parse_reset),
4808         (gst_au_parse_parse_header), (gst_au_parse_chain):
4809         * gst/auparse/gstauparse.h:
4810         Don't swap the floats ourself if they're not in native endianness.
4811         Instead let audioconvert handle this. Fixes #339838.
4812
4813 2007-03-29  Wim Taymans  <wim@fluendo.com>
4814
4815         * gst/rtp/gstasteriskh263.h:
4816         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_process),
4817         (gst_rtp_h263p_depay_change_state):
4818         * gst/rtp/gstrtph263pdepay.h:
4819         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4820         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
4821         (gst_rtp_h264_depay_change_state):
4822         * gst/rtp/gstrtph264depay.h:
4823         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_class_init),
4824         (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process):
4825         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
4826         Flush adapter on disconts.
4827
4828 2007-03-29  Wim Taymans  <wim@fluendo.com>
4829
4830         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_process):
4831         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_process):
4832         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_process):
4833         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
4834         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_process):
4835         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_flush):
4836         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
4837         (gst_rtp_mp4v_depay_process):
4838         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_flush):
4839         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_process):
4840         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_flush):
4841         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
4842         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_process):
4843         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_process):
4844         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_process):
4845         Use more efficient adapter and rtpbuffer methods when possible.
4846
4847 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
4848
4849         * gst/wavenc/gstwavenc.c: (gst_wavenc_create_header_buf),
4850         (gst_wavenc_sink_setcaps):
4851         Correctly handle width!=depth input.
4852         * gst/wavparse/gstwavparse.c:
4853         Already export in the caps that width==8 uses unsigned samples and
4854         everything else uses signed samples.
4855
4856 2007-03-29  Wim Taymans  <wim@fluendo.com>
4857
4858         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
4859
4860         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init),
4861         (gst_dynudpsink_init), (gst_dynudpsink_set_property),
4862         (gst_dynudpsink_get_property), (gst_dynudpsink_init_send),
4863         (gst_dynudpsink_close):
4864         * gst/udp/gstdynudpsink.h:
4865         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
4866         (gst_udpsrc_create), (gst_udpsrc_set_property),
4867         (gst_udpsrc_get_property), (gst_udpsrc_start), (gst_udpsrc_stop):
4868         * gst/udp/gstudpsrc.h:
4869         Rework the socket allocation a bit based on the sockfd argument so that
4870         it becomes usable.
4871         Add a closefd property to instruct the udp elements to close the custom
4872         file descriptors when going to READY. Fixes #423304.
4873         API:GstUDPSrc::closefd property
4874         API:GstDynUDPSink::closefd property
4875
4876 2007-03-29  Wim Taymans  <wim@fluendo.com>
4877
4878         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
4879
4880         * gst/rtp/Makefile.am:
4881         * gst/rtp/gstrtp.c: (plugin_init):
4882         * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init),
4883         (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init),
4884         (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps),
4885         (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property),
4886         (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state),
4887         (gst_rtp_h264_pay_plugin_init):
4888         * gst/rtp/gstrtph264pay.h:
4889         Added H264 payloader. Fixes #423782.
4890
4891         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
4892         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
4893         Small fixes.
4894
4895 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
4896
4897         * gst/wavparse/gstwavparse.c:
4898         Actually support depths from 1 to 32, not only 8 to 32.
4899
4900 2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>
4901
4902         * gst/wavparse/gstwavparse.c:
4903         Add support for wav files containing audio/x-raw-int with random
4904         depths between 1 and 32 bits.
4905
4906 2007-03-28  Wim Taymans  <wim@fluendo.com>
4907
4908         Based on patch by: Stefan Kost  <ensonic@users.sf.net>
4909
4910         * gst/rtp/Makefile.am:
4911         * gst/rtp/gstrtp.c: (plugin_init):
4912         * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init),
4913         (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init),
4914         (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps),
4915         (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property),
4916         (gst_rtp_mp4a_depay_get_property),
4917         (gst_rtp_mp4a_depay_change_state),
4918         (gst_rtp_mp4a_depay_plugin_init):
4919         * gst/rtp/gstrtpmp4adepay.h:
4920         Added MP4A-LATM depayloader. Fixes #417792.
4921
4922         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps),
4923         (gst_rtp_mp4v_depay_process):
4924         Fixup depayloader, setting codec_data, using more efficient adaptor and
4925         rtpbuffer handling.
4926
4927         * gst/rtsp/URLS:
4928         Add url to test above.
4929
4930 2007-03-25  Wim Taymans  <wim@fluendo.com>
4931
4932         * gst/rtsp/gstrtspsrc.c: (find_stream_by_setup),
4933         (gst_rtspsrc_create_stream), (gst_rtspsrc_stream_free),
4934         (get_default_rate_for_pt), (gst_rtspsrc_parse_rtpmap),
4935         (gst_rtspsrc_media_to_caps),
4936         (gst_rtspsrc_stream_configure_transport),
4937         (gst_rtspsrc_stream_configure_caps),
4938         (gst_rtspsrc_activate_streams), (gst_rtspsrc_parse_rtpinfo):
4939         * gst/rtsp/gstrtspsrc.h:
4940         Handle default clock-rates for static payload types, rearrange stuff so
4941         that the rtpmap field in the sdp can override the defaults.
4942         Parse RTP-Info field to get the seqnum and timebase fields that should
4943         go in the caps.
4944         Delay configuring caps after we got the RTP-Info from the PLAY reply from
4945         the server. 
4946
4947 2007-03-22  Wim Taymans  <wim@fluendo.com>
4948
4949         Patch by: Christophe Dehais <christophe dot dehais at gmail dot com>
4950
4951         * ext/gconf/gconf.c: (gst_gconf_render_bin_with_default):
4952         Accept complex pipeline descriptions as an audio profile instead of just
4953         a single element. Fixes #420658.
4954
4955 2007-03-21  Tim-Philipp Müller  <tim at centricular dot net>
4956
4957         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_type):
4958           Rename registered type in preparation of GstTagDemux moving to
4959           -base at some point in the future.
4960
4961 2007-03-19  Tim-Philipp Müller  <tim at centricular dot net>
4962
4963         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
4964           Streaming mode fixes: don't unref buffer we don't own any longer;
4965           remove bogus adapter flush. Fixes #419338.
4966
4967 2007-03-17  David Schleef  <ds@schleef.org>
4968
4969         * REQUIREMENTS: Change the format to key/value, add a bunch of
4970           information, remove a bunch of requirements that are for
4971           other GStreamer packages.
4972
4973 2007-03-17  David Schleef  <ds@schleef.org>
4974
4975         * REQUIREMENTS: Fix a few things.  This file really needs a
4976         good once-over.
4977
4978 2007-03-15  Edward Hervey  <edward@fluendo.com>
4979
4980         * sys/Makefile.am:
4981         Don't forget to distribute the sys/osxaudio/ directory.
4982
4983 2007-03-15  Edward Hervey  <edward@fluendo.com>
4984
4985         * configure.ac:
4986         * sys/Makefile.am:
4987         * sys/osxaudio/Makefile.am:
4988         * sys/osxaudio/gstosxaudio.c:
4989         * sys/osxaudio/gstosxaudiosink.c:
4990         (gst_osx_audio_sink_osxelement_do_init), (gst_osx_audio_sink_init),
4991         (gst_osx_audio_sink_getcaps),
4992         (gst_osx_audio_sink_create_ringbuffer), (plugin_init):
4993         * sys/osxaudio/gstosxaudiosrc.c:
4994         (gst_osx_audio_src_osxelement_do_init), (gst_osx_audio_src_init),
4995         (gst_osx_audio_src_create_ringbuffer):
4996         * sys/osxaudio/gstosxringbuffer.c: (gst_osx_ring_buffer_get_type),
4997         (gst_osx_ring_buffer_class_init), (gst_osx_ring_buffer_init),
4998         (gst_osx_ring_buffer_acquire), (gst_osx_ring_buffer_start),
4999         (gst_osx_ring_buffer_pause), (gst_osx_ring_buffer_stop):
5000         * sys/osxaudio/gstosxringbuffer.h:
5001         Activate osxaudio in gst-plugins-good with proper build setup.
5002         Add inlined documentation.
5003         Fix debug statements
5004         Fix ringbuffer when pausing.
5005         Fixes #323471
5006
5007 2007-03-14 Philippe Kalaf <philippe.kalaf@collabora.co.uk>       
5008         * gst/rtp/gstrtppcmapay.c:
5009         * gst/rtp/gstrtppcmapay.h:
5010         * gst/rtp/gstrtppcmupay.c:
5011         * gst/rtp/gstrtppcmupay.h:
5012         Ported mulaw and alaw payloaders to use new base class
5013
5014 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
5015
5016         * po/af.po:
5017         * po/az.po:
5018         * po/cs.po:
5019         * po/en_GB.po:
5020         * po/it.po:
5021         * po/nl.po:
5022         * po/or.po:
5023         * po/sq.po:
5024         * po/sr.po:
5025         * po/sv.po:
5026         * po/uk.po:
5027         * po/vi.po:
5028           Update translations.
5029
5030 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
5031
5032         * configure.ac:
5033           Fix string replace error (AG_AG_GST_* => AG_GST_*).
5034
5035 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
5036
5037         * gst/apetag/gsttagdemux.c: (gst_tag_demux_srcpad_event):
5038           Fix handling of -1 values for start and stop values when seeking,
5039           and SEEK_CUR+SEEK_END here as well.
5040
5041 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
5042
5043         * gst/id3demux/gstid3demux.c: (gst_id3demux_srcpad_event):
5044           Fix handling of -1 values for start and stop values when seeking, 
5045           and SEEK_CUR+SEEK_END.
5046
5047 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
5048
5049         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
5050           Fix parsing of ID3 v2.2.0 PIC frames. Only in version >= 2.3.0 is
5051           the image format a variable-length NUL-terminated string; in
5052           versions before that the image format is a fixed-length string of
5053           3 characters (see #348644 for a sample tag).
5054           Also make supplied mime type lower-case and fix up 'jpg' to 'jpeg'.
5055
5056 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
5057
5058         * win32/MANIFEST:
5059         Add new project files to MANIFEST.
5060         * win32/vs6/libgstaudiofx.dsp:
5061         * win32/vs6/libgstrtp.dsp:
5062         * win32/vs6/libgstrtsp.dsp:
5063         Update project files.
5064         
5065 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
5066
5067         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_subindex),
5068         (gst_avi_demux_parse_index):
5069         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
5070         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
5071           Printf format fixes; also add some missing quotes in translated
5072           strings. Fixes #416728 and #416727.
5073
5074 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
5075
5076         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_find_best):
5077           Tim and I can't think of any reason the child audio sink needs to 
5078           be set back to NULL after successfully determining that it can 
5079           reach READY - it gets immediately set back to READY by the caller
5080           anyway, causing an unnecessary close/open of any audio devices
5081           involved.
5082
5083 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
5084
5085         * po/LINGUAS:
5086         * po/ja.po:
5087           Add ja.po file from #377306.
5088
5089 2007-03-09  Tim-Philipp Müller  <tim at centricular dot net>
5090
5091         * sys/sunaudio/gstsunaudio.c: (plugin_init):
5092         * sys/sunaudio/gstsunaudiomixertrack.c:
5093         (gst_sunaudiomixer_track_new):
5094           Actually translate sunaudio mixer track labels instead of just
5095           marking the strings as translatable (#377306); clean up weird
5096           label string mapping code that serves no apparent purpose. Also
5097           set the 'untranslated-label' property when creating mixer tracks
5098           if the GstMixerTrack base class supports this.
5099
5100         * tests/check/Makefile.am:
5101         * tests/check/elements/.cvsignore:
5102         * tests/check/elements/sunaudio.c: (GST_START_TEST),
5103         (sunaudio_suite):
5104           Very minimalistic unit test for sunaudiomixer element (compiles, but not
5105           actually tested on a system where sunaudiomixer is available).
5106
5107 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
5108
5109         * tests/check/Makefile.am:
5110         Re-enable the states test and see if it works on the buildbots.
5111
5112 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
5113
5114         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps),
5115         (gst_dvdec_src_negotiate), (gst_dvdec_chain),
5116         (gst_dvdec_change_state):
5117         * ext/dv/gstdvdec.h:
5118         Infer pixel-aspect-ratio from the video frame format if it isn't
5119         provided by the container, as happens when playing DV from AVI
5120         or Quicktime containers.
5121
5122         Patch by: Wim Taymans <wim@fluendo.com>
5123         Fixes #380944
5124
5125 2007-03-09  Wim Taymans  <wim@fluendo.com>
5126
5127         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
5128         When activated, remove the udpsrc timeout, we have dataflow and timeouts
5129         will later be handled by the jitterbuffer.
5130
5131 2007-03-09  Wim Taymans  <wim@fluendo.com>
5132
5133         * ext/taglib/gstid3v2mux.cc:
5134         Add write support for GST_TAG_MUSICBRAINZ_SORTNAME (TSOP) tag.
5135         Fixes #414496.
5136         
5137         Patch by: Alex Lancaster <alexl at users sourceforge net>
5138
5139 2007-03-09  Wim Taymans  <wim@fluendo.com>
5140
5141         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
5142         (gst_avi_demux_push_event), (gst_avi_demux_do_seek),
5143         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
5144         (gst_avi_demux_chain):
5145         Fix stream position reporting after a seek. Fixes #416445.
5146
5147 2007-03-08  Wim Taymans  <wim@fluendo.com>
5148
5149         Patch by: René Stadler <mail at renestadler dot de>
5150
5151         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
5152         (gst_avi_demux_push_event), (gst_avi_demux_process_next_entry),
5153         (gst_avi_demux_stream_data), (gst_avi_demux_chain):
5154         Make avidemux accept optional header chunks in any order.
5155         Fixes #415446.
5156
5157 2007-03-08  Jan Schmidt  <thaytan@mad.scientist.com>
5158
5159         * tests/check/Makefile.am:
5160         Disable the states check until the remaining Valgrind errors
5161         are fixed or suppressed.
5162
5163 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5164
5165         * tests/check/elements/.cvsignore:
5166           Add audiodynamic check to .cvsignore
5167
5168 2007-03-08  Sebastian Dröge  <slomo@circular-chaos.org>
5169
5170         reviewed by: Stefan Kost  <ensonic@users.sf.net>
5171
5172         * gst/audiofx/Makefile.am:
5173         * gst/audiofx/audiodynamic.c:
5174         (gst_audio_dynamic_characteristics_get_type),
5175         (gst_audio_dynamic_mode_get_type),
5176         (gst_audio_dynamic_set_process_function),
5177         (gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
5178         (gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
5179         (gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
5180         (gst_audio_dynamic_transform_hard_knee_compressor_int),
5181         (gst_audio_dynamic_transform_hard_knee_compressor_float),
5182         (gst_audio_dynamic_transform_soft_knee_compressor_int),
5183         (gst_audio_dynamic_transform_soft_knee_compressor_float),
5184         (gst_audio_dynamic_transform_hard_knee_expander_int),
5185         (gst_audio_dynamic_transform_hard_knee_expander_float),
5186         (gst_audio_dynamic_transform_soft_knee_expander_int),
5187         (gst_audio_dynamic_transform_soft_knee_expander_float),
5188         (gst_audio_dynamic_transform_ip):
5189         * gst/audiofx/audiodynamic.h:
5190         * gst/audiofx/audiofx.c: (plugin_init):
5191         Add new audiodynamic element which can act as a compressor or
5192         expander. Supported are hard-knee and soft-knee operation modes with
5193         user-specified ratio and threshold.
5194         Attack and release parameters are not yet implemented but will follow.
5195         * docs/plugins/Makefile.am:
5196         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
5197         * docs/plugins/gst-plugins-good-plugins-sections.txt:
5198         * docs/plugins/gst-plugins-good-plugins.args:
5199         * docs/plugins/inspect/plugin-audiofx.xml:
5200         Integrate audiodynamic into the docs.
5201         * tests/check/Makefile.am:
5202         * tests/check/elements/audiodynamic.c: (setup_dynamic),
5203         (cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
5204         Add unit test for audiodynamic.
5205
5206 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
5207
5208         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_start):
5209         Free handles that we allocated when exiting via the error paths.
5210
5211 2007-03-07  Stefan Kost  <ensonic@users.sf.net>
5212
5213         * gst/level/gstlevel.c: (gst_level_class_init),
5214         (gst_level_set_caps), (gst_level_start), (gst_level_event),
5215         (gst_level_transform_ip):
5216         * gst/level/gstlevel.h:
5217           Resolve message timestamps against the playback segment.
5218
5219 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
5220
5221         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
5222         (gst_id3demux_sink_activate):
5223           Don't leak caps: make gst_id3demux_add_srcpad() not take ownership of the
5224           caps passed to it (previously one code path assumed it took ownership
5225           while another one assumed it didn't, while in fact it sometimes did and
5226           sometimes didn't ...).
5227
5228         * configure.ac:
5229         * tests/files/Makefile.am:
5230         * tests/files/id3-407349-1.tag:
5231         * tests/files/id3-407349-2.tag:
5232           Add directory where data for unit tests can be stored.
5233
5234         * tests/Makefile.am:
5235         * tests/check/Makefile.am:
5236         * tests/check/elements/.cvsignore:
5237         * tests/check/elements/id3demux.c: (pad_added_cb), (error_cb),
5238         (read_tags_from_file), (run_check_for_file),
5239         (check_date_1977_06_23), (GST_START_TEST), (id3demux_suite):
5240           Add unit test for id3demux, and in particular for bug #407349. Only
5241           testing pull-mode for now; push mode doesn't work yet because the test
5242           files are smaller than ID3_TYPE_FIND_MIN_SIZE.
5243
5244 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
5245
5246         * tests/check/Makefile.am:
5247           Add missing backslash at end of line.
5248
5249 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
5250
5251         Trigger rebuild.
5252
5253 2007-03-06  Tim-Philipp Müller  <tim at centricular dot net>
5254
5255         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
5256         * gst/id3demux/id3tags.h:
5257         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
5258         (parse_obsolete_tdat_frame):
5259           Do not convert obsolete TDA/TDAT frames to TDRC frames, otherwise
5260           the four-digit number will be interpreted as a year, whereas it is
5261           month and day in DDMM format. Instead, parse TDAT frames and fix up
5262           the date in the GST_TAG_DATE tag later if we also extracted a year.
5263           Fixes #407349.
5264
5265 2007-03-06  Jan Schmidt  <thaytan@mad.scientist.com>
5266
5267         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
5268         (gst_switch_commit_new_kid):
5269         Fix up the dispose logic so it doesn't leak, and fix setting of 
5270         the child state so that we don't set a child to our current state 
5271         just as we are changing it to something else.
5272
5273 2007-03-06  Wim Taymans  <wim@fluendo.com>
5274
5275         * gst/goom/gstgoom.c: (gst_goom_src_setcaps), (get_buffer),
5276         (gst_goom_chain):
5277         * gst/goom/gstgoom.h:
5278         Document, fix and improve goom adapter behaviour.
5279         Fixes #407006.
5280
5281 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
5282
5283         * ext/esd/esdsink.c: (gst_esdsink_open):
5284         Unref static pad template after using it.
5285
5286 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
5287
5288         * ext/gconf/gstswitchsink.c: (gst_switch_sink_dispose),
5289         (gst_switch_commit_new_kid):
5290         Fix up the reference counting of the child elements.
5291
5292 2007-03-05  Wim Taymans  <wim@fluendo.com>
5293
5294         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
5295         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_finish_headers):
5296         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_finish_headers):
5297         Fix encoding-name case.
5298
5299 2007-03-05  Wim Taymans  <wim@fluendo.com>
5300
5301         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init),
5302         (gst_rtp_speex_depay_get_mode), (gst_rtp_speex_depay_setcaps),
5303         (gst_rtp_speex_depay_process):
5304         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_base_init),
5305         (gst_rtp_speex_pay_class_init), (gst_rtp_speex_pay_setcaps),
5306         (gst_rtp_speex_pay_parse_ident), (gst_rtp_speex_pay_handle_buffer),
5307         (gst_rtp_speex_pay_change_state):
5308         * gst/rtp/gstrtpspeexpay.h:
5309         Fix speex (de)payloader. Fixes #358040.
5310
5311 2007-03-05  Jan Schmidt  <thaytan@mad.scientist.com>
5312
5313         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset),
5314         (gst_switch_commit_new_kid), (gst_switch_sink_set_child):
5315         Install fakesink in NULL by fixing some broken logic. This obviates
5316         the need to manually set _IS_SINK.
5317         Add some comments and remove a little cruft while I'm at it.
5318
5319 2007-03-05  Wim Taymans  <wim@fluendo.com>
5320
5321         * ext/gconf/gstswitchsink.c: (gst_switch_sink_reset):
5322         Mark us as a sink when we have no fakesink in NULL. Fixes #414887.
5323
5324 2007-03-04  Tim-Philipp Müller  <tim at centricular dot net>
5325
5326         * po/POTFILES.in:
5327           Update.
5328
5329 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5330
5331         * tests/check/Makefile.am:
5332         Gah! Also disable gconfvideosink from the tests, otherwise
5333         it will instantiate autovideosink, and dfbvideosink and
5334         leak on the buildbots.
5335
5336 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5337
5338         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open),
5339         (gst_cdio_cdda_src_finalize):
5340         Make sure we always destroy our libcdio handle.
5341
5342 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5343
5344         * tests/check/Makefile.am:
5345         Disable autovideosink so the buildbots don't barf over memory
5346         leaked in the directfb sink.
5347
5348 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5349
5350         * sys/ximage/gstximagesrc.c: (gst_ximage_src_dispose):
5351         Chain up in dispose
5352
5353 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5354
5355         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
5356         (gst_multipart_find_pad_by_mime):
5357         Use gst_pad_new_from_static_template instead of
5358         static_pad_template_get+pad_new.
5359
5360 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5361
5362         * sys/ximage/gstximagesrc.c: (gst_ximage_src_create):
5363         Catch the case where no clock has been set.
5364
5365 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5366
5367         * ext/flac/gstflacenc.c: (gst_flac_enc_finalize):
5368         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_class_init),
5369         (gst_gconf_audio_sink_dispose), (gst_gconf_audio_sink_finalize):
5370         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
5371         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_dispose),
5372         (gst_gconf_audio_src_finalize), (do_toggle_element):
5373         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
5374         (gst_gconf_video_sink_class_init), (gst_gconf_video_sink_finalize),
5375         (do_toggle_element):
5376         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
5377         (gst_gconf_video_src_class_init), (gst_gconf_video_src_dispose),
5378         (gst_gconf_video_src_finalize), (do_toggle_element):
5379         * ext/gconf/gstswitchsink.c: (gst_switch_sink_class_init),
5380         (gst_switch_sink_reset), (gst_switch_sink_set_child):
5381         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
5382         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
5383         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
5384         (gst_shout2send_init), (gst_shout2send_finalize):
5385         * gst/debug/testplugin.c: (gst_test_class_init),
5386         (gst_test_finalize):
5387         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
5388         (gst_flxdec_dispose):
5389         * gst/multipart/multipartmux.c: (gst_multipart_mux_finalize):
5390         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_finalize):
5391         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
5392         (gst_rtspsrc_finalize):
5393         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_free_context):
5394         * gst/rtsp/rtspextwms.h:
5395         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
5396         (gst_smpte_finalize):
5397         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_finalize):
5398         * gst/udp/gstudpsink.c: (gst_udpsink_class_init),
5399         (gst_udpsink_finalize):
5400         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose),
5401         (gst_wavparse_sink_activate):
5402         * sys/oss/gstosssink.c: (gst_oss_sink_finalise):
5403         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
5404         (gst_oss_src_finalize):
5405         * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_destroy):
5406         * sys/v4l2/gstv4l2object.h:
5407         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
5408         (gst_v4l2src_finalize):
5409         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
5410
5411         Fix a bunch of leaks shown by the newly-added states test.
5412
5413 2007-03-04  Jan Schmidt  <thaytan@mad.scientist.com>
5414
5415         * ext/dv/gstdvdec.c: (gst_dvdec_init):
5416         Use gst_pad_new_from_static_template instead of 
5417         static_pad_template_get+pad_new.
5418
5419 2007-03-03  Tim-Philipp Müller  <tim at centricular dot net>
5420
5421         Patch by: Loïc Minier <lool+gnome at via ecp fr>
5422
5423         * ext/libcaca/Makefile.am:
5424         * gst/debug/Makefile.am:
5425           Don't mix tabs and spaces (#414168).
5426
5427 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
5428
5429         * tests/check/generic/.cvsignore:
5430           Ignore files to please buildbot.
5431
5432 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
5433
5434         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers),
5435         (gst_wavparse_stream_data):
5436           Unbreak my previous commit (swapped nominator & denominator). Tim,
5437           thanks for spotting.
5438
5439 2007-03-02  Wim Taymans  <wim@fluendo.com>
5440
5441         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_probe_devices),
5442         (gst_cdio_cdda_src_read_sector), (gst_cdio_cdda_src_open),
5443         (gst_cdio_cdda_src_finalize):
5444         Small code cleanups.
5445         Don't use pad_alloc as the base class cannot deal with the error codes.
5446
5447 2007-03-02  Wim Taymans  <wim@fluendo.com>
5448
5449         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
5450         (gst_udpsrc_create):
5451         Fix doc.
5452
5453 2007-03-02  Stefan Kost  <ensonic@users.sf.net>
5454
5455         Patch by: René Stadler <mail@renestadler.de>
5456
5457         * gst/wavparse/gstwavparse.c: (uint64_ceiling_scale_int),
5458         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
5459         (gst_wavparse_stream_data):
5460           Handle rounding better to not drop last sample frame. Fixes #356692
5461
5462 2007-03-02  Jan Schmidt  <thaytan@mad.scientist.com>
5463
5464         * tests/check/Makefile.am:
5465         Disable cacasink from the states check too - it also calls exit(1)
5466         on us when it can't find a terminal to talk to.
5467
5468 2007-03-02  Wim Taymans  <wim@fluendo.com>
5469
5470         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5471
5472         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
5473         (gst_udpsrc_create), (gst_udpsrc_set_property),
5474         (gst_udpsrc_get_property):
5475         * gst/udp/gstudpsrc.h:
5476         Add support to strip proprietary headers. Fixes #350296.
5477
5478 2007-03-02  Wim Taymans  <wim@fluendo.com>
5479
5480         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_process):
5481         Fix compilation.
5482
5483 2007-03-02  Wim Taymans  <wim@fluendo.com>
5484
5485         Patch by: Thijs Vermeir <thijsvermeir at gmail dot com>
5486
5487         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_class_init),
5488         (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_process),
5489         (gst_rtp_mp2t_depay_set_property),
5490         (gst_rtp_mp2t_depay_get_property):
5491         * gst/rtp/gstrtpmp2tdepay.h:
5492         Add support to strip off proprietary headers. Fixes #350278.
5493
5494 2007-03-02  Wim Taymans  <wim@fluendo.com>
5495
5496         * ext/hal/hal.c:
5497         Fix compilation.
5498
5499 2007-03-02  Wim Taymans  <wim@fluendo.com>
5500
5501         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_class_init),
5502         (gst_sunaudiosrc_init), (gst_sunaudiosrc_get_property),
5503         (gst_sunaudiosrc_open):
5504         * sys/sunaudio/gstsunaudiosrc.h:
5505         Remove device-name from GstSunAudioSrc. Fixes #412597.
5506
5507 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
5508
5509         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
5510         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
5511         Having NULL as UDI previously selected the default sink/src. Change
5512         this back but mention it in the debug output.
5513         * ext/hal/hal.c: (gst_hal_get_alsa_element),
5514         (gst_hal_get_oss_element), (gst_hal_get_string),
5515         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
5516         (gst_hal_get_audio_src):
5517         * ext/hal/hal.h:
5518         Refactor a bit, check all error conditions, greatly improve debugging
5519         and fix some possible memory leaks. Also implement OSS support
5520         and allow specifying an UDI that points to a real device. For this the
5521         child device which supports ALSA (preferred) or OSS is used.
5522         As a side effect this makes it impossible now to get a alsasink in
5523         halaudiosrc and a alsasrc in halaudiosink.
5524
5525 2007-03-01  Wim Taymans  <wim@fluendo.com>
5526
5527         * gst/rtsp/gstrtspsrc.c: (find_stream_by_channel),
5528         (find_stream_by_udpsrc), (gst_rtspsrc_handle_message):
5529         Errors from the udp sources are not fatal unless all of them are in
5530         error.
5531
5532 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
5533
5534         * tests/check/Makefile.am:
5535         Disable aasink in the states test. I suspect this is the element that
5536         is calling exit(1) when it can't proceed.
5537
5538 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
5539
5540         * tests/check/Makefile.am:
5541         Draw plugins in from the build tree sys/ dir, rather than picking
5542         up the already installed versions.
5543
5544 2007-03-01  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5545
5546         * sys/ximage/gstximagesrc.c: (gst_ximage_src_open_display):
5547         Error out correctly when getting xcontext fails.
5548
5549 2007-03-01  Wim Taymans  <wim@fluendo.com>
5550
5551         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_change_state):
5552         Make state change to PAUSED NO_PREROLL because that's what it will be in
5553         the future and rtspsrc relies on it.
5554
5555         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport),
5556         (gst_rtspsrc_change_state):
5557         Don't error out when we don't get an error from the state change
5558         function.
5559
5560 2007-03-01  Sebastian Dröge  <slomo@circular-chaos.org>
5561
5562         * ext/hal/gsthalaudiosink.c: (do_toggle_element):
5563         * ext/hal/gsthalaudiosrc.c: (do_toggle_element):
5564           Check if the device UDI is set before trying to query HAL
5565           about it and give a useful error message if it wasn't set.
5566         * ext/hal/hal.c: (gst_hal_get_string):
5567           Don't query HAL for NULL UDIs. Passing NULL as UDI to HAL
5568           gives an assertion failure in D-Bus when running with
5569           DBUS_FATAL_WARNINGS=1.
5570
5571 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5572
5573         * configure.ac:
5574           Convert to new AG_GST style.
5575
5576 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5577
5578         * tests/check/Makefile.am:
5579         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
5580           add test for states
5581
5582 2007-02-28  Wim Taymans  <wim@fluendo.com>
5583
5584         * tests/check/elements/.cvsignore:
5585         Add new videofilter check to .cvsignore.
5586
5587 2007-02-28  Wim Taymans  <wim@fluendo.com>
5588
5589         * gst/avi/gstavidemux.c: (gst_avi_demux_combine_flows),
5590         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
5591         (gst_avi_demux_loop), (gst_avi_demux_chain):
5592         Fix combined flow return. Fixes #412608.
5593
5594 2007-02-28  Wim Taymans  <wim@fluendo.com>
5595
5596         * gst/videofilter/Makefile.am:
5597         Dist header..
5598
5599 2007-02-28  Wim Taymans  <wim@fluendo.com>
5600
5601         * gst/videofilter/gstgamma.h:
5602         Add header too.
5603
5604 2007-02-28  Wim Taymans  <wim@fluendo.com>
5605
5606         Patch by: Mark Nauwelaerts <manauw at skynet be>
5607
5608         * gst/videofilter/Makefile.am:
5609         * gst/videofilter/gstgamma.c: (gst_gamma_base_init),
5610         (gst_gamma_class_init), (gst_gamma_init), (gst_gamma_set_property),
5611         (gst_gamma_get_property), (gst_gamma_calculate_tables),
5612         (oil_tablelookup_u8), (gst_gamma_set_caps),
5613         (gst_gamma_planar411_ip), (gst_gamma_transform_ip), (plugin_init):
5614         Port gamma filter to 0.10. Fixes #412704.
5615
5616         * tests/check/Makefile.am:
5617         * tests/check/elements/videofilter.c: (setup_filter),
5618         (cleanup_filter), (check_filter), (GST_START_TEST),
5619         (videobalance_suite), (videoflip_suite), (gamma_suite), (main):
5620         Add unit tests for videofilters.
5621
5622 2007-02-28  Wim Taymans  <wim@fluendo.com>
5623
5624         * gst/rtsp/URLS:
5625         Add another interesting test url.
5626
5627         * gst/rtsp/rtspmessage.c: (rtsp_message_get_header):
5628         Don't allow getting header fields from data packets.
5629
5630 2007-02-28  Michael Smith  <msmith@fluendo.com>
5631
5632         * ext/shout2/gstshout2.c: (gst_shout2send_class_init),
5633         (gst_shout2send_init), (gst_shout2send_start),
5634         (gst_shout2send_set_property), (gst_shout2send_get_property):
5635         * ext/shout2/gstshout2.h:
5636           Add a property for username.
5637
5638 2007-02-27  Christian Schallerr <christian@fluendo.com>
5639
5640         * sys/osxaudio: Add Pioneers of the inevitable to the copyright list
5641
5642 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
5643
5644         * gst/rtsp/Makefile.am:
5645         Fix make check too.
5646
5647 2007-02-26  Jan Schmidt  <thaytan@mad.scientist.com>
5648
5649         * gst/rtsp/base64.c: (util_base64_encode):
5650         * gst/rtsp/base64.h:
5651         Commit missing files for base64 encoding.
5652
5653 2007-02-24  Tim-Philipp Müller  <tim at centricular dot net>
5654
5655         Patch by: Loïc Minier <lool+gnome at via ecp fr>
5656
5657         * configure.ac:
5658         * ext/annodex/Makefile.am:
5659         * ext/jpeg/Makefile.am:
5660         * ext/speex/Makefile.am:
5661         * gst/alpha/Makefile.am:
5662         * gst/cutter/Makefile.am:
5663         * gst/debug/Makefile.am:
5664         * gst/effectv/Makefile.am:
5665         * gst/goom/Makefile.am:
5666         * gst/level/Makefile.am:
5667         * gst/smpte/Makefile.am:
5668         * gst/videofilter/Makefile.am:
5669           Fix build with LDFLAGS='-Wl,-z,defs' (#410997)
5670
5671 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
5672
5673         * gst/rtsp/Makefile.am:
5674         * gst/rtsp/rtspconnection.c: (append_auth_header),
5675         (rtsp_connection_send), (rtsp_connection_set_auth):
5676         g_base64_encode is a GLib 2.12 function. Use an equivalent taken
5677         from icecast to replace it. Relicensed from GPL courtesy of Mike
5678         Smith.
5679
5680 2007-02-23  Jan Schmidt  <thaytan@mad.scientist.com>
5681
5682         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_finalize),
5683         (gst_rtspsrc_create_stream), (rtsp_auth_method_to_string),
5684         (gst_rtspsrc_parse_auth_hdr), (gst_rtspsrc_setup_auth),
5685         (gst_rtspsrc_send), (gst_rtspsrc_try_send), (gst_rtspsrc_open),
5686         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
5687         (gst_rtspsrc_uri_set_uri):
5688         * gst/rtsp/gstrtspsrc.h:
5689         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
5690         (append_auth_header), (rtsp_connection_send),
5691         (rtsp_connection_free), (rtsp_connection_set_auth):
5692         * gst/rtsp/rtspconnection.h:
5693         * gst/rtsp/rtspdefs.h:
5694         * gst/rtsp/rtspurl.c: (rtsp_url_get_request_uri):
5695         * gst/rtsp/rtspurl.h:
5696
5697         Implement simple Basic Authentication support so that urls like
5698         rtsp://user:pass@hostname/rtspstream work on hosts that require
5699         authentication.
5700
5701 2007-02-22  Edgard Lima <edgard.lima@indt.org.br>
5702
5703         * sys/v4l2/gstv4l2object.c:
5704         * sys/v4l2/gstv4l2tuner.c:
5705         * sys/v4l2/v4l2_calls.c:
5706         Fix segfault when oppening a radio device.
5707         
5708 2007-02-22  Stefan Kost  <ensonic@users.sf.net>
5709
5710         * gst/level/gstlevel.c: (gst_level_set_caps),
5711         (gst_level_transform_ip):
5712         * sys/v4l2/README:
5713         * tests/check/elements/level.c: (GST_START_TEST):
5714           Fix level for multi-channel case.
5715
5716 2007-02-21  Stefan Kost  <ensonic@users.sf.net>
5717
5718         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
5719         (gst_level_transform_ip):
5720         * gst/level/gstlevel.h:
5721           Use function pointer for process function and add process functions
5722           for float audio.
5723
5724 2007-02-19  Stefan Kost  <ensonic@users.sf.net>
5725
5726         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
5727         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
5728         (gst_v4l2src_capture_init):
5729           Readd GST_ELEMENT_ERROR if we can't reenque buffers after EIO,
5730           fixes #407369
5731
5732 2007-02-18  Wim Taymans  <wim@fluendo.com>
5733
5734         * gst/rtp/Makefile.am:
5735         * gst/rtp/gstrtp.c: (plugin_init):
5736         * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init),
5737         (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init),
5738         (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer),
5739         (gst_rtp_mp2t_pay_plugin_init):
5740         * gst/rtp/gstrtpmp2tpay.h:
5741         Added simple mpeg transport stream payloader.
5742
5743 2007-02-16  Wim Taymans  <wim@fluendo.com>
5744
5745         * gst/rtsp/URLS:
5746         Add example H264 rtsp url.
5747
5748         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
5749         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
5750         Don't convert values to lowercase or we might mess up base64 encoded
5751         properties.
5752
5753 2007-02-16  Wim Taymans  <wim@fluendo.com>
5754
5755         * gst/rtp/README:
5756         Fix case of string params.
5757
5758         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init),
5759         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process):
5760         Fix depayloader, support more packet types.
5761         Add sync codes to make sure the packetizer can do its job.
5762
5763         * gst/rtp/gstrtpmp4gdepay.c:
5764         * gst/rtp/gstrtpmp4gpay.c:
5765         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process):
5766         Fix caps case again.
5767
5768 2007-02-15  Wim Taymans  <wim@fluendo.com>
5769
5770         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
5771         Set right caps on output buffers.
5772
5773 2007-02-14  Wim Taymans  <wim@fluendo.com>
5774
5775         * gst/rtsp/sdpmessage.c: (sdp_parse_line):
5776         As spotted by: Peter Kjellerstedt  <pkj at axis com>:
5777         Clear stack allocated SDPMedia struct before calling _init() on it.
5778         Clarify this in the docs as well.
5779
5780 2007-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
5781
5782         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
5783         (do_change_child):
5784         Don't reset the profile when going switching states, as it makes
5785         the element non-reusable.
5786
5787 2007-02-14  Wim Taymans  <wim@fluendo.com>
5788
5789         * gst/rtsp/sdpmessage.c: (sdp_origin_init), (sdp_connection_init),
5790         (sdp_bandwidth_init), (sdp_time_init), (sdp_zone_init),
5791         (sdp_key_init), (sdp_attribute_init), (sdp_message_init),
5792         (sdp_message_uninit), (sdp_message_free), (sdp_media_init),
5793         (sdp_media_uninit), (sdp_media_free), (sdp_message_add_media),
5794         (sdp_parse_line):
5795         * gst/rtsp/sdpmessage.h:
5796         Based on patch by: jp.liu <jp_liu at astrocom dot cn>
5797         Fix memory management of SDP messages. Fixes #407793.
5798
5799 2007-02-14  Stefan Kost  <ensonic@users.sf.net>
5800
5801         Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
5802
5803         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
5804         Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
5805
5806 2007-02-14  Wim Taymans  <wim@fluendo.com>
5807
5808         Patch by: jp.liu <jp_liu at astrocom dot cn>
5809
5810         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
5811         Fix parsing of password field in url. Fixes #407797.
5812
5813 2007-02-14  Wim Taymans  <wim@fluendo.com>
5814
5815         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
5816         (gst_wavparse_reset), (gst_wavparse_init),
5817         (gst_wavparse_destroy_sourcepad), (gst_wavparse_fmt),
5818         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
5819         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
5820         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
5821         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
5822         (gst_wavparse_loop), (gst_wavparse_chain),
5823         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
5824         (gst_wavparse_srcpad_event), (gst_wavparse_change_state),
5825         (plugin_init):
5826         * gst/wavparse/gstwavparse.h:
5827         Update docs.
5828         Use boilerplate.
5829         Various code cleanups.
5830         When the bitrate is not known (bps == 0 or compressed formats) let
5831         downstream element guestimate the duration and position and don't
5832         generate timestamps or durations. Fixes #405213.
5833         Fix EOS and ERROR conditions in chain mode, we just need to forward the
5834         error flowreturn upstream.
5835
5836 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
5837
5838         * ext/gconf/Makefile.am:
5839         * ext/gconf/gconf.c: (gst_gconf_get_string),
5840         (gst_gconf_get_key_for_sink_profile), (gst_gconf_set_string),
5841         (gst_gconf_render_bin_with_default):
5842         * ext/gconf/gconf.h:
5843         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
5844         (gst_gconf_audio_sink_reset), (gst_gconf_audio_sink_init),
5845         (gst_gconf_audio_sink_dispose), (do_change_child),
5846         (gst_gconf_switch_profile), (gst_gconf_audio_sink_set_property),
5847         (cb_change_child), (gst_gconf_audio_sink_change_state):
5848         * ext/gconf/gstgconfaudiosink.h:
5849         * ext/gconf/gstswitchsink.c: (gst_switch_sink_base_init),
5850         (gst_switch_sink_class_init), (gst_switch_sink_reset),
5851         (gst_switch_sink_init), (gst_switch_sink_dispose),
5852         (gst_switch_commit_new_kid), (gst_switch_sink_set_child),
5853         (gst_switch_sink_set_property), (gst_switch_sink_handle_event),
5854         (gst_switch_sink_get_property), (gst_switch_sink_change_state):
5855         * ext/gconf/gstswitchsink.h:
5856         * gst/autodetect/gstautoaudiosink.c:
5857         (gst_auto_audio_sink_class_init), (gst_auto_audio_sink_dispose),
5858         (gst_auto_audio_sink_clear_kid), (gst_auto_audio_sink_reset),
5859         (gst_auto_audio_sink_detect):
5860         * gst/autodetect/gstautovideosink.c:
5861         (gst_auto_video_sink_class_init), (gst_auto_video_sink_dispose),
5862         (gst_auto_video_sink_clear_kid), (gst_auto_video_sink_reset),
5863         (gst_auto_video_sink_detect):
5864         Re-factor the gconfaudiosink into a "GstSwitchSink" base class
5865         and a child that implements the GConf key monitoring. The end goal of
5866         this is an audio sink that can be changed on the fly, but at the 
5867         moment it still only changes on the next READY transition.
5868
5869 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
5870
5871         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
5872         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
5873         (gst_avi_demux_sync), (gst_avi_demux_massage_index),
5874         (gst_avi_demux_calculate_durations_from_index),
5875         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
5876         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
5877         (gst_avi_demux_loop):
5878           Put debug stuff into #ifndef GST_DISABLE_DEBUG #endif
5879
5880 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
5881
5882         * configure.ac:
5883         * docs/plugins/Makefile.am:
5884           Add crossreferences to glib/gobject/gstream docs.
5885
5886 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
5887
5888         * gst/monoscope/Makefile.am:
5889         * gst/monoscope/gstmonoscope.c:
5890           Fix copy'n'paste-o in docs chunk. Also add some missing CFLAGS
5891           (but no LIBS, since we only use defines from the headers).
5892
5893 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
5894
5895         Based on patch by: Jonathan Matthew  <jonathan at kaolin wh9 net>
5896
5897         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_stream_init),
5898         (gst_wavparse_stream_data):
5899           Fix massive memory leak when operating in streaming mode due to
5900           GST_BUFFER_MALLOCDATA() not being set on newly-created buffers.
5901           Fixes #407057.
5902
5903 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
5904
5905         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
5906         (gst_avi_demux_reset), (gst_avi_demux_index_entry_for_time),
5907         (gst_avi_demux_handle_src_query), (gst_avi_demux_parse_superindex),
5908         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
5909         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
5910         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
5911         (gst_avi_demux_stream_scan), (gst_avi_demux_massage_index),
5912         (gst_avi_demux_calculate_durations_from_index),
5913         (gst_avi_demux_push_event), (gst_avi_demux_stream_header_pull),
5914         (gst_avi_demux_do_seek), (gst_avi_demux_process_next_entry),
5915         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
5916         * gst/avi/gstavidemux.h:
5917           Save some memory (8%) by repacking the index entry structure (more to
5918           come). Add more FIXMEs to questionable parts.
5919
5920 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
5921
5922         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
5923         (gst_v4l2src_get_caps):
5924         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
5925         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
5926         (gst_v4l2src_capture_init):
5927           More FIXME comments and messaging changes.
5928
5929 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
5930
5931         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
5932         (gst_goom_change_state):
5933         * gst/goom/gstgoom.h:
5934           Improved docs and use GST_DEBUG_FUNCPTR.
5935
5936         * gst/level/gstlevel.c: (gst_level_class_init):
5937           Use GST_DEBUG_FUNCPTR.
5938
5939         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
5940         (gst_monoscope_chain), (gst_monoscope_change_state):
5941           Improved docs source cleanups.
5942
5943 2007-02-12  Tim-Philipp Müller  <tim at centricular dot net>
5944
5945         * gst/debug/Makefile.am:
5946         * gst/debug/gstdebug.c: (plugin_init):
5947         * gst/debug/gstpushfilesrc.c:
5948         * gst/debug/gstpushfilesrc.h:
5949           Add code for a pushfilesrc element that implements a pushfile:// URI
5950           handler, to make debugging push-mode operation of demuxer/decoders
5951           that support both easier in connection with seek/playbin/etc.
5952           The element isn't registered at the moment.
5953
5954 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
5955
5956         * gst/avi/gstavimux.c:
5957           Comment a #if 0 in caps template definition as VS6 seems to 
5958         do not support it.
5959         * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp):
5960           Use gst_guint64_to_gdouble for conversion.
5961         * gst/rtsp/rtspconnection.c:(rtsp_connection_send):
5962           Move variables declaration before the first instruction.
5963         * gst/rtsp/rtspdefs.c:(rtsp_strresult):
5964           Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported.
5965           And don't include netdb.h for G_OS_WIN32
5966         * gst/rtsp/sdpmessage.c:(sdp_parse_line):
5967           This initialization SDPMedia nmedia = {.media = NULL }; is not supported
5968           by VS6 then use an other way to initialize SDPMedia structure.
5969         * gst/udp/gstdynudpsink.h:
5970         * gst/udp/gstdynudpnetutils.h:
5971           Do not include <sys/time.h> for G_OS_WIN32
5972         * gst/udp/gstudpsrc.c:
5973           Define socklen_t as int for G_OS_WIN32
5974         * win/common/config.h.in:
5975           Undef HAVE_NETINET_IN_H
5976         * win32/vs6/gst_plugins_good.dsw:
5977         * win32/vs6/libgstrtp.dsp:
5978         * win32/vs6/libgstrtsp.dsp:
5979         * win32/vs6/libgstautogen.dsp:
5980         * win32/vs6/libgstaudiofx.dsp:
5981         * win32/vs6/libgstudp.dsp:
5982           Add and update project files.
5983         * win32/common/gstudp-enumtypes.c:
5984         * win32/common/gstudp-enumtypes.h:
5985           Add a copy of udp enumtypes to win32/common as in core 
5986           and base.
5987         
5988 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
5989
5990         * configure.ac:
5991           Activate monoscope when building with --enable-experimental. Fix
5992           --enable-external configure switch description.
5993
5994         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init):
5995         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose):
5996           Help gst-indent.
5997
5998 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
5999
6000         * gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
6001           Explicitly cast result of pointer arithmetic to integer in order to
6002           avoid compiler warnings on some 64-bit systems. Should fix #406018.
6003
6004 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
6005
6006         * gst/debug/progressreport.c:
6007           Some more docs.
6008
6009 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6010
6011         * docs/plugins/inspect/plugin-rtp.xml:
6012           Update for new elements.
6013
6014         * gst/debug/progressreport.h:
6015           Commit newly-created header file as well.
6016
6017 2007-02-07  Tim-Philipp Müller  <tim at centricular dot net>
6018
6019         * docs/plugins/Makefile.am:
6020         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6021         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6022         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6023         * gst/debug/Makefile.am:
6024         * gst/debug/progressreport.c: (gst_progress_report_post_progress),
6025         (gst_progress_report_do_query), (gst_progress_report_report):
6026           Make progressreport element post messages with the current progress
6027           on the bus. Also add some basic docs for it.
6028
6029 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
6030
6031         * ext/hal/hal.c: (gst_hal_get_string):
6032         * ext/hal/hal.h:
6033           Some small cleanups; deal with errors when parsing the HAL ALSA
6034           capabilities a bit better.
6035
6036 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
6037
6038         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
6039           Let's try this again and use the right cast this time.
6040
6041 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
6042
6043         * gst/smpte/gstsmpte.c: (gst_smpte_transition_type_get_type):
6044           Add cast to avoid compiler warnings with older GLib versions
6045           where the nick/name members in GEnumValue are not declared as
6046           constant strings.
6047
6048 2007-02-06  Tim-Philipp Müller  <tim at centricular dot net>
6049
6050         * ext/gconf/gconf.c: (gst_gconf_get_key_for_sink_profile),
6051         (gst_gconf_render_bin_from_key),
6052         (gst_gconf_get_default_audio_sink):
6053         * ext/gconf/gconf.h:
6054         * ext/gconf/gstgconfaudiosink.c: (get_gconf_key_for_profile),
6055         (do_toggle_element), (gst_gconf_audio_sink_set_property),
6056         (gst_gconf_audio_sink_get_property):
6057           In gconfaudiosink, get the right key as the old key in do_toggle
6058           (ie. one dependent on the profile selected). Log some more stuff so
6059           we can see what's actually going on.
6060
6061 2007-02-06  Sebastian Dröge  <slomo@circular-chaos.org>
6062
6063         * gst/audiofx/audioamplify.c: (gst_audio_amplify_base_init),
6064         (gst_audio_amplify_class_init), (gst_audio_amplify_init),
6065         (gst_audio_amplify_set_process_function),
6066         (gst_audio_amplify_setup):
6067         * gst/audiofx/audioamplify.h:
6068         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
6069         (gst_audio_invert_class_init), (gst_audio_invert_setup):
6070         * gst/audiofx/audioinvert.h:
6071         Some small cleanups and port both elements to the new GstAudioFilter
6072         base class to save a few lines of common code.
6073         * gst/audiofx/Makefile.am:
6074         Link against libgstaudio for the above changes
6075
6076 2007-01-29  Wim Taymans  <wim@fluendo.com>
6077
6078         * tests/check/elements/.cvsignore:
6079         Some more ignores.
6080
6081 2007-01-26  Wim Taymans  <wim@fluendo.com>
6082
6083         Patch by: charles <charlesg3 at gmail dot com>
6084
6085         * ext/shout2/gstshout2.c: (gst_shout2send_init),
6086         (set_shout_metadata), (gst_shout2send_event):
6087         * ext/shout2/gstshout2.h:
6088         Properly handle tags in shout2send. Fixes #399825.
6089
6090 2007-01-25  Wim Taymans  <wim@fluendo.com>
6091
6092         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
6093         (gst_rtspsrc_activate_streams):
6094         Convert SDP fields to upper/lowercase following the rules in the SDP to
6095         caps document. 
6096
6097 2007-01-25  Wim Taymans  <wim@fluendo.com>
6098
6099         * gst/rtp/README:
6100         * gst/rtp/gstrtpilbcdepay.c:
6101         * gst/rtp/gstrtpilbcpay.c:
6102         * gst/rtp/gstrtpmp4gdepay.c:
6103         * gst/rtp/gstrtpmp4gpay.c:
6104         * gst/rtp/gstrtpspeexdepay.c:
6105         * gst/rtp/gstrtpspeexpay.c:
6106         * gst/rtp/gstrtpsv3vdepay.c:
6107         * gst/rtp/gstrtptheoradepay.c:
6108         * gst/rtp/gstrtptheorapay.c:
6109         * gst/rtp/gstrtpvorbisdepay.c:
6110         * gst/rtp/gstrtpvorbispay.c:
6111         Fix case of encoding-name and key/value pairs to match the document.
6112         This is to make interoperation with SDP case-insensitive as required by
6113         the relevant RFCs.
6114
6115 2007-01-25  Wim Taymans  <wim@fluendo.com>
6116
6117         * configure.ac:
6118         Bump required -core/-base to CVS
6119
6120 2007-01-25  Wim Taymans  <wim@fluendo.com>
6121
6122         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_setcaps),
6123         (gst_rtp_L16_pay_flush), (gst_rtp_L16_pay_handle_buffer):
6124         * gst/rtp/gstrtpL16pay.h:
6125         Fill up to MTU using adapter.
6126         Timestamp rtp packets.
6127
6128 2007-01-25  Edward Hervey  <edward@fluendo.com>
6129
6130         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
6131         * sys/ximage/ximageutil.c: (ximageutil_check_xshm_calls):
6132         Use G_GSIZE_FORMAT in print statements for portability.
6133         Fixes build on macosx.
6134
6135 2007-01-24  Wim Taymans  <wim@fluendo.com>
6136
6137         * gst/rtp/Makefile.am:
6138         * gst/rtp/gstrtp.c: (plugin_init):
6139         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16_depay_base_init),
6140         (gst_rtp_L16_depay_class_init), (gst_rtp_L16_depay_init),
6141         (gst_rtp_L16_depay_parse_int), (gst_rtp_L16_depay_setcaps),
6142         (gst_rtp_L16_depay_process), (gst_rtp_L16_depay_set_property),
6143         (gst_rtp_L16_depay_get_property), (gst_rtp_L16_depay_change_state),
6144         (gst_rtp_L16_depay_plugin_init):
6145         * gst/rtp/gstrtpL16depay.h:
6146         * gst/rtp/gstrtpL16pay.c: (gst_rtp_L16_pay_get_type),
6147         (gst_rtp_L16_pay_base_init), (gst_rtp_L16_pay_class_init),
6148         (gst_rtp_L16_pay_init), (gst_rtp_L16_pay_finalize),
6149         (gst_rtp_L16_pay_setcaps), (gst_rtp_L16_pay_handle_buffer),
6150         (gst_rtp_L16_pay_plugin_init):
6151         * gst/rtp/gstrtpL16pay.h:
6152         Port and enable raw audio payloader/depayloader. Needs a bit more work
6153         on the payloader side.
6154
6155 2007-01-24  Wim Taymans  <wim@fluendo.com>
6156
6157         * gst/rtsp/gstrtspsrc.c: (pad_blocked),
6158         (gst_rtspsrc_stream_configure_transport),
6159         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_udp):
6160         * gst/rtsp/gstrtspsrc.h:
6161         Only unblock the udp pads when we linked and activated them all.
6162         Fixes #395688.
6163
6164 2007-01-24  Wim Taymans  <wim@fluendo.com>
6165
6166         * gst/rtp/Makefile.am:
6167         * gst/rtp/gstrtp.c: (plugin_init):
6168         * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init),
6169         (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init),
6170         (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process),
6171         (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property),
6172         (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init):
6173         * gst/rtp/gstrtpac3depay.h:
6174         Added simple AC3 depayloader (RFC 4184).
6175
6176         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps):
6177         Fix a leak.
6178
6179 2007-01-24  Sebastian Dröge  <slomo@circular-chaos.org>
6180
6181         reviewed by: Stefan Kost  <ensonic@users.sf.net>
6182
6183         * gst/audiofx/Makefile.am:
6184         * gst/audiofx/audioamplify.c:
6185         (gst_audio_amplify_clipping_method_get_type),
6186         (gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
6187         (gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
6188         (gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
6189         (gst_audio_amplify_set_caps),
6190         (gst_audio_amplify_transform_int_clip),
6191         (gst_audio_amplify_transform_int_wrap_negative),
6192         (gst_audio_amplify_transform_int_wrap_positive),
6193         (gst_audio_amplify_transform_float_clip),
6194         (gst_audio_amplify_transform_float_wrap_negative),
6195         (gst_audio_amplify_transform_float_wrap_positive),
6196         (gst_audio_amplify_transform_ip):
6197         * gst/audiofx/audioamplify.h:
6198         * gst/audiofx/audiofx.c: (plugin_init):
6199         Add new element "audioamplify". This allows scaling of raw audio
6200         samples, similar to the "volume" element, but provides different modes
6201         for clipping and allows unlimited amplification. It's mainly targeted
6202         for creative sound design and not as a replacement of the "volume"
6203         element. Fixes #397162
6204         * docs/plugins/Makefile.am:
6205         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6206         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6207         * docs/plugins/gst-plugins-good-plugins.args:
6208         * docs/plugins/inspect/plugin-audiofx.xml:
6209         Add docs for audioamplify and integrate them into the build system
6210         * tests/check/Makefile.am:
6211         * tests/check/elements/audioamplify.c: (setup_amplify),
6212         (cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
6213         Add fairly extensive unit test suite for audioamplify
6214
6215 2007-01-24  Wim Taymans  <wim@fluendo.com>
6216
6217         * gst/rtsp/gstrtspsrc.c: (pad_unblocked), (pad_blocked):
6218         Unblock pads after adding the pads to the element so that autopluggers
6219         get a change to link something. Possibly fixes #395688.
6220
6221 2007-01-24  Wim Taymans  <wim@fluendo.com>
6222
6223         * gst/rtp/gstrtpamrdepay.c:
6224         * gst/rtp/gstrtpgsmdepay.c:
6225         * gst/rtp/gstrtph263pdepay.c:
6226         * gst/rtp/gstrtph263ppay.c:
6227         * gst/rtp/gstrtph264depay.c:
6228         * gst/rtp/gstrtpilbcdepay.c:
6229         * gst/rtp/gstrtpmp2tdepay.c:
6230         * gst/rtp/gstrtpmp4gdepay.c:
6231         * gst/rtp/gstrtpmp4gpay.c:
6232         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
6233         * gst/rtp/gstrtpmp4vpay.c:
6234         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init),
6235         (gst_rtp_mpa_depay_init), (gst_rtp_mpa_depay_setcaps),
6236         (gst_rtp_mpa_depay_process):
6237         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_class_init),
6238         (gst_rtp_mpv_depay_init), (gst_rtp_mpv_depay_process):
6239         * gst/rtp/gstrtppcmadepay.c:
6240         * gst/rtp/gstrtppcmudepay.c:
6241         * gst/rtp/gstrtpspeexdepay.c:
6242         * gst/rtp/gstrtpspeexpay.c:
6243         * gst/rtp/gstrtpsv3vdepay.c:
6244         * gst/rtp/gstrtptheoradepay.c:
6245         * gst/rtp/gstrtptheorapay.c:
6246         * gst/rtp/gstrtpvorbisdepay.c:
6247         * gst/rtp/gstrtpvorbispay.c:
6248         Fix caps with payload numbers.
6249         Add some fixed payload numbers to caps when possible.
6250
6251 2007-01-23  Sebastian Dröge  <slomo@circular-chaos.org>
6252
6253         reviewed by: Stefan Kost  <ensonic@users.sf.net>
6254
6255         * gst/audiofx/Makefile.am:
6256         * gst/audiofx/audiofx.c: (plugin_init):
6257         * gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
6258         (gst_audio_invert_class_init), (gst_audio_invert_init),
6259         (gst_audio_invert_set_property), (gst_audio_invert_get_property),
6260         (gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
6261         (gst_audio_invert_transform_float),
6262         (gst_audio_invert_transform_ip):
6263         * gst/audiofx/audioinvert.h:
6264         Add new audiofx element "audioinvert". This element swaps the upper
6265         and lower half of samples and can be used for example for a
6266         wide-stereo effect. Fixes #396057
6267         * docs/plugins/Makefile.am:
6268         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6269         * docs/plugins/gst-plugins-good-plugins-sections.txt:
6270         * docs/plugins/gst-plugins-good-plugins.args:
6271         * docs/plugins/inspect/plugin-audiofx.xml:
6272         Add docs for the audioinvert element and add them to the build system.
6273         * tests/check/Makefile.am:
6274         * tests/check/elements/audioinvert.c: (setup_invert),
6275         (cleanup_invert), (GST_START_TEST), (invert_suite), (main):
6276         Add unit test suite for the audioinvert element.
6277
6278 2007-01-23  Wim Taymans  <wim@fluendo.com>
6279
6280         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_parse_int),
6281         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process):
6282         Parse config params as string and int.
6283         Parse and use AU header length
6284
6285 2007-01-23  Wim Taymans  <wim@fluendo.com>
6286
6287         * gst/smpte/barboxwipes.c: (gst_wipe_boxes_draw),
6288         (gst_wipe_triangles_clock_draw), (gst_wipe_triangles_draw):
6289         * gst/smpte/gstmask.c: (_gst_mask_register):
6290         * gst/smpte/gstmask.h:
6291         * gst/smpte/gstsmpte.c: (gst_smpte_update_mask):
6292         * gst/smpte/paint.c: (gst_smpte_paint_hbox), (draw_bresenham_line),
6293         (gst_smpte_paint_triangle_clock):
6294         constify some static structs.
6295         Don't update the mask if nothing changed to the params.
6296         Make sure we never draw outside of the picture. Fixes #398325.
6297
6298 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
6299
6300         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header_pull):
6301           Error out properly when pull_range fails while we're reading the
6302           headers, instead of just pausing the task silently. Fixes #399338.
6303
6304 2007-01-19  Tim-Philipp Müller  <tim at centricular dot net>
6305
6306         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
6307           Some more sanity checks to make sure the input formats match and the
6308           input pads are actually negotiated, in case someone tries to feed
6309           buffers from fakesrc or filesrc. Fixes #398299.
6310           Also const-ify an array, just because we can.
6311
6312 2007-01-19  Edward Hervey  <edward@fluendo.com>
6313
6314         * gst/smpte/gstsmpte.c: (fill_i420), (gst_smpte_collected):
6315         Ignore previous commit, that was only valid for widths and heights
6316         that are multiples of 4.
6317         Copy over size/stride macros from jpegdec. This allows the element
6318         to work with any width,height...
6319         ... but puts in evidence that the actual transformations only work
6320         with width/height that are multiples of 4.
6321
6322 2007-01-19  Edward Hervey  <edward@fluendo.com>
6323
6324         * gst/smpte/gstsmpte.c: (gst_smpte_collected):
6325         Allocate buffers of the right size.
6326         The proper size of a I420 buffer in bytes is:
6327         
6328             width * height * 3
6329             ------------------
6330                     2
6331
6332 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
6333
6334         * gst/smpte/gstsmpte.c: (gst_smpte_init):
6335           Proxy getcaps on sink pads too, so that we either end up with the
6336           same dimensions on all pads or error out if that's not possible
6337           (seems to work even!). Fixes #398086, I think.
6338
6339 2007-01-18  Tim-Philipp Müller  <tim at centricular dot net>
6340
6341         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
6342         * docs/plugins/gst-plugins-good-plugins.args:
6343         * docs/plugins/gst-plugins-good-plugins.hierarchy:
6344           Remove ladspa from docs; add hierarchy info for GstAudioPanorama;
6345           fix integer properties with -1 as minimum value.
6346
6347         * docs/plugins/inspect/plugin-1394.xml:
6348         * docs/plugins/inspect/plugin-aasink.xml:
6349         * docs/plugins/inspect/plugin-alaw.xml:
6350         * docs/plugins/inspect/plugin-alpha.xml:
6351         * docs/plugins/inspect/plugin-alphacolor.xml:
6352         * docs/plugins/inspect/plugin-annodex.xml:
6353         * docs/plugins/inspect/plugin-apetag.xml:
6354         * docs/plugins/inspect/plugin-audiofx.xml:
6355         * docs/plugins/inspect/plugin-auparse.xml:
6356         * docs/plugins/inspect/plugin-autodetect.xml:
6357         * docs/plugins/inspect/plugin-avi.xml:
6358         * docs/plugins/inspect/plugin-cacasink.xml:
6359         * docs/plugins/inspect/plugin-cairo.xml:
6360         * docs/plugins/inspect/plugin-cdio.xml:
6361         * docs/plugins/inspect/plugin-cutter.xml:
6362         * docs/plugins/inspect/plugin-debug.xml:
6363         * docs/plugins/inspect/plugin-dv.xml:
6364         * docs/plugins/inspect/plugin-efence.xml:
6365         * docs/plugins/inspect/plugin-effectv.xml:
6366         * docs/plugins/inspect/plugin-esdsink.xml:
6367         * docs/plugins/inspect/plugin-flac.xml:
6368         * docs/plugins/inspect/plugin-flxdec.xml:
6369         * docs/plugins/inspect/plugin-gconfelements.xml:
6370         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
6371         * docs/plugins/inspect/plugin-goom.xml:
6372         * docs/plugins/inspect/plugin-halelements.xml:
6373         * docs/plugins/inspect/plugin-icydemux.xml:
6374         * docs/plugins/inspect/plugin-id3demux.xml:
6375         * docs/plugins/inspect/plugin-jpeg.xml:
6376         * docs/plugins/inspect/plugin-level.xml:
6377         * docs/plugins/inspect/plugin-matroska.xml:
6378         * docs/plugins/inspect/plugin-mulaw.xml:
6379         * docs/plugins/inspect/plugin-multipart.xml:
6380         * docs/plugins/inspect/plugin-navigationtest.xml:
6381         * docs/plugins/inspect/plugin-ossaudio.xml:
6382         * docs/plugins/inspect/plugin-png.xml:
6383         * docs/plugins/inspect/plugin-rtp.xml:
6384         * docs/plugins/inspect/plugin-rtsp.xml:
6385         * docs/plugins/inspect/plugin-shout2send.xml:
6386         * docs/plugins/inspect/plugin-smpte.xml:
6387         * docs/plugins/inspect/plugin-speex.xml:
6388         * docs/plugins/inspect/plugin-taglib.xml:
6389         * docs/plugins/inspect/plugin-udp.xml:
6390         * docs/plugins/inspect/plugin-videobalance.xml:
6391         * docs/plugins/inspect/plugin-videobox.xml:
6392         * docs/plugins/inspect/plugin-videoflip.xml:
6393         * docs/plugins/inspect/plugin-videomixer.xml:
6394         * docs/plugins/inspect/plugin-wavenc.xml:
6395         * docs/plugins/inspect/plugin-wavparse.xml:
6396         * docs/plugins/inspect/plugin-ximagesrc.xml:
6397           Update to CVS.
6398
6399 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
6400
6401         Patch by: Sebastian Dröge <slomo circular-chaos org>
6402
6403         * gst/audiofx/audiopanorama.c:
6404           Fix doc section name (Fixes #397946)
6405
6406 2007-01-17  Stefan Kost  <ensonic@users.sf.net>
6407
6408         * sys/v4l2/gstv4l2object.c:
6409         (gst_v4l2_object_install_properties_helper),
6410         (gst_v4l2_object_set_property_helper),
6411         (gst_v4l2_object_get_property_helper), (gst_v4l2_set_defaults):
6412         * sys/v4l2/gstv4l2object.h:
6413         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init),
6414         (gst_v4l2src_init), (gst_v4l2src_set_property),
6415         (gst_v4l2src_get_property), (gst_v4l2src_set_caps):
6416         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
6417         (gst_v4l2src_grab_frame), (gst_v4l2src_set_capture),
6418         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
6419         (gst_v4l2src_capture_deinit):
6420           Fix EIO handing when capturing. Add new property to specify the number of
6421           buffers to enque (and remove the borked num-buffers usage).
6422
6423 2007-01-16  Stefan Kost  <ensonic@users.sf.net>
6424
6425         Patch by: Sebastian Dröge <slomo circular-chaos org>
6426
6427         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_class_init),
6428         (gst_audio_panorama_set_process_function):
6429           Use a function array for process methods, add more docs and define the
6430           startindex of enums.
6431
6432 2007-01-14  Tim-Philipp Müller  <tim at centricular dot net>
6433
6434         Patch by: Mark Nauwelaerts <manauw at skynet be>
6435
6436         * gst/avi/gstavimux.c: (gst_avi_mux_finalize),
6437         (gst_avi_mux_pad_reset), (gst_avi_mux_reset), (gst_avi_mux_init),
6438         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
6439         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
6440         (gst_avi_mux_riff_get_avi_header),
6441         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_riff_get_header),
6442         (gst_avi_mux_write_avix_index), (gst_avi_mux_add_index),
6443         (gst_avi_mux_bigfile), (gst_avi_mux_start_file),
6444         (gst_avi_mux_stop_file), (gst_avi_mux_handle_event),
6445         (gst_avi_mux_do_buffer), (gst_avi_mux_do_one_buffer),
6446         (gst_avi_mux_change_state):
6447         * gst/avi/gstavimux.h:
6448         * tests/check/elements/avimux.c: (teardown_src_pad):
6449           Add support for more than one audio stream; write better AVIX
6450           header; refactor code a bit; don't announce vorbis caps on our audio
6451           sink pads since we don't support it anyway. Closes #379298.
6452
6453 2007-01-13  Tim-Philipp Müller  <tim at centricular dot net>
6454
6455         Patch by: Sebastian Dröge <slomo circular-chaos org>
6456
6457         * gst/audiofx/audiopanorama.c:
6458         (gst_audio_panorama_method_get_type),
6459         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
6460         (gst_audio_panorama_set_process_function),
6461         (gst_audio_panorama_set_property),
6462         (gst_audio_panorama_get_property), (gst_audio_panorama_set_caps),
6463         (gst_audio_panorama_transform_m2s_int_simple),
6464         (gst_audio_panorama_transform_s2s_int_simple),
6465         (gst_audio_panorama_transform_m2s_float_simple),
6466         (gst_audio_panorama_transform_s2s_float_simple):
6467         * gst/audiofx/audiopanorama.h:
6468           Add 'method' property and provide a simple (non-psychoacustic)
6469           processing method (#394859).
6470
6471         * tests/check/elements/audiopanorama.c: (GST_START_TEST),
6472         (panorama_suite):
6473           Tests for new method.
6474
6475 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
6476
6477         * gst/apetag/gsttagdemux.c: (gst_tag_demux_read_range):
6478         * gst/id3demux/gstid3demux.c: (gst_id3demux_read_range):
6479           Set correct caps on outgoing pulled buffers, or things blow up
6480           after recent core changes.
6481
6482 2007-01-11  Wim Taymans  <wim@fluendo.com>
6483
6484         Based on patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
6485
6486         * gst/multipart/multipartmux.c: (gst_multipart_mux_init),
6487         (gst_multipart_mux_request_new_pad),
6488         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
6489         (gst_multipart_mux_change_state):
6490         Return FLOW errors ASAP. Fixes #394977.
6491         Misc cleanups.
6492
6493 2007-01-11  Wim Taymans  <wim@fluendo.com>
6494
6495         Patch by: Lutz Mueller <lutz at topfrose dot de>
6496
6497         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_activate_streams):
6498         Check for stream pad before activating. 
6499
6500 2007-01-10  Wim Taymans  <wim@fluendo.com>
6501
6502         Patch by: Peter Kjellerstedt  <pkj at axis com>
6503
6504         * gst/rtsp/COPYING.MIT:
6505         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
6506         (gst_rtspsrc_stream_free), (gst_rtspsrc_cleanup),
6507         (gst_rtspsrc_alloc_udp_ports), (pad_unblocked), (pad_blocked),
6508         (gst_rtspsrc_stream_configure_transport),
6509         (gst_rtspsrc_activate_streams), (gst_rtspsrc_loop_interleaved),
6510         (gst_rtspsrc_loop_udp), (gst_rtspsrc_send),
6511         (gst_rtspsrc_parse_methods),
6512         (gst_rtspsrc_create_transports_string),
6513         (gst_rtspsrc_prepare_transports), (gst_rtspsrc_setup_streams),
6514         (gst_rtspsrc_open), (gst_rtspsrc_close):
6515         * gst/rtsp/gstrtspsrc.h:
6516         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
6517         (rtsp_connection_connect), (rtsp_connection_send), (read_line),
6518         (parse_request_line), (parse_line), (rtsp_connection_read),
6519         (rtsp_connection_close):
6520         * gst/rtsp/rtspdefs.c: (rtsp_init_status), (rtsp_strresult),
6521         (rtsp_method_as_text), (rtsp_header_as_text),
6522         (rtsp_status_as_text), (rtsp_find_header_field),
6523         (rtsp_find_method):
6524         * gst/rtsp/rtspdefs.h:
6525         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_after_send),
6526         (rtsp_ext_wms_configure_stream):
6527         * gst/rtsp/rtspmessage.c: (rtsp_message_new), (rtsp_message_init),
6528         (rtsp_message_new_request), (rtsp_message_init_request),
6529         (rtsp_message_new_response), (rtsp_message_init_response),
6530         (rtsp_message_init_data), (rtsp_message_unset),
6531         (rtsp_message_free), (rtsp_message_add_header),
6532         (rtsp_message_get_header), (rtsp_message_set_body),
6533         (rtsp_message_get_body), (dump_mem), (rtsp_message_dump):
6534         * gst/rtsp/rtspmessage.h:
6535         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
6536         (sdp_media_get_attribute_val_n), (read_string), (read_string_del),
6537         (sdp_parse_line), (sdp_message_parse_buffer), (print_media),
6538         (sdp_message_dump):
6539         Allow url to be NULL to be able to use it for server connections.
6540         Can now send responses as well as requests.
6541         No longer hangs in an endless loop if EOF is received.
6542         Can now convert a status code to a text string.
6543         Return RTSP_HDR_INVALID for unknown headers.
6544         Return RTSP_INVALID for unknown methods.
6545         Copy CSeq and Session headers from the request.
6546         Only free memory corresponding to the currently set message type.
6547         Added const to function arguments as appropriate.
6548         Avoid a compiler warning when initializing nmedia.
6549         Use guint rather than gint to avoid compiler warnings.
6550         Fix crasher in wms extension.
6551         Factor out stream setup from open_connection.
6552         Delay activation of streams when actual data is received from the
6553         server, this prepares us to do proper protocol switching.
6554         Added new license.
6555         Fixes #380895.
6556
6557
6558 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
6559
6560         Patch by: Sebastian Dröge <slomo ubuntu com>
6561
6562         * docs/plugins/Makefile.am:
6563         * gst/audiofx/audiopanorama.c:
6564           Some small docs fixes (#394851).
6565
6566 2007-01-09  Wim Taymans  <wim@fluendo.com>
6567
6568         * gst/avi/gstavidemux.c:
6569         Fix docs.
6570
6571 2007-01-09  Wim Taymans  <wim@fluendo.com>
6572
6573         * gst/rtp/Makefile.am:
6574         * gst/rtp/gstrtp.c: (plugin_init):
6575         * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init),
6576         (gst_rtp_mpv_depay_class_init), (gst_rtp_mpv_depay_init),
6577         (gst_rtp_mpv_depay_setcaps), (gst_rtp_mpv_depay_process),
6578         (gst_rtp_mpv_depay_set_property), (gst_rtp_mpv_depay_get_property),
6579         (gst_rtp_mpv_depay_change_state), (gst_rtp_mpv_depay_plugin_init):
6580         * gst/rtp/gstrtpmpvdepay.h:
6581           Added RFC 2250 MPEG Video Depayloader.
6582
6583         * gst/rtp/gstrtpL16depay.h:
6584         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps),
6585         (gst_rtp_h263p_depay_process):
6586         Fix Header file. Small cleanups.
6587
6588         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init),
6589         (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_finalize),
6590         (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_change_state):
6591         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init),
6592         (gst_rtp_mp4v_depay_init), (gst_rtp_mp4v_depay_finalize),
6593         (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process),
6594         (gst_rtp_mp4v_depay_change_state):
6595         Remove usused code. Remove Adapter from state Change. Added debug.
6596
6597         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_base_init),
6598         (gst_rtp_mpa_depay_class_init), (gst_rtp_mpa_depay_init),
6599         (gst_rtp_mpa_depay_setcaps), (gst_rtp_mpa_depay_process):
6600         * gst/rtp/gstrtpmpadepay.h:
6601         Subclass base depayloader.
6602         Added debug.
6603         Support static payload type assignment as well.
6604
6605         * gst/rtp/gstrtpmpapay.c:
6606         Fix caps.
6607
6608 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
6609
6610         Patch by: Vincent Torri  <vtorri at univ-evry fr>
6611
6612         * ext/jpeg/gstjpegdec.c:
6613         * ext/jpeg/gstjpegenc.c:
6614         * ext/jpeg/smokecodec.c:
6615           These libjpeg callbacks should return a 'boolean' (unsigned char
6616           apparently) and not a 'gboolean' (which maps to gint). Fixes
6617           warnings when compiling with MingW (#393427).
6618
6619         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
6620           Use ioctlsocket on win32.
6621
6622         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
6623           Some printf format fixes for win32.
6624
6625 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
6626
6627         * gst/cutter/gstcutter.c: (gst_cutter_chain):
6628           Use gst_guint64_to_gdouble for conversion.
6629         * win32/vs6/libgstmatroska.dsp:
6630           Add zlib to the link.
6631         * win32/vs6/libgstvideobox.dsp:
6632           Update liboil library name (project is linked to 
6633           liboil-0.3-0.lib now).
6634           
6635 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
6636
6637         * gst/matroska/Makefile.am:
6638           If zlib is available and used, we must link it explicitly for
6639           things to work on MingW (fixes #392855).
6640
6641 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
6642
6643         * ext/esd/esdsink.c: (gst_esdsink_delay):
6644           Don't return bogus values when esd_get_delay() fails for some
6645           reason (#392189).
6646
6647 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
6648
6649         * sys/ximage/gstximagesrc.c: (composite_pixel):
6650           Fix presumably copy'n'pasto for 16bpp depth.
6651
6652 2006-12-24  Tim-Philipp Müller  <tim at centricular dot net>
6653
6654         * gst/matroska/matroska-mux.c:
6655         (gst_matroska_mux_audio_pad_setcaps):
6656           The "signed" field in audio caps is of boolean type, trying to use
6657           gst_structure_get_int() to extract it will fail. Fixing this makes
6658           matroskamux accept raw audio input (#387121) (use at your own risk
6659           though, due to the matroska spec being not entirely useful in this
6660           respect).
6661           Also fix up raw audio structures in template caps so that they
6662           represent what our setcaps function will actually accept, so that
6663           converters know what to convert to.
6664           Finally, don't fail if there isn't an "endianness" field in 8-bit
6665           PCM caps.
6666
6667 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
6668
6669         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
6670         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
6671         * tests/check/elements/cmmldec.c: (setup_cmmldec),
6672         (teardown_cmmldec):
6673         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
6674         (teardown_cmmlenc):
6675         * tests/check/elements/level.c: (setup_level), (cleanup_level):
6676           reapply consistent pad (de)activation
6677
6678 2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
6679
6680         * configure.ac:
6681         Back to CVS
6682
6683         * gst-plugins-good.doap:
6684         Add 0.10.5 doap entry
6685
6686 === release 0.10.5 ===
6687
6688 2006-12-21  Jan Schmidt <thaytan@mad.scientist.com>
6689
6690         * configure.ac:
6691           releasing 0.10.5, "The Path of Thorns"
6692
6693 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
6694
6695         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
6696         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
6697         * tests/check/elements/cmmldec.c: (setup_cmmldec),
6698         (teardown_cmmldec):
6699         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
6700         (teardown_cmmlenc):
6701         * tests/check/elements/level.c: (setup_level), (cleanup_level):
6702           revert my freeze breakage
6703
6704 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
6705
6706         * tests/check/elements/audiopanorama.c: (cleanup_panorama):
6707         * tests/check/elements/avimux.c: (setup_avimux), (cleanup_avimux):
6708         * tests/check/elements/cmmldec.c: (setup_cmmldec),
6709         (teardown_cmmldec):
6710         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
6711         (teardown_cmmlenc):
6712         * tests/check/elements/level.c: (setup_level), (cleanup_level):
6713           consistent pad (de)activation
6714
6715 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
6716
6717         * configure.ac:
6718         * ext/Makefile.am:
6719         Disable LADPSA, as it has moved to the -bad module for the duration.
6720
6721 2006-12-18  Wim Taymans  <wim@fluendo.com>
6722
6723         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
6724         (gst_signal_processor_event):
6725         Reset flow_state back to _OK after a flush stop so that we exit our
6726         error state after the flush. Fixes #374213
6727
6728 2006-12-16  David Schleef  <ds@schleef.org>
6729
6730         * sys/osxvideo/osxvideosink.h:
6731         * sys/osxvideo/osxvideosink.m:
6732           Decent effort at porting to 0.10.  Needs cleanup on OS/X.
6733
6734 2006-12-16  David Schleef  <ds@schleef.org>
6735
6736         Patch by: Vijay Santhanam <vijay santhanam gmail com>
6737
6738         * sys/osxvideo/Makefile.am:
6739         * sys/osxvideo/osxvideosink.h:
6740         * sys/osxvideo/osxvideosink.m:
6741           Preliminary patch for porting osxvideosink
6742
6743 2006-12-16  Wim Taymans  <wim@fluendo.com>
6744
6745         Patch by: Sjoerd Simons <sjoerd at luon dot net>
6746
6747         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
6748         (gst_videomixer_set_master_geometry),
6749         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free),
6750         (gst_videomixer_reset), (gst_videomixer_init),
6751         (gst_videomixer_finalize), (gst_videomixer_request_new_pad),
6752         (gst_videomixer_release_pad), (gst_videomixer_collected),
6753         (gst_videomixer_change_state):
6754         Introduce some locking around the videomixer state so that it does not
6755         crash when adding/removing pads. Fixes #383043.
6756
6757 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
6758
6759         * configure.ac:
6760           Make sure libcaca can actually be used instead of just checking for
6761           /usr/bin/caca-config, so we don't wrongly try to build cacasink when
6762           cross-compiling (fixes #384587).
6763
6764 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6765
6766         * Makefile.am:
6767         * gst-plugins-good.doap:
6768         * gst-plugins-good.spec.in:
6769           adding doap file
6770
6771 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
6772
6773         * configure.ac:
6774           libflac-1.1.3 changed API again, but we can't build against it yet,
6775           so make sure our check doesn't use libflac-1.1.3 and add a comment
6776           to this effect.
6777
6778 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
6779
6780         * gst/effectv/gstquark.c: (gst_quarktv_transform),
6781         (gst_quarktv_planetable_clear):
6782           Add some NULL pointer checks (possibly related to #385623).
6783
6784 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
6785
6786         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag),
6787         (gst_tag_demux_chain):
6788         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
6789           In streaming mode, if the first buffer we get doesn't have an
6790           offset, fix it up to be 0, otherwise trimming won't work later on
6791           and we'll be typefinding application/x-id3, which may result in
6792           decodebin plugging an endless number of id3demux elements as a
6793           consequence. Fixes #385031.
6794           
6795 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
6796
6797         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
6798           Ignore the buffer_time the sound device reports. Turns out it is 
6799           sometimes completely bogus and we're better off without it.
6800
6801 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
6802
6803         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
6804         (gst_matroska_demux_video_caps):
6805         * gst/matroska/matroska-ids.c:
6806         (gst_matroska_track_init_video_context):
6807         * gst/matroska/matroska-ids.h:
6808           Try harder to extract the framerate for video tracks correctly and
6809           save it directly instead of converting it back and forth a few
6810           times. Mostly makes a difference for very small framerates (<1).
6811           Fixes #380199.
6812
6813 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
6814
6815         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_init),
6816         (gst_gconf_audio_src_dispose), (do_toggle_element):
6817         * ext/gconf/gstgconfaudiosrc.h:
6818           Remove gconf notify hook when the gconfaudiosrc element is
6819           destroyed, otherwise the callback may be called on an
6820           already-destroyed instance and bad things happen. Should fix
6821           #378184.
6822           Also ignore gconf key changes when the source is already running.
6823
6824 2006-12-09  Tim-Philipp Müller  <tim at centricular dot net>
6825
6826         Patch by: Sebastian Dröge  <mail at slomosnail de>
6827
6828         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
6829           We need to be able to read and parse any possible floating point string
6830           format ("1,234" or "1.234") irrespective of the current locale. g_strod()
6831           will parse the former only in certain locales though, so we really need
6832           to canonicalise the separator to '.' and then use g_ascii_strtod() to
6833           make sure we can parse either version at all times.
6834           Fixes #382982 for real.
6835
6836 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
6837
6838         * sys/sunaudio/gstsunaudiomixerctrl.c:
6839         * sys/sunaudio/gstsunaudiosrc.c:
6840
6841         Use the sunaudio debug category.
6842
6843         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_finalize),
6844         (gst_sunaudiosink_class_init), (gst_sunaudiosink_init),
6845         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
6846         (gst_sunaudiosink_open), (gst_sunaudiosink_close),
6847         (gst_sunaudiosink_prepare), (gst_sunaudio_sink_do_delay),
6848         (gst_sunaudiosink_write), (gst_sunaudiosink_delay),
6849         (gst_sunaudiosink_reset):
6850         * sys/sunaudio/gstsunaudiosink.h:
6851
6852         Uses the sunaudio debug category for all debug output
6853         Implements the _delay() callback to synchronise video playback better
6854         Change the segtotal and segsize values back to the parent class 
6855           defaults (taken from buffer_time and latency_times of 200ms and 10ms 
6856           respectively)
6857         Measure the samples written to the device vs. played.
6858         Keep track of segments in the device by writing empty eof frames, and
6859         sleep using a GCond when we get too far ahead and risk overrunning the
6860         sink's ringbuffer.
6861
6862         Fixes: #360673
6863
6864 2006-12-08  Wim Taymans  <wim@fluendo.com>
6865
6866         Patch by: Sebastian Dröge  <mail at slomosnail de >
6867
6868         * gst/audiofx/audiopanorama.c: (gst_audio_panorama_init),
6869         (gst_audio_panorama_set_caps), (gst_audio_panorama_transform):
6870         * gst/audiofx/audiopanorama.h:
6871         Fix audiopanorame with float samples. Fixes #383726.
6872
6873 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
6874
6875         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_reset):
6876         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open),
6877         (gst_sunaudiosrc_reset):
6878
6879         Implement reset functions to unblock the src/sink more quickly on 
6880         state change requests.
6881         Patch by: Brian Cameron <brian dot cameron at sun com>
6882
6883 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
6884
6885         * sys/sunaudio/gstsunaudiomixer.c:
6886         (gst_sunaudiomixer_change_state):
6887         Construct the correct mixer device name when the AUDIODEV env var
6888         is set.
6889
6890         Patch by: Jerry Tan <jerry.tan at sun dot com>
6891         Fixes: #383596
6892
6893 2006-12-08  Jan Schmidt  <thaytan@mad.scientist.com>
6894
6895         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
6896         Apply patch to open the mixer control and set the MULTIPLE_OPEN
6897         ioctl. On solaris, the mixer device doesn't need opening non-blocking 
6898         - it can be opened by multiple processes by default, but needs the ioctl        for multiple opens within 1 process.
6899         Patch by: Jerry Tan <jerry.tan at sun dot com>
6900         Fixes: #349015
6901
6902 2006-12-07  Wim Taymans  <wim@fluendo.com>
6903
6904         * gst/smpte/gstmask.h:
6905         * gst/smpte/gstsmpte.c: (gst_smpte_class_init),
6906         (gst_smpte_setcaps), (gst_smpte_init), (gst_smpte_reset),
6907         (gst_smpte_collected), (gst_smpte_set_property),
6908         (gst_smpte_get_property), (gst_smpte_change_state), (plugin_init):
6909         * gst/smpte/gstsmpte.h:
6910         Port to 0.10 some more. 
6911         Added duration property to specify the duration of the transition.
6912         Make framerate a fraction.
6913         Deprecate fps property, we only use negotiated fps.
6914         Added docs.
6915         Fix collectpad usage.
6916         Reset state in READY.
6917         Send NEWSEGMENT event.
6918         Fix racy updates of object properties.
6919         Added debug category.
6920         Fixes #383323.
6921
6922 2006-12-06  Wim Taymans  <wim@fluendo.com>
6923
6924         Patch by: Sjoerd Simons <sjoerd at luon dot net>
6925
6926         * gst/videomixer/videomixer.c:
6927         (gst_videomixer_set_master_geometry),
6928         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_collect_free):
6929         Don't reset xpos and ypos in the setcaps function because causes
6930         unexpected behaviour.
6931         Fixes #382179.
6932
6933 2006-12-06  Wim Taymans  <wim@fluendo.com>
6934
6935         * gst/multipart/multipartmux.c: (gst_multipart_mux_compare_pads),
6936         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected):
6937         Keep track of the buffer timestamp in the collectdata member instead
6938         of modifying the buffer without making the metadata writable first.
6939         Fixes #382277.
6940
6941 2006-12-06  Wim Taymans  <wim@fluendo.com>
6942
6943         Patch by: Rob Taylor <robtaylor at floopily dot org>
6944
6945         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
6946         If using multicast in udpsrc, bind to the multicast address rather than
6947         IN_ADDR_ANY.
6948         This allows the simultanous use of multiple udpsrcs listening on
6949         different multicat addresses. Without this all udpsrcs will receive all
6950         packets from all subscribed multicast addresses.
6951         Fixes #383001.
6952
6953 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
6954
6955         * ext/taglib/gstid3v2mux.cc:
6956         Don't attempt to write a NULL frame into the ID3 tag set when the 
6957         createFrame method returned NULL.
6958         Fixes: #381857
6959         Patch by: Jonathan Matthew <jonathan at 0kaolin wh9 net >
6960
6961 2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>
6962
6963         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
6964         Use g_strtod() instead of sscanf to parse doubles, so that it will
6965         try parsing in the C locale if the current locale fails.
6966         Fixes: #382982
6967         Patch by: Sebastian Dröge  <mail at slomosnail de >
6968
6969 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
6970
6971         * win32/MANIFEST:
6972         Fix compilation on win32 under VS8
6973         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
6974         Partially fixes #381175
6975
6976 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
6977
6978         * gst/avi/gstavimux.c:
6979           accept all mpegversions,fixes #380825
6980           spotted by: Jerome Alet  
6981
6982 2006-11-30  Stefan Kost  <ensonic@users.sf.net>
6983
6984         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
6985         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
6986         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
6987         (gst_v4l2src_capture_init), (gst_v4l2src_buffer_finalize):
6988           cleanup the error message a bit more
6989
6990 2006-11-28  Wim Taymans  <wim@fluendo.com>
6991
6992         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
6993         Fix width and height properties.
6994
6995         * ext/libcaca/gstcacasink.h:
6996         Fix compilation on newer libcaca that require us to include a new
6997         header. Fixes #379918.
6998
6999 2006-11-28  Wim Taymans  <wim@fluendo.com>
7000
7001         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
7002         * gst/rtsp/gstrtspsrc.h:
7003         * gst/rtsp/rtspext.h:
7004         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_configure_stream),
7005         (rtsp_ext_wms_get_context):
7006         Add method so that extensions can choose to disable the setup of
7007         a stream.
7008         Make the WMS extension skip setup of x-wms-rtx streams. Fixes #377792.
7009
7010 2006-11-27  Wim Taymans  <wim@fluendo.com>
7011
7012         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
7013
7014         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
7015         Push header in a separate buffer instead of memcpy:ing all data.
7016         Change LF => CRLF in headers.
7017         Move trailing LF to header. Fixes #379792.
7018
7019 2006-11-27  Wim Taymans  <wim@fluendo.com>
7020
7021         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_chain):
7022         Small buffer overflow fix and improve debugging.
7023
7024 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
7025
7026         * ext/esd/esdmon.h:
7027         * ext/esd/esdsink.h:
7028           remove obsolete _factory_init protos
7029
7030 2006-11-24  Stefan Kost  <ensonic@users.sf.net>
7031
7032         * gst/avi/gstavidemux.c: (gst_avi_demux_index_entry_for_time),
7033         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
7034         (gst_avi_demux_peek_chunk), (gst_avi_demux_parse_subindex),
7035         (gst_avi_demux_read_subindexes_push),
7036         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
7037         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
7038         (gst_avi_demux_sync), (gst_avi_demux_next_data_buffer),
7039         (gst_avi_demux_massage_index),
7040         (gst_avi_demux_calculate_durations_from_index),
7041         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
7042         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
7043         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
7044           remove dead code, tweak debugs statements, add comments, use
7045           _uint64_scale instead _uint64_scale_int when using guint64 values,
7046           small optimizations, reflow some error handling
7047
7048 2006-11-22  Edward Hervey  <edward@fluendo.com>
7049
7050         * po/.cvsignore:
7051         We never put .pot files in cvs. Let's ignore them all.
7052
7053 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
7054
7055         * po/POTFILES.in:
7056           ... but better exclude files that aren't disted.
7057
7058 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
7059
7060         * po/POTFILES.in:
7061           Add v4l2 source files to list of files with translations, so the
7062           strings are actually extracted (however bad they still may be).
7063
7064 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
7065
7066         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
7067           Minor clean-ups: const-ify static array, remove trailing comma from
7068           last enum (gcc-2.9x trips over that), use GST_DEBUG_FUNCPTR.
7069
7070 2006-11-19  Jan Schmidt  <thaytan@mad.scientist.com>
7071
7072         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
7073         Make sure that g_free always gets called on the same pointer that was 
7074         returned by g_malloc.  Fixes #376594.
7075         Do not leak memory if decompressed size is wrong.
7076         Remove unneeded check of return value of g_malloc.
7077         Patch by: René Stadler <mail@renestadler.de>
7078
7079 2006-11-18  Tim-Philipp Müller  <tim at centricular dot net>
7080
7081         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_deinit):
7082           Add missing curly brackets.
7083
7084 2006-11-17  Edgard Lima <edgard.lima@indt.org.br>
7085
7086         * sys/v4l2/v4l2src_calls.c:
7087         Fix capture_deinit.
7088
7089 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
7090
7091         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
7092         (gst_matroska_mux_request_new_pad):
7093           Use GST_DEBUG_FUNCPTR; activate request pad before returning it.
7094
7095         * tests/check/elements/matroskamux.c: (setup_src_pad),
7096         (setup_sink_pad), (GST_START_TEST):
7097         Activate pads before using them.
7098
7099 2006-11-16  Tim-Philipp Müller  <tim at centricular dot net>
7100
7101         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
7102           Initialise variable to get rid of bogus compiler warning.
7103
7104 2006-11-16  Stefan Kost  <ensonic@users.sf.net>
7105
7106         Patch by: Ville Syrjala <ville.syrjala@movial.fi>
7107
7108         * gst/rtp/gstrtph263pay.c:
7109         * gst/rtp/gstrtph263pdepay.c:
7110         * gst/rtp/gstrtph263ppay.c:
7111           Specify H.263 variant and version in the caps (fixes #361637)
7112
7113 2006-11-15  Wim Taymans  <wim@fluendo.com>
7114
7115         * gst/rtsp/rtspconnection.c: (read_body):
7116         Don't set a data pointer to NULL and a size > 0 when we deal
7117         with empty packets.
7118
7119         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
7120         (rtsp_message_init_response), (rtsp_message_init_data),
7121         (rtsp_message_unset), (rtsp_message_free),
7122         (rtsp_message_take_body):
7123         Check that we can't create invalid empty packets. 
7124
7125 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
7126
7127         Patch by: Mark Nauwelaerts  <manauw at skynet be>
7128
7129         * gst/matroska/matroska-mux.c: (gst_matroska_mux_add_interfaces),
7130         (gst_matroska_mux_class_init), (gst_matroska_pad_free),
7131         (gst_matroska_mux_reset), (gst_matroska_mux_handle_sink_event),
7132         (gst_matroska_mux_request_new_pad), (gst_matroska_mux_release_pad),
7133         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
7134         (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_finish):
7135         * gst/matroska/matroska-mux.h:
7136           Add basic tag writing support; implement releasing pads (#374658).
7137
7138 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
7139
7140         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
7141         (gst_matroska_demux_audio_caps):
7142           Handle opaque/unspecified A_AAC audio codec ID (fixes #374737).
7143
7144 2006-11-14  David Schleef  <ds@schleef.org>
7145
7146         * gst/matroska/matroska-mux.c: Add Dirac fourcc.
7147
7148 2006-11-14  Tim-Philipp Müller  <tim at centricular dot net>
7149
7150         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
7151
7152         * win32/vs8/gst-plugins-good.sln:
7153         * win32/vs8/libgst1394.vcproj:
7154         * win32/vs8/libgstaasink.vcproj:
7155         * win32/vs8/libgstalaw.vcproj:
7156         * win32/vs8/libgstalpha.vcproj:
7157         * win32/vs8/libgstalphacolor.vcproj:
7158         * win32/vs8/libgstannodex.vcproj:
7159         * win32/vs8/libgstapetag.vcproj:
7160         * win32/vs8/libgstaudiofx.vcproj:
7161         * win32/vs8/libgstauparse.vcproj:
7162         * win32/vs8/libgstautodetect.vcproj:
7163         * win32/vs8/libgstavi.vcproj:
7164         * win32/vs8/libgstcacasink.vcproj:
7165         * win32/vs8/libgstcdio.vcproj:
7166         * win32/vs8/libgstcutter.vcproj:
7167         * win32/vs8/libgstdv.vcproj:
7168         * win32/vs8/libgsteffectv.vcproj:
7169         * win32/vs8/libgstflac.vcproj:
7170         * win32/vs8/libgstflxdec.vcproj:
7171         * win32/vs8/libgstgoom.vcproj:
7172         * win32/vs8/libgsticydemux.vcproj:
7173         * win32/vs8/libgstid3demux.vcproj:
7174         * win32/vs8/libgstjpeg.vcproj:
7175         * win32/vs8/libgstladspa.vcproj:
7176         * win32/vs8/libgstlevel.vcproj:
7177         * win32/vs8/libgstmatroska.vcproj:
7178         * win32/vs8/libgstmikmod.vcproj:
7179         * win32/vs8/libgstmng.vcproj:
7180         * win32/vs8/libgstmonoscope.vcproj:
7181         * win32/vs8/libgstmulaw.vcproj:
7182         * win32/vs8/libgstmultipart.vcproj:
7183         * win32/vs8/libgstpng.vcproj:
7184         * win32/vs8/libgstrtp.vcproj:
7185         * win32/vs8/libgstrtsp.vcproj:
7186         * win32/vs8/libgstshout2.vcproj:
7187         * win32/vs8/libgstsmpte.vcproj:
7188         * win32/vs8/libgstspeex.vcproj:
7189         * win32/vs8/libgsttaglib.vcproj:
7190         * win32/vs8/libgstudp.vcproj:
7191         * win32/vs8/libgstvideobalance.vcproj:
7192         * win32/vs8/libgstvideobox.vcproj:
7193         * win32/vs8/libgstvideoflip.vcproj:
7194         * win32/vs8/libgstvideomixer.vcproj:
7195         * win32/vs8/libgstwavenc.vcproj:
7196         * win32/vs8/libgstwavparse.vcproj:
7197           Make end-of-line returns unixy, so that when the files are checked
7198           out on win32 the line returns will be 0d 0a and not 0d 0d 0a.
7199           Hopefully fixes #366492.
7200
7201 2006-11-14  Wim Taymans  <wim@fluendo.com>
7202
7203         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
7204         Disable init_frames delay timestamp adjustment, it does not
7205         seem to be needed at all. Fixes #369621.
7206
7207 2006-11-13  Wim Taymans  <wim@fluendo.com>
7208
7209         Patch by: Mark Nauwelaerts  <manauw at skynet be>
7210
7211         * gst/videomixer/videomixer.c:
7212         (gst_videomixer_set_master_geometry),
7213         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_class_init),
7214         (gst_videomixer_collect_free), (gst_videomixer_reset),
7215         (gst_videomixer_init), (gst_videomixer_finalize),
7216         (gst_videomixer_request_new_pad), (gst_videomixer_release_pad),
7217         (gst_videomixer_collected), (gst_videomixer_change_state):
7218         Fix memleak by unref'ing collectpads instance (when finalizing)
7219         Implement releasing a request pad. Fixes #374479.
7220
7221 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
7222
7223         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
7224
7225         * win32/vs8/gst-plugins-good.sln:
7226         * win32/vs8/libgst1394.vcproj:
7227         * win32/vs8/libgstaasink.vcproj:
7228         * win32/vs8/libgstalaw.vcproj:
7229         * win32/vs8/libgstalpha.vcproj:
7230         * win32/vs8/libgstalphacolor.vcproj:
7231         * win32/vs8/libgstannodex.vcproj:
7232         * win32/vs8/libgstapetag.vcproj:
7233         * win32/vs8/libgstaudiofx.vcproj:
7234         * win32/vs8/libgstauparse.vcproj:
7235         * win32/vs8/libgstautodetect.vcproj:
7236         * win32/vs8/libgstavi.vcproj:
7237         * win32/vs8/libgstcacasink.vcproj:
7238         * win32/vs8/libgstcdio.vcproj:
7239         * win32/vs8/libgstcutter.vcproj:
7240         * win32/vs8/libgstdv.vcproj:
7241         * win32/vs8/libgsteffectv.vcproj:
7242         * win32/vs8/libgstflac.vcproj:
7243         * win32/vs8/libgstflxdec.vcproj:
7244         * win32/vs8/libgstgoom.vcproj:
7245         * win32/vs8/libgsticydemux.vcproj:
7246         * win32/vs8/libgstid3demux.vcproj:
7247         * win32/vs8/libgstjpeg.vcproj:
7248         * win32/vs8/libgstladspa.vcproj:
7249         * win32/vs8/libgstlevel.vcproj:
7250         * win32/vs8/libgstmatroska.vcproj:
7251         * win32/vs8/libgstmikmod.vcproj:
7252         * win32/vs8/libgstmng.vcproj:
7253         * win32/vs8/libgstmonoscope.vcproj:
7254         * win32/vs8/libgstmulaw.vcproj:
7255         * win32/vs8/libgstmultipart.vcproj:
7256         * win32/vs8/libgstpng.vcproj:
7257         * win32/vs8/libgstrtp.vcproj:
7258         * win32/vs8/libgstrtsp.vcproj:
7259         * win32/vs8/libgstshout2.vcproj:
7260         * win32/vs8/libgstsmpte.vcproj:
7261         * win32/vs8/libgstspeex.vcproj:
7262         * win32/vs8/libgsttaglib.vcproj:
7263         * win32/vs8/libgstudp.vcproj:
7264         * win32/vs8/libgstvideobalance.vcproj:
7265         * win32/vs8/libgstvideobox.vcproj:
7266         * win32/vs8/libgstvideoflip.vcproj:
7267         * win32/vs8/libgstvideomixer.vcproj:
7268         * win32/vs8/libgstwavenc.vcproj:
7269         * win32/vs8/libgstwavparse.vcproj:
7270           Add VS8 project files (note that many of the plugins in ext are
7271           disabled by default). Fixes #366492.
7272
7273 2006-11-10  Stefan Kost  <ensonic@users.sf.net>
7274
7275         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_grab_frame):
7276           we do not translate debug messages
7277
7278 2006-11-08  Stefan Kost  <ensonic@users.sf.net>
7279
7280         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
7281           fix categorisation, make short desc more explicit, remove unused code
7282           Fixes #372021
7283
7284 2006-11-08  Wim Taymans  <wim@fluendo.com>
7285
7286         * gst/rtp/gstrtpL16depay.c:
7287         * gst/rtp/gstrtpamrdepay.c:
7288         * gst/rtp/gstrtpamrpay.c:
7289         * gst/rtp/gstrtpgsmdepay.c:
7290         * gst/rtp/gstrtph263pay.c:
7291         * gst/rtp/gstrtph263pdepay.c:
7292         * gst/rtp/gstrtph263ppay.c:
7293         * gst/rtp/gstrtph264depay.c:
7294         * gst/rtp/gstrtpmp2tdepay.c:
7295         * gst/rtp/gstrtpmp4gdepay.c:
7296         * gst/rtp/gstrtpmp4gpay.c:
7297         * gst/rtp/gstrtpmp4vdepay.c:
7298         * gst/rtp/gstrtpmp4vpay.c:
7299         * gst/rtp/gstrtpmpadepay.c:
7300         * gst/rtp/gstrtpmpapay.c:
7301         * gst/rtp/gstrtppcmadepay.c:
7302         * gst/rtp/gstrtppcmapay.c:
7303         * gst/rtp/gstrtppcmudepay.c:
7304         * gst/rtp/gstrtppcmupay.c:
7305         * gst/rtp/gstrtpspeexdepay.c:
7306         * gst/rtp/gstrtpspeexpay.c:
7307         * gst/rtp/gstrtpsv3vdepay.c:
7308         Fix element descriptions.
7309
7310 2006-11-08  Wim Taymans  <wim@fluendo.com>
7311
7312         * gst/rtp/gstrtpvorbisdepay.c:
7313         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_handle_buffer):
7314         Fix description.
7315         Small cleanup in the payloader.
7316
7317 2006-11-08  Wim Taymans  <wim@fluendo.com>
7318
7319         * gst/rtp/Makefile.am:
7320         * gst/rtp/gstrtp.c: (plugin_init):
7321         * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_base_init),
7322         (gst_rtp_theora_depay_class_init), (gst_rtp_theora_depay_init),
7323         (gst_rtp_theora_depay_finalize),
7324         (gst_rtp_theora_depay_parse_configuration),
7325         (gst_rtp_theora_depay_setcaps),
7326         (gst_rtp_theora_depay_switch_codebook),
7327         (gst_rtp_theora_depay_process),
7328         (gst_rtp_theora_depay_set_property),
7329         (gst_rtp_theora_depay_get_property),
7330         (gst_rtp_theora_depay_change_state),
7331         (gst_rtp_theora_depay_plugin_init):
7332         * gst/rtp/gstrtptheoradepay.h:
7333         * gst/rtp/gstrtptheorapay.c: (gst_rtp_theora_pay_base_init),
7334         (gst_rtp_theora_pay_class_init), (gst_rtp_theora_pay_init),
7335         (gst_rtp_theora_pay_setcaps), (gst_rtp_theora_pay_reset_packet),
7336         (gst_rtp_theora_pay_init_packet),
7337         (gst_rtp_theora_pay_flush_packet),
7338         (gst_rtp_theora_pay_finish_headers), (gst_rtp_theora_pay_parse_id),
7339         (gst_rtp_theora_pay_handle_buffer),
7340         (gst_rtp_theora_pay_plugin_init):
7341         * gst/rtp/gstrtptheorapay.h:
7342         Add theora pay/depayloaders.
7343
7344 2006-11-06  Wim Taymans  <wim@fluendo.com>
7345
7346         * gst/rtp/Makefile.am:
7347         We depend on gsttag to generate the vorbis comments.
7348
7349         * gst/rtp/gstrtpvorbisdepay.c:
7350         (gst_rtp_vorbis_depay_parse_configuration),
7351         (gst_rtp_vorbis_depay_setcaps),
7352         (gst_rtp_vorbis_depay_switch_codebook),
7353         (gst_rtp_vorbis_depay_process):
7354         * gst/rtp/gstrtpvorbisdepay.h:
7355         Parse configuration string in the depayloader.
7356         Implement selecting and switching to a new codebook.
7357         Receiving vorbis over RTP now works.
7358
7359         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_reset_packet),
7360         (gst_rtp_vorbis_pay_init_packet),
7361         (gst_rtp_vorbis_pay_finish_headers),
7362         (gst_rtp_vorbis_pay_handle_buffer):
7363         * gst/rtp/gstrtpvorbispay.h:
7364         Set timestamps on outgoing buffers and RTP packets.
7365         Fix configuration string, prepend number of Packet headers.
7366         Fix encoding of ident string.
7367         Add delivery-method to caps.
7368         Streaming vorbis over RTP now works.
7369
7370 2006-11-06  Wim Taymans  <wim@fluendo.com>
7371
7372         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
7373         (gst_rtp_vorbis_pay_finish_headers), (gst_rtp_vorbis_pay_parse_id),
7374         (gst_rtp_vorbis_pay_handle_buffer):
7375         * gst/rtp/gstrtpvorbispay.h:
7376         Generate a valid configuration string in the caps based on the
7377         vorbis headers.
7378
7379 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
7380
7381         * ext/cdio/gstcdio.c: (gst_cdio_get_cdtext):
7382         * ext/cdio/gstcdio.h:
7383         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_open):
7384           Move CD-TEXT utility function into common file so it can also be
7385           used by a future cdioparanoiasrc.
7386
7387 2006-11-01  Edgard Lima <edgard.lima@indt.org.br>
7388         
7389         * sys/v4l2/Makefile.am:
7390         * sys/v4l2/gstv4l2object.c:
7391         * sys/v4l2/gstv4l2src.c:
7392         * sys/v4l2/gstv4l2xoverlay.c:
7393         * sys/v4l2/v4l2_calls.c:
7394         * sys/v4l2/v4l2src_calls.c:
7395         Improved comments in ELEMENT_ERROR/WARNING and added "#if 0" to
7396         xoverlay code that is still not implemented.
7397
7398 2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>
7399
7400         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
7401           We require a -base more recent than 0.10.9, so it's safe to use
7402           GST_TYPE_TAG_IMAGE_TYPE unconditionally now.
7403
7404         * ext/dv/gstdvdec.c: (gst_dvdec_sink_event):
7405         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_sink_event):
7406           Use _newsegment_full() now that we depend on a recent enough core.
7407
7408         * gst/wavparse/gstwavparse.c:
7409           Remove cruft that we don't need any longer now that we depend on
7410           a recent enough -base.
7411
7412 2006-10-31  Wim Taymans  <wim@fluendo.com>
7413
7414         * gst/rtp/Makefile.am:
7415         * gst/rtp/gstrtp.c: (plugin_init):
7416         * gst/rtp/gstrtpilbcpay.c: (gst_rtpilbcpay_init),
7417         (gst_rtpilbcpay_setcaps):
7418         Fix and activate ILBC pay and depayloaders. Fixes #368162.
7419
7420 2006-10-31  Wim Taymans  <wim@fluendo.com>
7421
7422         * ext/speex/gstspeexdec.c: (speex_dec_convert),
7423         (speex_dec_sink_event), (speex_dec_chain_parse_header):
7424         Some small cleanups, use _scale.
7425
7426 2006-10-31  Wim Taymans  <wim@fluendo.com>
7427
7428         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
7429         Use higher precision scale function.
7430
7431 2006-10-30  Tim-Philipp Müller  <tim at centricular dot net>
7432
7433         Patch by: Michal Benes  <michal dot benes at itonis tv>
7434
7435         * gst/matroska/matroska-demux.c: (gst_matroska_demux_encoding_cmp),
7436         (gst_matroska_demux_read_track_encodings),
7437         (gst_matroska_decode_buffer):
7438           Fix several issues with encoded/compressed/encrypted/signed tracks;
7439           also, remove superfluous newline characters from some debug
7440           statements. (#366155)
7441
7442 2006-10-30  Wim Taymans  <wim@fluendo.com>
7443
7444         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps):
7445         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init),
7446         (gst_smokedec_init), (gst_smokedec_finalize), (gst_smokedec_chain),
7447         (gst_smokedec_change_state):
7448         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
7449         (gst_smokeenc_init), (gst_smokeenc_finalize),
7450         (gst_smokeenc_getcaps), (gst_smokeenc_setcaps),
7451         (gst_smokeenc_resync), (gst_smokeenc_chain),
7452         (gst_smokeenc_set_property), (gst_smokeenc_get_property),
7453         (gst_smokeenc_change_state):
7454         Various cleanups, capsnego and leak fixes.
7455
7456 2006-10-30  Wim Taymans  <wim@fluendo.com>
7457
7458         Patch by: Mark Nauwelaerts  <manauw at skynet be>
7459
7460         * gst/videomixer/videomixer.c: (gst_videomixer_update_queues):
7461         Fix videomixer so that it can handle any combination of framerates.
7462         Fixes #367221.
7463
7464 2006-10-28  Wim Taymans  <wim@fluendo.com>
7465
7466         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
7467         (gst_avi_demux_parse_file_header),
7468         (gst_avi_demux_stream_init_push), (gst_avi_demux_parse_stream),
7469         (gst_avi_demux_stream_header_push), (gst_avi_demux_stream_data),
7470         (gst_avi_demux_chain):
7471         Fix position query for audio. also fixes timestamps in streaming
7472         mode and bug #364958.
7473         Small cleanups.
7474
7475 2006-10-27  Wim Taymans  <wim@fluendo.com>
7476
7477         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps), (gst_pngenc_chain):
7478         * ext/libpng/gstpngenc.h:
7479         Fix strides. Fixes #364856.
7480         Cleanup capsnego.
7481         Set caps on outgoing buffers.
7482
7483 2006-10-18  Wim Taymans  <wim@fluendo.com>
7484
7485         Patch by: Ville Syrjala <ville dot syrjala at movial dot fi>
7486
7487         * gst/rtp/gstrtpgsmpay.c:
7488         * gst/rtp/gstrtph263pay.c:
7489         * gst/rtp/gstrtpmpapay.c:
7490         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
7491         (gst_rtp_pcma_pay_handle_buffer):
7492         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush):
7493         Add static payload numbers in addition to the dynamic ones.
7494         Fixes #361639.
7495
7496 2006-10-18  Wim Taymans  <wim@fluendo.com>
7497
7498         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_lower_trans_get_type),
7499         (gst_rtspsrc_class_init), (gst_rtspsrc_loop_interleaved),
7500         (gst_rtspsrc_loop_udp), (gst_rtspsrc_open),
7501         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_set_uri):
7502         * gst/rtsp/rtspconnection.c: (rtsp_connection_create):
7503         * gst/rtsp/rtspdefs.h:
7504         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
7505         * gst/rtsp/rtspurl.h:
7506         Reuse already existing enum for lower transport.
7507         Add rtspt and rtspu protocols.
7508         Send redirect to rtspt when udp times out.
7509
7510 2006-10-18  Wim Taymans  <wim@fluendo.com>
7511
7512         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
7513         (gst_wavparse_stream_data):
7514         Fix seeking some more, mostly for speed changes.
7515
7516 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
7517
7518         Patch by: Fredrik Persson  <frepe at bredband net>
7519
7520         * sys/v4l2/gstv4l2tuner.c:
7521         * sys/v4l2/gstv4l2tuner.h:
7522           Fix _set_channel(): remove useless g_object_notify() for "channel"
7523           property that doesn't exist any longer and therefore now also
7524           useless redirect (#338818).
7525
7526 2006-10-17  Wim Taymans  <wim@fluendo.com>
7527
7528         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
7529         Some drivers do not support unsetting the non-blocking flag once the
7530         device is opened. In those cases, close/open the device in
7531         non-blocking mode. Fixes #362673.
7532
7533 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
7534
7535         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7536         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
7537         (gst_v4l2src_get_fps):
7538           dear stefan, framespersecond is not frameperiod, reverting but adding
7539           comment
7540
7541 2006-10-17  Stefan Kost  <ensonic@users.sf.net>
7542
7543         * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
7544         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_fps),
7545         (gst_v4l2src_get_fps):
7546           Numerator is numerator and denominator is denominator. Say that aloud
7547           5 times and retry after next beer.
7548
7549 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
7550
7551         Patch by: Josep Torra Valles  <josep at fluendo com>
7552
7553         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
7554         * ext/esd/esdsink.c: (gst_esdsink_write):
7555         * ext/flac/gstflacdec.c: (gst_flac_dec_length),
7556         (gst_flac_dec_read_seekable), (gst_flac_dec_chain),
7557         (gst_flac_dec_send_newsegment):
7558         * ext/flac/gstflacenc.c: (gst_flac_enc_seek_callback),
7559         (gst_flac_enc_tell_callback):
7560         * ext/jpeg/smokecodec.c: (find_best_size), (smokecodec_encode),
7561         (smokecodec_parse_header), (smokecodec_decode):
7562         * gst/avi/gstavimux.c: (gst_avi_mux_write_avix_index):
7563         * gst/debug/efence.c: (gst_fenced_buffer_alloc):
7564         * gst/goom/Makefile.am:
7565         * gst/goom/gstgoom.c:
7566         * gst/icydemux/gsticydemux.c: (gst_icydemux_typefind_or_forward):
7567         * gst/rtsp/gstrtspsrc.c:
7568         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
7569         * gst/udp/gstudpsink.c:
7570         * gst/udp/gstudpsrc.c:
7571         * gst/wavparse/gstwavparse.c: (gst_wavparse_change_state):
7572         * sys/sunaudio/gstsunaudiomixertrack.h:
7573           Fix a bunch of problems discovered by the Forte compiler, mostly type
7574           mixups and pointer arithmetics with void pointers. Fixes #362603.
7575
7576 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
7577
7578         * ext/speex/gstspeex.c: (plugin_init):
7579         * ext/speex/gstspeexenc.c: (gst_speex_enc_get_formats),
7580         (gst_speex_enc_setup_interfaces), (gst_speex_enc_base_init),
7581         (gst_speex_enc_class_init), (gst_speex_enc_finalize),
7582         (gst_speex_enc_sink_setcaps), (gst_speex_enc_convert_src),
7583         (gst_speex_enc_convert_sink), (gst_speex_enc_get_query_types),
7584         (gst_speex_enc_src_query), (gst_speex_enc_sink_query),
7585         (gst_speex_enc_init), (gst_speex_enc_create_metadata_buffer),
7586         (gst_speex_enc_set_last_msg), (gst_speex_enc_setup),
7587         (gst_speex_enc_buffer_from_data), (gst_speex_enc_push_buffer),
7588         (gst_speex_enc_set_header_on_caps), (gst_speex_enc_sinkevent),
7589         (gst_speex_enc_chain), (gst_speex_enc_get_property),
7590         (gst_speex_enc_set_property), (gst_speex_enc_change_state):
7591         * ext/speex/gstspeexenc.h:
7592           Miscellaneous clean-ups, among other things: speexenc => enc to
7593           enhance code readability; change speexenc => speex_enc; in chain
7594           function unref input buffer in case of error; take reference in
7595           event function; use boilerplate macro; use gst_pad_query_peer_*
7596           convenience functions.
7597
7598 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
7599
7600         * ext/speex/gstspeexenc.c: (gst_speexenc_finalize),
7601         (gst_speexenc_set_last_msg), (gst_speexenc_setup),
7602         (gst_speexenc_set_header_on_caps):
7603           Fix some mem leaks.
7604
7605 2006-10-11  Wim Taymans  <wim@fluendo.com>
7606
7607         * gst/rtsp/URLS:
7608         Added some other URL.
7609
7610         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop_udp),
7611         (gst_rtspsrc_handle_request), (gst_rtspsrc_send),
7612         (gst_rtspsrc_open), (gst_rtspsrc_play),
7613         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
7614         * gst/rtsp/gstrtspsrc.h:
7615         Work on fallback to TCP connection when the UDP socket times out.
7616         Handler server requests, just reply with OK for now.
7617
7618         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
7619         * gst/rtsp/rtspdefs.h:
7620         Added some more Real extension headers.
7621
7622         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
7623         Fix parsing of urls with a ':' that is not part of the hostname:port
7624         part of the url.
7625
7626 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
7627
7628         * gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
7629         * gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
7630         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
7631           Activate pad before adding it to the already-running element.
7632
7633         * tests/check/elements/icydemux.c: (icydemux_found_pad):
7634           Activate newly-created pad too.
7635
7636 2006-10-11  Wim Taymans  <wim@fluendo.com>
7637
7638         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
7639
7640         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
7641         (gst_udpsrc_finalize), (gst_udpsrc_create), (gst_udpsrc_set_uri),
7642         (gst_udpsrc_start):
7643         Fix some leaks in caps and uris. Fixes #361252.
7644
7645 2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>
7646
7647         * gst/wavparse/Makefile.am:
7648           Fix copy'n'paste-o (spotted by Mark Nauwelaerts, #341489).
7649
7650 2006-10-09  Jan Schmidt  <thaytan@mad.scientist.com>
7651
7652         * sys/v4l2/gstv4l2xoverlay.c:
7653         * sys/v4l2/gstv4l2xoverlay.h:
7654         Fix build as per the patch in #338818 comment 36.
7655
7656 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
7657
7658         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
7659           Activate pads before adding them to the source.
7660
7661 2006-10-06  Wim Taymans  <wim@fluendo.com>
7662
7663         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads), (gst_dvdemux_chain):
7664         * gst/auparse/gstauparse.c: (gst_au_parse_add_srcpad):
7665         Activate pads before adding.
7666
7667 2006-10-06  Wim Taymans  <wim@fluendo.com>
7668
7669         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
7670         (gst_multipart_find_pad_by_mime):
7671         Activate pads before adding.
7672
7673         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
7674         BOILERPLATE sets parent_class for us.
7675
7676 2006-10-06  Wim Taymans  <wim@fluendo.com>
7677
7678         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type),
7679         (gst_rtspsrc_class_init), (gst_rtspsrc_init),
7680         (gst_rtspsrc_create_stream), (gst_rtspsrc_media_to_caps),
7681         (gst_rtspsrc_alloc_udp_ports),
7682         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
7683         (gst_rtspsrc_push_event), (gst_rtspsrc_loop_interleaved),
7684         (gst_rtspsrc_create_transports_string),
7685         (gst_rtspsrc_configure_transports), (gst_rtspsrc_open),
7686         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
7687         * gst/rtsp/gstrtspsrc.h:
7688         Rework how the transport string is constructed, try to share channels
7689         and udp ports.
7690         Make most of the stuff less dependant on RTP as we are also going to use
7691         it for RDT.
7692         Add support for transport specific session managers.
7693
7694         * gst/rtsp/rtspconnection.c: (rtsp_connection_flush):
7695         Implement _flush().
7696
7697         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
7698         * gst/rtsp/rtspdefs.h:
7699         Add generic error return code.
7700
7701         * gst/rtsp/rtspext.h:
7702         Add support for pluggable tranport strings.
7703
7704         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_before_send),
7705         (rtsp_ext_wms_after_send), (rtsp_ext_wms_parse_sdp),
7706         (rtsp_ext_wms_get_context):
7707         Detect WMServer and activate the extension.
7708
7709         * gst/rtsp/rtsptransport.c: (rtsp_transport_get_mime),
7710         (rtsp_transport_get_manager), (rtsp_transport_parse):
7711         * gst/rtsp/rtsptransport.h:
7712         Added methods to get mime/manager for certain transports.
7713
7714 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
7715
7716         * ext/cairo/gsttimeoverlay.c:
7717         (gst_cairo_time_overlay_update_font_height):
7718         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_transform_caps):
7719         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_parse_image_data):
7720         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
7721         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
7722         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
7723         * ext/libpng/gstpngdec.c: (user_endrow_callback):
7724         * gst/auparse/gstauparse.c: (gst_au_parse_parse_header):
7725         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
7726         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
7727         (gst_avi_demux_stream_data):
7728         * gst/cutter/gstcutter.c: (gst_cutter_chain):
7729         * gst/debug/efence.c: (gst_efence_buffer_alloc),
7730         (gst_fenced_buffer_copy):
7731         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
7732         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
7733         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
7734         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_send),
7735         (gst_rtspsrc_handle_message):
7736         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
7737         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
7738           Printf format fixes.
7739
7740 2006-10-04  Wim Taymans  <wim@fluendo.com>
7741
7742         * gst/rtsp/Makefile.am:
7743         Dist new .h file too.
7744
7745 2006-10-04  Wim Taymans  <wim@fluendo.com>
7746
7747         * gst/rtsp/Makefile.am:
7748         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_getcaps),
7749         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp):
7750         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_init),
7751         (gst_rtspsrc_finalize), (gst_rtspsrc_create_stream),
7752         (gst_rtspsrc_parse_rtpmap),
7753         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
7754         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
7755         (gst_rtspsrc_play), (gst_rtspsrc_handle_message):
7756         * gst/rtsp/gstrtspsrc.h:
7757         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
7758         * gst/rtsp/rtspdefs.h:
7759         * gst/rtsp/rtspext.h:
7760         * gst/rtsp/rtspextwms.c: (rtsp_ext_wms_parse_sdp),
7761         (rtsp_ext_wms_get_context):
7762         * gst/rtsp/rtspextwms.h:
7763         * gst/rtsp/rtsptransport.c: (rtsp_transport_init), (parse_mode),
7764         (rtsp_transport_parse):
7765         * gst/rtsp/rtsptransport.h:
7766         Factor out extension in separate module.
7767         Fix getcaps to filter against the padtemplate.
7768         Use Content-Base if the server gives one.
7769         Rework the transport parsing a bit for future extensions.
7770         Added some Real Header field definitions.
7771
7772 2006-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
7773
7774         * docs/plugins/Makefile.am:
7775         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
7776         * docs/plugins/gst-plugins-good-plugins-sections.txt:
7777           added v4l2 stubs
7778         * gst-plugins-good.spec.in:
7779           add v4l2
7780
7781 2006-10-04  Tim-Philipp Müller  <tim at centricular dot net>
7782
7783         * gst/apetag/gstapedemux.c: (ape_demux_parse_tags):
7784           Extract disc/album/medium number and count and try harder
7785           to extract track number/count.
7786
7787 2006-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
7788
7789         * configure.ac:
7790         * sys/Makefile.am:
7791           add build stuff for v4l2, needs --enable-experimental until
7792           the last bits are resolved
7793
7794 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
7795
7796         * tests/check/Makefile.am:
7797           Disable autodetect test temporarily, so that the build bots
7798           update -bad and the ranks of unreliable video sinks in there.
7799
7800         * tests/check/elements/autodetect.c: (GST_START_TEST):
7801           Skip test if no usable videosink is found.
7802
7803 2006-09-29  Wim Taymans  <wim@fluendo.com>
7804
7805         * gst/rtsp/URLS:
7806         Add some more URLs.
7807
7808         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
7809         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
7810         (gst_rtspsrc_set_property), (gst_rtspsrc_get_property),
7811         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_loop_interleaved),
7812         (gst_rtspsrc_loop_udp), (gst_rtspsrc_loop_send_cmd),
7813         (gst_rtspsrc_loop), (gst_rtspsrc_send),
7814         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
7815         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause),
7816         (gst_rtspsrc_handle_message), (gst_rtspsrc_change_state):
7817         * gst/rtsp/gstrtspsrc.h:
7818         Add timeout property to control UDP timeouts.
7819         Fix error messages.
7820         Also start a loop function when operating in UDP mode so that we can
7821         do some more stuff async.
7822         Handle element messages from udpsrc to detect timeouts. If a timeout
7823         happens we currently generate an error.
7824         API: rtspsrc::timeout property.
7825
7826         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
7827         (gst_udpsrc_create):
7828         Really implement the timeout in microseconds and not milliseconds.
7829
7830 2006-09-29  Wim Taymans  <wim@fluendo.com>
7831
7832         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
7833         (gst_udpsrc_create), (gst_udpsrc_set_property),
7834         (gst_udpsrc_get_property), (gst_udpsrc_unlock), (gst_udpsrc_stop):
7835         * gst/udp/gstudpsrc.h:
7836         Added property to post a message on timeout.
7837         Updated docs.
7838         When restarting the select, initialize the fdsets again.
7839         Init control sockets so we don't accidentally close a random socket.
7840         API: GstUDPSrc::timeout property
7841
7842 2006-09-29  Wim Taymans  <wim@fluendo.com>
7843
7844         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
7845         Fix flag registration.
7846
7847         * gst/rtsp/rtspconnection.c: (rtsp_connection_read):
7848         Reading 0 also means 'no more commands'
7849
7850 2006-09-29  Wim Taymans  <wim@fluendo.com>
7851
7852         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
7853
7854         * gst/udp/gstudpsrc.c: (gst_udpsrc_create):
7855         Fix possible infinite loop when shutting down, a read can also return
7856         0 to indicate no more messages are available. Fixes #358156.
7857
7858 2006-09-25  Wim Taymans  <wim@fluendo.com>
7859
7860         * gst/autodetect/gstautoaudiosink.c:
7861         (gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
7862         (gst_auto_audio_sink_find_best):
7863         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_detect):
7864         Small cleanups.
7865         don't try to set "sync" property when it is not available.
7866
7867 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7868
7869         Patch by: Peter Kjellerstedt  <pkj at axis com>
7870
7871         * gst/alpha/gstalpha.c:
7872         * gst/rtp/gstrtpamrdepay.c:
7873         * gst/rtsp/gstrtspsrc.c:
7874         * gst/udp/gstudpsrc.c:
7875         * gst/videomixer/videomixer.c:
7876           Include stdlib.h in some more places, makes things compile
7877           with uClibc and -Werror (#357592).
7878
7879 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
7880
7881         * ext/jpeg/gstjpegdec.c:
7882           Set minimum height to 8 (from 16), our code should handle
7883           that fine. Some of the buttons on the apple trailer site
7884           are apparently only 15 pixels high (see #357470).
7885
7886 2006-09-23  Wim Taymans  <wim@fluendo.com>
7887
7888         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
7889         (gst_rtspsrc_open):
7890         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
7891         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
7892         (rtsp_connection_receive):
7893         * gst/rtsp/rtspdefs.c: (rtsp_strresult):
7894         * gst/rtsp/rtspdefs.h:
7895         Improve error reporting.
7896
7897 2006-09-23  Wim Taymans  <wim@fluendo.com>
7898
7899         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init):
7900         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init):
7901         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init):
7902         * gst/rtp/gstrtpdepay.c:
7903         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init):
7904         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init):
7905         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init):
7906         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init):
7907         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps),
7908         (gst_rtp_mp2t_depay_plugin_init):
7909         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init):
7910         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init):
7911         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init):
7912         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init):
7913         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init):
7914         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init):
7915         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init):
7916         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init):
7917         Fix klass typos.
7918         Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
7919
7920 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
7921
7922         * configure.ac:
7923           Need  -base CVS for gst_base_rtp_depayload_push_ts().
7924
7925 2006-09-22  Wim Taymans  <wim@fluendo.com>
7926
7927         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
7928         Don't check for a tag that is never there and check if we read the
7929         correct tag. Fixes seeking again.
7930         We must post an error when all pads are unlinked.
7931
7932 2006-09-22  Wim Taymans  <wim@fluendo.com>
7933
7934         * gst/rtp/Makefile.am:
7935         * gst/rtp/gstrtp.c: (plugin_init):
7936         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_process):
7937         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_setcaps),
7938         (gst_rtp_vorbis_pay_reset_packet),
7939         (gst_rtp_vorbis_pay_init_packet),
7940         (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_parse_id),
7941         (gst_rtp_vorbis_pay_handle_buffer):
7942         More fixage, set endoder-params correctly in the payloader.
7943
7944 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
7945
7946         * gst/autodetect/gstautoaudiosink.c:
7947         (gst_auto_audio_sink_base_init):
7948         * gst/autodetect/gstautovideosink.c:
7949         (gst_auto_video_sink_base_init):
7950           Make static pad templates static to appease valgrind's leak
7951           detector.
7952
7953         * tests/check/Makefile.am:
7954         * tests/check/elements/.cvsignore:
7955         * tests/check/elements/autodetect.c: (GST_START_TEST),
7956         (autodetect_suite):
7957           Add simple test for the ghostpad lockup on shutdown fixed in core
7958           CVS (audio bit disabled because it would need dozens of alsa
7959           suppressions and I'm too lazy to add those now).
7960
7961 2006-09-22  Wim Taymans  <wim@fluendo.com>
7962
7963         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state):
7964         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init):
7965         Small cleanups.
7966
7967         * gst/rtp/Makefile.am:
7968         * gst/rtp/gstrtp.c: (plugin_init):
7969         * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init),
7970         (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init),
7971         (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps),
7972         (gst_rtp_vorbis_depay_process),
7973         (gst_rtp_vorbis_depay_set_property),
7974         (gst_rtp_vorbis_depay_get_property),
7975         (gst_rtp_vorbis_depay_change_state),
7976         (gst_rtp_vorbis_depay_plugin_init):
7977         * gst/rtp/gstrtpvorbisdepay.h:
7978         * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init),
7979         (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init),
7980         (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet),
7981         (gst_rtp_vorbis_pay_flush_packet),
7982         (gst_rtp_vorbis_pay_append_buffer),
7983         (gst_rtp_vorbis_pay_handle_buffer),
7984         (gst_rtp_vorbis_pay_plugin_init):
7985         * gst/rtp/gstrtpvorbispay.h:
7986         Add experimental vorbis pay and depayloaders.
7987
7988 2006-09-21  Wim Taymans  <wim@fluendo.com>
7989
7990         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_parse_audio_config):
7991         Fix profile-level-id parsing and setup.
7992
7993 2006-09-21  Wim Taymans  <wim@fluendo.com>
7994
7995         * gst/udp/README:
7996         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
7997         Update README, simple cleanup.
7998
7999 2006-09-21  Wim Taymans  <wim@fluendo.com>
8000
8001         * gst/rtp/README:
8002         Update README with some examples.
8003
8004         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_init),
8005         (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_parse_audio_config),
8006         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
8007         (gst_rtp_mp4g_pay_setcaps):
8008         * gst/rtp/gstrtpmp4gpay.h:
8009         Make optional RTP parameters of type STRING, as required by the
8010         application/x-rtp caps specification.
8011
8012 2006-09-20  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
8013
8014         * gst/rtp/gstrtph263pdepay.c:
8015         * gst/rtp/gstrtph263ppay.c:
8016         Correctly calculate size of each H263+ RTP buffer taking into account MTU and
8017         RTP header.
8018
8019 2006-09-20  Wim Taymans  <wim@fluendo.com>
8020
8021         * gst/rtp/Makefile.am:
8022         And makefile too.
8023
8024 2006-09-20  Wim Taymans  <wim@fluendo.com>
8025
8026         * gst/rtp/gstrtp.c: (plugin_init):
8027         * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init),
8028         (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init),
8029         (decode_base64), (gst_rtp_asf_depay_setcaps),
8030         (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property),
8031         (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state),
8032         (gst_rtp_asf_depay_plugin_init):
8033         * gst/rtp/gstrtpasfdepay.h:
8034         Added preliminary ASF depayloader.
8035
8036         * gst/rtp/gstrtph264depay.c: (decode_base64):
8037         Fix base64 decoding.
8038
8039 2006-09-20  Wim Taymans  <wim@fluendo.com>
8040
8041         * gst/rtsp/URLS:
8042         Added some test URLS.
8043
8044         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_create_stream),
8045         (gst_rtspsrc_loop), (gst_rtspsrc_open):
8046         * gst/rtsp/gstrtspsrc.h:
8047         When creating streams, give access to the complete SDP.
8048         Fix some leaks.
8049         Collect and merge global stream properties in stream caps.
8050         Preliminary support for WMServer.
8051
8052         * gst/rtsp/rtspconnection.c: (rtsp_connection_create),
8053         (rtsp_connection_connect), (rtsp_connection_read), (read_body),
8054         (rtsp_connection_receive):
8055         * gst/rtsp/rtspconnection.h:
8056         Make connection interruptable.
8057         Refactor to make it reconnectable.
8058         Don't fail on short reads when reading data packets.
8059
8060         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_set_port),
8061         (rtsp_url_get_port):
8062         * gst/rtsp/rtspurl.h:
8063         Add methods for getting/setting the port.
8064
8065         * gst/rtsp/sdpmessage.c: (sdp_message_get_attribute_val_n),
8066         (sdp_message_get_attribute_val), (sdp_media_get_attribute),
8067         (sdp_media_get_attribute_val_n), (sdp_media_get_attribute_val),
8068         (sdp_media_get_format), (sdp_parse_line),
8069         (sdp_message_parse_buffer):
8070         Fix headers. 
8071         Add methods for getting multiple attributes with the same name.
8072         Increase buffer size when parsing.
8073         Fix parsing of a=foo fields.
8074
8075         * gst/rtsp/test.c: (main):
8076         Update to new connection API.
8077
8078         * gst/rtsp/rtspmessage.c: (rtsp_message_new_response),
8079         (rtsp_message_init_response), (rtsp_message_init_data),
8080         (rtsp_message_unset), (rtsp_message_free), (rtsp_message_dump):
8081         * gst/rtsp/rtspmessage.h:
8082         * gst/rtsp/rtsptransport.c: (rtsp_transport_free):
8083         * gst/rtsp/rtsptransport.h:
8084         * gst/rtsp/sdp.h:
8085         * gst/rtsp/sdpmessage.h:
8086         * gst/rtsp/gstrtsp.c:
8087         * gst/rtsp/gstrtsp.h:
8088         * gst/rtsp/gstrtpdec.c:
8089         * gst/rtsp/gstrtpdec.h:
8090         * gst/rtsp/rtsp.h:
8091         * gst/rtsp/rtspdefs.c:
8092         * gst/rtsp/rtspdefs.h:
8093         Dual licensed under MIT and LGPL now.
8094
8095 2006-09-19  Wim Taymans  <wim@fluendo.com>
8096
8097         * gst/rtsp/gstrtspsrc.c: (find_stream_by_pt),
8098         (gst_rtspsrc_create_stream), (gst_rtspsrc_free_stream),
8099         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
8100         (gst_rtspsrc_stream_configure_transport), (find_stream_by_channel),
8101         (gst_rtspsrc_push_event), (gst_rtspsrc_loop), (gst_rtspsrc_send),
8102         (gst_rtspsrc_parse_methods), (gst_rtspsrc_open),
8103         (gst_rtspsrc_parse_rtpinfo), (gst_rtspsrc_play):
8104         * gst/rtsp/gstrtspsrc.h:
8105         Reorganize stream parsing and creation.
8106         Detect container formats in interleaved mode.
8107         Keep more state about the streams.
8108         Assume a server also supports PLAY if it does not say.
8109         Add unicast and interleaved properties to TCP transport requests to make
8110         some servers happy (WMServer).
8111
8112         * gst/rtsp/sdpmessage.h:
8113         Add some defines for the standard Bandwidth types.
8114
8115 2006-09-19  Wim Taymans  <wim@fluendo.com>
8116
8117         * gst/rtsp/test.c: (main):
8118         Fix build.
8119
8120 2006-09-19  Wim Taymans  <wim@fluendo.com>
8121
8122         * gst/wavparse/gstwavparse.c:
8123         Add ms-gsm to the src template.
8124
8125 2006-09-18  Wim Taymans  <wim@fluendo.com>
8126
8127         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
8128         (gst_rtspsrc_send), (gst_rtspsrc_parse_methods),
8129         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
8130         (gst_rtspsrc_pause), (gst_rtspsrc_change_state),
8131         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
8132         * gst/rtsp/gstrtspsrc.h:
8133         Small cleanups, added documentation.
8134         Try to clean up the requests and responses.
8135         Refactor parsing the supported methods.
8136
8137         * gst/rtsp/rtspconnection.c: (rtsp_connection_open),
8138         (rtsp_connection_create), (rtsp_connection_send),
8139         (parse_response_status), (parse_request_line),
8140         (rtsp_connection_receive), (rtsp_connection_close),
8141         (rtsp_connection_free):
8142         * gst/rtsp/rtsptransport.c: (rtsp_transport_new),
8143         (rtsp_transport_init), (rtsp_transport_parse),
8144         (rtsp_transport_free):
8145         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
8146         * gst/rtsp/sdpmessage.c: (sdp_message_new), (sdp_message_init),
8147         (sdp_message_clean), (sdp_message_free), (sdp_media_new),
8148         (sdp_media_init), (sdp_message_parse_buffer), (sdp_message_dump):
8149         Use g_return_val some more.
8150
8151         * gst/rtsp/rtspdefs.h:
8152         Add more enum values to track initial states.
8153
8154         * gst/rtsp/rtspmessage.c: (rtsp_message_new_request),
8155         (rtsp_message_init_request), (rtsp_message_new_response),
8156         (rtsp_message_init_response), (rtsp_message_init_data),
8157         (rtsp_message_unset), (rtsp_message_free),
8158         (rtsp_message_add_header), (rtsp_message_remove_header),
8159         (rtsp_message_get_header), (rtsp_message_set_body),
8160         (rtsp_message_take_body), (rtsp_message_get_body),
8161         (rtsp_message_steal_body), (rtsp_message_dump):
8162         * gst/rtsp/rtspmessage.h:
8163         Reorder arguments, object goes as the first one.
8164         Use g_return_val some more.
8165
8166 2006-09-18  Wim Taymans  <wim@fluendo.com>
8167
8168         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_base_init),
8169         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_push_event),
8170         (gst_rtspsrc_loop), (gst_rtspsrc_uri_set_uri):
8171         * gst/rtsp/gstrtspsrc.h:
8172         Export sometimes source pad with correct caps on the template, create
8173         the ghostpad from the template.
8174         Remove RTCP template as we never expose RTCP.
8175         Protect against invalid body size.
8176         Avoid memcpy when creating the output buffer.
8177         Properly post an error and send EOS when the loop function is shut down.
8178
8179 2006-09-18  Wim Taymans  <wim@fluendo.com>
8180
8181         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
8182
8183         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8184         (gst_rtspsrc_init), (gst_rtspsrc_set_property), (gst_rtspsrc_open),
8185         (gst_rtspsrc_uri_get_uri), (gst_rtspsrc_uri_set_uri):
8186         * gst/rtsp/gstrtspsrc.h:
8187         Make sure we can never set an invalid location.
8188
8189         * gst/rtsp/rtspmessage.c: (rtsp_message_steal_body):
8190         * gst/rtsp/rtspmessage.h:
8191         Added _steal_body method for future use.
8192
8193         * gst/rtsp/rtspurl.c: (rtsp_url_parse), (rtsp_url_free):
8194         Make freeing of NULL url return immediatly.
8195
8196 2006-09-18  Wim Taymans  <wim@fluendo.com>
8197
8198         Based on patch by: Lutz Mueller <lutz at topfrose dot de>
8199
8200         * gst/rtsp/gstrtspsrc.c: (_do_init), (gst_rtspsrc_class_init),
8201         (gst_rtspsrc_init), (gst_rtspsrc_stream_setup_rtp),
8202         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_play),
8203         (gst_rtspsrc_change_state):
8204         * gst/rtsp/gstrtspsrc.h:
8205         Use boilerplate.
8206         Make rtspsrc subclass GstBin to make state changes easier.
8207         Add Range header field on the PLAY request.
8208
8209 2006-09-18  Wim Taymans  <wim@fluendo.com>
8210
8211         Based on patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
8212
8213         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
8214         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
8215         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_open),
8216         (gst_rtspsrc_close), (gst_rtspsrc_play), (gst_rtspsrc_pause):
8217         * gst/rtsp/rtspconnection.c: (inet_aton):
8218         Small cleanups.
8219         when multicast is selected as the transport, create UDP sources and
8220         connect to the multicast group.
8221         Move parsing and setting of caps to a common place.
8222         Fixes #349894.
8223
8224 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
8225
8226         * ext/flac/gstflactag.c:
8227         * gst/alpha/gstalpha.c:
8228         * gst/debug/breakmydata.c:
8229         * gst/debug/negotiation.c:
8230         * gst/debug/testplugin.c:
8231         * gst/effectv/gstaging.c:
8232         * gst/effectv/gstdice.c:
8233         * gst/effectv/gstedge.c:
8234         * gst/effectv/gstquark.c:
8235         * gst/effectv/gstrev.c:
8236         * gst/effectv/gstshagadelic.c:
8237         * gst/effectv/gstvertigo.c:
8238         * gst/effectv/gstwarp.c:
8239         * gst/multipart/multipartdemux.c:
8240         * gst/multipart/multipartmux.c:
8241         * gst/videobox/gstvideobox.c:
8242         * gst/videofilter/gstgamma.c:
8243         * gst/videofilter/gstvideotemplate.c:
8244         * gst/videomixer/videomixer.c:
8245         * sys/sunaudio/gstsunaudiosrc.h:
8246         More G_OBJECT macro fixing.
8247
8248 2006-09-16  Wim Taymans  <wim@fluendo.com>
8249
8250         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
8251
8252         * gst/avi/gstavimux.c: (gst_avi_mux_stop_file):
8253         Correctly set the dwLength in strh.
8254         With this patch, the file duration is now displayed correctly in window
8255         media player and the AVI plays completely. Fixes #356147
8256
8257 2006-09-15  Wim Taymans  <wim@fluendo.com>
8258
8259         Patch by: Darren Kenny <darren dot kenny at sun dot com>
8260
8261         * sys/sunaudio/gstsunaudiomixerctrl.c:
8262         (gst_sunaudiomixer_ctrl_build_list):
8263         Set the output track as the MASTER so that the gnome-settings-daemon
8264         keybindings for changing the volume using the keyboard works.
8265         Fixes #356142.
8266
8267 2006-09-15  Wim Taymans  <wim@fluendo.com>
8268
8269         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
8270         Fix documentation, it is not possible to control the framerate of jpegdec
8271         using filtered caps yet. Fixes #355210.
8272         Return the downstream GstFlowReturn instead of GST_FLOW_OK so that we
8273         stop when there is an error.
8274
8275 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
8276
8277         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain_parse_tag):
8278         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
8279           Don't interpret a first buffer with an offset of NONE as
8280           'from the middle of the stream', but only a first buffer
8281           that has a valid buffer offset that's non-zero (see #345449).
8282
8283 2006-09-14  Tim-Philipp Müller  <tim at centricular dot net>
8284
8285         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
8286         (gst_icydemux_typefind_or_forward):
8287         * gst/icydemux/gsticydemux.h:
8288           When we merge/collect multiple incoming buffers for typefinding
8289           purposes, keep an initial 0 offset on the first outgoing buffer
8290           as well (otherwise id3demux won't work right). Fixes #345449.
8291           Also Make buffer metadata writable before setting buffer caps.
8292
8293         * tests/check/elements/icydemux.c: (typefind_succeed),
8294         (cleanup_icydemux), (push_data), (GST_START_TEST),
8295         (icydemux_suite):
8296           Small test case for the above.
8297
8298 2006-09-13  Stefan Kost  <ensonic@users.sf.net>
8299
8300         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_chunk),
8301         (gst_avi_demux_stream_index), (gst_avi_demux_sync),
8302         (gst_avi_demux_stream_header_push),
8303         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
8304         (gst_avi_demux_loop):
8305           More code reuse and better logging in _peek_chunk(). Reintroduce check
8306           for chunk sizes before reading them (avoid oom). Better handling for 
8307           invalid chunksizes when streaming.
8308
8309 2006-09-11  Stefan Kost  <ensonic@users.sf.net>
8310
8311         * gst/level/gstlevel.c: (gst_level_set_property):
8312         * gst/level/gstlevel.h:
8313           Fix type mixup in level->interval (gdouble<->guint64). Spotted by
8314           René Stadler
8315
8316 2006-09-06  Stefan Kost  <ensonic@users.sf.net>
8317
8318         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
8319         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
8320         (gst_avi_demux_stream_data):
8321           Revert one change to fix streaming avi (adapter size != data size).
8322
8323 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
8324
8325         Patch by: Frédéric Riss  <frederic.riss at gmail dot com>
8326
8327         * gst/matroska/matroska-demux.c: (gst_matroska_track_free),
8328         (gst_matroska_demux_reset),
8329         (gst_matroska_demux_read_track_encodings),
8330         (gst_matroska_demux_add_stream), (gst_matroska_decode_buffer),
8331         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
8332         (gst_matroska_demux_subtitle_caps):
8333         * gst/matroska/matroska-ids.h:
8334           Add support for VOBSUB subtitle tracks and zlib-compressed
8335           tracks. Make sure we start on a keyframe after a seek. (#343348)
8336
8337 2006-09-04  Tim-Philipp Müller  <tim at centricular dot net>
8338
8339         * gst/matroska/matroska-demux.c: (gst_matroska_demux_push_hdr_buf),
8340         (gst_matroska_demux_push_flac_codec_priv_data),
8341         (gst_matroska_demux_push_xiph_codec_priv_data),
8342         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
8343         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
8344         * gst/matroska/matroska-ids.h:
8345           Add basic FLAC support (#311586), not perfect yet though, needs some
8346           tweaking in flacdec; also, seeking could be better.
8347           Do better bounds checking when deserialising vorbis stream headers
8348           to make sure we don't read beyond the end of the buffer on bad input.
8349
8350 2006-09-04  Wim Taymans  <wim@fluendo.com>
8351
8352         Patch by: Alessandro Decina <alessandro at nnva dot org>
8353
8354         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_chain):
8355         Seeking back in a file containing a CMML stream errors out if the seek
8356         goes back up to the CMML headers. This is because after the seek the xml
8357         processing instruction <?xml ...?> is submitted to the xml parser again, 
8358         which results in an error. The attached patch fixes the problem. 
8359         Fixes #353908.
8360
8361         * ext/annodex/gstcmmlenc.h:
8362         Fix authors name.
8363
8364
8365 2006-08-28  Andy Wingo  <wingo@pobox.com>
8366
8367         * ext/raw1394/gstdv1394src.c (gst_dv1394src_from_raw1394handle):
8368         New helper function to lessen the ifdefs.
8369         (GST_INFO_OBJECT): 
8370         (gst_dv1394src_iso_receive): Use it.
8371         (gst_dv1394src_create): Also use the control sockets in iec61883
8372         mode.
8373         (gst_dv1394src_start, gst_dv1394src_stop): Always use a separate
8374         handle for AVC operations; fixes #348233.
8375
8376 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
8377
8378         * configure.ac:
8379         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8380         * docs/plugins/inspect/plugin-audiofx.xml:
8381         * docs/plugins/inspect/plugin-audiofxgood.xml:
8382         * gst/audiofx/Makefile.am:
8383         * gst/audiofx/audiofx.c:
8384         * gst/audiofxgood/.cvsignore:
8385         * gst/audiofxgood/Makefile.am:
8386         * gst/audiofxgood/audiofx.c:
8387         * gst/audiofxgood/audiopanorama.c:
8388         * gst/audiofxgood/audiopanorama.h:
8389           Rename again (audiofxgood -> audiofx).
8390
8391 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
8392
8393         * gst/avi/gstavidemux.c: (gst_avi_demux_next_data_buffer),
8394         (gst_avi_demux_stream_scan):
8395           Initialze variables.
8396
8397 2006-08-25  Wim Taymans  <wim@fluendo.com>
8398
8399         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
8400         (gst_avi_demux_init), (gst_avi_demux_finalize),
8401         (gst_avi_demux_reset), (gst_avi_demux_index_last),
8402         (gst_avi_demux_index_next), (gst_avi_demux_index_entry_for_time),
8403         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_index),
8404         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
8405         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
8406         (gst_avi_demux_massage_index),
8407         (gst_avi_demux_calculate_durations_from_index),
8408         (gst_avi_demux_stream_header_pull), (gst_avi_demux_do_seek),
8409         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
8410         (gst_avi_demux_chain), (gst_avi_demux_sink_activate),
8411         (gst_avi_demux_change_state):
8412         * gst/avi/gstavidemux.h:
8413         More attempts to turn this into readable code.
8414         Don't leak adapters.
8415         Calculate duration according to index more efficiently.
8416         Don't try to act like we drive the pipeline in chain mode.
8417
8418 2006-08-25  Wim Taymans  <wim@fluendo.com>
8419
8420         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
8421         Fix build.
8422
8423 2006-08-25  Wim Taymans  <wim@fluendo.com>
8424
8425         Patch by: Alessandro Decina <alessandro at nnva dot org>
8426
8427         * ext/annodex/gstannodex.c: (gst_annodex_granule_to_time):
8428         Do some extra sanity checks.
8429         Fixes #350340.
8430
8431         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_change_state),
8432         (gst_cmml_enc_parse_tag_head), (gst_cmml_enc_parse_tag_clip),
8433         (gst_cmml_enc_push_clip), (gst_cmml_enc_push):
8434         Check if clip->start_time is valid before adding the clip to the
8435         track list.
8436         Reset enc->preamble going from PAUSED to READY.
8437         Don't use GST_FLOW_UNEXPECTED for wrong usage of the element, it is
8438         only used for EOS.
8439         Only post an error message if we were the one that created the fatal
8440         GstFlowReturn value.
8441
8442         * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt),
8443         (gst_cmml_clock_time_to_granule), (gst_cmml_track_list_has_clip):
8444         Parse the seconds field of the npt-sec time format using %llu rather than
8445         %d and check that the value scaled by GST_SECOND doesn't overflow.
8446         Use guint64(s) to represent the keyindex and keyoffset fields of a granulepos.
8447         Lookup a clip's track with clip->track rather than clip->id which
8448         makes no sense.
8449         Identify a clip by its track and start time and not its xml id.
8450         do some more input checking and make sure we don't do undefined shifts.
8451
8452         * tests/check/elements/cmmldec.c: (setup_cmmldec),
8453         (teardown_cmmldec), (check_output_buffer_is_equal), (push_data),
8454         (cmml_tag_message_pop), (check_headers), (push_clip_full),
8455         (push_clip), (push_empty_clip), (check_output_clip),
8456         (GST_START_TEST), (cmmldec_suite):
8457         * tests/check/elements/cmmlenc.c: (setup_cmmlenc),
8458         (teardown_cmmlenc), (check_output_buffer_is_equal), (push_data),
8459         (check_headers), (push_clip), (check_clip_times), (check_clip),
8460         (check_empty_clip), (GST_START_TEST), (cmmlenc_suite):
8461         Added some more checks.
8462
8463 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
8464
8465         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_class_init),
8466         (gst_audio_panorama_set_property),
8467         (gst_audio_panorama_get_property),
8468         (gst_audio_panorama_transform_m2s_int),
8469         (gst_audio_panorama_transform_s2s_int),
8470         (gst_audio_panorama_transform_m2s_float),
8471         (gst_audio_panorama_transform_s2s_float):
8472         * gst/audiofxgood/audiopanorama.h:
8473         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
8474           Make also the pan-property float (saves scaling and yields better
8475           resolution)
8476
8477 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
8478
8479         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
8480         (gst_audio_panorama_transform_m2s_float),
8481         (gst_audio_panorama_transform_s2s_float):
8482           ChangeLog surgery to add cymax's real name
8483
8484
8485 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
8486
8487         Patch by: René Stadler <mail@renestadler.de>
8488
8489         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_set_caps),
8490         (gst_audio_panorama_transform_m2s_int),
8491         (gst_audio_panorama_transform_s2s_int),
8492         (gst_audio_panorama_transform_m2s_float),
8493         (gst_audio_panorama_transform_s2s_float),
8494         (gst_audio_panorama_transform):
8495         * gst/audiofxgood/audiopanorama.h:
8496           Added float support
8497
8498 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
8499
8500         * gst/audiofxgood/audiopanorama.c:
8501         (gst_audio_panorama_transform_m2s):
8502           Fix docs & debug category. Add Fixme for volume pan levels.
8503
8504 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
8505
8506         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes_pull),
8507         (gst_avi_demux_sync), (gst_avi_demux_stream_header_push),
8508         (gst_avi_demux_stream_header_pull),
8509         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
8510         (gst_avi_demux_chain):
8511           unbreak AVI index handling, some more debug, remove an obsolete
8512           adapter_flush that caused streaming to wander off in the wild
8513
8514 2006-08-24  Wim Taymans  <wim@fluendo.com>
8515
8516         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
8517         (gst_avi_demux_parse_superindex), (gst_avi_demux_parse_subindex),
8518         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_odml),
8519         (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
8520         (gst_avi_demux_calculate_durations_from_index),
8521         (gst_avi_demux_stream_header_push),
8522         (gst_avi_demux_stream_header_pull):
8523         * gst/avi/gstavidemux.h:
8524         Some more cleanups. 
8525         Fix totalFrames parsing in ODML.
8526         Disable use of index for length calculation in case of ODML as this is
8527         broken now.
8528
8529 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
8530
8531         * ext/flac/gstflacdec.c: (gst_flac_dec_update_metadata):
8532           Use libgsttag helper function here too.
8533
8534 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
8535
8536         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
8537         (gst_avi_demux_init), (gst_avi_demux_dispose),
8538         (gst_avi_demux_reset), (gst_avi_demux_index_next),
8539         (gst_avi_demux_index_entry_for_time), (gst_avi_demux_src_convert),
8540         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
8541         (gst_avi_demux_peek_chunk_info), (gst_avi_demux_peek_chunk),
8542         (gst_avi_demux_stream_init_push), (gst_avi_demux_stream_init_pull),
8543         (gst_avi_demux_parse_subindex),
8544         (gst_avi_demux_read_subindexes_push),
8545         (gst_avi_demux_read_subindexes_pull), (gst_avi_demux_parse_stream),
8546         (sort), (gst_avi_demux_parse_index), (gst_avi_demux_stream_index),
8547         (gst_avi_demux_sync), (gst_avi_demux_peek_tag),
8548         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header_push),
8549         (gst_avi_demux_stream_header_pull),
8550         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
8551         (push_tag_lists), (gst_avi_demux_loop), (gst_avi_demux_chain),
8552         (gst_avi_demux_sink_activate), (gst_avi_demux_activate_push),
8553         (gst_avi_demux_change_state):
8554         * gst/avi/gstavidemux.h:
8555           Initial streaming support for avidemux (fixes #336465)
8556
8557 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8558
8559         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8560           There is no taglibmux element ...
8561
8562         * gst/rtsp/gstrtspsrc.c:
8563           Use '%' rather than '&perc;' in gtk-doc blurb, docs build
8564           was complaining about unknown entity here.
8565
8566 2006-08-22  Wim Taymans  <wim@fluendo.com>
8567
8568         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
8569         (gst_avi_demux_do_seek), (gst_avi_demux_handle_seek),
8570         (gst_avi_demux_process_next_entry):
8571         * gst/avi/gstavidemux.h:
8572         Mark DISCONT.
8573         Remove old unused fields and reorder the struct a bit.
8574
8575 2006-08-22  Wim Taymans  <wim@fluendo.com>
8576
8577         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_media_to_caps),
8578         (gst_rtspsrc_send), (gst_rtspsrc_close), (gst_rtspsrc_play),
8579         (gst_rtspsrc_pause):
8580         * gst/rtsp/gstrtspsrc.h:
8581         * sys/oss/gstosssink.c: (gst_oss_sink_open),
8582         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
8583         Small documentation updates.
8584
8585 2006-08-22  Wim Taymans  <wim@fluendo.com>
8586
8587         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
8588         (gst_avi_demux_index_entry_for_time),
8589         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
8590         (gst_avi_demux_stream_init), (gst_avi_demux_parse_stream),
8591         (gst_avi_demux_stream_index), (gst_avi_demux_peek_tag),
8592         (gst_avi_demux_next_data_buffer),
8593         (gst_avi_demux_calculate_durations_from_index),
8594         (gst_avi_demux_stream_header), (gst_avi_demux_do_seek),
8595         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
8596         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop),
8597         (gst_avi_demux_sink_activate_pull), (gst_avi_demux_change_state):
8598         * gst/avi/gstavidemux.h:
8599         Precalc most of the duration query for each stream.
8600         Make seeking more correct.
8601         Use GstSegment to track position and duration.
8602         Code cleanups and leak fixes.
8603         Calculate correct total duration based on index length.
8604
8605 2006-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
8606
8607         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
8608         (parse_insert_string_field):
8609           If strings in text fields are marked ISO8859-1, but contain
8610           valid UTF-8 already, then handle them as UTF-8 and ignore
8611           the encoding. (#351794)
8612
8613 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8614
8615         * ext/flac/gstflacdec.c: (gst_flac_dec_scan_got_frame),
8616         (gst_flac_dec_write), (gst_flac_dec_loop),
8617         (gst_flac_dec_sink_event), (gst_flac_dec_chain),
8618         (gst_flac_dec_src_query):
8619         * ext/flac/gstflacdec.h:
8620           Make flac-in-ogg work (#352100).
8621
8622 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8623
8624         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
8625           Don't unref buffers of which we've already given away
8626           ownership to the adapter.
8627
8628 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
8629
8630         * ext/speex/gstspeexdec.c: (speex_dec_chain_parse_comments):
8631           Make metadata extraction actually work.
8632
8633         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
8634         (gst_speexenc_init), (gst_speexenc_create_metadata_buffer),
8635         (gst_speexenc_chain):
8636           Fix metadata writing: replace old code which wrote completely
8637           broken tags with libgsttag-based code. Plus miscellaneous
8638           code cleanups (use static pad templates etc.) and a bunch
8639           of leak fixes.
8640
8641 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
8642
8643         * gst/audiopanorama/.cvsignore:
8644         * gst/audiopanorama/Makefile.am:
8645         * gst/audiopanorama/audiofx.c:
8646         * gst/audiopanorama/audiopanorama.c:
8647         * gst/audiopanorama/audiopanorama.h:
8648           die! die! die! you should never have been there
8649
8650 2006-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
8651
8652         * tests/check/elements/audiopanorama.c: (GST_START_TEST):
8653         Fix invalid memory access in audiopanorama test suite.
8654
8655 2006-08-21  Edward Hervey  <edward@fluendo.com>
8656
8657         * tests/check/elements/.cvsignore:
8658         ignore built file
8659
8660 2006-08-21  Wim Taymans  <wim@fluendo.com>
8661
8662         * gst/rtp/Makefile.am:
8663         Fix the build again.
8664
8665 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
8666
8667         * gst/audiofxgood/.cvsignore:
8668         * gst/audiofxgood/Makefile.am:
8669         * gst/audiofxgood/audiofx.c: (plugin_init):
8670         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
8671         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
8672         (gst_audio_panorama_set_property),
8673         (gst_audio_panorama_get_property),
8674         (gst_audio_panorama_get_unit_size),
8675         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
8676         (gst_audio_panorama_transform_m2s),
8677         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
8678         * gst/audiofxgood/audiopanorama.h:
8679           resubmit with the desired name *again*
8680
8681 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
8682
8683         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_get_unit_size):
8684         * gst/videobox/gstvideobox.c: (gst_video_box_get_unit_size):
8685           use g_assert in _get_unit_size
8686
8687 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
8688
8689         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8690         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8691         * docs/plugins/inspect/plugin-audiofxgood.xml:
8692           cleanup -unused.txt to make it useful, add previously missing docs
8693
8694         * ext/Makefile.am:
8695           Quietly (accidentally) enable LADSPA for building by default, 
8696           despite the fact that it doesn't meet the plugin checklist.
8697             -- Added by Jan Schmidt 18 Dec 2006
8698
8699         * ext/esd/esdmon.c:
8700         * ext/esd/esdsink.c:
8701         * ext/esd/gstesd.c: (plugin_init):
8702           reflow to get rid of two external symbols
8703
8704         * gst/audiofxgood/audiofx.c: (plugin_init):
8705           re-add
8706
8707 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
8708
8709         * configure.ac:
8710         * gst/audiofxgood/.cvsignore:
8711         * gst/audiofxgood/Makefile.am:
8712         * gst/audiofxgood/audiofx.c
8713         * gst/audiofxgood/audiopanorama.c: (gst_audio_panorama_base_init),
8714         (gst_audio_panorama_class_init), (gst_audio_panorama_init),
8715         (gst_audio_panorama_set_property),
8716         (gst_audio_panorama_get_property),
8717         (gst_audio_panorama_get_unit_size),
8718         (gst_audio_panorama_transform_caps), (gst_audio_panorama_set_caps),
8719         (gst_audio_panorama_transform_m2s),
8720         (gst_audio_panorama_transform_s2s), (gst_audio_panorama_transform):
8721         * gst/audiofxgood/audiopanorama.h:
8722         * tests/check/Makefile.am:
8723         * tests/check/elements/audiopanorama.c: (setup_panorama_m),
8724         (setup_panorama_s), (cleanup_panorama), (GST_START_TEST),
8725         (panorama_suite), (main):
8726         Add audiofxgood plugin with audiopanorama element
8727
8728 2006-08-18  Wim Taymans  <wim@fluendo.com>
8729
8730         * docs/plugins/Makefile.am:
8731         More Oss docs fixage. 
8732
8733 2006-08-18  Wim Taymans  <wim@fluendo.com>
8734
8735         * gst/rtp/Makefile.am:
8736         * gst/rtp/gstrtp.c: (plugin_init):
8737         * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init),
8738         (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init),
8739         (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps),
8740         (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property),
8741         (gst_rtp_sv3v_depay_get_property),
8742         (gst_rtp_sv3v_depay_change_state),
8743         (gst_rtp_sv3v_depay_plugin_init):
8744         * gst/rtp/gstrtpsv3vdepay.h:
8745         Added experimental SVQ3 depayloader.
8746
8747 2006-08-18  Edward Hervey  <edward@fluendo.com>
8748
8749         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek),
8750         (gst_dvdemux_loop), (gst_dvdemux_change_state):
8751         * ext/dv/gstdvdemux.h:
8752         When handling seek requests, don't send the newsegment event from the
8753         calling thread. Instead save it so it can be sent from the streaming
8754         thread.
8755
8756 2006-08-17  Wim Taymans  <wim@fluendo.com>
8757
8758         Patch by: Sjoerd Simons <sjoerd at luon dot net>
8759
8760         * gst/multipart/multipartdemux.c: (multipart_parse_header):
8761         Accept leading whitespace before the boundary
8762         This patch makes the demuxer allow some whitespace before the actual
8763         boundary. This makes the demuxer work with the ``old'' gstreamer
8764         multipartmuxer again (which placed an extra \n before the start
8765         of the stream) Fixes #349068.
8766
8767 2006-08-17  Wim Taymans  <wim@fluendo.com>
8768
8769         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process):
8770         Error out on non-implemented stuff.
8771
8772 2006-08-16  Wim Taymans  <wim@fluendo.com>
8773
8774         Patch by: Andy Wingo <wingo at pobox dot com>
8775
8776         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setup),
8777         (gst_signal_processor_start), (gst_signal_processor_stop),
8778         (gst_signal_processor_cleanup), (gst_signal_processor_setcaps),
8779         (gst_signal_processor_pen_buffer), (gst_signal_processor_flush),
8780         (gst_signal_processor_do_pulls), (gst_signal_processor_do_pushes),
8781         (gst_signal_processor_change_state):
8782         Make ladspa elements reusable. Fixes #350006.
8783
8784 2006-08-16  Wim Taymans  <wim@fluendo.com>
8785
8786         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
8787         Convert ' ' into '_'. Try to keep as many characters in the padtemplate
8788         names as possible. Fixes #349901.
8789
8790 2006-08-16  Wim Taymans  <wim@fluendo.com>
8791
8792         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_flush),
8793         (gst_signal_processor_do_pushes):
8794         A push() gives away our refcount so we should not use the buffer on the
8795         pen anymore.
8796
8797 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
8798
8799         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
8800         (gst_oss_mixer_element_finalize):
8801           Don't leak device string.
8802
8803 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
8804
8805         * configure.ac:
8806           Require CVS of GStreamer core and -base (for
8807           GST_TAG_EXTENDED_COMMENT and gst_tag_parse_extended_comment()).
8808
8809         * ext/taglib/gstid3v2mux.cc:
8810           Write extended comment tags properly (#348762).
8811
8812         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
8813         (parse_comment_frame):
8814           Extract COMM frames into extended comments, which makes it
8815           easier to properly retain the description bit of the tag
8816           and maintain this information when re-tagging (#348762).
8817
8818 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
8819
8820         * tests/check/Makefile.am:
8821           Don't try to run annodex unit tests if the annodex
8822           plugin has not been built (Fixes #351116).
8823
8824 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
8825
8826         * gst/autodetect/gstautoaudiosink.c:
8827         (gst_auto_audio_sink_find_best):
8828           When we can't find a usable audiosink, don't error out,
8829           but use a fake sink instead and post a warning message
8830           on the bus (#341278).
8831
8832 2006-08-16  Tim-Philipp Müller  <tim at centricular dot net>
8833
8834         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init):
8835         * sys/oss/gstosssink.c:
8836         * sys/oss/gstosssrc.c:
8837           Document OSS elements; add gtk-doc blurb with 'Since 0.10.5' for
8838           ossmixer's new device property.
8839
8840         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
8841         * docs/plugins/gst-plugins-good-plugins-sections.txt:
8842           Add docs for OSS elements.
8843
8844         * docs/plugins/inspect/plugin-aasink.xml:
8845         * docs/plugins/inspect/plugin-alaw.xml:
8846         * docs/plugins/inspect/plugin-alpha.xml:
8847         * docs/plugins/inspect/plugin-alphacolor.xml:
8848         * docs/plugins/inspect/plugin-annodex.xml:
8849         * docs/plugins/inspect/plugin-apetag.xml:
8850         * docs/plugins/inspect/plugin-auparse.xml:
8851         * docs/plugins/inspect/plugin-autodetect.xml:
8852         * docs/plugins/inspect/plugin-avi.xml:
8853         * docs/plugins/inspect/plugin-cacasink.xml:
8854         * docs/plugins/inspect/plugin-cairo.xml:
8855         * docs/plugins/inspect/plugin-cdio.xml:
8856         * docs/plugins/inspect/plugin-cutter.xml:
8857         * docs/plugins/inspect/plugin-debug.xml:
8858         * docs/plugins/inspect/plugin-dv.xml:
8859         * docs/plugins/inspect/plugin-efence.xml:
8860         * docs/plugins/inspect/plugin-effectv.xml:
8861         * docs/plugins/inspect/plugin-esdsink.xml:
8862         * docs/plugins/inspect/plugin-flac.xml:
8863         * docs/plugins/inspect/plugin-flxdec.xml:
8864         * docs/plugins/inspect/plugin-gconfelements.xml:
8865         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
8866         * docs/plugins/inspect/plugin-goom.xml:
8867         * docs/plugins/inspect/plugin-halelements.xml:
8868         * docs/plugins/inspect/plugin-icydemux.xml:
8869         * docs/plugins/inspect/plugin-id3demux.xml:
8870         * docs/plugins/inspect/plugin-jpeg.xml:
8871         * docs/plugins/inspect/plugin-level.xml:
8872         * docs/plugins/inspect/plugin-matroska.xml:
8873         * docs/plugins/inspect/plugin-mulaw.xml:
8874         * docs/plugins/inspect/plugin-multipart.xml:
8875         * docs/plugins/inspect/plugin-navigationtest.xml:
8876         * docs/plugins/inspect/plugin-ossaudio.xml:
8877         * docs/plugins/inspect/plugin-png.xml:
8878         * docs/plugins/inspect/plugin-rtp.xml:
8879         * docs/plugins/inspect/plugin-rtsp.xml:
8880         * docs/plugins/inspect/plugin-shout2send.xml:
8881         * docs/plugins/inspect/plugin-smpte.xml:
8882         * docs/plugins/inspect/plugin-speex.xml:
8883         * docs/plugins/inspect/plugin-taglib.xml:
8884         * docs/plugins/inspect/plugin-udp.xml:
8885         * docs/plugins/inspect/plugin-videobalance.xml:
8886         * docs/plugins/inspect/plugin-videobox.xml:
8887         * docs/plugins/inspect/plugin-videoflip.xml:
8888         * docs/plugins/inspect/plugin-videomixer.xml:
8889         * docs/plugins/inspect/plugin-wavenc.xml:
8890         * docs/plugins/inspect/plugin-wavparse.xml:
8891         * docs/plugins/inspect/plugin-ximagesrc.xml:
8892           Update to CVS version.
8893           
8894 2006-08-16  Wim Taymans  <wim@fluendo.com>
8895
8896         * gst/rtp/gstrtpamrdepay.c:
8897         * gst/rtp/gstrtpmp4gdepay.c:
8898         Caps extra properties must be defined as strings for
8899         depayloaders because they are generated from an SDP.
8900
8901         * gst/rtp/Makefile.am:
8902         * gst/rtp/gstrtp.c: (plugin_init):
8903         * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_base_init),
8904         (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_init),
8905         (gst_rtp_h264_depay_finalize), (decode_base64),
8906         (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process),
8907         (gst_rtp_h264_depay_set_property),
8908         (gst_rtp_h264_depay_get_property),
8909         (gst_rtp_h264_depay_change_state),
8910         (gst_rtp_h264_depay_plugin_init):
8911         * gst/rtp/gstrtph264depay.h:
8912         Added basic, not completely functional RFC 3984 H264 depayloader.
8913
8914 2006-08-16  Wim Taymans  <wim@fluendo.com>
8915
8916         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
8917         Add pads after setting them up.
8918
8919         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init),
8920         (gst_rtspsrc_init), (gst_rtspsrc_finalize),
8921         (gst_rtspsrc_free_stream), (gst_rtspsrc_media_to_caps),
8922         (gst_rtspsrc_stream_setup_rtp),
8923         (gst_rtspsrc_stream_configure_transport),
8924         (gst_rtspsrc_combine_flows), (gst_rtspsrc_loop),
8925         (gst_rtspsrc_open), (gst_rtspsrc_close), (gst_rtspsrc_play),
8926         (gst_rtspsrc_pause):
8927         * gst/rtsp/gstrtspsrc.h:
8928         Fix interleaved mode.
8929          - Protect streaming with lock.
8930          - Combine flows
8931          - set caps on outgoing buffers.
8932          - strip trailing \0 from data packets.
8933          - Configure RTP/RTCP in stream.
8934         Use DEBUG_OBJECT more.
8935
8936 2006-08-16  Wim Taymans  <wim@fluendo.com>
8937
8938         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_add):
8939         Turn a g_print into a DEBUG line.
8940
8941 2006-08-13  Wim Taymans  <wim@fluendo.com>
8942
8943         * sys/oss/gstossmixer.c: (gst_ossmixer_open), (gst_ossmixer_new):
8944         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
8945         (gst_oss_mixer_element_init), (gst_oss_mixer_element_set_property),
8946         (gst_oss_mixer_element_get_property),
8947         (gst_oss_mixer_element_change_state):
8948         * sys/oss/gstossmixerelement.h:
8949         Small cleanups. Better error reporting.
8950         Add device property for the mixer instead of the hardcoded
8951         /dev/mixer. Fixes #350785.
8952         API: GstOssMixerElement::device property
8953
8954 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
8955
8956         Patch by: Jens Granseuer <jensgr at gmx net>
8957
8958         * gconf/Makefile.am:
8959           Make --disable-schemas work right (they still need
8960           to be copied to the installation directory, just not
8961           applied). Fixes #351347 (also #344100).
8962           
8963 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8964
8965         * configure.ac: back to HEAD
8966
8967 === release 0.10.4 ===
8968
8969 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
8970
8971         * configure.ac:
8972           releasing 0.10.4, "Dear Leader"
8973
8974 2006-08-10  Thomas Vander Stichele  <thomas at apestaart dot org>
8975
8976         Patch by: Edward Hervey <edward@fluendo.com>
8977
8978         * configure.ac:
8979         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
8980         (gst_wavparse_stream_data):
8981         Send the newsegment event in the streaming thread.
8982         Fixes #347529
8983
8984 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
8985
8986         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
8987         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
8988         (gst_smokeenc_resync), (gst_smokeenc_chain):
8989           Refuse sink caps in the encoder if width or height is not a
8990           multiple of 16, the encoder does not support that yet (#349939);
8991           along the same lines, check the return value of the encoder
8992           setup function; also remove some debug log clutter.
8993
8994 2006-08-04  Andy Wingo  <wingo@pobox.com>
8995
8996         * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing
8997         whether a processor can work in place or not, and for keeping
8998         track of its state. Change the FlowReturn instance variable from
8999         "state" to "flow_state", all callers changed.
9000
9001         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup)
9002         (gst_signal_processor_start, gst_signal_processor_stop)
9003         (gst_signal_processor_cleanup): New functions to manage the
9004         processor's state.
9005         (gst_signal_processor_setcaps): start() as well as setup() here.
9006         (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE.
9007         (gst_signal_processor_change_state): Stop and cleanup the
9008         processor as we go to NULL.
9009
9010         * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if
9011         INPLACE_BROKEN is not set.
9012
9013         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare):
9014         Do the alloc_buffer in bytes, not frames.
9015         
9016 2006-08-04  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9017
9018         * sys/ximage/ximageutil.c: (ximageutil_xcontext_get):
9019         Fix rgb masks when recording in < 24bpp.
9020
9021 2006-08-04  Andy Wingo  <wingo@pobox.com>
9022
9023         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps)
9024         (gst_signal_processor_prepare)
9025         (gst_signal_processor_update_inputs)
9026         (gst_signal_processor_process, gst_signal_processor_pen_buffer)
9027         (gst_signal_processor_flush)
9028         (gst_signal_processor_sink_activate_push)
9029         (gst_signal_processor_src_activate_pull)
9030         (gst_signal_processor_change_state): Remove the last of the code
9031         that assumes that we process whole buffers at a time. Fix some
9032         debugging. Seems to work now in some cases.
9033         (gst_signal_processor_src_activate_pull): BPB
9034
9035 2006-08-01  Andy Wingo  <wingo@pobox.com>
9036
9037         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process):
9038         Fix nframes-choosing.
9039         (gst_signal_processor_init): Init pending_in and pending_out.
9040
9041         * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No
9042         more default sample rate, although we never check that the sample
9043         rate actually gets set. Something for the future.
9044         (gst_signal_processor_setcaps): Some refcount fixes, flow fixes.
9045         (gst_signal_processor_event): Refcount fixen.
9046         (gst_signal_processor_process): Pull the number of frames to
9047         process from the sizes of the buffers in the input pens.
9048         (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :)
9049         (gst_signal_processor_do_pulls): Add an nframes argument, and use
9050         it instead of buffer_frames.
9051         (gst_signal_processor_getrange): Refcount fixen, pass nframes on
9052         to do_pulls.
9053         (gst_signal_processor_chain)
9054         (gst_signal_processor_sink_activate_push)
9055         (gst_signal_processor_src_activate_pull):  Refcount fixen.
9056
9057         * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
9058
9059 2006-07-31  Stefan Kost  <ensonic@users.sf.net>
9060
9061         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps),
9062         (gst_signal_processor_process):
9063           don't query buffer-frames from caps, add lots of debug-log,
9064           try fix for assert (#349189)
9065
9066 2006-07-31  Wim Taymans  <wim@fluendo.com>
9067
9068         * gst/udp/gstudpsrc.c:
9069         Fix docs.
9070
9071 2006-07-29  Stefan Kost  <ensonic@users.sf.net>
9072
9073         * ext/ladspa/gstsignalprocessor.c:
9074         (gst_signal_processor_add_pad_from_template),
9075         (gst_signal_processor_init), (gst_signal_processor_setcaps),
9076         (gst_signal_processor_process), (gst_signal_processor_pen_buffer),
9077         (gst_signal_processor_do_pulls), (gst_signal_processor_getrange),
9078         (gst_signal_processor_sink_activate_push),
9079         (gst_signal_processor_src_activate_pull),
9080         (gst_signal_processor_change_state):
9081          Add debugs logs here and there, add more error handling, add some
9082          FIXME comments, filed #349189
9083
9084 2006-07-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9085
9086         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
9087         (gst_smokeenc_setcaps), (gst_smokeenc_chain):
9088         Set caps on buffer correctly.  Fixes bug #349155.
9089
9090 2006-07-28  Wim Taymans  <wim@fluendo.com>
9091
9092         Patch by: Sjoerd Simons <sjoerd at luon dot net>
9093
9094         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
9095         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
9096         (gst_multipart_demux_finalize), (get_line_end),
9097         (multipart_parse_header), (multipart_find_boundary),
9098         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
9099         (gst_multipart_set_property), (gst_multipart_get_property):
9100         Uses GstAdapter instead of own buffering.
9101         Actually parses the mime-type correctly (In tests the mime-type was
9102         always "" with the old version).
9103         Uses the Content-length header if available to speed up things.
9104         Reliably autoscans the boundary name by default.
9105         Fixes #349068.
9106
9107         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
9108         Don't start the stream with a \n.
9109
9110 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
9111
9112         Patch by: Brian Cameron <brian dot cameron at sun com>
9113
9114         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open):
9115           Open source with O_NONBLOCK (#349015).
9116
9117 2006-07-28  Stefan Kost,,,  <ensonic@users.sf.net>
9118
9119         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
9120         (gst_avi_demux_massage_index):
9121         * gst/avi/gstavidemux.h:
9122           Whitespace fixes and more debug
9123
9124 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
9125
9126         * gst/autodetect/gstautoaudiosink.c:
9127         (gst_auto_audio_sink_create_element_with_pretty_name),
9128         (gst_auto_audio_sink_find_best),
9129         (gst_auto_audio_sink_change_state):
9130           Get rid of old and unused magic sound-server properties stuff.
9131           Add suffix to child sink's name that makes it easy to see from
9132           the name alone which type it actually is (alsa, oss, esd, etc.).
9133
9134 2006-07-27  Wim Taymans  <wim@fluendo.com>
9135
9136         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
9137         (gst_udpsrc_set_property), (gst_udpsrc_get_property),
9138         (gst_udpsrc_start):
9139         * gst/udp/gstudpsrc.h:
9140         Rename "buffer" to "buffer-size" to make clear it is a size we set and
9141         not some sort of feature we enable.
9142
9143 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
9144
9145         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
9146           Use CLOSE_SOCKET() here instead of close() to maintain
9147           win32 workiness.
9148
9149 2006-07-27  Wim Taymans  <wim@fluendo.com>
9150
9151         Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com>
9152
9153         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
9154         (gst_udpsrc_create), (gst_udpsrc_set_property),
9155         (gst_udpsrc_get_property), (gst_udpsrc_start):
9156         * gst/udp/gstudpsrc.h:
9157         Added "buffer-size" property to control the kernel receive buffer size.
9158         Update documentation.
9159         Small cleanups. Fixes #348752.
9160         API: buffer-size property
9161
9162 2006-07-26  Wim Taymans  <wim@fluendo.com>
9163
9164         Patch by: Kai Vehmanen <kv2004 at eca dot cx>
9165
9166         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush),
9167         (gst_rtp_pcma_pay_handle_buffer):
9168         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush),
9169         (gst_rtp_pcmu_pay_handle_buffer):
9170         Fix timestamp calculation on outgoing RTP packets.
9171         Fixes #348675.
9172
9173 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
9174
9175         * ext/taglib/gstid3v2mux.cc:
9176           Fix writing of comment frames (should be COMM not TCOM),
9177           is still sub-optimal though, since we don't retain or
9178           extract the comment descriptions properly (#334375,
9179           also see #334375).
9180
9181 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
9182
9183         * gst/wavparse/gstwavparse.c:
9184           #define 'fact' RIFF chunk if we are not compiling against
9185           -base CVS (we don't want to depend on -base CVS for this
9186           one define only, and also not for release order reasons).
9187
9188 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
9189
9190         * ext/taglib/gstid3v2mux.cc:
9191           Handle multiple tags of the same type properly. Re-inject
9192           unparsed ID3v2 frames that we get as binary blobs from
9193           id3demux into the tag again so we don't lose information
9194           when retagging (#334375).
9195
9196 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
9197
9198         * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init):
9199           Document newly-added properties properly, so that there is a
9200           'Since: 0.10.4' in the plugin docs. Convert some property
9201           names into canonical GObject style (GObject will do that
9202           internally anyway).
9203
9204 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
9205
9206         * gst/id3demux/id3tags.c:
9207         (id3demux_add_id3v2_frame_blob_to_taglist):
9208           Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as
9209           well, and add the version to the blob's buffer caps, since that
9210           information will be needed for deserialisation later on (#348644).
9211
9212 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
9213
9214         * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes),
9215         (gst_avi_demux_parse_stream):
9216          Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed
9217          indentation and spacing.
9218
9219 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
9220
9221         * docs/plugins/Makefile.am:
9222         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9223         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9224         * docs/plugins/gst-plugins-good-plugins.args:
9225         * docs/plugins/inspect/plugin-1394.xml:
9226         * docs/plugins/inspect/plugin-aasink.xml:
9227         * docs/plugins/inspect/plugin-alaw.xml:
9228         * docs/plugins/inspect/plugin-alpha.xml:
9229         * docs/plugins/inspect/plugin-alphacolor.xml:
9230         * docs/plugins/inspect/plugin-annodex.xml:
9231         * docs/plugins/inspect/plugin-apetag.xml:
9232         * docs/plugins/inspect/plugin-auparse.xml:
9233         * docs/plugins/inspect/plugin-autodetect.xml:
9234         * docs/plugins/inspect/plugin-avi.xml:
9235         * docs/plugins/inspect/plugin-cacasink.xml:
9236         * docs/plugins/inspect/plugin-cairo.xml:
9237         * docs/plugins/inspect/plugin-cdio.xml:
9238         * docs/plugins/inspect/plugin-cutter.xml:
9239         * docs/plugins/inspect/plugin-debug.xml:
9240         * docs/plugins/inspect/plugin-dv.xml:
9241         * docs/plugins/inspect/plugin-efence.xml:
9242         * docs/plugins/inspect/plugin-effectv.xml:
9243         * docs/plugins/inspect/plugin-esdsink.xml:
9244         * docs/plugins/inspect/plugin-flac.xml:
9245         * docs/plugins/inspect/plugin-flxdec.xml:
9246         * docs/plugins/inspect/plugin-gconfelements.xml:
9247         * docs/plugins/inspect/plugin-gdkpixbuf.xml:
9248         * docs/plugins/inspect/plugin-goom.xml:
9249         * docs/plugins/inspect/plugin-halelements.xml:
9250         * docs/plugins/inspect/plugin-icydemux.xml:
9251         * docs/plugins/inspect/plugin-id3demux.xml:
9252         * docs/plugins/inspect/plugin-jpeg.xml:
9253         * docs/plugins/inspect/plugin-level.xml:
9254         * docs/plugins/inspect/plugin-matroska.xml:
9255         * docs/plugins/inspect/plugin-mulaw.xml:
9256         * docs/plugins/inspect/plugin-multipart.xml:
9257         * docs/plugins/inspect/plugin-navigationtest.xml:
9258         * docs/plugins/inspect/plugin-ossaudio.xml:
9259         * docs/plugins/inspect/plugin-png.xml:
9260         * docs/plugins/inspect/plugin-rtp.xml:
9261         * docs/plugins/inspect/plugin-rtsp.xml:
9262         * docs/plugins/inspect/plugin-shout2send.xml:
9263         * docs/plugins/inspect/plugin-smpte.xml:
9264         * docs/plugins/inspect/plugin-speex.xml:
9265         * docs/plugins/inspect/plugin-udp.xml:
9266         * docs/plugins/inspect/plugin-videobalance.xml:
9267         * docs/plugins/inspect/plugin-videobox.xml:
9268         * docs/plugins/inspect/plugin-videoflip.xml:
9269         * docs/plugins/inspect/plugin-videomixer.xml:
9270         * docs/plugins/inspect/plugin-wavenc.xml:
9271         * docs/plugins/inspect/plugin-wavparse.xml:
9272         * docs/plugins/inspect/plugin-ximagesrc.xml:
9273           Update files to CVS/Prerelease version, add esdsink docs.
9274
9275         * ext/esd/esdsink.c:
9276           Add gtk-doc blurb.
9277
9278         * gst/rtp/gstrtpmp4vpay.c:
9279           Fix typo in element description.
9280
9281 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
9282
9283         * ext/esd/esdsink.c: (gst_esdsink_open),
9284         (gst_esdsink_factory_init):
9285           Prevent libesd from auto-spawning a sound daemon if it
9286           is not already running. Now that we don't do evil stuff
9287           like that any longer we can give esdsink a rank so that
9288           autoaudiosink will try it as well if all other audio
9289           sinks fail (#343051).
9290
9291 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
9292
9293         * ext/esd/Makefile.am:
9294           Oops, need to remove README from EXTRA_DIST as well.
9295
9296 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
9297
9298         * ext/esd/README:
9299           Remove, it contains nothing useful anyway.
9300
9301         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare),
9302         (gst_esdsink_delay):
9303           Some small clean-ups; use GST_BOILERPLATE etc.
9304
9305 2006-07-24  Wim Taymans  <wim@fluendo.com>
9306
9307         * gst/law/alaw-decode.c: (alawdec_getcaps):
9308         * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain):
9309         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
9310         * gst/law/mulaw-encode.c: (mulawenc_getcaps):
9311         Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
9312
9313 2006-07-24  Stefan Kost  <ensonic@users.sf.net>
9314
9315         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
9316         (gst_wavparse_other), (gst_wavparse_perform_seek),
9317         (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers),
9318         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
9319         (gst_wavparse_pad_query):
9320         * gst/wavparse/gstwavparse.h:
9321           Use information from 'fact' chunk for length calculation of compressed
9322           samples. Calculate bps if bogus value is found in wav header (embeded
9323           mp2/mp3).
9324           
9325
9326 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
9327
9328         Based on patch by: Joni Valtanen  <joni dot valtanen at movial fi>
9329
9330         * configure.ac:
9331         * gst/udp/Makefile.am:
9332         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init),
9333         (gst_dynudpsink_finalize), (gst_dynudpsink_close):
9334         * gst/udp/gstdynudpsink.h:
9335         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init),
9336         (gst_multiudpsink_finalize), (gst_multiudpsink_close):
9337         * gst/udp/gstmultiudpsink.h:
9338         * gst/udp/gstudp.c: (plugin_init):
9339         * gst/udp/gstudpsink.h:
9340         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create),
9341         (gst_udpsrc_start), (gst_udpsrc_stop):
9342         * gst/udp/gstudpsrc.h:
9343         * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton),
9344         (gst_udp_net_utils_win32_wsa_startup):
9345         * gst/udp/gstudpnetutils.h:
9346           Port udp plugin to win32 (#345288).
9347
9348 2006-07-24  Wim Taymans  <wim@fluendo.com>
9349
9350         * gst/rtsp/rtspconnection.c: (rtsp_connection_send):
9351         Remove unwanted DEBUG line.
9352
9353 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
9354
9355         * gst/id3demux/gstid3demux.c: (plugin_init):
9356         * gst/id3demux/id3tags.c:
9357         (id3demux_add_id3v2_frame_blob_to_taglist):
9358         * gst/id3demux/id3tags.h:
9359           On second thought, it might be wiser and more efficient
9360           not to do tag registration from a streaming thread.
9361
9362 2006-07-23  Tim-Philipp Müller  <tim at centricular dot net>
9363
9364         * gst/id3demux/id3tags.c:
9365         (id3demux_add_id3v2_frame_blob_to_taglist),
9366         (id3demux_id3v2_frames_to_tag_list):
9367           Put ID3v2 frames we can't parse as binary blobs into private
9368           tags, so that they are not lost when retagging, at least once
9369           id3v2mux has been taught to re-inject those frames again.
9370           See bug #334375.
9371
9372 2006-07-21  Wim Taymans  <wim@fluendo.com>
9373
9374         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
9375         (gst_avi_demux_process_next_entry):
9376         Fix some leaks.
9377
9378         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
9379         Don't use \n in debug lines.
9380
9381 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
9382
9383         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9384         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9385           Add annodex and icydemux, cleanup the sections a bit
9386
9387 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
9388
9389         Patch by: Alex Lancaster <alexl at users sourceforge net>
9390
9391         * ext/taglib/gstid3v2mux.cc:
9392           Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as
9393           ID3v2 TSSE frames (#347898).
9394
9395 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
9396
9397         * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
9398           Respect mpegversion for "video/mpeg" and give message in case of
9399           unhandled versions.
9400
9401 2006-07-17  Wim Taymans  <wim@fluendo.com>
9402
9403         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (buffer_clip),
9404         (gst_pngdec_caps_create_and_set), (gst_pngdec_task),
9405         (gst_pngdec_chain), (gst_pngdec_sink_event),
9406         (gst_pngdec_libpng_init), (gst_pngdec_change_state),
9407         (gst_pngdec_sink_activate_push):
9408         * ext/libpng/gstpngdec.h:
9409         Use statically allocated segment instead of leaking.
9410         Various cleanups.
9411         Fix flush and seek handling.
9412
9413 2006-07-16  Wim Taymans  <wim@fluendo.com>
9414
9415         * gst/rtp/Makefile.am:
9416         * gst/rtp/gstrtp.c: (plugin_init):
9417         * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init),
9418         (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init),
9419         (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process),
9420         (gst_rtp_mp4g_depay_set_property),
9421         (gst_rtp_mp4g_depay_get_property),
9422         (gst_rtp_mp4g_depay_change_state),
9423         (gst_rtp_mp4g_depay_plugin_init):
9424         * gst/rtp/gstrtpmp4gdepay.h:
9425         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
9426         (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps),
9427         (gst_rtp_mp4g_pay_flush):
9428         Added simple generic mpeg4 depayloader.
9429         Fix generic mpeg4 payloader.
9430
9431 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
9432
9433         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state):
9434           Don't try doing state changes on a NULL pointer.
9435
9436 2006-07-14  Wim Taymans  <wim@fluendo.com>
9437
9438         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
9439
9440         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_base_init),
9441         (gst_rtp_amr_depay_class_init), (gst_rtp_amr_depay_init),
9442         (gst_rtp_amr_depay_setcaps), (gst_rtp_amr_depay_process):
9443         * gst/rtp/gstrtpamrdepay.h:
9444         rtpamrdec isn't a subclass of GstBaseRtpDepayload.
9445         Fixes #321191
9446
9447 2006-07-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9448
9449         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
9450         (gst_ximage_src_get_caps), (gst_ximage_src_class_init):
9451         Fix segfault when moving mouse pointer to the bottom right corner.
9452
9453 2006-07-12  Wim Taymans  <wim@fluendo.com>
9454
9455         * gst/rtp/Makefile.am:
9456         * gst/rtp/gstrtp.c: (plugin_init):
9457         * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init),
9458         (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init),
9459         (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process),
9460         (gst_rtp_mp2t_depay_set_property),
9461         (gst_rtp_mp2t_depay_get_property),
9462         (gst_rtp_mp2t_depay_change_state),
9463         (gst_rtp_mp2t_depay_plugin_init):
9464         * gst/rtp/gstrtpmp2tdepay.h:
9465         Added mpeg2 TS depayloader. Closing #347234.
9466
9467 2006-07-11  Tim-Philipp Müller  <tim at centricular dot net>
9468
9469         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_close):
9470           Remove g_assert that shouldn't be there and was triggered
9471           after trying to open a device that doesn't exist or can't
9472           be opened for some other reason (#347972).
9473
9474 2006-07-10  Edward Hervey  <edward@fluendo.com>
9475
9476         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
9477         (gst_avi_demux_stream_header), (push_tag_lists):
9478         * gst/avi/gstavidemux.h:
9479         Don't push tag events found by gst_riff_parse_info() before outputting
9480         GST_EVENT_NEWSEGMENT.
9481
9482 2006-07-10  Wim Taymans  <wim@fluendo.com>
9483
9484         * gst/rtsp/Makefile.am:
9485         * gst/rtsp/rtspconnection.c: (rtsp_connection_send),
9486         (rtsp_connection_close):
9487         * gst/rtsp/rtspdefs.h:
9488         replaced closesocket and close in code with one CLOSE_SOCKET. 
9489         Some more cleanups. Fixes #345301.
9490
9491 2006-07-10  Tim-Philipp Müller  <tim at centricular dot net>
9492
9493         * gst/autodetect/gstautoaudiosink.c:
9494           Fix example pipeline in docs.
9495
9496 2006-07-10  Wim Taymans  <wim@fluendo.com>
9497
9498         Patch by: Rob Taylor <robtaylor at floopily dot org>
9499
9500         * gst/udp/gstmultiudpsink.c: (join_multicast),
9501         (gst_multiudpsink_init_send), (gst_multiudpsink_add):
9502         If a destination is added before the stream is set to PAUSED, the
9503         multicast group is not joined as the socket is not created yet. 
9504         Also TTL and LOOP should also be set. Fixes #346921.
9505
9506 2006-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9507
9508         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
9509         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
9510         (gst_ximage_src_get_caps), (gst_ximage_src_class_init),
9511         (gst_ximage_src_init):
9512         * sys/ximage/gstximagesrc.h:
9513         Fix use-damage property to actually work :)
9514         Add startx, starty, endx, endy properties so screencasts other than full
9515         screen ones can work.
9516
9517 2006-07-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9518
9519         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get),
9520         (gst_ximage_src_set_property), (gst_ximage_src_get_property),
9521         (gst_ximage_src_class_init), (gst_ximage_src_init):
9522         * sys/ximage/gstximagesrc.h:
9523         Add use_damage property to offer ability to choose whether to use
9524         XDamage or not.
9525
9526 2006-07-07  Wim Taymans  <wim@fluendo.com>
9527
9528         * gst/goom/filters.c: (zoomFilterSetResolution):
9529         Avoid goom coredumping by clearing memory. 
9530         Fixes 345679.
9531
9532 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
9533
9534         * win32/vs6/libgstid3demux.dsp:
9535         Add a link to libgsttag-0.10.lib.
9536
9537 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
9538
9539         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
9540         (gst_tag_demux_read_range):
9541         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
9542         (gst_id3demux_read_range):
9543           Don't return FLOW_UNEXPECTED when a buffer is before
9544           the start of the stream (which might happen with
9545           large ID3v2 tags if the tag reading was done pullrange
9546           based and we then switched to push mode later on).
9547           Fixes regression introduced by commit from June 29th.
9548
9549 2006-07-05  Tim-Philipp Müller  <tim at centricular dot net>
9550
9551         * ext/taglib/gstid3v2mux.cc:
9552           Make UTF-8 the default encoding when writing string
9553           tags (before, our UTF-8 strings would automatically
9554           be converted to ISO-8859-1 by taglib and written as
9555           ISO-8859-1 fields if that was possible).
9556
9557         * tests/check/elements/id3v2mux.c: (utf8_string_in_buf),
9558         (test_taglib_id3mux_check_tag_buffer), (identity_cb),
9559         (test_taglib_id3mux_with_tags):
9560           Add test case that makes sure our UTF-8 strings have
9561           actually been written into the tag as UTF-8.
9562
9563 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
9564
9565         * configure.ac:
9566           Let's try that again.
9567
9568 2006-07-04  Tim-Philipp Müller  <tim at centricular dot net>
9569
9570         * configure.ac:
9571           Disable monoscope plugin for now until it fulfills
9572           all the requirements.
9573
9574 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
9575
9576         * configure.ac:
9577         * gst/monoscope/Makefile.am:
9578         * gst/monoscope/gstmonoscope.c: (gst_monoscope_base_init),
9579         (gst_monoscope_class_init), (gst_monoscope_init),
9580         (gst_monoscope_finalize), (gst_monoscope_reset),
9581         (gst_monoscope_sink_setcaps), (gst_monoscope_src_setcaps),
9582         (gst_monoscope_src_negotiate), (get_buffer), (gst_monoscope_chain),
9583         (gst_monoscope_sink_event), (gst_monoscope_src_event),
9584         (gst_monoscope_change_state), (plugin_init):
9585         * gst/monoscope/gstmonoscope.h:
9586           Port monoscope visualisation to 0.10.
9587
9588 2006-07-03  Tim-Philipp Müller  <tim at centricular dot net>
9589
9590         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
9591         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
9592           Return FLOW_UNEXPECTED when at the end of the file, not
9593           FLOW_ERROR. Fixes 'internal stream error' errors that
9594           would sometimes occur in totem when scrubbing to the
9595           end of an ID3v1 tagged mp3 file.
9596
9597 2006-07-03  Edward Hervey  <edward@fluendo.com>
9598
9599         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (user_info_callback),
9600         (buffer_clip), (user_end_callback), (gst_pngdec_chain),
9601         (gst_pngdec_sink_event), (gst_pngdec_change_state):
9602         * ext/libpng/gstpngdec.h:
9603         Implement buffer clipping/dropping using GstSegment.
9604         This provides accurate seeking.
9605
9606 2006-07-03  Edward Hervey  <edward@fluendo.com>
9607
9608         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
9609         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
9610         (gst_avi_demux_handle_seek), (gst_avi_demux_aggregated_flow),
9611         (gst_avi_demux_process_next_entry), (push_tag_lists),
9612         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
9613         * gst/avi/gstavidemux.h:
9614         Proper aggregation of each stream's GstFlowReturn in order to figure out
9615         whether the task should stop or not.
9616         Don't send inline events before pushing out a NEW_SEGMENT, more
9617         specifically for GST_TAG_EVENT.
9618         Change a GST_ERROR to a GST_WARNING for a non-fatal situation in reading
9619         sub-indexes.
9620
9621 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
9622
9623         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
9624
9625         * sys/sunaudio/gstsunaudiomixerctrl.c:
9626         (gst_sunaudiomixer_ctrl_build_list):
9627           Move "Monitor" slider to input tab so it works more like
9628           sdtaudiocontrol, which is what people on Solaris are used
9629           to using for their mixer program (#346259).
9630
9631 2006-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9632
9633         * tests/check/elements/level.c: (GST_START_TEST):
9634           fix a leak, clean up at the end
9635
9636 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
9637
9638         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
9639         (gst_matroska_demux_send_event),
9640         (gst_matroska_demux_loop_stream_parse_id):
9641         * gst/matroska/matroska-ids.h:
9642           Send tag event after newsegment event.
9643
9644 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
9645
9646         * gst/id3demux/gstid3demux.c: (gst_id3demux_trim_buffer),
9647         (gst_id3demux_read_range):
9648           Make sure we don't return GST_FLOW_OK with a NULL buffer in
9649           certain cases where a read beyond the end of the file is
9650           requested. Fixes #345930.
9651
9652         * gst/apetag/gsttagdemux.c: (gst_tag_demux_trim_buffer),
9653         (gst_tag_demux_read_range):
9654           Fix same issue here as well.
9655
9656 2006-06-29  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9657
9658         * sys/ximage/gstximagesrc.c: (gst_ximage_src_ximage_get):
9659         
9660         Fix hypothetical crash.
9661
9662 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
9663
9664         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
9665
9666         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare):
9667           Do not modify the ports value. If the user has turned off the
9668           built-in speakers, then we should not reset it in the prepare
9669           function, since this causes the built-in speakers to turn
9670           back on anytime the user changes a track in totem, rhythmbox,
9671           etc. (#346066).
9672
9673 2006-06-23  Wim Taymans  <wim@fluendo.com>
9674
9675         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
9676         Fix double caps unref when negotiation fails.
9677
9678 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9679
9680         * ext/annodex/gstcmmldec.c:
9681         * ext/annodex/gstcmmlenc.c:
9682         * ext/annodex/gstcmmlparser.c:
9683         * ext/dv/gstdvdec.c:
9684         * ext/dv/gstdvdemux.c:
9685         * ext/gdk_pixbuf/pixbufscale.c:
9686         * ext/jpeg/gstjpegenc.c:
9687         * ext/jpeg/gstsmokedec.c:
9688         * ext/jpeg/gstsmokeenc.c:
9689         * ext/libpng/gstpngdec.c:
9690         * ext/libpng/gstpngenc.c:
9691         * ext/speex/gstspeexenc.c:
9692         * gst/alpha/gstalphacolor.c:
9693         * gst/cutter/gstcutter.c:
9694         * gst/debug/gstnavigationtest.c:
9695         * gst/icydemux/gsticydemux.c:
9696         * gst/level/gstlevel.c:
9697         * gst/multipart/multipart.c:
9698         * gst/rtp/gstrtpamrpay.c:
9699         * gst/rtp/gstrtpdepay.c:
9700         * gst/rtp/gstrtpilbcpay.c:
9701         * gst/rtp/gstrtpmp4gpay.c:
9702         * gst/rtp/gstrtpmp4vpay.c:
9703         * gst/rtsp/gstrtpdec.c:
9704         * gst/rtsp/gstrtspsrc.c:
9705         * gst/udp/gstdynudpsink.c:
9706         * gst/udp/gstmultiudpsink.c:
9707         * gst/udp/gstudpsrc.c:
9708         * gst/videobox/gstvideobox.c:
9709         * gst/videofilter/gstvideoflip.c:
9710           Use GST_DEBUG_CATEGORY_STATIC where possible (#342503)
9711           plus two minor macro fixes.
9712
9713 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9714
9715         * gst/matroska/matroska-demux.c:
9716         (gst_matroska_demux_check_subtitle_buffer),
9717         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
9718         (gst_matroska_demux_subtitle_caps):
9719         * gst/matroska/matroska-ids.c:
9720         (gst_matroska_track_init_subtitle_context):
9721         * gst/matroska/matroska-ids.h:
9722           Try to fix up broken matroska files containing subtitle
9723           streams with non-UTF8 character encodings (courtesy of
9724           mkvmerge) using either the encoding specified in the
9725           GST_SUBTITLE_ENCODING environment variable or the
9726           current locale's character set if it is non-UTF8.
9727           Fixes #337076.
9728
9729 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
9730
9731         * gst/id3demux/id3v2frames.c: (parse_picture_frame):
9732           Set image type from APIC frame as "image-type" field
9733           of GST_TAG_IMAGE buffer caps (#344605).
9734
9735 2006-06-20  Tim-Philipp Müller  <tim at centricular dot net>
9736
9737         * ext/flac/Makefile.am:
9738         * ext/flac/gstflacdec.c: (gst_flac_dec_init),
9739         (gst_flac_dec_reset_decoders),
9740         (gst_flac_dec_setup_seekable_decoder),
9741         (gst_flac_dec_setup_stream_decoder), (gst_flac_dec_finalize),
9742         (gst_flac_dec_metadata_callback),
9743         (gst_flac_dec_metadata_callback_seekable),
9744         (gst_flac_dec_metadata_callback_stream),
9745         (gst_flac_dec_error_callback),
9746         (gst_flac_dec_error_callback_seekable),
9747         (gst_flac_dec_error_callback_stream), (gst_flac_dec_read_seekable),
9748         (gst_flac_dec_read_stream), (gst_flac_dec_write),
9749         (gst_flac_dec_write_seekable), (gst_flac_dec_write_stream),
9750         (gst_flac_dec_loop), (gst_flac_dec_sink_event),
9751         (gst_flac_dec_chain), (gst_flac_dec_convert_sink),
9752         (gst_flac_dec_get_sink_query_types), (gst_flac_dec_sink_query),
9753         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
9754         (gst_flac_dec_handle_seek_event), (gst_flac_dec_sink_activate),
9755         (gst_flac_dec_sink_activate_push),
9756         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
9757         * ext/flac/gstflacdec.h:
9758           Support chain-based operation, should make flac-over-DAAP
9759           work (#340492).
9760
9761 2006-06-20  Wim Taymans  <wim@fluendo.com>
9762
9763         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9764         Doc updates, merge some unused symbols.
9765
9766 2006-06-20  Wim Taymans  <wim@fluendo.com>
9767
9768         * docs/plugins/Makefile.am:
9769         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9770         * docs/plugins/gst-plugins-good-plugins-sections.txt:
9771         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
9772         * gst/rtsp/gstrtspsrc.c:
9773         * gst/rtsp/gstrtspsrc.h:
9774         Added documentation for the rtsp plugin. Fixes #345393.
9775
9776 2006-06-20  Wim Taymans  <wim@fluendo.com>
9777
9778         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
9779         (rtsp_connection_close), (rtsp_connection_free):
9780         Use better G_OS_* macros. Fixes #345301 some more.
9781
9782 2006-06-20  Wim Taymans  <wim@fluendo.com>
9783
9784         Patch by: Brian Cameron <brian dot cameron at sun dot com>
9785
9786         * sys/sunaudio/Makefile.am:
9787         * sys/sunaudio/gstsunaudio.c: (plugin_init):
9788         * sys/sunaudio/gstsunaudiomixerctrl.c:
9789         (gst_sunaudiomixer_ctrl_build_list), (gst_sunaudiomixer_ctrl_new),
9790         (gst_sunaudiomixer_ctrl_list_tracks),
9791         (gst_sunaudiomixer_ctrl_get_volume),
9792         (gst_sunaudiomixer_ctrl_set_volume),
9793         (gst_sunaudiomixer_ctrl_set_mute),
9794         (gst_sunaudiomixer_ctrl_set_record):
9795         * sys/sunaudio/gstsunaudiomixerctrl.h:
9796         * sys/sunaudio/gstsunaudiomixertrack.c:
9797         (gst_sunaudiomixer_track_init), (gst_sunaudiomixer_track_new):
9798         * sys/sunaudio/gstsunaudiomixertrack.h:
9799         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_dispose),
9800         (gst_sunaudiosrc_base_init), (gst_sunaudiosrc_class_init),
9801         (gst_sunaudiosrc_init), (gst_sunaudiosrc_set_property),
9802         (gst_sunaudiosrc_get_property), (gst_sunaudiosrc_getcaps),
9803         (gst_sunaudiosrc_open), (gst_sunaudiosrc_close),
9804         (gst_sunaudiosrc_prepare), (gst_sunaudiosrc_unprepare),
9805         (gst_sunaudiosrc_read), (gst_sunaudiosrc_delay),
9806         (gst_sunaudiosrc_reset):
9807         * sys/sunaudio/gstsunaudiosrc.h:
9808         Add a SunAudio source plugin.
9809         Support stereo and right/left channel gain in the mixer plugin.
9810         Support the RECORD flag so that you can switch between line-input and
9811         microphone in gnome-volume-control.
9812         Code cleanups like using an enumerator for track number instead of an 
9813         integer. Fixes #344923.
9814
9815 2006-06-20  Wim Taymans  <wim@fluendo.com>
9816
9817         Patch by: Joni Valtanen <joni dot valtanen at movial dot fi>
9818
9819         * gst/rtsp/rtspconnection.c: (inet_aton), (rtsp_connection_send),
9820         (rtsp_connection_close):
9821         Make RTSP plugin compile on windows. Fixes #345301.
9822         Some changes to original patch to catch errors better.
9823         use ifdef WIN32 instead of ifndef.
9824
9825 2006-06-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9826
9827         * configure.ac:
9828         If we have libraw1394 >= 1.2.1, then we need libiec61883.
9829
9830 2006-06-18  Edward Hervey  <edward@fluendo.com>
9831
9832         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
9833         After a failed buffer alloc, we need to abort the jpeg decoding (it
9834         started when parsing headers to figure out how many bytes we need
9835         to request downstream).
9836
9837 2006-06-18  Tim-Philipp Müller  <tim at centricular dot net>
9838
9839         Patch by: Mark Nauwelaerts  <manauw at skynet be>
9840
9841         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
9842           Make sure we don't read beyond the end of the file (#345232).
9843
9844 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
9845
9846         * configure.ac:
9847           Fix --disable-external (can't set conditionals conditionally,
9848           #343602).
9849
9850 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
9851
9852         * autogen.sh:
9853         * configure.ac:
9854         * docs/Makefile.am:
9855           Use GST_PLUGIN_DOCS, --enable-plugin-docs etc.
9856
9857         * docs/plugins/Makefile.am:
9858         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
9859         * docs/plugins/inspect/plugin-taglib.xml:
9860           Add/fix apev2mux docs.
9861
9862 2006-06-14  Wim Taymans  <wim@fluendo.com>
9863
9864         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
9865         (gst_dvdec_finalize), (gst_dvdec_sink_event),
9866         (gst_dvdec_change_state):
9867         Reset segment info on flush.
9868         Alloc segment in _init, free in _finalize.
9869
9870         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_pull_seek):
9871         Don't send segments twice.
9872
9873 2006-06-14  Wim Taymans  <wim@fluendo.com>
9874
9875         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
9876         Respect segment.stop. Fixes #342592.
9877
9878 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
9879
9880         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
9881           No language specified means the implied language is English
9882           according to the matroska spec (partially fixes #344708);
9883           add some more debug output.
9884
9885 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
9886
9887         * gst/wavparse/gstwavparse.c: (gst_wavparse_peek_chunk_info),
9888         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
9889         (gst_wavparse_chain):
9890           When operating chain-based, don't make any assumptions about the
9891           chunking of the incoming data and make streaming work on days other
9892           than the second Thursday after a full moon. Also fix up debug
9893           messages here and there and make use of the most excellent new
9894           gst_pad_query_peer_duration() utility function.
9895           Skip any 'bext' chunks in front of the 'fmt ' chunk. Fixes #343837.
9896
9897         * gst/wavparse/gstwavparse.h:
9898           Remove trailing comma after last enum value, some compilers don't
9899           like that.
9900
9901 2006-06-13  Wim Taymans  <wim@fluendo.com>
9902
9903         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_data):
9904         Handle premature EOS gracefully.
9905
9906 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
9907
9908         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
9909           Prevent out of bounds array access when scrubbing towards
9910           the end of the file between the last index entry and the
9911           end. Fixes occasional 'start <= stop' newsegment event
9912           assertions when scrubbing in MJPEG files.
9913
9914 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
9915
9916         * tests/check/elements/.cvsignore:
9917           And another one.
9918
9919 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
9920
9921         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
9922         (scan_encoded_string), (parse_picture_frame):
9923           Extract images from ID3v2 tags (APIC frames). Fixes #339704.
9924
9925         * configure.ac:
9926           Require core >= 0.10.8 (for GST_TAG_IMAGE and
9927           GST_TAG_PPEVIEW_IMAGE used in the patch above).
9928
9929 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9930
9931         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node):
9932           gratuitous comment changes
9933         * tests/check/elements/level.c: (GST_START_TEST):
9934           fix level test leaks
9935
9936 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
9937
9938         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size):
9939         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size):
9940           Use gst_pad_query_peer_duration() utility function here.
9941
9942 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9943
9944         * autogen.sh:
9945           require am17
9946         * configure.ac:
9947         * ext/annodex/Makefile.am:
9948         * ext/cdio/Makefile.am:
9949         * ext/dv/Makefile.am:
9950         * ext/esd/Makefile.am:
9951         * ext/flac/Makefile.am:
9952         * ext/gdk_pixbuf/Makefile.am:
9953         * ext/ladspa/Makefile.am:
9954         * ext/libcaca/Makefile.am:
9955         * ext/speex/Makefile.am:
9956         * ext/taglib/Makefile.am:
9957         * sys/oss/Makefile.am:
9958         * sys/sunaudio/Makefile.am:
9959         * sys/ximage/Makefile.am:
9960           clean up build further
9961
9962 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
9963
9964         * gconf/Makefile.am:
9965           Honour --disable-schemas-install configure option. Fixes #344100.
9966
9967 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
9968
9969         * tests/examples/level/Makefile.am:
9970           Add -lm to LIBS for pow() function, don't assume one of our
9971           dependencies (such as libxml-2.0) drags it in automatically
9972           (#343603).
9973
9974 2006-06-09  Tim-Philipp Müller  <tim at centricular dot net>
9975
9976         Patch by: Peter Kjellerstedt  <pkj at axis dot com>
9977
9978         * configure.ac:
9979           We should use $SED and not $(SED) in configure.ac (#343678).
9980
9981 2006-06-09  Wim Taymans  <wim@fluendo.com>
9982
9983         Patch by: Brian Cameron <brian dot cameron at sun dot com>
9984
9985         * sys/sunaudio/gstsunaudiomixerctrl.c:
9986         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
9987         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_set_volume),
9988         (gst_sunaudiomixer_ctrl_set_mute):
9989         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init),
9990         (gst_sunaudiosink_init), (gst_sunaudiosink_prepare),
9991         (gst_sunaudiosink_write):
9992         Attached find a patch that fixes a number of bugs with the SunAudio
9993         mixer plugin and fixes #344101:
9994         1. The gst_sunaudiomixer_ctrl_build_list kept appending the same 3
9995            tracks onto the tracklist causing gnome-volume-control's preferences
9996            dialog to be messed up and would core dump if you checked/unchecked
9997            any item.
9998         2. We weren't previously setting the MUTE flag properly.  Fixing this
9999            makes gnome-volume-control work better.
10000         3. Now we properly define the input track to be GST_MIXER_TRACK_INPUT
10001            and the monitor to be GST_MIXER_TRACK_OUTPUT, so that makes
10002            gnome-volume-control look better.
10003         Also some minor cleanup in gstsunaudiosink.c.
10004
10005 2006-06-09  Wim Taymans  <wim@fluendo.com>
10006
10007         * ext/jpeg/gstjpegdec.c: (gst_idct_method_get_type),
10008         (gst_jpeg_dec_class_init), (gst_jpeg_dec_init),
10009         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_decode_direct),
10010         (gst_jpeg_dec_chain), (gst_jpeg_dec_sink_event),
10011         (gst_jpeg_dec_set_property), (gst_jpeg_dec_get_property):
10012         * ext/jpeg/gstjpegdec.h:
10013         API: Added IDCT method property
10014         Small cleanups.
10015         Avoid dynamic allocation of trivial fixed structure.
10016         Allocate enough space for temp 4:4:4 YUV buffers. Fixes #343661.
10017
10018 2006-06-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10019
10020         * configure.ac:
10021         We now require libraw1394 >= 1.1.0 and that version onwards all
10022         have .pc files.
10023
10024 2006-06-02  Edward Hervey  <edward@fluendo.com>
10025
10026         * gst/law/alaw-decode.c: (alawdec_getcaps): 
10027         Trying to get items from an ANY or EMPTY caps is ... stupid.
10028
10029 2006-06-02  Edward Hervey  <edward@fluendo.com>
10030
10031         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_event),
10032         (gst_dvdec_chain), (gst_dvdec_change_state):
10033         * ext/dv/gstdvdec.h:
10034         Added GstSegment handling, now implements dropping/clipping.
10035
10036 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
10037
10038         * ext/aalib/gstaasink.h:
10039         * ext/annodex/gstcmmldec.h:
10040         * ext/cairo/gsttimeoverlay.h:
10041         * ext/dv/gstdvdec.h:
10042         * ext/dv/gstdvdemux.h:
10043         * ext/esd/esdmon.h:
10044         * ext/esd/esdsink.h:
10045         * ext/flac/gstflacenc.h:
10046         * ext/gconf/gstgconfaudiosink.h:
10047         * ext/gconf/gstgconfaudiosrc.h:
10048         * ext/gconf/gstgconfvideosink.h:
10049         * ext/gconf/gstgconfvideosrc.h:
10050         * ext/gdk_pixbuf/gstgdkanimation.h:
10051         * ext/gdk_pixbuf/pixbufscale.h:
10052         * ext/hal/gsthalaudiosink.h:
10053         * ext/hal/gsthalaudiosrc.h:
10054         * ext/jpeg/gstjpegenc.h:
10055         * ext/jpeg/gstsmokedec.h:
10056         * ext/jpeg/gstsmokeenc.h:
10057         * ext/libcaca/gstcacasink.h:
10058         * ext/libmng/gstmngdec.h:
10059         * ext/libmng/gstmngenc.h:
10060         * ext/libpng/gstpngdec.h:
10061         * ext/libpng/gstpngenc.h:
10062         * ext/raw1394/gstdv1394src.h:
10063         * ext/speex/gstspeexenc.h:
10064         * gst/autodetect/gstautoaudiosink.h:
10065         * gst/autodetect/gstautovideosink.h:
10066         * gst/avi/gstavidemux.h:
10067         * gst/cutter/gstcutter.h:
10068         * gst/debug/efence.h:
10069         * gst/debug/gstnavigationtest.h:
10070         * gst/debug/gstnavseek.h:
10071         * gst/flx/gstflxdec.h:
10072         * gst/goom/gstgoom.h:
10073         * gst/icydemux/gsticydemux.h:
10074         * gst/id3demux/gstid3demux.h:
10075         * gst/law/alaw-decode.h:
10076         * gst/law/alaw-encode.h:
10077         * gst/law/mulaw-decode.h:
10078         * gst/law/mulaw-encode.h:
10079         * gst/matroska/matroska-mux.h:
10080         * gst/median/gstmedian.h:
10081         * gst/oldcore/gstaggregator.h:
10082         * gst/oldcore/gstfdsink.h:
10083         * gst/oldcore/gstmd5sink.h:
10084         * gst/oldcore/gstmultifilesrc.h:
10085         * gst/oldcore/gstpipefilter.h:
10086         * gst/oldcore/gstshaper.h:
10087         * gst/oldcore/gststatistics.h:
10088         * gst/rtp/gstasteriskh263.h:
10089         * gst/rtp/gstrtpL16depay.h:
10090         * gst/rtp/gstrtpL16pay.h:
10091         * gst/rtp/gstrtpamrdepay.h:
10092         * gst/rtp/gstrtpamrpay.h:
10093         * gst/rtp/gstrtpdepay.h:
10094         * gst/rtp/gstrtpgsmdepay.h:
10095         * gst/rtp/gstrtpgsmpay.h:
10096         * gst/rtp/gstrtph263pay.h:
10097         * gst/rtp/gstrtph263pdepay.h:
10098         * gst/rtp/gstrtph263ppay.h:
10099         * gst/rtp/gstrtpmp4gpay.h:
10100         * gst/rtp/gstrtpmp4vdepay.h:
10101         * gst/rtp/gstrtpmp4vpay.h:
10102         * gst/rtp/gstrtpmpadepay.h:
10103         * gst/rtp/gstrtpmpapay.h:
10104         * gst/rtp/gstrtppcmadepay.h:
10105         * gst/rtp/gstrtppcmapay.h:
10106         * gst/rtp/gstrtppcmudepay.h:
10107         * gst/rtp/gstrtppcmupay.h:
10108         * gst/rtp/gstrtpspeexdepay.h:
10109         * gst/rtp/gstrtpspeexpay.h:
10110         * gst/rtsp/gstrtpdec.h:
10111         * gst/rtsp/gstrtspsrc.h:
10112         * gst/smpte/gstsmpte.h:
10113         * gst/udp/gstdynudpsink.h:
10114         * gst/udp/gstmultiudpsink.h:
10115         * gst/udp/gstudpsink.h:
10116         * gst/udp/gstudpsrc.h:
10117         * gst/videofilter/gstvideobalance.h:
10118         * gst/videofilter/gstvideoflip.h:
10119         * sys/oss/gstossdmabuffer.h:
10120         * sys/oss/gstossmixerelement.h:
10121         * sys/oss/gstosssink.h:
10122         * sys/oss/gstosssrc.h:
10123         * sys/osxvideo/osxvideosink.h:
10124         * sys/sunaudio/gstsunaudiomixer.h:
10125         * sys/sunaudio/gstsunaudiosink.h:
10126         * sys/ximage/gstximagesrc.h:
10127         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
10128
10129 2006-05-31  Wim Taymans  <wim@fluendo.com>
10130
10131         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
10132         (gst_goom_finalize), (gst_goom_reset), (gst_goom_sink_setcaps),
10133         (gst_goom_src_setcaps), (gst_goom_src_event),
10134         (gst_goom_sink_event), (get_buffer), (gst_goom_chain),
10135         (gst_goom_change_state):
10136         * gst/goom/gstgoom.h:
10137         Handle QoS.
10138         Handle flushing, discont and events.
10139         Fix timestamps and various other cleanups.
10140
10141 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10142
10143         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset):
10144         Fix bus reset when using libiec61883
10145
10146 2006-05-31  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10147
10148         * configure.ac:
10149         Detect libiec61883 and set necessary CFLAGS and LIBS for dv1394.
10150         * ext/raw1394/Makefile.am:
10151         Add CFLAGS.
10152         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iec61883_receive),
10153         New method, to receive using libiec61883.
10154         (gst_dv1394src_iso_receive),
10155         #ifdef'd out if libiec61883 is present.
10156         (gst_dv1394src_bus_reset),
10157         Get userdata correctly if using libiec61883. 
10158         (gst_dv1394src_create),
10159         When using libiec61883, only poll one fd and no need to read.
10160         (gst_dv1394src_discover_avc_node),
10161         Replace g_warnings.
10162         (gst_dv1394src_start),
10163         Create new handle when we know which dv port.  More reliable
10164         than setting port on an existing handle.  Initialise libiec61883.
10165         (gst_dv1394src_stop):
10166         If using libiec61883, then cleanup its handle properly.
10167         * ext/raw1394/gstdv1394src.h:
10168         Add libiec61883 handle.
10169
10170 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
10171
10172         * gst/avi/gstavidemux.c:
10173           add an explicit dll imported declaration for GST_CAT_EVENT+WIN32
10174         * win32/MANIFEST:
10175           sort file listing
10176         * win32/vs6/libgstavi.dsp:
10177           add gstavimux.c to the project
10178         * win32/vs6/libgstid3demux.dsp:
10179           add link to zlib library
10180         * win32/vs6/libgstmatroska.dsp:
10181           add matroska-ids.c to the project
10182
10183 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
10184
10185         Patch by: Sebastian Dröge  <mail at slomosnail de >
10186
10187         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10188         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10189         * ext/taglib/Makefile.am:
10190         * ext/taglib/gstapev2mux.cc:
10191         * ext/taglib/gstapev2mux.h:
10192         * ext/taglib/gstid3v2mux.cc:
10193         * ext/taglib/gsttaglibmux.c: (plugin_init):
10194         * ext/taglib/gsttaglibmux.h:
10195           Add apev2mux element (#343122).
10196         
10197         * tests/check/Makefile.am:
10198         * tests/check/elements/apev2mux.c:
10199         (test_taglib_apev2mux_create_tags),
10200         (test_taglib_apev2mux_check_tags), (fill_mp3_buffer), (got_buffer),
10201         (demux_pad_added), (test_taglib_apev2mux_check_output_buffer),
10202         (test_taglib_apev2mux_with_tags), (GST_START_TEST),
10203         (apev2mux_suite), (main):
10204           Add unit test for apev2mux element.
10205
10206 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
10207
10208         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
10209         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
10210         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
10211           GST_PTR_FORMAT should be used to print caps in debug statements.
10212
10213 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
10214
10215         Patch by: Sebastian Dröge  <slomo at ubuntu dot com>
10216
10217         * gst/apetag/gstapedemux.c: (ape_demux_get_gst_tag_from_tag),
10218         (ape_demux_parse_tags):
10219           Some clean-ups and additions: map APE 'file' tag to
10220           GST_TAG_LOCATION (#343123); add support for extracting
10221           the track count and clean up parsing a bit (#343127).
10222
10223 2006-05-28  Edward Hervey  <edward@fluendo.com>
10224
10225         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_change_state):
10226         Initialize segment to GST_FORMAT_UNDEFINED in READY->PAUSED.
10227
10228 2006-05-28  Edward Hervey  <edward@fluendo.com>
10229
10230         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_finalize),
10231         (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
10232         (gst_jpeg_dec_sink_event), (gst_jpeg_dec_change_state):
10233         * ext/jpeg/gstjpegdec.h:
10234         Clip outgoing buffers according to currently configured segment.
10235
10236 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
10237
10238         * ext/taglib/gstid3v2mux.cc:
10239           Handle  writing of track-count or album-volume-count without
10240           track-number or albume-volume-number (in this case the number
10241           will just be set to 0).
10242
10243         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_check_tags):
10244           It would be nice if we actually checked the values received for
10245           track/album-volume number/count in  _check_tags(), rather than
10246           setting them again ...
10247
10248 2006-05-28  Tim-Philipp Müller  <tim at centricular dot net>
10249
10250         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
10251           A track/volume number or count of 0 does not make sense,
10252           just ignore it along with negative numbers (a tag might
10253           only contain a track count without a track number).
10254
10255 2006-05-27  Edward Hervey  <edward@fluendo.com>
10256
10257         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
10258         (gst_jpeg_dec_sink_event):
10259         Abort decompression when receiving FLUSH_STOP. This should avoid
10260         issues when interrupting decoding with flushes.
10261
10262 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
10263
10264         * ext/flac/gstflac.c:
10265           Don't #include file we don't dist any longer.
10266
10267 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
10268
10269         * README:
10270           Replace current README (containing the release notes from
10271           some 0.9.x version) with a proper README taken from the core.
10272
10273 2006-05-24  Wim Taymans  <wim@fluendo.com>
10274
10275         * ext/dv/gstdvdemux.c: (gst_dvdemux_loop):
10276         Implement EOS correctly by either posting
10277         SEGMENT_DONE or pushing an EOS message depending
10278         on the seek type. Fixes #342592
10279
10280 2006-05-24  Wim Taymans  <wim@fluendo.com>
10281
10282         * gst/law/alaw-decode.c: (gst_alawdec_chain):
10283         * gst/law/alaw-decode.h:
10284         * gst/law/alaw-encode.c: (gst_alawenc_chain):
10285         * gst/law/alaw-encode.h:
10286         * gst/law/mulaw-decode.c: (gst_mulawdec_chain):
10287         * gst/law/mulaw-decode.h:
10288         * gst/law/mulaw-encode.c: (gst_mulawenc_chain):
10289         * gst/law/mulaw-encode.h:
10290         Some cleanups in the chain functions.
10291         Remove some GStreamer 0.0.2 bits.
10292
10293 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
10294
10295         Patch by: Mark Nauwelaerts  <manauw at skynet be>
10296
10297         * gst/matroska/matroska-mux.c: (gst_matroska_mux_change_state):
10298           gst_collect_pads_stop() needs to be called before chaining up
10299           to the parent class (#342734).
10300
10301 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
10302
10303         * ext/flac/Makefile.am:
10304         * ext/flac/flac_compat.h:
10305         * ext/flac/gstflac.c:
10306         * ext/flac/gstflacdec.c: (gst_flac_dec_init):
10307         * ext/flac/gstflacenc.c:
10308           Remove backwards compatibility cruft for dealing with FLAC API
10309           changes in the 1.0.x series - we require 1.1.1 or newer these days.
10310
10311 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
10312
10313         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
10314         (gst_matroska_demux_push_xiph_codec_priv_data),
10315         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
10316         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
10317         * gst/matroska/matroska-ids.h:
10318         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init),
10319         (gst_matroska_mux_video_pad_setcaps),
10320         (xiph3_streamheader_to_codecdata),
10321         (vorbis_streamheader_to_codecdata),
10322         (theora_streamheader_to_codecdata),
10323         (gst_matroska_mux_audio_pad_setcaps),
10324         (gst_matroska_mux_write_data):
10325           Add support for muxing/demuxing theora video (#342448; too bad
10326           none of the usual linux players can actually play this). Playback
10327           in GStreamer will require additional changes to theoradec in -base.
10328           Refactor streamheaders <=> CodecPrivateData code a bit; some small
10329           cleanups.
10330
10331 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
10332
10333         * ext/jpeg/gstjpegdec.c: (hresamplecpy1),
10334         (gst_jpeg_dec_decode_indirect), (gst_jpeg_dec_chain):
10335           Fix crashes when the horizontal subsampling is 1.
10336           Fixes #342097.
10337
10338 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
10339
10340         Patch by: Mark Nauwelaerts  <manauw at skynet be>
10341
10342         * gst/avi/gstavimux.c: (gst_avi_mux_finalize), (gst_avi_mux_init),
10343         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
10344         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
10345         (gst_avi_mux_riff_get_avix_header), (gst_avi_mux_write_avix_index),
10346         (gst_avi_mux_add_index), (gst_avi_mux_bigfile),
10347         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
10348         (gst_avi_mux_handle_event), (gst_avi_mux_do_audio_buffer),
10349         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
10350         (gst_avi_mux_change_state):
10351         * gst/avi/gstavimux.h:
10352           Some enhancements for avimux (#342526):
10353            - add odml (large file) index support
10354            - store codec init data (e.g. huffyuv)
10355            - miscellaneous other fixes/cleanups
10356
10357 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
10358
10359         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
10360         Don't output any tag when we encounter a negative track number - the
10361         tag type is uint, so we end up outputting huge positive numbers
10362         instead. (Fixes: #342029)
10363
10364 2006-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10365
10366         * configure.ac:
10367           update for new GSTPB_PLUGINS_DIR
10368
10369 2006-05-18  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
10370
10371         * rtp/gst/gstrtph263pay.c:
10372         Properly set static caps for H263 at 34.
10373
10374 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
10375
10376         Patch by: James "Doc" Livingston  <doclivingston gmail com>
10377
10378         * ext/taglib/gsttaglibmux.c: (gst_tag_lib_mux_render_tag):
10379           Merge event tags and tag setter tags correctly (#339918). Also,
10380           don't leak taglist in case of an error.
10381           
10382 2006-05-17  Edward Hervey  <edward@fluendo.com>
10383
10384         * gst/law/mulaw-decode.c: (mulawdec_getcaps): 
10385         We can only do caps intersection if the othercaps are non-empty and not
10386         ANY. Else we return the pad template (base_caps).
10387
10388 2006-05-17  Tim-Philipp Müller  <tim at centricular dot net>
10389
10390         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
10391           Fix crash when outputting debugging information for certain
10392           pictures (always good to use the right struct member for
10393           the number of records in an array).
10394
10395 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
10396
10397         Patch by: Jindrich Makovicka  <jindrich.makivicka at itonis tv>
10398
10399         * gst/matroska/ebml-read.c: (gst_ebml_read_peek_bytes),
10400         (gst_ebml_read_pull_bytes), (gst_ebml_read_element_id),
10401         (gst_ebml_read_element_length), (gst_ebml_read_buffer),
10402         (gst_ebml_read_bytes), (gst_ebml_read_uint), (gst_ebml_read_sint),
10403         (gst_ebml_read_float), (gst_ebml_read_ascii),
10404         (gst_ebml_read_binary):
10405           Don't create unnecessary sub-buffers all the time. Dramatically
10406           improves performance with multiple concurrently running
10407           matroskademux instances (#341818) (and avoids doing
10408           unnecessarily inefficient things in the general case).
10409
10410 2006-05-16  Edward Hervey  <edward@fluendo.com>
10411
10412         * ext/libpng/gstpngenc.c: (gst_pngenc_chain): 
10413         In snapshot mode, we always return GST_FLOW_UNEXPECTED whatever the
10414         return value of gst_pad_push_event().
10415
10416 2006-05-16  Jan Schmidt  <thaytan@mad.scientist.com>
10417
10418         * gst/autodetect/gstautoaudiosink.c:
10419         (gst_auto_audio_sink_find_best):
10420         * gst/autodetect/gstautovideosink.c:
10421         (gst_auto_video_sink_find_best):
10422         Make the name of the child element be based on the name of the
10423         parent, so that debug output is more useful.
10424         
10425         * gst/id3demux/id3v2frames.c: (find_utf16_bom),
10426         (parse_insert_string_field), (parse_split_strings):
10427         Rework string parsing to always walk over BOM markers in UTF16
10428         strings, using the endianness indicated by the innermost one,
10429         then trying the opposite endianness if that fails to convert
10430         to valid UTF-8. Fixes #341774
10431
10432 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10433
10434         Patch from: Matthieu <matthieu at fluendo dot com>
10435
10436         * ext/libpng/Makefile.am:
10437         Add LIBPNG_CFLAGS.
10438
10439 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
10440
10441         * ext/taglib/gstid3v2mux.cc:
10442           Add support for writing images (APIC frames) into ID3v2
10443           tags (picture type always set to 'other' for now though).
10444
10445 2006-05-14  Michael Smith  <msmith@fluendo.com>
10446
10447         * gst/wavparse/gstwavparse.c:
10448           Update docs; wavparse implements push and pull modes.
10449
10450 2006-05-12  Wim Taymans  <wim@fluendo.com>
10451
10452         * gst/avi/gstavidemux.c: (gst_avi_demux_index_next),
10453         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index),
10454         (gst_avi_demux_handle_seek), (gst_avi_demux_loop):
10455         Ooops, bitten by the copy-and-paste design paradigm, fixes
10456         seek again.
10457
10458 2006-05-12  Wim Taymans  <wim@fluendo.com>
10459
10460         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
10461         (gst_avi_demux_index_next), (gst_avi_demux_handle_src_query),
10462         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_subindex),
10463         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
10464         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
10465         (gst_avi_demux_massage_index),
10466         (gst_avi_demux_calculate_durations_from_index),
10467         (gst_avi_demux_push_event), (gst_avi_demux_stream_header),
10468         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
10469         (gst_avi_demux_loop):
10470         * gst/avi/gstavidemux.h:
10471         Some cleanups, prepare to use GstSegment.
10472         Fix error in entry walking code.
10473         Fix VBR detection.
10474         Smarter timestamp calculation code.
10475         Uniform error/eos handling.
10476
10477 2006-05-12  Michael Smith  <msmith@fluendo.com>
10478
10479         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
10480         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers):
10481           Fix use of uninitialised values if we're NOT seeking in ready.
10482           Fix typos.
10483
10484 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
10485
10486         * gst/wavparse/Makefile.am:
10487           Add CFLAGS and LIBS for libgstbase, fixes build on
10488           Cygwin (#341489).
10489
10490 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
10491
10492         * gst/id3demux/id3v2frames.c: (parse_insert_string_field):
10493           Some more debug info. No need to check whether the string
10494           returned by g_convert() is really UTF-8 - either it is or
10495           we get NULL returned.
10496
10497 2006-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
10498
10499         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
10500           Fix parsing of numeric genre strings some more, by ensuring that
10501           we only try and parse strings that a) Start with '(' and b) Consist
10502           only of digits.
10503           Also, when finding an escaping '((' sequence, bust it back to '(' by
10504           swallowing the first parenthesis
10505
10506 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
10507
10508         * ext/esd/esdsink.c: (gst_esdsink_finalize), (gst_esdsink_getcaps),
10509         (gst_esdsink_open), (gst_esdsink_close):
10510         * ext/esd/esdsink.h:
10511           Move the esd_get_server_info() into gst_esdsink_open() and fail
10512           with a decent error message on errors.
10513
10514 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
10515
10516         * ext/esd/esdmon.c: (gst_esdmon_depths_get_type),
10517         (gst_esdmon_channels_get_type):
10518         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_profile_get_type):
10519         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type):
10520         * ext/libcaca/gstcacasink.c: (gst_cacasink_dither_get_type):
10521         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type):
10522         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type):
10523         * gst/rtp/gstrtpilbcdepay.c: (gst_ilbc_mode_get_type):
10524         * gst/rtsp/gstrtspsrc.c: (gst_rtsp_proto_get_type):
10525         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type):
10526         * gst/videofilter/gstvideoflip.c: (gst_video_flip_method_get_type):
10527         * gst/videomixer/videomixer.c:
10528         (gst_video_mixer_background_get_type):
10529           Const-ify GEnumValue arrays.
10530
10531 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
10532
10533         Patch by: Mark Nauwelaerts  <manauw at skynet bet>
10534
10535         * gst/avi/gstavimux.c: (gst_avi_mux_do_audio_buffer),
10536         (gst_avi_mux_do_video_buffer):
10537           Work around gst_buffer_make_metadata_writable() bug that
10538           results in avimux marking all frames in the index as
10539           keyframes (#340859).
10540           
10541 2006-05-08  Wim Taymans  <wim@fluendo.com>
10542
10543         * gst/rtsp/rtspurl.c: (rtsp_url_parse):
10544         Make parsing of urls suck slightly less.
10545
10546 2006-05-08  Edward Hervey  <edward@fluendo.com>
10547
10548         * autogen.sh: (CONFIGURE_DEF_OPT): 
10549         libtoolize on Darwin/MacOSX is called glibtoolize.
10550
10551 2006-05-08  Wim Taymans  <wim@fluendo.com>
10552
10553         Patch by: Jens Granseuer <jensgr at gmx dot net>
10554
10555         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init):
10556         * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose):
10557         C89 compliance fixes. Fixes #340980
10558
10559 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
10560
10561         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
10562         * ext/flac/gstflacdec.h:
10563           Handle segment seeks that include the end of the file as stop point
10564           properly: when the decoder hits EOS we want to send a SEGMENT_DONE
10565           message instead of an EOS event in case we're in segment seek
10566           mode (fixes #340699).
10567           
10568 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
10569
10570         * ext/cairo/gsttextoverlay.c:
10571         * ext/flac/gstflacdec.c:
10572         * ext/gdk_pixbuf/pixbufscale.c:
10573         * gst/apetag/gstapedemux.c:
10574         * gst/debug/breakmydata.c:
10575         * gst/debug/testplugin.c:
10576         * gst/matroska/ebml-write.c:
10577         * gst/multipart/multipartdemux.c:
10578         * sys/osxaudio/gstosxaudiosink.c:
10579         * sys/osxaudio/gstosxaudiosrc.c:
10580         Add semicolons after GST_BOILERPLATE[_FULL] so that
10581         indent doesn't mess up following lines.
10582
10583 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
10584
10585         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
10586
10587         * gst/matroska/matroska-demux.c: (gst_matroska_demux_reset):
10588           Don't leak caps when freeing the stream context (#340623).
10589
10590 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
10591
10592         * configure.ac:
10593           Back to CVS
10594
10595 === release 0.10.3 ===
10596
10597 2006-05-04  Jan Schmidt <thaytan@mad.scientist.com>
10598
10599         * configure.ac:
10600           releasing 0.10.3, "Desplazado"
10601
10602 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
10603
10604         * gst/matroska/matroska-mux.c:
10605         (gst_matroska_mux_stream_is_vorbis_header),
10606         (gst_matroska_mux_write_data):
10607           Don't strcmp() NULL strings.
10608           Only start new clusters on video keyframes, not on any
10609           random audio buffer that doesn't have the DELTA_UNIT
10610           flag set (fixes 'make check' again).
10611
10612 2006-05-03  Tim-Philipp Müller  <tim at centricular dot net>
10613
10614         Patch by: Mark Nauwelaerts  <manauw at skynet be>
10615
10616         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
10617         (gst_matroska_mux_stream_is_vorbis_header),
10618         (gst_matroska_mux_write_data):
10619           Don't misinterpret GST_CLOCK_TIME_NONE as very high timestamp
10620           value and then dead-lock when muxing vorbis audio streams
10621           (the three vorbis header buffers carry no timestamp, and it
10622           would try to mux these after all video buffers). Fixes #340346.
10623
10624           Improve clustering: start a new cluster also whenever we get
10625           a keyframe.     
10626
10627 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
10628
10629         * win32/common/config.h:
10630         * win32/MANIFEST
10631           add the generated file as well
10632
10633 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
10634
10635         * Makefile.am:
10636         * configure.ac:
10637         * win32/common/config.h.in:
10638           add win32 stuff
10639
10640 2006-05-03  Michael Smith  <msmith@fluendo.com>
10641
10642         * ext/cairo/gsttimeoverlay.c: (gst_cairo_time_overlay_transform):
10643           Fix timeoverlay for non-multiple-of-4 widths. This fourcc crap
10644           SUCKS.
10645
10646 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
10647
10648         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps):
10649         * gst/debug/negotiation.c: (gst_negotiation_update_caps):
10650         * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_setcaps):
10651           don't leak caps-string
10652
10653 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
10654
10655         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
10656         (gst_id3demux_sink_activate):
10657           Let core insert default error message for TYPE_NOT_FOUND
10658           errors, it's just as good as our own and has the added
10659           bonus of being translated.
10660
10661 2006-05-02  Tim-Philipp Müller  <tim at centricular dot net>
10662
10663         * gst/apetag/gsttagdemux.c: (gst_tag_demux_init),
10664         (gst_tag_demux_sink_event):
10665         * gst/id3demux/gstid3demux.c: (gst_id3demux_init),
10666         (gst_id3demux_sink_event):
10667           Post an error message when we get an EOS event and were not
10668           able to find out the type of stream.
10669
10670         * tests/check/elements/id3v2mux.c: (fill_mp3_buffer), (got_buffer),
10671         (test_taglib_id3mux_with_tags):
10672           Decrease num-buffers to 16 per iteration again, otherwise the
10673           many memcpy()s and reallocations in the test will hammer slow
10674           CPUs completely and make the test timeout.
10675
10676 2006-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
10677
10678         * configure.ac:
10679           figure out where plugins-base plugins are
10680         * tests/check/Makefile.am:
10681           use plugins-base plugins, so we have typefind functions
10682         * tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
10683           increase num-buffers, this makes sure the test errors out instead
10684           of timing out when no typefind functions are present
10685
10686 2006-05-01  Thomas Vander Stichele  <thomas at apestaart dot org>
10687
10688         * docs/plugins/Makefile.am:
10689           also check .cc files for gtk-doc markup
10690         * configure.ac:
10691         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10692         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10693         * tests/check/Makefile.am:
10694         * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main):
10695         * ext/Makefile.am:
10696         * ext/taglib/Makefile.am:
10697         * ext/taglib/gstid3v2mux.h:
10698         * ext/taglib/gsttaglibmux.c:
10699         * ext/taglib/gsttaglibmux.h:
10700           move taglib-based id3v2muxer to -good.  Fixes #336110.
10701
10702 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
10703
10704         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
10705           ... and fix multichannel/WAVFORMATEX support again.
10706
10707 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
10708
10709         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10710         (gst_wavparse_class_init), (gst_wavparse_dispose),
10711         (gst_wavparse_reset), (gst_wavparse_init),
10712         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_adtl),
10713         (gst_wavparse_parse_cues), (gst_wavparse_parse_file_header),
10714         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
10715         (gst_wavparse_peek_chunk_info), (gst_wavparse_peek_chunk),
10716         (gst_wavparse_stream_headers), (gst_wavparse_parse_stream_init),
10717         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
10718         (gst_wavparse_stream_data), (gst_wavparse_loop),
10719         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
10720         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
10721         (gst_wavparse_change_state), (plugin_init):
10722         * gst/wavparse/gstwavparse.h:
10723           Add push (streaming) mode to wavparse (fixes #337625)
10724
10725 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10726
10727         * configure.ac:
10728         * tests/Makefile.am:
10729           add ximagesrc icles test
10730
10731 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10732
10733         * configure.ac:
10734         * docs/plugins/Makefile.am:
10735         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10736         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10737         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
10738         (gst_cmml_enc_push_clip):
10739         * sys/Makefile.am:
10740         * sys/ximage/Makefile.am:
10741         * sys/ximage/gstximagesrc.c:
10742           Move ximagesrc plug-in to good after review.  Fixes #336756.
10743
10744 2006-04-28  Michael Smith  <msmith@fluendo.com>
10745
10746         * gst/icydemux/gsticydemux.c: (gst_icydemux_reset),
10747         (gst_icydemux_init), (gst_icydemux_sink_setcaps),
10748         (gst_icydemux_add_srcpad), (gst_icydemux_parse_and_send_tags),
10749         (gst_icydemux_handle_event), (gst_icydemux_send_cached_events),
10750         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
10751         (gst_icydemux_chain), (gst_icydemux_send_tag_event):
10752         * gst/icydemux/gsticydemux.h:
10753           Fix event handling: cache events when typefinding and forward later.
10754
10755 2006-04-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10756
10757         * sys/osxaudio/gstosxaudiosink.c:
10758         (plugin_init):
10759          Register osxaudiosrc to the plugin.
10760         * sys/osxaudio/gstosxaudiosrc.c:
10761         (gst_osx_audio_src_osxelement_do_init),
10762         (gst_osx_audio_src_base_init), (gst_osx_audio_src_class_init),
10763         (gst_osx_audio_src_init), (gst_osx_audio_src_set_property),
10764         (gst_osx_audio_src_get_property),
10765         (gst_osx_audio_src_create_ringbuffer), (gst_osx_audio_src_io_proc),
10766         (gst_osx_audio_src_osxelement_init):
10767         * sys/osxaudio/gstosxaudiosrc.h:
10768           Port of osxaudiosrc to 0.10.
10769         * sys/osxaudio/Makefile.am:
10770           Add osxaudiosrc
10771
10772 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10773
10774         * sys/osxaudio/gstosxringbuffer.c:
10775         * sys/osxaudio/gstosxringbuffer.h:
10776           Forgot to commit earlier, part of the OSX audio plugin port
10777
10778 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
10779
10780         * gst/id3demux/id3v2frames.c: (has_utf16_bom),
10781         (parse_split_strings):
10782           Recognise and skip any byte order marker (BOM) in
10783           UTF-16 strings.
10784
10785 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
10786
10787         * docs/plugins/Makefile.am:
10788         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
10789         * docs/plugins/gst-plugins-good-plugins-sections.txt:
10790         * docs/plugins/gst-plugins-good-plugins.hierarchy:
10791         * docs/plugins/inspect/plugin-avi.xml:
10792         * gst/avi/gstavidemux.c:
10793         * gst/avi/gstavimux.c:
10794           Add docs for both avidemux and avimux.
10795
10796 2006-04-27  Tim-Philipp Müller  <tim at centricular dot net>
10797
10798         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
10799
10800         * gst/avi/Makefile.am:
10801         * gst/avi/gstavi.c: (plugin_init):
10802         * gst/avi/gstavimux.c: (gst_avi_mux_get_type),
10803         (gst_avi_mux_base_init), (gst_avi_mux_finalize),
10804         (gst_avi_mux_class_init), (gst_avi_mux_init),
10805         (gst_avi_mux_vidsink_set_caps), (gst_avi_mux_audsink_set_caps),
10806         (gst_avi_mux_pad_link), (gst_avi_mux_pad_unlink),
10807         (gst_avi_mux_request_new_pad), (gst_avi_mux_release_pad),
10808         (gst_avi_mux_write_tag), (gst_avi_mux_riff_get_avi_header),
10809         (gst_avi_mux_riff_get_avix_header),
10810         (gst_avi_mux_riff_get_video_header),
10811         (gst_avi_mux_riff_get_audio_header), (gst_avi_mux_add_index),
10812         (gst_avi_mux_write_index), (gst_avi_mux_bigfile),
10813         (gst_avi_mux_start_file), (gst_avi_mux_stop_file),
10814         (gst_avi_mux_restart_file), (gst_avi_mux_handle_event),
10815         (gst_avi_mux_fill_queue), (gst_avi_mux_send_pad_data),
10816         (gst_avi_mux_strip_buffer), (gst_avi_mux_do_audio_buffer),
10817         (gst_avi_mux_do_video_buffer), (gst_avi_mux_do_one_buffer),
10818         (gst_avi_mux_loop), (gst_avi_mux_collect_pads),
10819         (gst_avi_mux_get_property), (gst_avi_mux_set_property),
10820         (gst_avi_mux_change_state):
10821         * gst/avi/gstavimux.h:
10822           Port AVI muxer to GStreamer-0.10 (#332031).
10823
10824         * tests/check/Makefile.am:
10825         * tests/check/elements/avimux.c:
10826         * tests/check/elements/.cvsignore:
10827           Add unit test for AVI muxer.
10828
10829 2006-04-27  Stefan Kost  <ensonic@users.sf.net>
10830
10831         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10832         (gst_wavparse_class_init), (gst_wavparse_reset),
10833         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
10834         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
10835         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10836         (gst_wavparse_send_event), (gst_wavparse_add_src_pad),
10837         (gst_wavparse_stream_data), (gst_wavparse_loop),
10838         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate),
10839         (gst_wavparse_sink_activate_pull), (gst_wavparse_change_state),
10840         (plugin_init):
10841         * gst/wavparse/gstwavparse.h:
10842           reverted patch #337625 for the price of 1 hour sleep
10843
10844 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
10845
10846         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
10847         (gst_wavparse_class_init), (gst_wavparse_reset),
10848         (gst_wavparse_init), (gst_wavparse_create_sourcepad),
10849         (gst_wavparse_parse_adtl), (gst_wavparse_parse_cues),
10850         (gst_wavparse_parse_file_header), (gst_wavparse_stream_init),
10851         (gst_wavparse_perform_seek), (gst_wavparse_stream_headers),
10852         (gst_wavparse_stream_data), (gst_wavparse_loop),
10853         (gst_wavparse_chain), (plugin_init):
10854         * gst/wavparse/gstwavparse.h:
10855           correct partial implementation of push mode
10856           (from my last commit)
10857
10858 2006-04-26  Wim Taymans  <wim@fluendo.com>
10859
10860         * ext/esd/esdsink.c:
10861         Fix compile problem by defining ESD_MAX_WRITE_SIZE if
10862         it is not in esd.h
10863
10864 2006-04-26  Tim-Philipp Müller  <tim at centricular dot net>
10865
10866         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
10867         (gst_au_parse_class_init), (gst_au_parse_init),
10868         (gst_au_parse_reset), (gst_au_parse_add_srcpad),
10869         (gst_au_parse_remove_srcpad), (gst_au_parse_parse_header),
10870         (gst_au_parse_chain), (gst_au_parse_src_convert),
10871         (gst_au_parse_src_query), (gst_au_parse_handle_seek),
10872         (gst_au_parse_sink_event), (gst_au_parse_src_event),
10873         (gst_au_parse_change_state):
10874         * gst/auparse/gstauparse.h:
10875           Rewrite auparse to suck a little bit less: make source pad
10876           dynamic, so decodebin/playbin work with non-raw formats
10877           like alaw/mulaw; add query function for duration/position
10878           queries; check whether we have enough data before attempting
10879           to parse the header (instead of crashing when that is not the
10880           case); work around audioconvert sucking by swapping endianness
10881           to the native endianness ourselves for float formats; send
10882           initial newsegment event. Fixes #161712.
10883
10884 2006-04-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10885
10886         * sys/osxaudio/Makefile.am:
10887         * sys/osxaudio/gstosxaudioelement.c:
10888         (gst_osx_audio_element_get_type),
10889         (gst_osx_audio_element_class_init):
10890         * sys/osxaudio/gstosxaudioelement.h:
10891         * sys/osxaudio/gstosxaudiosink.c:
10892         (gst_osx_audio_sink_osxelement_do_init),
10893         (gst_osx_audio_sink_base_init), (gst_osx_audio_sink_class_init),
10894         (gst_osx_audio_sink_init), (gst_osx_audio_sink_set_property),
10895         (gst_osx_audio_sink_get_property), (gst_osx_audio_sink_getcaps),
10896         (gst_osx_audio_sink_create_ringbuffer),
10897         (gst_osx_audio_sink_io_proc), (gst_osx_audio_sink_osxelement_init),
10898         (plugin_init):
10899         * sys/osxaudio/gstosxaudiosink.h:
10900         Port of osxaudiosink to 0.10
10901
10902 2006-04-26  Wim Taymans  <wim@fluendo.com>
10903
10904         * ext/esd/esdsink.c: (gst_esdsink_prepare), (gst_esdsink_delay):
10905         Always write ESD_BUF_SIZE bytes and use ESD_MAX_WRITE_SIZE as
10906         the size of the ringbuffer. This should fix hangs with older 
10907         esd sound servers.
10908
10909 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
10910
10911         * ext/aalib/gstaasink.c:
10912         * ext/annodex/gstcmmldec.c:
10913         * ext/annodex/gstcmmlenc.c:
10914         * ext/cairo/gsttextoverlay.c:
10915         * ext/cairo/gsttimeoverlay.c:
10916         * ext/cdio/gstcdiocddasrc.c:
10917         * ext/dv/gstdvdec.c:
10918         * ext/dv/gstdvdemux.c:
10919         * ext/esd/esdmon.c:
10920         * ext/esd/esdsink.c:
10921         * ext/flac/gstflacenc.c:
10922         * ext/flac/gstflactag.c:
10923         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
10924         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
10925         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
10926         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
10927         * ext/gdk_pixbuf/pixbufscale.c:
10928         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
10929         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
10930         * ext/jpeg/gstjpegdec.c:
10931         * ext/jpeg/gstjpegenc.c:
10932         * ext/jpeg/gstsmokedec.c:
10933         * ext/jpeg/gstsmokeenc.c:
10934         * ext/libcaca/gstcacasink.c:
10935         * ext/libmng/gstmngdec.c:
10936         * ext/libmng/gstmngenc.c:
10937         * ext/libpng/gstpngdec.c:
10938         * ext/libpng/gstpngenc.c:
10939         * ext/mikmod/gstmikmod.c:
10940         * ext/raw1394/gstdv1394src.c:
10941         * ext/shout2/gstshout2.c: (gst_shout2send_init):
10942         * ext/shout2/gstshout2.h:
10943         * ext/speex/gstspeexdec.c:
10944         * ext/speex/gstspeexenc.c:
10945         * gst/alpha/gstalpha.c:
10946         * gst/alpha/gstalphacolor.c:
10947         * gst/apetag/gstapedemux.c:
10948         * gst/auparse/gstauparse.c:
10949         * gst/autodetect/gstautoaudiosink.c:
10950         (gst_auto_audio_sink_base_init):
10951         * gst/autodetect/gstautovideosink.c:
10952         (gst_auto_video_sink_base_init):
10953         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init):
10954         * gst/avi/gstavimux.c: (gst_avimux_base_init):
10955         * gst/cutter/gstcutter.c:
10956         * gst/debug/breakmydata.c:
10957         * gst/debug/efence.c:
10958         * gst/debug/gstnavigationtest.c:
10959         * gst/debug/gstnavseek.c:
10960         * gst/debug/negotiation.c:
10961         * gst/debug/progressreport.c:
10962         * gst/debug/testplugin.c:
10963         * gst/effectv/gstaging.c:
10964         * gst/effectv/gstdice.c:
10965         * gst/effectv/gstedge.c:
10966         * gst/effectv/gstquark.c:
10967         * gst/effectv/gstrev.c:
10968         * gst/effectv/gstshagadelic.c:
10969         * gst/effectv/gstvertigo.c:
10970         * gst/effectv/gstwarp.c:
10971         * gst/flx/gstflxdec.c:
10972         * gst/goom/gstgoom.c:
10973         * gst/icydemux/gsticydemux.c:
10974         * gst/id3demux/gstid3demux.c:
10975         * gst/interleave/deinterleave.c:
10976         * gst/interleave/interleave.c:
10977         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
10978         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
10979         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
10980         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
10981         * gst/level/gstlevel.c:
10982         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
10983         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
10984         * gst/median/gstmedian.c:
10985         * gst/monoscope/gstmonoscope.c:
10986         * gst/multipart/multipartdemux.c:
10987         * gst/multipart/multipartmux.c:
10988         * gst/oldcore/gstaggregator.c:
10989         * gst/oldcore/gstfdsink.c:
10990         * gst/oldcore/gstmd5sink.c:
10991         * gst/oldcore/gstmultifilesrc.c:
10992         * gst/oldcore/gstpipefilter.c:
10993         * gst/oldcore/gstshaper.c:
10994         * gst/oldcore/gststatistics.c:
10995         * gst/rtp/gstasteriskh263.c:
10996         * gst/rtp/gstrtpL16depay.c:
10997         * gst/rtp/gstrtpL16pay.c:
10998         * gst/rtp/gstrtpamrdepay.c:
10999         * gst/rtp/gstrtpamrpay.c:
11000         * gst/rtp/gstrtpdepay.c:
11001         * gst/rtp/gstrtpgsmpay.c:
11002         * gst/rtp/gstrtph263pay.c:
11003         * gst/rtp/gstrtph263pdepay.c:
11004         * gst/rtp/gstrtph263ppay.c:
11005         * gst/rtp/gstrtpilbcdepay.c:
11006         * gst/rtp/gstrtpmp4gpay.c:
11007         * gst/rtp/gstrtpmp4vdepay.c:
11008         * gst/rtp/gstrtpmp4vpay.c:
11009         * gst/rtp/gstrtpmpadepay.c:
11010         * gst/rtp/gstrtpmpapay.c:
11011         * gst/rtp/gstrtppcmadepay.c:
11012         * gst/rtp/gstrtppcmapay.c:
11013         * gst/rtp/gstrtppcmudepay.c:
11014         * gst/rtp/gstrtppcmupay.c:
11015         * gst/rtp/gstrtpspeexdepay.c:
11016         * gst/rtp/gstrtpspeexpay.c:
11017         * gst/rtsp/gstrtpdec.c:
11018         * gst/rtsp/gstrtspsrc.c:
11019         * gst/smpte/gstsmpte.c:
11020         * gst/udp/gstdynudpsink.c:
11021         * gst/udp/gstmultiudpsink.c:
11022         * gst/udp/gstudpsink.c:
11023         * gst/udp/gstudpsrc.c:
11024         * gst/videobox/gstvideobox.c:
11025         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
11026         * gst/videofilter/gstvideobalance.c:
11027         * gst/videofilter/gstvideoflip.c:
11028         * gst/videofilter/gstvideotemplate.c:
11029         (gst_videotemplate_base_init):
11030         * gst/videomixer/videomixer.c:
11031         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
11032         (gst_wavparse_class_init), (gst_wavparse_dispose),
11033         (gst_wavparse_reset), (gst_wavparse_init),
11034         (gst_wavparse_perform_seek), (gst_wavparse_peek_chunk_info),
11035         (gst_wavparse_peek_chunk), (gst_wavparse_stream_headers),
11036         (gst_wavparse_parse_stream_init), (gst_wavparse_send_event),
11037         (gst_wavparse_add_src_pad), (gst_wavparse_stream_data),
11038         (gst_wavparse_chain), (gst_wavparse_srcpad_event),
11039         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull),
11040         (gst_wavparse_change_state):
11041         * gst/wavparse/gstwavparse.h:
11042         * sys/oss/gstossmixerelement.c:
11043         * sys/oss/gstosssink.c:
11044         * sys/oss/gstosssrc.c:
11045         * sys/osxaudio/gstosxaudioelement.c:
11046         * sys/osxaudio/gstosxaudiosink.c:
11047         * sys/osxaudio/gstosxaudiosrc.c:
11048         * sys/sunaudio/gstsunaudiomixer.c:
11049         * sys/sunaudio/gstsunaudiosink.c:
11050           Define GstElementDetails as const and also static (when defined as
11051           global)
11052
11053 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
11054
11055         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
11056           Source pad has fixed caps. If we don't set this, bad
11057           things happen when the window is resized.
11058
11059 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
11060
11061         * gst/matroska/Makefile.am:
11062         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
11063         (gst_matroska_demux_handle_src_event):
11064         * gst/matroska/matroska-ids.c:
11065         (gst_matroska_track_init_video_context),
11066         (gst_matroska_track_init_audio_context),
11067         (gst_matroska_track_init_subtitle_context),
11068         (gst_matroska_track_init_complex_context):
11069         * gst/matroska/matroska-ids.h:
11070           Handle case where the TrackType ebml chunk does not come before the
11071           TrackInfoAudio or TrackInfoVideo ebml chunk (#339446). Ignore QoS
11072           events.
11073
11074 2006-04-25  Wim Taymans  <wim@fluendo.com>
11075
11076         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
11077         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
11078         It's codec_data, not codec_info.
11079
11080 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
11081
11082         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
11083
11084         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
11085           Handle codec_data for VfW compatibility codec IDs (#339451)
11086
11087         * gst/matroska/matroska-mux.c:
11088         (gst_matroska_mux_video_pad_setcaps):
11089           Same here, handle codec_data and add additional caps we can handle
11090           now to the pad template (huffyuv, dv and h263 video) (#339451)
11091
11092 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
11093
11094         Patch by: Josef Zlomek  <josef dot zlomek at itonis dot tv>
11095
11096         * gst/matroska/matroska-mux.c:
11097         (gst_matroska_mux_create_buffer_header),
11098         (gst_matroska_mux_write_data):
11099           Fix timestamping of B-frames, use signed integers, do
11100           some rounding (#339678).
11101
11102 2006-04-24  Edgard Lima <edgard.lima@indt.org.br>
11103
11104         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_generic_error):
11105         just make it compile with --disable-gst-debug.
11106
11107 2006-04-23  Sebastien Moutte  <sebastien@moutte.net>
11108
11109         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
11110         Fix a bad conversion using gst_guint64_to_gdouble.
11111         fabs ((gdouble) demux->index[entry].time - (gdouble) seek_pos) can not be 
11112         replaced by fabs (gst_guint64_to_gdouble (demux->index[entry].time - seek_pos)) as the
11113         difference could be negative. fabs (gst_guint64_to_gdouble (demux->index[entry].time) - 
11114     gst_guint64_to_gdouble (seek_pos)) is the good solution. Thanks to Tim who has seen my 
11115         mistake.
11116
11117 2006-04-21  Sebastien Moutte  <sebastien@moutte.net>
11118
11119         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
11120         Use gst_guint64_to_gdouble for conversions
11121         * win32/vs6/gst_plugins_good.dsw:
11122         * win32/vs6/libgsticydemux.dsp:
11123         Add a project file for icydemux
11124
11125 2006-04-21  Wim Taymans  <wim@fluendo.com>
11126
11127         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
11128
11129         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
11130         (gst_avi_demux_parse_index), (gst_avi_demux_massage_index):
11131         When splitting audio chunks, the block alignment is not taken in
11132         consideration, so the smaller chunks could be of size which is 
11133         not a multiple of the block alignment. Fixes #336904
11134
11135 2006-04-21  Wim Taymans  <wim@fluendo.com>
11136
11137         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_convert):
11138         Use scale functions
11139
11140 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
11141
11142         * ext/dv/gstdv.c: (plugin_init):
11143           Fix build.
11144
11145 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
11146
11147         * gst/debug/progressreport.c: (gst_progress_report_finalize),
11148         (gst_progress_report_class_init), (gst_progress_report_init),
11149         (gst_progress_report_do_query), (gst_progress_report_report),
11150         (gst_progress_report_set_property),
11151         (gst_progress_report_get_property):
11152           Add 'format' property to force querying to a particular format.
11153
11154 2006-04-21  Andy Wingo  <wingo@pobox.com>
11155
11156         * ext/dv/gstdv.c (plugin_init): libdv is a marginal decoder, at
11157         best, on big endian systems. Drop its rank in that case. OTOH on
11158         x86 it's quite fine. See changes from today in gst-ffmpeg as well.
11159
11160 2006-04-21  Michael Smith  <msmith@fluendo.com>
11161
11162         * configure.ac:
11163         * gst/icydemux/Makefile.am:
11164         * gst/icydemux/gsticydemux.c: (gst_icydemux_get_type),
11165         (gst_icydemux_base_init), (gst_icydemux_class_init),
11166         (gst_icydemux_reset), (gst_icydemux_init),
11167         (gst_icydemux_sink_setcaps), (gst_icydemux_dispose),
11168         (gst_icydemux_add_srcpad), (gst_icydemux_remove_srcpad),
11169         (unicodify), (gst_icydemux_unicodify),
11170         (gst_icydemux_parse_and_send_tags),
11171         (gst_icydemux_typefind_or_forward), (gst_icydemux_add_meta),
11172         (gst_icydemux_chain), (gst_icydemux_change_state),
11173         (gst_icydemux_send_tag_event), (plugin_init):
11174         * gst/icydemux/gsticydemux.h:
11175         * tests/check/Makefile.am:
11176         * tests/check/elements/icydemux.c: (typefind_succeed),
11177         (plugin_init), (icydemux_found_pad), (create_icydemux),
11178         (cleanup_icydemux), (push_data), (GST_START_TEST),
11179         (icydemux_suite), (main):
11180           Add icydemux, and tests.
11181
11182 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
11183
11184         * ext/flac/gstflacdec.c: (gst_flac_dec_loop):
11185           Post SEGMENT_DONE message in TIME format.
11186
11187 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
11188
11189         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
11190
11191         * gst/avi/gstavidemux.c: (gst_avi_demux_peek_tag),
11192         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan):
11193           Fix index creation when we have to scan the file to create
11194           an index. There may be other types of RIFF 'LIST' chunks than
11195           'movi' and we need to skip them properly as well or we'll end up
11196           reading garbage (#336889). Some other cosmetic changes.
11197           
11198 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
11199
11200         * ext/flac/gstflacdec.c: (gst_flac_dec_loop),
11201         (gst_flac_dec_handle_seek_event):
11202           Add support for segment seeks (fixes #338290). Also demote
11203           some recurring debug message from DEBUG to LOG level.
11204
11205 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
11206
11207         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
11208         (gst_matroskademux_do_index_seek),
11209         (gst_matroska_demux_handle_seek_event),
11210         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
11211         * gst/matroska/matroska-ids.h:
11212           Set DISCONT flag on first buffer after a discontinuity.
11213           Fix newsegment events sent when seeking and honour KEY_UNIT
11214           seek flag. Create pad with bogus caps if we don't recognise
11215           the stream codec id.
11216
11217         * gst/matroska/matroska-demux.h:
11218           Fix GObject macros.
11219
11220 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
11221
11222         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
11223
11224         * gst/matroska/matroska-demux.c:
11225         (gst_matroska_demux_handle_seek_event), (gst_matroska_demux_loop):
11226           Handle end of segment properly when set; don't dead-lock when
11227           posting start of segment message when doing a segment seek.
11228           Fixes #338810.
11229
11230 2006-04-20  Tim-Philipp Müller  <tim at centricular dot net>
11231
11232         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
11233         (gst_matroska_demux_plugin_init):
11234           Make mpeg2 aac audio work: create artificial private codec data
11235           chunk which faad2 seems to require, just as we do for mpeg4 aac.
11236           Also call gst_riff_init(). Partially fixes #338767.
11237
11238 2006-04-19  Tim-Philipp Müller  <tim at centricular dot net>
11239
11240         * gst/wavenc/gstwavenc.c: (gst_wavenc_base_init),
11241         (gst_wavenc_class_init), (gst_wavenc_init),
11242         (gst_wavenc_create_header_buf), (gst_wavenc_push_header),
11243         (gst_wavenc_sink_setcaps), (get_id_from_name), (gst_wavenc_event),
11244         (gst_wavenc_chain), (gst_wavenc_change_state):
11245         * gst/wavenc/gstwavenc.h:
11246           Set caps on first outgoing buffer, so that it doesn't error out
11247           immediately with a non-negotiated error (#338716). Rewrite and
11248           clean up a bit; fix setcaps function to parse things properly;
11249           fix sink caps (8bit audio is unsigned and doesn't have depth);
11250           use boilerplate macros; remove unused properties stuff.
11251
11252 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
11253
11254         * ext/gdk_pixbuf/gstgdkpixbuf.c:
11255           Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot
11256           handle MJPEG streams and might be autoplugged for those if the
11257           user doesn't have jpegdec installed (resulting in a cryptic error
11258           message about huffman tables). Better to disable JPEG decoding here
11259           and let the user figure out that she needs to install jpegdec.
11260
11261 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
11262
11263         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
11264         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
11265         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_chain):
11266         * ext/gdk_pixbuf/gstgdkpixbuf.h:
11267           Make work with packetised/framed input (e.g. png-in-quicktime). Use
11268           GST_ELEMENT_ERROR when we return GST_FLOW_ERROR. Add some
11269           GST_DEBUG_FUNCPTR here and there. Use GST_LOG for recurring
11270           debug messages. Fix boilerplate macros.
11271
11272 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
11273
11274         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
11275         (gst_gdk_pixbuf_set_property), (gst_gdk_pixbuf_get_property):
11276           No need to special-case for Gdk-2.0 any longer, we require
11277           Gdk 2.2 or newer; minor clean-ups.
11278
11279 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
11280
11281         * ext/shout2/gstshout2.c: (gst_shout2send_base_init),
11282         (gst_shout2send_class_init), (gst_shout2send_init),
11283         (set_shout_metadata), (gst_shout2send_set_metadata),
11284         (gst_shout2send_event), (gst_shout2send_start),
11285         (gst_shout2send_connect), (gst_shout2send_stop),
11286         (gst_shout2send_render), (gst_shout2send_set_property),
11287         (gst_shout2send_get_property), (gst_shout2send_setcaps),
11288         (plugin_init):
11289         * ext/shout2/gstshout2.h:
11290         * po/POTFILES.in:
11291           Rewrite a bit: use GstBaseSink::start and stop instead of a state
11292           change function; use GST_ELEMENT_ERROR for error reporting, not
11293           g_error() or GST_ERROR(); don't unref caps in setcaps function,
11294           will cause crashes or assertion failures; remove (unused) "sync"
11295           property, basesink already has such a property; misc. other
11296           minor fixes and cleanups.
11297
11298 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
11299
11300         * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_prepare):
11301         * ext/esd/gstesd.c: (plugin_init):
11302         * po/POTFILES.in:
11303           Add translatable error message for when we cannot
11304           connect to the sound server, as "Cannot open resource
11305           for writing" isn't really an acceptable message to show
11306           to the user in this case.
11307
11308 2006-04-18  Tim-Philipp Müller  <tim at centricular dot net>
11309
11310         * sys/oss/gst-i18n-plugin.h:
11311           Remove bogus file that doesn't belong here.
11312
11313 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
11314
11315         Patch by: Philippe Valembois
11316
11317         * ext/shout2/gstshout2.c: (gst_shout2send_init),
11318         (gst_shout2send_set_metadata), (gst_shout2send_event),
11319         (gst_shout2send_render), (gst_shout2send_change_state):
11320         * ext/shout2/gstshout2.h:
11321           Handle tags being received before the connection to
11322           the server is established properly (see #338636).
11323
11324 2006-04-17  Tim-Philipp Müller  <tim at centricular dot net>
11325
11326         * ext/shout2/gstshout2.c: (gst_shout2send_render):
11327           Don't crash in case the connection to the server fails:
11328           don't set pointer to NULL by assigning FALSE; error out
11329           properly by using GST_ELEMENT_ERROR and returning
11330           GST_FLOW_ERROR (fixes #338636). Lastly, free connection
11331           before resetting the pointer.
11332
11333 2006-04-17  Jan Schmidt  <thaytan@mad.scientist.com>
11334
11335         * gst/id3demux/id3tags.c:
11336         Recognise TCO (Genre) tags in ID3v2.2. Patch by Alex Lancaster
11337         (Fixes #338713)
11338
11339 2006-04-12  Wim Taymans  <wim@fluendo.com>
11340
11341         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
11342         (gst_gdk_pixbuf_get_capslist), (gst_gdk_pixbuf_sink_getcaps),
11343         (gst_gdk_pixbuf_class_init), (gst_gdk_pixbuf_init),
11344         (gst_gdk_pixbuf_flush), (gst_gdk_pixbuf_sink_event),
11345         (gst_gdk_pixbuf_chain):
11346         Some cleanups.
11347         Added RGBA as a possible output format.
11348         Correctly free the supported mimetypes.
11349         deprecate silent arg, it's not used.
11350         Return result from _alloc_buffer to peer.
11351
11352 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
11353
11354         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_process):
11355           Don't leak memory allocated by gst_buffer_new_and_alloc() by
11356           overwriting GST_BUFFER_MALLOCDATA.
11357
11358 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
11359
11360         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
11361         (user_endrow_callback), (user_end_callback),
11362         (gst_pngdec_caps_create_and_set), (gst_pngdec_chain),
11363         (gst_pngdec_sink_setcaps), (gst_pngdec_sink_event),
11364         (gst_pngdec_libpng_clear), (gst_pngdec_change_state):
11365         * ext/libpng/gstpngdec.h:
11366           Handle more than one frame if the content is framed,
11367           like with png-in-quicktime (#331917).
11368
11369 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11370
11371         * sys/oss/Makefile.am:
11372         * sys/oss/common.h:
11373         * sys/oss/gstosssink.c: (gst_oss_sink_init), (gst_oss_sink_open),
11374         (gst_oss_sink_prepare), (gst_oss_sink_unprepare):
11375         * sys/oss/gstosssrc.c: (gst_oss_src_prepare),
11376         (gst_oss_src_unprepare):
11377           - the user-visible error strings were in the wrong category
11378           - and the messages were not marked for translation
11379           - which is actually a good thing, because they were exactly
11380             the kind of message you would never want anyone to see
11381           - the macros were using variables that didn't exist in the macro
11382             arguments
11383           - and they were obviously copied from each other and then modified
11384           - so a common header makes sense
11385
11386 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
11387
11388         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
11389           Don't try to modify read-only data.
11390
11391         * gst/matroska/matroska-demux.c:
11392         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
11393           Fix comment (won't crash any longer now).
11394
11395 2006-04-10  Michael Smith  <msmith@fluendo.com>
11396
11397         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_set_header_on_caps):
11398           Use copies of header buffers for caps to avoid circular refcounting
11399           problems (as in theoradec, vorbisdec).
11400
11401         * tests/check/elements/cmmldec.c: (GST_START_TEST):
11402           Fix a typo in test that meant it was testing the wrong thing.
11403
11404         * tests/check/elements/cmmlenc.c: (check_headers):
11405           Fix refcount checks now that we use buffer-copies for caps.
11406
11407 2006-04-10  Tim-Philipp Müller  <tim at centricular dot net>
11408
11409         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init),
11410         (gst_matroska_demux_handle_seek_event),
11411         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
11412         (gst_matroska_demux_subtitle_caps),
11413         (gst_matroska_demux_plugin_init):
11414           Use static pad templates with ANY caps for audio and video
11415           source pads and get rid of a lot of unnecessary (and partially
11416           broken) code for the template caps. Clean up caps finding
11417           functions. Fixes playback of audio files/streams that do not
11418           contain the sample rate and/or number of channels in the audio
11419           context (happens a lot with vorbis/mp3 .mka files it seems).
11420           Fixes #337183.
11421           Also add myself to copyright holders.
11422
11423 2006-04-10  Michael Smith  <msmith@fluendo.com>
11424
11425         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_del_clip):
11426           Use g_list_delete_link () instead of g_list_remove_link () so that
11427           we free the link as well as the contained data.
11428
11429 2006-04-10  Wim Taymans  <wim@fluendo.com>
11430
11431         Patch by: Ryan Lortie (desrt) <desrt at destr dot ca>
11432
11433         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_superindex),
11434         (gst_avi_demux_parse_stream), (gst_avi_demux_parse_index),
11435         (gst_avi_demux_stream_header):
11436         Fix some crashers with empty chunks. (Fixes #337749)
11437
11438 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
11439
11440         * gst/level/gstlevel.c: (gst_level_set_caps),(gst_level_transform_ip):
11441           use G_GINT64_CONSTANT for INT64 constants
11442         * gst/videofilter/gstvideobalance.c:
11443           define rint for WIN32 #define rint(x) (floor((x)+0.5))
11444         * win32/vs6/libgstavi.dsp:
11445          add missing libraries for the link and remove avimux.c from
11446          the project as it isn't ported to 0.10 yet
11447         
11448 2006-04-09  Tim-Philipp Müller  <tim at centricular dot net>
11449
11450         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
11451           Even better would be if we actually did the right thing
11452           here (also, G_GUINT64_CONSTANT only exists since GLib-2.10).
11453
11454 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
11455
11456         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
11457           Can't just replace 1LL with 1L here just because MSVC doesn't
11458           support it, as it might lead to incorrect results when doing the
11459           bitshifting here. Using GLib's G_GUINT64_CONSTANT() macro to
11460           force a 64-bit constant in a way that all compilers are happy with.
11461
11462 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
11463
11464         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
11465         * ext/esd/esdsink.c: (gst_esdsink_class_init):
11466         * ext/flac/gstflactag.c: (gst_flac_tag_class_init):
11467         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_class_init):
11468         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
11469         * ext/jpeg/gstsmokedec.c: (gst_smokedec_class_init):
11470         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init):
11471         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init):
11472         * ext/libmng/gstmngdec.c: (gst_mngdec_class_init):
11473         * ext/libmng/gstmngenc.c: (gst_mngenc_class_init):
11474         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init):
11475         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
11476         * ext/mikmod/gstmikmod.c: (gst_mikmod_class_init):
11477         * ext/shout2/gstshout2.c: (gst_shout2send_class_init):
11478         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
11479         * gst/alpha/gstalpha.c: (gst_alpha_class_init):
11480         * gst/avi/gstavimux.c: (gst_avimux_class_init):
11481         * gst/debug/efence.c: (gst_efence_class_init):
11482         * gst/debug/negotiation.c: (gst_negotiation_class_init):
11483         * gst/flx/gstflxdec.c: (gst_flxdec_class_init):
11484         * gst/goom/gstgoom.c: (gst_goom_class_init):
11485         * gst/id3demux/gstid3demux.c: (gst_id3demux_class_init):
11486         * gst/interleave/deinterleave.c: (deinterleave_class_init):
11487         * gst/interleave/interleave.c: (interleave_class_init):
11488         * gst/law/alaw-decode.c: (gst_alawdec_class_init):
11489         * gst/law/alaw-encode.c: (gst_alawenc_class_init):
11490         * gst/law/mulaw-encode.c: (gst_mulawenc_class_init):
11491         * gst/median/gstmedian.c: (gst_median_class_init):
11492         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
11493         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init):
11494         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_class_init):
11495         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_class_init):
11496         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_class_init):
11497         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_class_init):
11498         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init):
11499         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_class_init):
11500         * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_class_init):
11501         * gst/rtp/gstrtpgsmpay.c: (gst_rtp_gsm_pay_class_init):
11502         * gst/rtp/gstrtph263pay.c: (gst_rtp_h263_pay_class_init):
11503         * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_class_init):
11504         * gst/rtp/gstrtph263ppay.c: (gst_rtp_h263p_pay_class_init):
11505         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init):
11506         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_class_init):
11507         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init):
11508         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_class_init):
11509         * gst/rtp/gstrtpmpapay.c: (gst_rtp_mpa_pay_class_init):
11510         * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_class_init):
11511         * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_class_init):
11512         * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_class_init):
11513         * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_class_init):
11514         * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_class_init):
11515         * gst/rtp/gstrtpspeexpay.c: (gst_rtp_speex_pay_class_init):
11516         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init):
11517         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_class_init):
11518         * gst/smpte/gstsmpte.c: (gst_smpte_class_init):
11519         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
11520         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init):
11521         * gst/udp/gstudpsink.c: (gst_udpsink_class_init):
11522         * gst/videomixer/videomixer.c: (gst_videomixer_class_init):
11523         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
11524         * sys/oss/gstossdmabuffer.c: (gst_ossdmabuffer_class_init):
11525         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
11526         * sys/osxaudio/gstosxaudioelement.c:
11527         (gst_osxaudioelement_class_init):
11528         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_class_init):
11529         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_class_init):
11530         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_class_init):
11531         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
11532
11533 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
11534
11535         * ext/mikmod/gstmikmod.h:
11536         * gst/level/gstlevel.h:
11537         Fix more broken GObject macros
11538
11539 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
11540
11541         * ext/annodex/gstcmmldec.h:
11542         * ext/annodex/gstcmmlenc.h:
11543         * ext/annodex/gstcmmltag.h:
11544         * ext/cairo/gsttextoverlay.h:
11545         * ext/ladspa/gstsignalprocessor.h:
11546         * gst/matroska/ebml-read.h:
11547         * gst/matroska/ebml-write.h:
11548         * sys/osxaudio/gstosxaudioelement.h:
11549         Fix broken GObject macros
11550
11551 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
11552
11553         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
11554           Don't try to seek beyond the end of the file (would
11555           occasionally display error dialogs in totem when seeking
11556           to the end) (#335869). Will still throw an error though
11557           if the file is truncated and the total_samples value in
11558           the stream header is wrong.
11559
11560 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
11561
11562         * ext/flac/gstflacdec.c: (gst_flac_calculate_crc8),
11563         (gst_flac_dec_scan_got_frame), (gst_flac_dec_scan_for_last_block),
11564         (gst_flac_dec_metadata_callback):
11565         * ext/flac/gstflacdec.h:
11566           If the stream header doesn't contain the total number of samples,
11567           search for the last flac frame at the end of the file and calculate
11568           the total duration from that frame's offset (fixes #337609).
11569
11570 2006-04-07  Edward Hervey  <edward@fluendo.com>
11571
11572         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream):
11573         Don't unref the GstPadTemplate returned by
11574         gst_element_class_get_pad_template().
11575
11576 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
11577
11578         Patch by: Brian Cameron  <brian dot cameron at sun dot com>
11579
11580         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init),
11581         (gst_sunaudiosink_prepare), (gst_sunaudiosink_write):
11582         * sys/sunaudio/gstsunaudiosink.h:
11583           Use spec->segsize and spec->segtotal in the prepare function
11584           to initialise the ring buffer instead of using the buffer-time
11585           property (#337421).
11586
11587 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
11588
11589         * configure.ac:
11590           Bump core requirements to CVS for gst_pad_query_peer_duration()
11591           which is used by speexdec.
11592
11593 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
11594
11595         * ext/speex/gstspeex.c: (plugin_init):
11596         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
11597         (gst_speex_dec_reset), (gst_speex_dec_init), (speex_dec_convert),
11598         (speex_get_sink_query_types), (speex_dec_sink_query),
11599         (speex_get_src_query_types), (speex_dec_src_query),
11600         (speex_dec_src_event), (speex_dec_sink_event),
11601         (speex_dec_chain_parse_header), (speex_dec_chain_parse_comments),
11602         (speex_dec_chain_parse_data), (speex_dec_chain),
11603         (gst_speex_dec_get_property), (gst_speex_dec_set_property),
11604         (speex_dec_change_state):
11605         * ext/speex/gstspeexdec.h:
11606           Fix seeking and duration queries (#337033); clean up and
11607           refactor a bit.
11608
11609 2006-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11610
11611         * ext/raw1394/gstdv1394src.c:
11612           distinguish between device not found and could not open for
11613           reading
11614
11615 2006-04-03  Thomas Vander Stichele  <thomas at apestaart dot org>
11616
11617         * Makefile.am:
11618         * configure.ac:
11619         * pkgconfig/.cvsignore:
11620         * pkgconfig/Makefile.am:
11621         * pkgconfig/gstreamer-plugins-good-uninstalled.pc.in:
11622           add a .pc file so other modules can use good plugins in tests
11623
11624 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11625
11626         * configure.ac:
11627           clean up, use AS_VERSION and AS_NANO
11628         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
11629           use PACKAGE_VERSION define
11630         * po/af.po:
11631         * po/az.po:
11632         * po/cs.po:
11633         * po/en_GB.po:
11634         * po/hu.po:
11635         * po/it.po:
11636         * po/nb.po:
11637         * po/nl.po:
11638         * po/or.po:
11639         * po/sq.po:
11640         * po/sr.po:
11641         * po/sv.po:
11642         * po/uk.po:
11643         * po/vi.po:
11644           updated
11645
11646 2006-03-31  Sebastien Moutte  <sebastien@moutte.net>
11647
11648         * ext\jpeg\smokecodec.c:
11649           use of GST_DEBUG instead of DEBUG(a...) for WIN32
11650         * ext\speex\gstspeexenc.c: (gst_speexenc_set_header_on_caps):
11651           move first instruction after all variables declarations
11652         * gst\alpha\gstalpha.c:
11653         * gst\effectv\gstshagadelic.c:
11654         * gst\smpte\paint.c:
11655         * gst\videofilter\gstvideobalance.c:
11656           define M_PI if it's not defined (it's not defined on WIN32)
11657         * gst\cutter\gstcutter.c: (gst_cutter_chain):
11658         * gst\id3demux\id3v2frames.c: (parse_relative_volume_adjustment_two):
11659         * gst\level\gstlevel.c: (gst_level_set_property), (gst_level_transform_ip):
11660         * gst\matroska\matroska-demux.c: (gst_matroska_demux_parse_info), 
11661         (gst_matroska_demux_video_caps):
11662         * gst\matroska\matroska-mux.c: (gst_matroska_mux_start), (gst_matroska_mux_finish):
11663         * gst\wavparse\gstwavparse.c: (gst_wavparse_stream_data):
11664           use gst_guint64_to_gdouble for conversions
11665         * gst\goom\filters.c: (setPixelRGB_):
11666           fix a debug which was using undefined variable
11667         * gst\level\gstlevel.c: (gst_level_set_caps), (gst_level_transform_ip):
11668         * gst\matroska\ebml-read.c: (gst_ebml_read_sint):
11669           replace LL suffix with L suffix (LL isn't supported by MSVC6.0)
11670         * win32/vs6:
11671           add vs6 projects files for most of plugins-good
11672         
11673 2006-03-30  j^  <j@bootlab.org>
11674
11675         * ext/aalib/gstaasink.c:
11676         * ext/annodex/gstcmmldec.c:
11677         * ext/annodex/gstcmmlenc.c:
11678         * ext/cairo/gsttextoverlay.c:
11679         * ext/cairo/gsttimeoverlay.c:
11680         * ext/cdio/gstcdiocddasrc.c:
11681         * ext/dv/gstdvdec.c:
11682         * ext/esd/esdmon.c:
11683         * ext/esd/esdsink.c:
11684         * ext/flac/gstflacdec.c:
11685         * ext/flac/gstflacenc.c:
11686         * ext/flac/gstflactag.c:
11687         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init):
11688         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init):
11689         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init):
11690         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init):
11691         * ext/gdk_pixbuf/gstgdkpixbuf.c:
11692         * ext/gdk_pixbuf/pixbufscale.c:
11693         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init):
11694         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init):
11695         * ext/jpeg/gstjpegdec.c:
11696         * ext/jpeg/gstjpegenc.c:
11697         * ext/jpeg/gstsmokedec.c:
11698         * ext/jpeg/gstsmokeenc.c:
11699         * ext/libcaca/gstcacasink.c:
11700         * ext/libmng/gstmngdec.c:
11701         * ext/libmng/gstmngenc.c:
11702         * ext/libpng/gstpngdec.c:
11703         * ext/libpng/gstpngenc.c:
11704         * ext/mikmod/gstmikmod.c:
11705         * ext/raw1394/gstdv1394src.c:
11706         * ext/shout2/gstshout2.c:
11707         * ext/speex/gstspeexdec.c:
11708         * ext/speex/gstspeexenc.c:
11709         * gst/alpha/gstalpha.c:
11710         * gst/alpha/gstalphacolor.c:
11711         * gst/auparse/gstauparse.c:
11712         * gst/autodetect/gstautoaudiosink.c:
11713         (gst_auto_audio_sink_base_init):
11714         * gst/autodetect/gstautovideosink.c:
11715         (gst_auto_video_sink_base_init):
11716         * gst/avi/gstavimux.c: (gst_avimux_base_init):
11717         * gst/cutter/gstcutter.c:
11718         * gst/debug/breakmydata.c:
11719         * gst/debug/efence.c:
11720         * gst/debug/gstnavigationtest.c:
11721         * gst/debug/negotiation.c:
11722         * gst/debug/progressreport.c:
11723         * gst/debug/testplugin.c:
11724         * gst/effectv/gstaging.c:
11725         * gst/effectv/gstdice.c:
11726         * gst/effectv/gstedge.c:
11727         * gst/effectv/gstquark.c:
11728         * gst/effectv/gstrev.c:
11729         * gst/effectv/gstvertigo.c:
11730         * gst/effectv/gstwarp.c:
11731         * gst/flx/gstflxdec.c:
11732         * gst/goom/gstgoom.c:
11733         * gst/interleave/deinterleave.c:
11734         * gst/interleave/interleave.c:
11735         * gst/law/alaw-decode.c: (gst_alawdec_base_init):
11736         * gst/law/alaw-encode.c: (gst_alawenc_base_init):
11737         * gst/law/mulaw-decode.c: (gst_mulawdec_base_init):
11738         * gst/law/mulaw-encode.c: (gst_mulawenc_base_init):
11739         * gst/level/gstlevel.c:
11740         * gst/matroska/matroska-demux.c: (gst_matroska_demux_base_init):
11741         * gst/matroska/matroska-mux.c: (gst_matroska_mux_base_init):
11742         * gst/median/gstmedian.c:
11743         * gst/monoscope/gstmonoscope.c:
11744         * gst/multipart/multipartdemux.c:
11745         * gst/multipart/multipartmux.c:
11746         * gst/oldcore/gstmd5sink.c:
11747         * gst/oldcore/gstmultifilesrc.c:
11748         * gst/oldcore/gstpipefilter.c:
11749         * gst/oldcore/gstshaper.c:
11750         * gst/oldcore/gststatistics.c:
11751         * gst/rtp/gstasteriskh263.c:
11752         * gst/rtp/gstrtpL16depay.c:
11753         * gst/rtp/gstrtpL16pay.c:
11754         * gst/rtp/gstrtpamrdepay.c:
11755         * gst/rtp/gstrtpamrpay.c:
11756         * gst/rtp/gstrtpdepay.c:
11757         * gst/rtp/gstrtpgsmpay.c:
11758         * gst/rtp/gstrtph263pay.c:
11759         * gst/rtp/gstrtph263pdepay.c:
11760         * gst/rtp/gstrtph263ppay.c:
11761         * gst/rtp/gstrtpmp4gpay.c:
11762         * gst/rtp/gstrtpmp4vdepay.c:
11763         * gst/rtp/gstrtpmp4vpay.c:
11764         * gst/rtp/gstrtpmpadepay.c:
11765         * gst/rtp/gstrtpmpapay.c:
11766         * gst/rtp/gstrtppcmadepay.c:
11767         * gst/rtp/gstrtppcmapay.c:
11768         * gst/rtp/gstrtppcmudepay.c:
11769         * gst/rtp/gstrtppcmupay.c:
11770         * gst/rtp/gstrtpspeexdepay.c:
11771         * gst/rtp/gstrtpspeexpay.c:
11772         * gst/rtsp/gstrtpdec.c:
11773         * gst/smpte/gstsmpte.c:
11774         * gst/videobox/gstvideobox.c:
11775         * gst/videofilter/gstgamma.c: (gst_gamma_base_init):
11776         * gst/videofilter/gstvideobalance.c:
11777         * gst/videofilter/gstvideoflip.c:
11778         * gst/videofilter/gstvideotemplate.c:
11779         (gst_videotemplate_base_init):
11780         * gst/videomixer/videomixer.c:
11781         * gst/wavenc/gstwavenc.c:
11782         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init):
11783          better/unified long descriptions
11784          Fixed #336602
11785          Some cleanups to auparse, don't send multiple newsegments.
11786
11787 2006-03-29  Wim Taymans  <wim@fluendo.com>
11788
11789         From a patch by: Michael Dominic K. <mdk at mdk dot org dot pl>
11790
11791         * ext/dv/gstdvdemux.c: (gst_dvdemux_class_init),
11792         (gst_dvdemux_reset), (gst_dvdemux_src_convert),
11793         (gst_dvdemux_send_event), (gst_dvdemux_flush), (gst_dvdemux_loop),
11794         (gst_dvdemux_sink_activate_pull), (gst_dvdemux_change_state):
11795         * ext/dv/gstdvdemux.h:
11796         Seek in READY patch. Only works for pull based mode.
11797         Fixes #323880
11798
11799 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
11800
11801         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_flush),
11802         (gst_gdk_pixbuf_event):
11803           Fix two crashers: don't unref the same caps twice, and
11804           set pixbuf loader to NULL after freeing it.
11805
11806 2006-03-27  Wim Taymans  <wim@fluendo.com>
11807
11808         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
11809         (gst_speexenc_finalize), (gst_speexenc_sink_setcaps),
11810         (gst_speexenc_chain):
11811         * ext/speex/gstspeexenc.h:
11812         Don't leak adapter.
11813         A push *always* takes ownership of the buffer, even on
11814         errors.
11815         Small cleanups.
11816
11817 2006-03-26  Tim-Philipp Müller  <tim at centricular dot net>
11818
11819         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
11820           Create source pad without leaking.
11821
11822 2006-03-24  Wim Taymans  <wim@fluendo.com>
11823
11824         * ext/flac/gstflacdec.c: (gst_flac_dec_handle_seek_event):
11825         * ext/flac/gstflacdec.h:
11826         * ext/flac/gstflacenc.h:
11827         Spifify a bit.
11828         Fix deadly lock order error in seeking code, STREAM_LOCK
11829         cannot be taken within LOCK and the streaming variables are
11830         protected with the STREAM_LOCK anyway.
11831
11832 2006-03-24  Wim Taymans  <wim@fluendo.com>
11833
11834         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_index),
11835         (gst_avi_demux_stream_index), (gst_avi_demux_stream_scan),
11836         (gst_avi_demux_massage_index), (gst_avi_demux_handle_seek):
11837         this patch combines the global init_frames with the stream
11838         init_frames. Rationale being that the global delay should 
11839         be subtracted from any stream delay.
11840         Fixes #335858.
11841
11842 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
11843
11844         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
11845         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
11846         * gst/smpte/gstsmpte.c: (gst_smpte_init):
11847         * gst/videomixer/videomixer.c: (gst_videomixer_init):
11848         use DEBUG_FUNCPTR for collectpads
11849
11850 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
11851
11852         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
11853           Don't crash when encoding images where the number of rows isn't
11854           a multiple of 2*DCTSIZE. Add some GST_DEBUG_FUNCPTR.
11855
11856 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
11857
11858         * ext/speex/gstspeexdec.c: (speex_dec_change_state):
11859         * gst/interleave/deinterleave.c: (deinterleave_change_state):
11860         * gst/interleave/interleave.c: (interleave_change_state):
11861         * gst/wavenc/gstwavenc.c: (gst_wavenc_change_state):
11862           More state change function fixes.
11863
11864 2006-03-23  Wim Taymans  <wim@fluendo.com>
11865
11866         * ext/esd/esdsink.c: (gst_esdsink_class_init),
11867         (gst_esdsink_getcaps), (gst_esdsink_open), (gst_esdsink_close),
11868         (gst_esdsink_prepare), (gst_esdsink_unprepare),
11869         (gst_esdsink_delay), (gst_esdsink_reset):
11870         * ext/esd/esdsink.h:
11871         Fix esd choppy playback by configuring audiosink
11872         correctly. Fixes #325191
11873
11874 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
11875
11876         * ext/libpng/gstpngdec.c: (gst_pngdec_change_state):
11877           Make state change function thread-safe.
11878
11879 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
11880
11881         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_upstream_size),
11882         (gst_wavparse_stream_headers), (gst_wavparse_stream_data):
11883           Don't try to read beyond the end of the file just because
11884           the header claims a bigger size (like with truncated files).
11885
11886 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
11887
11888         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
11889         (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad),
11890         (gst_wavparse_stream_data), (gst_wavparse_loop):
11891         * gst/wavparse/gstwavparse.h:
11892           Delay source pad creation until we have the first chunk of
11893           media data, so the we can examine the data and adjust the
11894           caps accordingly if required. This makes playback of .wav
11895           files with DTS-declared-as-PCM content work (#313266).
11896
11897 2006-03-22  Jan Schmidt  <thaytan@mad.scientist.com>
11898
11899         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
11900         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain):
11901         Don't attempt typefinding on too-short buffers that have been
11902         completely trimmed away. (Fixes #330239)
11903
11904         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
11905         Improve the debug output
11906
11907 2006-03-21  Wim Taymans  <wim@fluendo.com>
11908
11909         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
11910         (gst_esdsink_finalize), (gst_esdsink_getcaps), (gst_esdsink_open),
11911         (gst_esdsink_close), (gst_esdsink_prepare), (gst_esdsink_write),
11912         (gst_esdsink_set_property), (gst_esdsink_get_property):
11913         Some cleanups.
11914         Reset fd to -1 when we close them.
11915
11916 2006-03-21  Wim Taymans  <wim@fluendo.com>
11917
11918         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_open):
11919         the OPTIONS request result is optional so don't
11920         fail on it.
11921
11922 2006-03-21  Edward Hervey  <edward@fluendo.com>
11923
11924         * gst/apetag/gsttagdemux.c: (gst_tag_demux_reset):
11925         * gst/id3demux/gstid3demux.c: (gst_id3demux_reset):
11926         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
11927         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
11928         (gst_wavparse_change_state):
11929         gcc 4.1 unreferenced pointer fixes.
11930
11931 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
11932
11933         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
11934
11935         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek):
11936           Fix block alignment calculation. Alignment should be done before
11937           adding the byte offset where the data starts (#335231).
11938
11939 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
11940
11941         * gst/matroska/ebml-write.c: (gst_ebml_write_element_push):
11942           Ensure that we set correct caps on buffers that are transferred
11943           direct from the input.
11944
11945 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
11946
11947         * gst/goom/filters.c: (zoomFilterDestroy):
11948         * gst/goom/goom_core.c: (goom_close):
11949           Free filter data when cleaning up. (Fixes: #334995)
11950
11951 2006-03-17  Tim-Philipp Müller  <tim at centricular dot net>
11952
11953         * configure.ac:
11954           Don't compile udp and rtsp plugins on win32 (mingw) or other
11955           systems that don't have <sys/socket.h> for some reason (#316203).
11956
11957 2006-03-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11958
11959         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_bus_reset),
11960         (gst_dv1394src_discover_avc_node), (gst_dv1394src_start):
11961         * ext/raw1394/gstdv1394src.h:
11962           Change bus reset handler so it reports useful information such as
11963           whether the device being used connected or disconnected
11964
11965 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
11966
11967         * gst/id3demux/id3v2frames.c:
11968         (parse_relative_volume_adjustment_two):
11969           We only care about gain and peak data for the master volume.
11970
11971 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
11972
11973         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
11974         (parse_id_string), (parse_unique_file_identifier),
11975         (parse_relative_volume_adjustment_two), (id3v2_tag_to_taglist):
11976           Read replay gain tags (#323721).
11977
11978 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
11979
11980         * configure.ac:
11981           Bump requirements to gst-plugins-base CVS because
11982           of buggy gst_tag_from_id3_user_tag() in 0.10.5.
11983
11984 2006-03-15  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
11985
11986         * rtp/gst/gstrtppcmadepay.c:
11987         Fixed one of the caps in the code from mulaw to alaw.
11988
11989 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
11990
11991         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain):
11992           Ensure that we set caps on the buffers we pass.
11993
11994         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
11995         (gst_id3demux_sink_activate):
11996           Ensure that we set caps on the buffers we pass.
11997
11998           Use STREAM, TYPE_NOT_FOUND as the error class when
11999           typefinding fails.
12000
12001 2006-03-15  Edward Hervey  <edward@fluendo.com>
12002
12003         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init):
12004         * ext/dv/gstdvdemux.c: (gst_dvdemux_init), (gst_dvdemux_add_pads):
12005         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
12006         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init),
12007         (gst_jpeg_dec_setcaps):
12008         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
12009         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init):
12010         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_init):
12011         * ext/libmng/gstmngdec.c: (gst_mngdec_init),
12012         (gst_mngdec_src_getcaps):
12013         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
12014         (gst_pngdec_caps_create_and_set):
12015         * ext/libpng/gstpngenc.c: (gst_pngenc_init):
12016         * ext/mikmod/gstmikmod.c: (gst_mikmod_init):
12017         * ext/speex/gstspeexdec.c: (gst_speex_dec_init):
12018         * gst/alpha/gstalpha.c: (gst_alpha_init):
12019         * gst/auparse/gstauparse.c: (gst_au_parse_init):
12020         * gst/avi/gstavidemux.c: (gst_avi_demux_init),
12021         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream):
12022         * gst/cutter/gstcutter.c: (gst_cutter_init):
12023         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
12024         (gst_efence_checkgetrange):
12025         * gst/debug/negotiation.c: (gst_negotiation_init):
12026         * gst/flx/gstflxdec.c: (gst_flxdec_init):
12027         * gst/goom/gstgoom.c: (gst_goom_init):
12028         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_init):
12029         * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_init):
12030         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_init):
12031         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_init):
12032         * gst/rtp/gstrtpdepay.c: (gst_rtp_depay_init):
12033         * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_init):
12034         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_init):
12035         * gst/smpte/gstsmpte.c: (gst_smpte_init):
12036         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
12037         (gst_wavparse_create_sourcepad):
12038         Fix memleak with gst_static_pad_template_get().
12039         This uses gst_pad_new_from_static_template() instead.
12040         Fixes #333512
12041
12042 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
12043
12044         * configure.ac:
12045           Bump -base requirement to 0.10.5 for gst_tag_from_id3_user_tag(),
12046           used by id3demux.
12047
12048         * gst/id3demux/gstid3demux.c: (plugin_init):
12049         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
12050         (parse_user_text_identification_frame),
12051         (parse_unique_file_identifier):
12052           Add support for UFID and TXXX frames and extract musicbrainz tags.
12053
12054 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
12055
12056         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
12057           Catch short reads, like they might happen with truncated
12058           files (see #305279); remove unnecessary indentation.
12059
12060 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
12061
12062         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
12063           Fix DIB image inversion for pictures with a
12064           depth != 8 (#305279).
12065
12066 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
12067
12068         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_class_init),
12069         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
12070         * ext/jpeg/gstjpegdec.h:
12071           Fix durations on outgoing buffers after seeking
12072           in MJPEG files (#334083); some minor clean-ups.
12073
12074 2006-03-13  Wim Taymans  <wim@fluendo.com>
12075
12076         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
12077         (gst_wavparse_change_state):
12078         Implement seek in READY (re-fixes #327658)
12079
12080 2006-03-13  Wim Taymans  <wim@fluendo.com>
12081
12082         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_setcaps):
12083         * ext/esd/esdmon.c: (gst_esdmon_get):
12084         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
12085         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
12086         (gst_gdk_pixbuf_sink_getcaps):
12087         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_getcaps),
12088         (gst_jpegenc_setcaps):
12089         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
12090         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps),
12091         (gst_smokeenc_setcaps):
12092         * ext/libmng/gstmngdec.c: (gst_mngdec_sinklink),
12093         (gst_mngdec_src_getcaps):
12094         * ext/libmng/gstmngenc.c: (gst_mngenc_sinklink),
12095         (gst_mngenc_chain):
12096         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
12097         * ext/mikmod/gstmikmod.c: (gst_mikmod_srclink):
12098         * ext/speex/gstspeexdec.c: (speex_dec_convert),
12099         (speex_dec_src_event), (speex_dec_chain):
12100         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect),
12101         (gst_avimux_audsinkconnect), (gst_avimux_handle_event):
12102         * gst/debug/negotiation.c: (gst_negotiation_getcaps),
12103         (gst_negotiation_pad_link), (gst_negotiation_chain):
12104         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
12105         (gst_flxdec_chain):
12106         * gst/interleave/deinterleave.c: (deinterleave_sink_link),
12107         (deinterleave_chain):
12108         * gst/law/mulaw-encode.c: (mulawenc_setcaps):
12109         * gst/median/gstmedian.c: (gst_median_link):
12110         * gst/monoscope/gstmonoscope.c: (gst_monoscope_srcconnect),
12111         (gst_monoscope_chain):
12112         * gst/rtp/gstrtpL16pay.c: (gst_rtpL16pay_sinkconnect):
12113         * gst/wavenc/gstwavenc.c: (gst_wavenc_sink_setcaps):
12114         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_chain):
12115         * sys/osxaudio/gstosxaudiosrc.c: (gst_osxaudiosrc_get):
12116         close #333784 unref the result of gst_pad_get_parent()
12117         by: Christophe Fergeau.
12118
12119 2006-03-09  Wim Taymans  <wim@fluendo.com>
12120
12121         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
12122         (gst_dvdemux_convert_segment), (gst_dvdemux_demux_frame):
12123         Handle events in push mode better, can now do non-flushing
12124         seeks in push mode as well.
12125
12126 2006-03-07  Wim Taymans  <wim@fluendo.com>
12127
12128         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_class_init):
12129         Applied patch from Kai Vehmanen, fixes #333624.
12130
12131 2006-03-06  Julien MOUTTE  <julien@moutte.net>
12132
12133         * ext/libpng/gstpngdec.c: (gst_pngdec_caps_create_and_set): 
12134         Implement paletted and grayscale png files handling.
12135         (#150363).
12136
12137 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12138
12139         * ext/speex/gstspeexenc.c: (gst_speexenc_set_header_on_caps),
12140         (gst_speexenc_chain):
12141           fix a tag list assert
12142           follow gst-plugins-base/ext/ogg/README; set OFFSET
12143           and OFFSET_END.  Muxes correctly with gst-plugins-base
12144           > 0.9.3
12145
12146 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
12147
12148         * gst/id3demux/Makefile.am:
12149         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad),
12150         (gst_id3demux_chain), (gst_id3demux_sink_activate):
12151           Use new typefind helper functions here as well, and
12152           do typefinding in pull-mode if upstream supports that.
12153
12154 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
12155
12156         * sys/sunaudio/gstsunaudiomixerctrl.c:
12157         (gst_sunaudiomixer_ctrl_get_volume),
12158         (gst_sunaudiomixer_ctrl_set_volume):
12159         * sys/sunaudio/gstsunaudiomixertrack.c:
12160         (gst_sunaudiomixer_track_new):
12161           Remove unused variables, breaks build from CVS
12162           with -Werror (#333392, patch by: Benjamin Pineau)
12163
12164 2006-03-03  Wim Taymans  <wim@fluendo.com>
12165
12166         * docs/plugins/Makefile.am:
12167         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12168         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12169         Added wavparse docs.
12170
12171         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
12172         (gst_wavparse_reset), (gst_wavparse_init),
12173         (gst_wavparse_create_sourcepad), (gst_wavparse_parse_file_header),
12174         (gst_wavparse_stream_init), (gst_wavparse_perform_seek),
12175         (gst_wavparse_stream_headers), (gst_wavparse_send_event),
12176         (gst_wavparse_stream_data), (gst_wavparse_loop),
12177         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull),
12178         (gst_wavparse_change_state):
12179         * gst/wavparse/gstwavparse.h:
12180         Implement seek in READY (fixes #327658)
12181         Added docs and did some cleanups.
12182
12183 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
12184
12185         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
12186         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
12187         (gst_avi_demux_calculate_durations_from_index),
12188         (gst_avi_demux_stream_header):
12189         * gst/avi/gstavidemux.h:
12190           If we have an index, use a duration based on the index instead
12191           of blindly trusting the information in the stream headers
12192           (fixes #331817).
12193
12194 2006-03-03  Wim Taymans  <wim@fluendo.com>
12195
12196         * docs/plugins/Makefile.am:
12197         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12198         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12199         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12200         Added smoke and jpeg to the docs.
12201
12202         * ext/jpeg/Makefile.am:
12203         * ext/jpeg/gstjpeg.c: (plugin_init):
12204         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
12205         * ext/jpeg/gstjpegenc.h:
12206         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
12207         (gst_smokedec_chain):
12208         * ext/jpeg/gstsmokedec.h:
12209         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
12210         * ext/jpeg/gstsmokeenc.h:
12211         * ext/jpeg/smokecodec.h:
12212         Port smokedec (fixes #331905).
12213         Added some docs.
12214         Some cleanups.
12215
12216 2006-03-03  Wim Taymans  <wim@fluendo.com>
12217
12218         * docs/plugins/Makefile.am:
12219         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12220         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12221         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12222         Added videobalance and videoflip to the docs.
12223
12224         * gst/videofilter/Makefile.am:
12225         * gst/videofilter/gstvideobalance.c:
12226         (gst_video_balance_update_tables_planar411),
12227         (gst_video_balance_is_passthrough),
12228         (gst_video_balance_update_properties), (oil_tablelookup_u8),
12229         (gst_video_balance_planar411_ip), (gst_video_balance_set_caps),
12230         (gst_video_balance_transform_ip), (gst_video_balance_base_init),
12231         (gst_video_balance_finalize), (gst_video_balance_class_init),
12232         (gst_video_balance_init), (gst_video_balance_interface_supported),
12233         (gst_video_balance_interface_init),
12234         (gst_video_balance_colorbalance_list_channels),
12235         (gst_video_balance_colorbalance_set_value),
12236         (gst_video_balance_colorbalance_get_value),
12237         (gst_video_balance_colorbalance_init),
12238         (gst_video_balance_set_property), (gst_video_balance_get_property),
12239         (gst_video_balance_get_type), (plugin_init):
12240         * gst/videofilter/gstvideobalance.h:
12241         Ported to 0.10. (Fixes #326160)
12242         Added docs.
12243
12244         * gst/videofilter/gstvideoflip.c:
12245         * gst/videofilter/gstvideoflip.h:
12246         Added docs.
12247
12248 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
12249
12250         * configure.ac:
12251           Bump requirements to current core and -base CVS
12252           (core for new typefind helper API, and -base for the
12253           WAVFORMATEX support that was added to libgstriff and
12254           is needed by wavparse).
12255         
12256         * gst/apetag/Makefile.am:
12257         * gst/apetag/gsttagdemux.c: (gst_tag_demux_chain),
12258         (gst_tag_demux_sink_activate):
12259           Use new typefind helpers for typefinding instead of our
12260           home-grown stuff; also, do typefinding in pull-mode if
12261           upstream supports that.
12262
12263 2006-02-28 Jürg Billeter  <j (at) bitron.ch>
12264
12265         Reviewed by: Christian Schaller <christian@fluendo.com>
12266
12267         This patch fixes bug: 329107
12268
12269         This Changelog entry is for a commit done on February 17
12270
12271         * ext/gconf/gconf.c
12272         * ext/gconf/gconf.h
12273         * ext/gconf/gstgconfaudiosink.c
12274         * ext/gconf/gstgconfaudiosink.h
12275         * gconf/gstreamer.schemas.in
12276
12277 2006-02-28  Wim Taymans  <wim@fluendo.com>
12278
12279         * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek),
12280         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
12281         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event),
12282         (gst_wavparse_sink_activate), (gst_wavparse_sink_activate_pull):
12283         Use DEBUG_OBJECT more.
12284
12285 2006-02-28  Wim Taymans  <wim@fluendo.com>
12286
12287         * docs/plugins/Makefile.am:
12288         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12289         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12290         Added dvdec and dvdemux to docs.
12291
12292         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_chain):
12293         Added docs.
12294         Check frame sizes so we don't crash when don't have enough
12295         data.
12296         Send nice error messages on error.
12297
12298         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init),
12299         (gst_dvdemux_class_init), (gst_dvdemux_init),
12300         (gst_dvdemux_finalize), (gst_dvdemux_reset),
12301         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
12302         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
12303         (gst_dvdemux_push_event), (gst_dvdemux_handle_sink_event),
12304         (gst_dvdemux_convert_src_pair), (gst_dvdemux_convert_sink_pair),
12305         (gst_dvdemux_convert_src_to_sink), (gst_dvdemux_handle_push_seek),
12306         (gst_dvdemux_do_seek), (gst_dvdemux_handle_pull_seek),
12307         (gst_dvdemux_handle_src_event), (gst_dvdemux_demux_audio),
12308         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
12309         (gst_dvdemux_flush), (gst_dvdemux_chain), (gst_dvdemux_loop),
12310         (gst_dvdemux_sink_activate_push), (gst_dvdemux_sink_activate_pull),
12311         (gst_dvdemux_sink_activate), (gst_dvdemux_change_state):
12312         * ext/dv/gstdvdemux.h:
12313         Added docs.
12314         Implement pull mode.
12315         Fix memleaks.
12316         Reduce memcpy for the video demuxing.
12317
12318 2006-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
12319
12320         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_sink_event),
12321         (gst_cmml_dec_new_buffer), (gst_cmml_dec_parse_preamble),
12322         (gst_cmml_dec_parse_head), (gst_cmml_dec_push_clip):
12323         * ext/annodex/gstcmmlparser.c: (gst_cmml_parser_parse_chunk):
12324           Add a little extra debug. Make the decoder not return NOT_LINKED,
12325           as we want to continue decoding all CMML and emitting tags.
12326
12327 2006-02-27  Michael Smith  <msmith@fluendo.com>
12328
12329         * ext/annodex/gstskeltag.c:
12330         * ext/annodex/gstskeltag.h:
12331           Deleted; these files aren't used any more either.
12332
12333 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12334
12335         * ext/Makefile.am: Fix dist-check.
12336
12337 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12338
12339         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_push_clip): Fix another
12340         memleak.
12341
12342 2006-02-25  Alessandro Decina <alessandro@nnva.org>
12343
12344         * ext/annodex/Makefile.am:
12345         * ext/annodex/gstannodex.c:
12346         * ext/annodex/gstcmmldec.c:
12347         * ext/annodex/gstcmmlenc.c:
12348         * ext/annodex/gstcmmlparser.c:
12349         * ext/annodex/gstcmmlparser.h:
12350         * ext/annodex/gstcmmlutils.c:
12351         * tests/check/elements/cmmldec.c:
12352         * tests/check/elements/cmmlenc.c:
12353           Fix a memleak in gst_cmml_track_list_add_clip.
12354           Handle overflows in clip's start and end times.
12355           Add the "encoded" parameter to cmmldec and cmmlenc caps.
12356           Do not parse junk at the end of a CMML preamble buffer.
12357           Register a libxml error handler to not print stuff on stderr.
12358           Check for bad clip start and end times in the testsuites.
12359
12360 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12361
12362         * ext/annodex/gstcmmldec.c: (gst_cmml_dec_class_init),
12363         (gst_cmml_dec_finalize), (gst_cmml_dec_change_state):
12364         * ext/annodex/gstcmmlenc.c: (gst_cmml_enc_class_init),
12365         (gst_cmml_enc_finalize), (gst_cmml_enc_change_state):
12366         * ext/annodex/gstcmmlutils.c: (gst_cmml_track_list_destroy): Fix
12367         possible memleaks.
12368
12369 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12370
12371         * tests/check/Makefile.am:
12372         * tests/check/elements/cmmldec.c:
12373         * tests/check/elements/cmmlenc.c: Fix tests so that they use
12374         the plugins-base tags.
12375
12376 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12377
12378         * ext/Makefile.am: Re-enable module.
12379
12380 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12381
12382         * tests/check/Makefile.am: Forgot to remove that test.
12383
12384 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12385
12386         * ext/annodex/Makefile.am:
12387         * ext/annodex/gstannodex.c: (plugin_init):
12388         * ext/annodex/gstcmmldec.c:
12389         * ext/annodex/gstskeldec.c:
12390         * ext/annodex/gstskeldec.h:
12391         * tests/check/Makefile.am:
12392         * tests/check/elements/skeldec.c: Try to fix Annodex plugin.
12393
12394 2006-02-25  Julien MOUTTE  <julien@moutte.net>
12395
12396         * tests/check/Makefile.am: Disable those checks as well.
12397
12398 2006-02-24  Julien MOUTTE  <julien@moutte.net>
12399
12400         * ext/Makefile.am: Disable annodex for now until we figure out
12401         how to make it build.
12402         * ext/gdk_pixbuf/Makefile.am: Note for Thomas :
12403         Add a rule to your checklist : "please try to at least build 
12404         what you are going to commit into -good, or if you are too lazy
12405         to do that, please check that the buildbots are not crying because
12406         of your commit."
12407
12408 2006-02-24  Edgard Lima  <edgard.lima@indt.org.br>
12409
12410         * configure.ac:
12411         * ext/Makefile.am:
12412         * ext/gdk_pixbuf/Makefile.am:
12413         * ext/gdk_pixbuf/gstgdkpixbuf.c:
12414         * ext/gdk_pixbuf/gstgdkpixbuf.h:
12415         * ext/gdk_pixbuf/pixbufscale.c:
12416         * ext/gdk_pixbuf/pixbufscale.h:
12417           Gdkpixbuf ported from 0.8 to 0.10 by
12418           Renato Filho <renato.filho@indt.org.br>.
12419           gst_loader and gdkpixbufanimation still need port.
12420
12421 2006-02-24  Michael Smith  <msmith@fluendo.com>
12422
12423         * configure.ac:
12424         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12425         * ext/Makefile.am:
12426         * ext/annodex/Makefile.am:
12427         * ext/annodex/gstannodex.c:
12428         * ext/annodex/gstannodex.h:
12429         * ext/annodex/gstcmmldec.c:
12430         * ext/annodex/gstcmmldec.h:
12431         * ext/annodex/gstcmmlenc.c:
12432         * ext/annodex/gstcmmlenc.h:
12433         * ext/annodex/gstcmmlparser.c:
12434         * ext/annodex/gstcmmlparser.h:
12435         * ext/annodex/gstcmmltag.c:
12436         * ext/annodex/gstcmmltag.h:
12437         * ext/annodex/gstcmmlutils.c:
12438         * ext/annodex/gstcmmlutils.h:
12439         * ext/annodex/gstskeldec.c:
12440         * ext/annodex/gstskeldec.h:
12441         * ext/annodex/gstskeltag.c:
12442         * ext/annodex/gstskeltag.h:
12443         * tests/check/Makefile.am:
12444         * tests/check/elements/cmmldec.c:
12445         * tests/check/elements/cmmlenc.c:
12446         * tests/check/elements/skeldec.c:
12447           Add Annodex elements from Alessendro Decina: skeleton and CMML. 
12448           Includes tests & docs, oh my! Passes Thomas's -good checklist
12449           entirely. Wow.
12450
12451 2006-02-24  Michael Smith  <msmith@fluendo.com>
12452
12453         * autogen.sh:
12454           Check for automake 1.9 as well.
12455
12456 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
12457
12458         * ext/flac/gstflacenc.c:
12459           Change min. sample rate to 8kHz to match flacdec's.
12460           
12461 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
12462
12463         * ext/cdio/Makefile.am:
12464           Add GST_BASE_CFLAGS and GST_BASE_LIBS (seems to be
12465           required for Cygwin, see #317048)
12466
12467         * gst/rtp/gstasteriskh263.c:
12468           Cygwin has includes for both the unix network socket API
12469           and the windows API, but only one can be included, so fix
12470           includes to only use one or the other, prefering the unxi
12471           one (#317048).
12472
12473 2006-02-23  Philippe Kalaf  <philippe.kalaf at collabora.co.uk>
12474
12475         * rtp/gst/gstrtppcmadepay.c:
12476         * rtp/gst/gstrtppcmadepay.h:
12477         * rtp/gst/gstgstrtppcmapay.c:
12478         * rtp/gst/gstgstrtppcmapay.h:
12479         * rtp/gst/gstrtppcmudepay.c:
12480         * rtp/gst/gstrtppcmudepay.h:
12481         * rtp/gst/gstrtppcmupay.c:
12482         * rtp/gst/gstrtppcmupay.h:
12483         * rtp/gst/Makefile.am:
12484         * rtp/gst/gstrtp.c:
12485         * rtp/gst/README:
12486         Separated the G711 payloaders/depayloaders into separate elements for
12487         mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
12488
12489 2006-02-22  Wim Taymans  <wim@fluendo.com>
12490
12491         * ext/dv/gstdvdec.c: (gst_dvdec_base_init), (gst_dvdec_init),
12492         (gst_dvdec_change_state):
12493         * ext/dv/gstdvdec.h:
12494         * ext/dv/gstdvdemux.c: (gst_dvdemux_base_init), (gst_dvdemux_init),
12495         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
12496         (gst_dvdemux_src_query), (gst_dvdemux_sink_query),
12497         (gst_dvdemux_handle_sink_event), (gst_dvdemux_demux_frame),
12498         (gst_dvdemux_flush), (gst_dvdemux_chain),
12499         (gst_dvdemux_change_state):
12500         * ext/dv/gstdvdemux.h:
12501         Ueber spiffify some more, added debug category.
12502         Use _scale.
12503         Use segments, respect playback rate from newsegment.
12504         Fix refcount issue.
12505
12506 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
12507
12508         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
12509         (gst_signal_processor_process):
12510         Fix compilation of LADPSA. It doesn't seem to work, and isn't
12511         enabled for the build, but it helps me win the feature-count
12512         competitions ooh yeah.
12513
12514 2006-02-19  Wim Taymans  <wim@fluendo.com>
12515
12516         * gst/avi/gstavidemux.c: (gst_avi_demux_src_convert),
12517         (gst_avi_demux_handle_src_query), (gst_avi_demux_handle_src_event),
12518         (gst_avi_demux_parse_file_header), (gst_avi_demux_stream_init),
12519         (gst_avi_demux_parse_avih), (gst_avi_demux_parse_superindex),
12520         (gst_avi_demux_parse_subindex), (gst_avi_demux_parse_stream),
12521         (gst_avi_demux_stream_header), (gst_avi_demux_change_state):
12522         Use scaling code for added precission and more correct stop
12523         position in case scale==0.
12524
12525 2006-02-19  Wim Taymans  <wim@fluendo.com>
12526
12527         * gst/flx/gstflxdec.c: (gst_flxdec_src_query_handler),
12528         (gst_flxdec_chain):
12529         * gst/flx/gstflxdec.h:
12530         Implement DURATION query.
12531
12532 2006-02-19  Wim Taymans  <wim@fluendo.com>
12533
12534         * gst/flx/flx_color.h:
12535         * gst/flx/flx_fmt.h:
12536         * gst/flx/gstflxdec.c: (gst_flxdec_init),
12537         (gst_flxdec_src_query_handler), (flx_decode_color),
12538         (gst_flxdec_chain):
12539         * gst/flx/gstflxdec.h:
12540         Set MALLOCDATA for the temp buffers so we don't leak.
12541         Some debug cleanups.
12542         Consume all data in the adapter before leaving the chain
12543         function. Fixes #330678.
12544
12545 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
12546
12547         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
12548         * gst/id3demux/id3v2frames.c: (id3v2_genre_fields_to_taglist):
12549          Handle 0 data size in otherwise valid frames.
12550          Handle numeric strings in 2.4.0 even when not in parentheses 
12551
12552 2006-02-18  Tim-Philipp Müller  <tim at centricular dot net>
12553
12554         * gst/matroska/matroska-demux.c:
12555         (gst_matroska_demux_subtitle_caps),
12556         (gst_matroska_demux_plugin_init):
12557         * gst/matroska/matroska-ids.h:
12558           Recognise SSA/ASS and USF subtitle formats and
12559           set proper caps when they are found.
12560
12561 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
12562
12563         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_decode_direct),
12564         (gst_jpeg_dec_chain):
12565           Fix invalid memory access for some odd-sized images
12566           (see image contained in quicktime stream in #327083);
12567           use g_malloc() instead of g_alloca().
12568
12569 2006-02-17  Wim Taymans  <wim@fluendo.com>
12570
12571         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
12572         Patch from Sebastien Cote, fixes #319884
12573
12574 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
12575
12576         * ext/cdio/gstcdio.c: (plugin_init):
12577           Init debug category (#331253).
12578
12579 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12580
12581         * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers):
12582           Pass extra_data to gst_riff_create_audio_caps(), so that
12583           WAVEFORMATEX stuff works. Post audio codec name and post
12584           it as taglist on the bus. Allow up to 8 channesl for raw
12585           PCM in the source pad template caps.
12586
12587 2006-02-16  Wim Taymans  <wim@fluendo.com>
12588
12589         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
12590         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
12591         (gst_multipart_demux_finalize), (gst_multipart_find_pad_by_mime),
12592         (gst_multipart_demux_chain), (gst_multipart_demux_change_state),
12593         (gst_multipart_set_property), (gst_multipart_get_property):
12594         Applied #318663. Gives quite a few false positives in
12595         autoscan mode, but it's better than nothing. Not closing yet.
12596
12597 2006-02-16  Wim Taymans  <wim@fluendo.com>
12598
12599         * docs/plugins/Makefile.am:
12600         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12601         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12602         * docs/plugins/gst-plugins-good-plugins.args:
12603         * docs/plugins/inspect/plugin-udp.xml:
12604         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init),
12605         (gst_udpsrc_start):
12606         Update documentation.
12607         Fix args.
12608
12609 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
12610
12611         * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list):
12612         ID3 2.3.0 used synch-safe integers for the tag size, but not for the
12613         frame size. (Fixes #331368)
12614
12615 2006-02-16  Wim Taymans  <wim@fluendo.com>
12616
12617         * gst/rtsp/README:
12618         Updated README.
12619
12620         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
12621         (gst_rtspsrc_class_init), (gst_rtspsrc_set_property),
12622         (gst_rtspsrc_get_property), (gst_rtspsrc_stream_setup_rtp):
12623         * gst/rtsp/gstrtspsrc.h:
12624         Make sure the RTP port is an even port an try to allocate 
12625         another if not.
12626         Added retry property to control max retries for port allocation.
12627         Make sure RTCP port is RTP port+1.
12628         Cleanup when port allocation fails.
12629         Fixes #319183.
12630         
12631 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
12632
12633         * gst/alpha/gstalpha.c: (gst_alpha_change_state):
12634           Don't ignore return value of the parent class's state
12635           change function (#331385, patch by: Wouter Paesen).
12636
12637 2006-02-15  Wim Taymans  <wim@fluendo.com>
12638
12639         * configure.ac:
12640         * docs/plugins/Makefile.am:
12641         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12642         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12643         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12644         * ext/Makefile.am:
12645         * ext/hal/Makefile.am:
12646         * ext/hal/gsthalaudiosink.c: (gst_hal_audio_sink_base_init),
12647         (gst_hal_audio_sink_class_init), (gst_hal_audio_sink_reset),
12648         (gst_hal_audio_sink_init), (gst_hal_audio_sink_dispose),
12649         (do_toggle_element), (gst_hal_audio_sink_set_property),
12650         (gst_hal_audio_sink_get_property),
12651         (gst_hal_audio_sink_change_state):
12652         * ext/hal/gsthalaudiosink.h:
12653         * ext/hal/gsthalaudiosrc.c: (gst_hal_audio_src_base_init),
12654         (gst_hal_audio_src_class_init), (gst_hal_audio_src_reset),
12655         (gst_hal_audio_src_init), (gst_hal_audio_src_dispose),
12656         (do_toggle_element), (gst_hal_audio_src_set_property),
12657         (gst_hal_audio_src_get_property), (gst_hal_audio_src_change_state):
12658         * ext/hal/gsthalaudiosrc.h:
12659         * ext/hal/gsthalelements.c: (plugin_init):
12660         * ext/hal/gsthalelements.h:
12661         * ext/hal/hal.c: (gst_hal_get_string),
12662         (gst_hal_render_bin_from_udi), (gst_hal_get_audio_sink),
12663         (gst_hal_get_audio_src):
12664         * ext/hal/hal.h:
12665         Add HAL sound device wrapper plugins. Closes #329106
12666
12667 2006-02-15  Wim Taymans  <wim@fluendo.com>
12668
12669         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
12670         Add comment in a fultile attempt to stop the copy-and-paste 
12671         paradigm leading to duplication of bad code.
12672
12673         * gst/rtsp/rtsptransport.c: (rtsp_transport_parse):
12674         Mime parameters have to be checked case insensitive
12675
12676 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
12677
12678         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
12679           Advance stream time for lagging subtitle streams by sending
12680           newsegment events with the update flag set.
12681
12682 2006-02-14  Edward Hervey  <edward@fluendo.com>
12683
12684         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
12685         There can be bogus data before the hdrl LIST tag in the RIFF header.
12686         It's hard to say if it's not respecting the AVI specifications or not,
12687         but since Google Video is producing AVIs like that and the other player
12688         don't seem to complain, I guess we should do the same.
12689
12690 2006-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
12691
12692         * gst/id3demux/id3v2frames.c: (parse_insert_string_field),
12693         (parse_split_strings):
12694         Add more validation to ensure that a char encoding conversion
12695         produced a valid UTF-8 string.
12696
12697 2006-02-13  Mark Nauwelaerts <manauw@skynet.be>
12698
12699         Reviewed by: Edward Hervey  <edward@fluendo.com>
12700
12701         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
12702         Properly handle end of segment. Closes #330885.
12703
12704 2006-02-13  Wim Taymans  <wim@fluendo.com>
12705
12706         * gst/rtp/gstrtpmp4gpay.h:
12707         For got to commit this one.
12708
12709 2006-02-12  Wim Taymans  <wim@fluendo.com>
12710
12711         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init),
12712         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_parse_audio_config),
12713         (gst_rtp_mp4g_pay_parse_video_config), (gst_rtp_mp4g_pay_new_caps),
12714         (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush):
12715         * gst/rtp/gstrtpmp4gpay.h:
12716         Make more things work.
12717         Handle ACC config strings.
12718
12719 2006-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
12720
12721         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_handle_buffer):
12722           set timestamps if no incoming timestamps set
12723
12724 2006-02-11  Tim-Philipp Müller  <tim at centricular dot net>
12725
12726         * gst/apetag/gsttagdemux.c: (gst_tag_demux_get_upstream_size),
12727         (gst_tag_demux_do_typefind):
12728           ... and fix the very same leaks in GstTagDemux.
12729
12730 2006-02-11  Jan Schmidt  <thaytan@mad.scientist.com>
12731
12732         * gst/id3demux/gstid3demux.c: (id3demux_get_upstream_size),
12733         (gst_id3demux_do_typefind):
12734         Fix a couple of mem leaks. (Patch by Jonathan Matthew
12735         <jonathan at kaolin dot wh9 dot net>)
12736
12737 2006-02-10  Wim Taymans  <wim@fluendo.com>
12738
12739         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
12740         First set options, then set caps or else the baseclass
12741         will not know about the options, duh.
12742
12743 2006-02-10  Wim Taymans  <wim@fluendo.com>
12744
12745         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_class_init),
12746         (gst_rtp_mp4v_pay_setcaps):
12747         Don't waste time looking for a config string if we have codec_info
12748         on the incomming caps.
12749
12750 2006-02-10  Wim Taymans  <wim@fluendo.com>
12751
12752         * gst/rtp/README:
12753         Say something about case-sensitivity of caps vs mime-attributes.
12754
12755         * gst/rtp/Makefile.am:
12756         * gst/rtp/gstrtp.c: (plugin_init):
12757         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
12758         (gst_rtp_amr_pay_handle_buffer):
12759         * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type),
12760         (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init),
12761         (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize),
12762         (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps),
12763         (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer),
12764         (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property),
12765         (gst_rtp_mp4g_pay_plugin_init):
12766         * gst/rtp/gstrtpmp4gpay.h:
12767         Added beginnings of mpeg4-generic payloader (RFC 3640)
12768
12769 2006-02-09  Wim Taymans  <wim@fluendo.com>
12770
12771         * gst/rtsp/Makefile.am:
12772         * gst/rtsp/gstrtpdec.c: (gst_rtpdec_get_type),
12773         (gst_rtpdec_class_init), (gst_rtpdec_init), (gst_rtpdec_getcaps),
12774         (gst_rtpdec_chain_rtp), (gst_rtpdec_chain_rtcp),
12775         (gst_rtpdec_set_property), (gst_rtpdec_get_property),
12776         (gst_rtpdec_change_state):
12777         * gst/rtsp/gstrtpdec.h:
12778         * gst/rtsp/gstrtsp.c: (plugin_init):
12779         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_stream_configure_transport):
12780         * gst/rtsp/rtspconnection.c: (read_body),
12781         (rtsp_connection_receive):
12782         * gst/rtsp/rtspmessage.c: (rtsp_message_dump):
12783         Resurected rtpdec to make rtspsrc happy again.
12784         Skip attributes from the session id.
12785         Don't crash when dumping a message with an empty body.
12786
12787
12788 2006-02-09  Wim Taymans  <wim@fluendo.com>
12789
12790         * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_chain):
12791         Added more meaningfull warnings when something goes wrong.
12792         Clear F bit on outgoing AMR packets.
12793
12794         * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init),
12795         (gst_rtp_amr_pay_handle_buffer):
12796         Added debugging category
12797         Support payloading of multiple AMR frames.
12798
12799         * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_depay_data):
12800         Added some debugging.
12801
12802 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
12803
12804         * configure.ac:
12805           Back to CVS
12806
12807 === release 0.10.2 ===
12808
12809 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
12810
12811         * configure.ac:
12812           releasing 0.10.2, "Papa was a rolling stone"
12813
12814 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
12815
12816         * configure.ac:
12817           Bump core and plugins-base requirement to 0.10.2.2
12818           for API additions (and 1 migration of gst_bin_find_unconnected_pad)
12819
12820 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12821
12822         * ext/flac/gstflac.c: (plugin_init):
12823         * ext/speex/gstspeex.c: (plugin_init):
12824           Register musicbrainz tags.
12825
12826 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
12827
12828         * ext/gconf/gconf.h:
12829           Remove declaration of function that no longer exists.
12830
12831 2006-02-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12832
12833         * ext/shout2/gstshout2.c: (gst_shout2send_render),
12834         (gst_shout2send_setcaps), (gst_shout2send_change_state):
12835         Make shout2 work for non ogg streams
12836
12837 2006-02-06  Wim Taymans  <wim@fluendo.com>
12838
12839         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
12840         (gst_multiudpsink_render), (gst_multiudpsink_get_property),
12841         (gst_multiudpsink_init_send), (gst_multiudpsink_add),
12842         (gst_multiudpsink_remove), (gst_multiudpsink_clear),
12843         (gst_multiudpsink_get_stats), (gst_multiudpsink_change_state):
12844         * gst/udp/gstmultiudpsink.h:
12845         Updated docs.
12846         Added properties bytes-served, bytes_to_serve.
12847         Post proper error messages,
12848         Emit client added signal too.
12849
12850 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12851
12852         * docs/plugins/Makefile.am:
12853         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12854         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12855         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
12856         (gst_multiudpsink_get_stats):
12857           adding docs for multiudpsink
12858
12859 2006-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12860
12861         * gst/level/gstlevel.c: (gst_level_transform_ip):
12862           peak below decay is not necessarily an error, so don't ERROR log
12863
12864 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12865
12866         * gst/matroska/ebml-write.c: (gst_ebml_write_reset),
12867         (gst_ebml_write_flush_cache), (gst_ebml_write_element_push),
12868         (gst_ebml_write_seek):
12869         * gst/matroska/ebml-write.h:
12870           Make sure we send a newsegment event in BYTES format
12871           before sending buffers (#328531).
12872
12873 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12874
12875         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query),
12876         (gst_dvdemux_sink_query):
12877         * ext/flac/gstflacdec.c: (gst_flac_dec_src_query):
12878         * ext/speex/gstspeexdec.c: (speex_get_query_types),
12879         (speex_dec_src_query):
12880         * ext/speex/gstspeexenc.c: (gst_speexenc_src_query),
12881         (gst_speexenc_sink_query):
12882         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
12883         * gst/matroska/matroska-demux.c:
12884         (gst_matroska_demux_get_src_query_types),
12885         (gst_matroska_demux_handle_src_query):
12886         * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types),
12887         (gst_wavparse_pad_query):
12888           Pass unhandled queries upstream instead of just dropping
12889           them (#326446). Update query type arrays here and there.
12890
12891 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12892
12893         * tests/check/elements/matroskamux.c: (setup_src_pad):
12894           Collectpads in core got changed and now also holds a
12895           reference to any pad that is part of it. Fix refcount
12896           checks in test case accordingly.
12897
12898 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12899
12900         * gst/apetag/gstapedemux.h:
12901           Fix include, for now GstTagDemux is in the apetag dir.
12902
12903 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12904
12905         * docs/plugins/Makefile.am:
12906         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12907         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12908         * docs/plugins/inspect/plugin-cdio.xml:
12909           Add cdio plugin to docs.
12910
12911         * ext/cdio/gstcdiocddasrc.c:
12912           Add gtk-doc blurb.
12913
12914         * ext/cdio/gstcdio.c:
12915           The plugin is called 'cdio' not 'cddio'.
12916
12917 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
12918
12919         * configure.ac:
12920         * docs/plugins/Makefile.am:
12921         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
12922         * docs/plugins/gst-plugins-good-plugins-sections.txt:
12923         * docs/plugins/gst-plugins-good-plugins.hierarchy:
12924         * docs/plugins/inspect/plugin-apetag.xml:
12925         * gst/apetag/Makefile.am:
12926         * gst/apetag/gstapedemux.c:
12927         * gst/apetag/gstapedemux.h:
12928         * gst/apetag/gsttagdemux.c:
12929         * gst/apetag/gsttagdemux.h:
12930           Add APE tag demuxer (#325649).
12931
12932 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
12933
12934         * ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
12935         (gst_gconf_get_default_video_sink),
12936         (gst_gconf_get_default_audio_src),
12937         (gst_gconf_get_default_video_src):
12938         * ext/gconf/gconf.h:
12939         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
12940         (gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
12941         (do_toggle_element):
12942         * ext/gconf/gstgconfaudiosink.h:
12943         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
12944         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
12945         (do_toggle_element):
12946         * ext/gconf/gstgconfaudiosrc.h:
12947         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
12948         (gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
12949         (do_toggle_element):
12950         * ext/gconf/gstgconfvideosink.h:
12951         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
12952         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
12953         (do_toggle_element):
12954         * ext/gconf/gstgconfvideosrc.h:
12955           Ignore changing the GConf key to "". Ignore GConf key updates
12956           that don't actually change the string.
12957           For now, ignore the GConf key when the state is > READY, as
12958           it breaks streaming. Sometime it will be nice to bring the
12959           new sink online even mid-stream, by sending NEWSEGMENT info
12960           and possibly prerolling.
12961           (Fixes #326736)
12962
12963 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
12964
12965         * gst/goom/filters.c: (zoomFilterNew), (calculatePXandPY),
12966         (setPixelRGB), (setPixelRGB_), (getPixelRGB), (getPixelRGB_),
12967         (zoomFilterSetResolution), (zoomFilterDestroy),
12968         (zoomFilterFastRGB), (pointFilter):
12969         * gst/goom/filters.h:
12970         * gst/goom/goom_core.c: (goom_init), (goom_set_resolution),
12971         (goom_update), (goom_close):
12972         * gst/goom/goom_core.h:
12973         * gst/goom/goom_tools.h:
12974         * gst/goom/graphic.c:
12975         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
12976         (gst_goom_dispose), (gst_goom_src_setcaps), (gst_goom_chain):
12977         * gst/goom/gstgoom.h:
12978         * gst/goom/lines.c: (goom_lines):
12979         * gst/goom/lines.h:
12980           Make goom reentrant by moving all important static variables
12981           into instance structures.
12982           (Fixes #329181)
12983
12984 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
12985
12986         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
12987         (gst_avi_demux_all_source_pads_unlinked),
12988         (gst_avi_demux_process_next_entry):
12989         * gst/avi/gstavidemux.h:
12990           Third attempt, use gst_pad_is_linked() this time.
12991
12992 2006-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
12993
12994         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
12995         (parse_split_strings):
12996         Adjust for data length indicators when parsing (Fixes #329810)
12997         Fix stupid bug parsing UTF-8 tag text.
12998         Output tag strings with multiple fields as multiple tags, so the
12999         app gets all the data.
13000
13001 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
13002
13003         * ext/flac/gstflacenc.c:
13004         Fixed a bug add in last commit, where no event is send. Thanks Tim to
13005         show me.
13006         
13007 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
13008
13009         * ext/flac/gstflacenc.c:
13010         * gst/matroska/ebml-read.c:
13011         Just make it compile with --disable-gst-debug.
13012
13013 2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
13014
13015         * gst/id3demux/id3v2frames.c: (parse_text_identification_frame),
13016         (id3v2_tag_to_taglist), (id3v2_genre_string_to_taglist),
13017         (id3v2_genre_fields_to_taglist):
13018           Never output a tag with a null contents string.
13019
13020 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
13021
13022         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked):
13023           Only pause if all pads are unlinked AND we've tried to send data
13024           on all of them at least once.
13025
13026 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
13027
13028         * gst/avi/gstavidemux.c: (gst_avi_demux_all_source_pads_unlinked),
13029         (gst_avi_demux_process_next_entry), (gst_avi_demux_loop):
13030           Make loop function/task pause itself when all source pads are
13031           unlinked.
13032
13033 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
13034
13035         * configure.ac:
13036         * ext/gconf/gconf.c: (gst_gconf_render_bin_from_key):
13037           Use new functions from core to render a bin from a
13038           string. Fixes build. Up requirements to core CVS.
13039
13040 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
13041
13042         * gst/auparse/gstauparse.c: (gst_au_parse_chain):
13043           Don't push buffers into the adapter that we are going to
13044           push downstream again without framing anyway. Also, the
13045           adaptor takes ownership of buffers put into it (fixes
13046           auparse pushing invalid buffers for .au files with
13047           ADPCM contents). Finally, set caps on all outgoing buffers.
13048
13049 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
13050
13051         * gst/id3demux/gstid3demux.c: (gst_id3demux_chain),
13052         (gst_id3demux_read_id3v1), (gst_id3demux_sink_activate),
13053         (gst_id3demux_send_tag_event):
13054         * gst/id3demux/id3tags.c: (id3demux_read_id3v1_tag):
13055         Someone should kick my butt. Remove ID3v1 tags from the end of the
13056         file.
13057
13058         Improve error messages. Send the TAG message as soon as we complete
13059         typefinding, instead of waiting until we send the first buffer.
13060         Downstream tag event is still sent before the first buffer.
13061
13062 2006-01-27  Jan Gerber  <j@bootlab.org>
13063
13064         Reviewed by: Andy Wingo <wingo@pobox.com>
13065
13066         * ext/dv/gstdvdec.c (gst_dvdec_change_state):
13067         * ext/dv/gstdvdemux.c (gst_dvdemux_change_state):
13068         Call dv_set_error_log (dv_decoder_t *, NULL); after dv_decoder_new
13069         to not have warings flooding stderr. this is the suggested way
13070         also used in dvgrab and kino. (#328336)
13071
13072 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
13073
13074         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
13075         (gst_oss_sink_init), (gst_oss_sink_finalise):
13076           Free the device name string when finalised.
13077
13078 2006-01-25  Tim-Philipp Müller  <tim at centricular dot net>
13079
13080         * gst/id3demux/gstid3demux.c: (gst_id3demux_remove_srcpad):
13081           Don't put function calls in g_return_if_fail() statements,
13082           or they'll be replaced with NOOPs if someone compiles with
13083           G_DISABLE_CHECKS defined.
13084           
13085 2006-01-25  Jan Schmidt  <thaytan@mad.scientist.com>
13086
13087         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13088         Never trust ANY information encoded in a media file, especially
13089         when it's giving you sizes. (Fixes #328452)
13090
13091 2006-01-24  Edgard Lima <edgard.lima@indt.org.br>
13092
13093         * gst/rtp/gstrtpg711pay.c:
13094         Patch written by Kai Vehmanen <kai.vehmanen@nokia.com> applied. See
13095         bug #325148.
13096
13097 2006-01-23  Edward Hervey  <edward@fluendo.com>
13098
13099         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps),
13100         (gst_matroska_demux_audio_caps), (gst_matroska_demux_plugin_init):
13101         * gst/matroska/matroska-ids.h:
13102         Added recognition of Real Audio and Video streams in matroska demuxer.
13103
13104 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
13105
13106         * gst/id3demux/id3v2frames.c: (id3v2_tag_to_taglist):
13107           Remove errant break statement, and fix compilation with
13108           older GCC.
13109
13110 2006-01-23  Brian Cameron  <brian dot cameron at sun dot com>
13111
13112         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13113
13114         * sys/sunaudio/gstsunaudiomixerctrl.c:
13115         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_init):
13116           Export functions that are needed in other parts of the code,
13117           makes the mixer actually work; adjust magic minimum buffer-time
13118           value from 3ms to 5ms to work around stuttering during mp3
13119           playback (#327765).
13120
13121 2006-01-23  Michal Benes  <michal dot benes at xeris dot cz>
13122
13123         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13124
13125         * gst/matroska/matroska-mux.c: (gst_matroska_mux_best_pad),
13126         (gst_matroska_mux_write_data), (gst_matroska_mux_collected):
13127           Fix possible deadlock in matroska muxer (#327825).
13128
13129 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
13130
13131         * ext/libpng/gstpngenc.c: (gst_pngenc_chain):
13132         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
13133         * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps):
13134         * gst/rtsp/sdpmessage.h:
13135         * gst/udp/gstdynudpsink.c: (gst_dynudpsink_render):
13136         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_get_stats):
13137           C89 fixes: declare variables at the beginning of a block and
13138           make gcc-2.9x happy (#328264; patch by: Jens Granseuer
13139           <jensgr at gmx dot net>).
13140
13141 2006-01-23  Jan Schmidt  <thaytan@mad.scientist.com>
13142
13143         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
13144         * gst/id3demux/id3tags.h:
13145         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
13146         (parse_comment_frame), (parse_text_identification_frame),
13147         (id3v2_tag_to_taglist), (id3v2_are_digits),
13148         (id3v2_genre_string_to_taglist), (id3v2_genre_fields_to_taglist),
13149         (parse_split_strings), (free_tag_strings):
13150           Rewrite parsing of text tags to handle multiple NULL terminated
13151           strings. Parse numeric genre strings and ID3v2 type
13152           "(3)(6)Alternative" style genre strings.
13153           Parse dates that are only YYYY or YYYY-mm format.
13154           (Fixes #328241 and #322154)
13155
13156 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
13157
13158         * gst/videobox/gstvideobox.c: (gst_video_box_class_init):
13159           Don't forget to initialize liboil, otherwise our oil functions
13160           will crash (fixes #327871; patch by: Christoph Burghardt
13161           <hawkes at web dot de>).
13162
13163 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
13164
13165         * configure.ac:
13166           Use plain AS_LIBTOOL_TAGS instead of AS_LIBTOOL_TAGS([CXX]), just
13167           like in the core and gst-plugins-base. Fixes #324367 and #326683;
13168           patch by: Brian Cameron <brian dot cameron at sun dot com>
13169
13170 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
13171
13172         * ext/cdio/gstcdio.c: (gst_cdio_add_cdtext_field), (plugin_init):
13173         * ext/cdio/gstcdio.h:
13174         * ext/cdio/gstcdiocddasrc.c: (gst_cdio_cdda_src_get_cdtext):
13175           Fix build for libcdio versions >= 76; give slightly lower rank
13176           than cdparanoia.
13177
13178 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
13179
13180         * configure.ac:
13181         * ext/Makefile.am:
13182         * ext/cdio/Makefile.am:
13183         * ext/cdio/gstcdio.c:
13184         * ext/cdio/gstcdio.h:
13185         * ext/cdio/gstcdiocddasrc.c:
13186         * ext/cdio/gstcdiocddasrc.h:
13187           Port libcdio cdda source, formerly known as cddasrc, now known as
13188           cdiocddasrc (fixes #323327). Should also read CD-TEXT if available,
13189           but that's not tested (fixes #317658).
13190
13191 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
13192
13193         * gst/wavparse/gstwavparse.c: (gst_wavparse_pad_convert):
13194           Fix conversion from TIME to BYTES format (fixes #326864;
13195           patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>)
13196
13197 2006-01-15  Jan Schmidt  <thaytan@mad.scientist.com>
13198
13199         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame):
13200           Fix compilation of id3demux when zlib is not present.
13201           (Fixes #326602; patch by: Sergey Scobich)
13202
13203 2006-01-15  Tim-Philipp Müller  <tim at centricular dot net>
13204
13205         * ext/esd/Makefile.am:
13206           Add $(ESD_CFLAGS), otherwise build will fail for folks
13207           with libesd in a non-standard prefix (#327009).
13208
13209 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13210
13211         * configure.ac:
13212           back to HEAD
13213
13214 === release 0.10.1 ===
13215
13216 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
13217
13218         * configure.ac:
13219           releasing 0.10.1, "Li"
13220
13221 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13222
13223           patch by: Wim Taymans
13224
13225         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13226           fix memleak.  Fixes #326618
13227
13228 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13229
13230           patch by: Mike Smith
13231
13232         * gst/level/gstlevel.c: (gst_level_message_new),
13233         (gst_level_message_append_channel):
13234           Fix memleak.  Fixes #326612
13235
13236 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13237
13238         * configure.ac:
13239           prereleasing
13240         * po/af.po:
13241         * po/az.po:
13242         * po/cs.po:
13243         * po/en_GB.po:
13244         * po/hu.po:
13245         * po/it.po:
13246         * po/nb.po:
13247         * po/nl.po:
13248         * po/or.po:
13249         * po/sq.po:
13250         * po/sr.po:
13251         * po/sv.po:
13252         * po/uk.po:
13253         * po/vi.po:
13254           update translations
13255
13256 2006-01-10  Michael Smith  <msmith@fluendo.com>
13257
13258         * gst/level/gstlevel.c: (gst_level_class_init),
13259         (gst_level_dispose):
13260           Don't leak filter arrays.
13261
13262 2006-01-09 Brian Cameron <brian.cameron@sun.com>
13263
13264         reviewed by: Christian Schaller <uraeus@gnome.org>
13265         
13266         * configure.ac:
13267         * gst-plugins-good.spec.in:
13268         * sys/Makefile.am:
13269         * sys/sunaudio/Makefile.am:
13270         * sys/sunaudio/gstsunaudio.c: (plugin_init):
13271         * sys/sunaudio/gstsunaudiomixer.c: (gst_sunaudiomixer_base_init),
13272         (gst_sunaudiomixer_class_init), (gst_sunaudiomixer_init),
13273         (gst_sunaudiomixer_change_state):
13274         * sys/sunaudio/gstsunaudiomixer.h:
13275         * sys/sunaudio/gstsunaudiomixerctrl.c:
13276         (gst_sunaudiomixer_ctrl_open), (gst_sunaudiomixer_ctrl_build_list),
13277         (gst_sunaudiomixer_ctrl_new), (gst_sunaudiomixer_ctrl_free),
13278         (gst_sunaudiomixer_ctrl_list_tracks),
13279         (gst_sunaudiomixer_ctrl_get_volume),
13280         (gst_sunaudiomixer_ctrl_set_volume),
13281         (gst_sunaudiomixer_ctrl_set_mute),
13282         (gst_sunaudiomixer_ctrl_set_record):
13283         * sys/sunaudio/gstsunaudiomixerctrl.h:
13284         * sys/sunaudio/gstsunaudiomixertrack.c:
13285         (gst_sunaudiomixer_track_class_init),
13286         (gst_sunaudiomixer_track_init), (fill_labels),
13287         (gst_sunaudiomixer_track_new):
13288         * sys/sunaudio/gstsunaudiomixertrack.h:
13289         * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_get_type),
13290         (gst_sunaudiosink_dispose), (gst_sunaudiosink_base_init),
13291         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property),
13292         (gst_sunaudiosink_getcaps), (gst_sunaudiosink_open),
13293         (gst_sunaudiosink_close), (gst_sunaudiosink_prepare),
13294         (gst_sunaudiosink_unprepare), (gst_sunaudiosink_write),
13295         (gst_sunaudiosink_delay), (gst_sunaudiosink_reset):
13296         * sys/sunaudio/gstsunaudiosink.h:
13297
13298         Add SunAudio plugin - tested to make sure it doesn't break
13299         the build under GNU/Linux.      
13300
13301 2005-01-07  Philippe Khalaf  <philippe.kalaf@collabora.co.uk>
13302
13303         * gst-plugins-good/gst/udp/gstdynudpsink.c:
13304         * gst-plugins-good/gst/udp/gstudpsrc.c:
13305         Allow udpsrc and dynudpsink to take a sockfd as a parameter. For udpsrc,
13306         overrides the port or multicast parameters. Fixes bugs #323021.
13307         API addition: adds GstUDPSrc::sockfd property   
13308
13309 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
13310
13311         * ext/gconf/Makefile.am:
13312         * ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_base_init),
13313         (gst_gconf_audio_src_class_init), (gst_gconf_audio_src_reset),
13314         (gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
13315         (do_toggle_element), (cb_toggle_element),
13316         (gst_gconf_audio_src_change_state):
13317         * ext/gconf/gstgconfaudiosrc.h:
13318         * ext/gconf/gstgconfelements.c: (plugin_init):
13319         * ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_base_init),
13320         (gst_gconf_video_src_class_init), (gst_gconf_video_src_reset),
13321         (gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
13322         (do_toggle_element), (cb_toggle_element),
13323         (gst_gconf_video_src_change_state):
13324         * ext/gconf/gstgconfvideosrc.h:
13325           Add new gconfaudiosrc and gconfvideosrc elements
13326           (needed for gnome-sound-recorder).
13327
13328 2006-01-06  Edward Hervey  <edward@fluendo.com>
13329
13330         * gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
13331         Add gst_element_no_more_pads() for proper decodebin behaviour.
13332         * gst/id3demux/id3v2frames.c: (parse_comment_frame),
13333         (parse_text_identification_frame), (parse_split_strings):
13334         Failure to decode some tags is not a GST_ERROR() but a
13335         GST_WARNING()
13336         When iterating over a chunk of text, check that we haven't gone too
13337         far.
13338
13339 2006-01-05  Stefan Kost  <ensonic@users.sf.net>
13340
13341         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
13342         (plugin_init):
13343           call oil_init() when using liboil
13344
13345 2006-01-04  Wim Taymans  <wim@fluendo.com>
13346
13347         * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain):
13348         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
13349         Fix leaks.
13350
13351 2006-01-02  Alessandro Decina  <alessandro at nnva dot org>
13352
13353         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13354
13355         * ext/flac/gstflacdec.c: (gst_flac_dec_write),
13356         (gst_flac_dec_convert_src), (gst_flac_dec_src_query),
13357         (gst_flac_dec_change_state):
13358           Don't g_assert() where we should just return FALSE; remove
13359           unnecessary g_assert(); initialize some fields properly in
13360           state change function (fixes #325504). Also, use
13361           GST_DEBUG_OBJECT in two more places.
13362
13363 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
13364
13365         * configure.ac:
13366           also remove smoothwave's Makefile.am
13367         * docs/plugins/Makefile.am:
13368           fix plugin docs
13369
13370 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
13371
13372         * tests/examples/Makefile.am:
13373           added missing Makefile.am
13374
13375 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
13376
13377         * configure.ac:
13378         * gst/level/Makefile.am:
13379         * gst/level/level-example.c:
13380         * tests/Makefile.am:
13381         * tests/examples/level/Makefile.am:
13382         * tests/examples/level/level-example.c: (message_handler), (main):
13383           moved level-example to tests/examples/level-example
13384         * tests/old/examples/level/demo.c: (main):
13385         * tests/old/examples/level/plot.c: (main):
13386           some initial fixes
13387
13388 2005-12-29  Michael Smith  <msmith@fluendo.com>
13389
13390         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
13391         (gst_multiudpsink_remove), (gst_multiudpsink_get_stats):
13392         * gst/udp/gstmultiudpsink.h:
13393           Track packets sent per client in addition to bytes sent; provide
13394           this info through get-stats signal
13395
13396 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
13397
13398         * gst/auparse/gstauparse.c: (gst_au_parse_dispose):
13399           Can't use gst_object_unref() on a GstAdapter (#325191).
13400
13401 2005-12-28  Jan Schmidt  <thaytan@mad.scientist.com>
13402
13403         * gst/id3demux/id3tags.c: (id3demux_read_id3v2_tag):
13404         If a broken tag has 0 bytes payload, at least still skip
13405         the 10 byte header
13406
13407 2005-12-22  Philippe Khalaf  <burger@speedy.org>
13408
13409         * gst-plugins-good/gst/rtp/gstrtph263pdepay.h:
13410         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
13411         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.h:
13412         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
13413           Making these depayloaders (H263+ and mpeg4 video) inherit from
13414           RtpBaseDepayloaderClass. Fixes bugs #323922 and #323908.
13415
13416 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
13417
13418         * docs/plugins/gst-plugins-good-plugins.args:
13419         * docs/plugins/gst-plugins-good-plugins.hierarchy:
13420         Regenerate the plugin hiearchy.
13421
13422 2005-12-21  Jan Schmidt  <thaytan@mad.scientist.com>
13423
13424         * docs/plugins/Makefile.am:
13425         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13426         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13427         * docs/plugins/gst-plugins-good-plugins.args:
13428         * gst/id3demux/gstid3demux.c: (gst_id3demux_get_type),
13429         (gst_id3demux_base_init), (gst_id3demux_class_init),
13430         (gst_id3demux_chain):
13431         * gst/id3demux/gstid3demux.h:
13432           Add documentation for id3demux.
13433           Don't fail if the first buffer is not at offset 0, just
13434           attempt to typefind and do pass through
13435           Rename the gst_type function from gst_gst_id3demux..
13436
13437 2005-12-20  Michael Smith  <msmith@fluendo.com>
13438
13439         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_render),
13440         (gst_multiudpsink_add), (gst_multiudpsink_remove),
13441         (gst_multiudpsink_get_stats):
13442         * gst/udp/gstmultiudpsink.h:
13443           Collect statistics; return them from get_stats.
13444
13445 2005-12-19  Edward Hervey  <edward@fluendo.com>
13446
13447         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
13448         Stupid signedness issue...
13449
13450 2005-12-19  Edward Hervey  <edward@fluendo.com>
13451
13452         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
13453         (gst_avi_demux_handle_src_event), (gst_avi_demux_parse_stream),
13454         (gst_avi_demux_parse_odml), (gst_avi_demux_peek_tag),
13455         (gst_avi_demux_next_data_buffer), (gst_avi_demux_stream_scan),
13456         (gst_avi_demux_stream_header), (gst_avi_demux_loop):
13457         Construct index for indexless files.
13458         Make sure pad/buffers are correctly reset to NULL once we don't need
13459         them anymore, else we get lovely segfaults/assertions.
13460         * gst/wavparse/gstwavparse.c:
13461         Yes, you can have 96KHz audio and wma in wav :(
13462
13463 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
13464
13465         * configure.ac:
13466           Check for optional dependency on zlib for id3demux
13467
13468         * gst/id3demux/Makefile.am:
13469         * gst/id3demux/gstid3demux.c: (gst_gst_id3demux_get_type),
13470         (gst_id3demux_base_init), (gst_id3demux_class_init),
13471         (gst_id3demux_reset), (gst_id3demux_init), (gst_id3demux_dispose),
13472         (gst_id3demux_add_srcpad), (gst_id3demux_remove_srcpad),
13473         (gst_id3demux_trim_buffer), (gst_id3demux_chain),
13474         (gst_id3demux_set_property), (gst_id3demux_get_property),
13475         (id3demux_get_upstream_size), (gst_id3demux_srcpad_event),
13476         (gst_id3demux_read_id3v1), (gst_id3demux_read_id3v2),
13477         (gst_id3demux_sink_activate), (gst_id3demux_src_activate_pull),
13478         (gst_id3demux_src_checkgetrange), (gst_id3demux_read_range),
13479         (gst_id3demux_src_getrange), (gst_id3demux_change_state),
13480         (gst_id3demux_pad_query), (gst_id3demux_get_query_types),
13481         (simple_find_peek), (simple_find_suggest),
13482         (gst_id3demux_do_typefind), (gst_id3demux_send_tag_event),
13483         (plugin_init):
13484         * gst/id3demux/gstid3demux.h:
13485         * gst/id3demux/id3tags.c: (read_synch_uint),
13486         (id3demux_read_id3v1_tag), (id3demux_read_id3v2_tag),
13487         (id3demux_id3v2_frame_hdr_size), (convert_fid_to_v240),
13488         (id3demux_id3v2_frames_to_tag_list):
13489         * gst/id3demux/id3tags.h:
13490         * gst/id3demux/id3v2.4.0-frames.txt:
13491         * gst/id3demux/id3v2.4.0-structure.txt:
13492         * gst/id3demux/id3v2frames.c: (id3demux_id3v2_parse_frame),
13493         (parse_comment_frame), (parse_text_identification_frame),
13494         (id3v2_tag_to_taglist), (parse_split_strings):
13495           All new LGPL id3 demuxer. Can use zlib for compressed frames, 
13496           otherwise it discards them. Works on my test files. 
13497
13498         * gst/wavparse/gstwavparse.c: (gst_wavparse_loop):
13499           Don't send EOS to a non-existing srcpad
13500           The debug category can be static
13501
13502 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
13503
13504         * ext/esd/esdmon.c: (gst_esdmon_open_audio):
13505         * ext/esd/esdsink.c: (gst_esdsink_prepare):
13506         * gst/multipart/multipartdemux.c:
13507           change some char* into char[]
13508
13509 2005-12-16  Wim Taymans  <wim@fluendo.com>
13510
13511         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
13512         (gst_wavparse_other), (gst_wavparse_perform_seek),
13513         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
13514         (gst_wavparse_loop), (gst_wavparse_pad_convert),
13515         (gst_wavparse_srcpad_event), (gst_wavparse_sink_activate_pull):
13516         * gst/wavparse/gstwavparse.h:
13517         Use GstSegment to implement more seeking features.
13518
13519 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
13520
13521         * gst/rtsp/rtspconnection.c:
13522           Add <netinet/in.h> include and move <arpa/inet.h> include
13523           to make things work on OpenBSD as well (fixes #323717;
13524           patch by: Benjamin Pineau)
13525
13526 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
13527
13528         * gst/rtp/gstrtpspeexdepay.c:
13529         * gst/rtp/gstrtpspeexpay.c:
13530         Set clock rate to be fixed in 8000. It fixes bug #324012.
13531
13532 2005-12-14  Philippe Khalaf  <burger@speedy.org>
13533
13534         * gst-plugins-good/gst/rtp/gstasteriskh263.c:
13535         * gst-plugins-good/gst/rtp/gstrtpamrdepay.c:
13536         * gst-plugins-good/gst/rtp/gstrtpamrpay.c:
13537         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
13538         * gst-plugins-good/gst/rtp/gstrtpg711depay.c:
13539         * gst-plugins-good/gst/rtp/gstrtpgsmdepay.c:
13540         * gst-plugins-good/gst/rtp/gstrtph263pay.c:
13541         * gst-plugins-good/gst/rtp/gstrtph263pdepay.c:
13542         * gst-plugins-good/gst/rtp/gstrtph263ppay.c:
13543         * gst-plugins-good/gst/rtp/gstrtpmp4vdepay.c:
13544         * gst-plugins-good/gst/rtp/gstrtpmp4vpay.c:
13545         * gst-plugins-good/gst/rtp/gstrtpmpadepay.c:
13546         * gst-plugins-good/gst/rtp/gstrtpmpapay.c:
13547         * gst-plugins-good/gst/rtp/README:
13548         Fixed payload range in payloder caps. Removed payload range completely
13549         from depayloaders as they don't require payload type in their caps.
13550         In effect, there isn't any specific payload type for any given codec,
13551         only suggestions.
13552         Fixes bug #324011.
13553
13554 2005-12-13  Julien MOUTTE  <julien@moutte.net>
13555
13556         * gst/videomixer/videomixer.c: (gst_videomixer_init),
13557         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
13558         (gst_videomixer_collected): Code cleanup and re-enabling 
13559         queued time validity check for correct EOS handling.
13560
13561 2005-12-13  Tim-Philipp Müller  <tim at centricular dot net>
13562
13563         * sys/oss/gstossmixerelement.c: (gst_oss_mixer_element_class_init),
13564         (gst_oss_mixer_element_get_property),
13565         (gst_oss_mixer_element_change_state):
13566         Add 'device-name' property and fix state change function.
13567
13568 2005-12-13  Edward Hervey  <edward@fluendo.com>
13569
13570         * gst/flx/gstflxdec.c: (gst_flxdec_chain): 
13571         If the speed of the file is null in the header, set the frame_time to
13572         the default setting of GST_SECOND / 70. Which is the default
13573         frame_delay for .fli files as stated in this document :
13574         http://www.compuphase.com/flic.htm
13575         Would be nice to have the time conversion done properly too (duration =
13576         flxh->frames * flxdec->frame_time)
13577
13578 2005-12-12  Julien MOUTTE  <julien@moutte.net>
13579
13580         * docs/plugins/Makefile.am:
13581         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13582         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13583         * docs/plugins/gst-plugins-good-plugins.hierarchy:
13584         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
13585         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
13586         (gst_videomixer_update_queues), (gst_videomixer_collected): Adding
13587         documentation for videomixer on my way with a funny sample
13588         pipeline.
13589
13590 2005-12-12  Julien MOUTTE  <julien@moutte.net>
13591
13592         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
13593         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
13594         (gst_videomixer_update_queues), (gst_videomixer_collected):
13595         Fix caps negotiation. (#323896)
13596
13597 2005-12-12  Arwed v. Merkatz  <v.merkatz@gmx.net>
13598
13599         * gst/matroska/matroska-demux.c:
13600         (gst_matroska_demux_parse_blockgroup_or_simpleblock):
13601           Set correct timestamps on audio laces, fixes playback of mp3 from
13602                 matroska.
13603
13604 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
13605
13606         * gst/auparse/gstauparse.c: (gst_au_parse_base_init),
13607         (gst_au_parse_class_init), (gst_au_parse_init),
13608         (gst_au_parse_dispose), (gst_au_parse_chain),
13609         (gst_au_parse_change_state), (plugin_init):
13610         * gst/auparse/gstauparse.h:
13611           Use gst_object_unref() for GstObjects instead of
13612           g_object_unref() and fix a mem leak in a debug
13613           statement; while we're at it, also borgify, use
13614           boilerplate macros and clean up a little bit.
13615
13616 2005-12-11  Edward Hervey  <edward@fluendo.com>
13617
13618         * gst/debug/efence.c: (gst_efence_init), (gst_efence_getrange),
13619         (gst_efence_checkgetrange), (gst_efence_activate_src_pull):
13620         Added pull mode.
13621
13622 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
13623
13624         * gst/goom/gstgoom.c:
13625         * gst/level/level-example.c: (main):
13626         * gst/smoothwave/demo-osssrc.c: (main):
13627           Use audiotestsrc instead of sinesrc (#323798).
13628
13629 2005-12-11  Stefan Kost  <ensonic@users.sf.net>
13630
13631         * sys/oss/gstosssink.c: (gst_oss_sink_class_init):
13632           more debug-func-ptr usage
13633
13634 2005-12-11  Zeeshan Ali <zeenix at gmail dot com>
13635
13636         * gst/flx/flx_color.c: (flx_colorspace_convert):
13637         * gst/flx/flx_color.h:
13638         * gst/flx/flx_fmt.h:
13639         * gst/flx/gstflxdec.c: (flx_decode_chunks), (gst_flxdec_chain):
13640         * gst/flx/gstflxdec.h:
13641           Now flxdec works on big-endian machines as well.
13642
13643 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
13644
13645         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
13646         (gst_fenced_buffer_copy):
13647           Make sure GST_BUFFER_DATA is set on fenced copied buffers; fix
13648           GST_DEBUG crasher where GST_TIME_FORMAT was not used in
13649           conjunction with GST_TIME_ARGS. Also, don't leak pad templates
13650           and use GST_DEBUG_FUNCPTR for pad functions.
13651
13652 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
13653
13654         * ext/flac/gstflacdec.c: (gst_flac_dec_base_init),
13655         (gst_flac_dec_class_init), (gst_flac_dec_init),
13656         (gst_flac_dec_metadata_callback), (gst_flac_dec_error_callback),
13657         (gst_flac_dec_eof), (gst_flac_dec_write), (gst_flac_dec_loop),
13658         (gst_flac_dec_convert_src), (gst_flac_dec_get_src_query_types),
13659         (gst_flac_dec_src_query), (gst_flac_dec_send_newsegment),
13660         (gst_flac_dec_handle_seek_event), (gst_flac_dec_src_event),
13661         (gst_flac_dec_change_state):
13662         * ext/flac/gstflacdec.h:
13663           Rewrite flacdec a bit, so that even seeking might work now. Most
13664           importantly, don't act upon any flow return values we get, just tell
13665           the decoder everything's dandy and act on the flow return values
13666           later on in the loop function. We don't want to mess up the internal
13667           decoder state for non-fatal things like flushing pads etc. Other
13668           than that, use GstSegment (segment seeks don't work yet though, but
13669           should be easy to add), use boilerplate macros, drop the superfluous
13670           'flacdec:' from debug messages, use gst_util_uint64_scale_int, and
13671           lots of other things.
13672
13673 2005-12-10  Tim-Philipp Müller  <tim at centricular dot net>
13674
13675         * configure.ac:
13676           Update comment in OSS includes check.
13677
13678         * sys/oss/gstossdmabuffer.c:
13679         * sys/oss/gstosshelper.c:
13680         * sys/oss/gstossmixer.c:
13681         * sys/oss/gstossmixertrack.c:
13682         * sys/oss/gstosssink.c:
13683         * sys/oss/gstosssrc.c:
13684         * sys/oss/oss_probe.c:
13685           Don't assume the OSS soundcard.h include is always in
13686           the sys/ directory. Instead, use the existing defines
13687           from config.h to include the right file. Fixes
13688           compilation on OpenBSD 3.8 (#323718).
13689
13690 2005-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13691
13692         * docs/plugins/gst-plugins-good-plugins-sections.txt:
13693         * docs/plugins/gst-plugins-good-plugins.hierarchy:
13694         * docs/plugins/inspect/plugin-1394.xml:
13695         * docs/plugins/inspect/plugin-aasink.xml:
13696         * docs/plugins/inspect/plugin-alaw.xml:
13697         * docs/plugins/inspect/plugin-alpha.xml:
13698         * docs/plugins/inspect/plugin-alphacolor.xml:
13699         * docs/plugins/inspect/plugin-auparse.xml:
13700         * docs/plugins/inspect/plugin-autodetect.xml:
13701         * docs/plugins/inspect/plugin-avi.xml:
13702         * docs/plugins/inspect/plugin-cacasink.xml:
13703         * docs/plugins/inspect/plugin-cairo.xml:
13704         * docs/plugins/inspect/plugin-cutter.xml:
13705         * docs/plugins/inspect/plugin-debug.xml:
13706         * docs/plugins/inspect/plugin-dv.xml:
13707         * docs/plugins/inspect/plugin-efence.xml:
13708         * docs/plugins/inspect/plugin-effectv.xml:
13709         * docs/plugins/inspect/plugin-esdsink.xml:
13710         * docs/plugins/inspect/plugin-flac.xml:
13711         * docs/plugins/inspect/plugin-flxdec.xml:
13712         * docs/plugins/inspect/plugin-gconfelements.xml:
13713         * docs/plugins/inspect/plugin-goom.xml:
13714         * docs/plugins/inspect/plugin-jpeg.xml:
13715         * docs/plugins/inspect/plugin-level.xml:
13716         * docs/plugins/inspect/plugin-matroska.xml:
13717         * docs/plugins/inspect/plugin-mulaw.xml:
13718         * docs/plugins/inspect/plugin-multipart.xml:
13719         * docs/plugins/inspect/plugin-navigationtest.xml:
13720         * docs/plugins/inspect/plugin-ossaudio.xml:
13721         * docs/plugins/inspect/plugin-png.xml:
13722         * docs/plugins/inspect/plugin-rtp.xml:
13723         * docs/plugins/inspect/plugin-rtsp.xml:
13724         * docs/plugins/inspect/plugin-shout2send.xml:
13725         * docs/plugins/inspect/plugin-smpte.xml:
13726         * docs/plugins/inspect/plugin-speex.xml:
13727         * docs/plugins/inspect/plugin-udp.xml:
13728         * docs/plugins/inspect/plugin-videobox.xml:
13729         * docs/plugins/inspect/plugin-videoflip.xml:
13730         * docs/plugins/inspect/plugin-videomixer.xml:
13731         * docs/plugins/inspect/plugin-wavenc.xml:
13732         * docs/plugins/inspect/plugin-wavparse.xml:
13733         * ext/flac/gstflac.c: (plugin_init):
13734         * ext/flac/gstflacdec.c: (flacdec_get_type),
13735         (gst_flac_dec_base_init), (gst_flac_dec_class_init),
13736         (gst_flac_dec_init), (gst_flac_dec_finalize),
13737         (gst_flac_dec_update_metadata), (gst_flac_dec_metadata_callback),
13738         (gst_flac_dec_error_callback), (gst_flac_dec_seek),
13739         (gst_flac_dec_tell), (gst_flac_dec_length), (gst_flac_dec_eof),
13740         (gst_flac_dec_read), (gst_flac_dec_write), (gst_flac_dec_loop),
13741         (gst_flac_dec_get_src_formats), (gst_flac_dec_convert_src),
13742         (gst_flac_dec_get_src_query_types), (gst_flac_dec_src_query),
13743         (gst_flac_dec_src_event), (gst_flac_dec_sink_activate),
13744         (gst_flac_dec_sink_activate_pull), (gst_flac_dec_change_state):
13745         * ext/flac/gstflacdec.h:
13746         * ext/flac/gstflacenc.c: (gst_flac_enc_quality_get_type),
13747         (gst_flac_enc_base_init), (gst_flac_enc_class_init),
13748         (gst_flac_enc_init), (gst_flac_enc_finalize), (add_one_tag),
13749         (gst_flac_enc_set_metadata), (gst_flac_enc_sink_setcaps),
13750         (gst_flac_enc_update_quality), (gst_flac_enc_seek_callback),
13751         (gst_flac_enc_write_callback), (gst_flac_enc_tell_callback),
13752         (gst_flac_enc_sink_event), (gst_flac_enc_chain),
13753         (gst_flac_enc_set_property), (gst_flac_enc_get_property),
13754         (gst_flac_enc_change_state):
13755         * ext/flac/gstflacenc.h:
13756           borgify and fix up documentation
13757
13758 2005-12-09  Michael Smith  <msmith@fluendo.com>
13759
13760         * ext/flac/gstflacdec.c: (raw_caps_factory), (gst_flacdec_write):
13761           Accept a wider range of flac files, more closely matching flac spec.
13762
13763 2005-12-08  Julien MOUTTE  <julien@moutte.net>
13764
13765         * docs/plugins/Makefile.am: Add multipart elements.
13766         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13767         * docs/plugins/gst-plugins-good-plugins-sections.txt: Fix flac.
13768         * docs/plugins/gst-plugins-good-plugins.hierarchy:
13769         * gst/multipart/multipartdemux.c:
13770         * gst/multipart/multipartmux.c: Add docs.
13771
13772 2005-12-07  Edward Hervey  <edward@fluendo.com>
13773
13774         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
13775         (gst_avi_demux_parse_stream), (gst_avi_demux_stream_header),
13776         (gst_avi_demux_invert):
13777         Memleak and crasher fixes.
13778         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
13779         (gst_wavparse_create_sourcepad), (gst_wavparse_stream_headers):
13780         Memleak fixes
13781
13782 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13783
13784         * ext/aalib/gstaasink.h:
13785         * ext/cairo/gsttextoverlay.h:
13786         * ext/dv/gstdvdec.h:
13787         * ext/dv/gstdvdemux.c:
13788         * ext/dv/gstdvdemux.h:
13789         * ext/esd/esdsink.h:
13790         * ext/flac/flac_compat.h:
13791         * ext/flac/gstflacdec.h:
13792         * ext/flac/gstflacenc.h:
13793         * ext/gconf/gconf.h:
13794         * ext/gconf/gstgconfaudiosink.h:
13795         * ext/gconf/gstgconfvideosink.h:
13796         * ext/gdk_pixbuf/gstgdkanimation.h:
13797         * ext/jpeg/gstjpegdec.h:
13798         * ext/jpeg/smokecodec.h:
13799         * ext/jpeg/smokeformat.h:
13800         * ext/ladspa/gstsignalprocessor.h:
13801         * ext/ladspa/search.c: (LADSPAPluginSearch):
13802         * ext/ladspa/utils.h:
13803         * ext/libmng/gstmng.c:
13804         * ext/libmng/gstmngdec.h:
13805         * ext/libmng/gstmngenc.c:
13806         * ext/libmng/gstmngenc.h:
13807         * ext/libpng/gstpng.c:
13808         * ext/libpng/gstpngenc.c:
13809         * ext/libpng/gstpngenc.h:
13810         * ext/shout2/gstshout2.h:
13811         * ext/speex/gstspeexdec.h:
13812         * ext/speex/gstspeexenc.c:
13813         * ext/speex/gstspeexenc.h:
13814         * gst/auparse/gstauparse.c: (gst_auparse_chain):
13815         * gst/autodetect/gstautoaudiosink.h:
13816         * gst/autodetect/gstautovideosink.h:
13817         * gst/avi/gstavidemux.h:
13818         * gst/cutter/gstcutter.c: (gst_cutter_chain),
13819         (gst_cutter_set_property), (gst_cutter_get_caps):
13820         * gst/cutter/gstcutter.h:
13821         * gst/debug/tests.c: (md5_process_block):
13822         * gst/debug/tests.h:
13823         * gst/effectv/gstwarp.c:
13824         * gst/flx/flx_fmt.h:
13825         * gst/flx/gstflxdec.h:
13826         * gst/goom/filters.c: (setPixelRGB), (getPixelRGB), (getPixelRGB_),
13827         (zoomFilterFastRGB):
13828         * gst/goom/filters.h:
13829         * gst/goom/goom_tools.h:
13830         * gst/law/alaw-encode.c:
13831         * gst/level/gstlevel.c:
13832         * gst/level/gstlevel.h:
13833         * gst/matroska/ebml-write.h:
13834         * gst/matroska/matroska-demux.h:
13835         * gst/matroska/matroska-ids.h:
13836         * gst/matroska/matroska-mux.h:
13837         * gst/monoscope/convolve.c: (convolve_match):
13838         * gst/monoscope/convolve.h:
13839         * gst/multipart/multipartmux.c:
13840         * gst/oldcore/gstaggregator.c:
13841         * gst/oldcore/gstaggregator.h:
13842         * gst/oldcore/gstmd5sink.c: (md5_process_block):
13843         * gst/oldcore/gstmd5sink.h:
13844         * gst/oldcore/gstmultifilesrc.c:
13845         * gst/oldcore/gstmultifilesrc.h:
13846         * gst/oldcore/gstpipefilter.h:
13847         * gst/oldcore/gstshaper.h:
13848         * gst/rtp/gstrtpL16depay.h:
13849         * gst/rtp/gstrtpL16pay.h:
13850         * gst/rtp/gstrtpdepay.h:
13851         * gst/rtp/gstrtpmp4vpay.c:
13852         * gst/rtp/gstrtpmp4vpay.h:
13853         * gst/rtsp/gstrtspsrc.c:
13854         * gst/rtsp/gstrtspsrc.h:
13855         * gst/rtsp/rtspconnection.h:
13856         * gst/rtsp/rtspdefs.h:
13857         * gst/rtsp/rtspmessage.h:
13858         * gst/rtsp/rtsptransport.h:
13859         * gst/rtsp/rtspurl.c:
13860         * gst/rtsp/rtspurl.h:
13861         * gst/rtsp/sdpmessage.c:
13862         * gst/rtsp/sdpmessage.h:
13863         * gst/smpte/barboxwipes.c:
13864         * gst/smpte/gstmask.h:
13865         * gst/smpte/gstsmpte.h:
13866         * gst/smpte/paint.c:
13867         * gst/smpte/paint.h:
13868         * gst/udp/gstdynudpsink.h:
13869         * gst/udp/gstmultiudpsink.h:
13870         * gst/udp/gstudpsink.c:
13871         * gst/udp/gstudpsink.h:
13872         * gst/udp/gstudpsrc.c:
13873         * gst/videomixer/videomixer.c:
13874         * gst/wavenc/riff.h:
13875         * gst/wavparse/gstwavparse.h:
13876         * sys/oss/gstossdmabuffer.h:
13877         * sys/oss/gstossmixer.h:
13878         * sys/oss/gstossmixerelement.h:
13879         * sys/oss/gstossmixertrack.h:
13880         * sys/oss/gstosssink.c:
13881         * sys/oss/gstosssink.h:
13882         * sys/oss/gstosssrc.c:
13883         * sys/oss/gstosssrc.h:
13884         * sys/osxaudio/gstosxaudioelement.h:
13885         * sys/osxaudio/gstosxaudiosink.h:
13886         * sys/osxaudio/gstosxaudiosrc.h:
13887           expand tabs
13888
13889 === release 0.10.0 ===
13890
13891 2005-12-05   <thomas (at) apestaart (dot) org>
13892
13893         * configure.ac:
13894           releasing 0.10.0, "Abondance"
13895
13896 2005-12-05  Andy Wingo  <wingo@pobox.com>
13897
13898         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
13899         * ext/flac/gstflacdec.c: (gst_flacdec_write):
13900         * ext/flac/gstflacenc.c: (gst_flacenc_write_callback):
13901         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
13902         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_chain):
13903         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain):
13904         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_chain):
13905         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_process):
13906         * ext/libpng/gstpngdec.c: (user_info_callback), (gst_pngdec_task):
13907         * ext/speex/gstspeexdec.c: (speex_dec_chain):
13908         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
13909         * gst/auparse/gstauparse.c: (gst_auparse_chain):
13910         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
13911         * gst/goom/gstgoom.c: (gst_goom_chain):
13912         * gst/matroska/matroska-demux.c:
13913         (gst_matroska_demux_push_vorbis_codec_priv_data),
13914         (gst_matroska_demux_add_wvpk_header):
13915         * gst/multipart/multipartdemux.c: (gst_multipart_demux_chain):
13916         * gst/multipart/multipartmux.c: (gst_multipart_mux_collected):
13917         * gst/videomixer/videomixer.c: (gst_videomixer_collected):
13918         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Update for
13919         alloc_buffer changes.
13920
13921 2005-12-05  Michael Smith  <msmith@fluendo.com>
13922
13923         * docs/plugins/gst-plugins-good-plugins.args:
13924           Remove args for plugins that aren't in -good.
13925
13926 === release 0.9.7 ===
13927
13928 2005-12-01   <thomas (at) apestaart (dot) org>
13929
13930         * configure.ac:
13931           releasing 0.9.7, "Mijn Hond Heeft Geen Neus"
13932
13933 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13934
13935         * docs/plugins/.cvsignore:
13936         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
13937         * docs/plugins/inspect/plugin-multipart.xml:
13938         * docs/plugins/inspect/plugin-rtp.xml:
13939           add multipart plugin to docs
13940
13941 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13942
13943         * configure.ac:
13944         * ext/Makefile.am:
13945         * ext/pango/Makefile.am:
13946         * ext/pango/gstclockoverlay.c:
13947         * ext/pango/gstclockoverlay.h:
13948         * ext/pango/gsttextoverlay.c:
13949         * ext/pango/gsttextoverlay.h:
13950         * ext/pango/gsttextrender.c:
13951         * ext/pango/gsttextrender.h:
13952         * ext/pango/gsttimeoverlay.c:
13953         * ext/pango/gsttimeoverlay.h:
13954           move pango to base
13955
13956 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13957
13958         * gst/rtp/Makefile.am:
13959         * gst/rtp/gstrtpL16depay.c:
13960         * gst/rtp/gstrtpL16depay.h:
13961         * gst/rtp/gstrtpL16parse.c:
13962         * gst/rtp/gstrtpL16parse.h:
13963         * gst/rtp/gstrtpgsmdepay.c:
13964         * gst/rtp/gstrtpgsmdepay.h:
13965         * gst/rtp/gstrtpgsmparse.c:
13966         * gst/rtp/gstrtpgsmparse.h:
13967           parsers are depayers
13968
13969 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13970
13971         * gst/rtp/Makefile.am:
13972         * gst/rtp/gstasteriskh263.c:
13973         * gst/rtp/gstrtp.c:
13974         * gst/rtp/gstrtpL16enc.c:
13975         * gst/rtp/gstrtpL16enc.h:
13976         * gst/rtp/gstrtpL16parse.c:
13977         * gst/rtp/gstrtpL16parse.h:
13978         * gst/rtp/gstrtpL16pay.c:
13979         * gst/rtp/gstrtpL16pay.h:
13980         * gst/rtp/gstrtpamrdec.c:
13981         * gst/rtp/gstrtpamrdec.h:
13982         * gst/rtp/gstrtpamrdepay.c:
13983         * gst/rtp/gstrtpamrdepay.h:
13984         * gst/rtp/gstrtpamrenc.c:
13985         * gst/rtp/gstrtpamrenc.h:
13986         * gst/rtp/gstrtpamrpay.c:
13987         * gst/rtp/gstrtpamrpay.h:
13988         * gst/rtp/gstrtpdec.c:
13989         * gst/rtp/gstrtpdec.h:
13990         * gst/rtp/gstrtpdepay.c:
13991         * gst/rtp/gstrtpdepay.h:
13992         * gst/rtp/gstrtpg711dec.c:
13993         * gst/rtp/gstrtpg711dec.h:
13994         * gst/rtp/gstrtpg711depay.c:
13995         * gst/rtp/gstrtpg711depay.h:
13996         * gst/rtp/gstrtpg711enc.c:
13997         * gst/rtp/gstrtpg711enc.h:
13998         * gst/rtp/gstrtpg711pay.c:
13999         * gst/rtp/gstrtpg711pay.h:
14000         * gst/rtp/gstrtpgsmenc.c:
14001         * gst/rtp/gstrtpgsmenc.h:
14002         * gst/rtp/gstrtpgsmparse.c:
14003         * gst/rtp/gstrtpgsmparse.h:
14004         * gst/rtp/gstrtpgsmpay.c:
14005         * gst/rtp/gstrtpgsmpay.h:
14006         * gst/rtp/gstrtph263enc.c:
14007         * gst/rtp/gstrtph263enc.h:
14008         * gst/rtp/gstrtph263pay.c:
14009         * gst/rtp/gstrtph263pay.h:
14010         * gst/rtp/gstrtph263pdec.c:
14011         * gst/rtp/gstrtph263pdec.h:
14012         * gst/rtp/gstrtph263pdepay.c:
14013         * gst/rtp/gstrtph263pdepay.h:
14014         * gst/rtp/gstrtph263penc.c:
14015         * gst/rtp/gstrtph263penc.h:
14016         * gst/rtp/gstrtph263ppay.c:
14017         * gst/rtp/gstrtph263ppay.h:
14018         * gst/rtp/gstrtpmp4vdec.c:
14019         * gst/rtp/gstrtpmp4vdec.h:
14020         * gst/rtp/gstrtpmp4vdepay.c:
14021         * gst/rtp/gstrtpmp4vdepay.h:
14022         * gst/rtp/gstrtpmp4venc.c:
14023         * gst/rtp/gstrtpmp4venc.h:
14024         * gst/rtp/gstrtpmp4vpay.c:
14025         * gst/rtp/gstrtpmp4vpay.h:
14026         * gst/rtp/gstrtpmpadec.c:
14027         * gst/rtp/gstrtpmpadec.h:
14028         * gst/rtp/gstrtpmpadepay.c:
14029         * gst/rtp/gstrtpmpadepay.h:
14030         * gst/rtp/gstrtpmpaenc.c:
14031         * gst/rtp/gstrtpmpaenc.h:
14032         * gst/rtp/gstrtpmpapay.c:
14033         * gst/rtp/gstrtpmpapay.h:
14034         * gst/rtp/gstrtpspeexdec.c:
14035         * gst/rtp/gstrtpspeexdec.h:
14036         * gst/rtp/gstrtpspeexdepay.c:
14037         * gst/rtp/gstrtpspeexdepay.h:
14038         * gst/rtp/gstrtpspeexenc.c:
14039         * gst/rtp/gstrtpspeexenc.h:
14040         * gst/rtp/gstrtpspeexpay.c:
14041         * gst/rtp/gstrtpspeexpay.h:
14042           Do burger's rename for rtp payloaders and depayloaders
14043
14044 2005-11-30  Wim Taymans  <wim@fluendo.com>
14045
14046         * ext/dv/gstdvdec.c: (gst_dvdec_chain):
14047         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
14048         * ext/dv/gstdvdemux.h:
14049         Fix seeking in dvdemux again, add some more debug info.
14050
14051 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14052
14053         * configure.ac:
14054           fix tests
14055
14056 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14057
14058         * PORTED_09:
14059         * docs/random/PORTED_09:
14060           move
14061         * tests/Makefile.am:
14062           add
14063         * win32/gst.sln:
14064           remove
14065
14066 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14067
14068         * Makefile.am:
14069         * check/.cvsignore:
14070         * check/Makefile.am:
14071         * check/elements/.cvsignore:
14072         * check/elements/level.c:
14073         * check/elements/matroskamux.c:
14074         * configure.ac:
14075         * examples/Makefile.am:
14076         * examples/capsfilter/Makefile.am:
14077         * examples/capsfilter/capsfilter1.c:
14078         * examples/gob/Makefile.am:
14079         * examples/gob/gst-identity2.gob:
14080         * examples/gstplay/.cvsignore:
14081         * examples/gstplay/Makefile.am:
14082         * examples/gstplay/player.c:
14083         * examples/indexing/.cvsignore:
14084         * examples/indexing/Makefile.am:
14085         * examples/indexing/indexmpeg.c:
14086         * examples/level/Makefile.am:
14087         * examples/level/README:
14088         * examples/level/demo.c:
14089         * examples/level/plot.c:
14090         * examples/stats/Makefile.am:
14091         * examples/stats/mp2ogg.c:
14092         * examples/switch/.cvsignore:
14093         * examples/switch/Makefile.am:
14094         * examples/switch/switcher.c:
14095           move under tests/
14096
14097 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
14098
14099         * ext/pango/gsttextrender.c: (gst_text_render_base_init),
14100         (gst_text_render_class_init), (resize_bitmap),
14101         (gst_text_render_render_text), (gst_text_render_setcaps),
14102         (gst_text_render_fixate_caps), (gst_text_renderer_bitmap_to_ayuv),
14103         (gst_text_render_chain), (gst_text_render_finalize),
14104         (gst_text_render_init), (gst_text_render_set_property):
14105         * ext/pango/gsttextrender.h:
14106           Add missing files.
14107
14108 2005-11-30  Tim-Philipp Müller  <tim at centricular dot net>
14109
14110         * configure.ac:
14111         * ext/Makefile.am:
14112         * ext/pango/Makefile.am:
14113         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_base_init),
14114         (gst_clock_overlay_render_time), (gst_clock_overlay_get_text),
14115         (gst_clock_overlay_class_init), (gst_clock_overlay_init):
14116         * ext/pango/gstclockoverlay.h:
14117         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
14118         (gst_text_overlay_get_text), (gst_text_overlay_class_init),
14119         (gst_text_overlay_finalize), (gst_text_overlay_init),
14120         (gst_text_overlay_update_wrap_mode), (gst_text_overlay_setcaps),
14121         (gst_text_overlay_text_pad_linked),
14122         (gst_text_overlay_text_pad_unlinked),
14123         (gst_text_overlay_set_property), (gst_text_overlay_getcaps),
14124         (gst_text_overlay_shade_y), (gst_text_overlay_blit_yuv420),
14125         (gst_text_overlay_resize_bitmap), (gst_text_overlay_render_text),
14126         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
14127         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
14128         (gst_text_overlay_change_state), (plugin_init):
14129         * ext/pango/gsttextoverlay.h:
14130         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_base_init),
14131         (gst_time_overlay_render_time), (gst_time_overlay_get_text),
14132         (gst_time_overlay_class_init), (gst_time_overlay_init):
14133         * ext/pango/gsttimeoverlay.h:
14134           Port pango-based textoverlay, timeoverlay and textrender to 0.9 
14135           and add background shading and text wrapping modes. Make 
14136           timoverlay derive from textoverlay. Also add new clockoverlay
14137           element.
14138
14139 2005-11-30  Julien MOUTTE  <julien@moutte.net>
14140
14141         * gst/udp/Makefile.am: Moved to netbuffer.
14142
14143 2005-11-30  Julien MOUTTE  <julien@moutte.net>
14144
14145         * configure.ac:
14146         * PORTED_O9:
14147         * gst/multipart/Makefile.am:
14148         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
14149         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
14150         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
14151         (gst_multipart_demux_change_state),
14152         (gst_multipart_demux_plugin_init):
14153         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
14154         (gst_multipart_mux_init), (gst_multipart_mux_finalize),
14155         (gst_multipart_mux_sinkconnect),
14156         (gst_multipart_mux_request_new_pad),
14157         (gst_multipart_mux_handle_src_event),
14158         (gst_multipart_mux_queue_pads), (gst_multipart_mux_collected),
14159         (gst_multipart_mux_change_state): Ported multipart mux/demux to
14160         0.9.
14161
14162 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
14163
14164         * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
14165         * gst/debug/gstnavigationtest.h:
14166         * gst/effectv/gstaging.c: (gst_agingtv_get_type):
14167         * gst/effectv/gstdice.c: (gst_dicetv_get_type):
14168         * gst/effectv/gstedge.c: (gst_edgetv_get_type):
14169         * gst/effectv/gstquark.c: (gst_quarktv_get_type):
14170         * gst/effectv/gstrev.c: (gst_revtv_get_type):
14171         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
14172         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
14173         * gst/effectv/gstwarp.c: (gst_warptv_get_type):
14174         * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
14175         (gst_video_flip_get_type):
14176         * gst/videofilter/gstvideoflip.h:
14177           update for symbols change
14178
14179 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14180
14181         * gst/udp/gstdynudpsink.c:
14182         * gst/udp/gstudpsrc.c:
14183           the old gstnet lib was renamed gstnetbuffer (#322257)
14184
14185 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
14186
14187         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_render_text),
14188         (gst_text_overlay_collected):
14189           Actually render the text from the text pad.
14190
14191 2005-11-29  Edward Hervey  <edward@fluendo.com>
14192
14193         * gst/debug/gstnavseek.c: (gst_navseek_event):
14194         * gst/debug/progressreport.c: (gst_progress_report_event):
14195         Update for GstBaseTransform event virtual method
14196
14197 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14198
14199         * ext/cairo/Makefile.am:
14200           no need to link to videofilter
14201
14202 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14203
14204         * gst/debug/Makefile.am:
14205         * gst/debug/gstnavigationtest.h:
14206         * gst/effectv/Makefile.am:
14207         * gst/effectv/gstaging.c:
14208         * gst/effectv/gstdice.c:
14209         * gst/effectv/gstedge.c:
14210         * gst/effectv/gstquark.c:
14211         * gst/effectv/gstrev.c:
14212         * gst/effectv/gstshagadelic.c:
14213         * gst/effectv/gstvertigo.c:
14214         * gst/effectv/gstwarp.c:
14215         * gst/videofilter/Makefile.am:
14216         * gst/videofilter/gstvideofilter.c:
14217         * gst/videofilter/gstvideofilter.h:
14218         * gst/videofilter/gstvideoflip.h:
14219           remove the videofilter library and link to the one in base
14220
14221 2005-11-28  Edward Hervey  <edward@fluendo.com>
14222
14223         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
14224         Useless check now we're setting the current entry correctly.
14225
14226 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
14227
14228         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain),
14229         (gst_jpegenc_set_property), (gst_jpegenc_get_property),
14230         (gst_jpegenc_change_state):
14231           Don't leak input buffer in chain function (fixes #322667); make 
14232           state change function thread-safe; don't repeat the current function
14233           name in GST_DEBUG statements; use GST_ROUND_UP_* macros; use
14234           gst_pad_alloc_buffer(); misc. minor cleanups.
14235
14236 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
14237
14238         * gst/matroska/matroska-mux.c:
14239         (gst_matroska_mux_video_pad_setcaps):
14240         Look for pixel-aspect-ratio in caps, not pixel_width and
14241         pixel_height (Fixes: #322645)
14242
14243 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
14244
14245         * gst/matroska/matroska-mux.c:
14246         (gst_matroska_mux_video_pad_setcaps):
14247         From Michal Benes:
14248         frame duration should be GST_SECOND / framerate, not
14249         GST_SECOND * framerate. (Fixes: #322643)
14250
14251 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14252
14253         * configure.ac:
14254           fix up GST_PLUGIN_LDFLAGS
14255         * gst/rtsp/rtspconnection.c:
14256           fix includes (see #317043)
14257         * gst/videofilter/Makefile.am:
14258           stop installing this library
14259
14260 2005-11-26  Edward Hervey  <edward@fluendo.com>
14261
14262         * ext/dv/gstdvdec.c: (gst_dvdec_sink_setcaps):
14263         Handle the case where the incoming Video dv stream doesn't have
14264         a pixel aspect ratio set.
14265
14266 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
14267
14268         * docs/plugins/Makefile.am:
14269         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14270         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14271         * ext/flac/gstflacdec.c:
14272           document flacdec
14273
14274 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
14275
14276         * docs/plugins/Makefile.am:
14277         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14278         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14279         * docs/plugins/inspect/plugin-autodetect.xml:
14280         * ext/cairo/gstcairo.c: (plugin_init):
14281         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
14282         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
14283         (gst_text_overlay_init), (gst_text_overlay_font_init),
14284         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
14285         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
14286         (gst_text_overlay_text_pad_linked),
14287         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
14288         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
14289         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
14290         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
14291         (gst_text_overlay_change_state):
14292         * ext/cairo/gsttextoverlay.h:
14293         * ext/cairo/gsttimeoverlay.c:
14294         (gst_cairo_time_overlay_update_font_height),
14295         (gst_cairo_time_overlay_set_caps),
14296         (gst_cairo_time_overlay_get_unit_size),
14297         (gst_cairo_time_overlay_print_smpte_time),
14298         (gst_cairo_time_overlay_transform),
14299         (gst_cairo_time_overlay_base_init),
14300         (gst_cairo_time_overlay_class_init), (gst_cairo_time_overlay_init),
14301         (gst_cairo_time_overlay_get_type):
14302         * ext/cairo/gsttimeoverlay.h:
14303           do some name borgifying
14304           document
14305
14306 2005-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
14307
14308         * docs/plugins/Makefile.am:
14309         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
14310         * docs/plugins/gst-plugins-good-plugins-sections.txt:
14311         * gst/autodetect/gstautoaudiosink.c:
14312         (gst_auto_audio_sink_base_init):
14313         * gst/autodetect/gstautovideosink.c:
14314         (gst_auto_video_sink_base_init),
14315         (gst_auto_video_sink_factory_filter):
14316           documenting auto*sink
14317           using strstr for the video sink lookup, class field is not ordered
14318         * docs/plugins/inspect/plugin-1394.xml:
14319         * docs/plugins/inspect/plugin-aasink.xml:
14320         * docs/plugins/inspect/plugin-alaw.xml:
14321         * docs/plugins/inspect/plugin-alpha.xml:
14322         * docs/plugins/inspect/plugin-alphacolor.xml:
14323         * docs/plugins/inspect/plugin-auparse.xml:
14324         * docs/plugins/inspect/plugin-autodetect.xml:
14325         * docs/plugins/inspect/plugin-avi.xml:
14326         * docs/plugins/inspect/plugin-cacasink.xml:
14327         * docs/plugins/inspect/plugin-cairo.xml:
14328         * docs/plugins/inspect/plugin-cutter.xml:
14329         * docs/plugins/inspect/plugin-debug.xml:
14330         * docs/plugins/inspect/plugin-dv.xml:
14331         * docs/plugins/inspect/plugin-efence.xml:
14332         * docs/plugins/inspect/plugin-effectv.xml:
14333         * docs/plugins/inspect/plugin-esdsink.xml:
14334         * docs/plugins/inspect/plugin-flac.xml:
14335         * docs/plugins/inspect/plugin-flxdec.xml:
14336         * docs/plugins/inspect/plugin-gconfelements.xml:
14337         * docs/plugins/inspect/plugin-goom.xml:
14338         * docs/plugins/inspect/plugin-jpeg.xml:
14339         * docs/plugins/inspect/plugin-level.xml:
14340         * docs/plugins/inspect/plugin-matroska.xml:
14341         * docs/plugins/inspect/plugin-mulaw.xml:
14342         * docs/plugins/inspect/plugin-navigationtest.xml:
14343         * docs/plugins/inspect/plugin-ossaudio.xml:
14344         * docs/plugins/inspect/plugin-png.xml:
14345         * docs/plugins/inspect/plugin-rtp.xml:
14346         * docs/plugins/inspect/plugin-rtsp.xml:
14347         * docs/plugins/inspect/plugin-shout2send.xml:
14348         * docs/plugins/inspect/plugin-smpte.xml:
14349         * docs/plugins/inspect/plugin-speex.xml:
14350         * docs/plugins/inspect/plugin-udp.xml:
14351         * docs/plugins/inspect/plugin-videobox.xml:
14352         * docs/plugins/inspect/plugin-videoflip.xml:
14353         * docs/plugins/inspect/plugin-videomixer.xml:
14354         * docs/plugins/inspect/plugin-wavenc.xml:
14355         * docs/plugins/inspect/plugin-wavparse.xml:
14356           update for HEAD version
14357
14358 2005-11-25  Michael Smith  <msmith@fluendo.com>
14359
14360         * gst/udp/gstudpsrc.c: (gst_udpsrc_stop):
14361           Patch from Sebastien Cote to close control sockets in udpsrc.
14362
14363 2005-11-24  Julien MOUTTE  <julien@moutte.net>
14364
14365         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
14366         (gst_quarktv_get_unit_size), (gst_quarktv_transform),
14367         (gst_quarktv_planetable_clear), (gst_quarktv_change_state),
14368         (gst_quarktv_base_init), (gst_quarktv_class_init),
14369         (gst_quarktv_init): Flush the planes list on reverse caps
14370         negotiation. This was crashing because of differently sized
14371         buffers.
14372
14373 2005-11-24  Julien MOUTTE  <julien@moutte.net>
14374
14375         * gst/debug/gstnavigationtest.c: (draw_box_planar411):
14376         * gst/videofilter/gstvideoflip.c: (gst_videoflip_method_get_type),
14377         (gst_videoflip_set_caps), (gst_videoflip_transform_caps),
14378         (gst_videoflip_get_unit_size), (gst_videoflip_flip),
14379         (gst_videoflip_transform), (gst_videoflip_handle_src_event),
14380         (gst_videoflip_set_property), (gst_videoflip_base_init),
14381         (gst_videoflip_class_init), (gst_videoflip_init): Handle strides
14382         correctly, fix identity flipping, convert navigation event 
14383         correctly again.
14384
14385 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14386
14387         * configure.ac: back to HEAD
14388
14389 === release 0.9.6 ===
14390
14391 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
14392
14393         * configure.ac:
14394           releasing 0.9.6, "Everything's Not Lost"
14395
14396 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
14397
14398         * gst/debug/gstnavigationtest.c: (gst_navigationtest_init):
14399         Oops, initialise the framerate GValue
14400
14401 2005-11-23  Julien MOUTTE  <julien@moutte.net>
14402
14403         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
14404         (gst_timeoverlay_set_caps), (gst_timeoverlay_get_unit_size),
14405         (gst_timeoverlay_transform), (gst_timeoverlay_base_init),
14406         (gst_timeoverlay_class_init), (gst_timeoverlay_init),
14407         (gst_timeoverlay_get_type):
14408         * ext/cairo/gsttimeoverlay.h:
14409         * gst/debug/Makefile.am:
14410         * gst/debug/gstnavigationtest.c:
14411         (gst_navigationtest_handle_src_event),
14412         (gst_navigationtest_get_unit_size), (gst_navigationtest_set_caps),
14413         (gst_navigationtest_transform), (gst_navigationtest_change_state),
14414         (gst_navigationtest_base_init), (gst_navigationtest_class_init),
14415         (gst_navigationtest_init), (gst_navigationtest_get_type),
14416         (plugin_init):
14417         * gst/debug/gstnavigationtest.h:
14418         * gst/effectv/Makefile.am:
14419         * gst/effectv/gstaging.c: (gst_agingtv_set_caps),
14420         (gst_agingtv_get_unit_size), (gst_agingtv_transform),
14421         (gst_agingtv_base_init), (gst_agingtv_class_init),
14422         (gst_agingtv_init), (gst_agingtv_get_type):
14423         * gst/effectv/gstdice.c: (gst_dicetv_set_caps),
14424         (gst_dicetv_get_unit_size), (gst_dicetv_transform),
14425         (gst_dicetv_base_init), (gst_dicetv_class_init), (gst_dicetv_init),
14426         (gst_dicetv_get_type):
14427         * gst/effectv/gstedge.c: (gst_edgetv_set_caps),
14428         (gst_edgetv_get_unit_size), (gst_edgetv_transform),
14429         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
14430         (gst_edgetv_get_type):
14431         * gst/effectv/gsteffectv.c:
14432         * gst/effectv/gsteffectv.h:
14433         * gst/effectv/gstquark.c: (gst_quarktv_set_caps),
14434         (gst_quarktv_get_unit_size), (fastrand), (gst_quarktv_transform),
14435         (gst_quarktv_change_state), (gst_quarktv_base_init),
14436         (gst_quarktv_class_init), (gst_quarktv_init),
14437         (gst_quarktv_get_type):
14438         * gst/effectv/gstrev.c: (gst_revtv_set_caps),
14439         (gst_revtv_get_unit_size), (gst_revtv_transform),
14440         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
14441         (gst_revtv_get_type):
14442         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_set_caps),
14443         (gst_shagadelictv_get_unit_size), (gst_shagadelictv_transform),
14444         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
14445         (gst_shagadelictv_init), (gst_shagadelictv_get_type):
14446         * gst/effectv/gstvertigo.c: (gst_vertigotv_set_caps),
14447         (gst_vertigotv_get_unit_size), (gst_vertigotv_transform),
14448         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
14449         (gst_vertigotv_init), (gst_vertigotv_get_type):
14450         * gst/effectv/gstwarp.c: (gst_warptv_set_caps),
14451         (gst_warptv_get_unit_size), (gst_warptv_transform),
14452         (gst_warptv_base_init), (gst_warptv_class_init), (gst_warptv_init),
14453         (gst_warptv_get_type):
14454         * gst/videofilter/Makefile.am:
14455         * gst/videofilter/gstvideobalance.c:
14456         * gst/videofilter/gstvideobalance.h:
14457         * gst/videofilter/gstvideofilter.c: (gst_videofilter_get_type),
14458         (gst_videofilter_class_init), (gst_videofilter_init):
14459         * gst/videofilter/gstvideofilter.h:
14460         * gst/videofilter/gstvideoflip.c: (gst_videoflip_set_caps),
14461         (gst_videoflip_transform_caps), (gst_videoflip_get_unit_size),
14462         (gst_videoflip_flip), (gst_videoflip_transform),
14463         (gst_videoflip_handle_src_event), (gst_videoflip_set_property),
14464         (gst_videoflip_base_init), (gst_videoflip_class_init),
14465         (gst_videoflip_init), (plugin_init), (gst_videoflip_get_type):
14466         * gst/videofilter/gstvideoflip.h: VideoFilter inherits from
14467         BaseTransform, it's just a place holder for now and every video
14468         effect plugin has been ported to use BaseTransform features 
14469         directly. QuarkTV was fixed too (was broken), navigationtest works
14470         and best for the end, videoflip converts navigation events depending
14471         on flip method ! Fixes #320953
14472
14473 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
14474
14475         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
14476         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_collected):
14477         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
14478         (gst_goom_src_negotiate), (gst_goom_chain):
14479         * gst/matroska/matroska-mux.c:
14480         (gst_matroska_mux_video_pad_setcaps):
14481         * sys/osxvideo/osxvideosink.m:
14482           Fixes for API changes
14483
14484 2005-11-23  Michael Smith <msmith@fluendo.com>
14485
14486         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_setcaps),
14487         (gst_jpeg_dec_chain), (gst_jpeg_dec_change_state):
14488         * ext/jpeg/gstjpegdec.h:
14489         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_setcaps):
14490         * ext/jpeg/gstjpegenc.h:
14491         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps),
14492         (gst_smokeenc_resync):
14493         * ext/jpeg/gstsmokeenc.h:
14494           JPEG fractiony goodness.
14495
14496 2005-11-22  Michael Smith <msmith@fluendo.com>
14497
14498         * gst/goom/filters.c:
14499         * gst/goom/graphic.h:
14500           Fix compilation by making some functions static inline instead of
14501           extern inline, matching the way they're used.
14502
14503 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
14504
14505         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_init),
14506         (gst_text_overlay_setcaps), (gst_text_overlay_collected):
14507         * ext/cairo/gsttextoverlay.h:
14508         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link):
14509         * ext/gdk_pixbuf/gstgdkpixbuf.h:
14510         * ext/libpng/gstpngdec.c: (gst_pngdec_init),
14511         (gst_pngdec_caps_create_and_set):
14512         * ext/libpng/gstpngdec.h:
14513         * ext/libpng/gstpngenc.c: (gst_pngenc_setcaps):
14514         * gst/alpha/gstalphacolor.c: (gst_alpha_color_set_caps):
14515         * gst/avi/gstavimux.c: (gst_avimux_init),
14516         (gst_avimux_vidsinkconnect):
14517         * gst/flx/gstflxdec.c: (gst_flxdec_chain):
14518         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_setcaps),
14519         (gst_goom_src_negotiate), (gst_goom_chain):
14520         * gst/goom/gstgoom.h:
14521         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
14522         * gst/matroska/matroska-mux.c:
14523         (gst_matroska_mux_video_pad_setcaps):
14524         * sys/osxvideo/osxvideosink.h:
14525         * sys/osxvideo/osxvideosink.m:
14526           More fractional framerate conversions 
14527
14528 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
14529
14530         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
14531         * gst/debug/gstnavigationtest.c:
14532         (gst_navigationtest_handle_src_event):
14533         * gst/videofilter/gstvideofilter.c:
14534         (gst_videofilter_format_get_structure), (gst_videofilter_setcaps),
14535         (gst_videofilter_init):
14536         * gst/videofilter/gstvideofilter.h:
14537           Convert to fractional framerates.
14538
14539 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14540
14541         * ext/aalib/gstaasink.c:
14542         * ext/dv/gstdvdec.c:
14543         * ext/esd/esdmon.c:
14544         * ext/flac/gstflacenc.c:
14545         * ext/gdk_pixbuf/pixbufscale.c:
14546         * ext/libcaca/gstcacasink.c:
14547         * ext/shout2/gstshout2.c:
14548         * gst/alpha/gstalpha.c:
14549         * gst/oldcore/gstaggregator.c:
14550         * gst/oldcore/gstshaper.c:
14551         * gst/smpte/barboxwipes.c:
14552         * gst/smpte/gstsmpte.c:
14553         * gst/videobox/gstvideobox.c:
14554         * gst/videofilter/gstvideoflip.c:
14555         * gst/videomixer/videomixer.c:
14556           fix up more enums
14557
14558 2005-11-22  Michael Smith <msmith@fluendo.com>
14559
14560         * gst/videomixer/videomixer.c: (gst_videomixer_pad_sink_setcaps),
14561         (gst_videomixer_getcaps), (gst_videomixer_fill_queues),
14562         (gst_videomixer_update_queues):
14563           Fractional framerates, videomixer.
14564
14565 2005-11-22  Michael Smith <msmith@fluendo.com>
14566
14567         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_sink_setcaps):
14568         * ext/dv/gstdvdec.h:
14569         * ext/dv/gstdvdemux.c: (gst_dvdemux_init),
14570         (gst_dvdemux_src_convert), (gst_dvdemux_sink_convert),
14571         (gst_dvdemux_demux_video), (gst_dvdemux_demux_frame),
14572         (gst_dvdemux_flush):
14573         * ext/dv/gstdvdemux.h:
14574           Fractional framerates for DV. 
14575
14576 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
14577
14578         * gst/autodetect/gstautoaudiosink.c:
14579         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
14580         * gst/autodetect/gstautovideosink.c:
14581         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
14582           Use gst_plugin_feature_list_free() to free feature list and
14583           in the case of autovideosink free the list at all. Also
14584           miscellaneous cosmetic fixes.
14585
14586 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14587
14588         * gst/cutter/gstcutter.c: (gst_cutter_chain),
14589         (gst_cutter_set_property), (gst_cutter_get_caps):
14590           copy calculation code from level; remove use of some audio
14591           functions
14592
14593 2005-11-22  Andy Wingo  <wingo@pobox.com>
14594
14595         * Update for gst_tag_setter API changes.
14596
14597 2005-11-22  Andy Wingo  <wingo@pobox.com>
14598
14599         * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event)
14600         (gst_dvdemux_demux_frame)
14601         * ext/flac/gstflacdec.c (gst_flacdec_write)
14602         * ext/flac/gstflacenc.c (gst_flacenc_seek_callback)
14603         (gst_flacenc_sink_event)
14604         * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init)
14605         * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init)
14606         * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set)
14607         * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain)
14608         * gst/auparse/gstauparse.c (gst_auparse_chain)
14609         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init)
14610         * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init)
14611         * gst/avi/gstavidemux.c (gst_avi_demux_stream_header)
14612         (gst_avi_demux_handle_seek)
14613         * gst/goom/gstgoom.c (gst_goom_event)
14614         * gst/matroska/ebml-write.c (gst_ebml_write_seek)
14615         * gst/matroska/matroska-demux.c
14616         (gst_matroska_demux_handle_seek_event)
14617         (gst_matroska_demux_loop_stream_parse_id)
14618         * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file)
14619         * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek)
14620         (gst_wavparse_stream_headers): Run update-funcnames.
14621
14622 2005-11-22  Edward Hervey  <edward@fluendo.com>
14623
14624         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
14625         (gst_dv1394src_init), (gst_dv1394src_dispose),
14626         (gst_dv1394src_set_property), (gst_dv1394src_discover_avc_node),
14627         (gst_dv1394src_uri_set_uri):
14628         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
14629         (gst_udpsrc_update_uri), (gst_udpsrc_set_uri),
14630         (gst_udpsrc_set_property), (gst_udpsrc_uri_get_uri):
14631         URIHandler interface and element properties are now properly
14632         synchronized for DV1394src and UDPSrc
14633
14634 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
14635
14636         * ext/flac/Makefile.am:
14637         * ext/speex/Makefile.am:
14638           libgsttagedit has been renamed to libgsttag.
14639
14640 2005-11-21  Wim Taymans  <wim@fluendo.com>
14641
14642         * gst/rtsp/rtspconnection.c: (read_body):
14643         Apply patch from Sebastien Cote to fix #319184.
14644
14645 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
14646
14647         * configure.ac:
14648         * gst/cutter/Makefile.am:
14649         * gst/cutter/gstcutter.c: (gst_cutter_class_init),
14650         (gst_cutter_init), (gst_cutter_message_new), (gst_cutter_chain),
14651         (gst_cutter_set_property), (gst_cutter_get_property),
14652         (plugin_init), (gst_cutter_get_caps):
14653           port cutter
14654         * gst/level/gstlevel.c:
14655           fix up plugin details
14656
14657 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
14658
14659         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event):
14660         * ext/flac/gstflacdec.c: (gst_flacdec_loop),
14661         (gst_flacdec_src_event):
14662         * ext/flac/gstflacenc.c: (gst_flacenc_sink_event):
14663         * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_event),
14664         (gst_signal_processor_getrange), (gst_signal_processor_chain):
14665         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
14666         * gst/flx/gstflxdec.c: (gst_flxdec_src_event_handler),
14667         (gst_flxdec_sink_event_handler):
14668         * gst/matroska/matroska-demux.c:
14669         (gst_matroska_demux_handle_seek_event):
14670         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek):
14671           Update for stream lock API changes: don't take stream log
14672           in sink event handlers any longer and change GST_STREAM_LOCK
14673           to GST_PAD_STREAM_LOCK. Don't leak references in flxdec event
14674           functions.
14675
14676 2005-11-21  Michael Smith <msmith@fluendo.com>
14677
14678         * gst/auparse/gstauparse.c: (gst_auparse_dispose):
14679           gst_object_unref, not g_object_unref
14680
14681 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
14682
14683         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
14684         (gst_wavparse_create_sourcepad), (gst_wavparse_sink_activate):
14685           Use GST_DEBUG_FUNCPTR; add debug message in pad activate function.
14686
14687 2005-11-21  Michael Smith <msmith@fluendo.com>
14688
14689         * gst/auparse/Makefile.am:
14690         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
14691         (gst_auparse_init), (gst_auparse_dispose), (gst_auparse_chain),
14692         (gst_auparse_change_state):
14693         * gst/auparse/gstauparse.h:
14694           Partially fix #161712. playbin still doesn't work on these files,
14695           (on the bug report, Andy says we aren't typefinding it for some
14696           reason?) but at least auparse isn't totally busted like it was before.
14697
14698 2005-11-21  Andy Wingo  <wingo@pobox.com>
14699
14700         * *.h:
14701         * *.c: Ran scripts/update-macros. Oh yes.
14702
14703 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
14704
14705         * gst/matroska/matroska-demux.c: (gst_matroska_demux_sync_streams):
14706           Filler events are gone for now, comment out section generating
14707           them.
14708
14709 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
14710
14711         * ext/aalib/gstaasink.c: (gst_aasink_fixate):
14712         * ext/mikmod/gstmikmod.c: (gst_mikmod_srcfixate):
14713         * gst/goom/gstgoom.c: (gst_goom_src_negotiate):
14714         * sys/osxvideo/osxvideosink.m:
14715           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
14716           (#322027)
14717
14718 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
14719
14720         * ext/aalib/gstaasink.c: (gst_aasink_setcaps):
14721         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_file_header),
14722         (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream),
14723         (gst_avi_demux_parse_odml), (gst_avi_demux_stream_index),
14724         (gst_avi_demux_sync), (gst_avi_demux_stream_header),
14725         (gst_avi_demux_stream_data):
14726         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
14727         * gst/wavenc/gstwavenc.c: (write_metadata):
14728         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_adtl),
14729         (gst_wavparse_parse_file_header), (gst_wavparse_stream_headers):
14730         Fixes for GST_FOURCC_FORMAT API change.
14731
14732 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
14733
14734         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_finalize),
14735         (gst_text_overlay_init), (gst_text_overlay_text_pad_linked),
14736         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_pop_video),
14737         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
14738         (gst_text_overlay_change_state):
14739         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
14740         (gst_matroska_mux_reset), (gst_matroska_mux_request_new_pad),
14741         (gst_matroska_mux_best_pad), (gst_matroska_mux_change_state):
14742         * gst/smpte/gstsmpte.c: (gst_smpte_init), (gst_smpte_collected):
14743         * gst/videomixer/videomixer.c: (gst_videomixer_init),
14744         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
14745         (gst_videomixer_change_state):
14746           Fix for collect pads API change. Also fix textoverlay state
14747           change function.
14748
14749 2005-11-20  Julien MOUTTE  <julien@moutte.net>
14750
14751         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Replace
14752         GST_PAD_IS_USABLE by something approaching it.
14753
14754 2005-11-20  Julien MOUTTE  <julien@moutte.net>
14755
14756         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): Fix for
14757         API changes.
14758         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix for API changes,
14759         but also fix the code that was not checking return values from
14760         pad_push neither using pad_alloc_buffer.
14761
14762 2005-11-18  Edward Hervey  <edward@fluendo.com>
14763
14764         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
14765         (gst_pngenc_chain):
14766         Added debug category
14767         Return GST_FLOW_UNEXPECTED when sending an EOS, so the whole pipeline
14768         goes to EOS.
14769
14770 2005-11-17  Edgard Lima <edgard.lima@indt.org.br>
14771
14772         * gst/rtp/Makefile.am
14773         * gst/rtp/gstrtp.c
14774         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_src_template),
14775         (gst_rtpg711enc_class_init), (gst_rtpg711enc_init),
14776         (gst_rtpg711enc_finalize), (gst_rtpg711enc_setcaps),
14777         (gst_rtpg711enc_flush), (gst_rtpg711enc_handle_buffer):
14778         * gst/rtp/gstrtpg711enc.h:
14779         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_sink_template):
14780         * gst/rtp/gstrtpspeexenc.c:
14781         * gst/rtp/gstrtpspeexenc.h:
14782         * gst/rtp/gstrtpspeexdec.c:
14783         * gst/rtp/gstrtpspeexdec.h:
14784         Created Speex payloader and depayloader; Optimize G711 payloader to
14785         use adapter and send packets until MTU size.
14786
14787 2005-11-16  Wim Taymans  <wim@fluendo.com>
14788
14789         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad):
14790         Fix leak in check.
14791
14792 2005-11-16  Wim Taymans  <wim@fluendo.com>
14793
14794         * gst/flx/gstflxdec.c: (gst_flxdec_change_state):
14795         Fix state change.
14796
14797 2005-11-16  Andy Wingo  <wingo@pobox.com>
14798
14799         * gst/udp/gstudpsrc.c: Clean up with the boilerplate macro.
14800         (gst_udpsrc_create): Move comment.
14801
14802 2005-11-15  Vincent Torri  <torri at iecn dot u-nancy dot fr>
14803
14804         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
14805
14806         * gst/matroska/matroska-demux.c: (gst_matroskademux_do_index_seek):
14807           When seeking, seek to closest index entry at or before the requested
14808           seek position, not just the closest one (#321001).
14809
14810 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
14811
14812         * gst/avi/gstavidemux.c: (swap_line), (gst_avi_demux_invert),
14813         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data):
14814           Invert DIB images again (see #132341).
14815
14816 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14817
14818         * configure.ac:
14819           rework configure.ac file
14820         * ext/aalib/gstaasink.c:
14821         * ext/cairo/gstcairo.c:
14822         * ext/dv/gstdv.c:
14823         * ext/esd/gstesd.c:
14824         * ext/flac/gstflac.c:
14825         * ext/gconf/gstgconfelements.c:
14826         * ext/gdk_pixbuf/gstgdkpixbuf.c:
14827         * ext/jpeg/gstjpeg.c:
14828         * ext/ladspa/gstladspa.c:
14829         * ext/libcaca/gstcacasink.c:
14830         * ext/libmng/gstmng.c:
14831         * ext/libpng/gstpng.c:
14832         * ext/mikmod/gstmikmod.c:
14833         * ext/pango/gsttextoverlay.c:
14834         * ext/pango/gsttimeoverlay.c:
14835         * ext/raw1394/gst1394.c:
14836         * ext/speex/gstspeex.c:
14837         * gst/alpha/Makefile.am:
14838         * gst/alpha/gstalpha.c:
14839         * gst/alpha/gstalphacolor.c:
14840         * gst/auparse/gstauparse.c:
14841         * gst/autodetect/gstautoaudiosink.c:
14842         (gst_auto_audio_sink_factory_filter),
14843         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
14844         * gst/autodetect/gstautodetect.c:
14845         * gst/avi/gstavi.c:
14846         * gst/cutter/gstcutter.c:
14847         * gst/debug/efence.c:
14848         * gst/debug/gstdebug.c:
14849         * gst/debug/gstnavigationtest.c:
14850         * gst/effectv/gsteffectv.c:
14851         * gst/flx/gstflxdec.c:
14852         * gst/goom/gstgoom.c:
14853         * gst/interleave/plugin.c:
14854         * gst/law/alaw.c:
14855         * gst/law/mulaw.c:
14856         * gst/level/gstlevel.c:
14857         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
14858         * gst/matroska/matroska.c:
14859         * gst/median/gstmedian.c:
14860         * gst/monoscope/gstmonoscope.c:
14861         * gst/multipart/multipart.c:
14862         * gst/oldcore/gstelements.c:
14863         * gst/rtp/gstrtp.c:
14864         * gst/rtsp/gstrtsp.c:
14865         * gst/smoothwave/gstsmoothwave.c:
14866         * gst/smpte/gstsmpte.c:
14867         * gst/udp/gstudp.c:
14868         * gst/videobox/gstvideobox.c:
14869         * gst/videofilter/gstgamma.c:
14870         * gst/videofilter/gstvideobalance.c:
14871         * gst/videofilter/gstvideoflip.c:
14872         * gst/videofilter/gstvideotemplate.c:
14873         * gst/videomixer/videomixer.c:
14874         * gst/wavenc/gstwavenc.c:
14875         * gst/wavparse/gstwavparse.c:
14876         * sys/oss/gstossaudio.c:
14877         * sys/osxaudio/gstosxaudio.c:
14878           update GST_PLUGIN_DEFINE
14879         * gst/rtp/Makefile.am:
14880         * gst/rtp/gstasteriskh263.c:
14881           check for htons/htonl headers and possibly link to winsock2 lib
14882
14883 2005-11-12  Edward Hervey  <edward@fluendo.com>
14884
14885         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): 
14886         Only GST_DEBUG() information on the valid components.
14887
14888 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
14889
14890         * configure.ac: back to HEAD
14891
14892 === release 0.9.5 ===
14893
14894 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
14895
14896         * configure.ac:
14897           releasing 0.9.5, "Phone Alarm"
14898
14899 2005-11-11  Edward Hervey  <edward@fluendo.com>
14900
14901         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14902         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_event),
14903         (gst_avi_demux_stream_header), (gst_avi_demux_handle_seek),
14904         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14905         (gst_avi_demux_loop):
14906         * gst/avi/gstavidemux.h:
14907         Yeah, implement proper seeking. Exact seeking and segment seeking.
14908         Still need to do some checks for segment_stop.
14909
14910 2005-11-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
14911
14912         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
14913
14914         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
14915           Don't try to ready buffer duration from buffer that we don't
14916           own any  longer and that might already have been unreffed.
14917           (#321136)
14918
14919 2005-11-09  Zeeshan Ali  <zeenix@gmail.com>
14920
14921         * gst/flx/gstflxdec.c: (flx_decode_delta_fli),
14922         (flx_decode_delta_flc), (gst_flxdec_chain):
14923         Attempting to optimize the code for embedded systems.
14924
14925 2005-11-08  Alessandro Decina  <alessandro at nnva dot org>
14926
14927         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
14928
14929         * sys/oss/gstosssink.c: (gst_oss_sink_close):
14930           Don't re-use already closed file descriptor. (#320920)
14931
14932 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
14933
14934         * sys/oss/gstosssink.c: (gst_oss_sink_dispose),
14935         (gst_oss_sink_set_property), (gst_oss_sink_getcaps),
14936         (gst_oss_sink_prepare):
14937         * sys/oss/gstosssink.h:
14938           Cache probed caps; fix debug output for SET_PARAM macros.
14939
14940 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
14941
14942         * ext/cairo/Makefile.am:
14943         * ext/cairo/gstcairo.c: (plugin_init):
14944         * ext/cairo/gsttextoverlay.c: (gst_text_overlay_base_init),
14945         (gst_text_overlay_class_init), (gst_text_overlay_finalize),
14946         (gst_text_overlay_init), (gst_text_overlay_font_init),
14947         (gst_text_overlay_set_property), (gst_text_overlay_render_text),
14948         (gst_text_overlay_getcaps), (gst_text_overlay_setcaps),
14949         (gst_text_overlay_text_pad_linked),
14950         (gst_text_overlay_text_pad_unlinked), (gst_text_overlay_shade_y),
14951         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
14952         (gst_text_overlay_push_frame), (gst_text_overlay_pop_video),
14953         (gst_text_overlay_pop_text), (gst_text_overlay_collected),
14954         (gst_text_overlay_change_state):
14955         * ext/cairo/gsttextoverlay.h:
14956           Port cairo textoverlay plugin to 0.9. Add 'shaded-background'
14957           property and redo positioning. Doesn't handle upstream renegotiation
14958           yet though.
14959
14960 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
14961
14962         * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream),
14963         (gst_avi_demux_process_next_entry), (gst_avi_demux_stream_data),
14964         (gst_avi_demux_loop):
14965           No need to take the STREAM_LOCK in the loop function. Improve
14966           some debug messages. Don't leak pad names in debug messages.
14967
14968 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
14969
14970         * gst/matroska/matroska-demux.c:
14971         (gst_matroska_demux_push_vorbis_codec_priv_data),
14972         (gst_matroska_demux_add_wvpk_header):
14973           Don't error out when the source pad isn't linked.
14974
14975 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
14976
14977         * ext/gconf/gstgconfaudiosink.c: (do_toggle_element),
14978         (gst_gconf_audio_sink_change_state):
14979         * ext/gconf/gstgconfvideosink.c: (do_toggle_element),
14980         (gst_gconf_video_sink_change_state):
14981           Fix state change functions here as well and set kid
14982           to NULL state before removing it.
14983
14984 2005-11-01  Edward Hervey  <edward@fluendo.com>
14985
14986         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file),
14987         (gst_wavenc_init), (gst_wavenc_event), (gst_wavenc_chain):
14988         Added proper event handlind, 
14989         made downstream newsegment event use GST_FORMAT_BYTES (otherwise it's
14990         ignored),
14991         and don't set a duration of 0 for buffers otherwise they are discarded
14992         by GstBaseSink.
14993
14994         GstWavEnc needs some serious loving, after going through the code I'm
14995         really wondering how this can stay in -good ...
14996
14997 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
14998
14999         * check/elements/matroskamux.c: (setup_src_pad), (setup_sink_pad),
15000         (setup_matroskamux), (check_buffer_data), (GST_START_TEST):
15001         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finalize),
15002         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_setcaps),
15003         (gst_matroska_mux_start), (gst_matroska_mux_write_data),
15004         (gst_matroska_mux_collected):
15005           Fix leaks and invalid memory access as reported by valgrind
15006
15007 2005-11-01  Thomas Vander Stichele  <thomas at apestaart dot org>
15008
15009         Patch by: Michal Benes <michal.benes@xeris.cz>
15010
15011         * check/Makefile.am:
15012         * gst/matroska/ebml-write.c: (gst_ebml_write_seek):
15013         * gst/matroska/matroska-mux.c: (gst_matroska_mux_handle_src_event),
15014         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
15015           add a unit test for matroskamux
15016           fix the bugs that the unit test exposed
15017
15018 2005-11-01  Tim-Philipp Müller  <tim at centricular dot net>
15019
15020         * gst/autodetect/gstautoaudiosink.c:
15021         (gst_auto_audio_sink_class_init),
15022         (gst_auto_audio_sink_change_state):
15023         * gst/autodetect/gstautovideosink.c:
15024         (gst_auto_video_sink_class_init),
15025         (gst_auto_video_sink_change_state):
15026           Fix state change function and use GST_DEBUG_FUNCPTR in
15027           class_init.
15028
15029 2005-11-01  Josef Zlomek  <josef dot zlomek at xeris dot cz>
15030
15031         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15032
15033         * gst/matroska/ebml-write.c: (gst_ebml_write_new),
15034         (gst_ebml_write_reset), (gst_ebml_write_element_new):
15035         * gst/matroska/ebml-write.h:
15036         * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_data):
15037           Set timestamps on outgoing ebml headers as well, so that the
15038           element after matroskamux can get the timestamp already when
15039           reading the first ebml element and doesn't have to wait for
15040           the actual data buffer for that (#320308).
15041           
15042 2005-10-31  Andy Wingo  <wingo@pobox.com>
15043
15044         * gst/videomixer/videomixer.c (gst_videomixer_pad_unlink)
15045         (gst_videomixer_pad_link): Kill some memleaks.
15046         (gst_videomixer_pad_get_property): Style fix.
15047         (gst_videomixer_pad_set_property): Style fix.
15048         (gst_videomixer_pad_init): Style fix.
15049         (gst_videomixer_update_queues): Kill memleak.
15050         (gst_videomixer_loop): Kill memleak.
15051         (gst_videomixer_collected): Kill memleak.
15052
15053 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
15054
15055         * gst/auparse/gstauparse.c: gst_auparse_init, gst_auparse_chain,
15056         gst_auparse_change_state:
15057         Just some cleanup.
15058
15059 2005-10-31  Edgard Lima <edgard.lima@indt.org.br>
15060
15061         * ext/speex/gstspeexenc.c: (gst_speexenc_chain)
15062         Add checks to GST_FLOW_NOT_LINKED for values returned
15063         from gst_pad_push.
15064         
15065 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
15066
15067         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_setcaps),
15068         (gst_rtpg711dec_process):
15069         * gst/rtp/gstrtpgsmenc.c:
15070         Payloader now sets some default caps on the srcpad if caps on the sinkpad
15071         are never set. This is important for the g711 to work with burger's rtpbin
15072         element.
15073
15074 2005-10-28  Edgard Lima <edgard.lima@cin.ufpe.br>
15075
15076         * ext/speex/gstspeexenc.c: (gst_speexenc_chain), 
15077         (gst_speexenc_push_buffer):
15078         Add checks for return values from gst_pad_push and
15079         gst_pad_alloc_buffer.
15080
15081 2005-10-28  Michal Benes  <michal dot benes at xeris dot cz>
15082
15083         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15084
15085         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
15086         (gst_matroska_demux_parse_info),
15087         (gst_matroska_demux_parse_blockgroup_or_simpleblock),
15088         (gst_matroska_demux_parse_cluster):
15089         * gst/matroska/matroska-ids.h:
15090         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init),
15091         (gst_matroska_mux_init), (gst_matroska_mux_start),
15092         (gst_matroska_mux_create_buffer_header),
15093         (gst_matroska_mux_write_data), (gst_matroska_mux_set_property),
15094         (gst_matroska_mux_get_property):
15095         * gst/matroska/matroska-mux.h:
15096           Add SimpleBlock support to matroska demuxer and muxer (part of
15097           Matroska v2). (#319731)
15098
15099 2005-10-28  Wim Taymans  <wim@fluendo.com>
15100
15101         * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_init), (gst_jpeg_dec_chain),
15102         (gst_jpeg_dec_change_state):
15103         * ext/jpeg/gstjpegdec.h:
15104         Cleanups. Don't create caps for every chain.
15105
15106 2005-10-27  Edgard Lima  Edgard Lima  <edgard.lima@indt.org.br>
15107
15108         * gst/law/alaw-encode.c: (gst_alawenc_init),
15109         (alawenc_setcaps), (gst_alawenc_chain)
15110         * gst/law/alaw-encode.h:
15111         * gst/law/mulaw-encode.c: (gst_mulawenc_init),
15112         (mulawenc_setcaps), (gst_mulawenc_chain)
15113         * gst/law/mulaw-encode.h:
15114         Set timestamp on buffer and it allows RTP G711 elements
15115         work properly.
15116
15117 2005-10-27  Wim Taymans  <wim@fluendo.com>
15118
15119         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
15120         Set correct format on oss instead of a silly value. 
15121
15122 2005-10-27  Julien MOUTTE  <julien@moutte.net>
15123
15124         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
15125         (gst_video_box_transform_caps), (gst_video_box_set_caps),
15126         (gst_video_box_get_unit_size), (gst_video_box_copy_plane_i420),
15127         (gst_video_box_i420), (gst_video_box_ayuv): Use liboil for
15128         I420 rendering as well, doesn't bring much for my platform.
15129         Might help on some other platforms.
15130
15131 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
15132
15133         * gst/rtp/gstrtpgsmenc.c:
15134         * gst/rtp/gstrtpgsmparse.c:
15135         Declaring the padtemplate correctly.
15136
15137 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
15138
15139         * gst/rtp/gstrtpg711dec.c:
15140         * gst/rtp/gstrtpg711enc.c:
15141         * gst/rtp/gstrtpgsmenc.c:
15142         * gst/rtp/gstrtpgsmparse.c:
15143         Setting the proper copyright notice.
15144
15145 2005-10-26  Julien MOUTTE  <julien@moutte.net>
15146
15147         * gst/videobox/Makefile.am: Use liboil.
15148         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
15149         (gst_video_box_set_property), (gst_video_box_transform_caps),
15150         (gst_video_box_set_caps), (gst_video_box_get_unit_size),
15151         (gst_video_box_ayuv): Lot of optimization in AYUV rendering
15152         using liboil. Will dot the same to I420 border generation
15153         tomorrow.
15154
15155 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
15156
15157         * gst/rtp/gstrtpg711dec.c: (gst_rtpg711dec_base_init),
15158         (gst_rtpg711dec_class_init), (gst_rtpg711dec_init),
15159         (gst_rtpg711dec_setcaps), (gst_rtpg711dec_process):
15160         * gst/rtp/gstrtpg711dec.h:
15161         * gst/rtp/gstrtpg711enc.c: (gst_rtpg711enc_base_init),
15162         (gst_rtpg711enc_init), (gst_rtpg711enc_handle_buffer):
15163         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_base_init),
15164         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
15165         (gst_rtpgsmenc_handle_buffer):
15166         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_base_init),
15167         (gst_rtpgsmparse_class_init), (gst_rtpgsmparse_init),
15168         (gst_rtpgsmparse_setcaps), (gst_rtpgsmparse_process):
15169         * gst/rtp/gstrtpgsmparse.h:
15170         Hacked the G711 (de)payloader to try to make things right. rtpg711dec now
15171         inherits from the basertpdepayloader.
15172
15173 2005-10-26  Julien MOUTTE  <julien@moutte.net>
15174
15175         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
15176         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
15177         (gst_video_box_ayuv): Removing this forgotten debug.
15178
15179 2005-10-26  Julien MOUTTE  <julien@moutte.net>
15180
15181         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
15182         (gst_video_box_transform_caps), (gst_video_box_get_unit_size),
15183         (gst_video_box_ayuv): Fix the stride issue when boxing to AYUV.
15184
15185 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
15186
15187         * sys/oss/gstossaudio.c:
15188         * sys/oss/gstossdmabuffer.c:
15189         * sys/oss/gstosshelper.c:
15190         * sys/oss/gstossmixer.c:
15191         * sys/oss/gstossmixerelement.c:
15192         * sys/oss/gstossmixertrack.c:
15193         * sys/oss/gstosssink.c:
15194         * sys/oss/gstosssrc.c:
15195           Actually use the 'oss' debug category we register.
15196
15197 2005-10-26  Julien MOUTTE  <julien@moutte.net>
15198
15199         * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
15200         (gst_videomixer_pad_sink_setcaps), (gst_videomixer_getcaps):
15201         Use gst_pad_get_parent and drop the ref that was added through
15202         that call.
15203
15204 2005-10-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15205
15206         * gst/rtp/gstrtpgsmenc.c:
15207           Fix compilation
15208
15209 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
15210
15211         * gst/rtp/gstrtpg711dec.c
15212         Just removed a couple of lines of weird code used during
15213         development/test time.
15214
15215 2005-10-25  Edgard Lima  <edgard.lima@indt.org.br>
15216
15217         * gst/rtp/Makefile.am
15218         * gst/rtp/gstrtp.c
15219         * gst/rtp/gstrtpg711enc.c
15220         * gst/rtp/gstrtpg711enc.h
15221         * gst/rtp/gstrtpg711dec.c
15222         * gst/rtp/gstrtpg711dec.h
15223         Created G711 payloader and depayloader (it supports mulaw and alaw
15224         (dec)encoders)
15225
15226 2005-10-25  Julien MOUTTE  <julien@moutte.net>
15227
15228         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
15229         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
15230         Doh ! I introduced wingo's bug again ! Sorry...
15231
15232 2005-10-25  Christian Schaller <christian@fluendo.com> 
15233
15234         * gst/rtp/Makefile.am: add missing header files for disting
15235
15236 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
15237
15238         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
15239         (gst_rtpgsmenc_base_init), (gst_rtpgsmenc_class_init),
15240         (gst_rtpgsmenc_init), (gst_rtpgsmenc_setcaps),
15241         (gst_rtpgsmenc_handle_buffer):
15242         * gst/rtp/gstrtpgsmenc.h:
15243         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_get_type),
15244         (gst_rtpgsmparse_base_init), (gst_rtpgsmparse_class_init),
15245         (gst_rtpgsmparse_init), (gst_rtpgsmparse_setcaps),
15246         (gst_rtpgsmparse_finalize), (gst_rtpgsmparse_process):
15247         * gst/rtp/gstrtpgsmparse.h:
15248         Getting the GSM (de)payloader working and compatible with our plans for RTP.
15249
15250 2005-10-25  Julien MOUTTE  <julien@moutte.net>
15251
15252         * ext/libpng/gstpngdec.c: (user_info_callback),
15253         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Push
15254         a newsegment event, move some redundant code in a single place.
15255
15256 2005-10-25  Julien MOUTTE  <julien@moutte.net>
15257
15258         * ext/libpng/gstpngdec.c: (user_info_callback),
15259         (gst_pngdec_caps_create_and_set), (gst_pngdec_task): Temporary
15260         hack to get correct colors order when we have a png image with
15261         alpha channel.
15262
15263 2005-10-24  Edward Hervey  <edward@fluendo.com>
15264
15265         * ext/dv/gstdvdemux.c: (gst_dvdemux_add_pads): 
15266         Call gst_element_no_more_pads when there will be no more pads.
15267
15268 2005-10-24  Wim Taymans  <wim@fluendo.com>
15269
15270         * gst/rtp/Makefile.am:
15271         * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_get_type),
15272         (gst_asteriskh263_base_init), (gst_asteriskh263_class_init),
15273         (gst_asteriskh263_init), (gst_asteriskh263_finalize),
15274         (gst_asteriskh263_chain), (gst_asteriskh263_set_property),
15275         (gst_asteriskh263_get_property), (gst_asteriskh263_change_state),
15276         (gst_asteriskh263_plugin_init):
15277         * gst/rtp/gstasteriskh263.h:
15278         * gst/rtp/gstrtp.c: (plugin_init):
15279         * gst/rtp/gstrtph263enc.c: (gst_rtph263enc_get_type),
15280         (gst_rtph263enc_base_init), (gst_rtph263enc_class_init),
15281         (gst_rtph263enc_init), (gst_rtph263enc_finalize),
15282         (gst_rtph263enc_setcaps), (gst_rtph263enc_gobfiner),
15283         (gst_rtph263enc_flush), (gst_rtph263enc_handle_buffer),
15284         (gst_rtph263enc_plugin_init):
15285         * gst/rtp/gstrtph263enc.h:
15286         Added two new payloaders, an RFC 2190 payloader for h263 and
15287         a payload convertor for an asterisk server.
15288
15289 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
15290
15291         * sys/oss/gstosssrc.c: (gst_oss_src_prepare):
15292           Set bytes_per_sample correctly (is not always 4, but 
15293           depends on width and number of channels).
15294
15295 2005-10-24  Tim-Philipp Müller  <tim at centricular dot net>
15296
15297         * ext/flac/gstflacenc.c: (gst_flacenc_base_init),
15298         (gst_flacenc_init), (gst_flacenc_sink_setcaps),
15299         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
15300         (gst_flacenc_sink_event), (gst_flacenc_chain),
15301         (gst_flacenc_set_property), (gst_flacenc_get_property),
15302         (gst_flacenc_change_state):
15303         * ext/flac/gstflacenc.h:
15304           Fix seeking, so that flacenc can rewrite the header with the
15305           correct duration and amount of samples and all that at EOS;
15306           also set timestamps and granulepos on outgoing buffers; add
15307           debug category; fix state change function.
15308           
15309 2005-10-24  Julien MOUTTE  <julien@moutte.net>
15310
15311         * gst/videomixer/videomixer.c: Don't restrict video geometry
15312         from 16 to 4096.
15313
15314 2005-10-24  Julien MOUTTE  <julien@moutte.net>
15315
15316         * gst/videobox/gstvideobox.c: (gst_video_box_class_init),
15317         (gst_video_box_transform_caps), (gst_video_box_get_unit_size):
15318         Fix caps negotiation correctly, add debugging category.
15319
15320 2005-10-24  Christian Schaller  <christian@fluendo.com>
15321
15322         * configure.ac: Port over Thomas's change from base listing all plugins
15323
15324 2005-10-24  Julien MOUTTE  <julien@moutte.net>
15325
15326         * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
15327         a sink pad.
15328
15329 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
15330
15331         * configure.ac:
15332         * docs/upload.mak:
15333           back to HEAD
15334
15335 === release 0.9.4 ===
15336
15337 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
15338
15339         * configure.ac:
15340           Releasing 0.9.4, "Dromiceiomimus"
15341
15342 2005-10-21  Tim-Philipp Müller  <tim at centricular dot net>
15343
15344         * ext/speex/gstspeexenc.c: (gst_speexenc_get_query_types),
15345         (gst_speexenc_src_query):
15346           Add position and duration query, fix query type function.
15347           
15348         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
15349         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps):
15350           Let's not set non-fixed caps on source pads.
15351
15352 2005-10-21  Wim Taymans  <wim@fluendo.com>
15353
15354         * ext/dv/gstdvdemux.c: (gst_dvdemux_demux_frame):
15355         * gst/avi/gstavidemux.c: (gst_avi_demux_get_src_query_types),
15356         (gst_avi_demux_handle_seek):
15357         Set correct stream_time in newsegment event.
15358         avi can also handle a duration query now.
15359
15360 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
15361
15362         * gst/matroska/matroska-demux.c:
15363         (gst_matroska_demux_handle_src_query),
15364         (gst_matroska_demux_handle_seek_event),
15365         (gst_matroska_demux_loop_stream_parse_id):
15366           Fix duration query; fix basetime in newsegment event after
15367           seek; fix duration in initial newsegment event.
15368
15369         * gst/matroska/matroska-mux.c:
15370         (gst_matroska_mux_audio_pad_setcaps), (gst_matroska_mux_start):
15371           Extract number of channels and samplerate from vorbis headers;
15372           add some debug messages when querying the durations of the
15373           input streams.
15374
15375 2005-10-20  Wim Taymans  <wim@fluendo.com>
15376
15377         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
15378         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
15379         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
15380         Set stream time correctly in newsegment.
15381
15382 2005-10-20  Wim Taymans  <wim@fluendo.com>
15383
15384         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_seek):
15385         Correctly fill in the stream time.
15386
15387 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
15388
15389         * check/elements/level.c: (GST_START_TEST):
15390         * gst/level/gstlevel.c: (gst_level_message_new):
15391         * gst/level/level-example.c: (message_handler):
15392           use ELEMENT messages instead
15393
15394 2005-10-19  Wim Taymans  <wim@fluendo.com>
15395
15396         * ext/dv/gstdvdemux.c: (gst_dvdemux_get_src_query_types),
15397         (gst_dvdemux_src_query):
15398         * ext/flac/gstflacdec.c: (gst_flacdec_length),
15399         (gst_flacdec_src_query):
15400         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_query):
15401         * ext/speex/gstspeexdec.c: (speex_dec_src_query):
15402         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
15403         * gst/debug/gstnavseek.c: (gst_navseek_seek):
15404         * gst/debug/progressreport.c: (gst_progress_report_report):
15405         * gst/matroska/ebml-read.c: (gst_ebml_read_get_length):
15406         * gst/matroska/matroska-demux.c:
15407         (gst_matroska_demux_handle_src_query):
15408         * gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
15409         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
15410         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
15411         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
15412         (gst_wavparse_srcpad_event):
15413         API change fix.
15414
15415 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
15416
15417         * gst/goom/filters.c:
15418         * gst/goom/graphic.h:
15419         * gst/goom/lines.c:
15420           Make inline functions either 'static inline' or 'extern inline',
15421           otherwise the Forte compiler apparently won't inline them (#317300).
15422
15423 2005-10-19  Julien MOUTTE  <julien@moutte.net>
15424
15425         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
15426         (gst_pngdec_init), (user_error_fn), (user_warning_fn),
15427         (user_info_callback), (user_endrow_callback), (user_end_callback),
15428         (user_read_data), (gst_pngdec_caps_create_and_set),
15429         (gst_pngdec_task), (gst_pngdec_chain), (gst_pngdec_sink_event),
15430         (gst_pngdec_libpng_clear), (gst_pngdec_libpng_init),
15431         (gst_pngdec_change_state), (gst_pngdec_sink_activate_push),
15432         (gst_pngdec_sink_activate_pull), (gst_pngdec_sink_activate):
15433         * ext/libpng/gstpngdec.h: Complete rewrite of pngdec. It's now
15434         very nice and handle push/pull based model. if you have filesrc
15435         connected to it, it will do random access to load the png file.
15436         If you have a network source that can't do _getrange, it does 
15437         progressive loading through the chain function.
15438         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
15439         (transform_rgb), (transform_bgr): Fix caps negotiation correctly
15440         thanks to Master Wim Taymans ;-)
15441
15442 2005-10-18  Tim-Philipp Müller  <tim at centricular dot net>
15443
15444         * gst/matroska/Makefile.am:
15445         * gst/matroska/ebml-read.c:
15446         * gst/matroska/ebml-read.h:
15447         * gst/matroska/matroska-demux.c:
15448         * gst/matroska/matroska-demux.h:
15449         * gst/matroska/matroska.c: (plugin_init):
15450           Ported matroska demuxer to 0.9.
15451
15452 2005-10-18  Michal Benes  <michal dot benes at xeris dot cz>
15453
15454         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15455
15456         * gst/matroska/matroska-mux.c:
15457         (gst_matroska_mux_video_pad_setcaps),
15458         (gst_matroska_mux_audio_pad_setcaps):
15459           Fix mpeg4 input handling (#318847); also, while we're at it,
15460           fix media type for Motion-JPEG: should be image/jpeg.
15461
15462 2005-10-18  Wim Taymans  <wim@fluendo.com>
15463
15464         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
15465         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
15466         (gst_wavparse_pad_convert), (gst_wavparse_srcpad_event):
15467         Fix for segment-start/stop API change.
15468
15469 2005-10-17  Julien MOUTTE  <julien@moutte.net>
15470
15471         * gst/alpha/gstalphacolor.c: (gst_alpha_color_transform_caps),
15472         (transform_rgb), (transform_bgr): Handle caps negotiation in a better
15473         way.
15474
15475 2005-10-17  Julien MOUTTE  <julien@moutte.net>
15476
15477         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
15478         (gst_video_box_get_unit_size): Fix caps nego some more to get AYUV
15479         output declared in transform_caps.
15480
15481 2005-10-17  Julien MOUTTE  <julien@moutte.net>
15482
15483         * ext/libpng/gstpngdec.c: (gst_pngdec_init): We use fixed caps.
15484
15485 2005-10-17  Julien MOUTTE  <julien@moutte.net>
15486
15487         * gst/videobox/gstvideobox.c: (gst_video_box_transform_caps),
15488         (gst_video_box_get_unit_size): Fix wrong size calculations and
15489         implement get_unit_size correctly.
15490
15491 2005-10-17  Tim-Philipp Müller  <tim at centricular dot net>
15492
15493         * configure.ac:
15494           Enable flx plugin.
15495
15496         * gst/flx/gstflxdec.c: (flx_decode_chunks):
15497           Fix gcc4 signedness issue.
15498
15499 2005-10-17  Julien MOUTTE  <julien@moutte.net>
15500
15501         * configure.ac: Adding videomixer.
15502         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
15503         (user_read_data), (gst_pngdec_chain): More debugging.
15504         * gst/alpha/Makefile.am: Adding alphacolor
15505         * gst/alpha/gstalphacolor.c: (gst_alpha_color_base_init),
15506         (gst_alpha_color_class_init), (gst_alpha_color_init),
15507         (gst_alpha_color_transform_caps), (gst_alpha_color_set_caps),
15508         (transform_rgb), (transform_bgr), (gst_alpha_color_transform_ip),
15509         (plugin_init): Ported to 0.9 using in place base tranform.
15510         * gst/videomixer/Makefile.am:
15511         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
15512         (gst_videomixer_pad_class_init), (gst_videomixer_pad_sink_setcaps),
15513         (gst_videomixer_pad_link), (gst_videomixer_pad_unlink),
15514         (gst_videomixer_pad_init), (gst_videomixer_class_init),
15515         (gst_videomixer_init), (gst_videomixer_getcaps),
15516         (gst_videomixer_request_new_pad), (gst_videomixer_fill_queues),
15517         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
15518         (gst_videomixer_collected), (gst_videomixer_change_state): Ported
15519         to 0.9 using collectpads.
15520
15521 2005-10-17  Zeeshan Ali  <zeenix at gmail dot com>
15522
15523         * configure.ac:
15524         * gst/flx/Makefile.am:
15525         * gst/flx/gstflxdec.c: (gst_flxdec_init),
15526         (gst_flxdec_src_event_handler), (gst_flxdec_sink_event_handler),
15527         (gst_flxdec_chain), (gst_flxdec_change_state), (plugin_init):
15528         * gst/flx/gstflxdec.h:
15529         flx plugin ported to 0.9
15530
15531 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15532
15533         * ext/shout2/gstshout2.c: (gst_shout2send_change_state):
15534           use new gst_version_string()
15535
15536 2005-10-16  Andy Wingo  <wingo@pobox.com>
15537
15538         * configure.ac: GLIB_CHECK.
15539
15540 2005-10-15  Julien MOUTTE  <julien@moutte.net>
15541
15542         * ext/libpng/Makefile.am:
15543         * ext/libpng/gstpng.c: (plugin_init):
15544         * ext/libpng/gstpngdec.c: (gst_pngdec_class_init),
15545         (gst_pngdec_init), (user_read_data), (gst_pngdec_chain):
15546         * ext/libpng/gstpngdec.h: Ported pngdec to 0.9
15547
15548 2005-10-14  Michal Benes  <michal dot benes at xeris dot cz>
15549
15550         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15551
15552         * configure.ac:
15553         * gst/matroska/Makefile.am:
15554         * gst/matroska/ebml-ids.h:
15555         * gst/matroska/ebml-write.c:
15556         * gst/matroska/ebml-write.h:
15557         * gst/matroska/matroska-ids.h:
15558         * gst/matroska/matroska-mux.c:
15559         * gst/matroska/matroska-mux.h:
15560         * gst/matroska/matroska.c: (plugin_init):
15561           Port matroska muxer to 0.9 (#318847).
15562
15563 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
15564
15565         * ext/speex/gstspeexenc.c: (gst_speexenc_get_tag_value),
15566         (comment_init), (comment_add):
15567           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE;
15568           use GST_READ_UINT32_LE() and friends rather than the private
15569           implementation of those same macros.
15570
15571 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
15572
15573         * examples/stats/mp2ogg.c:
15574           more typo fixes
15575
15576 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
15577
15578         * examples/indexing/indexmpeg.c: (main):
15579         * ext/esd/esdmon.c: (gst_esdmon_open_audio),
15580         (gst_esdmon_close_audio), (gst_esdmon_change_state):
15581         * ext/esd/esdmon.h:
15582         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init):
15583         * ext/pango/gsttextoverlay.c: (gst_textoverlay_init):
15584         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
15585         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
15586         * gst/avi/gstavimux.c: (gst_avimux_init):
15587         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init):
15588         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init):
15589         * gst/multipart/multipartmux.c: (gst_multipart_mux_init):
15590         * gst/oldcore/gstmultifilesrc.c: (gst_multifilesrc_init),
15591         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
15592         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
15593         * gst/oldcore/gstmultifilesrc.h:
15594         * gst/oldcore/gstpipefilter.c: (gst_pipefilter_init),
15595         (gst_pipefilter_open_file), (gst_pipefilter_close_file),
15596         (gst_pipefilter_change_state):
15597         * gst/oldcore/gstpipefilter.h:
15598         * gst/smoothwave/gstsmoothwave.c: (gst_smoothwave_init):
15599         * gst/videomixer/videomixer.c: (gst_videomixer_init):
15600         * sys/osxaudio/gstosxaudiosink.c: (gst_osxaudiosink_init):
15601         * sys/osxaudio/gstosxaudiosink.h:
15602         * sys/osxaudio/gstosxaudiosrc.h:
15603           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
15604           moved bitshift from macro to enum definition
15605
15606 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15607
15608         * ext/Makefile.am:
15609         * ext/cairo/Makefile.am:
15610         * ext/cairo/gstcairo.c: (plugin_init):
15611         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_change_state):
15612         * ext/cairo/gsttimeoverlay.c: (gst_timeoverlay_update_font_height),
15613         (gst_timeoverlay_setup), (gst_timeoverlay_planar411):
15614         * ext/cairo/gsttimeoverlay.h:
15615           update of cairo-based timeoverlay to 1.0 Cairo API
15616           doesn't work yet for resizing of output sink
15617
15618 2005-10-11  Wim Taymans  <wim@fluendo.com>
15619
15620         * ext/speex/gstspeexdec.c: (speex_dec_event), (speex_dec_chain):
15621         newsegment API fix.
15622
15623 2005-10-11  Wim Taymans  <wim@fluendo.com>
15624
15625         * ext/dv/gstdvdemux.c: (gst_dvdemux_handle_sink_event),
15626         (gst_dvdemux_demux_frame):
15627         * ext/flac/gstflacdec.c: (gst_flacdec_write):
15628         * gst/auparse/gstauparse.c: (gst_auparse_chain):
15629         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header),
15630         (gst_avi_demux_handle_seek):
15631         * gst/goom/gstgoom.c: (gst_goom_event):
15632         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
15633         * gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
15634         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
15635         (gst_wavparse_loop), (gst_wavparse_pad_convert),
15636         (gst_wavparse_srcpad_event):
15637         newsegment API update.
15638
15639 2005-10-11  Andy Wingo  <wingo@pobox.com>
15640
15641         * ext/speex/gstspeexenc.c: Signedness cleanups.
15642
15643 2005-10-10  Edgard Lima <edgard.lima@indt.org.br>
15644
15645         * PORTED_09:
15646         * ext/speex/Makefile.am:
15647         * ext/speex/gstspeex.c:
15648         * ext/speex/gstspeexenc.c:
15649         Speexenc ported to 0.9
15650
15651 2005-10-10  Wim Taymans  <wim@fluendo.com>
15652
15653         * sys/oss/gstosssink.c: (gst_oss_sink_class_init),
15654         (gst_oss_sink_init), (gst_oss_sink_set_property),
15655         (gst_oss_sink_get_property), (gst_oss_sink_open),
15656         (gst_oss_sink_prepare), (gst_oss_sink_reset):
15657         * sys/oss/gstosssink.h:
15658         * sys/oss/gstosssrc.c: (gst_oss_src_class_init),
15659         (gst_oss_src_set_property), (gst_oss_src_init), (gst_oss_src_open),
15660         (gst_oss_src_prepare):
15661         Cleanups, make device configurable in the sink, handle and report
15662         errors.
15663
15664 2005-10-10  Wim Taymans  <wim@fluendo.com>
15665
15666         * ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset):
15667         * ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset):
15668         Make sure element is NULL before removing from the bin.
15669
15670 2005-10-07  Andy Wingo  <wingo@pobox.com>
15671
15672         * ext/raw1394/gstdv1394src.c: Make interruptible, so it won't
15673         block forever in a read().
15674         (gst_dv1394src_bus_reset): Post a message when the cable is
15675         unplugged.
15676         (gst_dv1394src_create, gst_dv1394src_unlock): Remove some prints.
15677         (gst_dv1394src_bus_reset): Don't unref the message.
15678
15679         * ext/raw1394/gstdv1394src.c: Clean up for style before doing some
15680         hacking. The only change should be that the state change stuff was
15681         put into basesrc's start() and stop() routines, which coalesces
15682         some steps.
15683
15684 2005-10-07  Tim-Philipp Müller  <tim at centricular dot net>
15685
15686         * configure.ac:
15687           Add check for mmap
15688           
15689         * gst/debug/Makefile.am:
15690           Only compile efence plugin on systems that have mmap.
15691
15692 2005-10-05  Tim-Philipp Müller  <tim at centricular dot net>
15693
15694         * gst/debug/Makefile.am:
15695         * gst/debug/breakmydata.c:
15696         * gst/debug/gstdebug.c:
15697         * gst/debug/gstnavigationtest.c:
15698         * gst/debug/gstnavseek.c: 
15699         * gst/debug/gstnavseek.h:
15700         * gst/debug/progressreport.c: 
15701         * gst/debug/testplugin.c:
15702           Port progressreport, navseek, navigationtest, testsink and
15703           breakmydata.
15704
15705 2005-10-05  Edward Hervey  <edward@fluendo.com>
15706
15707         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_convert),
15708         (gst_dvdemux_src_query):
15709         Fixes for better conversion
15710
15711 2005-10-04  Michael Smith <msmith@fluendo.com>
15712
15713         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_reset),
15714         (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_detect):
15715         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_reset),
15716         (gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
15717           Set state of elements to NULL before removing from bins.
15718           Set state of test element to NULL if we failed to move it to READY
15719
15720 2005-10-04  Edward Hervey  <edward@fluendo.com>
15721
15722         * ext/dv/Makefile.am:
15723         * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_src_conver): 
15724         Added DEFAULT <==> BYTES, TIME conversions on srcpad,
15725         Corrected the query function for position so it doesn't forget what
15726         format was asked, and calls the conversion functions on the correct pad.
15727
15728 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15729
15730         * configure.ac:
15731           back to development
15732
15733 === release 0.9.3 ===
15734
15735 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15736
15737         * configure.ac:
15738           Releasing 0.9.3, "Aramis"
15739
15740 2005-10-03  Andy Wingo  <wingo@pobox.com>
15741
15742         * ext/flac/gstflacdec.c (gst_flacdec_write): Deal with pad_alloc
15743         error returns.
15744
15745 2005-10-02  Andy Wingo  <wingo@pobox.com>
15746
15747         * configure.ac (GST_PLUGIN_LDFLAGS): Change to be like -base.
15748
15749         * ext/flac/gstflacenc.c: Ported to 0.9.
15750
15751         * ext/flac/gstflacdec.c (gst_flacdec_loop): Handle errors better.
15752
15753         * ext/flac/Makefile.am: Add the GST_PLUGINS_BASE cflags and libs,
15754         and link to gsttagedit. Enable flacenc.
15755
15756         * ext/flac/gstflacdec.c: Re-enable tag reading.
15757
15758 2005-09-30  Wim Taymans  <wim@fluendo.com>
15759
15760         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
15761         * gst/rtp/gstrtpgsmparse.c:
15762         * gst/rtp/gstrtph263penc.c:
15763         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
15764         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
15765         (gst_rtpmp4venc_set_property):
15766         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
15767         Various class and caps fixes from Andre Magalhaes (andrunko)
15768
15769 2005-09-29  Wim Taymans  <wim@fluendo.com>
15770
15771         * gst/level/level-example.c: (main):
15772         Update for new bus API.
15773
15774 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
15775
15776         * configure.ac:
15777           Fix unexpanded autoconf macro GST_DOC, which has been renamed
15778           to GST_DOCBOOK_CHECK (see common/m4/gst-doc.m4) (#316202).
15779
15780 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
15781
15782         * sys/oss/gstosssink.c: (gst_oss_sink_prepare):
15783           Fix playback of mono streams (bytes_per_sample should be set
15784           from the sample width and the number of channels negotiated,
15785           and not just be set to 4) (#317338)
15786
15787 2005-09-26  Wim Taymans  <wim@fluendo.com>
15788
15789         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush),
15790         (gst_rtpmpaenc_handle_buffer):
15791         Set buffer duration correctly.
15792
15793 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
15794
15795         * gst/avi/gstavidemux.c: (gst_avi_demux_base_init),
15796         (gst_avi_demux_class_init), (gst_avi_demux_parse_stream),
15797         (gst_avi_demux_change_state):
15798           Don't crash when encountering a stream with an unknown fourcc or
15799           codec id. Instead, create a pad of type video/x-avi-unknown or
15800           audio/x-avi-unknown, which as a side-effect also results in less
15801           confusing error messages in players ('no decoder' vs. 'no streams');
15802           minor fixes to state change function and class_init function.
15803
15804 2005-09-24  Wim Taymans  <wim@fluendo.com>
15805
15806         * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_init):
15807         * gst/autodetect/gstautovideosink.c: (gst_auto_video_sink_init):
15808         These are sinks.
15809
15810 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
15811
15812         * check/elements/level.c: (GST_START_TEST):
15813           fix test for new GstClockTime use
15814         * gst/level/gstlevel.c: (gst_level_init), (gst_level_set_caps),
15815         (gst_level_transform_ip):
15816         * gst/level/gstlevel.h:
15817           fix up the decay peak, ensuring the decay peak is never lower
15818           than the peak for that interval
15819
15820 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15821
15822         * docs/plugins/gst-plugins-good-plugins.args:
15823         * docs/plugins/inspect/plugin-alpha.xml:
15824         * docs/plugins/inspect/plugin-rtp.xml:
15825         * gst/level/gstlevel.c: (gst_level_set_caps),
15826         (gst_level_transform_ip):
15827           updating docs
15828
15829 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15830
15831         * Makefile.am:
15832         * check/elements/level.c: (GST_START_TEST):
15833         * gst/level/Makefile.am:
15834         * gst/level/gstlevel.c: (gst_level_class_init), (gst_level_init),
15835         (gst_level_set_property), (gst_level_get_property),
15836         (gst_level_set_caps), (gst_level_message_new),
15837         (gst_level_transform_ip):
15838         * gst/level/gstlevel.h:
15839         * gst/level/level-example.c: (message_handler), (main):
15840           convert to using GstClockTime for all time values, finally.
15841
15842 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15843
15844         * gst/auparse/Makefile.am:
15845         * gst/auparse/gstauparse.c: (gst_auparse_chain):
15846           fix up build
15847         * configure.ac:
15848         * ext/cairo/Makefile.am:
15849         * ext/dv/Makefile.am:
15850         * ext/esd/Makefile.am:
15851         * ext/flac/Makefile.am:
15852         * ext/gconf/Makefile.am:
15853         * ext/gdk_pixbuf/Makefile.am:
15854         * ext/jpeg/Makefile.am:
15855         * ext/ladspa/Makefile.am:
15856         * ext/libcaca/Makefile.am:
15857         * ext/libmng/Makefile.am:
15858         * ext/libpng/Makefile.am:
15859         * ext/mikmod/Makefile.am:
15860         * ext/pango/Makefile.am:
15861         * ext/raw1394/Makefile.am:
15862         * ext/shout2/Makefile.am:
15863         * ext/speex/Makefile.am:
15864         * gst/alpha/Makefile.am:
15865         * gst/autodetect/Makefile.am:
15866         * gst/avi/Makefile.am:
15867         * gst/cutter/Makefile.am:
15868         * gst/debug/Makefile.am:
15869         * gst/effectv/Makefile.am:
15870         * gst/flx/Makefile.am:
15871         * gst/goom/Makefile.am:
15872         * gst/interleave/Makefile.am:
15873         * gst/law/Makefile.am:
15874         * gst/matroska/Makefile.am:
15875         * gst/median/Makefile.am:
15876         * gst/monoscope/Makefile.am:
15877         * gst/multipart/Makefile.am:
15878         * gst/oldcore/Makefile.am:
15879         * gst/rtp/Makefile.am:
15880         * gst/rtsp/Makefile.am:
15881         * gst/smoothwave/Makefile.am:
15882         * gst/smpte/Makefile.am:
15883         * gst/videobox/Makefile.am:
15884         * gst/videofilter/Makefile.am:
15885         * gst/videomixer/Makefile.am:
15886         * gst/wavenc/Makefile.am:
15887         * gst/wavparse/Makefile.am:
15888         * sys/oss/Makefile.am:
15889         * sys/osxaudio/Makefile.am:
15890         * sys/osxvideo/Makefile.am:
15891           fix up GST_LIBS use
15892
15893 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15894
15895         * gst/auparse/Makefile.am:
15896         * gst/auparse/gstauparse.c: (gst_auparse_chain):
15897           fix build of auparse
15898
15899 2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
15900
15901         * configure.ac:
15902         * PORTED_09:
15903         * gst/auparse/gstauparse.c:
15904         * gst/auparse/gstauparse.h:
15905         Auparse ported to 0.9.
15906
15907 2005-09-22  Wim Taymans  <wim@fluendo.com>
15908
15909         * gst/rtp/TODO:
15910         * gst/rtp/gstrtpdec.c: (gst_rtpdec_getcaps):
15911         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
15912         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
15913         (gst_rtpmp4venc_set_property):
15914         * gst/rtp/gstrtpmp4venc.h:
15915         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
15916         * gst/rtp/gstrtpmpaenc.h:
15917         Use is_filled to both check MTU and max-ptime of base class.
15918
15919 2005-09-22  Wim Taymans  <wim@fluendo.com>
15920
15921         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
15922         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
15923         (gst_rtpmp4venc_set_property):
15924         Don't fragment packets with multiple frames.
15925
15926 2005-09-22  Wim Taymans  <wim@fluendo.com>
15927
15928         * gst/rtp/TODO:
15929         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
15930         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
15931         (gst_rtpmp4venc_init), (gst_rtpmp4venc_parse_data),
15932         (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property),
15933         (gst_rtpmp4venc_get_property):
15934         * gst/rtp/gstrtpmp4venc.h:
15935         Remove g_print.
15936         Update TODO
15937         Make payload encoder a bit smarter and more correct with
15938         timestamps.
15939         Added option in payloader to include config string in-band.
15940
15941 2005-09-21  Wim Taymans  <wim@fluendo.com>
15942
15943         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
15944         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
15945         (gst_rtspsrc_send):
15946         Strip spaces for key/value pairs.
15947
15948 2005-09-21  Wim Taymans  <wim@fluendo.com>
15949
15950         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_parse_rtpmap),
15951         (gst_rtspsrc_media_to_caps), (gst_rtspsrc_stream_setup_rtp),
15952         (gst_rtspsrc_stream_configure_transport), (gst_rtspsrc_send),
15953         (gst_rtspsrc_change_state):
15954         More SDP parsing and caps setting.
15955         Do NO_PREROLL differently.
15956         add pads only after negotiated.
15957
15958         * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init),
15959         (gst_udpsrc_getcaps):
15960         Implement the getcaps function.
15961
15962 2005-09-21  Wim Taymans  <wim@fluendo.com>
15963
15964         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps),
15965         (gst_rtpamrdec_chain):
15966         Handle multiple AMr packets per payload. Handle CRC and
15967         parse ILL/ILP.
15968
15969         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
15970         Make caps params strings for easy SDP mapping.
15971         
15972         * gst/rtp/gstrtpdec.c: (gst_rtpdec_init), (gst_rtpdec_getcaps):
15973         Handle capsnego better.
15974
15975         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps):
15976         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_new_caps):
15977         Generate and parse config string in the caps.
15978
15979 2005-09-21  Wim Taymans  <wim@fluendo.com>
15980
15981         * gst/rtp/README:
15982         Update README
15983
15984         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_sink_setcaps):
15985         Make extra params as strings.
15986
15987         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_set_state),
15988         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
15989         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send):
15990         Make state change return NO_PREROLL as this is a live
15991         source.
15992
15993         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
15994         Don't unref old caps when NULL.
15995
15996 2005-09-20  Wim Taymans  <wim@fluendo.com>
15997
15998         * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_get_type),
15999         (gst_rtspsrc_parse_rtpmap), (gst_rtspsrc_media_to_caps),
16000         (gst_rtspsrc_stream_setup_rtp), (gst_rtspsrc_send),
16001         (gst_rtspsrc_open), (gst_rtspsrc_uri_get_type),
16002         (gst_rtspsrc_uri_get_protocols), (gst_rtspsrc_uri_get_uri),
16003         (gst_rtspsrc_uri_set_uri), (gst_rtspsrc_uri_handler_init):
16004         * gst/rtsp/sdpmessage.c: (sdp_media_get_format):
16005         * gst/rtsp/sdpmessage.h:
16006         Add URI handler.
16007         Parse SDP and create caps.
16008
16009 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
16010
16011         * gst/alpha/gstalpha.c:
16012           fix element description
16013
16014 2005-09-19  Wim Taymans  <wim@fluendo.com>
16015
16016         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_chain):
16017         Don't check payload for now.
16018
16019 2005-09-19  Wim Taymans  <wim@fluendo.com>
16020
16021         * gst/wavparse/gstwavparse.c: (gst_wavparse_reset),
16022         (gst_wavparse_init), (gst_wavparse_parse_file_header),
16023         (gst_wavparse_stream_init), (gst_wavparse_handle_seek),
16024         (gst_wavparse_stream_headers), (gst_wavparse_stream_data),
16025         (gst_wavparse_loop), (gst_wavparse_pad_convert),
16026         (gst_wavparse_pad_query), (gst_wavparse_srcpad_event),
16027         (gst_wavparse_change_state):
16028         * gst/wavparse/gstwavparse.h:
16029         Fix wavparse some more.
16030
16031 2005-09-19  Wim Taymans  <wim@fluendo.com>
16032
16033         * check/elements/level.c: (GST_START_TEST):
16034         Fix for bus API change.
16035
16036 2005-09-19  Wim Taymans  <wim@fluendo.com>
16037
16038         * gst/level/level-example.c: (main):
16039         Fix for new bus API.
16040
16041         * gst/udp/gstudpsrc.c: (gst_udpsrc_set_property):
16042         Set caps on pads.
16043
16044 2005-09-15  Wim Taymans  <wim@fluendo.com>
16045
16046         * gst/rtp/Makefile.am:
16047         * gst/rtp/README:
16048         * gst/rtp/gstrtp.c: (plugin_init):
16049         * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
16050         (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain),
16051         (gst_rtpamrdec_change_state):
16052         * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_get_type),
16053         (gst_rtpamrenc_class_init), (gst_rtpamrenc_init),
16054         (gst_rtpamrenc_setcaps), (gst_rtpamrenc_handle_buffer):
16055         * gst/rtp/gstrtpamrenc.h:
16056         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_get_type),
16057         (gst_rtpgsmenc_class_init), (gst_rtpgsmenc_init),
16058         (gst_rtpgsmenc_setcaps), (gst_rtpgsmenc_handle_buffer):
16059         * gst/rtp/gstrtpgsmenc.h:
16060         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsmparse_class_init),
16061         (gst_rtpgsm_caps_nego), (gst_rtpgsmparse_chain),
16062         (gst_rtpgsmparse_set_property), (gst_rtpgsmparse_get_property),
16063         (gst_rtpgsmparse_change_state):
16064         * gst/rtp/gstrtpgsmparse.h:
16065         * gst/rtp/gstrtph263pdec.c: (gst_rtph263pdec_class_init),
16066         (gst_rtph263pdec_finalize), (gst_rtph263pdec_change_state):
16067         * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_get_type),
16068         (gst_rtph263penc_class_init), (gst_rtph263penc_init),
16069         (gst_rtph263penc_finalize), (gst_rtph263penc_setcaps),
16070         (gst_rtph263penc_flush), (gst_rtph263penc_handle_buffer):
16071         * gst/rtp/gstrtph263penc.h:
16072         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_setcaps),
16073         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_change_state):
16074         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
16075         (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_init),
16076         (gst_rtpmp4venc_finalize), (gst_rtpmp4venc_new_caps),
16077         (gst_rtpmp4venc_setcaps), (gst_rtpmp4venc_flush),
16078         (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer):
16079         * gst/rtp/gstrtpmp4venc.h:
16080         * gst/rtp/gstrtpmpadec.c:
16081         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_get_type),
16082         (gst_rtpmpaenc_class_init), (gst_rtpmpaenc_init),
16083         (gst_rtpmpaenc_finalize), (gst_rtpmpaenc_setcaps),
16084         (gst_rtpmpaenc_flush), (gst_rtpmpaenc_handle_buffer):
16085         * gst/rtp/gstrtpmpaenc.h:
16086         Updates to payloader/depayloaders, make payloaders use
16087         the base classes.
16088         Updated README with suggested RTP caps and how to convert
16089         to/from SDP.
16090         Added config descriptor in mp4v payloader.
16091
16092 2005-09-15  Andy Wingo  <wingo@pobox.com>
16093
16094         * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_find_best): 
16095         * gst/autodetect/gstautovideosink.c
16096         (gst_auto_video_sink_find_best): Update for new registry API.
16097
16098 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
16099
16100         * common/c-to-xml.py:
16101         * common/gtk-doc-plugins.mak:
16102           a simple py script to generate valid xml from a C example
16103           probably also need to strip an MIT license when we decide
16104         * docs/plugins/Makefile.am:
16105         * gst/level/Makefile.am:
16106         * gst/level/gstlevel.c: (gst_level_init):
16107         * gst/level/level-example.c: (message_handler), (main):
16108           add an example to level that will show up in the docs
16109         * gst/rtp/TODO:
16110           add a note for the future
16111
16112 2005-09-14  Michael Smith <msmith@fluendo.com>
16113
16114         * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
16115           Actually define the debug object being used in wavenc. Fixes #316205
16116
16117 2005-09-14  Michael Smith <msmith@fluendo.com>
16118
16119         * gst/smpte/Makefile.am:
16120           Link against GST_BASE_LIBS, to get it linked against libgstbase;
16121           needed to build on windows (bug 316204)
16122
16123 2005-09-12  Andy Wingo  <wingo@pobox.com>
16124
16125         * autogen.sh (package): Now type 'make' to build gst-plugins-good.
16126
16127 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
16128
16129         * configure.ac:
16130         * gst/fdsrc/Makefile.am:
16131         * gst/fdsrc/gstfdsrc.c:
16132         * gst/fdsrc/gstfdsrc.h:
16133           Move fdsrc back into gstreamer core elements.
16134
16135         * gst/level/gstlevel.c: (gst_level_class_init),
16136         (gst_level_transform_ip):
16137         * gst/videobox/gstvideobox.c: (gst_video_box_set_property):
16138           Basetransform changes.
16139
16140 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16141
16142         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain):
16143         * ext/jpeg/smokecodec.c: (find_best_size):
16144           fix compiler warnings
16145
16146 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16147
16148         * gst-plugins-good.spec.in:
16149           spec file fixes
16150         * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_class_init),
16151         (gst_multiudpsink_render), (gst_multiudpsink_add),
16152         (gst_multiudpsink_clear):
16153           it actually helps to actually stream if we hook up the
16154           "add" signal to an actual implementation
16155         * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
16156           some debugging
16157
16158 2005-09-08  Flavio Oliveira  <flavio.oliveira@indt.org.br>
16159
16160         * ext/jpeg/Makefile.am:
16161         * ext/jpeg/gstjpeg.c
16162         * ext/jpeg/gstjpegenc.c:
16163         * ext/jpeg/gstsmokeenc.c:
16164
16165 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
16166
16167         * ext/flac/gstflacdec.c:
16168         * ext/flac/gstflacenc.c:
16169         * ext/flac/gstflactag.c:
16170         * ext/speex/gstspeexenc.c:
16171           gsttaginterface.h -> gsttagsetter.h
16172
16173 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
16174
16175         * configure.ac:
16176         * gst/debug/Makefile.am:
16177         * gst/debug/efence.c: (gst_efence_class_init), (gst_efence_init),
16178         (gst_efence_chain), (gst_efence_buffer_alloc), (plugin_init),
16179         (gst_fenced_buffer_finalize), (gst_fenced_buffer_copy),
16180         (gst_fenced_buffer_alloc), (gst_fenced_buffer_class_init),
16181         (gst_fenced_buffer_init), (gst_fenced_buffer_get_type):
16182           Port to 0.9 and re-enable efence plugin.
16183
16184 2005-09-06  Tim-Philipp Müller  <tim at centricular dot net>
16185
16186         * ext/flac/gstflacdec.c: (flac_caps_factory), (raw_caps_factory),
16187         (gst_flacdec_write), (gst_flacdec_convert_src):
16188         * ext/flac/gstflacdec.h:
16189           Add support for flac files with 24/32 bits per sample; and misc.
16190           minor clean-ups. Seeking is still partly broken (for me at least).
16191
16192 2005-09-06  Wim Taymans  <wim@fluendo.com>
16193
16194         * gst/rtp/Makefile.am:
16195         * gst/rtp/gstrtp.c: (plugin_init):
16196         * gst/rtp/gstrtpmp4vdec.c: (gst_rtpmp4vdec_get_type),
16197         (gst_rtpmp4vdec_base_init), (gst_rtpmp4vdec_class_init),
16198         (gst_rtpmp4vdec_init), (gst_rtpmp4vdec_setcaps),
16199         (gst_rtpmp4vdec_chain), (gst_rtpmp4vdec_set_property),
16200         (gst_rtpmp4vdec_get_property), (gst_rtpmp4vdec_change_state),
16201         (gst_rtpmp4vdec_plugin_init):
16202         * gst/rtp/gstrtpmp4vdec.h:
16203         * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_get_type),
16204         (gst_rtpmp4venc_base_init), (gst_rtpmp4venc_class_init),
16205         (gst_rtpmp4venc_init), (gst_rtpmp4venc_setcaps),
16206         (gst_rtpmp4venc_flush), (gst_rtpmp4venc_chain),
16207         (gst_rtpmp4venc_set_property), (gst_rtpmp4venc_get_property),
16208         (gst_rtpmp4venc_change_state), (gst_rtpmp4venc_plugin_init):
16209         * gst/rtp/gstrtpmp4venc.h:
16210         * gst/rtp/gstrtpmpadec.c: (gst_rtpmpadec_chain):
16211         * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_flush):
16212         Added mpeg4 video payload encoder/decoder.
16213         Added some docs in mpa payloader.
16214
16215 === release 0.9.1 ===
16216
16217 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16218
16219         * NEWS:
16220         * README:
16221         * RELEASE:
16222         * autogen.sh:
16223         * configure.ac:
16224           releasing 0.9.1, "Blondie"
16225
16226 2005-09-05  Andy Wingo  <wingo@pobox.com>
16227
16228         * ext/dv/gstdvdemux.c (gst_dvdemux_chain): Move the pad adding
16229         here from the state change handler, so we fire signals without
16230         holding the state lock.
16231
16232 2005-09-02  Andy Wingo  <wingo@pobox.com>
16233
16234         * All plugins updated for element state changes.
16235
16236 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16237
16238         * Makefile.am:
16239         * check/.cvsignore:
16240         * check/Makefile.am:
16241         * check/elements/.cvsignore:
16242         * check/elements/level.c: (setup_level), (cleanup_level),
16243         (GST_START_TEST), (level_suite), (main):
16244           add a test for level
16245         * common/release.mak:
16246           move the enum checking to release.mak
16247         * configure.ac:
16248           add valgrind and check checking
16249         * gst/level/gstlevel.c: (gst_level_transform):
16250         * gst/level/gstlevel.h:
16251           fix Andy's cast bug
16252           convert a field to int
16253           fix the arithmetic to int when checking for emit so that a
16254           100-sample buffer of a 1000Hz stream triggers after 0.1 sec
16255
16256 2005-09-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16257
16258         * Makefile.am:
16259         * configure.ac:
16260           add docs to build
16261         * common/plugins.xsl:
16262           wrap Description into a refsect2
16263         * docs/Makefile.am:
16264         * docs/plugins/Makefile.am:
16265         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16266         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16267         * gst/goom/Makefile.am:
16268         * gst/goom/gstgoom.c: (gst_goom_get_type), (gst_goom_base_init),
16269         (gst_goom_class_init), (gst_goom_init), (gst_goom_dispose),
16270         (gst_goom_sink_setcaps), (gst_goom_src_setcaps),
16271         (gst_goom_src_negotiate), (gst_goom_event), (gst_goom_chain),
16272         (gst_goom_change_state):
16273         * gst/goom/gstgoom.h:
16274           GstGOOM -> GstGoom
16275           add an example launch line
16276         * gst/level/gstlevel.h:
16277         * gst/monoscope/gstmonoscope.c:
16278           cleanups
16279
16280 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16281
16282         * configure.ac:
16283         * docs/plugins/Makefile.am:
16284         * docs/plugins/gst-plugins-good-plugins-docs.sgml:
16285         * docs/plugins/gst-plugins-good-plugins-sections.txt:
16286         * docs/plugins/gst-plugins-good-plugins.types:
16287           document elements and plugins.  Shazam !
16288
16289 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16290
16291         * split off gst-plugins-good from gst-plugins.  Old ChangeLog can
16292           be found under doc/random/ChangeLog-0.8