gst-libs/gst/tag/gstvorbistag.c: Add comment about LANGUAGE tag inconsistency (we...
[platform/upstream/gstreamer.git] / ChangeLog
1 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
2
3         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
4           Add comment about LANGUAGE tag inconsistency (we want
5           ISO-639-1, but extract three-letter identifiers?)
6
7         * po/POTFILES.in:
8           Add two translatable files.
9
10 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
11
12         * gst-libs/gst/tag/Makefile.am:
13         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
14         * gst-libs/gst/tag/tag.h:
15         * gst-libs/gst/tag/tags.c:
16         (gst_tag_register_musicbrainz_tags_internal),
17         (gst_tag_register_musicbrainz_tags):
18           Forward-port some tags stuff from the 0.8 branch. This is
19           mostly the addition of musicbrainz tags and their mapping
20           to vorbistags, and a vorbistag mapping of the language tag.
21
22 2006-02-05  Julien MOUTTE  <julien@moutte.net>
23
24         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
25         refactoring.
26
27 2006-02-04  David Schleef  <ds@schleef.org>
28
29         * ext/ogg/gstoggmux.c:
30         * gst/typefind/gsttypefindfunctions.c:
31           Add Dirac typefinding and add dirac format to oggmux.
32
33 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
34
35         * gst/playback/gstdecodebin.c: (try_to_link_1):
36           Don't put essential function call into
37           g_return_*() macro, otherwise it'll all be
38           replaced by NOOPs when compiling with
39           G_DISABLE_CHECKS defined.
40
41 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
42
43         * ext/ogg/gstoggdemux.c:
44         * ext/ogg/gstoggparse.c:
45         * gst/tcp/gsttcpserversink.c:
46         * sys/v4l/v4lsrc_calls.c:
47         * sys/v4l/v4lsrc_calls.h:
48         Just make it compile with --disable-gst-debug.
49
50 2006-02-03  Wim Taymans  <wim@fluendo.com>
51
52         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
53         (gst_alsasink_class_init), (gst_alsasink_init),
54         (gst_alsasink_write), (gst_alsasink_reset):
55         * ext/alsa/gstalsasink.h:
56         Add lock to protect alsa calls.
57         Implement reset to flush samples ASAP, does not work
58         with dmix though.
59
60 2006-02-02  Wim Taymans  <wim@fluendo.com>
61
62         * gst-libs/gst/audio/gstbaseaudiosink.c:
63         (gst_base_audio_sink_provide_clock):
64         Ugh.. getting late I guess...
65
66 2006-02-02  Wim Taymans  <wim@fluendo.com>
67
68         * gst-libs/gst/audio/gstbaseaudiosink.c:
69         (gst_base_audio_sink_provide_clock),
70         (gst_base_audio_sink_set_property),
71         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
72         Don't try to provide a clock when we are not negotiated since
73         we might not be able to make it run.
74
75 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
76
77         * gst/playback/gstdecodebin.c: (try_to_link_1):
78           Unlinking two source pads is ... hard.
79
80 2006-02-02  Wim Taymans  <wim@fluendo.com>
81
82         * gst-libs/gst/audio/TODO:
83         Updated.
84
85         * gst-libs/gst/audio/gstbaseaudiosink.c:
86         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
87         On EOS, wait till the last sample is played before posting EOS.
88
89 2006-02-01  Philippe Kalaf <burger at speedy dot org>
90
91         * gst-libs/gst/rtp/gstbasertpdepayload.c:
92           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
93           setting queue_delay to zero. Also avoid thread being started if
94           queue_delay is zero.
95
96 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
97
98         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
99           Make test work again by connecting fakesinks to each decoded pad,
100           which makes the pipeline wait until each fakesink has a buffer
101           queued before going to PAUSED state. At that point we know the
102           decodebin pads are negotiated.
103
104 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
105
106         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
107         (gst_cdda_base_src_handle_event):
108         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
109           Pass unhandled queries to the parent class's query function.
110
111 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
112
113         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
114         (gst_ogg_pad_src_query):
115         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
116         * ext/theora/theoradec.c: (theora_dec_src_query),
117         (theora_dec_sink_query):
118         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
119         (vorbis_dec_sink_query):
120         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
121         (gst_vorbisenc_sink_query):
122         * gst/adder/gstadder.c: (gst_adder_query):
123           Pass unhandled queries upstream instead of just
124           dropping them (#326447). Also, fix supported
125           query types list for some elements.
126
127 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
128
129         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
130         (paris_type_find), (ilbc_type_find), (plugin_init):
131           Fix typefinding for audio/x-au, audio/x-paris and
132           audio/iLBC-sh. We cannot use the START_WITH macros
133           here, because there can only be one typefind factory
134           with the same name (caps), so the second one would
135           replace the first one and the first one would never
136           be called when doing typefinding (see #161712).
137           
138
139 2006-01-31  Wim Taymans  <wim@fluendo.com>
140
141         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
142         (vorbis_handle_header_packet), (vorbis_dec_push),
143         (vorbis_handle_data_packet):
144         Use scale_int when we can, add some more scaling.
145         Check packettype before parsing it.
146
147 2006-01-31  Wim Taymans  <wim@fluendo.com>
148
149         * ext/theora/theoradec.c: (_theora_granule_time),
150         (theora_dec_src_convert), (theora_dec_sink_convert):
151         Call right _scale functions.
152         Use parameter instead of some other random value.
153
154 2006-01-31  Wim Taymans  <wim@fluendo.com>
155
156         * ext/theora/theoradec.c: (_theora_granule_frame),
157         (_theora_granule_time), (_inc_granulepos),
158         (theora_dec_src_convert), (theora_dec_sink_convert),
159         (theora_handle_type_packet), (theora_handle_data_packet),
160         (theora_dec_chain):
161         Use higher precision timestamps calculation.
162         Convert some other conversions to _scale.
163
164 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
165
166         * gst/audiotestsrc/gstaudiotestsrc.c:
167         (gst_audio_test_src_create_sine_table), (plugin_init):
168         * gst/volume/gstvolume.c: (plugin_init):
169           initialize gst_controller before using
170
171 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
172
173         * tests/check/pipelines/theoraenc.c:
174         * tests/check/pipelines/vorbisenc.c:
175         Define constant using G_GINT64_CONSTANT to avoid errors when
176         passing it around - otherwise it gets truncated to 32 bits.
177
178         Fixes failing tests.
179
180 2006-01-31  Andy Wingo  <wingo@pobox.com>
181
182         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
183         caps being set doesn't have a framerate value. Basically a stopgap
184         measure.
185
186         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
187         technically correct enough to put into core though.
188         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
189         DURATION. Fixes theoraenc ! oggmux.
190
191         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
192         fraction, not double.
193
194 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
195
196         * win32/vs7:
197         add vs7 project files created by Sergey Scobich
198
199 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
200
201         * win32/vs8:
202         add vs8 project files created by Sergey Scobich
203         
204 2006-01-30  Andy Wingo  <wingo@pobox.com>
205
206         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
207         timestamp + duration, not just timestamp -- ogg pages should be
208         ordered by stop time. Necessary fix given the change in vorbis
209         timestamps.
210
211         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
212         (gst_theora_enc_init): Pull the granule shift out of the encoder.
213         (granulepos_add): New function, handles the messiness of adjusting
214         granulepos values.
215         (theora_buffer_from_packet):
216         (theora_enc_chain):
217         (theora_enc_sink_event): Use granulepos_add, not +.
218
219         * tests/check/pipelines/theoraenc.c
220         (check_buffer_granulepos_from_starttime): Just check the frame
221         count, not the actual granulepos -- we can't dictate to the
222         encoder when it should be placing keyframes.
223
224 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
225
226         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
227           SERVICE_NOT_AVAILABLE happens for example when you're trying to
228           play an http:// stream from a server that's not serving
229
230 2006-01-30  Andy Wingo  <wingo@pobox.com>
231
232         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
233         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
234         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
235         available.
236
237         * ext/theora/gsttheoraenc.h:
238         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
239         although theoraenc was timestamping correctly. Added handling of
240         streams that start with nonzero timestamps.
241
242         * tests/check/Makefile.am:
243         * tests/check/pipelines/theoraenc.c: New file, basically does same
244         tests as vorbisenc.
245
246         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
247
248 2006-01-30  Wim Taymans  <wim@fluendo.com>
249
250         * gst-libs/gst/audio/gstaudiosink.c:
251         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
252         (gst_audioringbuffer_pause):
253         Implement pause that does not wait for completion.
254
255         * gst-libs/gst/audio/gstbaseaudiosink.c:
256         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
257         Don't drop buffers when going to PAUSED but perform preroll on
258         remaining samples now that core base class supports this.
259
260         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
261         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
262         (gst_ring_buffer_commit):
263         Pause should not signal waiters.
264         Implement return value of _commit correctly.
265
266 2006-01-30  Andy Wingo  <wingo@pobox.com>
267
268         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
269
270         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
271         updated to timestamp from the first sample, not the last.
272         (gst_vorbisenc_buffer_from_header_packet): New function, takes
273         special care of granulepos and timestamp for header packets.
274         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
275         when the first buffer has a nonzero timestamp.
276
277         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
278         (GstVorbisEnc.subgranule_offset): New members. Take care of the
279         case when the first audio buffer we get has a nonzero timestamp.
280         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
281         properly timestamp vorbis buffers with the time of the first
282         sample, not the last.
283         
284         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
285         vorbis_granule_time_copy -- now it takes the granule/subgranule
286         offset into account.
287
288         * tests/check/pipelines/vorbisenc.c: New test for correctness of
289         timestamps, durations, and granulepos on buffers produced by
290         vorbisenc.
291
292 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
293
294         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
295         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
296           Patch from Eric Jonas to support conversions to/from UYVY 
297           (Fixes: #324626)
298
299 2006-01-30  Julien MOUTTE  <julien@moutte.net>
300
301         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
302         (setup_subtitle), (setup_source), (set_active_source):
303         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
304         (gen_text_element), (gen_audio_element), (gen_vis_element),
305         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
306
307 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
308
309         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
310         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
311                 use gst_guint64_to_gdouble to be compliant with vs6
312         * gst/playback/gstdecodebin.c: (try_to_link_1)
313         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
314                 use G_GINT64_CONSTANT for int64 constants
315         * win32/common/libgstinterfaces.def:
316                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
317         * win32/vs6:
318                 update and add new project files
319                 
320 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
321
322         * Makefile.am:
323         * win32/MANIFEST:
324         * win32/common/interfaces-enumtypes.c:
325         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
326         (gst_mixer_track_flags_get_type),
327         (gst_tuner_channel_flags_get_type):
328         * win32/common/interfaces-enumtypes.h:
329         * win32/common/multichannel-enumtypes.c:
330         (gst_audio_channel_position_get_type):
331         * win32/common/multichannel-enumtypes.h:
332           add a win32-update rule like in core, and copy over enumtypes files
333
334 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
335
336         * win32/MANIFEST:
337         * win32/common/config.h:
338         * win32/common/config.h.in:
339           add config files just like in core
340
341 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
342
343         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
344           Make gcc-4.1 happy (part of #327357).
345
346 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
347
348         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
349         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
350         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
351         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
352         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
353         (gst_alsasrc_unprepare), (gst_alsasrc_read):
354           Update all error messages.  All of them should either use
355           the default translated message, or actually provide a
356           translatable string.
357           Make the string for channel count problems meaningful.
358
359 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
360
361         * sys/v4l/v4l_calls.c: (gst_v4l_open):
362           check for and throw RESOURCE_BUSY
363
364 2006-01-27  David Schleef  <ds@schleef.org>
365
366         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
367           checked in this change -- it requires liboil features not
368           in 0.3.6.  Revert parts.
369
370 2006-01-27  David Schleef  <ds@schleef.org>
371
372         * REQUIREMENTS:
373         * configure.ac: update liboil requirement to 0.3.6
374         * gst/videoscale/Makefile.am:
375         * gst/videoscale/vs_scanline.c: liboilify
376
377 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
378
379         * ext/libvisual/visual.c: (get_buffer):
380           When pad_alloc returns a GstFlowReturn other
381           than GST_FLOW_OK, make sure it is passed upstream.
382
383 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
384
385         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
386         (gst_alsasink_class_init):
387           Free the device name string.
388
389         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
390         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
391         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
392           Don't remove a pad from the collectpads structure until it
393           is released - it's a request pad, and may receive data again
394           if the element gets moved back to PLAYING state.
395
396         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
397           Ensure we turn on double buffering on the Xv port, and
398           set the colour key to something dark and mysterious that
399           isn't black.
400
401 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
402
403         * ext/alsa/gstalsaplugin.c: (plugin_init):
404         * ext/cdparanoia/gstcdparanoiasrc.c:
405         (gst_cd_paranoia_src_base_init), (plugin_init):
406         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
407         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
408           - a library should not call setlocale. see "Libraries" node in
409             gettext manual
410           - make sure all plugins that use translation do bindtextdomain
411             to point to the localedir
412         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
413         (setup_sinks), (plugin_init):
414           all this, and check for NULL when creating sinks
415
416 2006-01-27  Julien MOUTTE  <julien@moutte.net>
417
418         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
419         (plugin_init): Make typefinding of subtitles work again.
420
421 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
422
423         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
424         (mp3_type_frame_length_from_header), (mp3_type_find),
425         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
426         (plugin_init):
427           Backport a bunch of typefinding fixes from the 0.8 branch.
428           Also, improve wavpack typefinding: if we can't peek the
429           entire wavpack block, try to parse the bits we can get and
430           see if we find what we're looking for in those.
431
432 2006-01-26  Julien MOUTTE  <julien@moutte.net>
433
434         * sys/ximage/ximagesink.c:
435         (gst_ximagesink_calculate_pixel_aspect_ratio):
436         * sys/xvimage/xvimagesink.c:
437         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
438         more cases of pixel aspect ratio.
439
440 2006-01-26  Edward Hervey  <edward@fluendo.com>
441
442         * gst/playback/gstdecodebin.c: (pad_probe):
443         Also consider the flush-start and tag events as unblockers
444         for the pad probes.
445
446 2006-01-26  Julien MOUTTE  <julien@moutte.net>
447
448         * gst/playback/gstplaybin.c: (gst_play_bin_init),
449         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
450         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
451         On the fly visualisation switch, works disabling, enabling as
452         well but it won't be able to enable vis in a playbin that was
453         created with no visualisation.
454
455 2006-01-25  Wim Taymans  <wim@fluendo.com>
456
457         * gst-libs/gst/audio/gstbaseaudiosink.c:
458         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
459         Undo previous commit that returned WRONG_STATE sooner, it breaks 
460         resume after pause.
461
462 2006-01-25  Wim Taymans  <wim@fluendo.com>
463
464         * gst-libs/gst/audio/gstbaseaudiosink.c:
465         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
466         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
467         Improve debugging.
468         Post error when caps cannot be parsed.
469         Resync on discontinuity in the stream.
470         Clip samples to segment boundaries.
471         return WRONG_STATE sooner when we are flushing.
472
473         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
474         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
475         Make audiosrc operate in TIME.
476         Set TIMESTAMP and DURATION on buffers.
477
478 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
479
480         * tests/examples/seek/seek.c: (main):
481           Output tag messages as well.
482
483 2006-01-23  Edward Hervey  <edward@fluendo.com>
484
485         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
486         (free_pad_probes), (remove_fakesink), (pad_probe),
487         (close_pad_link), (gst_decode_bin_change_state):
488         Replace GstPadBlockCallback with pad probes that detect
489         first buffer AND eos before removing fakesink.
490         Fixes hang with demuxers doing EOS while pre-rolling.
491         Solves #328279
492
493 2006-01-23  Andy Wingo  <wingo@pobox.com>
494
495         * ext/alsa/gstalsasink.c:
496         * gst-libs/gst/rtp/gstbasertpdepayload.c:
497         (gst_base_rtp_depayload_setcaps),
498         (gst_base_rtp_depayload_add_to_queue),
499         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
500         
501         Patch by: Jens Granseuer <jensgr at gmx dot net>
502
503 2006-01-22  Julien MOUTTE  <julien@moutte.net>
504
505         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
506         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
507         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
508         frames. We might get a frame destroyed after changing state to
509         NULL, adding a safety check on xcontext.
510
511 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
512
513         * gst-libs/gst/interfaces/xoverlay.c:
514           Fix prepare-xwindow-id code example in the docs - we need to
515           ignore all messages that aren't element messages as well.
516           
517 2006-01-21  Julien MOUTTE  <julien@moutte.net>
518
519         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
520           I think one day i'll completely undestand how caps negotiation
521           is supposed to work. This refactoring handles buffer_alloc
522           called with caps we can't handle. We definitely don't want a
523           set_caps with those caps, so we define and allocate a buffer
524           we would like to receive.
525
526 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
527
528         * gst/playback/gstplaybasebin.c: (setup_source):
529           Free iterator when done.
530
531 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
532
533         * gst-libs/gst/audio/gstbaseaudiosink.c:
534         (gst_base_audio_sink_render):
535           Fix playback of non-synchronised streams by assuming a rate
536           of 1.0 instead of a random one.
537
538           Makes this work again:
539
540           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
541           endianness=(int)4321, signed=(boolean)true, width=(int)16,
542           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
543           audioresample ! alsasink
544
545 === release 0.10.2 ===
546
547 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
548
549         * configure.ac:
550           releasing 0.10.2, "Then the devil is six"
551
552 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
553
554         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
555         * gst/playback/gststreamselector.c:
556         (gst_stream_selector_set_property):
557           Comment out broken code that connects to the state-changed signal.
558           At this point, changing current stream selection is broken, but 
559           stuff like gst-launch playbin current-audio=1 works and filters
560           to the chosen stream.
561
562 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
563
564         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
565           Fix #327216 (null dereference in vorbisdec)
566
567 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
568
569         * ext/theora/theoradec.c: (theora_handle_comment_packet):
570           Post taglist actually on bus instead of just freeing it
571           (fixes #327114 and totem bug #327080).
572
573         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
574           Use gst_element_found_tags_for_pad(), so that the tags
575           are sent downstream as an event as well.
576
577 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
578
579         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
580         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
581         (gst_ximagesink_buffer_alloc):
582         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
583         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
584         (gst_xvimagesink_buffer_alloc):
585           move all regularly occurring messages to GST_LOG level
586           add some more object logs
587
588 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
589
590         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
591           fix a silly segfault
592
593 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
594
595         * docs/libs/gst-plugins-base-libs-docs.sgml:
596         * docs/libs/gst-plugins-base-libs-sections.txt:
597         * gst-libs/gst/audio/mixerutils.c:
598         * gst-libs/gst/audio/mixerutils.h:
599           Add docs for mixerutils stuff.
600
601 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
602
603         * gst/playback/gstplaybasebin.c: (setup_source):
604           Fix playback for sources that emit raw audio or
605           raw video streams (e.g.: cd audio sources) (#325984).
606
607 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
608
609         * gst-libs/gst/audio/mixerutils.c:
610         (gst_audio_mixer_filter_do_filter):
611           actually save the element we create
612
613 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
614
615         * gst-libs/gst/cdda/gstcddabasesrc.c:
616         (gst_cdda_base_src_handle_track_seek):
617           No need to post a tag message on the bus when seeking
618           within the same track, only post it when the current
619           track changes.
620
621 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
622
623         * gst/playback/gstplaybasebin.c: (group_destroy),
624         (probe_triggered), (new_decoded_pad), (mute_group_type),
625         (set_active_source):
626         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
627         * gst/playback/gststreamselector.c:
628         (gst_stream_selector_base_init),
629         (gst_stream_selector_set_property),
630         (gst_stream_selector_request_new_pad):
631           Reenable stream selection. These mechanisms need a complete overhaul
632           in the face of 0.8->0.10 changes though.
633
634 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
635
636         * ext/ogg/gstoggdemux.c:
637           Change the pad template to src_%d to match the pads that 
638           are created from it. decodebin needs this information in order
639           to decide that oggdemux is capable of producing multiple pads
640           (and hence needs queues inserted).
641
642         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
643         (gst_ogg_mux_collected):
644           Make debug output more useful by using GST_PTR_FORMAT.
645
646 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
647
648         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
649
650         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
651           Set depth and width for alaw/mulaw (fixes #326601).
652
653 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
654
655         * tests/icles/Makefile.am:
656           don't build the tests if we don't have the libs
657
658 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
659
660         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
661         (gst_cd_paranoia_paranoia_callback):
662           Don't try to free NULL pointers.
663
664 2006-01-10  Edward Hervey  <edward@fluendo.com>
665
666         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
667         (gst_audio_rate_change_state), (plugin_init):
668         Add debugging category.
669         Fix type issues.
670         Add case for incoming buffers without valid offset/offset_end.
671
672 2006-01-10  Michael Smith  <msmith@fluendo.com>
673
674         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
675           Don't leak GCond in audio sources.
676
677 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
678
679         * gst/playback/gstplaybin.c: (gen_audio_element):
680           Don't leak an autoaudiosink/alsasink when we generate
681           a new audio element. (old code, I guess)
682
683 2006-01-10  Michael Smith  <msmith@fluendo.com>
684
685         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
686           Support float audio in audiorate.
687           Use width rather than depth for selecting sample width.
688
689 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
690
691         * gst/videotestsrc/videotestsrc.h:
692           Use GLib types here (that way we don't have to include the
693           generated _stdint.h header, which makes life easier for win32
694           folks that don't use autotools for the build) (#325990, patch
695           by: Sergey Scobich).
696
697 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
698
699         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
700         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
701         (gst_ring_buffer_pause), (wait_segment):
702         * gst-libs/gst/audio/gstringbuffer.h:
703           Name (private) union, makes Forte compiler happy (this time
704           for real) (#324900).
705
706 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
707
708         * gst-libs/gst/audio/Makefile.am:
709           Link against libgstinterfaces, needed for mixer
710           and property probe stuff.
711
712 2006-01-09  Edward Hervey  <edward@fluendo.com>
713
714         * gst-libs/gst/Makefile.am:
715
716 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
717
718         * gst-libs/gst/audio/Makefile.am:
719         * gst-libs/gst/audio/mixerutils.c:
720         (gst_audio_mixer_filter_do_filter),
721         (gst_audio_mixer_filter_check_element),
722         (gst_audio_mixer_filter_probe_feature),
723         (element_factory_rank_compare_func),
724         (gst_audio_default_registry_mixer_filter):
725         * gst-libs/gst/audio/mixerutils.h:
726           Add gst_audio_default_registry_mixer_filter() utility
727           function.
728
729 2006-01-03  Michael Smith  <msmith@fluendo.com>
730
731         * gst/audioresample/resample.h:
732           As before, but for o_buf
733
734 2006-01-03  Michael Smith  <msmith@fluendo.com>
735
736         * gst/audioresample/resample.h:
737           Declare struct _ResampleState.buffer as unsigned char *, not void *,
738           since we do arithmetic on it.
739
740 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
741
742         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
743         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
744         (gst_ring_buffer_pause), (wait_segment):
745         * gst-libs/gst/audio/gstringbuffer.h:
746           Sun's Forte compiler doesn't seem to like anonymous structs,
747           so use same setup as in GstBaseSrc (fixes #324900).
748
749 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
750
751         * configure.ac:
752         * gst/volume/Makefile.am:
753         * gst/volume/demo.c:
754           move old example to tests/examples/volume/volune.c
755         * tests/examples/Makefile.am:
756         * tests/examples/seek/seek.c: (main):
757           change window-close event from "delete-event" to "destroy"
758         * tests/examples/volume/Makefile.am:
759         * tests/examples/volume/volume.c: (value_changed_callback),
760         (setup_gui), (message_received), (eos_message_received), (main):
761           fix event handling and bus usage
762
763 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
764
765         * gst/audiotestsrc/gstaudiotestsrc.c:
766         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
767         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
768         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
769         (gst_audio_test_src_create_square),
770         (gst_audio_test_src_create_saw),
771         (gst_audio_test_src_create_triangle),
772         (gst_audio_test_src_create_silence),
773         (gst_audio_test_src_create_white_noise),
774         (gst_audio_test_src_create_pink_noise),
775         (gst_audio_test_src_init_sine_table),
776         (gst_audio_test_src_create_sine_table),
777         (gst_audio_test_src_change_wave),
778         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
779         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
780         * gst/audiotestsrc/gstaudiotestsrc.h:
781           update to basesrc changes, implement segmented seeking and eos
782           handling, add a 'sine-tab' waveform for performance critical playback
783
784 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
785
786         * po/POTFILES.in:
787           ... and this time the other modified file that I missed last time.
788
789 2005-12-29  Michael Smith  <msmith@fluendo.com>
790
791         * gst/playback/gstdecodebin.c: (new_pad):
792           Fix non-C89 variable declaration not at the start of a block. Should
793           help some compilers.
794
795 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
796
797         * tests/check/Makefile.am:
798           And now fix 'make distcheck' (builddir != srcdir)
799
800 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
801
802         * configure.ac:
803         * ext/cdparanoia/Makefile.am:
804         * ext/cdparanoia/gstcdparanoia.c:
805         * ext/cdparanoia/gstcdparanoia.h:
806         * ext/cdparanoia/gstcdparanoiasrc.c:
807         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
808         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
809         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
810         (gst_cd_paranoia_paranoia_callback),
811         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
812         (gst_cd_paranoia_src_set_property),
813         (gst_cd_paranoia_src_get_property), (plugin_init):
814         * ext/cdparanoia/gstcdparanoiasrc.h:
815           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
816           plugin again (there are still fixes required to playbin to make
817           cdda:// uris work there).
818
819 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
820
821         * tests/check/Makefile.am:
822           Fix test case compilation.
823
824 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
825
826         * gst-libs/gst/cdda/gstcddabasesrc.c:
827         (gst_cdda_base_src_update_duration),
828         (gst_cdda_base_src_calculate_cddb_id):
829           An integer is not a string. Fix access to uninitialised variable.
830
831         * tests/check/Makefile.am:
832           Add cddabasesrc unit test; also actually enable the vorbis test.
833
834         * tests/check/generic/states.c:
835           Blacklist new cd audio elements as well.
836
837         * tests/check/libs/cddabasesrc.c:
838           Unit test for GstCddaBaseSrc (discid calculation mostly).
839
840 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
841
842         * docs/libs/Makefile.am:
843         * docs/libs/gst-plugins-base-libs-docs.sgml:
844         * docs/libs/gst-plugins-base-libs-sections.txt:
845         * docs/libs/gst-plugins-base-libs.types:
846           Add docs for libgstcdda/GstCddaBaseSrc.
847
848         * gst-libs/gst/interfaces/mixertrack.h:
849           Do one struct member per line with a semicolon at the end, that way
850           even gtk-doc might parse it without complaining.
851
852 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
853
854         * configure.ac:
855         * gst-libs/gst/Makefile.am:
856         * gst-libs/gst/cdda/Makefile.am:
857         * gst-libs/gst/cdda/base64.c:
858         * gst-libs/gst/cdda/base64.h:
859         * gst-libs/gst/cdda/gstcddabasesrc.c:
860         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
861         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
862         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
863         (gst_cdda_base_src_get_property),
864         (gst_cdda_base_src_get_track_from_sector),
865         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
866         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
867         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
868         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
869         (gst_cdda_base_src_uri_get_protocols),
870         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
871         (gst_cdda_base_src_uri_handler_init),
872         (gst_cdda_base_src_setup_interfaces),
873         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
874         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
875         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
876         (gst_cdda_base_src_add_tags),
877         (gst_cdda_base_src_add_index_associations),
878         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
879         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
880         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
881         (gst_cdda_base_src_create):
882         * gst-libs/gst/cdda/gstcddabasesrc.h:
883         * gst-libs/gst/cdda/sha1.c:
884         * gst-libs/gst/cdda/sha1.h:
885           Add new libgstcdda with GstCddaBaseSrc class.
886
887 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
888
889         * ext/gnomevfs/gstgnomevfssink.h:
890           Use GstBaseSinkClass as parent_class member for class struct, not
891           GstBaseSink.
892
893 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
894
895         * gst/videotestsrc/gstvideotestsrc.c:
896         (gst_video_test_src_class_init), (gst_video_test_src_start):
897           Add start method to reset running time and number of frames sent
898           when starting up (fixes #324696; patch by: Michal Benes).
899
900 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
901
902         * docs/plugins/Makefile.am:
903         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
904         * docs/plugins/gst-plugins-base-plugins-sections.txt:
905         * docs/plugins/gst-plugins-base-plugins.args:
906         * docs/plugins/gst-plugins-base-plugins.hierarchy:
907         * docs/plugins/gst-plugins-base-plugins.signals:
908           Add docs stuff for gnomevfssrc and gnomevfssink.
909
910         * ext/gnomevfs/gstgnomevfssrc.c:
911           Fix example pipeline in gtk-doc blurb.
912
913 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
914
915         * ext/gnomevfs/Makefile.am:
916         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
917         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
918         (gst_gnome_vfs_handle_get_type), (plugin_init):
919         * ext/gnomevfs/gstgnomevfs.h:
920         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
921         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
922         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
923         (gst_gnome_vfs_sink_set_property),
924         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
925         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
926         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
927         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
928         (gst_gnome_vfs_sink_uri_get_type),
929         (gst_gnome_vfs_sink_uri_get_protocols),
930         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
931         (gst_gnome_vfs_sink_uri_handler_init):
932         * ext/gnomevfs/gstgnomevfssink.h:
933           Port gnomevfssink; add gtk-doc blurb.
934
935         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
936         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
937         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
938         (gst_gnome_vfs_src_uri_get_type),
939         (gst_gnome_vfs_src_uri_get_protocols),
940         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
941         (gst_gnome_vfs_src_uri_handler_init),
942         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
943         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
944         (gst_gnome_vfs_src_send_additional_headers_callback),
945         (gst_gnome_vfs_src_received_headers_callback),
946         (gst_gnome_vfs_src_push_callbacks),
947         (gst_gnome_vfs_src_pop_callbacks),
948         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
949         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
950         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
951         * ext/gnomevfs/gstgnomevfssrc.h:
952           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
953           file; add gtk-doc blurb with example pipelines.
954
955 === release 0.10.1 ===
956
957 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
958
959         * configure.ac:
960           releasing 0.10.1, "Dobro Dedek"
961
962 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
963
964         * gst/typefind/gsttypefindfunctions.c:
965         iLBC30 and iLBC20 added to typefind.
966
967 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
968
969         * gst-libs/gst/audio/gstbaseaudiosink.c:
970         (gst_base_audio_sink_class_init):
971         * gst-libs/gst/audio/gstbaseaudiosrc.c:
972         (gst_base_audio_src_class_init):
973           update strings, values are in microseconds
974           change the default sink buffer time to something that is smaller
975           (to help software volume mixing have a slightly lower delay) but
976           still be acceptable on Wim's laptop
977
978 2005-12-20  Edward Hervey  <edward@fluendo.com>
979
980         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
981         Made a quack, forgot to add DUCK to the riff video template.
982
983 2005-12-19  Edward Hervey  <edward@fluendo.com>
984
985         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
986         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
987         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
988         (gst_ogm_parse_chain):
989         Make sure pads are initialized correctly.
990         * gst-libs/gst/riff/riff-ids.h:
991         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
992         (gst_riff_create_video_template_caps):
993         Add a whole bunch of FOURCC <=> MimeType.
994         Extend the riff video pad template to support the newly added fourcc.
995
996 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
997
998         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
999         (gst_ogg_demux_activate_chain):
1000           Extra debug output when activating/deactivating chains.
1001
1002         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
1003         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
1004         (unlinked):
1005           Remove a queue from our list when it becomes unlinked.
1006           Don't add queues to elements in class 'Demux' if they
1007           can only produce one pad 
1008
1009 2005-12-18  Julien MOUTTE  <julien@moutte.net>
1010
1011         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
1012         (gst_video_sink_get_type): Add a debug category.
1013
1014 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
1015
1016         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1017         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
1018           Handle downstream newsegment by sending our own newsegment before the
1019           next buffer to be released. (#323900)
1020
1021 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
1022
1023         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1024         (gst_base_rtp_depayload_set_gst_timestamp):
1025           add queue delay to new segment as well (as opposed to just the first
1026           buffer). (bug #322347)
1027
1028 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
1029
1030         * ext/libvisual/visual.c: (make_valid_name):
1031           change some char* into char[]
1032         * gst/audiotestsrc/gstaudiotestsrc.c:
1033         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
1034         (gst_audio_test_src_create):
1035         * gst/audiotestsrc/gstaudiotestsrc.h:
1036           prepare to handle EOS and SEGMENT_DONE
1037
1038 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1039
1040         * tests/check/generic/states.c: (GST_START_TEST):
1041           Blacklist cdparanoia element in state test.
1042
1043 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
1044
1045         * gst/tcp/gsttcp.c:
1046         * gst/tcp/gsttcpclientsink.c:
1047         * gst/tcp/gsttcpserversink.c:
1048         * gst/tcp/gsttcpserversrc.c:
1049           Add <string.h> includes for memset and FD_ZERO (fixes #323878;
1050           patch by: Benjamin Pineau).
1051
1052 2005-12-15  Michael Smith  <msmith@fluendo.com>
1053
1054         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
1055         (gst_video_rate_chain):
1056           Fix timestamping for videorate when the first buffer it sees has a
1057           non-zero timestamp. Fix some misleading debug output.
1058
1059 2005-12-15  Michael Smith  <msmith@fluendo.com>
1060
1061         * gst/audioresample/gstaudioresample.c:
1062           Don't leak all input buffers to audioresample.
1063
1064 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
1065
1066         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
1067           Don't operate on empty text buffers. Strip newlines and
1068           tabs only from the end of the text, but leave them intact
1069           in the middle. Fix typo in gtk-doc description.
1070
1071 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
1072
1073         * gst/playback/gstplaybasebin.c:
1074         * gst/playback/gstplaybin.c: (handoff):
1075           Make sure the video frame buffer we return to apps via the
1076           "frame" property always has caps set on it. Modify
1077           _gst_gvalue_set_object() macro to handle NULL objects
1078           gracefully too.
1079
1080 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
1081
1082         * gst/audiotestsrc/gstaudiotestsrc.c:
1083         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
1084         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
1085         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
1086         (gst_audio_test_src_create):
1087         * gst/audiotestsrc/gstaudiotestsrc.h:
1088         Adjust to some recent api changes and add wtays new cool seeking
1089         capabillities
1090
1091 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
1092
1093         * ext/alsa/Makefile.am:
1094         * ext/alsa/gstalsadeviceprobe.c:
1095         * ext/alsa/gstalsadeviceprobe.h:
1096           Helper functions to add device probing via the GstPropertyProbe
1097           interface to a class.
1098
1099         * ext/alsa/gstalsamixer.h:
1100           Comment out GST_ALSA_MIXER, it returns a struct that's not
1101           used.
1102
1103         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
1104           Add some debug info. 
1105
1106         * ext/alsa/gstalsamixerelement.c:
1107         (gst_alsa_mixer_element_interface_supported),
1108         (gst_implements_interface_init),
1109         (gst_alsa_mixer_element_init_interfaces),
1110         (gst_alsa_mixer_element_class_init),
1111         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
1112         (gst_alsa_mixer_element_set_property),
1113         (gst_alsa_mixer_element_get_property),
1114         (gst_alsa_mixer_element_change_state):
1115         * ext/alsa/gstalsamixerelement.h:
1116           Add 'device' and 'device-name' properties. Add GstPropertyProbe
1117           for device handling (gnome-volume-control will need that).
1118
1119 2005-12-12  Christian Schaller  <uraeus@gnome.org>
1120
1121         * ext/Makefile.am: fix cdparanoia entry
1122         * gst-plugins-base.spec.in: add cdparanoia
1123
1124 2005-12-12  Michael Smith  <msmith@fluendo.com>
1125
1126         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
1127           Use the correct function to free list of typefind factories.
1128
1129 2005-12-12  Wim Taymans  <wim@fluendo.com>
1130
1131         * gst/videotestsrc/gstvideotestsrc.c:
1132         (gst_video_test_src_class_init), (gst_video_test_src_init),
1133         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
1134         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
1135         (gst_video_test_src_create):
1136         * gst/videotestsrc/gstvideotestsrc.h:
1137         Implement seeking in videotestsrc.
1138         Small cleanups.
1139
1140 2005-12-12  Wim Taymans  <wim@fluendo.com>
1141
1142         * ext/cdparanoia/Makefile.am:
1143         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
1144         (gst_paranoia_endian_get_type), (_do_init),
1145         (cdparanoia_class_init), (cdparanoia_init),
1146         (cdparanoia_set_property), (cdparanoia_get_property),
1147         (cdparanoia_do_seek), (cdparanoia_is_seekable),
1148         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
1149         (cdparanoia_convert), (cdparanoia_get_query_types),
1150         (cdparanoia_query), (cdparanoia_set_index),
1151         (cdparanoia_uri_set_uri):
1152         * ext/cdparanoia/gstcdparanoia.h:
1153         Partially ported cdparanoia now that basesrc can support a
1154         plugin like this..
1155
1156 2005-12-12  Wim Taymans  <wim@fluendo.com>
1157
1158         * tests/examples/seek/scrubby.c: (main):
1159         Set higher priority for bus events so they don't get reordered with
1160         gtk gui events.
1161
1162         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
1163         (flush_toggle_cb), (main):
1164         Added checkbox to disable flushing seeks. 
1165         Disable scrubbing when doing non flushing seeks.
1166
1167 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
1168
1169         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
1170         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
1171         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
1172         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
1173           Implement some sort of event handling that doesn't rely on
1174           g_return_if_fail; make sure we always push the last chunk of an 
1175           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
1176           state change function; remove some old cruft. Seeking is still
1177           rather unlikely to work though.
1178
1179         * tools/.cvsignore:
1180           Ignore more.
1181
1182 2005-12-11  Julien MOUTTE  <julien@moutte.net>
1183
1184         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
1185         Fixed a leak of the current image reference when cleaning up.
1186         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
1187
1188 2005-12-09  Michael Smith  <msmith@fluendo.com>
1189
1190         * tools/Makefile.am:
1191         * tools/gst-launch-ext-m.m:
1192           Remove gst-launch-ext. It doesn't work, and is no longer
1193           particularly useful.
1194
1195 2005-12-08  Luca Ognibene  <luogni@tin.it>
1196
1197         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
1198           don't pass random values to ogmparse convert function.
1199           Make seeking possible in the exile1.ogm file.
1200
1201 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
1202
1203         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
1204         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
1205           Work around refcount problem with g_value_set_object() that occur
1206           if the core has been compiled against GLib-2.6 (g_value_set_object()
1207           will only g_object_ref() the element, but the caller will
1208           gst_object_unref() it and bad things will happen due to the way
1209           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
1210           totem for people on FC4 using Thomas's 0.10 RPMs.
1211           
1212 2005-12-07  Edward Hervey  <edward@fluendo.com>
1213
1214         Time to welcome ogm to 0.10 :)
1215         
1216         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
1217         (gst_ogg_pad_typefind):
1218         Oggdemux can now properly typefind elements with dynamic pads.
1219         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
1220         Properly set caps on src pad, and set caps on outgoing buffers.
1221
1222 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
1223
1224         * ext/alsa/gstalsamixer.h:
1225         * ext/alsa/gstalsamixerelement.h:
1226         * ext/alsa/gstalsamixeroptions.h:
1227         * ext/alsa/gstalsamixertrack.h:
1228         * ext/alsa/gstalsasink.c:
1229         * ext/alsa/gstalsasink.h:
1230         * ext/alsa/gstalsasrc.c:
1231         * ext/alsa/gstalsasrc.h:
1232         * ext/cdparanoia/gstcdparanoia.h:
1233         * ext/gnomevfs/gstgnomevfsuri.h:
1234         * ext/ogg/gstoggdemux.c:
1235         * ext/ogg/gstoggmux.c:
1236         * ext/pango/gsttextoverlay.h:
1237         * ext/theora/theoradec.c:
1238         * ext/theora/theoraenc.c:
1239         * ext/vorbis/vorbisdec.h:
1240         * ext/vorbis/vorbisenc.c:
1241         * ext/vorbis/vorbisenc.h:
1242         * ext/vorbis/vorbisparse.h:
1243         * gst-libs/gst/audio/gstaudioclock.h:
1244         * gst-libs/gst/audio/gstaudiosink.c:
1245         * gst-libs/gst/audio/gstaudiosink.h:
1246         * gst-libs/gst/audio/gstaudiosrc.c:
1247         * gst-libs/gst/audio/gstaudiosrc.h:
1248         * gst-libs/gst/audio/gstbaseaudiosink.c:
1249         * gst-libs/gst/audio/gstbaseaudiosink.h:
1250         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1251         * gst-libs/gst/audio/gstbaseaudiosrc.h:
1252         * gst-libs/gst/audio/gstringbuffer.h:
1253         * gst-libs/gst/audio/multichannel.h:
1254         * gst-libs/gst/floatcast/floatcast.h:
1255         * gst-libs/gst/interfaces/colorbalance.c:
1256         * gst-libs/gst/interfaces/colorbalance.h:
1257         * gst-libs/gst/interfaces/colorbalancechannel.h:
1258         * gst-libs/gst/interfaces/mixer.h:
1259         * gst-libs/gst/interfaces/mixeroptions.h:
1260         * gst-libs/gst/interfaces/mixertrack.h:
1261         * gst-libs/gst/interfaces/navigation.h:
1262         * gst-libs/gst/interfaces/propertyprobe.h:
1263         * gst-libs/gst/interfaces/tuner.h:
1264         * gst-libs/gst/interfaces/tunerchannel.h:
1265         * gst-libs/gst/interfaces/tunernorm.h:
1266         * gst-libs/gst/interfaces/xoverlay.h:
1267         * gst-libs/gst/netbuffer/gstnetbuffer.h:
1268         * gst-libs/gst/riff/riff-ids.h:
1269         * gst-libs/gst/riff/riff-media.h:
1270         * gst-libs/gst/riff/riff-read.h:
1271         * gst-libs/gst/rtp/gstbasertpdepayload.h:
1272         * gst-libs/gst/rtp/gstbasertppayload.c:
1273         * gst-libs/gst/rtp/gstbasertppayload.h:
1274         * gst-libs/gst/rtp/gstrtpbuffer.c:
1275         * gst-libs/gst/rtp/gstrtpbuffer.h:
1276         * gst-libs/gst/tag/gsttageditingprivate.h:
1277         * gst-libs/gst/tag/gstvorbistag.c:
1278         (gst_tag_list_from_vorbiscomment_buffer):
1279         * gst-libs/gst/tag/tag.h:
1280         * gst-libs/gst/video/video.h:
1281         * gst/adder/gstadder.c:
1282         * gst/adder/gstadder.h:
1283         * gst/audioconvert/audioconvert.c:
1284         * gst/audioconvert/audioconvert.h:
1285         * gst/audioconvert/gstaudioconvert.c:
1286         * gst/audioconvert/gstchannelmix.c:
1287         * gst/audioconvert/gstchannelmix.h:
1288         * gst/audiorate/gstaudiorate.c:
1289         * gst/audioresample/buffer.h:
1290         * gst/audioresample/functable.h:
1291         * gst/audioresample/gstaudioresample.c:
1292         * gst/audioresample/resample.h:
1293         * gst/ffmpegcolorspace/avcodec.h:
1294         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1295         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
1296         * gst/ffmpegcolorspace/imgconvert.c:
1297         * gst/ffmpegcolorspace/imgconvert_template.h:
1298         * gst/playback/gstdecodebin.c:
1299         * gst/playback/gstplaybasebin.h:
1300         * gst/playback/gstplaybin.c:
1301         * gst/playback/gststreaminfo.h:
1302         * gst/tcp/gstfdset.c:
1303         * gst/tcp/gstfdset.h:
1304         * gst/tcp/gstmultifdsink.c:
1305         * gst/tcp/gstmultifdsink.h:
1306         * gst/tcp/gsttcp.h:
1307         * gst/tcp/gsttcpclientsrc.c:
1308         * gst/tcp/gsttcpclientsrc.h:
1309         * gst/tcp/gsttcpplugin.h:
1310         * gst/tcp/gsttcpserversink.c:
1311         * gst/tcp/gsttcpserversrc.c:
1312         * gst/typefind/gsttypefindfunctions.c:
1313         * gst/videorate/gstvideorate.c:
1314         * gst/videotestsrc/gstvideotestsrc.h:
1315         * gst/videotestsrc/videotestsrc.h:
1316         * sys/v4l/gstv4lcolorbalance.h:
1317         * sys/v4l/gstv4ltuner.h:
1318         * sys/v4l/gstv4lxoverlay.h:
1319         * sys/v4l/v4l_calls.h:
1320         * sys/v4l/videodev_mjpeg.h:
1321         * tests/check/elements/audioconvert.c:
1322         * tests/check/elements/audioresample.c:
1323         * tests/check/elements/audiotestsrc.c:
1324         * tests/check/elements/videotestsrc.c:
1325         * tests/check/elements/volume.c:
1326         * tests/examples/seek/scrubby.c:
1327         * tests/examples/seek/seek.c:
1328           expand tabs
1329
1330 === release 0.10.0 ===
1331
1332 2005-12-05   <thomas (at) apestaart (dot) org>
1333
1334         * configure.ac:
1335           releasing 0.10.0, "Mont-d'or"
1336
1337 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
1338
1339         * tests/examples/seek/Makefile.am:
1340         Build fix for when gtk is not available.
1341
1342 2005-12-05  Andy Wingo  <wingo@pobox.com>
1343
1344         * ext/libvisual/visual.c: (get_buffer):
1345         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
1346         * ext/pango/gsttextrender.c: (gst_text_render_chain):
1347         * ext/theora/theoradec.c: (theora_handle_data_packet):
1348         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
1349         (theora_enc_chain):
1350         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1351         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
1352         Update for alloc_buffer changes.
1353
1354 2005-12-05  Andy Wingo  <wingo@pobox.com>
1355
1356         patch by: Kai Vehmanen <kv2004 eca cx>
1357         
1358         * gst-libs/gst/rtp/gstbasertpdepayload.c
1359         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
1360
1361 2005-12-04  Andy Wingo  <wingo@pobox.com>
1362
1363         patch by: Sebastien Cote <sebas642 yahoo ca>
1364         
1365         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
1366         Fixes #319172.
1367
1368 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
1369
1370         * docs/plugins/Makefile.am:
1371         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1372         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1373         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1374         * ext/pango/gstclockoverlay.c:
1375         * ext/pango/gsttextoverlay.c: 
1376         * ext/pango/gsttextrender.c:
1377         * ext/pango/gsttimeoverlay.c:
1378           Add gtk-doc blurbs to pango elements.
1379
1380 2005-12-02  Wim Taymans  <wim@fluendo.com>
1381
1382         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
1383         * gst/audioresample/buffer.h:
1384         * gst/audioresample/gstaudioresample.c:
1385         * gst/audioresample/gstaudioresample.h:
1386         * gst/audioresample/resample.c: (resample_input_flush),
1387         (resample_input_pushthrough), (resample_input_eos),
1388         (resample_get_output_size_for_input),
1389         (resample_get_input_size_for_output), (resample_get_output_size),
1390         (resample_get_output_data):
1391         * gst/audioresample/resample.h:
1392         * gst/audioresample/resample_ref.c: (resample_scale_ref):
1393         Fix audioresample, seek torture, new segments, reverse negotiation
1394         etc.. work fine.
1395
1396 2005-12-02  Wim Taymans  <wim@fluendo.com>
1397
1398         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
1399         Small cleanups.
1400
1401 2005-12-02  Wim Taymans  <wim@fluendo.com>
1402
1403         * gst/audioconvert/gstaudioconvert.c:
1404         (gst_audio_convert_transform):
1405         Post errors.
1406
1407 === release 0.9.7 ===
1408
1409 2005-12-01   <thomas (at) apestaart (dot) org>
1410
1411         * configure.ac:
1412           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
1413
1414 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1415
1416         * Makefile.am:
1417         * po/hu.po:
1418         * win32/MANIFEST:
1419         * win32/gst.sln:
1420           add win32 MANIFEST file
1421           do something to the hungarian translation
1422
1423 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
1424
1425         * ext/Makefile.am:
1426           Add $(PANGO_DIR) to SUBDIRS
1427
1428         * ext/pango/gstclockoverlay.c:
1429         * ext/pango/gsttimeoverlay.c:
1430           Fix and improve element descriptions.
1431
1432 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1433
1434         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1435         * docs/plugins/inspect/plugin-libvisual.xml:
1436         * docs/plugins/inspect/plugin-pango.xml:
1437           add pango plugin to docs
1438
1439 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1440
1441         * configure.ac:
1442         * ext/Makefile.am:
1443           moved pango to base
1444
1445 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1446
1447         * configure.ac:
1448         * tests/Makefile.am:
1449         * tests/icles/.cvsignore:
1450         * tests/icles/Makefile.am:
1451         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
1452         (close_display), (resize_window), (move_window), (create_window),
1453         (terminate_playback), (pause_playback), (start_playback), (main):
1454           add stress test for xoverlay from Julien
1455
1456 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1457
1458         * docs/libs/tmpl/gstcolorbalance.sgml:
1459         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1460         * gst-libs/gst/rtp/gstbasertppayload.c:
1461         * gst-libs/gst/rtp/gstrtpbuffer.c:
1462         * gst-libs/gst/rtp/gstrtpbuffer.h:
1463           Do burger's rename for rtp payloaders and depayloaders
1464
1465 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1466
1467         * win32/:
1468           add Visual Studio 6 build files
1469
1470 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1471
1472         * docs/libs/gst-plugins-base-libs-docs.sgml:
1473         * docs/libs/gst-plugins-base-libs-sections.txt:
1474         * docs/libs/tmpl/gstaudio.sgml:
1475         * docs/libs/tmpl/gstringbuffer.sgml:
1476         * gst-libs/gst/interfaces/xoverlay.c:
1477         * gst-libs/gst/video/gstvideofilter.c:
1478         * gst-libs/gst/video/gstvideosink.c:
1479           update documentation
1480
1481 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1482
1483         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
1484         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
1485         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
1486         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
1487         (gst_multi_fd_sink_get_stats),
1488         (gst_multi_fd_sink_remove_client_link),
1489         (gst_multi_fd_sink_handle_client_read),
1490         (gst_multi_fd_sink_client_queue_data),
1491         (gst_multi_fd_sink_client_queue_caps),
1492         (gst_multi_fd_sink_client_queue_buffer),
1493         (gst_multi_fd_sink_new_client),
1494         (gst_multi_fd_sink_handle_client_write),
1495         (gst_multi_fd_sink_recover_client),
1496         (gst_multi_fd_sink_queue_buffer),
1497         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
1498         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
1499         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
1500         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
1501         * gst/tcp/gstmultifdsink.h:
1502         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
1503         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
1504         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
1505         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
1506         (gst_tcp_client_sink_set_property),
1507         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
1508         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
1509         * gst/tcp/gsttcpclientsink.h:
1510         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
1511         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
1512         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
1513         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
1514         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
1515         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
1516         * gst/tcp/gsttcpclientsrc.h:
1517         * gst/tcp/gsttcpplugin.c: (plugin_init):
1518         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
1519         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
1520         (gst_tcp_server_sink_finalize),
1521         (gst_tcp_server_sink_handle_server_read),
1522         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
1523         (gst_tcp_server_sink_set_property),
1524         (gst_tcp_server_sink_get_property),
1525         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
1526         * gst/tcp/gsttcpserversink.h:
1527         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
1528         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
1529         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
1530         (gst_tcp_server_src_set_property),
1531         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
1532         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
1533         * gst/tcp/gsttcpserversrc.h:
1534           more borgifying
1535
1536 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1537
1538         * docs/plugins/Makefile.am:
1539         * docs/plugins/gst-plugins-base-plugins.args:
1540         * docs/plugins/inspect/plugin-libvisual.xml:
1541         * gst/audioconvert/plugin.h:
1542         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
1543         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
1544         (gst_audio_rate_setcaps), (gst_audio_rate_init),
1545         (gst_audio_rate_chain), (gst_audio_rate_set_property),
1546         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
1547         (plugin_init):
1548         * gst/audiotestsrc/gstaudiotestsrc.c:
1549         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
1550         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
1551         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
1552         (gst_audio_test_src_get_query_types),
1553         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
1554         (gst_audio_test_src_create_square),
1555         (gst_audio_test_src_create_saw),
1556         (gst_audio_test_src_create_triangle),
1557         (gst_audio_test_src_create_silence),
1558         (gst_audio_test_src_create_white_noise),
1559         (gst_audio_test_src_init_pink_noise),
1560         (gst_audio_test_src_generate_pink_noise_value),
1561         (gst_audio_test_src_create_pink_noise),
1562         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
1563         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
1564         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
1565         (plugin_init):
1566         * gst/audiotestsrc/gstaudiotestsrc.h:
1567         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
1568         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
1569         (gst_sub_parse_init), (gst_sub_parse_formats),
1570         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
1571         (convert_encoding), (get_next_line),
1572         (gst_sub_parse_data_format_autodetect),
1573         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
1574         (gst_sub_parse_loop), (gst_sub_parse_chain),
1575         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
1576         (plugin_init):
1577         * gst/subparse/gstsubparse.h:
1578         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
1579         (gst_video_rate_base_init), (gst_video_rate_class_init),
1580         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
1581         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
1582         (gst_video_rate_init), (gst_video_rate_event),
1583         (gst_video_rate_chain), (gst_video_rate_set_property),
1584         (gst_video_rate_get_property), (gst_video_rate_change_state),
1585         (plugin_init):
1586         * gst/videoscale/gstvideoscale.c:
1587         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
1588         (gst_video_scale_src_template_factory),
1589         (gst_video_scale_sink_template_factory),
1590         (gst_video_scale_get_type), (gst_video_scale_base_init),
1591         (gst_video_scale_class_init), (gst_video_scale_init),
1592         (gst_video_scale_set_property), (gst_video_scale_get_property),
1593         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
1594         (gst_video_scale_prepare_size), (parse_caps),
1595         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
1596         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
1597         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
1598         (plugin_init):
1599         * gst/videoscale/gstvideoscale.h:
1600         * gst/videotestsrc/gstvideotestsrc.c:
1601         (gst_video_test_src_pattern_get_type),
1602         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
1603         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
1604         (gst_video_test_src_set_pattern),
1605         (gst_video_test_src_set_property),
1606         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
1607         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
1608         (gst_video_test_src_event), (gst_video_test_src_get_times),
1609         (gst_video_test_src_create), (plugin_init):
1610         * gst/videotestsrc/gstvideotestsrc.h:
1611         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
1612         (gst_video_test_src_smpte), (gst_video_test_src_snow),
1613         (gst_video_test_src_black):
1614         * gst/videotestsrc/videotestsrc.h:
1615           borgify further
1616           clean up docs a little
1617
1618 2005-11-30  Wim Taymans  <wim@fluendo.com>
1619
1620         * gst-libs/gst/rtp/gstbasertpdepayload.h:
1621         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
1622         (gst_basertppayload_event), (gst_basertppayload_push),
1623         (gst_basertppayload_change_state):
1624         * gst-libs/gst/rtp/gstbasertppayload.h:
1625         closed #320644.
1626
1627 2005-11-30  Julien MOUTTE  <julien@moutte.net>
1628
1629         * docs/libs/gst-plugins-base-libs-docs.sgml:
1630         * docs/libs/gst-plugins-base-libs-sections.txt:
1631         * gst-libs/gst/video/gstvideofilter.c:
1632         * gst-libs/gst/video/gstvideosink.c:
1633         * gst-libs/gst/video/gstvideosink.h: Adding docs.
1634
1635 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1636
1637         * LICENSE:
1638           move
1639         * po/af.po:
1640         * po/az.po:
1641         * po/cs.po:
1642         * po/en_GB.po:
1643         * po/hu.po:
1644         * po/it.po:
1645         * po/nb.po:
1646         * po/nl.po:
1647         * po/or.po:
1648         * po/sq.po:
1649         * po/sr.po:
1650         * po/sv.po:
1651         * po/uk.po:
1652         * po/vi.po:
1653         * Makefile.am:
1654           update
1655         * scripts/autoplugins.sh:
1656           remove
1657
1658 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1659
1660         * Makefile.am:
1661         * configure.ac:
1662         * examples/Makefile.am:
1663         * examples/capsfilter/Makefile.am:
1664         * examples/capsfilter/capsfilter1.c:
1665         * examples/gob/Makefile.am:
1666         * examples/gob/gst-identity2.gob:
1667         * examples/indexing/.cvsignore:
1668         * examples/indexing/Makefile.am:
1669         * examples/indexing/indexmpeg.c:
1670         * examples/seeking/.cvsignore:
1671         * examples/seeking/Makefile.am:
1672         * examples/seeking/cdparanoia.c:
1673         * examples/seeking/cdplayer.c:
1674         * examples/seeking/chained.c:
1675         * examples/seeking/scrubby.c:
1676         * examples/seeking/seek.c:
1677         * examples/stats/Makefile.am:
1678         * examples/stats/mp2ogg.c:
1679         * examples/switch/.cvsignore:
1680         * examples/switch/Makefile.am:
1681         * examples/switch/switcher.c:
1682         * tests/Makefile.am:
1683         * tests/check/generic/.cvsignore:
1684         * tests/check/pipelines/.cvsignore:
1685         * tests/examples/Makefile.am:
1686         * tests/examples/seek/Makefile.am:
1687           reorganize stuff under tests/
1688
1689 2005-11-30  Edward Hervey  <edward@fluendo.com>
1690
1691         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
1692         Go away you stupid GstStaticPadTemplate memleak.
1693
1694 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
1695
1696         * gst-libs/gst/net/Makefile.am:
1697         * gst-libs/gst/net/README:
1698         * gst-libs/gst/net/gstnetbuffer.c:
1699         * gst-libs/gst/net/gstnetbuffer.h:
1700           this was moved to "netbuffer"
1701
1702 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
1703
1704         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
1705         (gst_video_filter_class_init), (gst_video_filter_init):
1706         * gst-libs/gst/video/gstvideofilter.h:
1707           borgify name to bring in line with other classes
1708
1709 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
1710
1711         * gst/audioscale/.cvsignore:
1712         * gst/audioscale/Makefile.am:
1713         * gst/audioscale/README:
1714         * gst/audioscale/audioscale.vcproj:
1715         * gst/audioscale/dtof.c:
1716         * gst/audioscale/dtos.c:
1717         * gst/audioscale/functable.c:
1718         * gst/audioscale/gstaudioscale.c:
1719         * gst/audioscale/gstaudioscale.h:
1720         * gst/audioscale/private.h:
1721         * gst/audioscale/resample.c:
1722         * gst/audioscale/resample.h:
1723         * gst/audioscale/test.c:
1724           remove
1725
1726 2005-11-30  Edward Hervey  <edward@fluendo.com>
1727
1728         * gst-libs/gst/netbuffer/Makefile.am:
1729         really, really tired
1730
1731 2005-11-30  Edward Hervey  <edward@fluendo.com>
1732
1733         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1734         Update for new GstTypeFindFactory _register()
1735
1736 2005-11-30  Edward Hervey  <edward@fluendo.com>
1737
1738         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
1739         Let's not override libgstnet from core for no reason...
1740         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
1741         Ok, maybe not so quick next time.
1742
1743 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1744
1745         * configure.ac:
1746         * gst-libs/gst/Makefile.am:
1747           moved gst-libs/gst/net to netbuffer through CVS surgery
1748           remove old directory
1749           updating build to accomodate
1750           (#322257)
1751
1752 2005-11-29  Andy Wingo  <wingo@pobox.com>
1753
1754         * pkgconfig/gstreamer-plugins-base.pc.in:
1755         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
1756         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
1757         (#322257).
1758
1759 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
1760
1761         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
1762         3rd time's the charm. Correct ref-counting for discarded buffers.
1763
1764 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
1765
1766         * gst/playback/gststreamselector.c:
1767         (gst_stream_selector_class_init),
1768         (gst_stream_selector_set_property),
1769         (gst_stream_selector_get_property),
1770         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
1771         Fix ref-counting
1772
1773 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
1774
1775         * gst/subparse/gstsubparse.c: (feed_textbuf):
1776           Don't access already unref'ed buffer.
1777
1778 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
1779
1780         * gst/playback/gststreamselector.c:
1781         (gst_stream_selector_class_init), (gst_stream_selector_init),
1782         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
1783         (gst_stream_selector_get_property),
1784         (gst_stream_selector_get_linked_pad),
1785         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
1786         * gst/playback/gststreamselector.h:
1787         Add the active-pad property for playbin to use shortly. Ignore buffers
1788         from any other pad, returning GST_FLOW_NOT_LINKED
1789
1790 2005-11-29  Julien MOUTTE  <julien@moutte.net>
1791
1792         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
1793         patch from bug #322704 (Alessandro Decina).
1794
1795 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1796
1797         * gst-libs/gst/audio/Makefile.am:
1798           folded audiofilter into the audio library
1799
1800 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1801
1802         * gst/videoscale/gstvideoscale.h:
1803         * gst/videoscale/gstvideoscale.c:
1804           remove unimplemented scale methods
1805
1806 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
1807
1808         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
1809           Don't leak caps.
1810
1811 2005-11-28  Julien MOUTTE  <julien@moutte.net>
1812
1813         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
1814         (gst_ximagesink_setcaps):
1815         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
1816         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
1817         happens (only visible on ximagesink but bug is in xv too) set_caps was
1818         destroying the internal x[v]image used to memcpy non locally alloced
1819         buffers so that it got renewed on next _chain. The issue is that 
1820         _expose will try to put that image as it reffed it in _put.
1821         Using gst_buffer_unref instead of destroy fixes it !
1822
1823 2005-11-28  Edward Hervey  <edward@fluendo.com>
1824
1825         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
1826         (try_to_link_1), (queue_filled_cb):
1827         Better use of the queues. Start with a small size queue and only increase
1828         the size of the queues when the other queues are empty.
1829
1830 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1831
1832         * gst-libs/gst/video/Makefile.am:
1833           compile in copied-over videofilter into the video library
1834         * gst-libs/gst/video/videosink.h:
1835           rename the header to gstvideosink.h since it's a base GstObject class
1836         * sys/ximage/ximagesink.h:
1837         * sys/xvimage/xvimagesink.h:
1838           use the new header
1839
1840 2005-11-28  Wim Taymans  <wim@fluendo.com>
1841
1842         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
1843         * gst/playback/gstplaybasebin.h:
1844         Prepare to handle errors betters.
1845
1846         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
1847         Set sinks to PAUSED first before adding and linking them so that
1848         we don't interrupt dataflow.
1849
1850 2005-11-28  Wim Taymans  <wim@fluendo.com>
1851
1852         * gst-libs/gst/audio/TODO:
1853         Updated TODO
1854
1855         * gst-libs/gst/audio/gstaudiosink.c:
1856         (gst_audioringbuffer_open_device),
1857         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
1858         (gst_audioringbuffer_release):
1859         Small cleanups.
1860
1861         * gst-libs/gst/audio/gstbaseaudiosink.c:
1862         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
1863         (gst_base_audio_sink_change_state):
1864         Slave to the master clock when going to PLAYING and unslave when
1865         going to PAUSED.
1866
1867         * gst-libs/gst/audio/gstringbuffer.c:
1868         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
1869         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
1870         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
1871         (gst_ring_buffer_clear_all), (wait_segment),
1872         (gst_ring_buffer_commit), (gst_ring_buffer_read),
1873         (gst_ring_buffer_advance):
1874         * gst-libs/gst/audio/gstringbuffer.h:
1875         Add some docs and cleanups.
1876
1877 2005-11-28  Julien MOUTTE  <julien@moutte.net>
1878
1879         * sys/xvimage/xvimagesink.c:
1880         (gst_xvimagesink_navigation_send_event): Fix navigation events
1881         coordinates translation with pixel aspect ratios.
1882
1883 2005-11-28  Julien MOUTTE  <julien@moutte.net>
1884
1885         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
1886         Use calculated video geometry from _setcaps instead of buffer
1887         caps to respect pixel aspect ratio. (fixes #322388)
1888
1889 2005-11-28  Julien MOUTTE  <julien@moutte.net>
1890
1891         * docs/libs/tmpl/gstcolorbalance.sgml:
1892         * docs/libs/tmpl/gstmixer.sgml:
1893         * docs/libs/tmpl/gstxoverlay.sgml:
1894         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
1895         interface.
1896
1897 2005-11-28  Julien MOUTTE  <julien@moutte.net>
1898
1899         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
1900         Refuse to create an XvImage if we can't find the format.
1901
1902 2005-11-28  Edward Hervey  <edward@fluendo.com>
1903
1904         * gst-libs/gst/riff/riff-media.c:
1905         (gst_riff_create_audio_template_caps):
1906         Add ATRAC3 to the list of riff-possible audio caps.
1907         I know we still don't have a plugin for atrac3, but it's saner to output
1908         that than a cryptic mimetype.
1909
1910 2005-11-27  Edward Hervey  <edward@fluendo.com>
1911
1912         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
1913         Don't try to create a zero-sized subbuffer.
1914
1915 2005-11-27  Julien MOUTTE  <julien@moutte.net>
1916
1917         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
1918         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
1919         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
1920         (gst_ximagesink_expose): Fixed a tricky race.
1921         * sys/ximage/ximagesink.h:
1922         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
1923         (gst_xvimagesink_expose): Fixed a tricky race.
1924         * sys/xvimage/xvimagesink.h:
1925
1926 2005-11-27  Edward Hervey  <edward@fluendo.com>
1927
1928         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
1929         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
1930         Remove unused properties, and add queues between demuxers and decoders
1931         so that a lot more files can preroll properly.
1932
1933 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
1934
1935         * gst-libs/gst/net/Makefile.am:
1936         * gst-libs/gst/rtp/Makefile.am:
1937         * gst-libs/gst/tag/Makefile.am:
1938           remove silly include
1939         * gst/tags/Makefile.am:
1940         * gst/tags/gsttagediting.c:
1941         * gst/tags/gsttageditingprivate.h:
1942         * gst/tags/tagedit.vcproj:
1943           remove directory, is as good as empty
1944
1945 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
1946
1947         * configure.ac:
1948           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
1949         * gst-libs/Makefile.am:
1950         * gst-libs/gst/audio/Makefile.am:
1951         * gst-libs/gst/interfaces/Makefile.am:
1952         * gst-libs/gst/net/Makefile.am:
1953         * gst-libs/gst/riff/Makefile.am:
1954         * gst-libs/gst/rtp/Makefile.am:
1955         * gst-libs/gst/tag/Makefile.am:
1956         * gst-libs/gst/video/Makefile.am:
1957           and use them
1958
1959 2005-11-27  Julien MOUTTE  <julien@moutte.net>
1960
1961         * docs/libs/tmpl/gstcolorbalance.sgml:
1962         * docs/libs/tmpl/gstmixer.sgml:
1963         * docs/libs/tmpl/gstxoverlay.sgml:
1964         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
1965         * sys/ximage/ximagesink.h:
1966         * sys/xvimage/xvimagesink.h: More and more documentation.
1967
1968 2005-11-26  Julien MOUTTE  <julien@moutte.net>
1969
1970         * docs/libs/gst-plugins-base-libs-docs.sgml:
1971         * docs/libs/gst-plugins-base-libs-sections.txt:
1972         * docs/libs/tmpl/gstcolorbalance.sgml:
1973         * docs/libs/tmpl/gstmixer.sgml:
1974         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
1975         to documentation.
1976
1977 2005-11-26  Julien MOUTTE  <julien@moutte.net>
1978
1979         * docs/plugins/Makefile.am:
1980         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1981         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1982         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
1983
1984 2005-11-26  Julien MOUTTE  <julien@moutte.net>
1985
1986         * docs/plugins/Makefile.am:
1987         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1988         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1989         * docs/plugins/inspect/plugin-adder.xml:
1990         * docs/plugins/inspect/plugin-alsa.xml:
1991         * docs/plugins/inspect/plugin-audioconvert.xml:
1992         * docs/plugins/inspect/plugin-audiorate.xml:
1993         * docs/plugins/inspect/plugin-audioresample.xml:
1994         * docs/plugins/inspect/plugin-audiotestsrc.xml:
1995         * docs/plugins/inspect/plugin-decodebin.xml:
1996         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
1997         * docs/plugins/inspect/plugin-gnomevfs.xml:
1998         * docs/plugins/inspect/plugin-ogg.xml:
1999         * docs/plugins/inspect/plugin-playbin.xml:
2000         * docs/plugins/inspect/plugin-subparse.xml:
2001         * docs/plugins/inspect/plugin-tcp.xml:
2002         * docs/plugins/inspect/plugin-theora.xml:
2003         * docs/plugins/inspect/plugin-typefindfunctions.xml:
2004         * docs/plugins/inspect/plugin-video4linux.xml:
2005         * docs/plugins/inspect/plugin-videorate.xml:
2006         * docs/plugins/inspect/plugin-videoscale.xml:
2007         * docs/plugins/inspect/plugin-videotestsrc.xml:
2008         * docs/plugins/inspect/plugin-volume.xml:
2009         * docs/plugins/inspect/plugin-vorbis.xml:
2010         * docs/plugins/inspect/plugin-ximagesink.xml:
2011         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
2012         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
2013
2014 2005-11-26  Edward Hervey  <edward@fluendo.com>
2015
2016         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
2017         Properly return GstFlowReturn from gst_pad_push in chain functions.
2018
2019 2005-11-25  Michael Smith  <msmith@fluendo.com>
2020
2021         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
2022         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
2023         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
2024         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
2025           Handle various conditions better when we don't understand a stream.
2026           Removes a heap of CRITICALs on ogg streams containing unknown data.
2027
2028 2005-11-24  Andy Wingo  <wingo@pobox.com>
2029
2030         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
2031         Be threadsafe.
2032
2033 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2034
2035         * configure.ac: back to HEAD
2036
2037 === release 0.9.6 ===
2038
2039 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
2040
2041         * configure.ac:
2042           releasing 0.9.6, "White Eight"
2043
2044 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2045
2046         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
2047         * docs/plugins/inspect/plugin-sine.xml:
2048           remove sinesrc some more
2049
2050 2005-11-23  Wim Taymans  <wim@fluendo.com>
2051
2052         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
2053         If we are reading too slowly, jump forward in the ringbuffer
2054         instead of blocking.
2055
2056 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
2057
2058         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
2059         (gst_visual_chain):
2060         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
2061         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
2062         (gst_videorate_chain):
2063         * gst/videotestsrc/gstvideotestsrc.c:
2064         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
2065         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
2066         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
2067         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
2068         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
2069         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
2070           Updates for API changes
2071
2072 2005-11-23  Wim Taymans  <wim@fluendo.com>
2073
2074         * gst-libs/gst/audio/gstbaseaudiosink.c:
2075         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
2076         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2077         Fix for calibration API change.
2078
2079 2005-11-23  Michael Smith <msmith@fluendo.com>
2080
2081         * gst-libs/gst/audio/multichannel.c:
2082         (gst_audio_get_channel_positions),
2083         (gst_audio_set_channel_positions),
2084         (gst_audio_set_structure_channel_positions_list),
2085         (gst_audio_fixate_channel_positions):
2086           Use gst_value_array_*() functions on value arrays, not
2087           gst_value_list_*().
2088
2089 2005-11-23  Edward Hervey  <edward@fluendo.com>
2090
2091         * autogen.sh:
2092         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
2093         Fixes autogen
2094
2095 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2096
2097         * check/Makefile.am:
2098         * check/elements/videotestsrc.c: (setup_videotestsrc),
2099         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
2100         (main):
2101           add a test for videotestsrc
2102
2103 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2104
2105         * gst/sine/.cvsignore:
2106         * gst/sine/Makefile.am:
2107         * gst/sine/gstsinesrc.c:
2108         * gst/sine/gstsinesrc.h:
2109         * gst/sine/sinesrc.vcproj:
2110           and remove sinesrc from the repository.  Closes #321446
2111
2112 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2113
2114         * configure.ac:
2115         * gst-plugins-base.spec.in:
2116           remove sinesrc from the build
2117
2118 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2119
2120         * check/Makefile.am:
2121         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
2122         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
2123         (main):
2124           add a test for audiotestsrc, testing all waves.  Even seems
2125           leak-free at first glance, nice job Stefan
2126
2127 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
2128
2129         * po/af.po:
2130         * po/az.po:
2131         * po/cs.po:
2132         * po/en_GB.po:
2133         * po/hu.po:
2134         * po/it.po:
2135         * po/nb.po:
2136         * po/nl.po:
2137         * po/or.po:
2138         * po/sq.po:
2139         * po/sr.po:
2140         * po/sv.po:
2141         * po/uk.po:
2142         * po/vi.po:
2143           Translation string updates
2144
2145         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
2146         (gst_v4lsrc_set_caps):
2147         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
2148         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
2149         * sys/v4l/v4lsrc_calls.h:
2150           Improve v4lsrc, by making it work again.
2151
2152 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
2153
2154         * ext/libvisual/visual.c: (gst_visual_chain):
2155           Fix the fps calculations.
2156
2157         * gst/ffmpegcolorspace/avcodec.h:
2158           Move structure element for clarity
2159
2160         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
2161         * gst-libs/gst/interfaces/tunernorm.h:
2162         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
2163         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
2164         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
2165         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
2166         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
2167         (gst_v4lmjpegsrc_getcaps):
2168         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
2169         (gst_v4lsrc_set_caps):
2170         * sys/v4l/gstv4lsrc.h:
2171         * sys/v4l/v4l_calls.c: (gst_v4l_open):
2172         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
2173         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
2174         * sys/v4l/v4lsrc_calls.h:
2175           Fractional framerates...
2176
2177 2005-11-22  Wim Taymans  <wim@fluendo.com>
2178
2179         * gst-libs/gst/audio/gstbaseaudiosink.c:
2180         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
2181         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2182         And we provide a clock by default, of course...
2183
2184 2005-11-22  Wim Taymans  <wim@fluendo.com>
2185
2186         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
2187         This clock can be slaved to a master clock now.
2188
2189         * gst-libs/gst/audio/gstbaseaudiosink.c:
2190         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
2191         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
2192         (gst_base_audio_sink_set_clock),
2193         (gst_base_audio_sink_set_property),
2194         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
2195         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2196         * gst-libs/gst/audio/gstbaseaudiosink.h:
2197         Handle slaving the internal clock to the clock selected in the
2198         pipeline.
2199         Add property to make the basesink not provide a clock.
2200
2201         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2202         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
2203         (gst_base_rtp_depayload_wait):
2204         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2205         We can use the clock in GstElement, no need to store it ourselves.
2206
2207 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2208
2209         * docs/libs/tmpl/gstaudio.sgml:
2210           update
2211         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
2212         (gst_paranoia_endian_get_type):
2213         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
2214         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
2215         * gst/audiotestsrc/gstaudiotestsrc.c:
2216         (gst_audiostestsrc_wave_get_type):
2217         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
2218         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
2219         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
2220         (gst_sync_method_get_type), (gst_unit_type_get_type),
2221         (gst_client_status_get_type), (gst_multifdsink_class_init),
2222         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
2223         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
2224         (gst_multifdsink_get_property):
2225         * gst/tcp/gstmultifdsink.h:
2226         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
2227         * gst/videotestsrc/gstvideotestsrc.c:
2228         (gst_videotestsrc_pattern_get_type):
2229           remove deprecated properties
2230           fix up enums to correctly have short lowercase dashed nicks
2231
2232 2005-11-22  Michael Smith <msmith@fluendo.com>
2233
2234         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
2235         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
2236           Add underscore.
2237
2238 2005-11-22  Michael Smith <msmith@fluendo.com>
2239
2240         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
2241         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
2242           Use utility method for scaling clocktime for fractional framerates.
2243
2244 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
2245
2246         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
2247         (gst_visual_chain):
2248         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
2249         * ext/theora/theoradec.c: (theora_handle_type_packet):
2250         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
2251         (theora_enc_chain):
2252         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2253         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
2254         * gst-libs/gst/video/video.h:
2255         * gst/ffmpegcolorspace/avcodec.h:
2256         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2257         (gst_ffmpeg_caps_to_pixfmt):
2258         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2259         (gst_ffmpegcsp_set_caps):
2260         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
2261         (gst_videorate_setcaps), (gst_videorate_blank_data),
2262         (gst_videorate_chain):
2263         * gst/videotestsrc/gstvideotestsrc.c:
2264         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
2265         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
2266         (gst_videotestsrc_event), (gst_videotestsrc_create):
2267         * gst/videotestsrc/gstvideotestsrc.h:
2268         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
2269         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
2270         (gst_ximagesink_get_times), (gst_ximagesink_init):
2271         * sys/ximage/ximagesink.h:
2272         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
2273         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
2274         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
2275         * sys/xvimage/xvimagesink.h:
2276           Convert elements to use fractions for their framerate.
2277           V4L elements to come later tonight.
2278
2279 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2280
2281         * gst-libs/gst/audio/audio.c:
2282         * gst-libs/gst/audio/audio.h:
2283           remove some deprecated functions
2284
2285 2005-11-22  Andy Wingo  <wingo@pobox.com>
2286
2287         * Update for gst_tag_setter API changes.
2288
2289 2005-11-22  Andy Wingo  <wingo@pobox.com>
2290
2291         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
2292         (gst_ogg_demux_perform_seek):
2293         * ext/theora/theoradec.c (theora_dec_sink_event):
2294         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
2295         update-funcnames.
2296
2297 2005-11-22  Wim Taymans  <wim@fluendo.com>
2298
2299         * examples/seeking/seek.c: (main):
2300         Give higher priority to bus signals than the gtk events
2301         to fix a race condition in the segment looping.
2302
2303 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
2304
2305         * ext/theora/Makefile.am:
2306         * ext/vorbis/Makefile.am:
2307         * gst-libs/gst/tag/Makefile.am:
2308         * gst-plugins-base.spec.in:
2309           Rename libgsttagedit to libgsttag (#322117).
2310
2311 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
2312
2313         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
2314         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
2315           Call gst_x_overlay_prepare_xwindow_id() to give applications
2316           a final chance to set their own xwindow id before the video
2317           sink creates its own window.
2318
2319 2005-11-22  Julien MOUTTE  <julien@moutte.net>
2320
2321         * sys/xvimage/xvimagesink.c:
2322         (gst_xvimagesink_navigation_send_event): Handle navigation
2323         events correcly with borders if applicable.
2324
2325 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
2326
2327         Patch by: Luca Ognibene
2328
2329         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2330         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
2331         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2332         (gst_ffmpegcsp_caps_remove_format_info):
2333         * gst/ffmpegcolorspace/imgconvert.c:
2334         * gst/ffmpegcolorspace/imgconvert_template.h:
2335           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
2336           #318353); use gst_structure_has_name().
2337
2338 2005-11-22  Julien MOUTTE  <julien@moutte.net>
2339
2340         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
2341         (gst_ximagesink_class_init): Add debug macros on functions.
2342         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
2343         (gst_xvimagesink_xwindow_draw_borders),
2344         (gst_xvimagesink_xvimage_put),
2345         (gst_xvimagesink_xwindow_update_geometry),
2346         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
2347         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
2348         (gst_xvimagesink_xcontext_clear),
2349         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
2350         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
2351         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
2352         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
2353         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
2354         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
2355         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
2356         expose while being PAUSED, out of data flow navigation events, etc..
2357
2358 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2359
2360         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
2361         * gst-libs/gst/audio/audio.h:
2362           fix prototype - wondering why the test worked regardless
2363
2364 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2365
2366         * check/Makefile.am:
2367         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
2368         * gst-libs/gst/audio/audio.h:
2369           add a method that returns a proper GstClockTime
2370
2371 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2372
2373         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
2374         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
2375         * gst-libs/gst/interfaces/xoverlay.h:
2376           Remove everything having to do with the desired size; add 
2377           gst_x_overlay_prepare_xwindow_id() function; remove the
2378           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
2379           post a message on the bus instead (#321816).
2380
2381         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
2382         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
2383         (gst_xvimagesink_xoverlay_init):
2384           Remove desired size stuff (#321816).
2385
2386 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2387
2388         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
2389         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
2390         (mpeg_video_type_find), (mpeg_video_stream_type_find):
2391           Terminate vararg functions with NULL instead of 0 to 
2392           make gcc4 happy.
2393
2394 2005-11-21  Andy Wingo  <wingo@pobox.com>
2395
2396         patch by: Sebastien Cote <sebas642@yahoo.ca>
2397         
2398         * gst-libs/gst/rtp/gstrtpbuffer.h: 
2399         * gst-libs/gst/rtp/gstrtpbuffer.c
2400         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
2401
2402 2005-11-21  Andy Wingo  <wingo@pobox.com>
2403
2404         * gst/playback/gstplaybin.c (gen_audio_element) 
2405         (gen_video_element): Use the new MISSING_PLUGIN core error
2406         category. Closes #320060.
2407
2408         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
2409         * gst/videorate/gstvideorate.c (gst_videorate_event):
2410         * ext/theora/theoradec.c (theora_dec_sink_event): 
2411         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
2412         stream lock.
2413
2414         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
2415         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
2416         stream lock changes.
2417
2418 2005-11-21  Wim Taymans  <wim@fluendo.com>
2419
2420         * gst-libs/gst/audio/gstbaseaudiosink.c:
2421         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
2422         (gst_base_audio_sink_provide_clock),
2423         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
2424         (gst_base_audio_sink_change_state):
2425         * gst/audioresample/gstaudioresample.c:
2426         Segment update fix.
2427
2428 2005-11-21  Andy Wingo  <wingo@pobox.com>
2429
2430         * *.h:
2431         * *.c: Ran scripts/update-macros. Oh yes.
2432
2433 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2434
2435         * sys/ximage/Makefile.am:
2436         * sys/ximage/ximage.c:
2437           Rename ximage plugin to ximagesink (#321426) (Don't forget to
2438           remove your old libgstximage.* manually if necessary).
2439
2440 2005-11-21  Michael Smith <msmith@fluendo.com>
2441
2442         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
2443           Minimal fix for bug #320200: set the min/max bitrate in the correct
2444           units. A better fix would be to upgrade to the RATEMANAGE2
2445           interface, rather than using the deprecated interface used here, but
2446           that would require an update in our libvorbis dependency (to 1.1),
2447           which is probably undesirable.
2448
2449 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
2450
2451         * ext/libvisual/visual.c: (get_buffer):
2452         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2453         (gst_base_audio_src_fixate):
2454         * gst/audioconvert/gstaudioconvert.c:
2455         (gst_audio_convert_fixate_caps):
2456         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
2457         * gst/audiotestsrc/gstaudiotestsrc.c:
2458         (gst_audiotestsrc_src_fixate):
2459         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
2460         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
2461         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
2462         * gst/videotestsrc/gstvideotestsrc.c:
2463         (gst_videotestsrc_src_fixate):
2464         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
2465         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
2466           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
2467           (#322027)
2468
2469
2470 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2471
2472         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2473         (gst_riff_create_iavs_caps):
2474         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
2475         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
2476         (gst_riff_parse_info):
2477         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
2478         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
2479         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
2480           Fixes for GST_FOURCC_FORMAT API change.
2481
2482 2005-11-21  Andy Wingo  <wingo@pobox.com>
2483
2484         patch by: Alessandro Dessina <alessandro nnva org>
2485
2486         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
2487         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
2488         (gst_ogg_parse_chain):
2489         * ext/theora/theoraenc.c (theora_set_header_on_caps):
2490         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
2491         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
2492         gst_value_list calls on arrays. Fixes #321962.
2493
2494 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
2495
2496         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
2497         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
2498         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
2499         * gst/adder/gstadder.c: (gst_adder_init),
2500         (gst_adder_request_new_pad), (gst_adder_collected),
2501         (gst_adder_change_state):
2502           Update for gst_collectpads_foo() to gst_collect_pads_foo()
2503           API change.
2504
2505 2005-11-21  Michael Smith <msmith@fluendo.com>
2506
2507         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
2508         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
2509           Properly handle pad_push return values.
2510
2511 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
2512
2513         * gst-libs/gst/tag/Makefile.am:
2514         * gst-libs/gst/tag/gstvorbistag.c:
2515         (gst_tag_list_to_vorbiscomment_buffer):
2516           Remove obsolete vorbistag element and debug category.
2517
2518         * gst/playback/gstplaybasebin.c: (check_queue):
2519           Don't divide by 0 when queue-threshold is 0.
2520
2521         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
2522           Don't modify an existing pixel-aspect-ratio if we fail to read
2523           a new one.
2524
2525 2005-11-20  Wim Taymans  <wim@fluendo.com>
2526
2527         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
2528         (gst_vorbisenc_push_packet):
2529         GST_PAD_IS_USABLE is gone, use the return value of
2530         the push or pad_alloc_buffer instead.
2531
2532 2005-11-18  Julien MOUTTE  <julien@moutte.net>
2533
2534         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
2535         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
2536         (gst_ximagesink_ximage_destroy),
2537         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
2538         (gst_ximagesink_xwindow_new),
2539         (gst_ximagesink_xwindow_update_geometry),
2540         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
2541         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
2542         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
2543         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
2544         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
2545         (gst_ximagesink_navigation_send_event),
2546         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
2547         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
2548         (gst_ximagesink_finalize), (gst_ximagesink_init),
2549         (gst_ximagesink_class_init):
2550         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
2551         This new version brings correct software scaling, non flickering
2552         window while resizing, pixel aspect ratio handling, usage of
2553         hardware buffer pools, out of data flow event thread for 
2554         navigation and handling of expose events even when being PAUSED,
2555         a new property to keep video aspect ratio when resizing, etc...
2556
2557 2005-11-18  Julien MOUTTE  <julien@moutte.net>
2558
2559         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
2560         (gst_videoscale_fixate_caps): Introduce back caps fixate with
2561         handling of PAR.
2562
2563 2005-11-18    <bilboed@dvdsrc.fluendo.com>
2564
2565         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
2566         Unsetting IS_SINK flag from the fakesink, so decodebin
2567         never behaves as a sink.
2568
2569 2005-11-17  Wim Taymans  <wim@fluendo.com>
2570
2571         * gst-libs/gst/audio/gstbaseaudiosrc.c:
2572         (gst_base_audio_src_change_state):
2573         Fix the audiosrc base class again, we did not unflush.
2574
2575 2005-11-17  Julien MOUTTE  <julien@moutte.net>
2576
2577         * examples/seeking/seek.c: (make_dv_pipeline),
2578         (make_vorbis_theora_pipeline), (make_avi_pipeline),
2579         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
2580         to ogg/vorbis/theora pipeline.
2581
2582 2005-11-17  Wim Taymans  <wim@fluendo.com>
2583
2584         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
2585         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
2586         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
2587         Fix EOS on multiple streams.
2588         More debugging.
2589
2590 2005-11-16  Wim Taymans  <wim@fluendo.com>
2591
2592         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
2593         (gst_ogg_demux_perform_seek):
2594         Segment done must include stream time.
2595
2596         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
2597         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
2598         (gst_ogg_mux_change_state):
2599         Fix ogg muxer again.
2600
2601 2005-11-16  Wim Taymans  <wim@fluendo.com>
2602
2603         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
2604         Fix compile again.
2605
2606 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
2607
2608         * ext/libvisual/visual.c: (gst_visual_init):
2609         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
2610         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
2611         (gst_ogg_parse_chain):
2612         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
2613         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
2614         * ext/theora/theoradec.c: (gst_theora_dec_init):
2615         * ext/theora/theoraenc.c: (gst_theora_enc_init):
2616         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
2617         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
2618         * gst/adder/gstadder.c: (gst_adder_class_init),
2619         (gst_adder_dispose):
2620         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
2621         * gst/subparse/gstsubparse.c: (gst_subparse_init):
2622         * gst/videorate/gstvideorate.c: (gst_videorate_init):
2623           Fix a whole set of pad template leaks
2624
2625 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
2626
2627         * check/generic/states.c: (GST_START_TEST):
2628           fix the test so that it only checks for elements that are part of
2629           this source module
2630
2631 2005-11-16  Michael Smith <msmith@fluendo.com>
2632
2633         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
2634         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
2635         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
2636         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
2637         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
2638         (gst_ogg_mux_change_state):
2639           Fix leaking collectpads.
2640
2641 2005-11-16  Edward Hervey  <edward@fluendo.com>
2642
2643         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
2644         (gst_videorate_event), (gst_videorate_chain):
2645         Handle segment seeks
2646
2647 2005-11-16  Wim Taymans  <wim@fluendo.com>
2648
2649         * gst-libs/gst/audio/gstbaseaudiosink.c:
2650         (gst_base_audio_sink_provide_clock),
2651         (gst_base_audio_sink_change_state):
2652         Set ringbuffer to non-flushing when going to PAUSED, set to
2653         flushing again when going to READY.
2654
2655         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
2656         (gst_ring_buffer_stop):
2657         Start in flushing mode by default.
2658         Don't set flushing in the _stop method, let the app call
2659         this explicitly.
2660
2661 2005-11-16  Julien MOUTTE  <julien@moutte.net>
2662
2663         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
2664         * gst-libs/gst/video/videosink.h: Add helper function needed
2665         for video sinks.
2666
2667 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
2668
2669         * gst/videoscale/gstvideoscale.c:
2670         (gst_videoscale_handle_src_event):
2671           Don't leak reference to pad parent.
2672
2673 2005-11-16  Wim Taymans  <wim@fluendo.com>
2674
2675         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
2676         Set ringbuffer to flushing when stopping so that we don't
2677         block on wait_segment anymore and livelock.
2678
2679 2005-11-16  Wim Taymans  <wim@fluendo.com>
2680
2681         * examples/seeking/seek.c: (send_event), (do_seek),
2682         (loop_toggle_cb), (segment_done), (main):
2683         Added looping checkbox.
2684
2685 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
2686
2687         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
2688         (gst_ogg_demux_init):
2689         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
2690         (gst_vorbis_dec_init):
2691           revert unrefs, they don't pass make check
2692
2693 2005-11-15  Johan Dahlin  <johan@gnome.org>
2694
2695         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
2696         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
2697         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
2698         (gst_vorbis_dec_init):
2699         Fix pad template leaks. 
2700
2701 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
2702
2703         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
2704           Make state change function thread safe.
2705
2706 2005-11-15  Edward Hervey  <edward@fluendo.com>
2707
2708         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
2709         (gst_ogg_demux_class_init):
2710         Implement GstElement::send_event, so we can send seek events
2711         in GST_STATE_READY
2712
2713 2005-11-14  Julien MOUTTE  <julien@moutte.net>
2714
2715         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
2716         Discovered how to take away flickering while resizing the
2717         window. Please don't put that in ximagesink, refactoring in
2718         progress.
2719
2720 2005-11-14  Michael Smith <msmith@fluendo.com>
2721
2722         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
2723         (gst_multifdsink_render):
2724           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
2725
2726 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
2727
2728         * gst/playback/gstplaybin.c: (gen_audio_element):
2729           Use autoaudiosink, it tends to be more widely available than
2730           autoaudiiosink.
2731           
2732 2005-11-14  Andy Wingo  <wingo@pobox.com>
2733
2734         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
2735         as well if it is available. Fixes #316442.
2736
2737 2005-11-14  Michael Smith <msmith@fluendo.com>
2738
2739         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
2740         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
2741         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
2742         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
2743         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
2744         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
2745         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
2746         (gst_vorbisenc_change_state):
2747           Fix a small memory leak in vorbisenc.
2748           Fix large memory leaks in oggmux, also fix lots of state change
2749           bugs in oggmux.
2750
2751 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
2752
2753         * gst/videotestsrc/gstvideotestsrc.c:
2754         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
2755         (gst_videotestsrc_src_fixate):
2756           move fixation to a fixate function
2757           remove negotiate function, basesrc's is good enough
2758           fixes a bug for check when using the element alone
2759
2760 2005-11-13  Edward Hervey  <edward@fluendo.com>
2761
2762         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
2763         (key_toggle_cb), (main):
2764         Added checkboxes for adding/removing the accurate and key_unit seek
2765         flags.
2766
2767 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
2768
2769         * configure.ac: back to HEAD
2770
2771 === release 0.9.5 ===
2772
2773 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
2774
2775         * configure.ac:
2776           releasing 0.9.5, "No No Kia"
2777
2778 2005-11-11  Edward Hervey  <edward@fluendo.com>
2779
2780         * examples/seeking/seek.c: (make_parselaunch_pipeline):
2781         Added parse-launch syntax seeking mode for the seeking example.
2782         This should help stress-test even more cases.
2783         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
2784
2785 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
2786
2787         * sys/xvimage/xvimagesink.c:
2788         (gst_xvimagesink_navigation_send_event):
2789           Check whether peer pad exists before sending navigation events
2790           to it.
2791
2792 2005-11-11  Michael Smith <msmith@fluendo.com>
2793
2794         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
2795         (gst_vorbisenc_buffer_from_packet):
2796         * ext/vorbis/vorbisenc.h:
2797           Set duration on encoded buffers. This allows oggmux's
2798           max_page_delay parameter to actually work.
2799
2800 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
2801
2802         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
2803         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
2804         (gst_ffmpegcsp_avpicture_fill):
2805         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2806         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
2807           Make palettes work again (see #132341). Use our own macros
2808           for rounding up.
2809
2810 2005-11-10  Andy Wingo  <wingo@pobox.com>
2811
2812         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
2813         string doober.
2814
2815 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
2816
2817         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2818         (gst_ffmpegcsp_transform_caps):
2819           Prefer passthrough in transform_caps
2820
2821 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
2822
2823         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
2824           check for ALSA errors properly, instead of relying on ALSA's
2825           error strings to serve to the user.
2826
2827 2005-11-10  Wim Taymans  <wim@fluendo.com>
2828
2829         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
2830         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
2831         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
2832         Modernise the seek code.
2833
2834 2005-11-10  Michael Smith <msmith@fluendo.com>
2835         
2836         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
2837         (setup_substreams), (set_active_source):
2838           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
2839           trying to go to NULL if we failed to read a file.
2840
2841 2005-11-10  Wim Taymans  <wim@fluendo.com>
2842
2843         * gst/audiotestsrc/gstaudiotestsrc.c:
2844         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
2845         (gst_audiotestsrc_create):
2846         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
2847         (gst_sinesrc_get_times), (gst_sinesrc_create):
2848         * gst/videotestsrc/gstvideotestsrc.c:
2849         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
2850         (gst_videotestsrc_create):
2851         The base class can now sync for us.
2852
2853 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
2854
2855         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
2856           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
2857           name=source autoprobe=false autoprobe-fps=false copy-mode=1
2858           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
2859           format=(fourcc)I420" ! xvimagesink
2860
2861 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
2862
2863         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
2864         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
2865         (gst_sinesrc_newsegment):
2866           Send newsegment event in TIME format, set duration if
2867           num-buffers is set, fix duration querying.
2868
2869 2005-11-10  Michael Smith <msmith@fluendo.com>
2870
2871         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2872         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
2873         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
2874         (gst_ogg_mux_collected):
2875          Fix EOS handling, partially. Now forwarding an EOS event once we have
2876          EOS on all pads works correctly. However, we still don't properly set
2877          EOS on the actual ogg stream pages.
2878
2879 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
2880
2881         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
2882           Set elements to NULL state before disposing of them.
2883
2884 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
2885
2886         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2887
2888         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2889         (gst_base_rtp_depayload_init),
2890         (gst_base_rtp_depayload_set_gst_timestamp):
2891         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2892           We need to send a newsegment event for each instance, not
2893           just for the first instance of this class (get rid of
2894           static variable in function). (#321011).
2895           
2896 2005-11-08  Michael Smith <msmith@fluendo.com>
2897
2898         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
2899         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
2900         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
2901         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
2902           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
2903           This makes us mux things correctly according to the ogg muxing
2904           rules. Still not handling EOS correctly right now, though.
2905
2906 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
2907
2908         * gst/audioconvert/gstaudioconvert.c:
2909           Fix typo in docs. 
2910
2911 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
2912
2913         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
2914         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
2915           Initialise segment_stop to GST_CLOCK_TIME_NONE when
2916           creating a new chain; should fix live streaming. Also
2917           add more debug output and fix a typo.
2918
2919 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
2920
2921         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2922
2923         * gst/volume/gstvolume.c: (volume_set_caps):
2924           Fix compilation on Solaris with Forte. (#320923)
2925
2926 2005-11-08  Wim Taymans  <wim@fluendo.com>
2927
2928         * gst-libs/gst/audio/gstbaseaudiosink.c:
2929         (gst_base_audio_sink_render):
2930         No need to do a typecheck.
2931
2932 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
2933
2934         * ext/alsa/gstalsa.h:
2935           We register a debug category, so let's use it.
2936
2937 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
2938
2939         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2940         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
2941         Fixed a small problem.
2942
2943 2005-11-04  Wim Taymans  <wim@fluendo.com>
2944
2945         * examples/seeking/Makefile.am:
2946         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
2947         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
2948         (make_playerbin_pipeline), (format_value), (update_scale),
2949         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
2950         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
2951         (print_usage), (main):
2952         Added app for playback speed testing.
2953
2954         * examples/seeking/seek.c: (dynamic_link),
2955         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
2956         (make_mpeg_pipeline), (do_seek), (set_update_scale),
2957         (message_received), (main):
2958         Updated seek example.
2959
2960 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
2961
2962         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2963         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
2964         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
2965         (gst_base_rtp_depayload_set_clock):
2966         * gst-libs/gst/rtp/gstbasertpdepayload.h:
2967         Don't sleep on the bench (system clock) when you have a nice 
2968         comfortable bed (Gstreamer clock) to sleep on.
2969
2970 2005-11-03  Wim Taymans  <wim@fluendo.com>
2971
2972         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
2973         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
2974         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
2975         Handle the case where a pad_block failed.
2976
2977 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
2978
2979         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
2980
2981         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2982         (gst_base_rtp_depayload_add_to_queue),
2983         (gst_base_rtp_depayload_push),
2984         (gst_base_rtp_depayload_set_gst_timestamp),
2985         (gst_base_rtp_depayload_queue_release):
2986           Fixes some bugs in the depayloader's queuing/de-queueing code.
2987
2988 2005-10-31  Michael Smith <msmith@fluendo.com>
2989
2990         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
2991         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
2992         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
2993           Patch from Alessandro Decina <alessandro@nnva.org>.
2994           Make oggdemux only find the final time in a chain, not per-pad,
2995           since the per-pad information can be very expensive to locate, and
2996           it isn't used anywhere. This makes reading a file containing
2997           OggSkeleton reasonably fast.
2998           Also, make chain finding work when there are logical bitstreams that
2999           can't be decoded. Fixes #319110.
3000
3001 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
3002
3003         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3004         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
3005         (gst_base_rtp_depayload_chain),
3006         (gst_base_rtp_depayload_add_to_queue),
3007         (gst_base_rtp_depayload_push),
3008         (gst_base_rtp_depayload_set_gst_timestamp),
3009         (gst_base_rtp_depayload_queue_release),
3010         (gst_base_rtp_depayload_start_thread),
3011         (gst_base_rtp_depayload_set_property),
3012         (gst_base_rtp_depayload_get_property):
3013         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3014         Some random fixes, to fullfill the desires of thomas.
3015
3016 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
3017
3018         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3019         (gst_base_rtp_depayload_add_to_queue),
3020         (gst_base_rtp_depayload_push):
3021         Fixed the queueing algorithm.
3022
3023 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
3024
3025         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3026         (gst_base_rtp_depayload_push):
3027         A small fix
3028
3029 2005-10-31  Wim Taymans  <wim@fluendo.com>
3030
3031         * gst-libs/gst/audio/gstringbuffer.h:
3032         Don't break ABI.
3033
3034         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3035         (gst_ffmpeg_caps_to_pixfmt):
3036         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3037         (gst_ffmpegcsp_set_caps):
3038         Some more comments.
3039         Handle missing required caps fields better.
3040
3041 2005-10-31  Wim Taymans  <wim@fluendo.com>
3042
3043         * gst-libs/gst/audio/gstbaseaudiosink.c:
3044         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
3045         (gst_base_audio_sink_render):
3046         * gst-libs/gst/audio/gstringbuffer.c:
3047         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
3048         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
3049         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
3050         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
3051         (gst_ring_buffer_read):
3052         * gst-libs/gst/audio/gstringbuffer.h:
3053         Add flushing mode to the ringbuffer so that it in all cases does
3054         not try to handle more audio. This makes sure it does not try to
3055         block anymore when flushing and fixes a livelock.
3056
3057 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
3058
3059         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
3060         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
3061         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
3062           Explicitly check for -1 values before doing a conversion
3063           and always map them to -1. (#315545)
3064
3065 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
3066
3067         * gst/playback/gstplaybin.c: (gen_video_element):
3068           first try autovideosink, then xvimagesink, then error out
3069         * po/POTFILES.in:
3070           add translatable file
3071         * po/af.po:
3072         * po/az.po:
3073         * po/cs.po:
3074         * po/en_GB.po:
3075         * po/hu.po:
3076         * po/it.po:
3077         * po/nb.po:
3078         * po/nl.po:
3079         * po/or.po:
3080         * po/sq.po:
3081         * po/sr.po:
3082         * po/sv.po:
3083         * po/uk.po:
3084         * po/vi.po:
3085           update translations
3086
3087 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
3088
3089         * gst-libs/gst/rtp/gstbasedepayload.c:
3090         * gst-libs/gst/rtp/gstbasedepayload.h:
3091           Minor cleanups
3092
3093 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
3094
3095         * gst/playback/.cvsignore:
3096         * gst/playback/decodetest.c:
3097         * gst/playback/test3.c:
3098           Port these two tests as well.
3099
3100 2005-10-27  Wim Taymans  <wim@fluendo.com>
3101
3102         * ext/theora/theoradec.c: (theora_dec_src_query),
3103         (theora_dec_sink_event):
3104         * ext/theora/theoraenc.c: (theora_enc_sink_event),
3105         (theora_enc_change_state):
3106         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
3107         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
3108         Take proper locks when handling events.
3109
3110 2005-10-27  Wim Taymans  <wim@fluendo.com>
3111
3112         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
3113         (gst_adder_change_state):
3114         Fix timestamps and fix deadlock when stopping the collectpads.
3115
3116 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
3117
3118         * gst-libs/gst/rtp/gstrtpbuffer.h:
3119         Declaring the payload types as strings too so that they can be used
3120         in the padtemplate inialization.
3121
3122 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
3123
3124         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
3125
3126         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3127         (gst_base_rtp_depayload_class_init):
3128         Fixes a small but nasty bug. The derived elements no longer segfaults
3129         on finalization.
3130
3131 2005-10-26  Michael Smith <msmith@fluendo.com>
3132
3133         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
3134           When clearing an audioconvert context, set tmpbufsize to zero, so
3135           we'll allocate it again later if required.
3136           This fixes audioconvert re-negotiating formats, which previously
3137           segfaulted with a NULL destination buffer.
3138
3139 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
3140
3141         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3142         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
3143         (gst_base_rtp_depayload_set_gst_timestamp),
3144         (gst_base_rtp_depayload_queue_release):
3145         Fixed a smalll memleak.
3146
3147 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
3148         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3149         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
3150         (gst_base_rtp_depayload_finalize),
3151         (gst_base_rtp_depayload_setcaps),
3152         (gst_base_rtp_depayload_add_to_queue),
3153         (gst_base_rtp_depayload_push),
3154         (gst_base_rtp_depayload_set_gst_timestamp),
3155         (gst_base_rtp_depayload_queue_release),
3156         (gst_base_rtp_depayload_thread),
3157         (gst_base_rtp_depayload_change_state):
3158         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3159         Changed the C++ comments to C comments
3160
3161 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
3162
3163         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
3164         * gst/tcp/gsttcpclientsrc.h:
3165         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
3166         * gst/tcp/gsttcpserversrc.h:
3167           Remove unused 'curoffset' structure member.
3168
3169 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
3170
3171         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3172         (gst_base_rtp_depayload_base_init),
3173         (gst_base_rtp_depayload_finalize):
3174         * gst-libs/gst/rtp/gstbasertpdepayload.h:
3175         * gst-libs/gst/rtp/gstbasertppayload.h:
3176           The pad-template on the sinkpad should be set by the derived classes.
3177           Also added some useful macros.
3178
3179 2005-10-24  Wim Taymans  <wim@fluendo.com>
3180
3181         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
3182         Correctly flush decoder samples even if we could not
3183         copy them to an output buffer. Fixes #319618.
3184
3185 2005-10-24  Julien MOUTTE  <julien@moutte.net>
3186
3187         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
3188         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
3189         the caps against our xcontext caps.
3190
3191 2005-10-24  Wim Taymans  <wim@fluendo.com>
3192
3193         * gst-libs/gst/audio/gstbaseaudiosink.c:
3194         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
3195         Remove g_print
3196         Use sync property from baseclass to disable sync.
3197
3198 2005-10-24  Wim Taymans  <wim@fluendo.com>
3199
3200         * gst-libs/gst/audio/gstbaseaudiosink.c:
3201         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
3202         Buffers with no timestamps get aligned with previous buffers or
3203         on underrun, played ASAP.
3204
3205 2005-10-24  Julien MOUTTE  <julien@moutte.net>
3206
3207         * gst-libs/gst/video/video.h:
3208         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3209         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
3210         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
3211         here comes my change on caps for framerate and geometry range.
3212         We are now accepting 1 to MAXINT for width and height, and from
3213         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
3214         to be blended correctly in videomixer.
3215
3216 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
3217
3218         * configure.ac:
3219           back to HEAD
3220
3221 === release 0.9.4 ===
3222
3223 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3224
3225         * NEWS:
3226         * RELEASE:
3227         * configure.ac:
3228           releasing 0.9.4, "Velociraptor"
3229
3230 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3231
3232         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
3233         * po/POTFILES.in:
3234           STOPPED -> FAILED
3235
3236 2005-10-21  Wim Taymans  <wim@fluendo.com>
3237
3238         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
3239         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
3240         (pad_blocked), (close_pad_link), (new_pad):
3241         Don't try to remove elements twice.
3242
3243 2005-10-21  Wim Taymans  <wim@fluendo.com>
3244
3245         * ext/theora/theoradec.c: (theora_dec_src_query),
3246         (theora_dec_sink_event):
3247         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
3248         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
3249         (vorbis_handle_data_packet):
3250         * ext/vorbis/vorbisdec.h:
3251         Fix old naming.
3252
3253         * gst-libs/gst/audio/gstbaseaudiosink.c:
3254         (gst_base_audio_sink_render):
3255         Don't try to sync on buffers without a timestamp.
3256
3257 2005-10-21  Wim Taymans  <wim@fluendo.com>
3258
3259         * ext/theora/theoradec.c: (theora_dec_src_query),
3260         (theora_dec_sink_event):
3261         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
3262         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
3263         (vorbis_handle_data_packet):
3264         * ext/vorbis/vorbisdec.h:
3265         Fix old naming.
3266
3267 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
3268
3269         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
3270         (gst_vorbisenc_src_query):
3271           Implement position and duration queries.
3272
3273         * gst/playback/test3.c: (update_scale), (main):
3274           Fix for async state changes and print nicer output.
3275
3276 2005-10-20  Wim Taymans  <wim@fluendo.com>
3277
3278         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
3279         (dump_element_stats), (main):
3280         * gst/playback/test6.c: (main):
3281         Fix tests again
3282
3283 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
3284
3285         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
3286         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
3287           Don't use functions for position queries when handling
3288           duration queries.
3289
3290 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
3291
3292         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
3293         (vorbis_handle_data_packet), (vorbis_dec_chain),
3294         (vorbis_dec_change_state):
3295         * ext/vorbis/vorbisdec.h:
3296           Vorbis streams can be embedded in other container formats
3297           than ogg, container formats where the demuxer might set 
3298           timestamps on encoded vorbis buffers instead of those silly 
3299           granulepos thingies. In short: make vorbisdec handle 
3300           timestamps on incoming buffers as well.
3301
3302 2005-10-20  Wim Taymans  <wim@fluendo.com>
3303
3304         * gst/playback/gstplaybasebin.c: (group_destroy),
3305         (gst_play_base_bin_change_state):
3306         Fix leak.
3307         Handle case where playbasebin is now ASYNC because
3308         decodebin is.
3309
3310 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
3311
3312         * gst/audioconvert/Makefile.am:
3313         * gst/audioconvert/bufferframesconvert.c:
3314         * gst/audioconvert/plugin.c: (plugin_init):
3315         * gst/audioconvert/plugin.h:
3316           And bye bye buffer-frames-convert
3317
3318 2005-10-19  Wim Taymans  <wim@fluendo.com>
3319
3320         * check/elements/audioconvert.c:
3321         * docs/libs/tmpl/gstaudio.sgml:
3322         * docs/libs/tmpl/gstcolorbalance.sgml:
3323         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
3324         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
3325         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
3326         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
3327         * gst-libs/gst/audio/audio.h:
3328         * gst/audioconvert/audioconvert.h:
3329         * gst/audioconvert/gstaudioconvert.c:
3330         (gst_audio_convert_parse_caps):
3331         * gst/volume/gstvolume.c:
3332         Bye bye buffer-frames.
3333
3334 2005-10-19  Wim Taymans  <wim@fluendo.com>
3335
3336         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
3337         (query_positions_elems), (query_positions_pads), (update_scale),
3338         (do_seek), (set_update_scale), (message_received), (main):
3339         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
3340         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
3341         (gst_ogg_demux_loop):
3342         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
3343         * ext/theora/theoradec.c: (theora_dec_src_query),
3344         (theora_dec_sink_event):
3345         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
3346         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
3347         * gst/adder/gstadder.c: (gst_adder_query):
3348         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
3349         * gst/playback/test3.c: (update_scale):
3350         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
3351         (dump_element_stats), (main):
3352         * gst/playback/test6.c: (main):
3353         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
3354         Query API update.
3355
3356 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
3357
3358         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
3359         (xml_check_first_element), (xml_type_find), (smil_type_find),
3360         (plugin_init):
3361           Add typefinding for SMIL and for generic XML. Based on patch by
3362           Akos Maroy (#308663).
3363
3364 2005-10-18  Wim Taymans  <wim@fluendo.com>
3365
3366         * gst/playback/Makefile.am:
3367         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
3368         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
3369         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
3370         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
3371         (gst_decode_bin_change_state):
3372         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3373         (gst_play_bin_send_event_to_sink):
3374         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
3375         (dump_element_stats), (main):
3376         * gst/playback/test6.c: (main):
3377         Make playbin async, it'll commit state to paused when all streams
3378         are detected.
3379         Remove ugly hack.
3380         Added test6.c to show async behaviour.
3381
3382 2005-10-18  Wim Taymans  <wim@fluendo.com>
3383
3384         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
3385         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
3386         Fix for segment-start/stop API change.
3387
3388 2005-10-18  Wim Taymans  <wim@fluendo.com>
3389
3390         * check/Makefile.am:
3391         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
3392         (main):
3393         Add future test for clock selection.
3394
3395 2005-10-18  Wim Taymans  <wim@fluendo.com>
3396
3397         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
3398         (gst_alsasink_close):
3399         Set handle to NULL.
3400
3401         * gst-libs/gst/audio/gstringbuffer.c:
3402         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
3403         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
3404         (gst_ring_buffer_start), (gst_ring_buffer_pause),
3405         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
3406         (gst_ring_buffer_read):
3407         More debug info.
3408
3409 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
3410
3411         * gst/audiotestsrc/Makefile.am:
3412         * gst/sine/Makefile.am:
3413         * gst/volume/Makefile.am:
3414           fix broken build of controllerized plugins
3415
3416 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
3417
3418         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
3419
3420         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
3421         (gst_riff_create_video_template_caps):
3422           Add support for Indeo-3 (IV32).
3423
3424 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
3425
3426         * configure.ac:
3427           rewrite
3428
3429 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
3430
3431         * gst-libs/gst/video/video.c: (gst_video_get_size):
3432         * gst/audiotestsrc/gstaudiotestsrc.c:
3433           doc updates
3434
3435 2005-10-17  Andy Wingo  <wingo@pobox.com>
3436
3437         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
3438         with the collectpads change.
3439         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
3440
3441         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
3442
3443         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
3444
3445         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
3446         alloc_buffer flow return to callers.
3447         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
3448         change. Fix some memleaks in theoraenc.
3449
3450         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
3451         in strange circumstance.
3452
3453 2005-10-17  Julien MOUTTE  <julien@moutte.net>
3454
3455         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
3456         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
3457         from caps, let's use the caps...
3458
3459 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
3460
3461         * configure.ac:
3462           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
3463
3464 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3465
3466         * gst-libs/gst/interfaces/Makefile.am:
3467           fix silly typo
3468
3469 2005-10-16  Andy Wingo  <wingo@pobox.com>
3470
3471         * gst/playback/gstdecodebin.c
3472         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
3473         function!
3474         (try_to_link_1): Increase kraziness level.
3475
3476 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3477
3478         * configure.ac:
3479           restructure like the core one
3480         * gst-libs/gst/audio/Makefile.am:
3481         * gst-libs/gst/interfaces/Makefile.am:
3482         * gst-libs/gst/net/Makefile.am:
3483         * gst-libs/gst/riff/Makefile.am:
3484         * gst-libs/gst/rtp/Makefile.am:
3485         * gst-libs/gst/tag/Makefile.am:
3486         * gst-libs/gst/video/Makefile.am:
3487           use correct linker flags, now the libs are properly versioned
3488         * check/elements/audioconvert.c: (verify_convert):
3489         * ext/alsa/gstalsaplugin.c:
3490         * ext/cdparanoia/gstcdparanoia.c:
3491         * ext/gnomevfs/gstgnomevfs.c:
3492         * ext/libvisual/visual.c:
3493         * ext/ogg/gstogg.c:
3494         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
3495         * ext/theora/theora.c:
3496         * ext/vorbis/vorbis.c:
3497         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
3498         * gst-libs/gst/tag/gsttagediting.c:
3499         * gst-libs/gst/video/video.c:
3500         * gst/adder/gstadder.c:
3501         * gst/audioconvert/plugin.c:
3502         * gst/audiorate/gstaudiorate.c:
3503         * gst/audioresample/gstaudioresample.c:
3504         * gst/audioresample/resample_ref.c: (resample_scale_ref):
3505         * gst/audioscale/gstaudioscale.c:
3506         * gst/audioscale/resample.c:
3507         * gst/audiotestsrc/gstaudiotestsrc.c:
3508         * gst/ffmpegcolorspace/gstffmpeg.c:
3509         * gst/playback/gstdecodebin.c: (close_pad_link):
3510         * gst/playback/gstplaybin.c: (gen_video_element),
3511         (gen_audio_element):
3512         * gst/sine/gstsinesrc.c:
3513         * gst/subparse/gstsubparse.c:
3514         * gst/tags/gsttagediting.c:
3515         * gst/tcp/gsttcpplugin.c:
3516         * gst/typefind/gsttypefindfunctions.c:
3517         * gst/videorate/gstvideorate.c:
3518         * gst/videoscale/gstvideoscale.c:
3519         * gst/videotestsrc/gstvideotestsrc.c:
3520         * gst/volume/gstvolume.c:
3521         * sys/v4l/gstv4l.c:
3522         * sys/ximage/ximage.c:
3523         * sys/xvimage/xvimagesink.c:
3524           fix up defines
3525
3526 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
3527
3528         * ext/vorbis/vorbisenc.c:
3529         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
3530         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
3531         (gst_tag_to_vorbis_comments):
3532           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
3533
3534 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
3535
3536         * examples/stats/mp2ogg.c:
3537         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3538           typo fixes
3539
3540 2005-10-13  Michael Smith <msmith@fluendo.com>
3541
3542         * ext/ogg/gstoggmux.c:
3543           Use magic glib macros to define constants as 64 bit, to ensure
3544           appropriate vararg passing.
3545
3546 2005-10-13  Michael Smith <msmith@fluendo.com>
3547
3548         * ext/ogg/gstoggmux.c:
3549         * gst/audioconvert/audioconvert.c: (float):
3550           Don't use LL suffix, as it's not portable, and neither of these
3551           uses required it anyway.
3552
3553 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
3554
3555         * examples/indexing/indexmpeg.c: (main):
3556         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
3557         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
3558         (cdparanoia_convert), (cdparanoia_query):
3559         * ext/cdparanoia/gstcdparanoia.h:
3560         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
3561         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
3562         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
3563         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
3564         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
3565         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
3566         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
3567         (gst_multifdsink_render), (gst_multifdsink_start),
3568         (gst_multifdsink_stop):
3569         * gst/tcp/gstmultifdsink.h:
3570         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
3571         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
3572         (gst_tcpclientsink_stop):
3573         * gst/tcp/gsttcpclientsink.h:
3574         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
3575         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
3576         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
3577         * gst/tcp/gsttcpclientsrc.h:
3578         * gst/tcp/gsttcpserversink.h:
3579         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
3580         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
3581         (gst_tcpserversrc_stop):
3582         * gst/tcp/gsttcpserversrc.h:
3583         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
3584         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
3585         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
3586           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
3587           moved bitshift from macro to enum definition
3588
3589 2005-10-12  Wim Taymans  <wim@fluendo.com>
3590
3591         * examples/seeking/Makefile.am:
3592         Oops.
3593
3594 2005-10-12  Wim Taymans  <wim@fluendo.com>
3595
3596         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3597         (gst_ring_buffer_read), (gst_ring_buffer_clear):
3598         Don't assert on normal stuff.
3599
3600         * gst/playback/gstplaybin.c: (do_playbin_seek):
3601         API fix.
3602
3603 2005-10-12  Wim Taymans  <wim@fluendo.com>
3604
3605         * check/pipelines/simple_launch_lines.c: (run_pipeline):
3606         * examples/seeking/Makefile.am:
3607         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
3608         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
3609         (do_seek), (set_update_scale), (message_received), (main):
3610         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3611         (gst_ring_buffer_read), (gst_ring_buffer_clear):
3612         Update for _get_state() API change.
3613
3614 2005-10-11  Wim Taymans  <wim@fluendo.com>
3615
3616         * gst-libs/gst/audio/gstbaseaudiosink.c:
3617         (gst_base_audio_sink_render):
3618         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3619         (gst_base_audio_src_create):
3620         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
3621         (gst_ring_buffer_read):
3622         Cleanups.
3623         Commit and read from ringbuffer in samples rather than bytes.
3624
3625 2005-10-11  Wim Taymans  <wim@fluendo.com>
3626
3627         * gst-libs/gst/audio/gstbaseaudiosink.c:
3628         (gst_base_audio_sink_render):
3629         Respect segment rate and accum when scheduling samples.
3630
3631 2005-10-11  Julien MOUTTE  <julien@moutte.net>
3632
3633         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
3634         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
3635         EOS correctly, that needs more work.
3636
3637 2005-10-11  Wim Taymans  <wim@fluendo.com>
3638
3639         * check/generic/states.c: (GST_START_TEST):
3640         remove old property.
3641
3642         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
3643         (gst_ogg_demux_perform_seek):
3644         * ext/theora/theoradec.c: (theora_dec_sink_event):
3645         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
3646         (vorbis_handle_data_packet):
3647         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3648         (gst_base_rtp_depayload_set_gst_timestamp):
3649         * gst/videorate/gstvideorate.c: (gst_videorate_event):
3650         Update for newsegment API change.
3651
3652 2005-10-11  Michael Smith <msmith@fluendo.com>
3653
3654         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
3655         (do_playbin_seek), (gst_play_bin_send_event):
3656           Override send_event differently, so that we can takes bits of
3657           functionality from GstPipeline (special handling for seeks,
3658           including pausing/resuming, and resetting stream time) and still get
3659           the appropriate behaviour of only forwarding event to a single sink,
3660           rather than all of them.
3661           Unfortunately requires a lot of code duplication, but the
3662           alternatives are equally ugly in the end.
3663
3664 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3665
3666         * check/elements/audioconvert.c: (setup_audioconvert),
3667         (cleanup_audioconvert), (get_int_caps), (verify_convert),
3668         (GST_START_TEST), (audioconvert_suite):
3669           clean up tests a little, fix some leaks.
3670
3671 2005-10-10  Wim Taymans  <wim@fluendo.com>
3672
3673         * ext/alsa/gstalsasink.c:
3674         Also allow unsigned int.
3675
3676         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3677         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3678         Small cleanup
3679
3680 2005-10-10  Wim Taymans  <wim@fluendo.com>
3681
3682         * check/pipelines/simple_launch_lines.c: (run_pipeline):
3683         Small update, use API as stated in design docs.
3684
3685         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
3686         (update_scale), (do_seek), (seek_cb), (set_update_scale),
3687         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
3688         (message_received), (main):
3689         Updated seek example for GOption. Some usability improvements.
3690
3691 2005-10-10  Wim Taymans  <wim@fluendo.com>
3692
3693         * gst/audioconvert/audioconvert.h:
3694         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
3695         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
3696         Alloc temp storage somewhere else where we can do it more
3697         portable.
3698
3699 2005-10-10  Wim Taymans  <wim@fluendo.com>
3700
3701         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
3702         (gst_tcpserversrc_start):
3703         Don't block in accept while doing the state change, move
3704         to poll and make cancellable.
3705
3706 2005-10-09  Philippe Khalaf <burger@speedy.org>
3707
3708         * gst-libs/gst/rtp/rtpbasedepayload.c:
3709         Set timestamp and add queue delay to timestamp
3710         * gst-libs/gst/rtp/rtpbuffer.h:
3711         Set correct payload type for h263
3712
3713 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
3714
3715         * gst/audiotestsrc/gstaudiotestsrc.c:
3716         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
3717         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
3718         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
3719         (gst_audiotestsrc_create_triangle),
3720         (gst_audiotestsrc_create_silence),
3721         (gst_audiotestsrc_create_white_noise),
3722         (gst_audiotestsrc_init_pink_noise),
3723         (gst_audiotestsrc_generate_pink_noise_value),
3724         (gst_audiotestsrc_create_pink_noise),
3725         (gst_audiotestsrc_change_wave):
3726         * gst/audiotestsrc/gstaudiotestsrc.h:
3727           fixed typo, added pink noise
3728
3729 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
3730
3731         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
3732         (plugin_init):
3733           Add wavpack and spc typefind functions from 0.8 branch.
3734
3735 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
3736
3737         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
3738         (ar_type_find), (msdos_type_find), (plugin_init):
3739           Add typefind functions for tar archives, ar archives,
3740           RAR archives, and msdos-executables (dlls, exe, etc.).
3741           Some of those would be wrongly identified as mpeg
3742           streams of some sort before (#315550).
3743
3744 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
3745
3746         * configure.ac:
3747         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3748         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3749         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
3750         * gst/audiotestsrc/Makefile.am:
3751         * gst/audiotestsrc/gstaudiotestsrc.c:
3752         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
3753         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
3754         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
3755         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
3756         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
3757         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
3758         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
3759         (gst_audiotestsrc_create_silence),
3760         (gst_audiotestsrc_create_white_noise),
3761         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
3762         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
3763         (gst_audiotestsrc_start), (plugin_init):
3764         * gst/audiotestsrc/gstaudiotestsrc.h:
3765           add new plugin and element
3766         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
3767           use gobject_class
3768
3769 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
3770
3771         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
3772         (gst_adder_init), (gst_adder_request_new_pad),
3773         (gst_adder_change_state):
3774           Add query function to source pad, so adder reports the correct
3775           time/sample position when queried (#315457); fix state change
3776           function; use GST_DEBUG_FUNCPTR() for pad functions.
3777
3778 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
3779
3780         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
3781           Fix leaks in typefind registration
3782           Clean up the gratuitous commenting and whitespacing a little
3783
3784 2005-10-08  Wim Taymans  <wim@fluendo.com>
3785
3786         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
3787         Only actually wait for the thread to be stopped if it's 
3788         running.
3789
3790 2005-10-08  Wim Taymans  <wim@fluendo.com>
3791
3792         * gst-libs/gst/audio/gstbaseaudiosink.c:
3793         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
3794         If we receive EOS we can start playback of what we had.
3795
3796 2005-10-08  Wim Taymans  <wim@fluendo.com>
3797
3798         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
3799         (gst_multifdsink_finalize), (multifdsink_hash_remove),
3800         (gst_multifdsink_stop):
3801         Fix crasher when going to NULL multiple times.
3802
3803 2005-10-06  Wim Taymans  <wim@fluendo.com>
3804
3805         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
3806         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
3807         * gst-libs/gst/audio/gstbaseaudiosrc.h:
3808         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
3809         patch from Edgard Lima <edgard.lima@indt.org.br>
3810         Fixed gstbaseaudiosrc adding ring buffer sync to it.
3811
3812 2005-10-06  Wim Taymans  <wim@fluendo.com>
3813
3814         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
3815         Report the FLOW_RETURN as string in the error message.
3816
3817         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
3818         Don't assert when clearing an unnegotiated buffer.
3819
3820 2005-10-04  Michael Smith <msmith@fluendo.com>
3821
3822         * gst/playback/gstplaybasebin.c: (group_destroy),
3823         (gen_preroll_element), (remove_groups), (setup_source):
3824         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
3825         (setup_sinks), (gst_play_bin_send_event),
3826         (gst_play_bin_change_state):
3827           Set state to NULL before removing from bin. Fix refcounting.
3828
3829 2005-10-04  Michael Smith <msmith@fluendo.com>
3830
3831         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
3832           Correct refcounting in send_event() function. Previously was wrong
3833           if the first sink was unable to handle the event.
3834
3835 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
3836
3837         * configure.ac:
3838           back to development
3839
3840 === release 0.9.3 ===
3841
3842 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
3843
3844         * configure.ac:
3845           Releasing 0.9.3, "De Facto"
3846
3847 2005-10-03  Andy Wingo  <wingo@pobox.com>
3848
3849         * gst/playback/gstdecodebin.c (try_to_link_1)
3850         (remove_element_chain): set element to NULL before removing it.
3851
3852 2005-10-02  Johan Dahlin  <johan@gnome.org>
3853
3854         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
3855         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
3856         MT safe.
3857
3858 2005-10-02  Andy Wingo  <wingo@pobox.com>
3859
3860         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
3861         (gst_ring_buffer_prepare_read): 
3862         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
3863         Demote to LOG.
3864
3865 2005-09-29  Wim Taymans  <wim@fluendo.com>
3866
3867         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
3868         * ext/theora/theoradec.c: (theora_handle_data_packet):
3869         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
3870         Propagate error codes from alloc_buffer too.
3871
3872 2005-09-29  Wim Taymans  <wim@fluendo.com>
3873
3874         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
3875         We use fixed caps.
3876
3877         * gst/playback/Makefile.am:
3878         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
3879         (dump_element_stats), (main):
3880         Added example stream introspection code.
3881
3882 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
3883
3884         * gst/adder/gstadder.c: (gst_adder_collected):
3885           fix adder for float elements
3886
3887 2005-09-28  Wim Taymans  <wim@fluendo.com>
3888
3889         * gst-libs/gst/audio/gstbaseaudiosink.c:
3890         (gst_base_audio_sink_class_init),
3891         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
3892         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3893         (gst_base_audio_src_class_init),
3894         (gst_base_audio_src_provide_clock):
3895         get_clock -> provide_clock
3896
3897 2005-09-28  Andy Wingo  <wingo@pobox.com>
3898
3899         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
3900         and unlocking.
3901
3902         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
3903         unlocking.
3904
3905         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
3906         Actually add the pad template.
3907         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
3908
3909         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
3910         I'm at it...
3911
3912         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
3913         from fdsrc. Get caps in create() instead of start() so it can be
3914         interrupted. Interruption somewhat untested.
3915
3916         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
3917         Proper EOS handling.
3918
3919 2005-09-27  Andy Wingo  <wingo@pobox.com>
3920
3921         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
3922
3923         * gst/tcp/gsttcpserversrc.c: Cleaned up.
3924
3925         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
3926
3927         * gst/tcp/gsttcp.h: 
3928         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
3929         out of tcpclientsrc.c. Cancellable.
3930         (gst_tcp_socket_read): Made private, cancellable, with better
3931         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
3932         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
3933         whole buffer, and better diagnostics.
3934         (gst_tcp_gdp_read_caps): Same.
3935
3936         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
3937
3938 2005-09-26  Andy Wingo  <wingo@pobox.com>
3939
3940         * gst/sine/gstsinesrc.h:
3941         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
3942         change the 'sync' property to 'is-live' and implement it halfway,
3943         update for controller api change.
3944
3945         * gst/volume/gstvolume.c (volume_transform_ip): Update for
3946         controller api change.
3947
3948 2005-09-24  Wim Taymans  <wim@fluendo.com>
3949
3950         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
3951         * gst-libs/gst/audio/gstaudiosink.c:
3952         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
3953         (gst_audioringbuffer_stop):
3954         * gst-libs/gst/audio/gstbaseaudiosink.c:
3955         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
3956         (gst_base_audio_sink_change_state):
3957         * gst-libs/gst/audio/gstbaseaudiosink.h:
3958         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
3959         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
3960         (gst_ring_buffer_commit), (gst_ring_buffer_read):
3961         * gst-libs/gst/audio/gstringbuffer.h:
3962         Fix sync again. Moved sample alignment to basesink.
3963
3964 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3965
3966         * docs/plugins/Makefile.am:
3967         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3968         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3969         * gst/volume/gstvolume.c:
3970           add/fix docs
3971         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
3972         * gst-libs/gst/audio/audio.h:
3973           add conversion macros for frames <-> clocktime
3974
3975 2005-09-23  David Schleef  <ds@schleef.org>
3976
3977         * gst/audioresample/Makefile.am:
3978         * gst/audioresample/debug.h:
3979         * gst/audioresample/gstaudioresample.c:
3980         * gst/audioresample/resample.c: Convert to using gst debugging
3981
3982 2005-09-22  Wim Taymans  <wim@fluendo.com>
3983
3984         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
3985         (gst_play_bin_send_event):
3986         Only seek on one sink, the first one that succeeds.
3987
3988 2005-09-22  Michael Smith <msmith@fluendo.com>
3989
3990         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
3991         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
3992         Don't flush encoder state unless we have an initialised encoder.
3993         Clear out encoder state on PAUSED_TO_READY.
3994
3995 2005-09-22  Wim Taymans  <wim@fluendo.com>
3996
3997         * gst-libs/gst/rtp/gstbasertppayload.c:
3998         (gst_basertppayload_class_init), (gst_basertppayload_init),
3999         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
4000         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
4001         (gst_basertppayload_is_filled), (gst_basertppayload_push),
4002         (gst_basertppayload_set_property),
4003         (gst_basertppayload_get_property),
4004         (gst_basertppayload_change_state):
4005         * gst-libs/gst/rtp/gstbasertppayload.h:
4006         Added max-ptime to control amount of data in the rtp packets.
4007
4008 2005-09-21  Andy Wingo  <wingo@pobox.com>
4009
4010         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
4011         thingies.
4012
4013         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
4014         can be called multiple times, dogs.
4015
4016 2005-09-21  Wim Taymans  <wim@fluendo.com>
4017
4018         * gst-libs/gst/rtp/gstbasertppayload.c:
4019         (gst_basertppayload_class_init), (gst_basertppayload_init),
4020         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
4021         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
4022         (gst_basertppayload_push), (gst_basertppayload_get_property),
4023         (gst_basertppayload_change_state):
4024         Allow 0 ssrc too.
4025
4026 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
4027
4028         * docs/libs/compiling.sgml:
4029           fixing typos
4030
4031 2005-09-20  Wim Taymans  <wim@fluendo.com>
4032
4033         * gst-libs/gst/rtp/gstbasertppayload.c:
4034         (gst_basertppayload_class_init), (gst_basertppayload_init),
4035         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
4036         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
4037         (gst_basertppayload_push), (gst_basertppayload_set_property),
4038         (gst_basertppayload_get_property),
4039         (gst_basertppayload_change_state):
4040         * gst-libs/gst/rtp/gstbasertppayload.h:
4041         Added property to configure sequence number offsets.
4042
4043 2005-09-20  Wim Taymans  <wim@fluendo.com>
4044
4045         * gst-libs/gst/rtp/gstbasertppayload.c:
4046         (gst_basertppayload_class_init), (gst_basertppayload_init),
4047         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
4048         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
4049         (gst_basertppayload_push), (gst_basertppayload_set_property),
4050         (gst_basertppayload_get_property),
4051         (gst_basertppayload_change_state):
4052         * gst-libs/gst/rtp/gstbasertppayload.h:
4053         Make timestamp offset configurable.
4054
4055 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4056
4057         * check/pipelines/simple_launch_lines.c: (run_pipeline):
4058           fix wrong pop/unref
4059
4060 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
4061
4062         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
4063
4064         * gst-libs/gst/interfaces/propertyprobe.c:
4065         (gst_property_probe_probe_property_name),
4066         (gst_property_probe_needs_probe_name),
4067         (gst_property_probe_get_values_name),
4068         (gst_property_probe_probe_and_get_values_name):
4069           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
4070           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
4071
4072 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
4073
4074         * check/Makefile.am:
4075           have some tests be disabled for valgrinding
4076         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
4077         (GST_START_TEST):
4078         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
4079           Fix A Leak.  Chain To Parent Finalize.
4080
4081 2005-09-19  Wim Taymans  <wim@fluendo.com>
4082
4083         * examples/seeking/seek.c: (make_wav_pipeline), (main):
4084         Fixed wav pipeline.
4085
4086 2005-09-19  Wim Taymans  <wim@fluendo.com>
4087
4088         * gst-libs/gst/rtp/gstbasertppayload.c:
4089         (gst_basertppayload_class_init), (gst_basertppayload_init),
4090         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
4091         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
4092         (gst_basertppayload_push), (gst_basertppayload_get_property),
4093         (gst_basertppayload_change_state):
4094         Posting ERROR and WARNING messages is good.
4095
4096 2005-09-19  Wim Taymans  <wim@fluendo.com>
4097
4098         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4099         (gst_base_rtp_depayload_add_to_queue),
4100         (gst_base_rtp_depayload_push),
4101         (gst_base_rtp_depayload_set_gst_timestamp),
4102         (gst_base_rtp_depayload_queue_release):
4103         This one was not supposed to go in.
4104
4105 2005-09-19  Wim Taymans  <wim@fluendo.com>
4106
4107         * check/pipelines/simple_launch_lines.c: (run_pipeline):
4108         Fix for bus API.
4109
4110         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4111         (gst_base_rtp_depayload_chain),
4112         (gst_base_rtp_depayload_add_to_queue),
4113         (gst_base_rtp_depayload_push),
4114         (gst_base_rtp_depayload_set_gst_timestamp),
4115         (gst_base_rtp_depayload_queue_release):
4116         Some cleanups.
4117
4118         * gst-libs/gst/rtp/gstbasertppayload.c:
4119         (gst_basertppayload_class_init), (gst_basertppayload_init),
4120         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
4121         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
4122         (gst_basertppayload_get_property),
4123         (gst_basertppayload_change_state):
4124         Added debugging category.
4125
4126 2005-09-18  David Schleef  <ds@schleef.org>
4127
4128         * gst/playback/gstdecodebin.c: free plugin list correctly
4129         * gst/playback/gstplaybin.c: emit warning if autovideosink
4130           and autoaudiosink can't be found (instead of segfaulting)
4131
4132 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4133
4134         * check/elements/audioconvert.c: (GST_START_TEST):
4135           try out 24 bit conversion
4136
4137 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
4138
4139         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
4140         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
4141         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
4142         * ext/vorbis/vorbisenc.h:
4143           Fix EOS handling.  Still needs a fix in the ogg muxer to
4144           mark the last page as eos.
4145
4146 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
4147
4148         * common/gtk-doc-plugins.mak:
4149         * docs/plugins/Makefile.am:
4150         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4151         * gst/ffmpegcolorspace/Makefile.am:
4152         * gst/ffmpegcolorspace/avcodec.h:
4153         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4154         * gst/tcp/gstmultifdsink.c:
4155           fix up ffmpegcolorspace docs; extract header
4156
4157 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
4158
4159         * common/gtk-doc-plugins.mak:
4160         * docs/plugins/Makefile.am:
4161         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4162         * ext/theora/Makefile.am:
4163         * ext/theora/gsttheoraenc.h:
4164         * ext/theora/theoraenc.c:
4165         * ext/vorbis/vorbisenc.c:
4166           pick up signals and args for vorbis; add some docs for vorbis
4167
4168 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
4169
4170         * common/gstdoc-scangobj:
4171         * common/gtk-doc-plugins.mak:
4172         * docs/libs/Makefile.am:
4173         * docs/plugins/gst-plugins-base-plugins.args:
4174         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4175         * docs/plugins/gst-plugins-base-plugins.interfaces:
4176         * docs/plugins/gst-plugins-base-plugins.prerequisites:
4177         * docs/plugins/gst-plugins-base-plugins.signals:
4178           only scanobj stuff from our source module.  Not sure yet
4179           if that's correct, given the hierarchy stuff :)
4180
4181 2005-09-15  Wim Taymans  <wim@fluendo.com>
4182
4183         * gst/audioconvert/gstaudioconvert.c:
4184         And enable 24 bits mode as well..
4185
4186 2005-09-15  Wim Taymans  <wim@fluendo.com>
4187
4188         * gst-libs/gst/rtp/Makefile.am:
4189         * gst-libs/gst/rtp/gstbasertppayload.c:
4190         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
4191         (gst_basertppayload_class_init), (gst_basertppayload_init),
4192         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
4193         (gst_basertppayload_chain), (gst_basertppayload_set_options),
4194         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
4195         (gst_basertppayload_set_property),
4196         (gst_basertppayload_get_property),
4197         (gst_basertppayload_change_state):
4198         * gst-libs/gst/rtp/gstbasertppayload.h:
4199         Added rtp payloader base class.
4200
4201 2005-09-15  Andy Wingo  <wingo@pobox.com>
4202
4203         * configure.ac (plugindir): Remove the EOL matcher from the
4204         regexp, as it causes me problems. Libtool? Make? Who knows?
4205
4206 2005-09-14  David Schleef  <ds@schleef.org>
4207
4208         * check/generic/states.c: 
4209         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
4210         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
4211           Fixes for changes in registry API.
4212
4213         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
4214           to GST_PLUGIN_LDFLAGS.
4215         * ext/libvisual/visual.c: Make the library shut up.
4216         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
4217         * gst-libs/gst/audio/gstaudiofilter.c: same
4218
4219 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4220
4221         * docs/plugins/Makefile.am:
4222         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4223         * docs/plugins/inspect/plugin-libvisual.xml:
4224         * docs/plugins/tmpl/element-tcpserversink.sgml:
4225         * ext/theora/theoraenc.c:
4226           add libvisual plugin and theoraenc element to docs
4227
4228 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4229
4230         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4231         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4232         * ext/theora/theoraenc.c:
4233           add theoraenc
4234
4235 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
4236
4237         * gst/audioconvert/Makefile.am:
4238           Audioconvert derives from GstBaseTransform and should
4239           link to the library with our base elements to avoid
4240           unresolved symbols. Makes things work with MinGW (#316160)
4241
4242         * gst/playback/test4.c: (main):
4243           Fix MinGW build problem and use g_usleep() instead of 
4244           sleep() (#316162)
4245
4246 2005-09-12  Wim Taymans  <wim@fluendo.com>
4247
4248         * gst/audioconvert/audioconvert.c: (float),
4249         (audio_convert_prepare_context), (audio_convert_convert):
4250         * gst/audioconvert/audioconvert.h:
4251         Cleanups, speedups, simplifications, added back support
4252         for 24 bits.
4253
4254 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
4255
4256         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4257         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4258         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4259         * docs/plugins/tmpl/element-tcpserversink.sgml:
4260         * gst/ffmpegcolorspace/gstffmpeg.c:
4261         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4262         * gst/videotestsrc/gstvideotestsrc.c:
4263         * gst/volume/gstvolume.c:
4264           add more elements to the docs
4265
4266 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
4267
4268         * check/Makefile.am:
4269         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
4270         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
4271           Add extra tests for basetransform based components. 
4272           Comment out the test_element_negotiation test until we decide
4273           if it's testing correct behaviour.
4274         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
4275         (gst_visual_chain), (gst_visual_change_state):
4276           Slightly more correct but still bogus timestamping.
4277           Fix state change function.
4278         * gst/audioconvert/gstaudioconvert.c:
4279         (gst_audio_convert_class_init):
4280         * gst/audioresample/gstaudioresample.c:
4281         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4282         (gst_ffmpegcsp_class_init):
4283         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
4284         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
4285         (gst_videoscale_prepare_image):
4286         * gst/volume/gstvolume.c: (gst_volume_class_init),
4287         (volume_transform_ip):
4288           Basetransform updates. Enable passthrough modes.
4289         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
4290         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
4291         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
4292           Negotiation fix that allows the window to return to the original
4293           size and renegotiate passthrough upstream. Extra debug output.
4294
4295 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4296
4297         * gst/sine/gstsinesrc.c:
4298         * gst/volume/gstvolume.c:
4299           fix up header include
4300
4301 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
4302
4303         * gst-libs/gst/audio/gstbaseaudiosink.c:
4304         (gst_base_audio_sink_render):
4305         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
4306         * gst/volume/gstvolume.c: (gst_volume_class_init),
4307         (volume_transform):
4308           fixing lost sync, some more debugging
4309
4310 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
4311
4312         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
4313         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
4314         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
4315         (gst_xvimagesink_check_xshm_calls):
4316           Fix compilation when XShm is not available.
4317
4318 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
4319
4320         * ext/libvisual/visual.c: (gst_visual_dispose),
4321         (gst_visual_getcaps), (gst_visual_src_setcaps),
4322         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
4323         (gst_visual_change_state):
4324           Finish fixing up libvisual plugin so that it runs. 
4325
4326 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
4327
4328         * ext/vorbis/vorbisenc.c:
4329         * gst-libs/gst/tag/gstvorbistag.c:
4330           gsttaginterface.h -> gsttagsetter.h
4331
4332 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
4333
4334         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
4335           added another test that failes for me (test is not active by default)
4336
4337 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4338
4339         * configure.ac:
4340           v4l2 is no longer in gst-plugins-base
4341
4342 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
4343
4344         * configure.ac:
4345           In the output at the end, don't show the first plugin on the same
4346           line as "Core plug-ins, always built:".
4347           Indent the output as for other plugin categories
4348         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
4349           #define that can be used to not use peer buffer_alloc functions for
4350           test purposes.
4351         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
4352         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
4353         (gst_ximagesink_show_frame):
4354         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
4355         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
4356         (gst_xvimagesink_show_frame):
4357           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
4358           fails gracefully instead of XError aborting or deadlocking.
4359
4360 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
4361
4362         * ext/libvisual/Makefile.am:
4363           link against gst-base-libs
4364
4365 2005-09-06  David Schleef  <ds@schleef.org>
4366
4367         * configure.ac: Enable libvisual plugin.
4368         * ext/libvisual/Makefile.am:
4369         * ext/libvisual/visual.c: Fixes to make it compile.
4370
4371 === release 0.9.2 ===
4372
4373 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4374
4375         * NEWS:
4376         * RELEASE:
4377         * configure.ac:
4378         * docs/random/ChangeLog-0.8:
4379           releasing 0.9.2, "Spoon"
4380
4381 2005-09-05  Michael Smith <msmith@fluendo.com>
4382
4383         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
4384           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
4385           that in the vorbisenc element.
4386
4387 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
4388
4389         * common/gtk-doc-plugins.mak:
4390         * docs/plugins/Makefile.am:
4391           fix distcheck
4392         * gst/audioresample/resample.c:
4393           fix wrong docstring
4394
4395 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
4396
4397         * common/gst-xmlinspect.py:
4398         * common/gtk-doc-plugins.mak:
4399           only inspect plugins for this given package
4400           require gst-python 0.9
4401
4402 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
4403
4404         * Makefile.am:
4405         * autogen.sh:
4406         * common/gst-xmlinspect.py:
4407         * configure.ac:
4408         * docs/Makefile.am:
4409         * docs/plugins/inspect/plugin-alsa.xml:
4410         * docs/plugins/inspect/plugin-audioresample.xml:
4411         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4412         * docs/plugins/inspect/plugin-ogg.xml:
4413         * docs/plugins/tmpl/element-gnomevfssink.sgml:
4414         * docs/plugins/tmpl/element-multifdsink.sgml:
4415         * docs/plugins/tmpl/element-tcpserversink.sgml:
4416         * docs/plugins/tmpl/element-vorbisenc.sgml:
4417         * gst-plugins-base.spec.in:
4418           various doc-related updates
4419
4420 2005-08-31  Wim Taymans  <wim@fluendo.com>
4421
4422         * gst-libs/gst/audio/gstbaseaudiosink.c:
4423         (gst_base_audio_sink_render):
4424         Resync if the buffer timestamps drift more than a 10th 
4425         of a second.
4426
4427 2005-08-31  Tim-Philipp M??ller  <tim at centricular dot net>
4428
4429         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
4430         (gst_v4lsrc_get_property):
4431           The 'timestamp-offset' property is registered as an int64, so
4432           let's use g_value_{set|get}_int64() in our setter and getter
4433           functions (makes it work and fixes warnings with gst-inspect).
4434
4435 2005-08-30  Wim Taymans  <wim@fluendo.com>
4436
4437         * check/elements/audioconvert.c: (setup_audioconvert):
4438         * check/elements/audioresample.c: (setup_audioresample):
4439         * check/elements/volume.c: (setup_volume):
4440         Fix checks.
4441
4442 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
4443
4444         * common/gtk-doc-plugins.mak:
4445         * common/plugins.xsl:
4446         * docs/plugins/Makefile.am:
4447           make module a param
4448
4449 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
4450
4451         * examples/seeking/seek.c: (make_mp3_pipeline),
4452         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
4453         (play_cb), (pause_cb), (stop_cb):
4454           update the example
4455
4456 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
4457
4458         * gst/volume/gstvolume.c: (gst_volume_class_init),
4459         (volume_transform):
4460           do not update controlled params, if buffer has no timestamp
4461
4462 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
4463
4464         * configure.ac:
4465         * gst/sine/Makefile.am:
4466         * gst/volume/Makefile.am:
4467           controllerized elements also need to link against controller-libs ;)
4468
4469 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
4470
4471         * docs/libs/tmpl/gstcolorbalance.sgml:
4472         * docs/libs/tmpl/gstgconf.sgml:
4473         * docs/libs/tmpl/gstmixer.sgml:
4474         * docs/libs/tmpl/gstringbuffer.sgml:
4475         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
4476         (gst_sinesrc_create):
4477         * gst/volume/gstvolume.c: (gst_volume_class_init),
4478         (volume_transform):
4479           controllerized two audio plugins
4480
4481 2005-08-29  Andy Wingo  <wingo@pobox.com>
4482
4483         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
4484         (vorbis_handle_data_packet): Fix some int overflow errors.
4485
4486         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
4487         -1.
4488         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
4489         valid.
4490         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
4491         if it's valid. Fixed streaming-mode playback.
4492
4493         * check/elements/volume.c (cleanup_volume): Fix for running
4494         CK_FORK=no.
4495
4496         * check/elements/audioconvert.c: Convert from native endian, not
4497         little endian.
4498
4499 2005-08-29  Michael Smith <msmith@fluendo.com>
4500
4501         * ext/ogg/Makefile.am:
4502         * ext/ogg/gstogg.c: (plugin_init):
4503         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
4504         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
4505         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
4506         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
4507         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
4508         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
4509         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
4510         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
4511         Add an ogg parser element.
4512
4513 2005-08-28  Andy Wingo  <wingo@pobox.com>
4514
4515         * Updates for two-arg init from GST_BOILERPLATE_FULL.
4516
4517 2005-08-26  Wim Taymans  <wim@fluendo.com>
4518
4519         * gst/audioconvert/audioconvert.c: (if), (float),
4520         (audio_convert_get_func_index), (check_default),
4521         (audio_convert_clean_fmt), (audio_convert_prepare_context),
4522         (audio_convert_clean_context), (audio_convert_get_sizes),
4523         (audio_convert_convert):
4524         Cleanups.
4525
4526 2005-08-26  Wim Taymans  <wim@fluendo.com>
4527
4528         * gst/audioconvert/audioconvert.c: (if), (float),
4529         (audio_convert_get_func_index), (check_default),
4530         (audio_convert_clean_fmt), (audio_convert_prepare_context),
4531         (audio_convert_clean_context), (audio_convert_get_sizes),
4532         (audio_convert_convert):
4533         More elegant and working temp buffer selection algo.
4534
4535 2005-08-26  Wim Taymans  <wim@fluendo.com>
4536
4537         * gst/audioconvert/audioconvert.c: (if), (float),
4538         (audio_convert_get_func_index), (check_default),
4539         (audio_convert_clean_fmt), (audio_convert_prepare_context),
4540         (audio_convert_clean_context), (audio_convert_get_sizes),
4541         (get_temp_buffer), (audio_convert_convert):
4542         Use realloc else we lose our original data.
4543
4544 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4545
4546         * gst/audioresample/gstaudioresample.c:
4547           use base class' newsegment to properly timestamp
4548
4549 2005-08-26  Wim Taymans  <wim@fluendo.com>
4550
4551         * gst/audioconvert/audioconvert.c: (if), (float),
4552         (audio_convert_get_func_index), (check_default),
4553         (audio_convert_clean_fmt), (audio_convert_prepare_context),
4554         (audio_convert_clean_context), (audio_convert_get_sizes),
4555         (get_temp_buffer), (audio_convert_convert):
4556         * gst/audioconvert/gstaudioconvert.c:
4557         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
4558         (gst_audio_convert_transform_caps),
4559         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
4560         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
4561         Oops, allocate enough space to perform the channel mix.
4562
4563 2005-08-26  Wim Taymans  <wim@fluendo.com>
4564
4565         * gst/audioconvert/Makefile.am:
4566         * gst/audioconvert/audioconvert.c: (if), (float),
4567         (audio_convert_get_func_index), (check_default),
4568         (audio_convert_clean_fmt), (audio_convert_prepare_context),
4569         (audio_convert_clean_context), (audio_convert_get_sizes),
4570         (get_temp_buffer), (audio_convert_convert):
4571         * gst/audioconvert/audioconvert.h:
4572         * gst/audioconvert/gstaudioconvert.c:
4573         (gst_audio_convert_class_init), (gst_audio_convert_init),
4574         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
4575         (gst_audio_convert_get_unit_size),
4576         (gst_audio_convert_transform_caps),
4577         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
4578         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
4579         * gst/audioconvert/gstaudioconvert.h:
4580         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
4581         (gst_channel_mix_fill_identical),
4582         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
4583         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
4584         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
4585         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
4586         (gst_channel_mix_mix):
4587         * gst/audioconvert/gstchannelmix.h:
4588         Cleanups, librarify a bit, optimize, better negotiation and more.
4589
4590 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
4591
4592         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
4593         Another from MikeS:
4594         During typefinding, don't support negative offsets
4595         (offsets from the end of the stream) in our typefind->peek() function
4596         - nothing embedded in ogg ever needs them. However, we need to recognise
4597         those requests and reject them, otherwise we return invalid pointers.
4598
4599 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
4600
4601         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
4602         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
4603         (vorbisdec_finalize), (vorbis_handle_type_packet):
4604           Big shout-out to MikeS for fixing this giant memory leak.
4605           Huzzah!
4606
4607 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4608
4609         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
4610         (audio_convert_get_unit_size):
4611           plug some leaks
4612
4613 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4614
4615         * check/Makefile.am:
4616         * check/elements/audioconvert.c: (setup_audioconvert),
4617         (cleanup_audioconvert), (get_int_caps), (verify_convert),
4618         (GST_START_TEST), (audioconvert_suite), (main):
4619           add a test for audioconvert
4620         * gst/audioresample/gstaudioresample.c:
4621         * gst/audioresample/gstaudioresample.h:
4622           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
4623           note that for buffers of 1/3 sec this means DURATION(c) is 
4624           one nanosecond more than for a and b
4625
4626 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4627
4628         * check/Makefile.am:
4629         * check/elements/audioresample.c: (setup_audioresample),
4630         (cleanup_audioresample), (fail_unless_perfect_stream),
4631         (test_perfect_stream_instance), (GST_START_TEST),
4632           add a check for audioresample
4633         (audioresample_suite), (main):
4634         * check/elements/volume.c: (GST_START_TEST):
4635           remove unused method
4636         * gst/audioresample/gstaudioresample.c:
4637           set correct buffer parameters since we're changing them
4638         * gst/audioresample/resample_ref.c: (resample_scale_ref):
4639           add some debug
4640
4641 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4642
4643         * gst/audioresample/debug.c:
4644         * gst/audioresample/gstaudioresample.c:
4645           add room for extra overlap samples when asked to transform size
4646           protect against possible mem corruption and check for discrepancies
4647           between written size and outbuffer's size so we can warn for
4648           potential problems
4649         * gst/audioresample/resample.c: (resample_init),
4650         (resample_get_output_size_for_input), (resample_get_output_size),
4651         (resample_set_n_channels), (resample_set_format):
4652           set debug level based on RESAMPLE_DEBUG env var
4653           make sure that get_output_size* returns a whole number of
4654           sample_size
4655           set sample_size each time either channel or format is set
4656         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
4657         * gst/audioresample/resample_functable.c:
4658         (resample_scale_functable):
4659         * gst/audioresample/resample_ref.c: (resample_scale_ref):
4660           remove r->sample_size, it's done in resample.c now
4661           add some debugging to the ref implementation
4662           make sure we only give back bytes that are wholes of the sample
4663           size
4664
4665 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
4666         * gst/playback/gstplaybasebin.c: (fill_buffer):
4667         Revert unpopular change for GST_MESSAGE_SRC to GObject.
4668
4669 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
4670
4671         * gst/volume/gstvolume.c:
4672           made set_caps function static
4673
4674 2005-08-24  Wim Taymans  <wim@fluendo.com>
4675
4676         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
4677         (gst_vorbisenc_change_state):
4678         Stop leaking taglists.
4679
4680 2005-08-24  Wim Taymans  <wim@fluendo.com>
4681
4682         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
4683         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
4684         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
4685         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
4686         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
4687         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
4688         Parse seeking events better.
4689         Unref static caps.
4690         Generate correct newsegment events, fixes seeking in live oggs.
4691
4692         * ext/theora/theoradec.c: (theora_dec_src_query),
4693         (theora_dec_src_event), (theora_dec_src_getcaps),
4694         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
4695         Use newsegment values to report correct play time.
4696
4697         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4698         (vorbis_dec_src_event), (vorbis_dec_sink_event):
4699         * ext/vorbis/vorbisdec.h:
4700         Parse and use newsegment values to report correct play time.
4701
4702         * gst-libs/gst/audio/gstbaseaudiosink.c:
4703         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
4704         Clear ringbuffer on flush.
4705         Use newsegment values to calculate playback time.
4706
4707         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
4708         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
4709         Basesink does newsegment calculations for us now.
4710
4711 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
4712
4713         * check/Makefile.am:
4714         * configure.ac:
4715           add core's plugins to the mix so that playbin works
4716         * check/generic/states.c: (GST_START_TEST):
4717           set a 0 timeout on pipelines, so they don't force the next
4718           state change
4719         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
4720         (gst_play_base_bin_change_state):
4721           remove the crappy error handling and do GST error handling
4722
4723 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
4724
4725         * check/Makefile.am:
4726         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
4727           add same test as to core, it bitches out on playbin atm.
4728
4729 2005-08-24  Wim Taymans  <wim@fluendo.com>
4730
4731         * configure.ac:
4732         Remove audioscale.
4733
4734 2005-08-24  Wim Taymans  <wim@fluendo.com>
4735
4736         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
4737         (gst_videoscale_prepare_size), (parse_caps),
4738         (gst_videoscale_set_caps), (gst_videoscale_get_size),
4739         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
4740         (gst_videoscale_transform):
4741         * gst/videoscale/gstvideoscale.h:
4742         Refactor, make use of BaseTranform really well.
4743
4744 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
4745
4746         * configure.ac:
4747           compile audioresample
4748         * gst/audioresample/Makefile.am:
4749         * gst/audioresample/buffer.c:
4750         * gst/audioresample/functable.c:
4751         * gst/audioresample/gstaudioresample.c:
4752         * gst/audioresample/gstaudioresample.h:
4753         * gst/audioresample/resample.c:
4754         (resample_get_output_size_for_input):
4755         * gst/audioresample/resample.h:
4756         * gst/audioresample/resample_chunk.c:
4757         * gst/audioresample/resample_functable.c:
4758         * gst/audioresample/resample_ref.c:
4759           port to use basetransform; doesn't work in all cases yet
4760
4761 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
4762
4763         * gst/audioconvert/gstaudioconvert.c:
4764         (gst_audio_convert_class_init), (gst_audio_convert_init),
4765         (audio_convert_get_unit_size), (audio_convert_transform_caps),
4766         (audio_convert_fixate_caps), (audio_convert_set_caps),
4767         (audio_convert_transform),
4768         (gst_audio_convert_buffer_to_default_format),
4769         (gst_audio_convert_buffer_from_default_format),
4770         (gst_audio_convert_channels):
4771         * gst/audioconvert/gstchannelmix.c:
4772         * gst/audioconvert/gstchannelmix.h:
4773           port to basetransform
4774         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4775         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
4776         (gst_ffmpegcsp_get_unit_size):
4777         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
4778         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
4779           fix for basetransform changes
4780
4781 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
4782
4783         * check/Makefile.am:
4784           Add CHECK_CFLAGS and LDFLAGS
4785
4786         * gst/playback/gstplaybasebin.c: (fill_buffer):
4787           GST_MESSAGE_SRC became a GObject
4788
4789 2005-08-24  Wim Taymans  <wim@fluendo.com>
4790
4791         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
4792         (gst_ring_buffer_clear_all):
4793         * gst-libs/gst/audio/gstringbuffer.h:
4794         Added function to clear the ringbuffer.
4795
4796 2005-08-24  Andy Wingo  <wingo@pobox.com>
4797
4798         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
4799         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
4800         of _open and _close.
4801
4802         * sys/v4l/gstv4lxoverlay.h:
4803         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
4804         an Xv connection here, instead of all the time. Make Xv only be
4805         loaded if you axe for it. Kindof a workaround for buggy behaviour
4806         of Xv when using remote xservers (XvQueryExtension would block).
4807         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
4808         replace the _open and _close public API. Only start the xv
4809         connection if necessary.
4810         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
4811
4812 2005-08-23  David Schleef  <ds@schleef.org>
4813
4814         * gst/audioresample/Makefile.am: Leet audioresampling code
4815         * gst/audioresample/buffer.c:
4816         * gst/audioresample/buffer.h:
4817         * gst/audioresample/debug.c:
4818         * gst/audioresample/debug.h:
4819         * gst/audioresample/functable.c:
4820         * gst/audioresample/functable.h:
4821         * gst/audioresample/gstaudioresample.c:
4822         * gst/audioresample/gstaudioresample.h:
4823         * gst/audioresample/resample.c:
4824         * gst/audioresample/resample.h:
4825         * gst/audioresample/resample_chunk.c:
4826         * gst/audioresample/resample_functable.c:
4827         * gst/audioresample/resample_ref.c:
4828
4829 2005-08-23  Wim Taymans  <wim@fluendo.com>
4830
4831         * examples/seeking/seek.c: (make_vorbis_pipeline),
4832         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
4833         Small seek updates.
4834
4835 2005-08-23  Andy Wingo  <wingo@pobox.com>
4836
4837         * gst-libs/gst/audio/gstbaseaudiosrc.c
4838         (gst_base_audio_src_fixate): Only fixate endianness if it is
4839         present in the caps.
4840
4841 2005-08-22  Andy Wingo  <wingo@pobox.com>
4842
4843         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
4844         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
4845         device-name property.
4846
4847         * gst-libs/gst/audio/gstaudiosrc.h:
4848         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
4849         close_device in the ring buffer, like gstaudiosink.
4850
4851         * ext/alsa/gstalsamixer.h:
4852         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
4853         macro to implement the interface without much code. Cleanups. 
4854
4855         * ext/alsa/gstalsasrc.h:
4856         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
4857         READY.
4858
4859         * ext/alsa/Makefile.am: Add new files.
4860         * ext/alsa/gstalsamixerelement.c: 
4861         * ext/alsa/gstalsamixerelement.c: Split element code out from
4862         mixer code so that alsasrc can be a mixer too.
4863
4864 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
4865
4866         * check/elements/volume.c: (setup_volume), (cleanup_volume),
4867         (GST_START_TEST):
4868         * check/elements/vorbisdec.c: (setup_vorbisdec),
4869         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
4870         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
4871         (vorbis_handle_identification_packet),
4872         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
4873         (vorbis_handle_header_packet), (vorbis_dec_push),
4874         (vorbis_dec_chain):
4875           use the setup/teardown methods to save code.  save code is good.
4876
4877 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4878
4879         * check/Makefile.am:
4880           add ext dir for plugins
4881           add vorbisdec test conditionally
4882         * check/elements/volume.c: (setup_volume), (cleanup_volume),
4883         (GST_START_TEST), (volume_suite):
4884           add a test with wrong caps
4885         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
4886         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
4887           add a vorbisdec test
4888         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
4889         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
4890           clean up debug output
4891         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
4892           yay, fix a segfault/security issue in vorbisdec
4893           gst-launch fakesrc ! vorbisdec wasn't happy
4894         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
4895         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
4896         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
4897         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
4898         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
4899         (gst_vorbisenc_set_metadata), (get_constraints_string),
4900         (update_start_message), (gst_vorbisenc_setup),
4901         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
4902         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
4903         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
4904         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
4905         * ext/vorbis/vorbisenc.h:
4906           march in line
4907         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
4908         (gst_ffmpegcsp_transform):
4909           have the kow come home
4910         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
4911           debug my func ptr
4912         * gst/volume/gstvolume.c: (volume_set_caps):
4913           add a debug
4914
4915 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4916
4917         * Makefile.am:
4918         * check/.cvsignore:
4919         * check/Makefile.am:
4920         * check/elements/.cvsignore:
4921         * check/elements/volume.c: (chain_func), (event_func),
4922         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
4923         (main):
4924         * configure.ac:
4925           add unit test structure for gst-plugins-base
4926           add a test for volume
4927         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
4928         (gst_volume_set_volume), (gst_volume_get_volume),
4929         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
4930         (volume_funcfind), (volume_process_float), (volume_process_int16),
4931         (volume_set_caps), (volume_transform), (volume_update_mute),
4932         (volume_update_volume), (volume_set_property),
4933         (volume_get_property):
4934           document a little; use basetransform vmethod _set_caps
4935
4936 2005-08-19  Andy Wingo  <wingo@pobox.com>
4937
4938         * ext/alsa/gstalsamixertrack.h:
4939         * ext/alsa/gstalsamixertrack.c:
4940         * ext/alsa/gstalsamixeroptions.h:
4941         * ext/alsa/gstalsamixeroptions.c:
4942         * ext/alsa/gstalsamixer.h:
4943         * ext/alsa/gstalsamixer.c: Port to 0.9.
4944
4945         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
4946         Remove gstalsa.c and alsaclock. No more cruft here.
4947         
4948 2005-08-18  Wim Taymans  <wim@fluendo.com>
4949
4950         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4951         (gst_base_rtp_depayload_chain),
4952         (gst_base_rtp_depayload_add_to_queue),
4953         (gst_base_rtp_depayload_push),
4954         (gst_base_rtp_depayload_queue_release):
4955         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4956         Fix for RTPBuffer changes.
4957
4958         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
4959         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
4960         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
4961         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
4962         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
4963         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
4964         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
4965         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
4966         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
4967         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
4968         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
4969         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
4970         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
4971         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
4972         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
4973         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
4974         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
4975         (gst_rtpbuffer_get_payload):
4976         * gst-libs/gst/rtp/gstrtpbuffer.h:
4977         Don't subclass GstBuffer but add methods and helper functions
4978         to construct and manipulate RTP packets in regular GstBuffers.
4979
4980 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
4981
4982         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
4983           moved statement below switch
4984         * gst/volume/gstvolume.c: (gst_volume_class_init):
4985           added debug ptr
4986
4987 2005-08-16  Wim Taymans  <wim@fluendo.com>
4988
4989         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4990         (gst_base_audio_src_change_state):
4991         Open and close device in READY<->NULL state change.
4992
4993 2005-08-16  Andy Wingo  <wingo@pobox.com>
4994
4995         * examples/seeking/Makefile.am: Don't compile non-compiling
4996         compiled objects with the compiler.
4997
4998         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
4999         elements.
5000
5001 2005-08-12  Philippe Khalaf <burger@speedy.org>
5002         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5003         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5004           Made a thread to release the queue.
5005           Removed timestamp conversion for now.
5006
5007 2005-08-10  Philippe Khalaf <burger@speedy.org>
5008         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5009         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5010           Added rtp timestamp -> gst timestamp conversion.
5011           Fixed several problems with queue.
5012
5013 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
5014
5015         * gst-libs/gst/audio/gstaudioclock.h:
5016         * gst-libs/gst/audio/gstaudiofilter.h:
5017         * gst-libs/gst/audio/gstaudiosink.h:
5018         * gst-libs/gst/audio/gstaudiosrc.h:
5019         * gst-libs/gst/audio/gstbaseaudiosink.h:
5020         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5021         * gst-libs/gst/audio/gstringbuffer.h:
5022         * gst-libs/gst/net/gstnetbuffer.h:
5023         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5024         * gst-libs/gst/rtp/gstrtpbuffer.h:
5025           Add padding (you will need to rebuild gst-plugins-base,
5026           gst-plugins and all applications afterwards!)
5027
5028 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
5029
5030         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
5031         (gst_riff_parse_chunk):
5032           Fix bug in debug message and add some more debug messages.
5033
5034 2005-08-08  Edward Hervey  <edward@fluendo.com>
5035
5036         * gst-libs/gst/riff/riff-media.c:
5037         backported updates since branch
5038
5039 2005-08-08  Andy Wingo  <wingo@pobox.com>
5040
5041         * gst-libs/gst/audio/gstbaseaudiosink.c
5042         (gst_base_audio_sink_change_state): Open the device in NULL->READY
5043         like good elements should. Close on READY->NULL too.
5044
5045         * gst-libs/gst/audio/gstaudiosink.c
5046         (gst_audioringbuffer_open_device,
5047         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
5048         (gst_audioringbuffer_release): Updates for new ring buffer API,
5049         hook into the new audio sink api.
5050
5051         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
5052         (GstAudioSinkClass.close): Just open and close the device -- no
5053         resource allocation or configuration.
5054         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
5055         vmethods, handle device setup and resource allocation.
5056
5057         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
5058         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
5059         base class API.
5060
5061         * gst-libs/gst/audio/gstringbuffer.h
5062         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
5063         New vmethods.
5064
5065         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
5066         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
5067         New API functions. The device should be opened before acquiring
5068         and closed after releasing.
5069
5070 2005-08-08  Tim-Philipp M??ller  <tim at centricular dot net>
5071
5072         * gst-libs/gst/interfaces/mixer.h:
5073           Reset padding to GST_PADDING.
5074
5075 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5076
5077         * gst/playback/gstplaybin.c: (remove_sinks):
5078           Remove visualization from parent explicitely; works around some
5079           apparent refcount issue that I haven't tracked down yet.
5080
5081 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5082
5083         * ext/alsa/gstalsasink.c: (set_hwparams):
5084           Assign debug category, add negotiation debug msgs.
5085
5086 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5087
5088         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
5089           Fix error code for file-not-found to NOT_FOUND.
5090
5091 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
5092
5093         * common/gtk-doc-plugins.mak:
5094         * docs/plugins/Makefile.am:
5095         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5096         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5097           renamed to actual element names, so much nicer to look at
5098         * docs/plugins/tmpl/gstmultifdsink.sgml:
5099           remove
5100         * docs/plugins/tmpl/multifdsink.sgml:
5101         * docs/plugins/tmpl/tcpserversink.sgml:
5102           add
5103         * ext/alsa/gstalsa.c:
5104         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
5105         * ext/ogg/gstoggmux.c:
5106         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
5107         * gst/playback/gstdecodebin.c:
5108         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
5109         * gst/tcp/gsttcpserversink.c:
5110           various fixes and documentation additions
5111
5112 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
5113
5114         * common/Makefile.am:
5115         * common/gstdoc-scangobj:
5116         * common/gtk-doc-plugins.mak:
5117         * common/gtk-doc.mak:
5118           add a custom scangobj that uses the registry
5119           add a custom gtk-doc-plugins.mak that uses it
5120           some doc build fixes
5121         * configure.ac:
5122         * docs/Makefile.am:
5123         * docs/plugins/Makefile.am:
5124         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
5125         * docs/plugins/gst-plugins-base-plugins-sections.txt:
5126         * docs/plugins/gst-plugins-base-plugins.types:
5127         * docs/plugins/tmpl/gstmultifdsink.sgml:
5128           add docs for one element, multifdsink
5129         * gst/adder/gstadder.h:
5130         * gst/volume/gstvolume.h:
5131           don't privatize enum
5132         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
5133         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
5134         (gst_sync_method_get_type), (gst_client_status_get_type),
5135         (gst_multifdsink_class_init),
5136         (gst_multifdsink_client_queue_buffer),
5137         (gst_multifdsink_handle_client_write):
5138         * gst/tcp/gstmultifdsink.h:
5139         * gst/tcp/gsttcp.h:
5140         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
5141         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
5142         (gst_tcpclientsink_render):
5143         * gst/tcp/gsttcpclientsink.h:
5144         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
5145         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
5146         (gst_tcpclientsrc_start):
5147         * gst/tcp/gsttcpclientsrc.h:
5148         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
5149         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
5150         * gst/tcp/gsttcpserversrc.h:
5151         * gst/typefind/gsttypefindfunctions.c:
5152           remove superfluous Type stuff
5153
5154 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5155
5156         * gst/playback/gstplaybin.c: (gen_video_element):
5157           Enable videoscale.
5158
5159 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5160
5161         * gst-libs/gst/gconf/gconf.c:
5162         * gst-libs/gst/gconf/gconf.h:
5163           Fix some Andy Problem [tm].
5164
5165 2005-08-04  Andy Wingo  <wingo@pobox.com>
5166
5167         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
5168         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
5169         (gst_ffmpegcsp_get_size): Adapt to API changes.
5170
5171         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
5172         Implement an in-place do-nothing transform.
5173
5174 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5175
5176         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
5177         (gst_ximagesink_renegotiate_size):
5178           Do not set new window sizes yet if we prepare a new buffer size
5179           for upstream renegotiation (software scaling) at some point in the
5180           future, because this new size waqs not actually accepted yet. Once
5181           accepted, renegotiation later on will set the new sizes just fine.
5182           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
5183           embedding testcase.
5184
5185 2005-08-03  Andy Wingo  <wingo@pobox.com>
5186
5187         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
5188         (gst_ximagesink_buffer_alloc): 
5189         Protect the height, width, and desired_caps with the pool_lock.
5190         Fixes videotestsrc ! queue ! ximagesink.
5191
5192 2005-08-02  Edward Hervey  <edward@fluendo.com>
5193
5194         * gst/volume/gstvolume.c:
5195         include left from controller cleanup
5196
5197 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
5198         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
5199           Stop collectpads before calling the parent state
5200           change function on PAUSED->READY.
5201
5202 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
5203         * configure.ac:
5204           When testing for X libs, use the X CFlags 
5205         * gst/adder/gstadder.c: (gst_adder_change_state):
5206           Stop the collectpads before calling parent state change function
5207           on PAUSED->READY, otherwise we deadlock deactivating pads.
5208
5209 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
5210
5211         * configure.ac:
5212         * docs/libs/tmpl/gstcolorbalance.sgml:
5213         * docs/libs/tmpl/gstmixer.sgml:
5214         * examples/Makefile.am:
5215         * gst/sine/Makefile.am:
5216         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
5217         (gst_sinesrc_set_property), (plugin_init):
5218         * gst/sine/gstsinesrc.h:
5219         * gst/volume/Makefile.am:
5220         * gst/volume/gstvolume.c: (gst_volume_set_volume),
5221         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
5222         (volume_process_float), (volume_process_int16),
5223         (volume_set_property), (plugin_init):
5224         * gst/volume/gstvolume.h:
5225           deactivate and remove dparams (libgstcontrol)
5226
5227 2005-07-29  Wim Taymans  <wim@fluendo.com>
5228
5229         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
5230         Convert me to BaseTransform!! help..
5231
5232 2005-07-29  Andy Wingo  <wingo@pobox.com>
5233
5234         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
5235         sinks.
5236
5237         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
5238         support of both endiannesses.
5239
5240 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
5241
5242         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
5243           Fix confusing debug message (s/event/query/)
5244
5245 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
5246
5247         * gst/videotestsrc/videotestsrc.h:
5248           Use "_stdint.h" instead of <stdint.h>
5249
5250 2005-07-27  Wim Taymans  <wim@fluendo.com>
5251
5252         * ext/vorbis/Makefile.am:
5253         Revert wrong commit.
5254
5255 2005-07-27  Wim Taymans  <wim@fluendo.com>
5256
5257         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
5258         More compilation fixen.
5259
5260 2005-07-27  Wim Taymans  <wim@fluendo.com>
5261
5262         * gst-libs/gst/audio/gstbaseaudiosink.c:
5263         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
5264         (gst_base_audio_sink_create_ringbuffer),
5265         (gst_base_audio_sink_change_state):
5266         Fix compilation.
5267
5268 2005-07-27  Wim Taymans  <wim@fluendo.com>
5269
5270         * examples/seeking/seek.c: (setup_dynamic_link),
5271         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
5272         (query_positions_elems), (query_positions_pads), (do_seek):
5273         Update seek example.
5274
5275         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
5276         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
5277         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
5278         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
5279         (gst_ogg_demux_handle_event),
5280         (gst_ogg_demux_deactivate_current_chain),
5281         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
5282         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
5283         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
5284         (gst_ogg_demux_loop):
5285         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
5286         * ext/theora/theoradec.c: (theora_dec_src_event),
5287         (theora_dec_src_getcaps), (theora_dec_sink_event),
5288         (theora_dec_push), (theora_dec_chain):
5289         * ext/vorbis/Makefile.am:
5290         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
5291         (vorbis_dec_sink_event), (vorbis_dec_push),
5292         (vorbis_handle_data_packet):
5293         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
5294         (gst_vorbisenc_chain):
5295         * gst/playback/gststreaminfo.c: (cb_probe):
5296         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
5297         * gst/videorate/gstvideorate.c: (gst_videorate_event):
5298         * gst/videoscale/gstvideoscale.c:
5299         (gst_videoscale_handle_src_event):
5300         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
5301         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
5302         (gst_ximagesink_navigation_send_event):
5303         * sys/xvimage/xvimagesink.c:
5304         (gst_xvimagesink_navigation_send_event):
5305         Various event updates and cleanups
5306
5307 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5308
5309         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
5310           Fix segfault for I420/YV12.
5311
5312 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5313
5314         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
5315           Report bitrate.
5316
5317 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5318
5319         * gst/playback/gstplaybin.c: (gen_video_element),
5320         (gen_audio_element):
5321           Switch to auto*sink elements as default sinks; add volume element
5322           so that volume control in totem works.
5323
5324 2005-07-21  Wim Taymans  <wim@fluendo.com>
5325
5326         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
5327         * gst/playback/gstplaybin.c: (setup_sinks),
5328         (gst_play_bin_change_state):
5329         Refcount fix and more comments.
5330
5331 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5332
5333         * sys/ximage/Makefile.am:
5334         * sys/ximage/ximage.c: (plugin_init):
5335         * sys/ximage/ximagesink.c:
5336         Prepare for adding ximagesrc, rename of plugin to ximage etc.
5337         
5338
5339 2005-07-21  Wim Taymans  <wim@fluendo.com>
5340
5341         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
5342         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
5343         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5344         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5345         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
5346         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
5347         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
5348         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
5349         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
5350         Generate correct disconts for live chained oggs.
5351
5352         * gst-libs/gst/audio/gstbaseaudiosink.c:
5353         (gst_base_audio_sink_render),
5354         (gst_base_audio_sink_create_ringbuffer),
5355         (gst_base_audio_sink_change_state):
5356         Handle discont math correctly.
5357
5358         * gst/playback/gstplaybin.c: (add_sink):
5359         Some small debug cleanup.
5360
5361 2005-07-21  Wim Taymans  <wim@fluendo.com>
5362
5363         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
5364         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
5365         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
5366         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
5367         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
5368         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
5369         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
5370         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
5371         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
5372         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
5373         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
5374         (gst_ogg_demux_change_state), (gst_ogg_print):
5375         Reorganize code to send the right disconts when in streaming
5376         mode.
5377
5378 2005-07-20  Andy Wingo  <wingo@pobox.com>
5379
5380         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
5381         fix (?), fixes a seggie mcfalterson (#310894).
5382
5383 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5384
5385         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
5386         (gst_ogg_mux_set_header_on_caps):
5387         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
5388         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
5389         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
5390         * gst-libs/gst/audio/multichannel.c:
5391         (gst_audio_set_channel_positions),
5392         (gst_audio_set_structure_channel_positions_list):
5393         * gst/playback/gstdecodebin.c: (dynamic_create):
5394         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
5395         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
5396           Fixes for API changes in core.
5397
5398 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5399
5400         * gst/playback/gstplaybasebin.c: (fill_buffer):
5401           Use _new_custom() so we can set custom message types for buffering
5402           messages.
5403
5404 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
5405
5406         * configure.ac:
5407         * gst-libs/gst/Makefile.am:
5408         * gst-libs/gst/gconf/.cvsignore:
5409         * gst-libs/gst/gconf/Makefile.am:
5410         * gst-libs/gst/gconf/test-gconf.c:
5411         * pkgconfig/Makefile.am:
5412         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
5413         * pkgconfig/gstreamer-gconf.pc.in:
5414           Remove gconf stuff, use gconf elements instead from now on.
5415
5416 2005-07-20  Wim Taymans  <wim@fluendo.com>
5417
5418         * gst-libs/gst/audio/TODO:
5419         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
5420         (gst_audio_clock_get_internal_time):
5421         * gst-libs/gst/audio/gstaudioclock.h:
5422         * gst-libs/gst/audio/gstbaseaudiosink.c:
5423         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
5424         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
5425         (gst_base_audio_sink_render),
5426         (gst_base_audio_sink_create_ringbuffer),
5427         (gst_base_audio_sink_change_state):
5428         Make sure the audio clock always returns an increasing value.
5429
5430 2005-07-19  Andy Wingo  <wingo@pobox.com>
5431
5432         * gst/videotestsrc/: Cleanups.
5433
5434 2005-07-19  Wim Taymans  <wim@fluendo.com>
5435
5436         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
5437         Better debugging.
5438
5439 2005-07-19  Wim Taymans  <wim@fluendo.com>
5440
5441         * examples/seeking/seek.c: (make_dv_pipeline),
5442         (make_vorbis_theora_pipeline), (query_rates),
5443         (query_positions_elems), (query_positions_pads), (do_seek):
5444         Make correct DV pipeline.
5445
5446 2005-07-18  Andy Wingo  <wingo@pobox.com>
5447
5448         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
5449         default. Also because it's the only thing that really works. (This
5450         is used in the GConf elements).
5451         Use AS_LIBTOOL_TAGS.
5452
5453 2005-07-18  Wim Taymans  <wim@fluendo.com>
5454
5455         * gst/playback/gstdecodebin.c: (remove_element_chain):
5456         * gst/playback/gstplaybin.c: (add_sink):
5457         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
5458         (gst_stream_info_set_mute):
5459         * gst/playback/gststreamselector.c:
5460         (gst_stream_selector_get_linked_pad),
5461         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
5462         More leak and compile fixes.
5463
5464 2005-07-18  Wim Taymans  <wim@fluendo.com>
5465
5466         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
5467         (query_rates), (query_positions_elems), (query_positions_pads),
5468         (do_seek), (seek_cb), (stop_seek):
5469         Updated seek example. 
5470
5471         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
5472         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
5473         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
5474         * gst/playback/gstplaybin.c: (add_sink):
5475         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
5476         (gst_stream_info_set_mute):
5477         Some refcount leak fixes.
5478
5479 2005-07-16  Wim Taymans  <wim@fluendo.com>
5480
5481         * gst-libs/gst/audio/gstbaseaudiosink.c:
5482         (gst_base_audio_sink_render):
5483         Align samples even if we have roundoff errors in the 
5484         timestamp conversion.
5485
5486 2005-07-16  Wim Taymans  <wim@fluendo.com>
5487
5488         * docs/libs/tmpl/gstringbuffer.sgml:
5489         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
5490         (query_rates), (query_positions_elems), (query_positions_pads),
5491         (update_scale), (do_seek):
5492         Updated seek example.
5493
5494         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
5495         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
5496         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
5497         (gst_ogg_demux_loop):
5498         Push out correct discont values.
5499
5500         * ext/theora/theoradec.c: (theora_dec_src_convert),
5501         (theora_dec_sink_convert), (theora_dec_src_getcaps),
5502         (theora_dec_sink_event), (theora_handle_type_packet),
5503         (theora_handle_header_packet), (theora_dec_push),
5504         (theora_handle_data_packet), (theora_dec_chain),
5505         (theora_dec_change_state):
5506         Better timestamping.
5507
5508         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
5509         (vorbis_dec_sink_event), (vorbis_dec_push),
5510         (vorbis_handle_data_packet), (vorbis_dec_chain):
5511         * ext/vorbis/vorbisdec.h:
5512         Better timestamping.
5513
5514         * gst-libs/gst/audio/gstbaseaudiosink.c:
5515         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
5516         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
5517         Handle syncing on timestamps instead of sample offsets. Make
5518         use of DISCONT values as described in design docs.
5519
5520         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5521         (gst_base_audio_src_get_time):
5522         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
5523         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
5524         (gst_ring_buffer_read):
5525         * gst-libs/gst/audio/gstringbuffer.h:
5526         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
5527         (gst_ximagesink_show_frame):
5528         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
5529         Correcly convert buffer timestamp to stream time.
5530
5531 2005-07-16  Wim Taymans  <wim@fluendo.com>
5532
5533         * gst/audioconvert/gstaudioconvert.c:
5534         (gst_audio_convert_get_buffer):
5535         Timestamp buffers correctly.
5536
5537         * gst/playback/gstplaybin.c: (gen_video_element):
5538         Make internal fakesink silent.
5539
5540 2005-07-15  Wim Taymans  <wim@fluendo.com>
5541
5542         * gst/ffmpegcolorspace/Makefile.am:
5543         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5544         (gst_ffmpegcsp_caps_remove_format_info),
5545         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
5546         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
5547         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
5548         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
5549         Ported ffmpegcolorspace to basetransform.
5550
5551         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
5552         * gst/volume/gstvolume.c: (volume_transform):
5553         Ported to new API.
5554
5555 2005-07-14  Wim Taymans  <wim@fluendo.com>
5556
5557         * gst/videotestsrc/Makefile.am:
5558         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
5559         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
5560         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
5561         (gst_videotestsrc_init), (gst_videotestsrc_event),
5562         (gst_videotestsrc_create), (gst_videotestsrc_start),
5563         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
5564         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
5565         (gst_videotestsrc_get_property):
5566         * gst/videotestsrc/gstvideotestsrc.h:
5567         Make videotestsrc a pushsrc.
5568
5569 2005-07-14  Wim Taymans  <wim@fluendo.com>
5570
5571         * gst/tcp/gstfdset.c: (gst_fdset_free):
5572         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
5573         (gst_multifdsink_add), (gst_multifdsink_remove),
5574         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
5575         (gst_multifdsink_remove_client_link),
5576         (gst_multifdsink_client_queue_data),
5577         (gst_multifdsink_client_queue_caps),
5578         (gst_multifdsink_client_queue_buffer),
5579         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
5580         (gst_multifdsink_stop):
5581         * gst/tcp/gstmultifdsink.h:
5582         0.8 backporting.
5583
5584         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
5585         Also draw image when not from a pool.
5586
5587 2005-07-14  Wim Taymans  <wim@fluendo.com>
5588
5589         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
5590         (mute_stream), (silence_stream):
5591         Small debug additions.
5592
5593 2005-07-14  Wim Taymans  <wim@fluendo.com>
5594
5595         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
5596         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
5597         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
5598         Better error recovery, ignore unconnected pads and
5599         non-fatal errors.
5600
5601 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
5602
5603         * docs/libs/tmpl/gstaudio.sgml:
5604         * docs/libs/tmpl/gstcolorbalance.sgml:
5605         * docs/libs/tmpl/gstgconf.sgml:
5606         * docs/libs/tmpl/gstmixer.sgml:
5607         * docs/libs/tmpl/gstringbuffer.sgml:
5608         * docs/libs/tmpl/gsttuner.sgml:
5609         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5610         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
5611         (gst_tcpclientsrc_class_init):
5612         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
5613         (gst_tcpserversrc_class_init):
5614         * sys/v4l/gstv4lelement.c:
5615           more autistic cleanliness in functions/names/defines
5616
5617 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
5618
5619         * configure.ac:
5620           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
5621           added manually to each Makefile.am so we are sure it goes
5622           *last* and doesn't add -L flags before linking in libs of our
5623           own, like, say, internal .la libs, that then accidentally pick
5624           up the installed copy.
5625         * docs/libs/Makefile.am:
5626         * ext/alsa/Makefile.am:
5627         * ext/cdparanoia/Makefile.am:
5628         * ext/gnomevfs/Makefile.am:
5629         * ext/libvisual/Makefile.am:
5630         * ext/ogg/Makefile.am:
5631         * ext/theora/Makefile.am:
5632         * ext/vorbis/Makefile.am:
5633         * gst-libs/gst/video/Makefile.am:
5634         * gst/adder/Makefile.am:
5635         * gst/audioconvert/Makefile.am:
5636         * gst/audiorate/Makefile.am:
5637         * gst/audioscale/Makefile.am:
5638         * gst/ffmpegcolorspace/Makefile.am:
5639         * gst/playback/Makefile.am:
5640         * gst/sine/Makefile.am:
5641         * gst/subparse/Makefile.am:
5642         * gst/tags/Makefile.am:
5643         * gst/tcp/Makefile.am:
5644         * gst/typefind/Makefile.am:
5645         * gst/videorate/Makefile.am:
5646         * gst/videoscale/Makefile.am:
5647         * gst/videotestsrc/Makefile.am:
5648         * gst/volume/Makefile.am:
5649         * sys/v4l/Makefile.am:
5650         * sys/ximage/Makefile.am:
5651         * sys/xvimage/Makefile.am:
5652           adapt properly to this change. This should make sure that
5653           plugins and libs properly link to the as-yet-uninstalled
5654           copies of stuff like libgstinterfaces and libgstvideo
5655
5656 2005-07-13  Andy Wingo  <wingo@pobox.com>
5657
5658         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
5659         (gst_v4lsrc_fixate): Fixate on format as well.
5660
5661         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
5662         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
5663         buffer points to it.
5664         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
5665         rather just doing X calls ourselves. Also fixes a memleak.
5666
5667 2005-07-12  Andy Wingo  <wingo@pobox.com>
5668
5669         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
5670         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
5671         (gst_v4lsrc_create): Re-add the copy-mode property, default to
5672         TRUE to avoid deadlocks if an element holds on to our buffers.
5673
5674 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5675
5676         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
5677         (gst_sinesrc_init), (gst_sinesrc_create),
5678         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
5679         (gst_sinesrc_start):
5680         * gst/sine/gstsinesrc.h:
5681           removing num-buffers property before moving it
5682
5683 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5684
5685         * configure.ac:
5686           use overridable ERROR_CFLAGS
5687         * docs/libs/gst-plugins-base-libs.types:
5688         * docs/libs/tmpl/gstringbuffer.sgml:
5689         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
5690         (gst_alsasink_class_init):
5691         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
5692         (gst_alsasrc_class_init):
5693         * gst-libs/gst/audio/audio.h:
5694         * gst-libs/gst/audio/gstaudioclock.h:
5695         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
5696         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
5697         (gst_audio_filter_link), (gst_audio_filter_init),
5698         (gst_audio_filter_chain), (gst_audio_filter_set_property),
5699         (gst_audio_filter_get_property),
5700         (gst_audio_filter_class_add_pad_templates):
5701         * gst-libs/gst/audio/gstaudiofilter.h:
5702         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
5703         (gst_audio_filter_template_get_type),
5704         (gst_audio_filter_template_base_init),
5705         (gst_audio_filter_template_class_init),
5706         (gst_audio_filter_template_init),
5707         (gst_audio_filter_template_set_property),
5708         (gst_audio_filter_template_get_property), (plugin_init),
5709         (gst_audio_filter_template_setup),
5710         (gst_audio_filter_template_filter),
5711         (gst_audio_filter_template_filter_inplace):
5712         * gst-libs/gst/audio/gstaudiosink.c:
5713         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
5714         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
5715         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
5716         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
5717         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
5718         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
5719         * gst-libs/gst/audio/gstaudiosink.h:
5720         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
5721         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
5722         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
5723         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
5724         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
5725         (gst_audio_src_class_init), (gst_audio_src_init),
5726         (gst_audio_src_create_ringbuffer):
5727         * gst-libs/gst/audio/gstaudiosrc.h:
5728         * gst-libs/gst/audio/gstbaseaudiosink.c:
5729         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
5730         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
5731         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
5732         (gst_base_audio_sink_set_property),
5733         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
5734         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
5735         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
5736         (gst_base_audio_sink_create_ringbuffer),
5737         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
5738         * gst-libs/gst/audio/gstbaseaudiosink.h:
5739         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5740         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
5741         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
5742         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
5743         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
5744         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
5745         (gst_base_audio_src_event), (gst_base_audio_src_create),
5746         (gst_base_audio_src_create_ringbuffer),
5747         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
5748         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5749         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
5750         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
5751         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
5752         (gst_ring_buffer_debug_spec_caps),
5753         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
5754         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
5755         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
5756         (gst_ring_buffer_start), (gst_ring_buffer_pause),
5757         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
5758         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
5759         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
5760         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
5761         (gst_ring_buffer_clear):
5762         * gst-libs/gst/audio/gstringbuffer.h:
5763         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
5764         (gst_video_sink_class_init), (gst_video_sink_get_type):
5765         * gst-libs/gst/video/videosink.h:
5766         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
5767         (gst_multifdsink_class_init),
5768         (gst_multifdsink_handle_client_write),
5769         (gst_multifdsink_change_state):
5770         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
5771         (gst_tcpclientsink_setcaps):
5772         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
5773         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
5774         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
5775         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
5776         (gst_ximagesink_send_pending_navigation),
5777         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
5778         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
5779         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
5780         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
5781         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
5782         (gst_xvimagesink_send_pending_navigation),
5783         (gst_xvimagesink_navigation_send_event),
5784         (gst_xvimagesink_set_xwindow_id),
5785         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
5786         (gst_xvimagesink_get_type):
5787         more macro splitting
5788
5789 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
5790
5791         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
5792           plug a memleak, allows me to import 1479 albums in one go
5793           in jamboree
5794         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
5795         (vorbis_handle_type_packet), (vorbis_dec_chain),
5796         (vorbis_dec_change_state):
5797           fix some format strings
5798
5799 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
5800
5801         * docs/libs/tmpl/gstcolorbalance.sgml:
5802         * docs/libs/tmpl/gstmixer.sgml:
5803         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
5804         (gst_alsasink_set_property), (gst_alsasink_get_property):
5805         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
5806         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
5807           add device property
5808
5809 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
5810
5811         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
5812         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
5813         (audiocast_register_listener), (audiocast_thread_run),
5814         (gst_gnomevfssrc_send_additional_headers_callback),
5815         (gst_gnomevfssrc_received_headers_callback),
5816         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
5817         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
5818         (gst_gnomevfssrc_get_size):
5819           add/clean up debugging
5820         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
5821           cleanups
5822
5823 2005-07-07  Andy Wingo  <wingo@pobox.com>
5824
5825         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
5826         framerate. Need to get a handle on when exactly this function is
5827         called, tho.
5828
5829         * sys/v4l/v4lsrc_calls.h:
5830         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
5831         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
5832         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
5833
5834         * sys/v4l/v4l_calls.h: Cast to V4lElement.
5835         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
5836         v4lelements are sources.
5837
5838         * sys/v4l/gstv4lxoverlay.h:
5839         * sys/v4l/gstv4lxoverlay.c:
5840         * sys/v4l/gstv4ltuner.h:
5841         * sys/v4l/gstv4ltuner.c: Header loc fixen.
5842         
5843         * sys/v4l/gstv4lsrc.h:
5844         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
5845         PushSrc/BaseSrc. Removed most sync-related properties, videorate
5846         or something should handle that. Made a live source.
5847
5848         * sys/v4l/gstv4lelement.h:
5849         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
5850         signals. Some cleanups.
5851
5852         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
5853
5854         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
5855         stuff.
5856
5857         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
5858         stuff.
5859
5860         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
5861
5862 2005-07-07  Wim Taymans  <wim@fluendo.com>
5863
5864         * ext/theora/theoradec.c: (theora_get_query_types),
5865         (theora_dec_src_getcaps), (theora_dec_push):
5866         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
5867         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
5868         Remove deprecated/unused query types.
5869
5870 2005-07-06  Wim Taymans  <wim@fluendo.com>
5871
5872         * ext/alsa/Makefile.am:
5873         * ext/alsa/gstalsaplugin.c: (plugin_init):
5874         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
5875         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
5876         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
5877         (gst_alsasrc_class_init), (gst_alsasrc_init),
5878         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
5879         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
5880         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
5881         (gst_alsasrc_reset):
5882         * ext/alsa/gstalsasrc.h:
5883         * gst-libs/gst/audio/Makefile.am:
5884         * gst-libs/gst/audio/gstaudiosink.c:
5885         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
5886         (gst_audioringbuffer_start):
5887         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
5888         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
5889         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
5890         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
5891         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
5892         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
5893         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
5894         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
5895         * gst-libs/gst/audio/gstaudiosrc.h:
5896         * gst-libs/gst/audio/gstbaseaudiosink.c:
5897         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
5898         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
5899         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
5900         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5901         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
5902         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
5903         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
5904         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
5905         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
5906         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
5907         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
5908         (gst_baseaudiosrc_change_state):
5909         * gst-libs/gst/audio/gstbaseaudiosrc.h:
5910         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
5911         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
5912         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
5913         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
5914         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
5915         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
5916         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
5917         * gst-libs/gst/audio/gstringbuffer.h:
5918         Added audiosource base classes.
5919         Ported alsasrc, still very basic.
5920
5921 2005-07-06  Wim Taymans  <wim@fluendo.com>
5922
5923         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
5924         (theora_dec_push), (theora_handle_data_packet):
5925         Prepare for better timestamp fix later.
5926
5927         * gst/audioconvert/gstaudioconvert.c:
5928         List most accurate caps first
5929
5930         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
5931         Use proper pad task function.
5932
5933         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5934         (gst_xvimagesink_show_frame):
5935         Fix deadlock when alloc failed.
5936
5937 2005-07-05  Andy Wingo  <wingo@pobox.com>
5938
5939         * ext/gnomevfs/gstgnomevfssrc.c:
5940         * gst/sine/gstsinesrc.c:
5941         * gst/tcp/gsttcpserversrc.c:
5942         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
5943
5944         * sys/v4l/: Port from 0.8.
5945
5946         * Many files: Null if we got it....
5947
5948 2005-07-05  Andy Wingo  <wingo@pobox.com>
5949
5950         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
5951         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
5952         Signedness fixes.
5953
5954 2005-07-05  Wim Taymans  <wim@fluendo.com>
5955
5956         * configure.ac:
5957         * gst/tcp/Makefile.am:
5958         * gst/tcp/README:
5959         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
5960         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
5961         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
5962         (is_sync_frame), (gst_multifdsink_handle_client_write),
5963         (gst_multifdsink_render), (gst_multifdsink_start),
5964         (gst_multifdsink_stop), (gst_multifdsink_change_state):
5965         * gst/tcp/gstmultifdsink.h:
5966         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
5967         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
5968         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
5969         * gst/tcp/gsttcp.h:
5970         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
5971         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
5972         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
5973         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
5974         * gst/tcp/gsttcpclientsink.h:
5975         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
5976         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
5977         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
5978         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
5979         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
5980         * gst/tcp/gsttcpclientsrc.h:
5981         * gst/tcp/gsttcpplugin.c: (plugin_init):
5982         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
5983         * gst/tcp/gsttcpserversink.h:
5984         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
5985         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
5986         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
5987         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
5988         (gst_tcpserversrc_stop):
5989         * gst/tcp/gsttcpserversrc.h:
5990         * gst/tcp/gsttcpsink.c:
5991         * gst/tcp/gsttcpsink.h:
5992         * gst/tcp/gsttcpsrc.c:
5993         * gst/tcp/gsttcpsrc.h:
5994         Ported tcp plugins to 0.9. 
5995         
5996
5997 2005-07-05  Andy Wingo  <wingo@pobox.com>
5998
5999         * gst/playback/gstplaybasebin.c (fill_buffer):
6000         message_new_application fixen.
6001
6002         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
6003         Style fix.
6004
6005 2005-07-04  Wim Taymans  <wim@fluendo.com>
6006
6007         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
6008         Set caps on output buffer.
6009
6010 2005-07-04  Andy Wingo  <wingo@pobox.com>
6011
6012         * ext/gnomevfs/gstgnomevfssrc.c
6013         (gst_gnomevfssrc_received_headers_callback) 
6014         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
6015         hopefully.
6016
6017         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
6018         No refcount leakage.
6019
6020         * configure.ac: Enable -Werror.
6021         
6022         * ext/theora/theoradec.c (theora_dec_src_getcaps):
6023         * gst/audioconvert/bufferframesconvert.c
6024         (buffer_frames_convert_fixate):
6025         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
6026         (gst_audio_convert_fixate):
6027         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
6028         (gst_sinesrc_create): Fixate func changes.
6029         
6030         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
6031         (gst_ximagesink_buffer_alloc): Unused var.
6032
6033 2005-07-01  Andy Wingo  <wingo@pobox.com>
6034
6035         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
6036         getcaps to do explicit caps. Needs to be done in all decoders,
6037         possibly via a base class.
6038
6039         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
6040
6041         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
6042         caps on the sink pad, just rely on the pad template. Also, setting
6043         ANY caps on a pad is not valid because the caps are not fixed.
6044
6045         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
6046         caps on the buffer, and get the width from the desired_caps if
6047         they're set.
6048         (gst_ximagesink_renegotiate_size): Implement via setting the
6049         desired_caps on the ximagesink.
6050         (gst_ximagesink_setcaps): Only reset the width of the player if it
6051         wasn't already set. Not sure if this is right.
6052         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
6053
6054         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
6055         that the user wants. NULL unless the window has been resized.
6056
6057         * gst/volume/gstvolume.c (volume_transform): Adapt to
6058         basetransform refcount changes.
6059         
6060 2005-07-01  Andy Wingo  <wingo@pobox.com>
6061
6062         * gst/videoscale/gstvideoscale.c:
6063         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
6064         from BaseTransform, implements a transform_caps. Removed dead code
6065         including some PAR stuff that was never reached -- should probably
6066         be added back somehow.
6067
6068 2005-07-01  Andy Wingo  <wingo@pobox.com>
6069
6070         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
6071         come later.
6072
6073 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
6074
6075         * configure.ac:
6076         * docs/libs/Makefile.am:
6077         * docs/libs/gst-plugins-libs.types:
6078         * ext/alsa/Makefile.am:
6079         * ext/alsa/gstalsamixer.h:
6080         * ext/alsa/gstalsamixeroptions.h:
6081         * ext/alsa/gstalsamixertrack.h:
6082         * gst-libs/gst/Makefile.am:
6083         * gst-libs/gst/colorbalance/.cvsignore:
6084         * gst-libs/gst/colorbalance/Makefile.am:
6085         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
6086         * gst-libs/gst/colorbalance/colorbalance.c:
6087         * gst-libs/gst/colorbalance/colorbalance.h:
6088         * gst-libs/gst/colorbalance/colorbalance.vcproj:
6089         * gst-libs/gst/colorbalance/colorbalancechannel.c:
6090         * gst-libs/gst/colorbalance/colorbalancechannel.h:
6091         * gst-libs/gst/interfaces/Makefile.am:
6092         * gst-libs/gst/interfaces/colorbalance.c:
6093         (gst_color_balance_class_init):
6094         * gst-libs/gst/interfaces/colorbalance.h:
6095         * gst-libs/gst/interfaces/interfaces-marshal.list:
6096         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
6097         * gst-libs/gst/interfaces/mixer.h:
6098         * gst-libs/gst/interfaces/mixeroptions.h:
6099         * gst-libs/gst/interfaces/navigation.c:
6100         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
6101         * gst-libs/gst/interfaces/tuner.h:
6102         * gst/volume/Makefile.am:
6103         * gst/volume/gstvolume.c:
6104         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
6105         * sys/ximage/Makefile.am:
6106         * sys/ximage/ximagesink.c:
6107         * sys/xvimage/Makefile.am:
6108         * sys/xvimage/xvimagesink.c:
6109           fold in all interfaces into an interfaces dir, preserving CVS
6110           history
6111
6112 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6113
6114         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
6115           Fix build after riff changes.
6116
6117 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6118
6119         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6120         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
6121         (gst_riff_create_video_template_caps),
6122         (gst_riff_create_audio_template_caps),
6123         (gst_riff_create_iavs_template_caps):
6124         * gst-libs/gst/riff/riff-media.h:
6125         * gst-libs/gst/riff/riff-read.h:
6126         * gst-libs/gst/riff/riff.c: (gst_riff_init):
6127           Add gst_riff_init() to initialize the debug category, instead
6128           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
6129
6130 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6131
6132         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
6133           Oops, I shouldn't apply hacks.
6134
6135 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6136
6137         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
6138           Remove pad_loop function which doesn't work.
6139
6140 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6141
6142         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
6143           Send EOS when deactivating.
6144         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
6145         (check_queue), (queue_threshold_reached), (queue_out_of_data),
6146         (gen_preroll_element), (probe_triggered), (mute_stream),
6147         (silence_stream), (new_decoded_pad), (setup_substreams),
6148         (set_active_source):
6149         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
6150         (remove_sinks), (add_sink):
6151         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
6152           Change for new probe API.
6153
6154 2005-06-29  Wim Taymans  <wim@fluendo.com>
6155
6156         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
6157         * gst-libs/gst/audio/gstbaseaudiosink.c:
6158         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
6159         (gst_baseaudiosink_change_state):
6160         * gst-libs/gst/audio/gstbaseaudiosink.h:
6161         * gst-libs/gst/audio/gstringbuffer.c:
6162         (gst_ringbuffer_set_callback):
6163         Fix compilation error.
6164         Ringbuffer starts out as not running.
6165         Free our clock in dispose.
6166         When releasing the ringbuffer we need to renegotiate so
6167         clear the pad caps.
6168
6169 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6170
6171         * autogen.sh:
6172         * configure.ac:
6173         * docs/Makefile.am:
6174         * docs/libs/Makefile.am:
6175         * docs/libs/gst-plugins-libs-docs.sgml:
6176         * docs/libs/gst-plugins-libs-sections.txt:
6177         * docs/libs/gst-plugins-libs.types:
6178         * docs/libs/tmpl/gstaudio.sgml:
6179         * docs/libs/tmpl/gstcolorbalance.sgml:
6180         * docs/libs/tmpl/gstringbuffer.sgml:
6181         * gst-libs/gst/audio/gstringbuffer.c:
6182         (gst_ringbuffer_set_callback):
6183           reinstate gtk-doc docs for plugin libs
6184
6185 2005-06-28  Wim Taymans  <wim@fluendo.com>
6186
6187         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6188         (gst_ogg_demux_init):
6189         Removed pad loop function.
6190
6191 2005-06-28  Wim Taymans  <wim@fluendo.com>
6192
6193         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
6194         If we're building a chain we are not in an error case
6195         when we queue a buffer.
6196
6197 2005-06-28  Andy Wingo  <wingo@pobox.com>
6198
6199         * *.c: Don't cast to GstObject before reffing/unreffing.
6200
6201 2005-06-27  Andy Wingo  <wingo@pobox.com>
6202
6203         * gst/videotestsrc/gstvideotestsrc.c
6204         (gst_videotestsrc_activate_push): Activation API changes.
6205
6206         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
6207         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
6208         they have refs on the decodebin.
6209
6210         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
6211         parent class.
6212         (gst_ogg_pad_typefind): Don't leak a pad ref.
6213         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
6214         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
6215         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
6216
6217 2005-06-27  Edward Hervey  <edward@fluendo.com>
6218
6219         * ext/theora/theoradec.c: (theora_dec_change_state): 
6220         re-arranged call to parent's state change in order to avoid locks (or
6221         worse).
6222
6223 2005-06-26  Edward Hervey  <edward@fluendo.com>
6224
6225         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6226         2nd argument of 'unknow-type' signal is a GstCaps and not a
6227         GstMiniObject
6228
6229 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
6230         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
6231           Set the worker thread's running flag to TRUE before starting the
6232           thread.
6233         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
6234           Catch a failure to add typefind to the bin.
6235
6236 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6237
6238         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
6239         (gst_sinesrc_init), (gst_sinesrc_create),
6240         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
6241         (gst_sinesrc_start):
6242         * gst/sine/gstsinesrc.h:
6243           add num-buffers and timestamp-offset properties
6244         * gst/videotestsrc/gstvideotestsrc.c:
6245         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
6246         (gst_videotestsrc_get_property):
6247           add timestamp-offset property
6248
6249 2005-06-23  Christian Schaller  <uraeus@gnome.org>
6250
6251         * configure.ac: add videorate
6252         * gst-plugins-base.spec.in: add videorate
6253
6254 2005-06-23  Wim Taymans  <wim@fluendo.com>
6255
6256         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
6257         (gst_videorate_getcaps), (gst_videorate_setcaps),
6258         (gst_videorate_event), (gst_videorate_chain):
6259         Fixed videorate, fixating an already fixated caps is not
6260         an error.
6261
6262 2005-06-23  Wim Taymans  <wim@fluendo.com>
6263
6264         * ext/ogg/README:
6265         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
6266         Buffer on caps is not boxed anymore.
6267
6268 2005-06-22  Wim Taymans  <wim@fluendo.com>
6269
6270         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
6271         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
6272         Set buffers on caps as miniobjects and not as boxed.
6273
6274 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6275
6276         * configure.ac:
6277           back to HEAD
6278
6279 === release 0.9.1 ===
6280
6281 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6282
6283         * .cvsignore:
6284         * NEWS:
6285         * README:
6286         * RELEASE:
6287         * configure.ac:
6288         * po/af.po:
6289         * po/az.po:
6290         * po/cs.po:
6291         * po/en_GB.po:
6292         * po/hu.po:
6293         * po/it.po:
6294         * po/nb.po:
6295         * po/nl.po:
6296         * po/or.po:
6297         * po/sq.po:
6298         * po/sr.po:
6299         * po/sv.po:
6300         * po/uk.po:
6301         * po/vi.po:
6302           updates for release
6303
6304 2005-06-09  Andy Wingo  <wingo@pobox.com>
6305
6306         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
6307         
6308 2005-06-09  Andy Wingo  <wingo@pobox.com>
6309
6310         * configure.ac:
6311         * gst-libs/gst/Makefile.am:
6312         * gst-libs/gst/net/Makefile.am:
6313         Add gstnet to build.
6314
6315 2005-06-09  Andy Wingo  <wingo@pobox.com>
6316
6317         * gst-libs/gst/gconf/gconf.c:
6318         * gst/playback/test.c:
6319         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
6320         fixes.
6321
6322         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
6323
6324         * ext/theora/theoraenc.c (theora_enc_chain): 
6325         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
6326
6327         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
6328         RealPad.
6329
6330 2005-06-02  Wim Taymans  <wim@fluendo.com>
6331
6332         * gst-libs/gst/net/Makefile.am:
6333         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
6334         * pkgconfig/gstreamer-libs.pc.in:
6335         Added net stuff, version net lib.
6336
6337 2005-06-02  Wim Taymans  <wim@fluendo.com>
6338
6339         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
6340         (query_rates), (query_positions_elems), (query_positions_pads),
6341         (do_seek):
6342         Updated seek example.
6343
6344 2005-06-02  Andy Wingo  <wingo@pobox.com>
6345
6346         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
6347         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
6348         list.
6349
6350         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
6351         remove the typefind, the bin dispose will do it for us. When it's
6352         removed and unreffed, the signal handler will be disconnected,
6353         too.
6354         (unlinked): It's too difficult to disconnect from unlinked
6355         handlers, as they are on pads not elements. Just punt if the pads
6356         aren't grandkids of the bin.
6357
6358 2005-06-02  Wim Taymans  <wim@fluendo.com>
6359
6360         * ext/ogg/README:
6361         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6362         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
6363         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
6364         * ext/theora/theoradec.c: (theora_dec_src_query),
6365         (theora_handle_data_packet):
6366         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
6367         (theora_enc_chain):
6368         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6369         (vorbis_handle_data_packet):
6370         * gst/audioconvert/bufferframesconvert.c:
6371         (buffer_frames_convert_chain):
6372         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6373         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6374         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
6375         (gst_ffmpegcsp_chain):
6376         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
6377         (gst_videorate_getcaps), (gst_videorate_setcaps),
6378         (gst_videorate_event), (gst_videorate_chain):
6379         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
6380         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
6381         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
6382         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
6383         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6384         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
6385         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
6386         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
6387         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
6388         Cleanups and buffer alloc.
6389
6390 2005-05-31  Wim Taymans  <wim@fluendo.com>
6391
6392         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
6393         Don't try to call the delay method when the device is not
6394         opened.
6395
6396 2005-05-31  Wim Taymans  <wim@fluendo.com>
6397
6398         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
6399         Get actual segment size and buffer size after opening
6400         the device.
6401
6402 2005-05-30  Wim Taymans  <wim@fluendo.com>
6403
6404         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
6405         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
6406         Also FLUSH upstream, makes the loop function exit faster.
6407         
6408         * ext/theora/theoradec.c: (theora_dec_src_query):
6409         Some more debug info in the query.
6410         
6411         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
6412         (gst_ximagesink_setcaps):
6413         Release lock on par error, better error reporting.
6414
6415 2005-05-26  Wim Taymans  <wim@fluendo.com>
6416
6417         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6418         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
6419         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
6420         Clear chains in READY
6421         Queue packets until the chain is activated.
6422
6423 2005-05-25  Wim Taymans  <wim@fluendo.com>
6424
6425         * gst-libs/gst/audio/gstaudiosink.c:
6426         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
6427         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
6428         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
6429         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
6430         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
6431         (gst_audiosink_create_ringbuffer):
6432         * gst-libs/gst/audio/gstbaseaudiosink.c:
6433         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
6434         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
6435         (gst_baseaudiosink_set_property), (build_linear_format),
6436         (debug_spec_caps), (debug_spec_buffer),
6437         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
6438         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
6439         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
6440         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
6441         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
6442         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
6443         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
6444         (gst_ringbuffer_play), (gst_ringbuffer_pause),
6445         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
6446         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
6447         (wait_segment), (gst_ringbuffer_commit),
6448         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
6449         (gst_ringbuffer_clear):
6450         Various small cleanups.
6451
6452         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
6453         (gst_audio_convert_change_state):
6454         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
6455         No need to take the locks anymore.
6456
6457 2005-05-25  Wim Taymans  <wim@fluendo.com>
6458
6459         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
6460         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
6461         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
6462         (type_found):
6463         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
6464         (group_destroy), (group_commit), (queue_overrun),
6465         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
6466         (mute_stream), (new_decoded_pad), (setup_substreams),
6467         (setup_source), (mute_group_type), (set_active_source),
6468         (gst_play_base_bin_change_state):
6469         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
6470         (gen_video_element), (gen_text_element), (gen_audio_element),
6471         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
6472         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
6473         (gst_stream_info_dispose), (gst_stream_info_set_mute):
6474         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
6475         Some playbin cleanups mostly refcounting sloppyness.
6476
6477 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6478
6479         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
6480           Work with streaming input.
6481
6482 2005-05-25  Wim Taymans  <wim@fluendo.com>
6483
6484         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6485         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6486         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
6487         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
6488         No need to take the STREAM lock anymore.
6489
6490 2005-05-25  Wim Taymans  <wim@fluendo.com>
6491
6492         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
6493         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
6494         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
6495         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
6496         (gst_ogg_demux_sink_activate):
6497         * ext/theora/theoradec.c: (theora_dec_src_event),
6498         (theora_handle_comment_packet), (theora_dec_chain),
6499         (theora_dec_change_state):
6500         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6501         (vorbis_handle_data_packet), (vorbis_dec_chain),
6502         (vorbis_dec_change_state):
6503         Remove STREAM locks as they are taken in core now.
6504         Never set bogus granulepos on vorbis/theora.
6505         Fix leaks in theoradec tag parsing.
6506
6507 2005-05-25  Wim Taymans  <wim@fluendo.com>
6508
6509         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
6510         Fix memleaks, GST_BUFFER_DATA() is not freed.
6511
6512 2005-05-25  Wim Taymans  <wim@fluendo.com>
6513
6514         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
6515         Open non-blocking, set to blocking mode afterwards to avoid
6516         lockups when audio device is busy.
6517
6518 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6519
6520         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
6521           This can't be good.
6522
6523 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6524
6525         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
6526         (gst_audio_convert_chain), (gst_audio_convert_link_src),
6527         (gst_audio_convert_setcaps):
6528           Implement instant setup switching.
6529
6530 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6531
6532         * gst/playback/gstplaybasebin.c: (probe_triggered):
6533           Fix missing unlock.
6534         * gst/playback/gstplaybin.c: (add_sink):
6535           First add, then link (otherwise pad link fails).
6536
6537 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6538
6539         * examples/Makefile.am:
6540         fix buildbot (make distcheck)
6541
6542 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6543
6544         * gst/playback/gstplaybin.c: (gen_vis_element):
6545           Remove some wrong code. Doesn't work yet.
6546
6547 2005-05-19  Wim Taymans  <wim@fluendo.com>
6548
6549         * gst-libs/gst/net/Makefile.am:
6550         * gst-libs/gst/net/README:
6551         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
6552         (gst_netbuffer_class_init), (gst_netbuffer_init),
6553         (gst_netbuffer_finalize), (gst_netbuffer_copy),
6554         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
6555         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
6556         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
6557         * gst-libs/gst/net/gstnetbuffer.h:
6558         Added buffer subclass to store extra to/from addresses for
6559         network sources/sinks.
6560
6561 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6562
6563         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
6564           Don't lock an unassigned variable.
6565
6566 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6567
6568         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
6569           Increase buffer for video, decrease buffer for other media types.
6570         * gst/playback/gstplaybin.c: (gen_video_element),
6571         (gen_audio_element):
6572           Change names for debugging purposes.
6573
6574 2005-05-18  Wim Taymans  <wim@fluendo.com>
6575
6576         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6577         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6578         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
6579         (gst_ffmpegcsp_chain):
6580         Enable buffer alloc passthrough if the source and dest
6581         formats are the same.
6582
6583 2005-05-17  Wim Taymans  <wim@fluendo.com>
6584
6585         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
6586         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
6587         (gst_ogg_demux_chain_unlocked):
6588         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
6589         (gst_audio_convert_caps_remove_format_info),
6590         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
6591         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
6592         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6593         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6594         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
6595         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
6596         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
6597         (gst_ffmpegcsp_get_property):
6598         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
6599         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
6600         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
6601         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
6602         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
6603         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
6604         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
6605         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
6606         Leak fixes in oggdemux.
6607         Some cleanups in audioconvert.
6608         Make passthrough work along with buffer_alloc etc.
6609         Make buffer_alloc and buffer recycling actually work in
6610         xvimagesink.
6611
6612 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
6613
6614         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
6615           make the compiler happy
6616
6617 2005-05-17  Wim Taymans  <wim@fluendo.com>
6618
6619         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
6620         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
6621         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
6622         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
6623         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
6624         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
6625         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
6626         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
6627         (gst_xvimagesink_set_xwindow_id):
6628         * sys/xvimage/xvimagesink.h:
6629         Port xvimagesink to new MiniObject.
6630
6631 2005-05-17  Wim Taymans  <wim@fluendo.com>
6632
6633         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
6634         (gst_audiofilter_chain):
6635         * gst-libs/gst/audio/gstaudiosink.c:
6636         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
6637         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
6638         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
6639         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
6640         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
6641         (gst_audiosink_create_ringbuffer):
6642         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
6643         (gst_audio_convert_caps_remove_format_info),
6644         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
6645         (gst_audio_convert_fixate), (gst_audio_convert_channels):
6646         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6647         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6648         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
6649         Fix passthrough in ffmpegcolorspace.
6650         Fix memset in audiosink on wrong memory.
6651
6652 2005-05-16  David Schleef  <ds@schleef.org>
6653
6654         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
6655         to GstMiniObject.
6656
6657 2005-05-16  David Schleef  <ds@schleef.org>
6658
6659         Port from GstData to GstMiniObject.
6660         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
6661         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
6662         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
6663         (gst_ogg_mux_collected):
6664         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
6665         * ext/theora/theoradec.c: (theora_handle_comment_packet),
6666         (theora_handle_data_packet):
6667         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
6668         (theora_set_header_on_caps), (theora_enc_chain):
6669         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6670         (vorbis_handle_comment_packet):
6671         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
6672         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
6673         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
6674         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
6675         * gst/audioconvert/gstaudioconvert.c:
6676         (gst_audio_convert_get_buffer):
6677         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
6678         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
6679         (mute_stream), (silence_stream):
6680         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
6681         * gst/volume/gstvolume.c: (volume_transform):
6682         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
6683         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
6684         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
6685         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
6686         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
6687         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
6688         (gst_ximagesink_buffer_alloc):
6689         * sys/ximage/ximagesink.h:
6690
6691 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6692
6693         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
6694         (fill_buffer), (check_queue), (queue_threshold_reached),
6695         (queue_out_of_data):
6696         * gst/playback/gstplaybasebin.h:
6697           Post buffer-fullness on the bus.
6698
6699 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6700
6701         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
6702         (try_to_link_1):
6703         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
6704         (group_commit), (probe_triggered), (setup_source),
6705         (gst_play_base_bin_change_state):
6706         * gst/playback/gstplaybasebin.h:
6707         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
6708         (gst_play_bin_init), (remove_sinks), (setup_sinks),
6709         (gst_play_bin_change_state):
6710           Move setup_output_pads into a virtual function, remove
6711           group-switch (no longer needed) and redirect (handled by bus
6712           now) signals.
6713
6714 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6715
6716         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
6717         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
6718         (get_active_group), (get_building_group), (group_destroy),
6719         (group_commit), (check_queue), (queue_overrun),
6720         (queue_threshold_reached), (queue_out_of_data),
6721         (gen_preroll_element), (remove_groups), (unknown_type),
6722         (add_element_stream), (no_more_pads), (probe_triggered),
6723         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
6724         (setup_substreams), (setup_source), (finish_source),
6725         (prepare_output), (muted_group_change_state),
6726         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
6727         (gst_play_base_bin_change_state):
6728         * gst/playback/gstplaybasebin.h:
6729         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
6730         (gst_play_bin_init), (gst_play_bin_set_property),
6731         (gen_video_element), (gen_text_element), (gen_audio_element),
6732         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
6733         (gst_play_bin_change_state):
6734         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
6735         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
6736         (stream_info_change_state), (gst_stream_info_set_mute),
6737         (gst_stream_info_get_property):
6738         * gst/playback/gststreaminfo.h:
6739         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
6740         (gst_stream_selector_get_linked_pad),
6741         (gst_stream_selector_getcaps),
6742         (gst_stream_selector_get_linked_pads),
6743         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
6744         * gst/playback/gststreamselector.h:
6745           Rough port of playbin. Needs some more work, but is mostly done,
6746           and uses a few locks in important places, which should make stuff
6747           like chain-switches clean. Still uses GST_STATE() in a few places,
6748           which isn't all that good an idea, subtitles/elements disabled
6749           because no elements to test with and thus probably broken, query
6750           and event handling moved to GstBin, internal thread removed
6751           alltogether because the pipeline does that for us now. Can play
6752           Ogg/Vorbis files. Haven't tested anything else yet.
6753
6754 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
6755
6756         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
6757           Do no-more-pads (needed for autoplugging).
6758
6759 2005-05-10  Andy Wingo  <wingo@pobox.com>
6760
6761         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
6762         message to the bus with the tags. Still not sent downstream tho.
6763
6764         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
6765         get_parent.
6766         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
6767         avoid refcounting hassles.
6768
6769 2005-05-09  Andy Wingo  <wingo@pobox.com>
6770
6771         * gst/volume/Makefile.am:
6772         * gst/volume/demo.c
6773         * gst/volume/gstvolume.h
6774         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
6775         basetransform. Probably need an audio filter base class.
6776
6777 2005-05-09  Wim Taymans  <wim@fluendo.com>
6778
6779         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
6780         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
6781         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
6782         (gst_vorbisenc_chain):
6783         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
6784         (gst_audio_convert_caps_remove_format_info),
6785         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
6786         (gst_audio_convert_fixate), (gst_audio_convert_channels):
6787         Make caps writable before writing to it.
6788         Fix negotiation in audioconvert some more.
6789
6790 2005-05-09  Wim Taymans  <wim@fluendo.com>
6791
6792         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
6793         (gst_videorate_getcaps), (gst_videorate_setcaps),
6794         (gst_videorate_event), (gst_videorate_chain):
6795         Better negotiation.
6796
6797 2005-05-09  Wim Taymans  <wim@fluendo.com>
6798
6799         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
6800         (gst_videorate_getcaps), (gst_videorate_setcaps),
6801         (gst_videorate_blank_data), (gst_videorate_init),
6802         (gst_videorate_event), (gst_videorate_chain),
6803         (gst_videorate_change_state):
6804         Port videorate, do a better job at negotiation while we're at
6805         it.
6806
6807 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
6808
6809         * configure.ac:
6810           Disable libvisual
6811
6812         * examples/Makefile.am:
6813         * gst-libs/gst/audio/Makefile.am:
6814         * gst-libs/gst/riff/Makefile.am:
6815         * gst-libs/gst/tag/Makefile.am:
6816         * gst-libs/gst/video/Makefile.am:
6817           Fixups for missing variables.
6818
6819 2005-05-09  Wim Taymans  <wim@fluendo.com>
6820
6821         * examples/seeking/seek.c: (make_theora_pipeline),
6822         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
6823         (query_rates), (query_positions_elems), (query_positions_pads),
6824         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
6825         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
6826         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
6827         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
6828         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
6829         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
6830         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
6831         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
6832         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
6833         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
6834         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
6835         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
6836         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
6837         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
6838         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
6839         (theora_dec_src_convert), (theora_dec_sink_convert),
6840         (theora_dec_src_query), (theora_dec_sink_query),
6841         (theora_dec_src_event), (theora_dec_sink_event),
6842         (theora_handle_comment_packet), (theora_handle_type_packet),
6843         (theora_handle_header_packet), (theora_handle_data_packet),
6844         (theora_dec_chain):
6845         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
6846         (vorbis_dec_convert), (vorbis_dec_src_query),
6847         (vorbis_dec_sink_query), (vorbis_dec_src_event),
6848         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
6849         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
6850         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
6851         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
6852         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
6853         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
6854         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
6855         (gst_play_bin_query):
6856         * gst/playback/test3.c: (update_scale):
6857         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
6858         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
6859         * gst/subparse/gstsubparse.c: (gst_subparse_init):
6860         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
6861         (gst_videotestsrc_src_query):
6862         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
6863         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
6864         (paint_hline_YUV9):
6865         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
6866         Port to new query API.
6867         Updated seek.
6868         Cleanups in x[v]imagesink
6869
6870 2005-05-09  Andy Wingo  <wingo@pobox.com>
6871
6872         * ext/alsa/gstalsasink.h:
6873         * ext/gnomevfs/gstgnomevfssrc.c:
6874         (gst_gnomevfssrc_get_icy_metadata):
6875         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
6876         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
6877         * ext/theora/theoradec.c (theora_dec_src_query)
6878         (theora_dec_src_event, theora_dec_sink_event)
6879         (theora_handle_comment_packet, theora_handle_data_packet):
6880         * ext/theora/theoraenc.c (theora_enc_chain):
6881         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
6882         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
6883         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
6884         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
6885         (qt_type_find):
6886         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
6887         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
6888         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
6889         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
6890         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
6891         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
6892         (paint_setup_xBGR8888, paint_setup_RGBx8888)
6893         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
6894         (paint_setup_RGB565, paint_setup_xRGB1555):
6895         * gst/videotestsrc/videotestsrc.h:
6896         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
6897         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
6898         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
6899         GCC4 fixes.
6900         
6901         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
6902         gst_pad_query_position. Fixes oggdemux.
6903
6904 2005-05-08  David Schleef  <ds@schleef.org>
6905
6906         * configure.ac: Require liboil.
6907         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
6908         a few more.
6909         * gst/videotestsrc/videotestsrc.c:
6910         * gst/videotestsrc/videotestsrc.h:
6911
6912 2005-05-06  Wim Taymans  <wim@fluendo.com>
6913
6914         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6915         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6916         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
6917         Well, unreffing a buffer right before pushing it is asking
6918         for trouble..
6919
6920 2005-05-06  Christian Schaller  <uraeus@gnome.org>
6921
6922         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
6923
6924 2005-05-06  Wim Taymans  <wim@fluendo.com>
6925
6926         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
6927         (gst_audio_convert_caps_remove_format_info),
6928         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
6929         (gst_audio_convert_fixate), (gst_audio_convert_channels):
6930         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6931         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
6932         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
6933         * gst/sine/Makefile.am:
6934         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
6935         (gst_sinesrc_class_init), (gst_sinesrc_init),
6936         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
6937         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
6938         (gst_sinesrc_update_freq):
6939         * gst/sine/gstsinesrc.h:
6940         * gst/tcp/gstmultifdsink.c:
6941         * sys/xvimage/xvimagesink.c:
6942         Fixed negotiation wrt _peer_get_caps()
6943         Some cleanups.
6944
6945
6946 2005-05-06  Wim Taymans  <wim@fluendo.com>
6947
6948         * gst-libs/gst/audio/gstaudiosink.c:
6949         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
6950         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
6951         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
6952         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
6953         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
6954         (gst_audiosink_create_ringbuffer):
6955         * gst-libs/gst/audio/gstbaseaudiosink.c:
6956         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
6957         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
6958         (gst_baseaudiosink_set_property), (build_linear_format),
6959         (debug_spec_caps), (debug_spec_buffer),
6960         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
6961         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
6962         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
6963         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
6964         * gst-libs/gst/audio/gstbaseaudiosink.h:
6965         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
6966         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
6967         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
6968         (gst_ringbuffer_play), (gst_ringbuffer_pause),
6969         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
6970         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
6971         (wait_segment), (gst_ringbuffer_commit),
6972         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
6973         (gst_ringbuffer_clear):
6974         * gst-libs/gst/audio/gstringbuffer.h:
6975         Make the base audiosink return an error when there is no
6976         audiobuffer negotiated.
6977
6978 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
6979
6980         * ext/Makefile.am:
6981         Disable cdparanoia until someone ports it!
6982
6983 2005-05-06  Wim Taymans  <wim@fluendo.com>
6984
6985         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
6986         (gst_ogg_demux_sink_activate):
6987         And revert after wingo's revert.. sigh..
6988
6989 2005-05-05  Andy Wingo  <wingo@pobox.com>
6990
6991         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
6992         GObject.
6993         * configure.ac: Return audiorate and subparse from the ghetto.
6994         Re-enable -Wall -Werror.
6995         * gst/subparse/gstsubparse.c:
6996         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
6997         or chain-based. Cleaned up a bit. Not tested.
6998         
6999 2005-05-05  Christian Schaller <christian@fluendo.com> 
7000
7001         * Makefile.am: remove stuff that is not building
7002         * configure.ac: remove stuff that is not building
7003         * examples/Makefile.am: remove stuff that is not building
7004         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
7005         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
7006         * sys/Makefile.am: remove stuff that is not building
7007         * testsuite/Makefile.am: remove stuff that is not building
7008
7009 2005-05-05  Andy Wingo  <wingo@pobox.com>
7010
7011         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
7012         * gst-libs/gst/tag/gstvorbistag.c:
7013         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
7014         * gst/adder/gstadder.h:
7015         * gst/audioconvert/gstchannelmix.c:
7016         (gst_audio_convert_fill_one_other):
7017         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
7018         (gst_audiorate_init), (gst_audiorate_chain):
7019         * gst/playback/gstplaybasebin.c: (setup_source):
7020         * gst/playback/test3.c: (update_scale):
7021         Some GCC4 fixes
7022         
7023         * po/af.po:
7024         * po/az.po:
7025         * po/cs.po:
7026         * po/en_GB.po:
7027         * po/hu.po:
7028         * po/it.po:
7029         * po/nb.po:
7030         * po/nl.po:
7031         * po/or.po:
7032         * po/sq.po:
7033         * po/sr.po:
7034         * po/sv.po:
7035         * po/uk.po:
7036         * po/vi.po: Foo
7037
7038 2005-05-05  Wim Taymans  <wim@fluendo.com>
7039
7040         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7041         (gst_audio_convert_caps_remove_format_info),
7042         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
7043         (gst_audio_convert_change_state), (gst_audio_convert_channels):
7044         * gst/videotestsrc/gstvideotestsrc.c:
7045         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
7046         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
7047         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
7048         (gst_videotestsrc_init), (gst_videotestsrc_loop):
7049         Don't ignore _push() return values.
7050         Make sure no processing is done when shutting down.
7051         Videotestsrc pad activation fix.
7052
7053 2005-05-05  Wim Taymans  <wim@fluendo.com>
7054
7055         * gst/adder/Makefile.am:
7056         * gst/adder/gstadder.c: (gst_adder_setcaps),
7057         (gst_adder_class_init), (gst_adder_init),
7058         (gst_adder_request_new_pad), (gst_adder_collected),
7059         (gst_adder_change_state):
7060         * gst/adder/gstadder.h:
7061         Ported adder as an example of a mixer element using
7062         collect pads. Needs more negotiation work.
7063
7064 2005-05-05  Wim Taymans  <wim@fluendo.com>
7065
7066         * ext/theora/theoradec.c: (_inc_granulepos),
7067         (theora_dec_src_event), (theora_dec_sink_event),
7068         (theora_handle_comment_packet), (theora_handle_type_packet),
7069         (theora_handle_header_packet), (theora_handle_data_packet),
7070         (theora_dec_chain):
7071         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
7072         (gst_theora_enc_init), (theora_enc_sink_setcaps),
7073         (theora_push_buffer), (theora_push_packet),
7074         (theora_enc_sink_event), (theora_enc_chain),
7075         (theora_enc_change_state), (theora_enc_set_property),
7076         (theora_enc_get_property):
7077         Added stream lock to decoder so that we can serialize
7078         the discont event.
7079         More theoraenc porting, recover from errors, do clean
7080         shutdown.
7081
7082 2005-05-05  Wim Taymans  <wim@fluendo.com>
7083
7084         * ext/ogg/Makefile.am:
7085         * ext/ogg/README:
7086         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
7087         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
7088         (gst_ogg_print):
7089         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
7090         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
7091         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
7092         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
7093         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
7094         (gst_ogg_mux_change_state):
7095         Ported ogg muxer.
7096
7097 2005-05-05  Wim Taymans  <wim@fluendo.com>
7098
7099         * docs/design-audiosinks.txt:
7100         * gst-libs/gst/audio/TODO:
7101         * gst-libs/gst/audio/gstaudiosink.c:
7102         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7103         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7104         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7105         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7106         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
7107         (gst_audiosink_create_ringbuffer):
7108         * gst-libs/gst/audio/gstbaseaudiosink.c:
7109         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
7110         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
7111         (gst_baseaudiosink_set_property), (build_linear_format),
7112         (debug_spec_caps), (debug_spec_buffer),
7113         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
7114         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
7115         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
7116         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
7117         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
7118         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
7119         (gst_ringbuffer_release), (gst_ringbuffer_play),
7120         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
7121         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
7122         (gst_ringbuffer_set_sample), (wait_segment),
7123         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
7124         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
7125         More work on the audiosink, mostly debugging and a race in
7126         shutdown.
7127
7128 2005-04-28  Wim Taymans  <wim@fluendo.com>
7129
7130         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
7131         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
7132         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
7133         (vorbis_dec_src_query), (vorbis_dec_src_event),
7134         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
7135         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
7136         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
7137         Don't crap out when seeking back to position 0.
7138
7139 2005-04-28  Wim Taymans  <wim@fluendo.com>
7140
7141         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
7142         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
7143         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
7144         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
7145         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
7146         Make audio sink configurable, use alsasink as default.
7147
7148 2005-04-28  Wim Taymans  <wim@fluendo.com>
7149
7150         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7151         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
7152         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
7153         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
7154         (vorbis_dec_change_state):
7155         * ext/vorbis/vorbisdec.h:
7156         Refactor, use STREAM_LOCK.
7157
7158 2005-04-28  Wim Taymans  <wim@fluendo.com>
7159
7160         * ext/theora/theoradec.c: (_inc_granulepos),
7161         (theora_dec_sink_event), (theora_handle_comment_packet),
7162         (theora_handle_type_packet), (theora_handle_header_packet),
7163         (theora_handle_data_packet), (theora_dec_chain),
7164         (theora_dec_change_state):
7165         Refactor a bit, use STREAM_LOCK.
7166
7167 2005-04-28  Wim Taymans  <wim@fluendo.com>
7168
7169         * ext/alsa/Makefile.am:
7170         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
7171         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
7172         (gst_alsa_link), (gst_alsa_close_audio):
7173         * ext/alsa/gstalsaplugin.c: (plugin_init):
7174         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
7175         (gst_alsasink_dispose), (gst_alsasink_base_init),
7176         (gst_alsasink_class_init), (gst_alsasink_init),
7177         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
7178         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
7179         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
7180         (gst_alsasink_reset):
7181         * ext/alsa/gstalsasink.h:
7182         Implement alsasink with simple open/write/close API. 
7183         Make alsa dir build by disabling compilation of code.
7184
7185 2005-04-28  Wim Taymans  <wim@fluendo.com>
7186
7187         * gst-libs/gst/audio/Makefile.am:
7188         * gst-libs/gst/audio/audio.h:
7189         * gst-libs/gst/audio/audioclock.c:
7190         * gst-libs/gst/audio/audioclock.h:
7191         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
7192         (gst_audio_clock_class_init), (gst_audio_clock_init),
7193         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
7194         * gst-libs/gst/audio/gstaudioclock.h:
7195         * gst-libs/gst/audio/gstaudiosink.c:
7196         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7197         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7198         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7199         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7200         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
7201         (gst_audiosink_create_ringbuffer):
7202         * gst-libs/gst/audio/gstbaseaudiosink.c:
7203         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
7204         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
7205         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
7206         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
7207         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
7208         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
7209         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
7210         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
7211         * gst-libs/gst/audio/gstbaseaudiosink.h:
7212         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
7213         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
7214         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
7215         (gst_ringbuffer_release), (gst_ringbuffer_play),
7216         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
7217         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
7218         (gst_ringbuffer_set_sample), (wait_segment),
7219         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
7220         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
7221         * gst-libs/gst/audio/gstringbuffer.h:
7222         Make ringbuffer faster and more simple by removing the locks
7223         in the playback thread.
7224         Add sample accurate playback based on buffer sample offsets.
7225         Make the baseaudiosink provide a clock.
7226         Parse caps in the base class.
7227         Correctly handle seeking, flushing and state changes.
7228
7229 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
7230
7231         * configure.ac:
7232         * gst/audioconvert/Makefile.am:
7233         * gst/audioscale/Makefile.am:
7234           Fix part of the build.  Come on guys, autogen didn't even work :)
7235
7236 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7237
7238         * configure.ac:
7239         * gst-libs/gst/Makefile.am:
7240         * gst-libs/gst/media-info/.cvsignore:
7241         * gst-libs/gst/media-info/Makefile.am:
7242         * gst-libs/gst/media-info/README:
7243         * gst-libs/gst/media-info/media-info-priv.c:
7244         * gst-libs/gst/media-info/media-info-priv.h:
7245         * gst-libs/gst/media-info/media-info-test.c:
7246         * gst-libs/gst/media-info/media-info.c:
7247         * gst-libs/gst/media-info/media-info.h:
7248         * gst-libs/gst/media-info/media-info.vcproj:
7249         * pkgconfig/Makefile.am:
7250         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
7251         * pkgconfig/gstreamer-media-info.pc.in:
7252           Remove media-info, which is also successed by playbin (see Totem
7253           implementation).
7254
7255 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7256
7257         * configure.ac:
7258         * examples/Makefile.am:
7259         * examples/gstplay/.cvsignore:
7260         * examples/gstplay/Makefile.am:
7261         * examples/gstplay/player.c:
7262         * gst-libs/gst/Makefile.am:
7263         * gst-libs/gst/play/.cvsignore:
7264         * gst-libs/gst/play/Makefile.am:
7265         * gst-libs/gst/play/play.c:
7266         * gst-libs/gst/play/play.h:
7267         * gst-libs/gst/play/play.vcproj:
7268         * pkgconfig/Makefile.am:
7269         * pkgconfig/gstreamer-play-uninstalled.pc.in:
7270         * pkgconfig/gstreamer-play.pc.in:
7271           Remove libgstplay, playbin is now the official successor.
7272
7273 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7274
7275         * configure.ac:
7276         * gst-libs/gst/Makefile.am:
7277         * gst-libs/gst/xwindowlistener/Makefile.am:
7278         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
7279         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
7280           Remove deprecated xwindowlistener (I've moved xwindowlistening
7281           in the v4l/v4l2 plugins over to serverside).
7282
7283 2005-04-25  David Schleef  <ds@schleef.org>
7284
7285         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
7286         to examples/dynparams.  Examples do not belong interspersed with
7287         source code.
7288         * examples/dynparams/demo-dparams.c:
7289         * gst/sine/Makefile.am:
7290         * gst/sine/demo-dparams.c:
7291
7292 2005-04-25  David Schleef  <ds@schleef.org>
7293
7294         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
7295         * gst-libs/gst/audio/Makefile.am:
7296         * gst-libs/gst/riff/Makefile.am:
7297         * gst-libs/gst/tag/Makefile.am:
7298         * gst-libs/gst/video/Makefile.am:
7299         * gst-libs/gst/xwindowlistener/Makefile.am:
7300
7301         Convert to 0.9 API, seems to work:
7302         * sys/ximage/Makefile.am:
7303         * sys/ximage/ximagesink.c:
7304
7305 2005-04-24  David Schleef  <ds@schleef.org>
7306
7307         Link plugins against libraries:
7308         * ext/alsa/Makefile.am:
7309         * gst/tcp/Makefile.am:
7310
7311         Remove asm code that should be in liboil
7312         * gst/videoscale/Makefile.am:
7313         * gst/videoscale/videoscale_x86_asm.s:
7314
7315         gettext wants these checked in:
7316         * po/af.po:
7317         * po/az.po:
7318         * po/cs.po:
7319         * po/en_GB.po:
7320         * po/hu.po:
7321         * po/it.po:
7322         * po/nb.po:
7323         * po/nl.po:
7324         * po/or.po:
7325         * po/sq.po:
7326         * po/sr.po:
7327         * po/sv.po:
7328         * po/uk.po:
7329         * po/vi.po:
7330
7331 2005-04-24  David Schleef  <ds@schleef.org>
7332
7333         Convert gst_main() to g_main_loop_run()
7334         * gst/playback/decodetest.c: (main):
7335         * gst/playback/test2.c: (main):
7336         * gst/playback/test3.c: (main):
7337         * gst/playback/test4.c: (main):
7338
7339         Link plugins against libraries:
7340         * ext/libvisual/Makefile.am:
7341         * sys/xvimage/Makefile.am:
7342
7343 2005-04-24  David Schleef  <ds@schleef.org>
7344
7345         * configure.ac: Remove idct and resample libs
7346         * gst-libs/gst/Makefile.am: same
7347
7348         Remove usage of gst_library_load():
7349         * ext/alsa/gstalsaplugin.c: (plugin_init):
7350         * ext/libvisual/visual.c: (plugin_init):
7351         * ext/ogg/gstogg.c: (plugin_init):
7352         * ext/theora/theora.c: (plugin_init):
7353         * ext/vorbis/vorbis.c: (plugin_init):
7354         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
7355         * gst/audioscale/gstaudioscale.c:
7356         * gst/adder/gstadder.c: (plugin_init):
7357         * gst/audioconvert/plugin.c: (plugin_init):
7358         * sys/ximage/ximagesink.c: (plugin_init):
7359         * sys/xvimage/xvimagesink.c: (plugin_init):
7360         * gst/tcp/gsttcpplugin.c: (plugin_init):
7361
7362         Link plugins against libraries:
7363         * ext/ogg/Makefile.am:
7364         * ext/theora/Makefile.am:
7365         * ext/vorbis/Makefile.am:
7366         * gst/audioconvert/Makefile.am:
7367
7368         Create proper libraries:
7369         * gst-libs/gst/riff/Makefile.am:
7370         * gst-libs/gst/audio/Makefile.am:
7371         * gst-libs/gst/video/Makefile.am:
7372
7373         Move resample library to audioscale plugin directory:
7374         * gst-libs/gst/resample/Makefile.am:
7375         * gst-libs/gst/resample/README:
7376         * gst-libs/gst/resample/dtof.c:
7377         * gst-libs/gst/resample/dtos.c:
7378         * gst-libs/gst/resample/functable.c:
7379         * gst-libs/gst/resample/private.h:
7380         * gst-libs/gst/resample/resample.c:
7381         * gst-libs/gst/resample/resample.h:
7382         * gst-libs/gst/resample/resample.vcproj:
7383         * gst-libs/gst/resample/test.c:
7384         * gst/audioscale/Makefile.am:
7385         * gst/audioscale/README:
7386         * gst/audioscale/dtof.c:
7387         * gst/audioscale/dtos.c:
7388         * gst/audioscale/functable.c:
7389         * gst/audioscale/private.h:
7390         * gst/audioscale/resample.c:
7391         * gst/audioscale/resample.h:
7392         * gst/audioscale/test.c:
7393
7394         Move tagedit library to gst-libs:
7395         * gst-libs/gst/tag/Makefile.am:
7396         * gst-libs/gst/tag/gstid3tag.c:
7397         * gst-libs/gst/tag/gsttagediting.c:
7398         * gst-libs/gst/tag/gsttageditingprivate.h:
7399         * gst-libs/gst/tag/gstvorbistag.c:
7400         * gst/tags/Makefile.am:
7401         * gst/tags/gstid3tag.c:
7402         * gst/tags/gstvorbistag.c:
7403
7404         Fix for core changes:
7405         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7406         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
7407         (gst_sinesrc_getrange):
7408
7409 2005-04-23  David Schleef  <ds@schleef.org>
7410
7411         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
7412         in gst-plugins in a long time, and properly belongs in liboil.
7413         * gst-libs/gst/idct/Makefile.am:
7414         * gst-libs/gst/idct/README:
7415         * gst-libs/gst/idct/dct.h:
7416         * gst-libs/gst/idct/doieee:
7417         * gst-libs/gst/idct/fastintidct.c:
7418         * gst-libs/gst/idct/floatidct.c:
7419         * gst-libs/gst/idct/idct.c:
7420         * gst-libs/gst/idct/idct.h:
7421         * gst-libs/gst/idct/idtc.vcproj:
7422         * gst-libs/gst/idct/ieeetest.c:
7423         * gst-libs/gst/idct/intidct.c:
7424
7425 2005-04-20  Wim Taymans  <wim@fluendo.com>
7426
7427         * docs/design-audiosinks.txt:
7428         * gst-libs/gst/audio/Makefile.am:
7429         * gst-libs/gst/audio/TODO:
7430         * gst-libs/gst/audio/gstaudiosink.c:
7431         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
7432         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
7433         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
7434         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
7435         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
7436         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
7437         (gst_audiosink_class_init), (gst_audiosink_init),
7438         (gst_audiosink_create_ringbuffer):
7439         * gst-libs/gst/audio/gstaudiosink.h:
7440         * gst-libs/gst/audio/gstbaseaudiosink.c:
7441         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
7442         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
7443         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
7444         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
7445         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
7446         (gst_baseaudiosink_create_ringbuffer),
7447         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
7448         * gst-libs/gst/audio/gstbaseaudiosink.h:
7449         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
7450         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
7451         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
7452         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
7453         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
7454         (gst_ringbuffer_play), (gst_ringbuffer_pause),
7455         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
7456         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
7457         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
7458         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
7459         * gst-libs/gst/audio/gstringbuffer.h:
7460         An attempt at a set of audio base classes together with some
7461         design docs.
7462
7463 2005-04-20  Wim Taymans  <wim@fluendo.com>
7464
7465         * gst/audioconvert/Makefile.am:
7466         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
7467         (gst_audio_convert_caps_remove_format_info),
7468         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
7469         (gst_audio_convert_channels):
7470         Link against audio libs.
7471         Fix audio convert plugin.
7472
7473 2005-04-20  Wim Taymans  <wim@fluendo.com>
7474
7475         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
7476         (gst_ogg_demux_sink_activate):
7477         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
7478         (theora_set_header_on_caps), (theora_enc_sink_event),
7479         (theora_enc_chain):
7480         Fix theora encoder.
7481
7482 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7483
7484         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
7485         * gst/playback/gstdecodebin.c: (find_compatibles):
7486           Work with staticpadtemplates in elementfactories.
7487
7488 2005-04-12  Wim Taymans  <wim@fluendo.com>
7489
7490         * gst/playback/README:
7491         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
7492         (compare_ranks), (print_feature), (gst_decode_bin_init),
7493         (dynamic_create), (dynamic_free), (find_compatibles),
7494         (mimetype_is_raw), (close_pad_link), (got_redirect),
7495         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
7496         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
7497         (gst_decode_bin_change_state):
7498         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
7499         (gst_play_base_bin_init), (group_destroy), (group_commit),
7500         (check_queue), (queue_overrun), (queue_threshold_reached),
7501         (queue_out_of_data), (gen_preroll_element), (unknown_type),
7502         (new_decoded_pad), (setup_subtitle), (gen_source_element),
7503         (got_redirect), (setup_source), (play_base_eos),
7504         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
7505         (gst_play_base_bin_remove_element):
7506         * gst/playback/gstplaybasebin.h:
7507         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
7508         (gst_play_bin_init), (gst_play_bin_dispose),
7509         (gst_play_bin_set_property), (gen_video_element),
7510         (gen_text_element), (gen_audio_element), (remove_sinks),
7511         (gst_play_bin_send_event):
7512         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
7513         (stream_info_change_state), (gst_stream_info_set_mute):
7514         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
7515         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
7516         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
7517         (gst_stream_selector_chain):
7518         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
7519         (main):
7520         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
7521         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
7522         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
7523         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
7524         Raw and crude port of decodebin. 
7525         Make playbin compile.
7526
7527 2005-04-06  Wim Taymans  <wim@fluendo.com>
7528
7529         * ext/gnomevfs/Makefile.am:
7530         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
7531         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
7532         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
7533         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
7534         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
7535         (gst_gnomevfssrc_stop):
7536         * ext/ogg/Makefile.am:
7537         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
7538         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
7539         * ext/theora/Makefile.am:
7540         * ext/theora/theoradec.c: (_inc_granulepos),
7541         (theora_dec_sink_event), (theora_dec_chain):
7542         * ext/vorbis/Makefile.am:
7543         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7544         (vorbis_dec_sink_event), (vorbis_dec_chain):
7545         * gst-libs/gst/audio/Makefile.am:
7546         * sys/xvimage/Makefile.am:
7547         Make gnomevfssrc extend the source base class.
7548         Fix linking against libs in various plugins.
7549
7550 2005-04-06  Andy Wingo  <wingo@pobox.com>
7551
7552         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
7553         GST_BASE_LIBS.
7554
7555         * configure.ac: Add check and AC_SUBST for libgstbase.
7556
7557 2005-03-31  Wim Taymans  <wim@fluendo.com>
7558
7559         * examples/seeking/Makefile.am:
7560         * examples/seeking/cdparanoia.c: (main):
7561         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
7562         (play_cb), (pause_cb), (stop_cb), (main):
7563         * examples/seeking/playbin.c:
7564         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
7565         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
7566         (make_sid_pipeline), (make_vorbis_pipeline),
7567         (make_theora_pipeline), (make_vorbis_theora_pipeline),
7568         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
7569         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
7570         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
7571         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
7572         (stop_cb), (main):
7573         * examples/seeking/spider_seek.c:
7574         * examples/seeking/vorbisfile.c:
7575         * ext/gnomevfs/Makefile.am:
7576         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
7577         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
7578         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
7579         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
7580         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
7581         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
7582         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
7583         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
7584         * ext/ogg/README:
7585         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
7586         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
7587         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
7588         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
7589         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
7590         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
7591         (gst_ogg_pad_event), (gst_ogg_pad_reset),
7592         (gst_ogg_demux_factory_filter), (compare_ranks),
7593         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
7594         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
7595         (gst_ogg_chain_new), (gst_ogg_chain_free),
7596         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
7597         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
7598         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
7599         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
7600         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
7601         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
7602         (gst_ogg_demux_get_prev_page),
7603         (gst_ogg_demux_deactivate_current_chain),
7604         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
7605         (gst_ogg_demux_bisect_forward_serialno),
7606         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
7607         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
7608         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
7609         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
7610         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
7611         (gst_ogg_demux_change_state), (gst_ogg_print):
7612         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
7613         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
7614         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
7615         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
7616         (gst_ogg_mux_loop):
7617         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
7618         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
7619         (theora_dec_src_convert), (theora_dec_sink_convert),
7620         (theora_dec_src_query), (theora_dec_src_event),
7621         (theora_dec_sink_event), (theora_dec_chain),
7622         (theora_dec_change_state):
7623         * ext/theora/theoraenc.c: (gst_theora_enc_init),
7624         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
7625         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
7626         (theora_enc_change_state):
7627         * ext/vorbis/Makefile.am:
7628         * ext/vorbis/oggvorbisenc.c:
7629         * ext/vorbis/oggvorbisenc.h:
7630         * ext/vorbis/vorbis.c: (plugin_init):
7631         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
7632         (vorbis_dec_src_query), (vorbis_dec_src_event),
7633         (vorbis_dec_sink_event), (vorbis_dec_chain),
7634         (vorbis_dec_change_state):
7635         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
7636         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
7637         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
7638         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
7639         (gst_vorbisenc_change_state):
7640         * ext/vorbis/vorbisenc.h:
7641         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
7642         * gst-libs/gst/audio/audioclock.c:
7643         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
7644         (gst_audiofilter_init), (gst_audiofilter_chain):
7645         * gst-libs/gst/audio/testchannels.c: (main):
7646         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
7647         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
7648         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
7649         (gmip_find_track_streaminfo), (gmip_find_track_format):
7650         * gst-libs/gst/media-info/media-info.c:
7651         (gst_media_info_read_idler):
7652         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
7653         (gst_play_get_all_by_interface):
7654         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
7655         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
7656         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
7657         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
7658         (gst_riff_parse_info):
7659         * gst-libs/gst/riff/riff-read.h:
7660         * gst-libs/gst/riff/riff.c: (plugin_init):
7661         * gst-libs/gst/video/Makefile.am:
7662         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
7663         (gst_videosink_class_init), (gst_videosink_get_type):
7664         * gst-libs/gst/video/videosink.h:
7665         * gst/audioconvert/bufferframesconvert.c:
7666         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
7667         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
7668         * gst/audioconvert/channelmixtest.c: (main):
7669         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
7670         (gst_audio_convert_chain),
7671         (gst_audio_convert_caps_remove_format_info),
7672         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
7673         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
7674         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
7675         (gst_audio_convert_buffer_to_default_format),
7676         (gst_audio_convert_buffer_from_default_format),
7677         (gst_audio_convert_channels):
7678         * gst/audioconvert/gstchannelmix.h:
7679         * gst/ffmpegcolorspace/avcodec.h:
7680         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7681         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
7682         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
7683         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
7684         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
7685         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
7686         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
7687         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
7688         (mpeg_video_type_find), (mpeg_video_stream_type_find),
7689         (dv_type_find):
7690         * gst/videotestsrc/gstvideotestsrc.c:
7691         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
7692         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
7693         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
7694         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
7695         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
7696         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
7697         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
7698         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
7699         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
7700         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
7701         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
7702         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
7703         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
7704         (gst_xvimagesink_navigation_send_event),
7705         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
7706         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
7707         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
7708         * sys/xvimage/xvimagesink.h:
7709         Plugin port to 0.9, ogg/theora playback should work in the seek
7710         example now.
7711         Removed old examples.
7712         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
7713         explained in 0.9 TODO doc.
7714
7715
7716 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
7717
7718         * autogen.sh:
7719         * configure.ac:
7720         * ext/Makefile.am:
7721         * gst/Makefile.am:
7722         * po/POTFILES.in:
7723         * po/af.po:
7724         * po/az.po:
7725         * po/cs.po:
7726         * po/en_GB.po:
7727         * po/hu.po:
7728         * po/it.po:
7729         * po/nb.po:
7730         * po/nl.po:
7731         * po/or.po:
7732         * po/sq.po:
7733         * po/sr.po:
7734         * po/sv.po:
7735         * po/uk.po:
7736         * po/vi.po:
7737         * sys/Makefile.am:
7738         * testsuite/Makefile.am:
7739           remove a whole bunch of plugins.  This module now contains a set
7740           of free reference plugins/elements as agreed.
7741
7742 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7743
7744         * configure.ac:
7745           hunting season on 0.9 is now OPEN
7746
7747 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7748
7749         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
7750           Kick the hell out of gcc for not warning me about a symbol conflict.
7751
7752 2005-02-22  Luca Ognibene  <luogni@tin.it>
7753
7754         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
7755
7756         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
7757           Don't leak caps string (fixes #168134)
7758
7759         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
7760         (gst_jpegenc_init), (gst_jpegenc_finalize),
7761         (gst_jpegenc_change_state):
7762           Don't leak line buffers and context struct (fixes #168133).
7763
7764 2005-02-21  Tim-Philipp M??ller  <tim at centricular dot net>
7765
7766         * configure.ac:
7767         * ext/dirac/gstdiracdec.cc:
7768         (gst_diracdec_chain):
7769           Since dirac 0.5.0 the framerate in dirac is expressed as a
7770           rational number. Fix build and up requirement to 0.5.0, and
7771           also pass parameters to gst_diracdec_link in the right order
7772           (fixes #167959).
7773
7774 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
7775
7776         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
7777         * ext/faad/gstfaad.h:
7778         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
7779         certain invalid muxed streams, where some packets will contain 
7780         junk after decoder data. Partially fixes #149158.
7781
7782 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
7783         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
7784           Make sure we only write to writable buffers
7785
7786 2005-02-20  Tim-Philipp M??ller  <tim at centricular dot net>
7787
7788         * gst-libs/gst/riff/riff-media.c:
7789         (gst_riff_create_audio_caps_with_data):
7790           Do actually fix invalid RIFF fmt header values for alaw
7791           and mulaw audio instead of just saying so.
7792
7793         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
7794           Give gst_riff_create_audio_caps_with_data() a chance to
7795           fix up broken format header fields before extracting any
7796           parameters from the header. (fixes #167633)
7797
7798 2005-02-19  Martin Holters  <martin.holters@gmx.de>
7799
7800         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
7801
7802         * gst/audioconvert/bufferframesconvert.c:
7803         (buffer_frames_convert_link):
7804           Don't leak othercaps. (fixes #167878)
7805
7806 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
7807
7808         * configure.ac:
7809         * ext/libvisual/visual.c: (gst_visual_srclink),
7810         (gst_visual_change_state):
7811           Support libvisual 0.2.0.
7812
7813 2005-02-18  Tim-Philipp M??ller  <tim at centricular dot net>
7814
7815         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
7816         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
7817           Use same rowstrides for I420 as used everywhere else.
7818
7819 2005-02-17  Tim-Philipp M??ller  <tim at centricular dot net>
7820
7821         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
7822           Declare variables at beginning of block and make gcc-2.95 happy
7823           (fixes # 167482, patch by Gergely Nagy).
7824           
7825         * gst/tcp/gsttcpclientsrc.c:
7826         * gst/tcp/gsttcpclientsrc.h:
7827           Move some includes into the header, so that struct sockaddr_in is
7828           defined when it should be defined on FreeBSD as well (fixes
7829           #167483).
7830           
7831         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
7832           Don't pass uninitialised values to setsockopt() here either.
7833
7834 2005-02-17  Luca Ognibene  <luogni at tin dot it>
7835
7836         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
7837
7838         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
7839           Don't pass uninitialised values to setsockopt(). (fixes #167704)
7840
7841 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7842
7843         * gst/playback/gstplaybin.c: (add_sink):
7844           Invert bin_add/link order to workaround deadlock in opt.
7845
7846 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7847
7848         * gst/modplug/gstmodplug.cc:
7849           Add missing break causing position queries to fail.
7850
7851 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7852
7853         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
7854           Granpos can apparently be -1, which screws up calculations...
7855
7856 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
7857
7858         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
7859         (gst_ximagesink_send_pending_navigation),
7860         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
7861         (gst_ximagesink_init):
7862         * sys/ximage/ximagesink.h:
7863         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
7864         (gst_xvimagesink_send_pending_navigation),
7865         (gst_xvimagesink_navigation_send_event),
7866         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
7867         * sys/xvimage/xvimagesink.h:
7868           Use a mutex protected list to marshal navigation
7869           events into the stream thread from whichever thread
7870           sends them.
7871
7872 2005-02-15  Tim-Philipp M??ller  <tim at centricular dot net>
7873
7874         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
7875           Display current position and track length; misc. clean-ups.
7876           
7877         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
7878         (speed_init), (speed_chain):
7879           Add query function, so that the stream length and current position
7880           get adjusted when queried (note that current position queries may
7881           still be wrong if the audio sink returns values based on buffer
7882           timestamps instead of passing on the query).
7883
7884 2005-02-13  Benjamin Otte  <otte@gnome.org>
7885
7886         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
7887         (gst_audio_convert_channels):
7888           create channel conversion matrix when linking
7889         * gst/audioconvert/.cvsignore:
7890         * gst/audioconvert/Makefile.am:
7891         * gst/audioconvert/channelmixtest.c: (main):
7892           add (ugly) test that ensures stereo <=> mono conversion works
7893           correctly
7894
7895 2005-02-13  Benjamin Otte  <otte@gnome.org>
7896
7897         * gst/audioconvert/gstchannelmix.h:
7898           include missing header file
7899         * gst/audioconvert/gstchannelmix.c:
7900         (gst_audio_convert_fill_compatible):
7901           use same sign for both channels when converting to/from compatible
7902           channel. Previously used different signs made the signals cancel
7903           each other out and appear like silence. (fixes #167269)
7904
7905 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
7906
7907         * gst/ffmpegcolorspace/avcodec.h:
7908         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
7909         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
7910         (gst_ffmpegcsp_avpicture_fill):
7911         * gst/ffmpegcolorspace/imgconvert.c:
7912           Convert to and from YV12 (fixes #156379).
7913
7914 2005-02-12  Julien MOUTTE  <julien@moutte.net>
7915
7916         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
7917         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
7918         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
7919         (gst_ximagesink_expose), (gst_ximagesink_set_property),
7920         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
7921         methods from chain and negotiation and vice versa (Fixes #166142).
7922         * sys/ximage/ximagesink.h: Add stream_lock.
7923         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
7924         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
7925         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
7926         (gst_xvimagesink_expose): Check for xcontext before trying to link.
7927
7928 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
7929
7930         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
7931           Don't send "Hey! You gave me a NULL pointer you naughty person" as
7932           error message when we can't open the DVD device (when dvdnav_open()
7933           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
7934           the above). Send something more useful instead (fixes #167117).
7935
7936 2005-02-11  Julien MOUTTE  <julien@moutte.net>
7937
7938         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
7939         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
7940         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
7941         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
7942         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
7943         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
7944         methods from chain and negotiation and vice versa (Fixes #166142).
7945         Fix a possible bug of images in the buffer pool being discarded because
7946         we are looking at the wrong geometry.
7947         * sys/xvimage/xvimagesink.h: Add stream_lock.
7948
7949 2005-02-11  David Schleef  <ds@schleef.org>
7950
7951         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
7952         unsigned int. (fixes #167128)
7953
7954 2005-02-11  David Schleef  <ds@schleef.org>
7955
7956         * gst/librfb/Makefile.am: Testing stuff before committing is
7957           for wimps... and people with fast machines.  Fix stupid
7958           mistake.
7959
7960 2005-02-11  David Schleef  <ds@schleef.org>
7961
7962         * configure.ac: Pull in librfb from my CVS tree, because it is
7963           too small and annoying to be separate.  Move rfbsrc plugin
7964           to gst/.
7965         * ext/Makefile.am:
7966         * ext/librfb/Makefile.am:
7967         * ext/librfb/gstrfbsrc.c:
7968         * gst/librfb/Makefile.am:
7969         * gst/librfb/gstrfbsrc.c:
7970         * gst/librfb/rfb.c:
7971         * gst/librfb/rfb.h:
7972         * gst/librfb/rfbbuffer.c:
7973         * gst/librfb/rfbbuffer.h:
7974         * gst/librfb/rfbbytestream.c:
7975         * gst/librfb/rfbbytestream.h:
7976         * gst/librfb/rfbcontext.h:
7977         * gst/librfb/rfbdecoder.c:
7978         * gst/librfb/rfbdecoder.h:
7979         * gst/librfb/rfbutil.h:
7980
7981 2005-02-10  Tim-Philipp M??ller  <tim at centricular dot net>
7982
7983         * gst/speed/Makefile.am:
7984         * gst/speed/demo-mp3.c: (main):
7985         * gst/speed/filter.func:
7986         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
7987         (speed_class_init), (speed_init), (speed_chain_int16),
7988         (speed_chain_float32), (speed_chain), (speed_set_property),
7989         (speed_get_property), (speed_change_state):
7990         * gst/speed/gstspeed.h:
7991           Fix speed element and make it chain-based (fixes #156467),
7992           and make it handle more than one channel.
7993
7994 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
7995
7996         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
7997         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
7998         (gst_dtsdec_chain), (gst_dtsdec_change_state):
7999         * ext/dts/gstdtsdec.h:
8000           Don't clobber the stack constructing the channels array.
8001           Make the element chain-based. DTS tracks can now be played.
8002           
8003 2005-02-09  Tim-Philipp M??ller  <tim at centricular dot net>
8004
8005         * gst-libs/gst/audio/multichannel.h:
8006         * gst-libs/gst/gconf/gconf.h:
8007         * gst-libs/gst/idct/idct.h:
8008         * gst-libs/gst/media-info/media-info-priv.h:
8009         * gst-libs/gst/play/play.h:
8010         * gst-libs/gst/resample/private.h:
8011         * gst-libs/gst/resample/resample.h:
8012         * gst-libs/gst/riff/riff-ids.h:
8013         * gst-libs/gst/video/video.h:
8014         * gst-libs/gst/video/videosink.h:
8015           Add G_BEGIN_DECLS and G_END_DECLS around headers where
8016           missing, so that they work when included from C++ code.
8017
8018 2005-02-09  David Schleef  <ds@schleef.org>
8019
8020         * testsuite/gst-lint: Check for non-statically scoped
8021           parent_class variables.  This won't be a problem once
8022           plugins are loaded with RTLD_LOCAL.
8023
8024 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8025
8026         * ext/mplex/gstmplexibitstream.cc:
8027           gcc madness.
8028
8029 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8030
8031         * ext/ogg/gstogmparse.c:
8032         * gst/debug/gstnavigationtest.c:
8033           Die, thou faulty symbol pollutors (non-static parent_class).
8034
8035 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8036
8037         * ext/mplex/gstmplexibitstream.cc:
8038           Fix event handling (#165525).
8039
8040 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8041
8042         * ext/mikmod/gstmikmod.c:
8043         * gst/modplug/gstmodplug.cc:
8044           Add missing endianness to template (fixes #165509).
8045
8046 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8047
8048         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
8049           Fix wrong order of reading of optional bytes (#165290).
8050
8051 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8052
8053         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
8054           Implement FILLER event awareness.
8055
8056 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8057
8058         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
8059           Fix track calculations (#166208).
8060
8061 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
8062
8063         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8064
8065         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
8066         * ext/libpng/gstpngenc.c:
8067           Fix byte-order, use proper fixed caps. Fixes #164197.
8068
8069 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
8070
8071         * configure.ac:
8072           Add dvdlpcmdec 
8073
8074         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
8075         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
8076           Don't push buffers if the src pad isn't negotiated yet.
8077           
8078         * gst/audioconvert/gstaudioconvert.c:
8079         (gst_audio_convert_buffer_to_default_format),
8080         (gst_audio_convert_buffer_from_default_format):
8081           Add support for 24-bit width.
8082
8083         * gst/dvdlpcmdec/.cvsignore:
8084         * gst/dvdlpcmdec/Makefile.am:
8085         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
8086         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
8087         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
8088         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
8089         (plugin_init):
8090         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
8091           New decoder for rearranging DVD LPCM into our audio/x-raw-int
8092           format. Needs support for the channels maps if someone can find 
8093           a DVD LPCM track with > 2 channels.
8094
8095         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
8096         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
8097         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
8098         * gst/mpegstream/gstdvddemux.h:
8099         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
8100         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
8101         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
8102         * gst/mpegstream/gstmpegdemux.h:
8103         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
8104         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
8105         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
8106         (gst_mpeg_parse_handle_src_query),
8107         (gst_mpeg_parse_handle_src_event):
8108           Use audio/x-dvd-lpcm for LPCM output.
8109           Add DTS output.
8110
8111 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
8112
8113         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8114
8115         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
8116         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
8117           Add BGRA handling (#165736).
8118
8119 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
8120
8121         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8122
8123         * gst/law/alaw-decode.c: (alawdec_link):
8124         * gst/law/alaw-encode.c: (alawenc_link):
8125         * gst/law/mulaw-decode.c: (mulawdec_link):
8126         * gst/law/mulaw-encode.c: (mulawenc_link):
8127           Fix caps memleaks (#166600).
8128
8129 2005-02-08  Tim-Philipp M??ller  <tim at centricular dot net>
8130
8131         * ext/tarkin/mem.h:
8132         * ext/tarkin/wavelet.h:
8133         * ext/tarkin/yuv.h:
8134         * gst/ffmpegcolorspace/avcodec.h:
8135           Include "_stdint.h" instead of <stdint.h>. Fixes build on
8136           systems that don't have stdint.h, like Solaris9 (fixes #166631).
8137
8138 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8139
8140         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
8141         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
8142         (gst_xvimagesink_change_state):
8143           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
8144           Xv video (and thereby regenerate Xv colourkey) in clear() so
8145           that PLAY -> READY -> PLAY works (fixes #162504).
8146
8147 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8148
8149         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
8150           Switch to list instead of range, since MJPEG-devices really just
8151           support decimations, not any size.
8152
8153 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8154         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
8155         (gst_mpeg2dec_reset), (free_all_buffers),
8156         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
8157         * ext/mpeg2dec/gstmpeg2dec.h:
8158           The libmpeg2 user-allocated buffer management is awkward, 
8159           to say the least. Hopefully this fixes things.
8160
8161 2005-02-04  Andy Wingo  <wingo@pobox.com>
8162
8163         * gst/audioconvert/bufferframesconvert.c
8164         (buffer_frames_convert_fixate): New function, fixates to 256
8165         frames per buffer by default. (Much better than 1.)
8166         (buffer_frames_convert_init): Set the fixate function for both src
8167         and sink pad.
8168         (buffer_frames_convert_link): After success setting nonfixed caps,
8169         get the negotiated caps so we can know how many buffer-frames it
8170         will be. No idea how this worked at all before.
8171
8172 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
8173
8174         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
8175         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
8176         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
8177         (handle_sequence), (handle_picture):
8178         * ext/mpeg2dec/gstmpeg2dec.h:
8179           Rearrange buffer tracking and refcounting and refactor
8180           a little for readability. 
8181
8182 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
8183         * sys/v4l/gstv4l.c: (plugin_init):
8184         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
8185         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
8186         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
8187         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
8188         * sys/v4l/gstv4ljpegsrc.h:
8189         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
8190         * sys/v4l/v4l_calls.h:
8191         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
8192         (gst_v4lsrc_get_fps):
8193         * sys/v4l/v4lsrc_calls.h:
8194           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
8195           you jpeg inside rgb frames" driver.
8196           Don't error in the v4lsrc link function, just return 
8197           REFUSED.
8198
8199 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8200
8201         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
8202         (gst_qcamsrc_open):
8203           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
8204
8205 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8206
8207         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8208           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
8209
8210 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8211
8212         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
8213           Reset negotiated state on PAUSED->READY.
8214
8215 2005-02-02  David Schleef  <ds@schleef.org>
8216
8217         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
8218         whereever possible.  (Fixes #165997)
8219         * examples/capsfilter/capsfilter1.c: (main):
8220         * examples/dynparams/filter.c: (create_ui):
8221         * examples/seeking/cdparanoia.c: (get_track_info), (main):
8222         * examples/seeking/chained.c: (main):
8223         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
8224         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
8225         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
8226         (make_mpeg_pipeline), (make_mpegnt_pipeline):
8227         * examples/seeking/spider_seek.c: (make_spider_pipeline):
8228         * examples/switch/switcher.c: (main):
8229         * ext/dv/demo-play.c: (main):
8230         * ext/faad/gstfaad.c: (gst_faad_change_state):
8231         * ext/mad/gstmad.c: (gst_mad_chain):
8232         * ext/smoothwave/demo-osssrc.c: (main):
8233         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
8234         (gst_gconf_render_bin_from_description),
8235         (gst_gconf_get_default_audio_sink),
8236         (gst_gconf_get_default_video_sink),
8237         (gst_gconf_get_default_audio_src),
8238         (gst_gconf_get_default_video_src),
8239         (gst_gconf_get_default_visualization_element):
8240         * gst/level/demo.c: (main):
8241         * gst/level/plot.c: (main):
8242         * gst/playback/gstplaybin.c: (gen_video_element),
8243         (gen_audio_element):
8244         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
8245         * gst/playondemand/demo-mp3.c: (setup_pipeline):
8246         * gst/sine/demo-dparams.c: (main):
8247         * gst/spectrum/demo-osssrc.c: (main):
8248         * gst/speed/demo-mp3.c: (main):
8249         * gst/volume/demo.c: (main):
8250         * testsuite/embed/embed.c: (main):
8251
8252 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
8253
8254         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
8255         (gst_tcpclientsink_finalize):
8256         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
8257         (gst_tcpclientsrc_finalize):
8258         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
8259         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
8260         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
8261         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
8262           Don't leak the hostname when shutting down.
8263           In tcpserversrc, take a copy of the default hostname.
8264
8265 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8266
8267         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
8268           Set caps to systemstream=TRUE.
8269
8270 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8271
8272         * testsuite/Makefile.am:
8273           Fix more OSX buildbots.
8274
8275 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
8276
8277         * ext/mpeg2dec/gstmpeg2dec.c:
8278           Don't send things to NULL PAD_PEERs
8279
8280         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
8281           Copy-on-write the incoming buffer.
8282
8283         * gst/mpegstream/gstdvddemux.h:
8284         * gst/mpegstream/gstmpegclock.h:
8285         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
8286         (normal_seek), (gst_mpeg_demux_handle_src_event):
8287         * gst/mpegstream/gstmpegdemux.h:
8288         * gst/mpegstream/gstmpegpacketize.h:
8289         * gst/mpegstream/gstmpegparse.c:
8290         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
8291         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
8292         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
8293         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
8294         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
8295         * gst/mpegstream/gstmpegparse.h:
8296         * gst/mpegstream/gstrfc2250enc.h:
8297           Various changes to the way time is computed that make seeking and
8298           total time estimation much better here.
8299           Use G_BEGIN/END_DECLS instead of __cplusplus
8300
8301         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
8302           Use gst_buffer_stamp instead of only copying the TIMESTAMP
8303
8304 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8305
8306         * gst/subparse/gstsubparse.c:
8307           Fix OSX buildbot.
8308
8309 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
8310
8311         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
8312         (theora_enc_chain), (theora_enc_change_state):
8313         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
8314         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
8315         (gst_vorbisenc_change_state):
8316         * ext/vorbis/vorbisenc.h:
8317           Set granulepos and timestamp correctly for streams not
8318           starting at 0, taking into account the initial delay.
8319
8320 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
8321
8322         * gst/mpegstream/gstdvddemux.c:
8323           Add audio/x-dts to audio pad template caps
8324
8325 2005-01-30  David Schleef  <ds@schleef.org>
8326
8327         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
8328         (create_context), (gst_polypsink_link): Fix silly endianness
8329         bug.  Add some debugging.  Remove float from caps; it doesn't
8330         work.  Attempt to get remote audio working.
8331
8332 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8333
8334         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
8335           Add 3IV2 fourcc.
8336
8337 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8338
8339         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
8340         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
8341         (gst_avi_demux_stream_data):
8342         * gst/avi/gstavidemux.h:
8343           Invert DIB images. Fixes #132341.
8344
8345 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8346
8347         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8348         (gst_ffmpegcsp_chain):
8349           D'oh, reference the palette data, not the palette structure.
8350           Fixes color distortion in #132341.
8351
8352 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8353
8354         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
8355           PAR can be non-fixed when not provided as argument (#162626).
8356
8357 2005-01-29  David Moore  <dcm@acm.org>
8358
8359         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8360
8361         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
8362         (gst_qtdemux_loop_header):
8363           Re-apply patch from #142272 that allows non-seekable sources,
8364           re-proposed by Daniel Drake <dsd@gentoo.org>.
8365
8366 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8367
8368         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
8369           Use the src template for creating the src pad (#162330).
8370
8371 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8372
8373         * configure.ac:
8374         * ext/musepack/Makefile.am:
8375         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
8376         (gst_musepackdec_init), (gst_musepackdec_dispose),
8377         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
8378         (gst_musepack_stream_init), (gst_musepackdec_loop),
8379         (gst_musepackdec_change_state):
8380         * ext/musepack/gstmusepackdec.cpp:
8381         * ext/musepack/gstmusepackdec.h:
8382         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
8383         (gst_musepack_reader_read), (gst_musepack_reader_seek),
8384         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
8385         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
8386         * ext/musepack/gstmusepackreader.cpp:
8387         * ext/musepack/gstmusepackreader.h:
8388           Update to 1.1 API (#165446).
8389
8390 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8391
8392         * ext/Makefile.am:
8393           Unbreak buildbot.
8394
8395 2005-01-28  Andy Wingo  <wingo@pobox.com>
8396
8397         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
8398         to reflect a different dubious internet source. Add a reference
8399         and some commentary.
8400
8401 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8402
8403         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
8404         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
8405         * gst/playback/gststreamselector.h:
8406           Be more selective when we're redoing caps negotiation from
8407           within the chain function on a stream change.
8408
8409 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8410
8411         * configure.ac:
8412         * ext/Makefile.am:
8413         * ext/amrnb/Makefile.am:
8414         * ext/amrnb/amrnb.c: (plugin_init):
8415         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
8416         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
8417         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
8418         (gst_amrnbdec_state_change):
8419         * ext/amrnb/amrnbdec.h:
8420         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
8421         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
8422         (gst_amrnbparse_init), (gst_amrnbparse_formats),
8423         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
8424         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
8425         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
8426         * ext/amrnb/amrnbparse.h:
8427           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
8428         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
8429           Add AMR-NB/-WB raw formats.
8430         * ext/alsa/gstalsa.c: (gst_alsa_link):
8431           Keep valid time when changing format.
8432         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
8433         (qtdemux_parse_trak):
8434           Add some more format-specific options (#140141, #143555, #155163).
8435
8436 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8437
8438         * gst/matroska/matroska-demux.c:
8439         (gst_matroska_demux_parse_blockgroup):
8440           Fix logic error in timing of subtitle stream synchronization.
8441         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
8442           Add skip-chunk, which is found in kodak-camera streams.
8443
8444 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
8445
8446         * po/LINGUAS:
8447         * po/vi.po:
8448           Adding Vietnamese translation (submitted by Clytie Siddall)
8449
8450 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8451
8452         * gst/playback/gstdecodebin.c: (try_to_link_1):
8453           Use realpad for signal.
8454
8455 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8456
8457         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
8458           Fix category so decodebin picks it up.
8459
8460 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8461
8462         * ext/mad/Makefile.am:
8463         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
8464         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
8465         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
8466         (found_type), (gst_id3demux_bin_change_state):
8467         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
8468         (gst_id3_tag_init), (gst_id3_tag_handle_event),
8469         (gst_id3_tag_src_link), (gst_id3_tag_chain),
8470         (gst_id3_tag_change_state), (plugin_init):
8471         * ext/mad/gstmad.h:
8472           Add id3demuxbin (which is a simple bin consisting of id3demux
8473           and typefind), take over rank from id3demux, remove typefind
8474           code from id3demux. Makes all broken mp3s that I know of work,
8475           and thereby fixes #152688.
8476
8477 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
8478
8479         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8480
8481         * ext/mad/gstmad.c: (gst_mad_src_event):
8482         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
8483           Allow seeks on audio pad, make mad forward those (#164826).
8484         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
8485           Set duration (#165335).
8486
8487 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8488
8489         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
8490         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
8491         (gst_asf_demux_process_ext_content_desc),
8492         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
8493         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
8494         * gst/asfdemux/gstasfdemux.h:
8495           Improve metadata display, e.g. if the metadata comes before the
8496           streams are loaded (which is perfectly valid).
8497
8498 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8499
8500         * tools/gst-launch-ext-m.m:
8501           Fix AVI/ASF pipelines (#165340).
8502
8503 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
8504         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
8505         build failure on amd64
8506
8507 2005-01-26  Tim-Philipp M??ller  <tim at centricular dot net>
8508
8509         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
8510         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
8511           Check environment variables GST_ID3V2_TAG_ENCODING,
8512           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
8513           list of character encodings to force interpretation of non-unicode
8514           strings stored in an ID3v2 tag to a particular encoding. If none
8515           is specified, try to use current locale's encoding, then fall back
8516           to ISO-8859-1 (which will always succeed). (Resolves #149274)
8517         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
8518         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
8519           Check environment variables GST_ID3V1_TAG_ENCODING,
8520           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
8521           list of character encodings to use in case a string encountered
8522           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
8523           specified, try to use the current locale's encoding, then fall
8524           back to ISO-8859-1 (which will always succeed).
8525
8526 2005-01-25  Benjamin Otte  <otte@gnome.org>
8527
8528         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
8529           - on half framerate, compute the rate in advance so the comparisons
8530             don't compare wrong values
8531           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
8532             behaviour
8533           - don't use mad_header_decode anymore, mad_frame_decode does that
8534             automatically
8535           - when getting rid of consumed bytes, reset the stream's skiplen
8536           (fixes #163867)
8537
8538 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
8539
8540         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
8541           Use 1/2 a second for default max_discont, as PES streams from DVB
8542           seem to have larger spacings in the SCR. 
8543           Fix a typo.
8544
8545 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8546
8547         * gst/playback/gstplaybasebin.c: (group_commit):
8548           Notify delayed stream-info availability.
8549
8550 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
8551         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
8552         (gst_a52dec_handle_event), (gst_a52dec_chain):
8553         Add some debug output. Check that a discont has a valid
8554         time associated.
8555         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
8556         (gst_alsa_sink_loop):
8557         Ignore TAG events. A little extra debug for broken timestamps.
8558         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
8559         (dvdnavsrc_change_state):
8560         Ensure we send a discont to engage the link before we send any
8561         other events.
8562         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
8563         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
8564         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
8565         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
8566         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
8567         dvd://title works in totem because typefinding sends a seek that ends
8568         up going back to chapter 1 regardless.
8569         * ext/mpeg2dec/gstmpeg2dec.c:
8570         * ext/mpeg2dec/gstmpeg2dec.h:
8571         Output correct timestamps and handle disconts.
8572         * ext/ogg/gstoggdemux.c: (get_relative):
8573         Small guard against a null dereference.
8574         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
8575         (gst_textoverlay_set_property):
8576         Free memory when done. Don't call gst_event_filler_get_duration on
8577         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
8578         g_warning.
8579         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
8580         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
8581         (gst_sw_srclink), (gst_smoothwave_chain):
8582         Draw solid lines, prettier colours.
8583         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
8584         Add a default palette that'll work for some movies.
8585         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
8586         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
8587         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
8588         * gst/mpegstream/gstdvddemux.h:
8589         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
8590         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
8591         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
8592         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
8593         * gst/mpegstream/gstmpegparse.h:
8594         Use PTM/NAV events when for timestamp adjustment when connected to 
8595         dvdnavsrc. Don't use many discont events where one suffices.
8596         * gst/playback/gstplaybasebin.c: (group_destroy),
8597         (gen_preroll_element), (gst_play_base_bin_add_element):
8598         * gst/playback/gstplaybasebin.h:
8599         Make sure we remove subtitles from the same bin we put them in.
8600         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
8601         (gst_subparse_buffer_format_autodetect),
8602         (gst_subparse_change_state):
8603         Fix some memleaks and invalid accesses.
8604         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
8605         (oggskel_type_find), (cmml_type_find), (plugin_init):
8606         Some typefind functions for Annodex v3.0 files
8607         * gst/wavparse/gstwavparse.h:
8608         GstRiffReadClass is the correct parent class.
8609
8610 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8611
8612         * gst-libs/gst/riff/riff-media.c:
8613         (gst_riff_create_video_caps_with_data):
8614           Add extradata to huffyuv (fixes #165013).
8615         * gst-libs/gst/riff/riff-read.c:
8616         (gst_riff_read_strf_vids_with_data):
8617           Fix extradata extraction if it is in the chunk size.
8618
8619 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
8620
8621         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8622
8623         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
8624         (gst_quarktv_change_state), (gst_quarktv_dispose):
8625           Memory free'ing location fix (#164708).
8626
8627 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8628
8629         * gst/playback/gstplaybasebin.c: (group_commit),
8630         (gen_preroll_element), (probe_triggered), (gen_source_element),
8631         (setup_source), (gst_play_base_bin_change_state),
8632         (gst_play_base_bin_add_element):
8633           Don't block for streams.
8634         * gst/playback/gststreaminfo.c: (stream_info_change_state),
8635         (gst_stream_info_set_mute):
8636           Use gst_pad_set_active_recursive.
8637
8638 2005-01-25  Andy Wingo  <wingo@pobox.com>
8639
8640         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
8641         for #ifndef HAVE_XVIDEO.
8642
8643 2005-01-24  Jeffrey C. Ollie
8644
8645         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
8646
8647         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
8648         * ext/gsm/gstgsmdec.h:
8649         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
8650         * ext/gsm/gstgsmenc.h:
8651         Fix rate to 8kHz as per spec, removes obscure errors when no rate
8652         was given by property. Add proper buffer timestamps and offsets.
8653
8654 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8655
8656         * gst-libs/gst/riff/riff-media.c:
8657         (gst_riff_create_audio_caps_with_data):
8658           Audio can be <8000Hz.
8659
8660 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8661
8662         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
8663           Explicit state change to workaround refcount bugs.
8664
8665 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8666
8667         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
8668         (gst_avimux_riff_get_avi_header):
8669           Fix...
8670
8671 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8672
8673         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
8674         (gst_riff_read_element_data):
8675         * gst-libs/gst/riff/riff-read.h:
8676           Add _peek version (req'ed in CDXA).
8677         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
8678         (gst_cdxaparse_loop):
8679           Fix parsing in playbin.
8680         * gst/playback/gstdecodebin.c: (close_pad_link):
8681           Ignore current_ pads, they cause major annoyance.
8682
8683 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8684
8685         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
8686           Safety guard.
8687
8688 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8689
8690         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
8691           Fix padding...
8692
8693 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8694
8695         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
8696           Allow for 0-sized buffers. Fixes length query problems in
8697           starwars.mkv from the testsuite.
8698
8699 2005-01-19  Tim-Philipp M??ller  <tim at centricular dot net>
8700
8701         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
8702         (gst_video_box_i420), (gst_video_box_chain):
8703           Fix row strides for I420 (fixes #163159)
8704           
8705 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8706
8707         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
8708           MPEG2 has a useful rate property, so we can actually use that.
8709           For MPEG-1, continue using the bytes/time properties.
8710
8711 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8712
8713         * gst-libs/gst/riff/riff-media.c:
8714         (gst_riff_create_video_caps_with_data),
8715         (gst_riff_create_video_template_caps):
8716           Add intel-h263.
8717
8718 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8719
8720         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
8721           Fail if caps negotiation fails. Should fix #162184, and should
8722           definately be in there regardless of it fixing the actual bug.
8723         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
8724         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
8725         (gst_avimux_riff_get_avix_header),
8726         (gst_avimux_riff_get_video_header),
8727         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
8728         (gst_avimux_start_file), (gst_avimux_handle_event),
8729         (gst_avimux_change_state):
8730         * gst/avi/gstavimux.h:
8731           Refactor structure writing to use GST_WRITE_UINT macros, add
8732           metadata writing support.
8733
8734 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8735
8736         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
8737           Elements may already be destroyed when this function is called.
8738
8739 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8740
8741         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
8742         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
8743           More memory leak fixes (#149162).
8744
8745 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8746
8747         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
8748         (gst_qtdemux_add_stream):
8749           Fix two memleaks.
8750
8751 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8752
8753         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
8754           Argh...
8755
8756 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8757
8758         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
8759           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
8760           when fixating to six channels in Totem.
8761
8762 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
8763
8764         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
8765           Fix compile warnings on Solaris 10 buildbot
8766
8767 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
8768
8769         * ext/dvdread/dvdreadsrc.c: (_read):
8770           Don't read beyond the last cell in a chapter (fixes 
8771           invalid memory access)
8772
8773 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
8774
8775         * ext/dvdread/stream_labels.c:
8776         (dvdreadsrc_get_audio_stream_labels):
8777           Use NULL for an empty GList instead of g_list_alloc(); fix 
8778           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
8779           of GString (easier to bulk free later)
8780
8781 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
8782
8783         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8784
8785         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8786         (gst_ffmpeg_pixfmt_to_caps):
8787           Fix BGRA32 caps (#164209).
8788
8789 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
8790
8791         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8792
8793         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8794         (gst_ffmpeg_caps_to_pixfmt):
8795           alpha_mask can be RGBA/ABGR. Fixes #164265.
8796
8797 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
8798
8799         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8800
8801         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
8802         (gst_mpeg2dec_alloc_buffer):
8803         * ext/mpeg2dec/gstmpeg2dec.h:
8804           Crop if decoding size is not the actual image size (#163676).
8805
8806 2005-01-17  Steve Baker  <steve@stevebaker.org>
8807
8808         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8809
8810         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
8811         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
8812           Add libsndfile typefind functions (#163309).
8813
8814 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8815
8816         * tools/gst-launch-ext-m.m:
8817           Add .aac, fix .m1v/.m2v (#163891).
8818
8819 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8820
8821         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
8822           Sanity check, don't wait endlessly since the clock might not
8823           actually run at this point (which is a deadlock). Fixes #164069.
8824
8825 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8826
8827         * gst/playback/gstplaybasebin.c: (probe_triggered):
8828           Of course, only pause if group is done...
8829
8830 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8831
8832         * gst/playback/gstplaybasebin.c: (probe_triggered):
8833           Thread safety.
8834
8835 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
8836
8837         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
8838           Don't return state change success when the parent
8839           failed.
8840
8841 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8842
8843         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
8844           Free events (fix memleak in #162905).
8845
8846 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
8847
8848         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8849
8850         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
8851         (gst_ffmpeg_caps_to_pixfmt):
8852           Fix for depth = 15. Fixes #161675.
8853
8854 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8855
8856         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
8857           Set FPS correctly, even for webcams and the like.
8858         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
8859           Don error on setting while capturing.
8860
8861 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
8862
8863         * ext/dv/gstdvdec.c:
8864         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
8865         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
8866           I'm a bad boy. using /1001. to force C to do float division
8867           and not integer division (as it did in my last commit)
8868           Thanks to David I. Lehn for pointing this mistake.
8869
8870 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8871
8872         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
8873           Revert Johan??s 1.35->1.36 since it breaks compat.
8874
8875 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
8876
8877         * ext/dv/gstdvdec.c:
8878         * ext/libfame/gstlibfame.c:
8879         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
8880         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
8881           replace framerate aproximations by their real value
8882           (24000/1001, 30000/1001, 60000/1001)
8883           Finish fixing bug #164049
8884
8885 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8886
8887         * ext/ogg/gstoggmux.c:
8888           eos/bos debugging
8889         * gst/tcp/gstmultifdsink.c:
8890         * gst/tcp/gstmultifdsink.h:
8891         * gst/tcp/gsttcp.c:
8892         * gst/tcp/gsttcp.h:
8893         * gst/tcp/gsttcpclientsink.c:
8894         * gst/tcp/gsttcpclientsrc.c:
8895         * gst/tcp/gsttcpserversink.c:
8896         * gst/tcp/gsttcpserversrc.c:
8897           improve reusability of elements after state changes and errors
8898           make multifdsink throw away streamheaders when receiving new ones
8899
8900 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8901
8902         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
8903           Fix for if items are already in list...
8904
8905 2005-01-12  Benjamin Otte  <otte@gnome.org>
8906
8907         * gst/adder/gstadder.c: (gst_adder_loop):
8908           fix adder a bit so it doesn't screw up with events as much anymore
8909
8910 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
8911
8912         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
8913         (pixbufscale_scale), (gst_pixbufscale_chain):
8914         * ext/gdk_pixbuf/pixbufscale.h:
8915           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
8916           to ensure rowstrides are calculated the same way as 
8917           ffmpegcolorspace
8918           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
8919           that we pick up duration and offset also.
8920
8921 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8922
8923         * gst/avi/gstavimux.c: (gst_avimux_class_init),
8924         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
8925           Reusability fixes.
8926
8927 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8928
8929         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
8930         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
8931         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
8932         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
8933           Update flags when requested.
8934
8935 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8936
8937         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
8938           Fix dmix.
8939
8940 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8941
8942         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
8943         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
8944         (probe_triggered), (new_decoded_pad), (gen_source_element),
8945         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
8946         * gst/playback/gstplaybasebin.h:
8947         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
8948         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
8949         (gst_play_bin_change_state):
8950           Implement group-switch signal for use in apps to clear metadata
8951           cache, clean up subtitle, add suburi property instead of # hack,
8952           some error-out fixes.
8953
8954 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8955
8956         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
8957           Debug.
8958         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
8959           If we got a state change in the _get handler, don't return success.
8960
8961 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
8962
8963         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
8964         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
8965           Make jpegdec quiet on MJPEG decoding
8966         * gst/asfdemux/README:
8967           Fix mimetypes for MJPEG and H263
8968
8969 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8970
8971         * ext/theora/theoradec.c: (theora_dec_chain):
8972           Fix broken code generation by gcc by swapping arguments.
8973         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
8974           Fix \n in debug.
8975
8976 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
8977
8978         * TODO:
8979           delete this file, it is by far outdated
8980         * ext/alsa/gstalsa.1: remove
8981         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
8982         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
8983         (gst_alsa_get_caps):
8984           Add HW probing for supported sample rates. Fixes #161704
8985
8986 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8987
8988         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
8989           Don't crash, biatch! :).
8990
8991 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8992
8993         * ext/musepack/gstmusepackreader.cpp:
8994         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
8995           Some work on tags - still doesn't work in playbin...
8996         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
8997           Handle events...
8998
8999 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9000
9001         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
9002           Also shove tags on kid pads.
9003
9004 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9005
9006         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
9007           Don't bail on unknown events.
9008         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
9009           Don't crash on events before negotiation.
9010         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
9011           Send tags on pads, too.
9012         * gst/playback/gststreamselector.c:
9013         (gst_stream_selector_request_new_pad):
9014           Forward events on first pad if no input was selected yet.
9015
9016 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9017
9018         * gst/playback/gstplaybasebin.c: (setup_substreams):
9019           Don't disable streamtype if the stream doesn't exist, since
9020           then playing a video after audio will disable both and nothing
9021           will happen. Fixes the testsuite.
9022
9023 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9024
9025         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
9026         (gst_v4l_xoverlay_set_xwindow_id):
9027         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
9028         (gst_v4l2_xoverlay_set_xwindow_id):
9029           Add debug categories, fix overlay disabling.
9030
9031 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9032
9033         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
9034         * ext/alsa/gstalsa.h:
9035           Add HW probing for period_count/size and buffer_size MIX/MAX
9036           Adjust default/user defined value if out of bounds
9037           Should fix bug #162024
9038
9039 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9040
9041         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
9042           Fix warning (#161191).
9043
9044 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9045
9046         * ext/dvdread/stream_labels.c:
9047         (dvdreadsrc_get_audio_stream_labels):
9048           Fix warning (init the good variable in switch default)
9049
9050 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
9051
9052         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9053
9054         * gst/tta/gstttaparse.c: (gst_tta_src_event):
9055           Fix gcc-2.95 compile (#163485).
9056
9057 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9058
9059         * configure.ac:
9060         * ext/flac/gstflacenc.c: (gst_flacenc_init),
9061         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
9062         (gst_flacenc_tell_callback), (gst_flacenc_chain),
9063         (gst_flacenc_change_state):
9064         * ext/flac/gstflacenc.h:
9065           Update for API change in flac-1.1.1. Update requirement in
9066           configure.ac. Fixes #162974.
9067
9068 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9069
9070         * gst/playback/gstplaybasebin.c: (group_destroy):
9071           Remove hack to get rid of assert and get rid of unlinked
9072           signals properly.
9073
9074 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9075
9076         * gst/playback/gstplaybasebin.c: (setup_source):
9077           Set source to NULL so that resources are free'ed. Fixes issues
9078           with playback of CDDA and similar device-accessing things.
9079
9080 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9081
9082         * testsuite/embed/Makefile.am:
9083           test->noinst, fix make test in buildbot.
9084
9085 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9086
9087         * ext/dvdread/stream_labels.c: new file
9088         * ext/dvdread/stream_labels.h: new file
9089         * ext/dvdread/Makefile.am:
9090         * ext/dvdread/dvdreadsrc.c: (_seek_title):
9091           Extract audio stream label from DVD IFO files.
9092           It only dump them on the console for now, still have to
9093           make playbin aware of them.
9094
9095 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9096
9097         * gst/playback/gstplaybasebin.c: (setup_source):
9098           Fix hanging subs.
9099
9100 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9101
9102         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
9103         (gen_preroll_element), (remove_groups), (setup_subtitle),
9104         (gen_source_element), (setup_source):
9105         * gst/playback/gstplaybasebin.h:
9106           Multiple .sub files is just a stupid idea... Fix some threading
9107           mistakes. Interestingly, external .sub files cause playbin to
9108           hang, I don't know why... Parsing fixes contributed by Fran??ois
9109           Kooman <fkooman@tuxed.net>.
9110
9111 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9112
9113         * testsuite/embed/Makefile.am:
9114           Fix buildbot.
9115
9116 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
9117
9118         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9119
9120         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
9121         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
9122         (gst_pngenc_set_property):
9123         * ext/libpng/gstpngenc.h:
9124           Add compression level property (#163323).
9125
9126 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9127
9128         * configure.ac:
9129         * examples/capsfilter/capsfilter1.c: (main):
9130         * examples/seeking/spider_seek.c: (make_spider_pipeline):
9131         * ext/dvdread/Makefile.am:
9132         * ext/dvdread/demo-play:
9133         * ext/dvdread/demo-play.c:
9134         * gconf/gstreamer.schemas.in:
9135         * gst-libs/gst/gconf/gconf.c:
9136         * sys/v4l/TODO:
9137         * testsuite/Makefile.am:
9138         * testsuite/embed/Makefile.am:
9139         * testsuite/embed/embed.c: (cb_expose), (main):
9140           Remove all references to xvideosink, fix examples (#140845).
9141         * gst/playback/gstplaybasebin.c: (group_destroy):
9142           Apparently, disposal does not unlink - so do explicitely.
9143         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
9144           Add debug.
9145
9146 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
9147
9148         * README: fix PKG_CONFIG_PATH instructions, what was there
9149         previously was breaking default search path, not nice. 
9150         Fixes #163358
9151
9152 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9153
9154         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
9155         (gst_audioscale_chain):
9156           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
9157           when resampling - how the ^@$^!@^! is this possible?!?
9158
9159 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9160
9161         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
9162           Reset variables on READY.
9163         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
9164         (gst_matroska_mux_loop):
9165           Require data before writing header.
9166
9167 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
9168
9169         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9170
9171         * ext/mad/gstmad.c: (gst_mad_chain):
9172           Don't call mad_stream_sync() directly after recovering sync.
9173           Fixes #151661.
9174
9175 2005-01-09  Martin Eikermann  <meiker@upb.de>
9176
9177         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9178
9179         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
9180         (snapshot_handler), (gst_snapshot_sinkconnect),
9181         (gst_snapshot_chain):
9182           Allocate resources when required, fix recursive signal emission
9183           and fix caps. Fixes #161667.
9184
9185 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
9186
9187         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9188
9189         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
9190         (gst_pngdec_chain):
9191           Handle only 8-bppc (bits-per-pixel-component) images, better
9192           error handling and correct strides. Fixes #163177.
9193         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
9194         (gst_pngenc_chain):
9195           Better error handling. Fixes #163348.
9196
9197 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9198
9199         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
9200         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
9201         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
9202         (dvdnavsrc_uri_handler_init):
9203           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
9204         * gst/playback/gstplaybasebin.c: (gen_source_element):
9205           Add MMS to streaming URIs.
9206
9207 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9208
9209         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
9210         * sys/xvimage/xvimagesink.c:
9211         (gst_xvimagesink_navigation_send_event):
9212           Check for pad availability before sending event.
9213
9214 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9215
9216         * gst-plugins.spec.in:
9217           Add subparse.
9218
9219 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9220
9221         * configure.ac:
9222           Since we use functions from CVS, up requirement.
9223
9224 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9225
9226         * gst/playback/Makefile.am:
9227         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
9228         (group_destroy), (group_commit), (group_is_muted),
9229         (gen_preroll_element), (add_stream), (unknown_type),
9230         (probe_triggered), (preroll_unlinked), (mute_stream),
9231         (silence_stream), (new_decoded_pad), (setup_substreams),
9232         (setup_source), (get_active_source), (mute_group_type),
9233         (muted_group_change_state), (set_active_source),
9234         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
9235         (play_base_eos), (gst_play_base_bin_change_state):
9236         * gst/playback/gstplaybasebin.h:
9237         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
9238         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
9239         (gst_stream_info_dispose), (stream_info_mute_pad),
9240         (stream_info_change_state), (gst_stream_info_set_mute):
9241         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
9242         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
9243         (gst_stream_selector_init), (gst_stream_selector_dispose),
9244         (gst_stream_selector_get_linked_pad),
9245         (gst_stream_selector_get_caps), (gst_stream_selector_link),
9246         (gst_stream_selector_get_linked_pads),
9247         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
9248         * gst/playback/gststreamselector.h:
9249           Adding stream selection support plus required properties for
9250           applications to use this. Fully fixes #100931.
9251
9252 2005-01-08  Benjamin Otte  <otte@gnome.org>
9253
9254         * gst/games/gstpuzzle.c: (nav_event_handler):
9255           - handle nav events differently: forward every event no matter if it
9256             was handled or not.
9257           - translate events
9258           You can now cheat by using navigationtest ! puzzle and moving the
9259           mouse close to the edge of a tile. ;)
9260
9261 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9262
9263         * configure.ac:
9264         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
9265         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
9266         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
9267         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
9268         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
9269         (gst_ogm_parse_plugin_init):
9270         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
9271         (gst_textoverlay_link), (gst_textoverlay_getcaps),
9272         (gst_textoverlay_event), (gst_textoverlay_video_chain),
9273         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
9274         * ext/pango/gsttextoverlay.h:
9275         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
9276         (gst_matroska_demux_handle_seek_event),
9277         (gst_matroska_demux_sync_streams),
9278         (gst_matroska_demux_parse_blockgroup),
9279         (gst_matroska_demux_subtitle_caps),
9280         (gst_matroska_demux_plugin_init):
9281         * gst/matroska/matroska-ids.h:
9282         * gst/playback/gstdecodebin.c: (close_pad_link):
9283         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
9284         (gen_preroll_element), (remove_groups), (add_stream),
9285         (new_decoded_pad), (setup_subtitles), (gen_source_element),
9286         (setup_source):
9287         * gst/playback/gstplaybasebin.h:
9288         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
9289         * gst/subparse/Makefile.am:
9290         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
9291         (gst_subparse_base_init), (gst_subparse_class_init),
9292         (gst_subparse_init), (gst_subparse_formats),
9293         (gst_subparse_eventmask), (gst_subparse_event),
9294         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
9295         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
9296         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
9297         (parse_mpsub_deinit), (parse_mpsub_init),
9298         (gst_subparse_buffer_format_autodetect),
9299         (gst_subparse_format_autodetect), (gst_subparse_loop),
9300         (gst_subparse_change_state), (gst_subparse_type_find),
9301         (plugin_init):
9302         * gst/subparse/gstsubparse.h:
9303         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
9304         (plugin_init):
9305           Add subtitle support, .sub parser (supports SRT and MPsub),
9306           OGM text support, Matroska UTF-8 text support, deadlock fixes
9307           all over the place, subtitle awareness in decodebin/playbin
9308           and some fixes to textoverlay to handle subtitles in a stream
9309           correctly. Fixes #100931.
9310
9311 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9312
9313         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
9314           Check for pad availability before doing a query on it.
9315
9316 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9317
9318         * ext/dv/gstdvdec.c:
9319           really fix bpp24/32 dvdec caps (classic rgba indeed)
9320         * gst/asfdemux/gstasfdemux.c:
9321         (gst_asf_demux_process_ext_content_desc):
9322           don't send text tags if they are empty (bis repetita)
9323
9324 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9325
9326         * ext/dv/gstdvdec.c:
9327          remove unneeded comment from dvdec
9328           (related to DV 4CC codes in AVI files)
9329           moved them in gstreamer/docs/random/mimetypes
9330         * gst/asfdemux/gstasfdemux.c:
9331         (gst_asf_demux_process_ext_content_desc):
9332          don't send text tags if they are empty
9333          fix mem leak on error path
9334         * gst/ffmpegcolorspace/avcodec.h:
9335         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9336         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
9337         (gst_ffmpegcsp_avpicture_fill):
9338         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
9339         * gst/ffmpegcolorspace/imgconvert_template.h:
9340          adds BGR32 and BGRA32 to ffmpegcolorspace
9341           (still bad colors, fixing it on next commit)
9342           helps with dvdec outputing BGR32
9343
9344 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9345
9346         * ext/dv/gstdvdec.c:
9347          Fix audio caps i just broke (missing ',')
9348         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
9349         (gst_matroska_mux_reset):
9350          Fix typo + add FIXME about old "x-gst-metadata" crap
9351
9352 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9353
9354         * ext/dv/demo-play.c: (main):
9355          xvideosink -> xvimagesink
9356         * ext/dv/gstdvdec.c:
9357          change rgb 32/32 caps to 24/32 (no alpha)
9358          change nb of channels to be a list (2 or 4, not 2)
9359          change sample rate to be a list (32, 44.1, 48 kHz) not a range
9360         * gst/asfdemux/gstasfdemux.c:
9361         (gst_asf_demux_process_ext_content_desc):
9362          Add 'date/year' to extracted metadata list
9363
9364 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9365
9366         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
9367           The return value of fixate_to does not imply that the requested
9368           value was set, so don't assume.
9369
9370 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
9371
9372         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9373
9374         * ext/libpng/gstpngdec.c:
9375         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
9376         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
9377         * ext/libpng/gstpngenc.h:
9378           Alpha support (encoder; #163161), mime fixage.
9379
9380 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
9381
9382         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9383
9384         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
9385         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
9386         (gst_faac_set_property), (gst_faac_get_property):
9387         * ext/faac/gstfaac.h:
9388           Allow for ADTS output (#153434).
9389
9390 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9391
9392         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
9393           Fix against template (#150576).
9394
9395 2005-01-06  Benjamin Otte  <otte@gnome.org>
9396
9397         * gst/games/gstpuzzle.c: (draw_puzzle):
9398           don't draw a puzzle if either width or height of tiles would be 0.
9399
9400 2005-01-06  Benjamin Otte  <otte@gnome.org>
9401
9402         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
9403         (gst_puzzle_class_init), (gst_puzzle_finalize):
9404           no memleaks, please
9405         (gst_puzzle_create), (gst_puzzle_init),
9406         (gst_puzzle_set_property), (gst_puzzle_setup):
9407           change initialization code around so we don't reshuffle on resize
9408         (draw_puzzle):
9409           fix another stupid typo
9410
9411 2005-01-06  Benjamin Otte  <otte@gnome.org>
9412
9413         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
9414           fix stupid typo that borked copying on YUY2
9415
9416 2005-01-06  Benjamin Otte  <otte@gnome.org>
9417
9418         * gst/games/gstpuzzle.c: (draw_puzzle):
9419           fix edges when image sizes aren't multiples of tile sizes
9420
9421 2005-01-06  Benjamin Otte  <otte@gnome.org>
9422
9423         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
9424           make RGB endianness work correctly
9425         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
9426           refactor and fix race with initial shuffling
9427         (nav_event_handler):
9428           allow using the mouse to puzzle
9429         (draw_puzzle):
9430           insist on tiles having width and height as multiples of 4 to get
9431           clean YUV image handling
9432         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
9433         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
9434           s/DEBUG/LOG/ for common messages
9435         (gst_xvimagesink_navigation_send_event):
9436           fix mouse event translation to not include screen PAR
9437         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
9438           fix mouse event translation to actually work
9439
9440 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9441
9442         * gst/asfdemux/gstasfdemux.c:
9443         (gst_asf_demux_process_ext_content_desc):
9444          Extract TrackNumber metadata + clean up code
9445         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
9446          Hope this is the good fix (var used unitialised)
9447
9448 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9449
9450         * ext/faad/gstfaad.c: (gst_faad_chain):
9451           Only increment timestamp if it's valid. Fixes raw AAC streams.
9452
9453 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9454
9455         * configure.ac:
9456         * gst/games/Makefile.am:
9457         * gst/games/gstpuzzle.c:
9458           add a puzzle game with...
9459         * gst/games/gstvideoimage.c:
9460         * gst/games/gstvideoimage.h:
9461           ... full colorspace support (that includes YUV9 and RGB16)) stolen
9462           from videotestsrc and made into something that would be a nice
9463           library for a lot of other plugins.
9464
9465 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9466
9467         * configure.ac:
9468          don't compile faad plugin if a RC of 2.0 is found
9469          Fixes #155346 (and FC1 buildbot)
9470         * gst/asfdemux/gstasfdemux.c:
9471         (gst_asf_demux_process_ext_content_desc):
9472          try to make Solaris compiler happier
9473
9474 2005-01-06  Paul Jack  <pjack@sfaf.org>
9475
9476         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9477
9478         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
9479           Fix segfault (#161667).
9480
9481 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9482
9483         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
9484           Fix framerate reporting.
9485
9486 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
9487
9488         * gst-libs/gst/riff/riff-ids.h:
9489         * gst/wavenc/riff.h:
9490          Add AMR (VBR and CBR) ids to riff.h audio codec list
9491         * gst/asfdemux/gstasfdemux.c:
9492         (gst_asf_demux_process_ext_content_desc),
9493         (gst_asf_demux_process_object):
9494           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
9495
9496 2005-01-05  Martin Eikermann  <meiker@upb.de>
9497
9498         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9499
9500         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
9501         (gst_dvd_demux_handle_discont):
9502         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
9503         (gst_mpeg_demux_handle_discont):
9504           Recreate pads on new-media (#160730).
9505         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
9506           Send discont even if manager changes timestamps (#161929).
9507
9508 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
9509
9510         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9511
9512         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
9513           Fix invalid memory access (#159211).
9514
9515 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9516
9517         * examples/gstplay/player.c: (main):
9518           Don't iterate.
9519         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
9520           Add visualizations.
9521         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
9522         (gst_a52dec_handle_frame):
9523           Set duration.
9524         * ext/dvdnav/gst-dvd:
9525           Add audioconvert. Fixes #161325.
9526         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
9527           Explicitely case to gint64. Possible valgrind error.
9528         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
9529         (gst_play_tick_callback), (gst_play_change_state),
9530         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
9531         (gst_play_set_location), (gst_play_get_location),
9532         (gst_play_seek_to_time), (gst_play_set_data_src),
9533         (gst_play_set_video_sink), (gst_play_set_audio_sink),
9534         (gst_play_set_visualization), (gst_play_connect_visualization),
9535         (gst_play_get_framerate), (gst_play_get_all_by_interface),
9536         (gst_play_new):
9537           Use playbin. Fixes #139749 and #147744.
9538         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
9539           Add genre tag.
9540         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
9541         (audioscale_get_type), (gst_audioscale_base_init),
9542         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
9543         (gst_audioscale_getcaps), (gst_audioscale_fixate),
9544         (gst_audioscale_link), (gst_audioscale_get_buffer),
9545         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
9546         (gst_audioscale_init), (gst_audioscale_dispose),
9547         (gst_audioscale_chain), (gst_audioscale_set_property),
9548         (gst_audioscale_get_property), (plugin_init):
9549           Indent properly.
9550         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
9551           Fix LPCM.
9552         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
9553         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
9554         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
9555           Add more metadata (fixes #162656).
9556
9557 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9558
9559         * configure.ac:
9560           back to cvs
9561
9562 === release 0.8.7 ===
9563
9564 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9565
9566         * NEWS:
9567         * RELEASE:
9568         * configure.ac:
9569           releasing 0.8.7, "Hyperspace"
9570
9571 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9572
9573         patch by: Tim-Philipp M??ller  <t.i.m@zen.co.uk>
9574
9575         * gst/playback/gstplaybasebin.c:
9576          Fix for #162924 - free caps after use, not before
9577
9578 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9579
9580         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
9581
9582         * gst/playback/gstplaybasebin.c:
9583         * gst/wavparse/gstwavparse.c:
9584           Fix for #154773 - fixes playback of small .wav files
9585
9586 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9587
9588         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
9589
9590         * gst/audioscale/gstaudioscale.c:
9591           Fix for #162819 - make audioscale reusable
9592           Fixes playback of more than one file with playbin/totem
9593
9594 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9595
9596         * gst/ffmpegcolorspace/avcodec.h:
9597         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
9598         * gst/ffmpegcolorspace/imgconvert.c:
9599           clean up the mess that made me cry and avoid needless duplication
9600
9601 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9602
9603         * gst/ffmpegcolorspace/imgconvert.c:
9604           give some indication of why we're segfaulting
9605
9606 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9607
9608         * configure.ac:
9609           Fix indentation, fix v4l2 plugin detection.
9610         * ext/Makefile.am:
9611           Fix libmms location (Maciej, use diff -u!).
9612         * ext/alsa/gstalsa.c: (gst_alsa_init):
9613           Initialize caps cache to NULL.
9614         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
9615           Only change state on audiosink if it exists.
9616
9617 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
9618
9619         * gst/matroska/matroska-demux.c:
9620         * gst/matroska/matroska-ids.h:
9621         * gst/matroska/matroska-demux.h:
9622         Fix Vorbis streams failing to decode in some files, where cluster_time
9623         isn't 0, because then it doesn't send codec_priv before actual data.
9624         Remove time-based test and replace it with marker set on beginning of
9625         new stream
9626
9627 2004-12-28  David Schleef  <ds@schleef.org>
9628
9629         Merge patch from Ronald fixing problems with streaming
9630         text.
9631         * ext/cairo/gstcairo.c: (plugin_init):
9632         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
9633         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
9634         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
9635         (gst_textoverlay_font_init), (gst_textoverlay_init),
9636         (gst_textoverlay_set_property):
9637         * ext/cairo/gsttextoverlay.h:
9638
9639 2004-12-27  David Schleef  <ds@schleef.org>
9640
9641         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
9642         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
9643         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
9644         (gst_textoverlay_font_init), (gst_textoverlay_init),
9645         (gst_textoverlay_set_property): Improvements to actually
9646         render text as white on black outline on video, including
9647         font selection and horizontal/vertical alignment.  (Ronald's
9648         christmas present)
9649         * ext/cairo/gsttextoverlay.h:
9650
9651 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
9652
9653         * ext/ogg/gstogg.c:
9654         * ext/ogg/gstogmparse.c:
9655           fix ogm[audio/video]parse plugin registration
9656           (riff won't load if bytestream is already loaded)
9657
9658 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9659
9660         * gst/audioconvert/gstchannelmix.c:
9661           fix for GLIB < 2.4
9662
9663 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9664
9665         * Makefile.am:
9666         * configure.ac:
9667           disable docs again until it actually passes make distcheck.
9668
9669 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9670
9671         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
9672         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
9673         (plugin_init):
9674           Add 3GP (variables name Q3GP because they can't start with a
9675           number). Add samr audio fourcc (used in .3gp files), decoder
9676           is work in progress. Also do a GST_WARNING instead of ERROR
9677           in case of unknown nodes, to decrease output.
9678
9679 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9680
9681         * Makefile.am:
9682           really fix dist
9683
9684 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9685
9686         * configure.ac:
9687         * ext/speex/gstspeexdec.h:
9688         * ext/speex/gstspeexenc.h:
9689           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
9690           Fix detection code in configure.ac
9691
9692 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9693
9694         * gst/matroska/matroska-demux.c:
9695         (gst_matroska_demux_parse_blockgroup):
9696           Save position, so that queries give proper return values. Don't
9697           know how this could ever have worked before...
9698
9699 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
9700
9701         * configure.ac:
9702           Put additional LAME check inside the conditional.  Fixes #152339
9703
9704 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9705
9706         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
9707         (gst_avi_demux_stream_scan):
9708           Add some more debug. Fix logic error when setting movi offset
9709           while reading index.
9710
9711 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9712
9713         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
9714         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
9715         (gst_avi_demux_process_next_entry):
9716           Add some debugging. Better detection of broken indexes and the
9717           accompanying index recovery. No infinite loops on state changes
9718           when we're still in our loopfunction.
9719
9720 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9721
9722         * configure.ac:
9723           Fix up.
9724
9725 2004-12-22  Archana Shah  <archana.shah@wipro.com>
9726
9727         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9728
9729         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
9730           Normalizing the value before setting
9731         (gst_sunaudiomixer_get_volume):
9732           Normalizing the value after getting. Fixes bug# 161980
9733
9734 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
9735
9736         * Makefile.am: Make sure docs gets disted
9737         * docs/Makefile.am: Make sure all needed files get disted
9738         * gst-plugins.spec.in: latest updates
9739
9740 2004-12-22  Wim Taymans  <wim@fluendo.com>
9741
9742         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
9743         Revert patch 1.38 as clock distribution over schedulers does
9744         not work correcly in the core yet.
9745
9746 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
9747
9748         * sys/oss/README: remove this file, which predates my birth
9749           (and which content is by far outdated)
9750
9751 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
9752
9753         * Makefile.am:
9754         * configure.ac:
9755         * docs/Makefile.am:
9756         * docs/libs/Makefile.am:
9757         * docs/libs/gst-plugins-libs-docs.sgml:
9758         * docs/libs/gst-plugins-libs-sections.txt:
9759         * docs/libs/tmpl/gstgconf.sgml:
9760         * docs/upload.mak:
9761         * docs/version.entities.in:
9762           Added boilerplate gtk-doc files for plugin-libs documentation.
9763
9764 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
9765
9766         * gst/auparse/gstauparse.c: fix int and float audio caps
9767
9768 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9769
9770         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
9771         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
9772           g_assert() can be a macro, don't use #ifdef inside it.
9773
9774 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
9775
9776         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9777
9778         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
9779         (gst_videorate_init), (gst_videorate_chain),
9780         (gst_videorate_change_state):
9781           Event handling (fixes #159986).
9782
9783 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9784
9785         * gst-libs/gst/riff/riff-media.c:
9786         (gst_riff_create_video_caps_with_data):
9787           Add BLZ0 (Blizzard's version of DivX) fourcc.
9788
9789 2004-12-18  David Schleef  <ds@schleef.org>
9790
9791         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
9792         portability fix.
9793
9794 2004-12-18  David Schleef  <ds@schleef.org>
9795
9796         * gst/tta/ttadec.h: Disable some header code that isn't used
9797         and clearly isn't portable.
9798
9799 2004-12-18  David Schleef  <ds@schleef.org>
9800
9801         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
9802         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
9803         (avcodec_get_pix_fmt), (avpicture_layout),
9804         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
9805         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
9806         Fix code to not use GCC extensions (and c99 extensions that
9807         Forte does not like.)
9808
9809 2004-12-19  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
9810
9811         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9812
9813         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
9814         (gst_deinterlace_chain):
9815           Rowstride fixes. Fixes #161039.
9816         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
9817         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
9818         (gst_video_crop_getcaps), (gst_video_crop_link),
9819         (gst_video_crop_i420), (gst_video_crop_chain),
9820         (gst_video_crop_change_state):
9821           Rework of negotiation. Actually works now. Fixes #158650.
9822
9823 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9824
9825         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
9826           That was very stupid.
9827
9828 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9829
9830         * gst/matroska/matroska-demux.c:
9831         (gst_matroska_demux_parse_blockgroup):
9832           Fix possible crasher.
9833
9834 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9835
9836         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
9837         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
9838           Lace sizes can be zero.
9839
9840 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9841
9842         * ext/musepack/gstmusepackdec.cpp:
9843           Fetch error return values. Fixes #161624.
9844         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
9845           Really EOS.
9846
9847 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9848
9849         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
9850           Work for truncated (unfinished download etc.) files. Fixes #160514.
9851
9852 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9853
9854         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
9855           Fix for integer overflow. Makes #156001 not crash. Probably masks
9856           the real bug.
9857
9858 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9859
9860         * gst/ac3parse/gstac3parse.c: (plugin_init):
9861           Parsers never have ranks. Fixes #159651.
9862
9863 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9864
9865         * gst/playback/gstdecodebin.c: (compare_ranks):
9866           make sure the facotries are ordered the same every time even if they
9867           have the same rank by using the name
9868         * gst/playback/gstdecodebin.c: (find_compatibles):
9869           make sure we don't add factories to the list twice
9870
9871 2004-12-16  David Schleef  <ds@schleef.org>
9872
9873         * configure.ac: look for musepack headers as musepack/*.h
9874         (fixes #159847)
9875         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
9876         * ext/musepack/gstmusepackreader.h: same
9877
9878 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9879
9880         * gst-libs/gst/riff/riff-read.c:
9881         (gst_riff_read_strf_auds_with_data):
9882           Read extradata correctly (fixes #155879).
9883
9884 2004-12-16  David Schleef  <ds@schleef.org>
9885
9886         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
9887         audio.  does _not_ attempt or allow conversion unless channels
9888         is 1 or 2.
9889
9890 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
9891
9892         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
9893
9894 2004-12-16  David Schleef  <ds@schleef.org>
9895
9896         * gst/audioscale/gstaudioscale.c: the resample library only
9897         handles 1 or 2 channels.  Change caps to compensate.
9898
9899 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9900
9901         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
9902         (gst_matroska_demux_audio_caps):
9903           Some MPEG-AAC hacks, because else it doesn't work...
9904
9905 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9906
9907         * gst-libs/gst/riff/riff-media.c:
9908         (gst_riff_create_video_caps_with_data),
9909         (gst_riff_create_video_template_caps):
9910           Add h264.
9911
9912 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9913
9914         * gst-libs/gst/audio/Makefile.am:
9915           Try to fix buildbot.
9916
9917 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9918
9919         * gst/tcp/gstmultifdsink.c:
9920           Clean up and uniformize debugging.
9921
9922 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
9923
9924         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9925
9926         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
9927         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
9928         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
9929         (gst_mpeg_demux_change_state):
9930           Reset on ready. Fixes 160276.
9931
9932 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
9933
9934         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9935
9936         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9937         (gst_ffmpegcsp_pad_link):
9938           Fix memleak (#154815).
9939
9940 2004-12-16  James Bowes  <bowes@cs.dal.ca>
9941
9942         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9943
9944         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
9945         (gst_musicbrainz_init), (gst_musicbrainz_chain),
9946         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
9947         * ext/musicbrainz/gsttrm.h:
9948           Add support for using a proxy server when getting a trm id from
9949           the MusicBrainz database (#149613).
9950
9951 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
9952
9953         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9954
9955         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
9956         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
9957           Fix memleaks (#157233).
9958
9959 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
9960
9961         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9962
9963         * gst-libs/gst/resample/resample.c: (gst_resample_close):
9964         * gst-libs/gst/resample/resample.h:
9965         * gst/audioscale/gstaudioscale.c:
9966           Fix memleak (#159215).
9967
9968 2004-12-16  Toni Willberg  <toniw@iki.fi>
9969
9970         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9971
9972         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
9973         * sys/oss/oss_probe.c: (main):
9974           Check for mono/stereo support (similar to samplerate probing),
9975           fixes #159433. Also add missing copyright header to oss_probe.c.
9976
9977 2004-12-15  David Schleef  <ds@schleef.org>
9978
9979         * configure.ac: add audioresample and cairo plugins.  Remove
9980         HAVE_MMX stuff, because it's not used.
9981         * ext/Makefile.am: same
9982         * ext/audioresample/Makefile.am: You are not ready for an
9983         audio resampling element based on audioresample.
9984         * ext/audioresample/gstaudioresample.c:
9985         * ext/audioresample/gstaudioresample.h:
9986         * ext/cairo/Makefile.am: You are not ready for overlay elements
9987         based on cairo.  Don't look too closely, these elements kinda
9988         suck right now.
9989         * ext/cairo/gstcairo.c: new
9990         * ext/cairo/gsttextoverlay.c: new
9991         * ext/cairo/gsttextoverlay.h: new
9992         * ext/cairo/gsttimeoverlay.c: new
9993         * ext/cairo/gsttimeoverlay.h: new
9994         * gst-libs/gst/media-info/media-info-priv.h: fix compile
9995         problem with compilers that don't support variadic macros.
9996
9997 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
9998
9999         Reviewed by:  David Schleef  <ds@schleef.org>
10000
10001         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
10002         Bala, registering sunaudiosrc (oops!), and cleaning up code a
10003         bit.  Also ran indent-gst.
10004         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
10005         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
10006         (gst_sunaudiosrc_setparams):
10007
10008 2004-12-14  David Schleef  <ds@schleef.org>
10009
10010         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
10011         output rate to 16000.  Should fix #160235.
10012
10013 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10014
10015         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
10016         Add typefinding for mpeg2 pes streams
10017
10018 2004-12-13  David Schleef  <ds@schleef.org>
10019
10020         * configure.ac:  Applied patch from bug #143659, making default
10021         sources and sinks OS-dependent (for Solaris), and added code
10022         for OS/X.
10023         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
10024
10025 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10026
10027         * gst-libs/gst/riff/riff-media.c:
10028           forgot to add h2.64 to avidemux template caps
10029
10030 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10031
10032         * gst/wavenc/riff.h:
10033         * gst-libs/gst/riff/riff-media.c:
10034         * gst-libs/gst/riff/riff-ids.h:
10035         * gst/avi/gstavimux.c
10036         add 4CC code for VideoSoft h264 in AVI (VSSH)
10037           fixes bug #160655
10038         remove s323 from riff, it's quicktime specific :(
10039
10040 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10041
10042         * gst/asfdemux/README
10043         * gst/wavenc/riff.h
10044         * gst-libs/gst/riff/riff-ids.h
10045         * gst-libs/gst/riff/riff-media.c
10046         * gst/qtdemux/qtdemux.c:
10047           add new 4CC codes for h263 related codecs
10048           fixes partially bug #155163
10049
10050 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
10051
10052         * configure.ac: Update polyaudio requirement to 0.7
10053         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
10054
10055 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10056
10057         * gst/interleave/deinterleave.c:
10058         fix my name's spelling! :)
10059
10060 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
10061
10062         * AUTHORS ChangeLog
10063         * gst/auparse/gstauparse.c
10064         * gst/interleave/deinterleave.c
10065         * gst/law/:
10066                 alaw-decode.c alaw-encode.c
10067                 mulaw-decode.c mulaw-encode.c
10068         * gst/oneton/gstoneton.c
10069         * sys/osxaudio/:
10070                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
10071         * sys/osxvideo/:
10072                 cocoawindow.h cocoawindow.m
10073                 osxvideosink.h osxvideosink.m
10074
10075         put the same mail address for Zaheer Abbas Merali everywhere
10076
10077 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10078
10079         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
10080           Align by packetsize, and assert that we a packet available before
10081           playing. The first makes webstreams work (they often include
10082           trailing padding data in a packet), the second allows pausing a
10083           ASF stream in totem without getting demux errors afterwards.
10084
10085 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10086
10087         * ext/ogg/gstoggdemux.c: (get_relative):
10088           Check for non-NULL before accessing member (end-of-chain).
10089
10090 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10091
10092         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
10093         (cdparanoia_set_property), (cdparanoia_get_property):
10094         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
10095         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
10096         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
10097         (dvdreadsrc_init), (dvdreadsrc_set_property),
10098         (dvdreadsrc_get_property):
10099         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
10100         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
10101           Synchronize property names where not yet the case. Devices are
10102           now device=X, other versions are deprecated (but still exist).
10103           Also use g_free() unconditionally.
10104         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10105         (setup_source), (gst_play_base_bin_get_property):
10106           Expose source.
10107
10108 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
10109
10110         * configure.ac: move GCONF macro outside conditional for the am
10111           conditional. Fixes #160439
10112
10113 2004-12-08  David Schleef  <ds@schleef.org>
10114
10115         * tools/gst-visualise-m.m: Switch to elements that currently
10116         exist.
10117
10118 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10119
10120         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10121           We love wrong commas.
10122
10123 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10124
10125         * gst/matroska/matroska-demux.c:
10126         (gst_matroska_demux_handle_src_query):
10127           Don't set DEFAULT, unsupported - makes length display incorrectly
10128           in some cases.
10129
10130 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
10131
10132         * gst/monoscope/README: remove blurb about files being GPL
10133         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
10134         * gst/monoscope/monoscope.c: Change license to BSD with explanation
10135           monoscope is now effectively LGPL licensed
10136
10137 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
10138
10139         * gst/monoscope/README: Update information to be more correct
10140         * gst/monoscope/convolve.c: Relicense to LGPL
10141         * gst/monoscope/convolve.h: Relicense to LGPL
10142
10143 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
10144
10145         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
10146           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
10147         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
10148           set default_duration for mpeg1 audio
10149
10150 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10151
10152         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
10153         * ext/alsa/gstalsa.h:
10154           refactor big chunks of the core caps negotiation code to make it
10155           a lot faster, because people claim it's really slow
10156           (actually, just cache the getcaps when the device is opened)
10157
10158 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10159
10160         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
10161         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
10162         (gst_a52dec_handle_frame), (gst_a52dec_chain),
10163         (gst_a52dec_change_state), (plugin_init):
10164         * ext/a52dec/gsta52dec.h:
10165           Do something useful with timestamps. Make chain-based (since
10166           there's really no reason to be loopbased).
10167         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
10168           Update current_byte/frame correctly.
10169
10170 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10171
10172         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
10173         (gst_ape_demux_stream_init):
10174           Forward tags, too.
10175
10176 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10177
10178         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
10179           Let's make sure we're done typefinding when detecting tags.
10180
10181 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10182
10183         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
10184         (gst_ebml_read_init), (gst_ebml_read_use_event),
10185         (gst_ebml_read_element_id), (gst_ebml_peek_id),
10186         (gst_ebml_read_seek), (gst_ebml_read_skip),
10187         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
10188         (gst_ebml_read_master):
10189         * gst/matroska/ebml-read.h:
10190         * gst/matroska/matroska-demux.c:
10191         (gst_matroska_demux_parse_contents),
10192         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
10193           Disgustingly evil hack for working around INTERRUPT events and
10194           their extremely annoying habit of being a pain in the ass. We
10195           simply peek a cluster before reading any of it.
10196
10197 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10198
10199         * ext/musepack/gstmusepackdec.cpp:
10200           There's also floating point libmusepacks.
10201
10202 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10203
10204         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
10205         (gst_faad_chanpos_to_gst), (gst_faad_chain):
10206           Set DURATION even if source buffer didn't. Also use increasing
10207           timestamps.
10208         * gst-libs/gst/riff/riff-media.c:
10209         (gst_riff_create_audio_caps_with_data):
10210           Block_align can have larger values than 8192.
10211
10212 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10213
10214         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
10215         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
10216         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
10217         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
10218           Fix caps.
10219
10220 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10221
10222         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
10223           Fix logic bug.
10224
10225 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10226
10227         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
10228           Yay, another one.
10229
10230 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10231
10232         * ext/esd/esdsink.c: (gst_esdsink_chain):
10233           Make error actually say something useful (fixes #156798).
10234         * gst-libs/gst/riff/riff-media.c:
10235         (gst_riff_create_video_caps_with_data),
10236         (gst_riff_create_video_template_caps):
10237           Add Intel Video 5.0 fourcc (IV50).
10238
10239 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
10240
10241         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
10242         detection on mono and stereo mp3 files.
10243
10244 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10245
10246         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
10247           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
10248           the contained stream).
10249
10250 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10251
10252         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
10253           Oops, remove debug.
10254
10255 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
10256
10257         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10258
10259         * gst/law/alaw-decode.c: (alawdec_getcaps):
10260         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
10261           Prevent warnings when negotiating caps (fixes #159338).
10262
10263 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10264
10265         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10266         (gst_ffmpegcsp_chain):
10267           Remove old leftover that shouldn't be there...
10268
10269 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
10270
10271         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10272
10273         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
10274           Don't forward DISCONT events (fixes #159684).
10275
10276 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10277
10278         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
10279           Unlink manually since sometimes bin disposal (and therefore
10280           pad unlinking) is delayed, which will cause a new media file
10281           to not be able to start playing instantly.
10282
10283 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10284
10285         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
10286           On mute of an unlinked stream, check for pad availability so
10287           we don't crash on unlinked pad.
10288
10289 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10290
10291         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
10292         (gst_avi_demux_massage_index):
10293           Fix quite humiliating bug in omitting 0-sized index chunks but
10294           forgetting to count them for timestamps.
10295
10296 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10297
10298         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
10299           Actually leave the loop if we failed to sync. Don't crash.
10300
10301 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10302
10303         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
10304         (gst_dvd_demux_process_private):
10305         * gst/mpegstream/gstdvddemux.h:
10306           Fix crash (#159759). Doesn't work, though. :-(.
10307
10308 2004-11-28  Benjamin Otte  <otte@gnome.org>
10309
10310         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
10311           more overwriting protection due to modifying channels one by one
10312           instead of all at once
10313
10314 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10315
10316         * gst/audioconvert/gstchannelmix.c:
10317         (gst_audio_convert_fill_normalize):
10318           Normalize using absolute values.
10319
10320 2004-11-28  Julien MOUTTE  <julien@moutte.net>
10321
10322         * configure.ac:
10323         * ext/Makefile.am:
10324         * ext/directfb/Makefile.am:
10325         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
10326         (gst_directfbvideosink_get_pixel_format),
10327         (gst_directfbvideosink_get_format_from_fourcc),
10328         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
10329         (gst_directfbvideosink_sink_link),
10330         (gst_directfbvideosink_change_state),
10331         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
10332         (gst_directfbvideosink_buffer_alloc),
10333         (gst_directfbvideosink_interface_supported),
10334         (gst_directfbvideosink_interface_init),
10335         (gst_directfbvideosink_navigation_send_event),
10336         (gst_directfbvideosink_navigation_init),
10337         (gst_directfbvideosink_set_property),
10338         (gst_directfbvideosink_get_property),
10339         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
10340         (gst_directfbvideosink_base_init),
10341         (gst_directfbvideosink_class_init),
10342         (gst_directfbvideosink_get_type), (plugin_init):
10343         * ext/directfb/directfbvideosink.h: Adding a first version of
10344         directfbvideosink.
10345         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
10346         more.
10347
10348 2004-11-28  Benjamin Otte  <otte@gnome.org>
10349
10350         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
10351           walk the samples backwards if out_channels > in_channels so we don't
10352           overwrite data
10353
10354 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10355
10356         * gst/audioconvert/Makefile.am:
10357         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
10358         (gst_audio_convert_link), (gst_audio_convert_change_state),
10359         (gst_audio_convert_channels):
10360         * gst/audioconvert/gstchannelmix.c:
10361         (gst_audio_convert_unset_matrix),
10362         (gst_audio_convert_fill_identical),
10363         (gst_audio_convert_fill_compatible),
10364         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
10365         (gst_audio_convert_fill_others),
10366         (gst_audio_convert_fill_normalize),
10367         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
10368         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
10369         * gst/audioconvert/gstchannelmix.h:
10370           Implement a channel mixer.
10371
10372 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
10373
10374         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
10375         * ext/alsa/gstalsa.h:
10376         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
10377         Make alsasink actually honor gst_element_set_clock and use that
10378         clock instead of its internal one.
10379
10380 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
10381
10382         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
10383         (gst_play_base_bin_change_state): nullify source and decoder when
10384         going from READY to NULL so that we don't try to do weird stuff with
10385         them when going from NULL to READY
10386         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
10387         instead of g_object_unref
10388         (gen_video_element), (gen_audio_element): more refcounting fixes, now
10389         it should be correct
10390         (gst_play_bin_change_state): don't call remove_sinks if we are
10391         currently disposing the object
10392
10393 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10394
10395         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
10396           Don't forget bass if it's there. Else left channel is silent...
10397
10398 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10399
10400         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
10401         (gst_a52dec_change_state):
10402           Don't do sample adjusting anymore, we use float audio now.
10403         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
10404           Don't fixate to non-existing properties.
10405
10406 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10407
10408         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
10409         (gst_a52dec_change_state):
10410           Advertise that we can do surround sound.
10411
10412 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10413
10414         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
10415           Add buffer-frames=0.
10416         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
10417         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
10418         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
10419         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
10420         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
10421         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
10422         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
10423         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
10424         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
10425         * ext/dvdread/dvdreadsrc.h:
10426           Add seeking, querying for bytes, sectors, title, angle and
10427           chapter. Handle multiple chapters. Relicense to LGPL because
10428           Billy agreed on that (thanks Billy!).
10429
10430 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
10431
10432         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
10433         call parent dispose method
10434
10435 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
10436
10437         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
10438         (gst_audio_clock_get_internal_time):
10439         Fix active <-> inactive transitions: ensure time value always
10440         grows and avoid abrupt value changes.
10441
10442 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
10443
10444         * configure.ac:
10445         * gst/tta/Makefile.am:
10446         * gst/tta/crc32.h:
10447         * gst/tta/filters.h:
10448         * gst/tta/gsttta.c:
10449         * gst/tta/gstttadec.c:
10450         * gst/tta/gstttadec.h:
10451         * gst/tta/gstttaparse.c:
10452         * gst/tta/gstttaparse.h:
10453         * gst/tta/ttadec.h:
10454           added TTA parser and decoder
10455
10456 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10457
10458         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10459         (probe_triggered), (check_queue), (buffer_underrun),
10460         (buffer_running), (buffer_overrun), (gen_source_element),
10461         (setup_source):
10462         * gst/playback/gstplaybasebin.h:
10463           Implement buffering. Needs some more work.
10464
10465 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10466
10467         * ext/theora/theoradec.c: (theora_dec_chain):
10468           Fix ilog mask range overflow.
10469
10470 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10471
10472         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
10473           Don't omit the last (which in case of dmix is the only :) )
10474           channel count. Don't set channels if <= 2.
10475
10476 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
10477
10478         * gst/playback/gstplaybin.c: (gen_video_element),
10479         (gen_audio_element): Removed 2 obsolete comments
10480
10481 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
10482
10483         * ext/vorbis/oggvorbisenc.c
10484         * ext/vorbis/vorbisenc.c :
10485           change description fields of those plugins to differentiate them
10486           (pitivi show Encoders by description, they had the same one)
10487
10488 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
10489
10490         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10491
10492         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
10493         (gst_play_bin_set_property), (gen_video_element),
10494         (gen_audio_element):
10495           Refcounting fixes for provided audio-/videosinks.
10496
10497 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10498
10499         * gst/playback/gstplaybin.c: (gen_video_element),
10500         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
10501           Don't reference all sinks, but only the video- and audiosinks.
10502           The vis. element should be disposed when we're done with it.
10503           We don't have any reason to keep it around. This fixes warnings
10504           when reusing playbin for playing multiple audio files with
10505           vis. enabled. Also release audio device on pause - idea stolen
10506           from Rhythmbox.
10507
10508 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10509
10510         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
10511         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
10512         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
10513         * ext/alsa/gstalsaplugin.c: (plugin_init):
10514         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
10515         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
10516         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
10517         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
10518         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
10519         (gst_faad_change_state), (plugin_init):
10520         * ext/faad/gstfaad.h:
10521         * ext/vorbis/vorbis.c: (plugin_init):
10522         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
10523         * gst-libs/gst/audio/Makefile.am:
10524         * gst-libs/gst/audio/audio.c: (plugin_init):
10525         * gst-libs/gst/audio/multichannel.c:
10526         (gst_audio_check_channel_positions),
10527         (gst_audio_get_channel_positions),
10528         (gst_audio_set_channel_positions),
10529         (gst_audio_set_structure_channel_positions_list),
10530         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
10531         (gst_audio_fixate_channel_positions):
10532         * gst-libs/gst/audio/multichannel.h:
10533         * gst-libs/gst/audio/testchannels.c: (main):
10534         * gst/audioconvert/gstaudioconvert.c:
10535         (gst_audio_convert_class_init), (gst_audio_convert_init),
10536         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
10537         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
10538         (gst_audio_convert_fixate), (gst_audio_convert_channels):
10539         * gst/audioconvert/plugin.c: (plugin_init):
10540           Surround sound support.
10541
10542 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10543
10544         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
10545           Fix position for discont if we're close as well. Nitpicking, but
10546           saves a few milliseconds of extra waiting or skipping.
10547
10548 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10549
10550         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
10551           We sometimes need parsers for playback, so add those too.
10552
10553 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10554
10555         * configure.ac:
10556         * gst/apetag/Makefile.am:
10557         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
10558         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
10559         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
10560         (gst_ape_demux_get_src_query_types),
10561         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
10562         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
10563         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
10564         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
10565         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
10566         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
10567         (gst_ape_demux_change_state):
10568         * gst/apetag/apedemux.h:
10569         * gst/apetag/apetag.c: (plugin_init):
10570         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
10571         (plugin_init):
10572           APE v1/2 tag reader plus typefind function.
10573
10574 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10575
10576         * configure.ac:
10577         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
10578         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
10579           Remove hacks for older core. Require newer core version
10580           accordingly.
10581
10582 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10583
10584         * gst/cdxaparse/Makefile.am:
10585         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
10586         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
10587         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
10588         * gst/cdxaparse/gstcdxaparse.h:
10589         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
10590         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
10591         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
10592         (gst_cdxastrip_get_src_query_types),
10593         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
10594         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
10595         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
10596         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
10597         * gst/cdxaparse/gstcdxastrip.h:
10598           SVCD/VCD header stripping separated from CDXA image parsing.
10599         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
10600         (plugin_init):
10601           Add VCD/SVCD header typefinding for VCD/SVCD.
10602         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
10603         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
10604         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
10605         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
10606         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
10607         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
10608         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
10609         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
10610         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
10611         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
10612         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
10613         * sys/vcd/vcdsrc.h:
10614           Fix up, add seeking, querying, URI interface. Works in totem now.
10615
10616 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
10617
10618         * configure.ac:
10619           back to CVS
10620
10621 === release 0.8.6 ===
10622
10623 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
10624
10625         * NEWS:
10626         * RELEASE:
10627         * configure.ac:
10628         * po/af.po:
10629         * po/az.po:
10630         * po/cs.po:
10631         * po/en_GB.po:
10632         * po/hu.po:
10633         * po/it.po:
10634         * po/nb.po:
10635         * po/nl.po:
10636         * po/or.po:
10637         * po/sq.po:
10638         * po/sr.po:
10639         * po/sv.po:
10640         * po/uk.po:
10641           releasing 0.8.6, "IOU Love"
10642
10643 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10644
10645         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10646
10647         * gst/playback/gstplaybasebin.c:
10648           Fix unplayable files error handling.  Fixes #158365
10649
10650 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10651
10652         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10653
10654         * gst/typefind/gsttypefindfunctions.c:
10655           Fix broken mp3 typefinding.  Fixes #158375
10656
10657 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10658
10659         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
10660
10661         * ext/ogg/gstoggdemux.c:
10662           Fix sync on broken files.  Fixes #158976
10663
10664 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10665
10666         patch by: Edward Hervey <bilboed@bilboed.com>
10667
10668         * ext/libpng/gstpngenc.c:
10669           Copy over buffer properties.  Fixes #158832
10670
10671 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10672
10673         patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
10674
10675         * ext/dvdread/dvdreadsrc.c:
10676           Fixes invalid reads (#158462)
10677
10678 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10679
10680         * sys/v4l/gstv4lsrc.c:
10681         * sys/v4l/gstv4lsrc.h:
10682         * sys/v4l/v4lsrc_calls.c:
10683           Probe less and cache it.  Fixes #159187.
10684
10685 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10686
10687         * gst/videorate/gstvideorate.c:
10688           Handle all video formats. Fixes #159186.
10689
10690 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
10691         * gst/synaesthesia/gstsynaesthesia.c:
10692         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
10693         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
10694         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
10695         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
10696         (gst_synaesthesia_change_state), (plugin_init):
10697         Fix up synaesthesia to work under different samplerates/ buffer sizes.
10698         Force 320x200 output, as that's the only thing the underlying
10699         synaesthesia implementation supports. Still needs to be made
10700         re-entrant.
10701
10702 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10703
10704         * configure.ac:
10705           Fix mpeg2enc configure check (similar to mplex check below).
10706
10707 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
10708
10709         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10710
10711         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10712           Fix for gcc-2.95 (fixes #158221).
10713
10714 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10715
10716         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
10717           Re-add clock distribution hack (until new core is released).
10718           Fixes #158125.
10719
10720 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
10721         * configure.ac:
10722           fix mplex configure check segfaulting on some systems (bug #140994)
10723
10724 2004-11-13  Benjamin Otte  <otte@gnome.org>
10725
10726         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
10727           add debugging
10728         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
10729           do a wait when we enter the loop func with no data available to
10730           write instead of getting into an 100% CPU loop by just returning and
10731           being called again by the scheduler
10732
10733 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
10734
10735         * configure.ac:
10736         * ext/libvisual/visual.c: (gst_visual_get_type),
10737         (libvisual_log_handler), (gst_visual_getcaps),
10738         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
10739         (plugin_init):
10740           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
10741         * ext/smoothwave/Makefile.am:
10742         * ext/smoothwave/demo-osssrc.c: (main):
10743         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
10744         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
10745         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
10746         (plugin_init):
10747         * ext/smoothwave/gstsmoothwave.h:
10748           Make gstsmoothwave a working element in the 20th century.
10749
10750         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
10751           Fix incorrect link function
10752
10753 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10754
10755         * gst/volume/gstvolume.c:
10756           Allow buffer-frames=0.
10757
10758 2004-11-12 Iain <iaingnome@gmail.com>
10759
10760         * configure.ac: Check for polypaudio
10761
10762         * ext/Makefile.am: Build the polyp dir
10763
10764         * ext/polyp: The polypsink sources.
10765
10766 2004-10-30 Iain <iaingnome@gmail.com>
10767
10768         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
10769         caps to reflect the new number of channels.
10770
10771 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10772
10773         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
10774           Fix for negotiation order problem. This would show when the
10775           ALSA loopfuction was called before any other function. ALSA
10776           wouldn't do anything because we're not negotiated yet, leading
10777           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
10778
10779 2004-11-11  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
10780
10781         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10782
10783         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
10784           No warnings (#157986).
10785
10786 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10787
10788         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
10789           Prefer apev1/2 and id3v1 (at end of file) over musepack.
10790
10791 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10792
10793         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
10794           Signal no-more-pads (so it works in playbin).
10795
10796 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10797
10798         * ext/musepack/gstmusepackreader.cpp:
10799           Workaround for older core.
10800
10801 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10802
10803         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
10804           Actually test for odd width/height rather than testing whether
10805           a temporary variable that was 0 before we subtracted 1 is now
10806           not equal to zero (which it always is).
10807
10808 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10809
10810         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
10811         Fix compilation if HAVE_XVIDEO is not defined
10812
10813 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
10814
10815         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
10816         Fix compilation if HAVE_XVIDEO is not defined
10817
10818 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
10819
10820         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
10821         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
10822         (gst_goom_change_state), (plugin_init):
10823         Use the bytestream adapter so goom doesn't depend on the input
10824         buffer size.
10825         Add a debug category
10826
10827 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10828
10829         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
10830           Only set hardware parameters *after* negotiation. Before
10831           negotiation, it will set ANY and that seems to cause crashes
10832           (see e.g. #151288, #153227).
10833
10834 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10835
10836         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
10837           This seems to be antique leftover. It needs to pass error
10838           checking.
10839         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
10840         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
10841         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
10842         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
10843           Fix GstXOverlay implementation (#151059).
10844
10845 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10846
10847         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
10848           Don't assert (#157853).
10849
10850 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10851
10852         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
10853           Fix bytes/samples confustion.
10854         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
10855           Fix for underrun (#144389).
10856
10857 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10858
10859         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
10860           Disable halfway-seek for pending release (since it needs a new
10861           core release).
10862
10863 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
10864
10865         * sys/v4l/gstv4lsrc.c:
10866         * sys/v4l/gstv4lsrc.h:
10867         * sys/v4l/v4lsrc_calls.c:
10868           add autoprobe-fps property so we can separate autoprobing parts
10869
10870 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
10871
10872         * sys/v4l/gstv4lsrc.c:
10873         * sys/v4l/v4lsrc_calls.c:
10874         initialise fourcc to catch unset fourcc's, and debug
10875
10876 2004-11-09  Wim Taymans  <wim@fluendo.com>
10877
10878         * gst/playback/README:
10879         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
10880         * gst/playback/gstplaybin.c: (gst_play_bin_init),
10881         (gst_play_bin_dispose), (gst_play_bin_set_property),
10882         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
10883         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
10884         (gst_play_bin_get_formats), (gst_play_bin_convert),
10885         (gst_play_bin_get_query_types), (gst_play_bin_query):
10886         Cleanups and some more documentation.
10887
10888 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
10889
10890         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
10891         (gst_cacasink_init), (gst_cacasink_chain):
10892         * ext/libcaca/gstcacasink.h:
10893         Cacasink inherits from VideoSink, so let that store the clock.
10894
10895 2004-11-09  Wim Taymans  <wim@fluendo.com>
10896
10897         * gst/playback/README:
10898         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
10899         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
10900         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
10901         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
10902         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
10903         (setup_sinks):
10904         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
10905         (gst_stream_info_is_mute), (gst_stream_info_set_property):
10906         * gst/playback/gststreaminfo.h:
10907         Updated README.
10908         Only switch groups if all streams have muted (EOSed).
10909         Send Tags in sync with the stream playback instead of in
10910         the playback/preroll phase.
10911         Some cleanups, free the fakesrc elements.
10912
10913 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10914
10915         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
10916           buffer-frames property was missing
10917         * ext/arts/gst_arts.c:
10918           rate missing from sinkcaps
10919         * ext/audiofile/gstafparse.c:
10920         * ext/audiofile/gstafsink.c:
10921         * ext/audiofile/gstafsrc.c:
10922         * ext/swfdec/gstswfdec.c:
10923           int audio doesn't know buffer-frames
10924         * ext/cdparanoia/gstcdparanoia.c:
10925           int audio doesn't know chunksize either
10926         * ext/nas/nassink.c:
10927           it's endianness, not endianess
10928         * gst-libs/gst/audio/audio.h:
10929           make float standard pad template caps really describe float
10930         * gst/law/mulaw.c: (linear_factory):
10931           signed only, please
10932         * gst/mpegstream/gstdvddemux.c:
10933           widths of 20 are not valid
10934
10935 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
10936
10937         Submitted by: Luca Ferretti <elle.uca@infinito.it>
10938
10939         * po/LINGUAS:
10940         * po/it.po:
10941           Add Italian
10942
10943 2004-11-08  Wim Taymans  <wim@fluendo.com>
10944
10945         * gst/playback/README:
10946         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
10947         * gst/playback/gstplaybasebin.c: (probe_triggered),
10948         (gst_play_base_bin_change_state):
10949         Updated README, added more comments for fixmes etc..
10950
10951 2004-11-08  Wim Taymans  <wim@fluendo.com>
10952
10953         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
10954         We can remove this hack now.
10955
10956 2004-11-08  Wim Taymans  <wim@fluendo.com>
10957
10958         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
10959         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
10960         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
10961         Only mix AYUV for maximum quality.
10962
10963 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10964
10965         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
10966         (gst_ogg_demux_push), (gst_ogg_pad_push):
10967           Let's act as if we're synchronized now! :).
10968         * ext/theora/theoradec.c: (theora_dec_chain):
10969           Add some debug.
10970
10971 2004-11-08  Wim Taymans  <wim@fluendo.com>
10972
10973         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
10974         (gst_alpha_set_property), (gst_alpha_sink_link),
10975         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
10976         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
10977         (gst_alpha_init_params), (gst_alpha_chain):
10978         Implement alpha functions for AYUV too, this increases
10979         accuracy quite a bit.
10980
10981 2004-11-08  Wim Taymans  <wim@fluendo.com>
10982
10983         * gst/ffmpegcolorspace/avcodec.h:
10984         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10985         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
10986         (gst_ffmpegcsp_avpicture_fill):
10987         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10988         (gst_ffmpegcsp_caps_remove_format_info):
10989         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
10990         (shrink12), (img_get_alpha_info), (deinterlace_line),
10991         (deinterlace_line_inplace):
10992         * gst/ffmpegcolorspace/imgconvert_template.h:
10993         Added AYUV colorspace and handle RGBA a bit more respectful.
10994
10995 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10996
10997         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
10998           Actually always send a discont (cornercase when resending the
10999           same serial-tagged chain twice).
11000
11001 2004-11-08  Julien MOUTTE  <julien@moutte.net>
11002
11003         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
11004         (gst_ximagesink_finalize):
11005         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
11006         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
11007
11008 2004-11-08  Wim Taymans  <wim@fluendo.com>
11009
11010         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
11011         Don't segfault on NULL data.
11012
11013 2004-11-08  Wim Taymans  <wim@fluendo.com>
11014
11015         * gst/playback/gstdecodebin.c: (unlinked):
11016         * gst/playback/gstplay-marshal.list:
11017         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11018         (gst_play_base_bin_init), (group_create), (get_active_group),
11019         (get_building_group), (group_destroy), (group_commit),
11020         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
11021         (add_element_stream), (no_more_pads), (probe_triggered),
11022         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
11023         (state_change), (setup_source), (gst_play_base_bin_get_property),
11024         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
11025         (gst_play_base_bin_link_stream),
11026         (gst_play_base_bin_get_streaminfo):
11027         * gst/playback/gstplaybasebin.h:
11028         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11029         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
11030         Add support for chained ogg files. Prepare for playlist
11031         support. This patch introduces the concept of pad groups, which
11032         together compose one playable media file.
11033
11034 2004-11-07  David Schleef  <ds@schleef.org>
11035
11036         * testsuite/gst-lint: Check for pad templates that aren't statically
11037         scoped.
11038
11039 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11040
11041         * configure.ac:
11042         * ext/Makefile.am:
11043         * ext/musepack/Makefile.am:
11044         * ext/musepack/gstmusepackdec.cpp:
11045         * ext/musepack/gstmusepackdec.h:
11046         * ext/musepack/gstmusepackreader.cpp:
11047         * ext/musepack/gstmusepackreader.h:
11048           Add musepack decoder.
11049         * ext/faad/gstfaad.c: (gst_faad_base_init):
11050           Make pad templates static.
11051         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
11052         (plugin_init):
11053           Add musepack typefinder, make mp3 typefinding work halfway stream,
11054           which doesn't actually work yet because id3demux doesn't implement
11055           _get_length().
11056
11057 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11058
11059         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
11060         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
11061           Fix interrupt event handling (#144436).
11062
11063 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11064
11065         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
11066           Hide unused glory.
11067
11068 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
11069
11070         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11071
11072         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
11073           Fix weird caps (#157548).
11074
11075 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
11076
11077         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11078
11079         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
11080           Add missing NULL terminator (#157543).
11081
11082 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11083
11084         * gst/tcp/gsttcp.h:
11085         * gst/tcp/gsttcpclientsink.c:
11086         * gst/tcp/gsttcpclientsrc.c:
11087         * gst/tcp/gsttcpserversink.c:
11088         * gst/tcp/gsttcpserversrc.c:
11089           ports can go up to 65535.  Move common defines to gsttcp.h
11090
11091 2004-11-05  Wim Taymans  <wim@fluendo.com>
11092
11093         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
11094         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
11095         Added two more colorspaces.
11096
11097 2004-11-05  Wim Taymans  <wim@fluendo.com>
11098
11099         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11100         (gst_ffmpegcsp_avpicture_fill):
11101         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
11102         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
11103         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
11104         More stride fixes.
11105
11106 2004-11-05  Wim Taymans  <wim@fluendo.com>
11107
11108         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
11109         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
11110         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
11111         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
11112         (gst_videomixer_loop):
11113         More stride fixes.
11114
11115 2004-11-05  Benjamin Otte  <otte@gnome.org>
11116
11117         * ext/mad/gstmad.c: (gst_mad_chain):
11118           don't overflow data buffer. Flush not needed sync data when syncing
11119           failed.
11120
11121 2004-11-04  Wim Taymans  <wim@fluendo.com>
11122
11123         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
11124         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
11125         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
11126         (gst_alpha_init_params), (gst_alpha_chain),
11127         (gst_alpha_change_state):
11128         Updated the chroma keying algorithm with something more
11129         sophisticated.
11130
11131 2004-11-03  Wim Taymans  <wim@fluendo.com>
11132
11133         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
11134         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
11135         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
11136         Fix stride issues. Does not completely work for odd
11137         heights.
11138
11139 2004-11-03  Wim Taymans  <wim@fluendo.com>
11140
11141         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
11142         (gst_alpha_chroma_key), (gst_alpha_chain):
11143         Fix stride issues. Does not completely work for odd
11144         heights.
11145
11146 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
11147
11148         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
11149         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
11150         leak fixes
11151
11152 2004-11-03  Wim Taymans  <wim@fluendo.com>
11153
11154         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11155         (gst_ffmpegcsp_avpicture_fill):
11156         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
11157         (avpicture_alloc):
11158         * gst/ffmpegcolorspace/imgconvert_template.h:
11159         Use correct _fill function to get correct strides.
11160
11161 2004-11-02  David Schleef  <ds@schleef.org>
11162
11163         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
11164         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
11165         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
11166         Change all g_print()s to debugging.  Add a bunch of consistency
11167         checks.
11168
11169 2004-11-02  Wim Taymans  <wim@fluendo.com>
11170
11171         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
11172         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
11173         (unlinked), (no_more_pads), (close_link):
11174         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
11175         (unknown_type), (add_element_stream), (new_decoded_pad),
11176         (removed_decoded_pad), (setup_source):
11177         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
11178         (gst_stream_info_class_init), (gst_stream_info_init),
11179         (gst_stream_info_new), (gst_stream_info_dispose),
11180         (stream_info_mute_pad), (gst_stream_info_set_property),
11181         (gst_stream_info_get_property):
11182         * gst/playback/gststreaminfo.h:
11183         Fix playback of multiple files.
11184         a slightly different approach to handling dynamic pad removals.
11185         This one only looks at pads that we have linked.
11186
11187 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
11188
11189         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
11190         free" warning from libc.
11191
11192 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11193
11194         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
11195         (get_unconnected_element), (remove_starting_from), (pad_removed),
11196         (close_link):
11197           Implement support for dynamic pad changing. We listen to "live"
11198           pad removals (i.e. while playing) and re-setup autoplugging
11199           after that. Playbasebin/playbin need some more work for this
11200           to finally work, but decodebin supports (and replugs) chained
11201           ogg now.
11202
11203 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
11204
11205         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
11206         (gst_alsa_finalize):
11207         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
11208         (gst_cdaudio_finalize):
11209         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
11210         (cdparanoia_finalize):
11211         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
11212         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
11213         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
11214         (dvdreadsrc_finalize):
11215         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
11216         (gst_flacdec_finalize):
11217         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
11218         (gst_flacenc_finalize):
11219         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
11220         (gst_gnomevfssink_finalize):
11221         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
11222         (gst_gnomevfssrc_finalize):
11223         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
11224         (gst_fameenc_finalize):
11225         * ext/nas/nassink.c: (gst_nassink_class_init),
11226         (gst_nassink_finalize):
11227         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
11228         (gst_sdlvideosink_class_init):
11229         * ext/sndfile/gstsf.c: (gst_sf_dispose):
11230         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
11231         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
11232         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
11233         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
11234         (gst_x_window_listener_dispose):
11235         * gst/audioscale/gstaudioscale.c:
11236         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
11237         (play_on_demand_finalize):
11238         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
11239         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
11240         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
11241         (cdplayer_finalize):
11242         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
11243         (gst_glimagesink_class_init):
11244         * sys/oss/gstosselement.c: (gst_osselement_class_init),
11245         (gst_osselement_finalize):
11246         * sys/oss/gstosssink.c: (gst_osssink_dispose):
11247         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
11248         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
11249           Fixes a bunch of problems with finalize and dispose functions,
11250           either assumptions that dispose is only called once, or not calling
11251           the parent class dispose/finalize function
11252
11253 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
11254
11255         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
11256           added two api precondition guards
11257           use g_strdup with getenv to fix crash when using ENVVAR
11258
11259 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
11260         * ext/esd/esdsink.c: (gst_esdsink_class_init),
11261         (gst_esdsink_finalize):
11262         Use a finalize function, not dispose, and more importantly,
11263         call the parent class finalize function too
11264
11265 2004-11-01  Johan Dahlin  <johan@gnome.org>
11266
11267         * ext/ogg/gstoggdemux.c:
11268         * gst/tags/gstvorbistag.c:
11269         Plug leaks.
11270
11271 2004-10-31  Benjamin Otte  <otte@gnome.org>
11272
11273         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
11274           lotsa memleaks today. But they're all small...
11275
11276 2004-10-31  Benjamin Otte  <otte@gnome.org>
11277
11278         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
11279           another memleak crushed
11280
11281 2004-10-31  Benjamin Otte  <otte@gnome.org>
11282
11283         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
11284           fix memleak
11285
11286 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11287
11288         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
11289           Hack to prevent crash when going to READY inside signal handler
11290           while this function is active.
11291
11292 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11293
11294         * gst/ffmpegcolorspace/Makefile.am:
11295         * gst/ffmpegcolorspace/avcodec.h:
11296         * gst/ffmpegcolorspace/common.h:
11297         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
11298         * gst/ffmpegcolorspace/dsputil.h:
11299         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
11300         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11301         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
11302         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
11303         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
11304         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
11305         (gst_ffmpegcsp_avpicture_fill):
11306         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
11307         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11308         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
11309         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
11310         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
11311         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
11312         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
11313         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
11314         * gst/ffmpegcolorspace/imgconvert.c:
11315         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
11316         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
11317         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
11318         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
11319         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
11320         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
11321         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
11322         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
11323         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
11324         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
11325         (grow21), (grow22), (grow41), (grow44), (conv411),
11326         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
11327         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
11328         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
11329         (avpicture_free), (is_yuv_planar), (img_convert),
11330         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
11331         (deinterlace_line_inplace), (deinterlace_bottom_field),
11332         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
11333         * gst/ffmpegcolorspace/imgconvert_template.h:
11334         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
11335         * gst/ffmpegcolorspace/mmx.h:
11336         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
11337         (av_fast_realloc), (av_mallocz_static), (av_free_static),
11338         (av_freep), (avcodec_get_context_defaults),
11339         (avcodec_alloc_context), (avcodec_init):
11340           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
11341           handling plus update from ffmpeg CVS. Large clean-up.
11342
11343 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11344
11345         * gst/playback/Makefile.am:
11346           We need the marshallers for decodebin, too.
11347
11348 2004-10-30  David Schleef  <ds@schleef.org>
11349
11350         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
11351           quicktime typefinding work with 64-bit offsets.
11352
11353 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
11354
11355         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
11356           Set EOS on the element when processing an EOS event.
11357         * ext/speex/gstspeexdec.h:
11358         * ext/speex/gstspeexenc.h:
11359           Only keep a const ptr to the mode
11360         * gst-libs/gst/riff/riff-media.c:
11361         (gst_riff_create_audio_caps_with_data),
11362         (gst_riff_create_audio_template_caps):
11363           Allow WMAV3, with up to 6 channels.
11364         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
11365           Don't call gst_pad_set_event_function on a sink pad.
11366         * gst/mpegstream/gstdvddemux.c:
11367         (gst_dvd_demux_get_subpicture_stream),
11368         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
11369           Copy the explicit caps that were set across to the cur_* pads,
11370           instead of trying to use a possibly non-existent negotiated caps.
11371           Reset the type of subpicture pads to UNKNOWN after calling
11372           init_stream, so that the caps get set.
11373
11374 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
11375
11376         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11377
11378         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
11379           Don't touch buffer if it is of size 0 (fixes #151064).
11380
11381 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11382
11383         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
11384           Synchronized discont handling.
11385
11386 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11387
11388         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
11389         (gst_ogg_demux_push):
11390           Make seeking sort-of exact again (fixes #156387).
11391
11392 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11393
11394         * gst/playback/gstplaybasebin.c: (unknown_type),
11395         (add_element_stream), (new_decoded_pad),
11396         (gst_play_base_bin_change_state):
11397         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
11398         (gst_stream_info_init), (gst_stream_info_new),
11399         (gst_stream_info_dispose), (gst_stream_info_get_property):
11400         * gst/playback/gststreaminfo.h:
11401           Make caps explicitely available. Makes testing for unsupported
11402           types possible. Improves error reporting.
11403
11404 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11405
11406         * gst/audioconvert/gstaudioconvert.c:
11407         (gst_audio_convert_buffer_to_default_format):
11408           Really don't touch read-only buffers (#156563).
11409
11410 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
11411
11412         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11413
11414         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
11415           Fix memleak (#155223).
11416
11417 2004-10-29  Wim Taymans  <wim@fluendo.com>
11418
11419         * gst/tcp/.cvsignore:
11420         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
11421         (gst_multifdsink_class_init), (gst_multifdsink_init),
11422         (gst_multifdsink_add), (gst_multifdsink_remove),
11423         (gst_multifdsink_remove_client_link), (is_sync_frame),
11424         (gst_multifdsink_new_client),
11425         (gst_multifdsink_handle_client_write),
11426         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
11427         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
11428         (gst_multifdsink_get_property):
11429         * gst/tcp/gstmultifdsink.h:
11430         Added burst on connect sync_method, deprecated sync_clients,
11431         streamlined the sync code some more.
11432
11433 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11434
11435         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
11436         (gst_play_base_bin_change_state):
11437           Improve error reporting.
11438
11439 2004-10-28  Wim Taymans  <wim@fluendo.com>
11440
11441         * gst/tcp/Makefile.am:
11442         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
11443         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
11444         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
11445         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
11446         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
11447         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
11448         (gst_fdset_wait):
11449         Added more locks around fdset structures. Fixed/reworked
11450         the poll array resizing code.
11451         Added stress test for fdset.
11452
11453 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11454
11455         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
11456         fix build
11457
11458 2004-10-28  Benjamin Otte  <otte@gnome.org>
11459
11460         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
11461           fix link function to always query channels and query width for
11462           floats
11463         * configure.ac:
11464           add equalizer dir
11465         * gst/equalizer/Makefile.am:
11466         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
11467         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
11468         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
11469         (arg_to_scale), (setup_filter),
11470         (gst_iir_equalizer_compute_frequencies),
11471         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
11472         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
11473         (plugin_init):
11474           add an equalizer
11475
11476 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
11477
11478         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
11479
11480         * po/LINGUAS:
11481         * po/nb.po:
11482           Added Norwegian Bokmaal translation
11483
11484 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11485
11486         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
11487           Don't break on options (fixes #156488).
11488
11489 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
11490
11491         * configure.ac:
11492         * ext/cdaudio/Makefile.am:
11493         * sys/Makefile.am:
11494           fix build on older automake
11495
11496 2004-10-26  Wim Taymans  <wim@fluendo.com>
11497
11498         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
11499         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
11500         Allow a little margin when negotiating the framerate.
11501
11502 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
11503
11504         * gst/level/gstlevel.c:
11505           synchonised naming of pads and pad-templates
11506
11507 2004-10-26  Wim Taymans  <wim@fluendo.com>
11508
11509         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
11510         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
11511         (_find_streams_check), (gst_ogg_demux_push):
11512         Fix EOS again. Needs to be done in a better way. We should not
11513         remove the pad if there is no new chained stream.
11514
11515 2004-10-26 Iain <iaingnome@gmail.com>
11516
11517         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
11518         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
11519         of the caps.
11520         * gst/interleave/interleave.c (interleave_class_init): Hook up release
11521         pad.
11522         (interleave_release_pad): Remove the pad.
11523         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
11524         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
11525         the set device.
11526         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
11527         attrs
11528         (gst_xvimagesink_xcontext_clear): Free the xcontext.
11529         (gst_xvimagesink_finalize): Free the par.
11530
11531 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11532
11533         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
11534         (gst_avimux_stop_file):
11535           First calculate the rate, and only then use it. Hdr.rate is a
11536           multiple and not a derivative of hdr.scale. Scale is not the
11537           same as blockalign but is solely related to rate.
11538
11539 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11540
11541         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
11542         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
11543           Implement seeking.
11544
11545 2004-10-25  James Henstridge  <james@jamesh.id.au>
11546
11547         Reviewed by:  David Schleef  <ds@schleef.org>
11548
11549         * examples/gstplay/player.c: (got_stream_length), (main):
11550         * examples/seeking/cdplayer.c: (update_scale):
11551         * examples/seeking/seek.c: (format_value), (update_scale):
11552         * examples/seeking/spider_seek.c: (format_value), (update_scale),
11553         (stop_seek):
11554         Build fixes on AMD64.
11555
11556 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11557
11558         reviewed by: Ronald Bultje <rbultje at gnome dot org>
11559
11560         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
11561         Fix for some v4l cards which hang in v4lsrc
11562
11563 2004-10-25  Wim Taymans  <wim@fluendo.com>
11564
11565         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
11566         (gst_ogg_demux_push), (gst_ogg_chains_clear):
11567         Make sure to remove the pad when a new chain is
11568         encountered. Set some vars to NULL so we don't try
11569         to reference freed memory.
11570
11571 2004-10-25  Wim Taymans  <wim@fluendo.com>
11572
11573         * examples/seeking/Makefile.am:
11574         * examples/seeking/cdplayer.c: (update_scale):
11575         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
11576         * examples/seeking/playbin.c: (make_playerbin_pipeline),
11577         (format_value), (update_scale), (iterate), (start_seek),
11578         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
11579         (print_usage), (main):
11580         Added some more examples, update others.
11581
11582 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11583
11584         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
11585         * ext/speex/gstspeexdec.c: (speex_dec_chain):
11586         * ext/theora/theoradec.c: (theora_dec_chain):
11587         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
11588           Add codec-name metadata.
11589
11590 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
11591
11592         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11593
11594         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
11595         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
11596         * ext/alsa/gstalsamixertrack.h:
11597         * po/POTFILES.in:
11598           ALSA mixer track label internationalization (#154054).
11599
11600 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11601
11602         * ext/theora/theoradec.c: (theora_dec_chain):
11603           Export bitrate as metadata.
11604
11605 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11606
11607         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
11608         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
11609         * ext/alsa/gstalsamixertrack.h:
11610           Fix names, fix loop.
11611
11612 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11613
11614         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
11615         (speex_dec_convert):
11616           sinkconvert function so oggdemux can get the file length (totem).
11617
11618 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
11619
11620         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11621
11622         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
11623           Don't push incomplete packets.
11624         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
11625           Fix MPEG-4 audio typefinding.
11626
11627 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11628
11629         * sys/v4l/Makefile.am:
11630         * sys/v4l/gstv4l.c: (plugin_init):
11631         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
11632         (gst_v4lelement_init), (gst_v4lelement_dispose),
11633         (gst_v4lelement_change_state):
11634         * sys/v4l/gstv4lelement.h:
11635         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
11636         (gst_v4l_xoverlay_close), (idle_refresh),
11637         (gst_v4l_xoverlay_set_xwindow_id):
11638         * sys/v4l/gstv4lxoverlay.h:
11639         * sys/v4l/v4l-overlay_calls.c:
11640         * sys/v4l/v4l_calls.h:
11641         * sys/v4l2/Makefile.am:
11642         * sys/v4l2/gstv4l2.c: (plugin_init):
11643         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
11644         (gst_v4l2element_init), (gst_v4l2element_dispose),
11645         (gst_v4l2element_change_state):
11646         * sys/v4l2/gstv4l2element.h:
11647         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
11648         (gst_v4l2_xoverlay_close), (idle_refresh),
11649         (gst_v4l2_xoverlay_set_xwindow_id):
11650         * sys/v4l2/gstv4l2xoverlay.h:
11651         * sys/v4l2/v4l2-overlay_calls.c:
11652         * sys/v4l2/v4l2_calls.h:
11653           Remove client-side overlay handling, use the X-server v4l plugin
11654           for that. Nicer overlay, less code. Also make the plugin
11655           compileable without X (but then without overlay, obviously).
11656           Makes xwindowlistener obsolete, should we remove that?
11657
11658 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11659
11660         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
11661         (gst_osssrc_src_query):
11662         * sys/oss/gstosssrc.h:
11663           OK, so people want offset in DEFAULT. This time, actually fix all
11664           cases.
11665         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
11666           Add FPS properly.
11667
11668 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11669
11670         * gst/asfdemux/gstasfmux.c:
11671         * gst/avi/gstavimux.c:
11672           Framerate.
11673
11674 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11675
11676         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
11677           Fix properties (channel, norm, frequency).
11678
11679 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11680
11681         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
11682           Flag typo.
11683         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
11684           No warnings.
11685
11686 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11687
11688         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
11689           Fix hang.
11690
11691 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11692
11693         * sys/v4l2/gstv4l2element.h:
11694           Yet Another Hack (tm) for kernel header borkedness.
11695         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
11696         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
11697         (gst_v4l2src_link), (gst_v4l2src_getcaps),
11698         (gst_v4l2src_change_state):
11699         * sys/v4l2/gstv4l2src.h:
11700         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
11701         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
11702           Fix caps, keep track of state, work.
11703
11704 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11705
11706         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
11707           Quiet.
11708
11709 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11710
11711         * sys/oss/gstosssrc.c: (gst_osssrc_get):
11712           Don't mix bytes and samples.
11713
11714 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11715
11716         * ext/ogg/gstoggmux.c:
11717           Basic pad template which accepts OGM tracks, speex, flac, vorbis
11718           and theora. Any is incorrect.
11719         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
11720           Fix caps.
11721         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
11722         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
11723         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
11724         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
11725         * sys/v4l/gstv4lmjpegsrc.h:
11726         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
11727         (gst_v4lsrc_change_state):
11728         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
11729         (gst_v4lmjpegsrc_capture_stop):
11730           Fix caps. Keep track of internal state. Work.
11731
11732 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11733
11734         * ext/Makefile.am:
11735           Fix the build fixes.
11736
11737 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11738
11739         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
11740         (gst_ogg_demux_src_event), (_find_chain_seek),
11741         (gst_ogg_pad_push):
11742           Check for pad availability before using it.
11743         * ext/ogg/gstoggdemux.c: (_find_chain_process):
11744           Fix parsing of chained ogg. Needs more work on the decoder side.
11745
11746 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11747
11748         * gst/spectrum/Makefile.am:
11749         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
11750         (idle_func):
11751           Fix demo and reenable it. Yes, I'm currently playing with audio
11752           analysis tools
11753
11754 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11755
11756         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
11757           We love it if files that start at zero work too...
11758
11759 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11760
11761         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
11762           Handle files with missing EOS headers.
11763
11764 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11765
11766         * gst/tcp/gsttcpserversink.c:
11767         (gst_tcpserversink_handle_server_read),
11768         (gst_tcpserversink_init_send):
11769         Zero some variables first (need for accept not to return EINVAL)
11770
11771 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11772
11773         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
11774         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
11775         * ext/theora/theoradec.c: (theora_dec_sink_convert),
11776         (theora_dec_chain):
11777         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
11778         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
11779           Seeking and querying finetune.
11780
11781 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
11782
11783         * configure.ac:
11784         * ext/Makefile.am:
11785         * ext/raw1394/Makefile.am:
11786           fix the build
11787
11788 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11789
11790         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
11791           Wrong return.
11792         * gst/playback/Makefile.am:
11793         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
11794         * gst/playback/gstplay-marshal.list:
11795         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
11796           Fix marshallers.
11797
11798 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11799
11800         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
11801           Silence.
11802
11803 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11804
11805         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
11806         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
11807         (gst_ogg_pad_push):
11808           Yay for non-lineair granulepos in theora.
11809
11810 2004-10-18  Wim Taymans  <wim@fluendo.com>
11811
11812         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
11813         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
11814         * ext/dv/gstdvdec.h:
11815         Make sure we renegotiate aspect ratio when the camera switches.
11816
11817 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11818
11819         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
11820         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
11821           Start at zero.
11822         * ext/theora/theoradec.c: (theora_dec_chain):
11823           Skip headers. Bad idea for chained ogg, but fixes seeking.
11824
11825 2004-10-18  Wim Taymans  <wim@fluendo.com>
11826
11827         * configure.ac:
11828         I swear, this is the last time I touch this.
11829
11830 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11831
11832         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
11833         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
11834         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
11835           Faster seeking.
11836         * ext/theora/theoradec.c: (theora_dec_sink_convert):
11837           Time-to-default conversion.
11838         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
11839           Don't error on unknown packets, just skip. We should probably
11840           read them if we want to support chained ogg.
11841
11842 2004-10-18  Wim Taymans  <wim@fluendo.com>
11843
11844         * configure.ac:
11845         Added cdaudio to wrong list.
11846
11847 2004-10-18  Wim Taymans  <wim@fluendo.com>
11848
11849         * configure.ac:
11850         Revive cdaudio.
11851
11852 2004-10-18  Wim Taymans  <wim@fluendo.com>
11853
11854         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
11855         (gst_dvdec_video_link), (gst_dvdec_push):
11856         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
11857         (gst_smokeenc_resync), (gst_smokeenc_chain):
11858         Fix mimetype on smoke encoder.
11859         Add aspect ratio to dvdec. Not sure if these
11860         values are correct though....
11861
11862 2004-10-18  Wim Taymans  <wim@fluendo.com>
11863
11864         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
11865         Fix vorbis property descriptions and ranges.
11866
11867 2004-10-18  Wim Taymans  <wim@fluendo.com>
11868
11869         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
11870         Really do nothing when no data is available.
11871         Go to the playing state when the stream is not seekable
11872         instead of failing.
11873
11874 2004-10-18  Wim Taymans  <wim@fluendo.com>
11875
11876         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
11877         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
11878         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
11879         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
11880         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
11881         Added uri handler for cd://
11882         Port to new API.
11883
11884 2004-10-18  Wim Taymans  <wim@fluendo.com>
11885
11886         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
11887         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
11888         (try_to_link_1), (no_more_pads), (close_link), (type_found):
11889         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
11890         (remove_prerolls), (unknown_type), (add_element_stream),
11891         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
11892         (gst_play_base_bin_remove_element),
11893         (gst_play_base_bin_link_stream):
11894         * gst/playback/gstplaybin.c: (gen_video_element),
11895         (gen_vis_element), (remove_sinks), (setup_sinks):
11896         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
11897         (gst_stream_info_get_type), (gst_stream_info_class_init),
11898         (gst_stream_info_init), (gst_stream_info_new),
11899         (gst_stream_info_dispose), (stream_info_mute_pad),
11900         (gst_stream_info_set_property), (gst_stream_info_get_property):
11901         * gst/playback/gststreaminfo.h:
11902         Add sink padtemplate to decodebin.
11903         Added some more comments.
11904         Make queue size configurable in playbasebin.
11905         Added possibility to use elements as sinks (ex cdaudio).
11906
11907 2004-10-15  Wim Taymans  <wim@fluendo.com>
11908
11909         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
11910         (gst_speexenc_chain):
11911         Fix speex timestamps so that it gets muxed properly.
11912
11913 2004-10-15  Wim Taymans  <wim@fluendo.com>
11914
11915         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
11916         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
11917         (gst_dv1394src_init), (gst_dv1394src_dispose),
11918         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
11919         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
11920         (gst_dv1394src_event), (gst_dv1394src_get_formats),
11921         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
11922         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
11923         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
11924         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
11925         * ext/raw1394/gstdv1394src.h:
11926         Added conversion/query functions.
11927         Update buffer timestamps,
11928         Added signals.
11929         Added uri dv:// so it might play from the firewire in playbin.
11930         Fix a possible leak.
11931         Added debugging.
11932
11933 2004-10-15  Wim Taymans  <wim@fluendo.com>
11934
11935         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
11936         (gst_dv1394src_init), (gst_dv1394src_set_property),
11937         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
11938         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
11939         * ext/raw1394/gstdv1394src.h:
11940         Added AV/C VTR control support needed for some cameras.
11941         Added automatic port detection.
11942         Added properties for selecting the channel.
11943         The configure.ac script is not yet updated to reflect the
11944         new libavc1394 and librom1394 dependencies.
11945
11946 2004-10-15  Wim Taymans  <wim@fluendo.com>
11947
11948         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
11949         (qtdemux_parse), (gst_qtdemux_handle_esds):
11950         An esds box is not a container.
11951         Fix parsing of mp4v boxes.
11952         Do not try to renegotiate fps for each frame. Need to
11953         find a better method. This should fix mp4 playback.
11954
11955 2004-10-14  David Schleef  <ds@schleef.org>
11956
11957         * configure.ac: update for swfdec-0.3 and liboil-0.2
11958         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
11959         * ext/swfdec/gstswfdec.h: same
11960         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
11961         * gst/videotestsrc/videotestsrc.c: same
11962
11963 2004-10-14  Wim Taymans  <wim@fluendo.com>
11964
11965         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
11966         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
11967         (is_sync_frame), (gst_multifdsink_new_client),
11968         (gst_multifdsink_handle_client_write),
11969         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
11970         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
11971         Turn warnings into info.
11972         Don't allow a state change in the streaming thread.
11973
11974 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11975
11976         * ext/vorbis/oggvorbisenc.c:
11977         * ext/vorbis/vorbisdec.c:
11978           fix template sample rate
11979
11980 2004-10-13  Wim Taymans  <wim@fluendo.com>
11981
11982         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
11983         Decoding the header first fixes some problems in resyncing
11984         in more mp3s.
11985
11986 2004-10-12  Wim Taymans  <wim@fluendo.com>
11987
11988         * gst/playback/gstplaybin.c: (gen_video_element),
11989         (gen_vis_element), (remove_sinks), (setup_sinks):
11990         Added vis plugin support, need to configure the vis
11991         element to activate it.
11992
11993 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11994
11995         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
11996         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
11997           Some debug.
11998         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
11999         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
12000         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
12001         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
12002         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
12003         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
12004         * gst/avi/gstavidemux.h:
12005           Support for openDML-2.0 indx/ix## chunks. Support for broken index
12006           recovery (where, if part of the index is broken, we will still read
12007           the rest of the index and recover the broken part by stream
12008           scanning). More broken media support. EOS workarounds. General AVI
12009           braindamage headache recovery. Aspirin included.
12010
12011 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12012
12013         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
12014         (cdparanoia_event), (cdparanoia_query):
12015           Get rid of hideous lead-in.
12016
12017 2004-10-11  Wim Taymans  <wim@fluendo.com>
12018
12019         * gst/playback/gstplaybasebin.c: (setup_source):
12020         Wrong var used to get g_list_next.
12021
12022 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12023
12024         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
12025         (cdparanoia_get), (cdparanoia_open):
12026           Report discid as metadata, add duration.
12027
12028 2004-10-11  Wim Taymans  <wim@fluendo.com>
12029
12030         * gst/playback/gstplaybasebin.c: (setup_source):
12031         Cleanup the previous pipeline a little earlier for the
12032         case that a source element provides raw data.
12033
12034 2004-10-11  Benjamin Otte  <otte@gnome.org>
12035
12036         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
12037           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
12038           consuming the last 128 bytes, even though it was valid mp3 data.
12039
12040 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12041
12042         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
12043         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
12044         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
12045         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
12046
12047 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12048
12049         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
12050         Fix for webcams that support only specific width or height
12051
12052 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12053
12054         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12055
12056         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
12057           Fix wrong discont event setup (fixes #154967).
12058
12059 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
12060
12061         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12062
12063         * gst/auparse/gstauparse.c: (gst_auparse_chain):
12064           Error out on invalid data (fixes #154807).
12065
12066 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12067
12068         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12069
12070         * ext/dvdread/dvdreadsrc.c: (_read):
12071           Make titles > 0 work again (fixes #154834).
12072
12073 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12074
12075         * gst-libs/gst/riff/riff-media.c:
12076         (gst_riff_create_video_template_caps):
12077           WMV3 missing in template caps.
12078
12079 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12080
12081         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
12082           OK, so the original code was too strict. It makes random AVI files
12083           hang for seconds upon opening, which is unacceptable and is far
12084           beyond the original goal of getting multiple chunks for one-chunk
12085           sounc stream files. So now do just that.
12086
12087 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12088
12089         * gst/playback/gstplaybasebin.c: (setup_source),
12090         (gst_play_base_bin_change_state):
12091           Actually clean up streaminfo if output fails. This would trigger
12092           if, for example, there was no CD in the drive. No preroll, so
12093           a streaminfo structure is created, but the subsequent state change
12094           of the thread fails.
12095         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
12096           Don't change state if parent failed.
12097
12098 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12099
12100         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
12101         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
12102         (gen_video_element), (remove_sinks):
12103           Add small bits of code for screenshot handling.
12104
12105 2004-10-08  Wim Taymans  <wim@fluendo.com>
12106
12107         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
12108         (gen_video_element), (gen_audio_element), (setup_sinks):
12109         Don't assume the user provided sinks are named "sink"...
12110
12111 2004-10-08  Wim Taymans  <wim@fluendo.com>
12112
12113         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
12114         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
12115         (gst_play_base_bin_link_stream):
12116         Do not try to autoplug sources that generate raw streams like
12117         cdparanoia.
12118         disconnect the preroll overrun signal when we don't need it anymore.
12119
12120 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
12121
12122         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
12123         Added reworked patch from #154903 from milosz derezynski (deadchip).
12124
12125 2004-10-08  Wim Taymans  <wim@fluendo.com>
12126
12127         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
12128         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
12129         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
12130         (cdparanoia_convert), (cdparanoia_uri_get_type),
12131         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
12132         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
12133         * ext/cdparanoia/gstcdparanoia.h:
12134         This adds the cdda://<tracknum> uri.
12135
12136 2004-10-08  Wim Taymans  <wim@fluendo.com>
12137
12138         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
12139         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
12140         (try_to_link_1), (no_more_pads), (close_link), (type_found):
12141         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12142         (unknown_type), (gst_play_base_bin_remove_element),
12143         (gst_play_base_bin_link_stream):
12144         * gst/playback/gstplaybasebin.h:
12145         * gst/playback/gstplaybin.c: (gst_play_bin_init),
12146         (gst_play_bin_set_property), (gen_video_element),
12147         (gen_audio_element), (setup_sinks):
12148         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
12149         (gst_stream_info_get_type), (gst_stream_info_class_init),
12150         (gst_stream_info_init), (gst_stream_info_new),
12151         (gst_stream_info_dispose), (stream_info_mute_pad),
12152         (gst_stream_info_set_property), (gst_stream_info_get_property):
12153         * gst/playback/gststreaminfo.h:
12154         Reuse the audio and video bins.
12155         Some internal cleanups in the stream selection code.
12156
12157 2004-10-08  Julien MOUTTE  <julien@moutte.net>
12158
12159         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
12160         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
12161         * sys/ximage/ximagesink.h:
12162         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
12163         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
12164         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
12165         not coming from those elements. Moreover these elements should not keep
12166         the xid they have been given when in NULL state.
12167
12168 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12169
12170         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
12171         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
12172         * sys/ximage/ximagesink.h:
12173         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
12174         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
12175         * sys/xvimage/xvimagesink.h:
12176           Actually only create a new toplevel window if we're not gonna
12177           embed it right after.
12178
12179 2004-10-07  Wim Taymans  <wim@fluendo.com>
12180
12181         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
12182         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
12183         * gst/playback/gstplaybin.c: (setup_sinks):
12184         Implement muting/unmuting of streams, mute streams that are not
12185         used.
12186
12187 2004-10-07  Wim Taymans  <wim@fluendo.com>
12188
12189         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
12190         (plugin_init):
12191         Added lame audio/x-ac3 typefind function.
12192
12193 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12194
12195         * configure.ac:
12196           bump nano to cvs
12197
12198 === release 0.8.5 ===
12199
12200 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12201
12202         * NEWS:
12203         * RELEASE:
12204         * configure.ac:
12205           releasing 0.8.5, "Take You On"
12206
12207 2004-10-06  Wim Taymans  <wim@fluendo.com>
12208
12209         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
12210         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
12211         (no_more_pads), (close_link), (type_found):
12212         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
12213         * gst/playback/gstplaybin.c: (gen_video_element):
12214         Do not signal the no_more_pads after the first pad when
12215         we are plugging a non dynamic element with multiple
12216         output pads (like swfdec, dvdec, ...).
12217
12218 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12219
12220         * configure.ac:
12221           bump for prerelease
12222
12223 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12224
12225         * gst/wavparse/gstwavparse.c:
12226           add ATRAC3 to STATIC CAPS to fix a warning
12227
12228         * gst/matroska/ebml-read.c:
12229         * gst-libs/gst/riff/riff-read.c:
12230           fix typos
12231
12232 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12233
12234         * gst-libs/gst/riff/riff-media.c:
12235           generate caps for ATRAC3 audio streams
12236
12237         * gst/realmedia/rmdemux.c:
12238           generate caps for ATRAC3 audio streams
12239
12240 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12241
12242         * gst/wavparse/Makefile.am
12243         * gst/wavparse/riff.h
12244         * gst/wavparse/wavparse.vcproj
12245           riff.h removal (unused and duplication with riff-ids.h)
12246
12247 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12248
12249         * gst/wavparse/gstwavparse.h
12250           remove duplicated defines for audio codec codes
12251
12252         * gst-libs/gst/riff/riff-ids.h
12253         * gst/wavenc/riff.h:
12254           add "4CC" code for ATRAC3 audio streams
12255           add "4CC" code for ITU_G721_ADPCM (unused for now)
12256
12257 2004-10-06  Wim Taymans  <wim@fluendo.com>
12258
12259         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
12260         Actually _do_ negotiation. Pass gdouble as arg instead
12261         of guint64 for the framerate.
12262
12263 2004-10-06  Wim Taymans  <wim@fluendo.com>
12264
12265         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
12266         (find_compatibles), (close_pad_link), (try_to_link_1),
12267         (no_more_pads), (close_link), (type_found):
12268         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
12269         * gst/playback/gstplaybin.c: (gen_video_element),
12270         (gen_audio_element):
12271         Set state on newly added element to READY so that negotiation
12272         can happen ASAP.
12273         Addes some more debug info.
12274         Do not try to plug pads with multiple caps structures or ANY
12275         because it is too dangerous since we do not do dynamic
12276         replugging.
12277
12278 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
12279
12280         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
12281
12282         * po/LINGUAS:
12283         * po/or.po:
12284           add Oriya translation
12285
12286 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12287
12288         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
12289           Prevent overwrite of size member. Makes audio sound crappy.
12290
12291 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12292
12293         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
12294         Add rmvb to the list of known RealMedia extensions
12295
12296 2004-10-05  Wim Taymans  <wim@fluendo.com>
12297
12298         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
12299         (mngdec_openstream), (mngdec_closestream),
12300         (mngdec_handle_sink_event), (mngdec_readdata),
12301         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
12302         (mngdec_getcanvasline), (mngdec_refresh),
12303         (gst_mngdec_change_state):
12304         Set the framerate correctly.
12305
12306 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12307
12308         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
12309           There was something wrong with the index massaging.
12310
12311 2004-10-04  Wim Taymans  <wim@fluendo.com>
12312
12313         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
12314         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
12315         (gst_smokedec_chain):
12316         * ext/jpeg/gstsmokedec.h:
12317         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
12318         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
12319         * ext/jpeg/gstsmokeenc.h:
12320         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
12321         (smokecodec_decode_new), (smokecodec_info_free),
12322         (smokecodec_set_quality), (smokecodec_get_quality),
12323         (smokecodec_set_threshold), (smokecodec_get_threshold),
12324         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
12325         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
12326         (smokecodec_encode), (smokecodec_parse_id),
12327         (smokecodec_parse_header), (smokecodec_decode):
12328         * ext/jpeg/smokecodec.h:
12329         * ext/jpeg/smokeformat.h:
12330         Updated smoke, new bitstream, allows embedding in ogg.
12331
12332 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12333
12334         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
12335           Fix seeking in some files. All this code is no longer needed (and
12336           actually breaks stuff) because we now synchronize the full index
12337           right when reading the header.
12338
12339 2004-10-04  Wim Taymans  <wim@fluendo.com>
12340
12341         * configure.ac:
12342         configure update for libmng.
12343
12344 2004-10-04  Wim Taymans  <wim@fluendo.com>
12345
12346         * ext/libmng/Makefile.am:
12347         * ext/libmng/gstmng.c: (plugin_init):
12348         * ext/libmng/gstmng.h:
12349         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
12350         (gst_mngdec_base_init), (gst_mngdec_class_init),
12351         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
12352         (gst_mngdec_loop), (gst_mngdec_get_property),
12353         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
12354         (mngdec_closestream), (mngdec_handle_sink_event),
12355         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
12356         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
12357         (gst_mngdec_change_state):
12358         * ext/libmng/gstmngdec.h:
12359         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
12360         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
12361         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
12362         (gst_mngenc_chain), (gst_mngenc_get_property),
12363         (gst_mngenc_set_property):
12364         * ext/libmng/gstmngenc.h:
12365         Added basic MNG decoder. Needs more work. The encoder does
12366         not work yet.
12367
12368 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12369
12370         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
12371         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
12372         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
12373           Don't hang on length=0 chunks. Some negotiation fixes. Signal
12374           no-more-pads.
12375
12376 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12377
12378         * configure.ac:
12379           you need at least 1.0.4 of speex
12380
12381 2004-10-04 Iain <iaingnome@gmail.com>
12382
12383         * ext/speex/gstspeexdec.h: Revert the includes changes.
12384
12385         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
12386
12387 2004-09-30 Iain <iaingnome@gmail.com>
12388
12389         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
12390         found during init or set as a property instead of hardcoding /dev/audio
12391
12392 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12393
12394         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
12395         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
12396         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
12397         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
12398         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
12399         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
12400         (gst_rmdemux_dump_data):
12401           Use debug category, fix EOS handling. filesrc ! rmdemux now
12402           works.
12403
12404 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12405
12406         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
12407         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
12408         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
12409           Improve allocation, cutting and sorting of the index. How takes a
12410           few seconds instead of minutes.
12411
12412 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
12413
12414         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
12415           fixed compilation
12416
12417 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12418
12419         * gst-libs/gst/riff/riff-media.c:
12420         (gst_riff_create_video_caps_with_data),
12421         (gst_riff_create_video_template_caps):
12422           Add wing commander format mimetype/fourccs.
12423         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
12424           Don't crash if some value is 0.
12425
12426 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12427
12428         * gst-libs/gst/riff/riff-media.c:
12429         (gst_riff_create_video_caps_with_data),
12430         (gst_riff_create_video_template_caps):
12431           Add DIB fourcc (raw, palettized 8-bit RGB).
12432         * gst-libs/gst/riff/riff-read.c:
12433         (gst_riff_read_strf_vids_with_data):
12434           Oops, fix strf_data reading bug.
12435         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
12436           Use a non-NULL tag.
12437         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
12438           Time for hacks. Sorry Dave. At least one quicktime movie (a
12439           trailer) that I've encountered contains multiple video tracks.
12440           One of those is the actual video track, the other are one-frame
12441           tracks (images). Unfortunately, the number of frames according
12442           to the trak header is 1 for each, so that doesn't help. So
12443           instead, I look at the duration and discard tracks with a
12444           duration shorter than 20% of the length of the stream. Better
12445           than nothing.
12446
12447 2004-10-01  Christian Schaller <christian@fluendo.com>
12448
12449         * ext/ivorbis/vorbis.c:
12450           Patch from Phil Blundell (Bug 152341)
12451
12452 2004-10-01  Wim Taymans  <wim@fluendo.com>
12453
12454         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
12455         (speex_dec_get_formats), (speex_dec_convert),
12456         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
12457         (speex_dec_chain), (gst_speexdec_get_property),
12458         (gst_speexdec_set_property):
12459         Small cleanups.
12460
12461 2004-10-01  Wim Taymans  <wim@fluendo.com>
12462
12463         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
12464         (gst_wavparse_stream_init), (gst_wavparse_fmt),
12465         (gst_wavparse_other), (gst_wavparse_loop),
12466         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
12467         (gst_wavparse_srcpad_event):
12468         * gst/wavparse/gstwavparse.h:
12469         Added some more debugging info.
12470         Fix the case where the length of the file is 0.
12471         Make sure we seek to sample borders.
12472
12473 2004-10-01  Wim Taymans  <wim@fluendo.com>
12474
12475         * gst/playback/README:
12476         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
12477         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
12478         (try_to_link_1), (no_more_pads), (close_link), (type_found):
12479         Add some debug info to decodebin, update README
12480
12481 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12482
12483         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
12484           Don't use g_print(); use GST_DEBUG().
12485
12486 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12487
12488         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
12489         (gst_ogg_mux_queue_pads):
12490           Handle EOS properly.
12491
12492 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
12493
12494         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12495
12496         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
12497         (gst_faad_chain), (gst_faad_change_state):
12498         * ext/faad/gstfaad.h:
12499           Allow playback of raw (unframed) MPEG AAC files (#148993).
12500
12501 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
12502
12503         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12504
12505         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
12506           Throw error if we didn't recognize the stream. Fixes #152289.
12507
12508 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12509
12510         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
12511           Fix negotiation.
12512
12513 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
12514
12515         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12516
12517         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
12518           Fix memleak.
12519
12520 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
12521
12522         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12523
12524         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
12525           Solve #152805.
12526         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
12527           Solve 152806.
12528
12529 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12530
12531         * gst-libs/gst/riff/riff-media.c:
12532         (gst_riff_create_video_caps_with_data),
12533         (gst_riff_create_audio_caps_with_data):
12534           Add codec_data handling (like asfdemux used to do).
12535         * gst/asfdemux/gstasf.c: (plugin_init):
12536         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
12537         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
12538           Use riff-media for caps creation instead of our own (mostly
12539           broken) copy of its functions.
12540
12541 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12542
12543         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
12544           Don't actually error out if we get another return value than
12545           -EINVAL. Opposite to what I first thought, drivers have random
12546           return values for this, although -EINVAL is the expected return
12547           value. Since this is not fatal, we shouldn't use
12548           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
12549
12550 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12551
12552         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
12553         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
12554         (dvdreadsrc_get_property), (_open), (_seek), (_read),
12555         (dvdreadsrc_get), (dvdreadsrc_open_file),
12556         (dvdreadsrc_change_state):
12557           Fix. Don't do one big huge loop around the whole DVD, that will
12558           cache all data and thus eat sizeof(dvd) (several GB) before we
12559           see something.
12560         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
12561           Actually NULL'ify event after using it.
12562         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
12563         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
12564         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
12565         (gst_ebml_read_seek), (gst_ebml_read_skip):
12566           Handle events.
12567         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
12568         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
12569         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
12570           Fix timing (this will probably break if I seek using menus, but
12571           I didn't get there yet). VOBs and normal DVDs should now work.
12572           Add a mpeg2-only pad with high rank so this get autoplugged for
12573           MPEG-2 movies.
12574         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
12575         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
12576         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
12577         (gst_mpeg_demux_get_audio_stream),
12578         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
12579         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
12580           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
12581           MPEG-1 but use dvddemux for MPEG-2.
12582         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
12583         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
12584         (gst_mpeg_parse_parse_packhead):
12585           Timing. Only add pad template if it exists. Add sink template from
12586           class and not from ourselves. This means we will always use the
12587           correct sink template even if it is not the one defined in this
12588           file.
12589
12590 2004-09-29  Wim Taymans  <wim@fluendo.com>
12591
12592         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
12593         (gst_mpeg_demux_parse_pes):
12594         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
12595         Fix playback of mpeg again, timestamps where screwed up by
12596         patch 1.61.
12597
12598 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12599
12600         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
12601           Only return true if we actually filled something in. Prevents
12602           player applications from showing a random length for flac files.
12603         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
12604         (gst_riff_read_use_event), (gst_riff_read_handle_event),
12605         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
12606         (gst_riff_read_strf_vids_with_data),
12607         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
12608           OK, ok, so I implemented event handling. Apparently it's normal
12609           that we receive random events at random points without asking
12610           for it.
12611         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
12612         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
12613         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
12614         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
12615         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
12616         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
12617         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
12618         * gst/avi/gstavidemux.h:
12619           Implement non-lineair chunk handling and subchunk processing.
12620           The first solves playback of AVI files where the audio and video
12621           data of individual buffers that we read are not synchronized.
12622           This should not happen according to the wonderful AVI specs, but
12623           of course it does happen in reality. It is also a prerequisite for
12624           the second. Subchunk processing allows us to cut chunks in small
12625           pieces and process each of these pieces separately. This is
12626           required because I've seen several AVI files with incredibly large
12627           audio chunks, even some files with only one audio chunk for the
12628           whole file. This allows for proper playback including seeking.
12629           This patch is supposed to fix all AVI A/V sync issues.
12630         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
12631         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
12632           Work.
12633         * gst/modplug/gstmodplug.cc:
12634           Proper return value setting for the query() function.
12635         * gst/playback/gstplaybasebin.c: (setup_source):
12636           Being in non-playing state (after, e.g., EOS) is not necessarily
12637           a bad thing. Allow for that. This fixes playback of short files.
12638           They don't actually playback fully now, because the clock already
12639           runs. This means that small files (<500kB) with a small length
12640           (<2sec) will still not or barely play. Other files, such as mod
12641           or flx, will work correctly, however.
12642
12643 2004-09-28  Wim Taymans  <wim@fluendo.com>
12644
12645         * ext/speex/gstspeex.c: (plugin_init):
12646         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
12647         (gst_speex_dec_class_init), (speex_dec_get_formats),
12648         (speex_get_event_masks), (speex_get_query_types),
12649         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
12650         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
12651         (gst_speexdec_get_property), (gst_speexdec_set_property),
12652         (speex_dec_change_state):
12653         * ext/speex/gstspeexdec.h:
12654         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
12655         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
12656         (gst_speexenc_base_init), (gst_speexenc_class_init),
12657         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
12658         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
12659         (gst_speexenc_src_query), (gst_speexenc_init),
12660         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
12661         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
12662         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
12663         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
12664         (gst_speexenc_chain), (gst_speexenc_get_property),
12665         (gst_speexenc_set_property), (gst_speexenc_change_state):
12666         * ext/speex/gstspeexenc.h:
12667         Rewrote speex encoder, make sure it can be embedded in ogg.
12668         Implemented speex decoder.
12669
12670 2004-09-28  Christian Schaller <christian@fluendo.com>
12671
12672         * configure.ac:
12673         Remove kioslave plugin. Markey is brewing a new working one
12674         * ext/Makefile.am: Remove kioslave plugin
12675         * ext/kio: remove
12676         * gst-plugins.spec.in: remove kio plugin from spec
12677
12678 2004-09-27  Wim Taymans  <wim@fluendo.com>
12679
12680         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
12681         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
12682         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
12683         (gst_multifdsink_new_client),
12684         (gst_multifdsink_handle_client_write),
12685         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
12686         (gst_multifdsink_handle_clients):
12687         * gst/tcp/gstmultifdsink.h:
12688         Make syncing to keyframes actually work for new clients and lagging
12689         clients.
12690
12691 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12692
12693         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
12694         (gst_navigationtest_handle_src_event), (draw_box_planar411),
12695         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
12696         * gst/debug/gstnavigationtest.h:
12697           make navigationtest display button-press and button-release events
12698
12699 2004-09-26 Iain <iaingnome@gmail.com>
12700
12701         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
12702         the channels have received a new media event.
12703         (interleave_buffered_loop): Compresses a new media event on all
12704         channels into one.
12705
12706 2004-09-26 Iain <iaingnome@gmail.com>
12707
12708         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
12709         call the sinkpad's default event handler and not the srcpads. He also
12710         says this is confusing :)
12711         (gst_wavenc_stop_file): Company says that seek events only go upstream
12712         we should send a discontinuous downstream instead.
12713
12714 2004-09-25  Christian Schaller <christian@fluendo.com>
12715
12716         * Update SPEC file to be usable in conjunction with Fedora Core,
12717           Fedora.us and freshrpms packages
12718         * Fix typo in multifilesrc test Makefile
12719
12720 2004-09-24  Wim Taymans  <wim@fluendo.com>
12721
12722         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
12723         Only signal the no_more_pads signal when we have
12724         added the stream to our list.
12725
12726 2004-09-24  Wim Taymans  <wim@fluendo.com>
12727
12728         * gst/playback/gstplaybasebin.c: (remove_prerolls),
12729         (new_decoded_pad):
12730         * gst/playback/gstplaybasebin.h:
12731         * gst/playback/gstplaybin.c: (setup_sinks):
12732         Don't try to preroll or decode more than one audio/video
12733         track.
12734
12735 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12736
12737         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
12738           Throw error if we failed to find a suitable output. This should
12739           throw an error if we successfully set up a pipeline (e.g. because
12740           we recognized a media file) but found no decodable streams in it
12741           (e.g. because it contains only media stream types for which we
12742           have no decoders, or because it's not a media type).
12743
12744 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12745
12746         * ext/dirac/Makefile.am:
12747         * ext/dirac/gstdirac.cc:
12748         * ext/dirac/gstdiracdec.cc:
12749         * ext/dirac/gstdiracdec.h:
12750           Do something. Don't actually know if this works because I don't
12751           have a demuxer yet.
12752         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
12753           Add channels=1 to caps returned from _getcaps().
12754         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
12755         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
12756         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
12757         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
12758         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
12759         (gst_ogm_parse_change_state):
12760           Separate between audio/video so ogmaudioparse actually uses the
12761           audio pad templates. Both audio and video work now, including
12762           autoplugging. Also use sometimes-srcpad hack.
12763         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
12764           Handle events better. Don't hang on infinite loops.
12765         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
12766         (gst_avi_demux_init), (gst_avi_demux_reset),
12767         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
12768         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
12769         (gst_avi_demux_change_state):
12770         * gst/avi/gstavidemux.h:
12771           Improve A/V sync. Still not perfect.
12772         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
12773         (gst_ebml_read_skip):
12774           Handle events better.
12775         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
12776         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
12777         (qtdemux_audio_caps):
12778           Add IMA4. Improve event handling. Save offset after a seek when
12779           the headers are at the end of the file so that we don't end up in
12780           an infinite loop.
12781         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
12782           Add low-priority typefind support for files with no length.
12783
12784 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12785
12786         * testsuite/multifilesink/Makefile.am:
12787         fix typo
12788
12789 2004-09-22  Julien MOUTTE  <julien@moutte.net>
12790
12791         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
12792         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
12793         mistakes from thaytan's patches.
12794
12795 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
12796
12797         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
12798           For completeness, XSync in the destroy function as xvimage does.
12799
12800 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
12801
12802         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
12803            Correct caps negotiation
12804         * gst/volume/gstvolume.c: (volume_chain_float),
12805         (volume_chain_int16):
12806            Modify debug output to be little more informative
12807         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
12808         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
12809         (gst_xvimagesink_xvimage_destroy):
12810           Add XSync calls after detaching from the shared memory segment to
12811           avoid a crash.
12812
12813 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12814
12815         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
12816         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
12817         * ext/vorbis/vorbis.c: (plugin_init):
12818         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
12819         (gst_vorbisenc_chain):
12820         * ext/vorbis/vorbisenc.h:
12821         remove explicit newmedia support from oggmux and vorbisenc
12822         add debug category to vorbisenc
12823         * gst/multifilesink/gstmultifilesink.c:
12824         (gst_multifilesink_class_init), (gst_multifilesink_init),
12825         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
12826         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
12827         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
12828         (plugin_init):
12829         * gst/multifilesink/gstmultifilesink.h:
12830         add support for streamheader in multifilesink
12831
12832 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12833
12834         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
12835         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
12836         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
12837           Prevent infinite loops. More correct error reporting.
12838         * gst/auparse/gstauparse.c: (gst_auparse_chain):
12839           Error out if negotiation fails.
12840         * gst/playback/gstplaybasebin.c: (setup_source),
12841         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
12842         (gst_play_base_bin_found_tag):
12843           Error/tag forwarding. Pre-roll fixes for source errors on state
12844           changes (e.g. "file does not exist") to prevent hangs.
12845
12846 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12847
12848         * testsuite/multifilesink/Makefile.am:
12849         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
12850         (gst_newmedia_class_init), (gst_newmedia_init),
12851         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
12852         (newfile_signal), (test_signal), (main):
12853         * testsuite/multifilesink/multifilesrc_test.c: (main):
12854         * testsuite/multifilesink/oggtheora_test.c:
12855         (gst_newmedia_base_init), (gst_newmedia_class_init),
12856         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
12857         (test_format), (newfile_signal), (test_signal), (main):
12858         * testsuite/multifilesink/oggvorbis_test.c:
12859         (gst_newmedia_base_init), (gst_newmedia_class_init),
12860         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
12861         (test_format), (newfile_signal), (test_signal), (main):
12862         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
12863         (gst_newmedia_class_init), (gst_newmedia_init),
12864         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
12865         (newfile_signal), (test_signal), (main):
12866         New media tests
12867
12868 2004-09-20  Christian Schaller <christian@fluendo.com>
12869
12870         * Fix mikmod license to LGPL as they have relicensed
12871         * Move Dirac and Effectv into LGPL section of README_license
12872
12873 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12874
12875         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
12876         (gst_mad_change_state):
12877           Allow for mp3 rate/channels changes. However, only very
12878           conservatively. Reason that we *have* to enable this is smiply
12879           because the mad find_sync() function is not good enough, it will
12880           regularly sync on random data as valid frames and therefore make
12881           us provide random caps as *final* caps of the stream. The best fix
12882           I could think of is to simply require several of the same stream
12883           changes in a row before we change caps.
12884           The actual testcase that works now is #
12885         * ext/ogg/Makefile.am:
12886         * ext/ogg/gstogg.c: (plugin_init):
12887         * ext/ogg/gstogmparse.c:
12888           OGM support (video only for now; I need an audio sample file).
12889         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
12890         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
12891         (gst_asf_demux_add_video_stream):
12892           WMV extradata.
12893         * gst/playback/gstplaybasebin.c: (unknown_type):
12894           Don't error out on single unknown-types after all. It's wrong.
12895           If we found type of video and audio but not of a subtitle stream,
12896           it will still error out (which is unwanted). Will find a better fix
12897           later on.
12898         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
12899         (ogmaudio_type_find), (plugin_init):
12900           OGM support.
12901
12902 2004-09-20  Johan Dahlin  <johan@gnome.org>
12903
12904         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
12905         after setting caps.
12906
12907 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12908
12909         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
12910         * gst/wavenc/gstwavenc.h:
12911         Added newmedia support to wavenc
12912
12913 2004-09-17  Wim Taymans  <wim@fluendo.com>
12914
12915         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
12916         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
12917         (gst_fdset_fd_can_write), (gst_fdset_wait):
12918         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
12919         (gst_multifdsink_init), (gst_multifdsink_add),
12920         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
12921         (gst_multifdsink_remove_client_link),
12922         (gst_multifdsink_client_queue_buffer),
12923         (gst_multifdsink_handle_client_write),
12924         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
12925         (gst_multifdsink_close), (gst_multifdsink_change_state):
12926         * gst/tcp/gstmultifdsink.h:
12927         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
12928         (gst_tcpserversink_removed):
12929         Small cleanups in fdset.c
12930         Use a hastable to map fd to the client structure for faster
12931         lookup in _remove and get_stats.
12932         Added virtual function to close the fds.
12933         Handle clients even when the select/poll call was unblocked because
12934         of a command.
12935         Implement syncing to keyframe in the recovery procedure.
12936
12937 2004-09-16 Iain <iaingnome@gmail.com>
12938
12939         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
12940         try caps.
12941
12942 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12943
12944         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
12945           Caps are only set if the type of the stream is unknown, but this
12946           is initialized in ->init_stream(), so set to UNKNOWN after calling
12947           ->init_stream() so that capsnego starts.
12948
12949 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12950
12951         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
12952         (gst_avi_demux_stream_data):
12953           Just hardcode for raw audio then. AVI audio sucks.
12954
12955 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
12956
12957         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
12958         * gst/matroska/matroska-mux.c: (audiosink_templ),
12959         (gst_matroska_mux_audio_pad_link):
12960         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
12961         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
12962
12963 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12964
12965         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
12966         (gst_avi_demux_stream_data):
12967           Try to fix a/v sync issues.
12968
12969 2004-09-15  David Schleef  <ds@schleef.org>
12970
12971         * configure.ac: remove NASM check, since we don't use it.  Update
12972         dirac check to 0.4
12973         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
12974         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
12975         Initialized variables.
12976         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
12977         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
12978         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
12979         SVQ3 format
12980
12981 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12982
12983         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
12984         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
12985         * gst/avi/gstavidemux.h:
12986           Fix for compressed audio (mp3) timestamp generation. How did this
12987           ever work?
12988
12989 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12990
12991         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
12992           Volume is a double not a float.
12993
12994 2004-09-15  Wim Taymans  <wim@fluendo.com>
12995
12996         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
12997         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
12998         Don't close the fd in multifdsink as we didn't open it in the
12999         first place. Some cleanups.
13000
13001 2004-09-15  Wim Taymans  <wim@fluendo.com>
13002
13003         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
13004         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
13005         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
13006         Fix the case where the muxer would mark pages as delta
13007         frames when they are not (vorbis only ogg).
13008
13009 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13010
13011         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
13012         (gst_play_base_bin_change_state):
13013           Handle the case where we failed to setup a clear pipeline. This
13014           will throw an error (or EOS, another nice case) and if you don't
13015           catch that, the app will wait for the signal forever (and thus
13016           hang).
13017
13018 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13019
13020         * ext/gnomevfs/gstgnomevfssink.c:
13021         (gst_gnomevfssink_uri_get_protocols):
13022         * ext/gnomevfs/gstgnomevfssrc.c:
13023         (gst_gnomevfssrc_uri_get_protocols):
13024         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
13025         * ext/gnomevfs/gstgnomevfsuri.h:
13026           Use _uri_new() instead of _open(), so it doesn't take as long and
13027           Christophe's computer won't hang.
13028         * gst/playback/gstplaybasebin.c: (unknown_type):
13029           Throw error on unknown media type, so apps actually display it.
13030
13031 2004-09-14  Brian Cameron  <brian.cameron@sun.com
13032
13033         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
13034           this script to work on Solaris since bash shell handles echo
13035           differenly than bash.
13036
13037 2004-09-17  Wim Taymans  <wim@fluendo.com>
13038
13039         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
13040         (setup_source), (gst_play_base_bin_set_property),
13041         (gst_play_base_bin_add_element):
13042         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
13043         Some more work on making sure seeking pauses the pipeline and
13044         that changing the uri actually does something.
13045
13046 2004-09-17  Wim Taymans  <wim@fluendo.com>
13047
13048         * gst/tcp/gstfdset.c: (gst_fdset_wait):
13049         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
13050         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
13051         (gst_tcpserversink_close):
13052         Be a bit more paranoid when freeing memory.
13053
13054 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13055
13056         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
13057         (qtdemux_parse_trak):
13058           Don't crash by dividing by zero (see sample movie in #126922).
13059
13060 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13061
13062         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
13063           Don't touch non-existing data (fixes crash on file in #140147).
13064
13065 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13066
13067         * gst/playback/gstplaybasebin.c:
13068         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
13069           Handle double disposals, and proper change of URIs.
13070
13071 2004-09-13  Martin Eikermann <meiker@upb.de>
13072
13073         * gst/mpegstream/gstmpegparse.c:
13074           fix synchronistation for streams recorded from digital PCR
13075           fixes bug #119376
13076
13077 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13078
13079         * ext/gnomevfs/Makefile.am:
13080         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
13081         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
13082         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
13083         (gst_gnomevfssink_uri_get_type),
13084         (gst_gnomevfssink_uri_get_protocols),
13085         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
13086         (gst_gnomevfssink_uri_handler_init),
13087         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
13088         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
13089         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
13090         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
13091         (gst_gnomevfssrc_uri_get_type),
13092         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
13093         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
13094         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
13095         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
13096         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
13097         * ext/gnomevfs/gstgnomevfsuri.h:
13098           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
13099           of fake URIs to see which this version of Gnome-VFS likes, and
13100           uses that for the Gst-URI interface. Makes playbin support http://
13101           streams. Also fix up some stupid behaviour in gnomevfssrc.
13102
13103 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13104
13105         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
13106         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
13107         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
13108         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
13109           Update mixer (to sync with other sessions) if we try to obtain
13110           a new value. This makes alsamixer work accross applications.
13111         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
13112           Only call sync functions if we're running, else alsalib asserts.
13113         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
13114           Sometimes fails to compile. Possibly a gcc bug.
13115         * gst/playback/gstplaybin.c: (gen_video_element),
13116         (gen_audio_element):
13117           Add a reference to an application-provided object, because we lose
13118           this same reference if we add it to the bin. If we don't do this,
13119           we can only use this object once and thus crash if we go from
13120           ready to playing, back to ready and back to playing again.
13121           Also add an audioscale element because several cheap soundcards -
13122           like mine - don't support all samplerates.
13123         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
13124         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
13125           Fix wrong order or PAR calls. Makes automatically obtained PAR
13126           from the X server atually being used.
13127
13128 2004-09-12  David Schleef  <ds@schleef.org>
13129
13130         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
13131         #151887, #152102, #152247.
13132         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
13133         * examples/seeking/cdparanoia.c: same
13134         * examples/seeking/cdplayer.c: same
13135         * examples/seeking/seek.c: same
13136         * examples/seeking/spider_seek.c: same
13137         * examples/seeking/vorbisfile.c: same
13138         * examples/stats/mp2ogg.c: same
13139         * ext/esd/esdsink.c: (gst_esdsink_class_init),
13140         (gst_esdsink_dispose): Dispose of element properly.
13141         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
13142         fixes.
13143         * ext/nas/nassink.c: (gst_nassink_class_init),
13144         (gst_nassink_dispose): Dispose of element correctly.
13145         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
13146         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
13147         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
13148         Fix 64-bit warning.
13149         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
13150         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
13151         Fix 64-bit warning.
13152
13153 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
13154
13155         * configure.ac : change speex detection as 1.1.6 now uses
13156           .pc/pkg-config and they changed their headers location.
13157
13158 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
13159
13160         * gst/matroska/matroska-mux.h:
13161         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
13162         (gst_matroska_mux_start), (gst_matroska_mux_finish),
13163         (gst_matroska_mux_write_data):
13164           Write multiple blocks/frames per cluster.
13165                 Write meta-seek information (seek heads).
13166
13167 2004-09-09  Scott Wheeler <wheeler@kde.org>
13168
13169         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
13170         (gst_play_bin_set_property), (gst_play_bin_get_property),
13171         (gen_audio_element), (gen_audio_element):
13172           Add a volume element / property to the pipeline.
13173
13174 2004-09-07  Wim Taymans  <wim@fluendo.com>
13175
13176         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
13177         Copy timestamps from the master pad to the output buffers.
13178
13179 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13180
13181         * ext/raw1394/gstdv1394src.c:
13182           throw errors when applicable
13183
13184 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
13185
13186         * gst/matroska/ebml-ids.h:
13187         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
13188         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
13189         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
13190           automatically convert unix time <-> ebml time when reading/writing
13191           a date, use gst_ebml_write_uint to write CUETIME,
13192           not gst_ebml_write_date.
13193         * gst/matroska/matroska-ids.h:
13194         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
13195         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
13196         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
13197         (gst_matroska_mux_write_data):
13198           Write track and segment UIDs, write muxing date, write
13199           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
13200           Create cues for audio only files.
13201
13202 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13203
13204         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
13205         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
13206           Re-commit ALSA switches.
13207         * gst/adder/gstadder.c: (gst_adder_loop):
13208           64-bit fix (#151416).
13209         * gst/debug/progressreport.c: (gst_progressreport_report):
13210           64-bit fix (#151419).
13211         * gst/matroska/matroska-demux.c:
13212         (gst_matroska_demux_parse_contents):
13213           64-bit fix (#151420).
13214         * gst/playback/test3.c: (update_scale):
13215           64-bit fix (#151421).
13216
13217 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
13218
13219         * configure.ac:
13220           bump nano to cvs
13221
13222 === release 0.8.4 ===
13223
13224 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13225
13226         * configure.ac: releasing 0.8.4, "Alias"
13227
13228 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
13229
13230         * ext/theora/Makefile.am:
13231           fix makefile.  Fixes #151462.
13232
13233 2004-08-30  Wim Taymans  <wim@fluendo.com>
13234
13235         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
13236         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13237         (gst_multifdsink_remove_client_link),
13238         (gst_multifdsink_client_queue_buffer),
13239         (gst_multifdsink_handle_client_write):
13240         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
13241         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
13242         Fix some memory leaks.
13243
13244 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13245
13246         Patch by: David Schleef
13247
13248         * configure.ac:
13249         * sys/Makefile.am:
13250           rename our detection macro for V4L2.  Fixes #151236.
13251
13252 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13253
13254         Patch by: David Schleef
13255
13256         * configure.ac:
13257           check to define LAMEPRESET.  Fixes #151232.
13258
13259 2004-08-27  David Schleef  <ds@schleef.org>
13260
13261         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
13262         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
13263         (gst_glimagesink_fixate):  Move local variable declarations to
13264         make gcc-2.95 happy.
13265
13266 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
13267
13268         * configure.ac:
13269           bump nano for prerelease
13270
13271 2004-08-27  David Schleef  <ds@schleef.org>
13272
13273         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
13274         * sys/sunaudio/gstsunaudiosrc.c:
13275         * sys/sunaudio/gstsunaudiosrc.h:
13276
13277 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
13278
13279         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
13280         handle EOS correctly
13281         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
13282         * gst/matroska/matroska-mux.h:
13283         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
13284         VFW compatibility mode
13285
13286 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
13287
13288         patch by: Zaheer Abbas Merali
13289
13290         * ext/ogg/gstoggmux.c:
13291         * ext/vorbis/vorbisenc.c:
13292         * ext/vorbis/vorbisenc.h:
13293           handle NEWMEDIA
13294
13295 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
13296
13297         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
13298         fix byte order reversion on little endian machines.
13299         * gst/matroska/matroska-mux.c: (audiosink_templ),
13300         (gst_matroska_mux_audio_pad_link):
13301         add TTA codec to the list of supported codecs.
13302         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
13303         (gst_matroska_mux_start), (gst_matroska_mux_finish),
13304         (gst_matroska_mux_write_data):
13305         * gst/matroska/matroska-mux.h:
13306         write segment duration correctly, write muxing app string, fixes bugs
13307         #140897 and #140898.
13308         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
13309         wait for all pads to be negotiated before starting to mux.
13310
13311 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13312
13313         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
13314         * ext/lame/gstlame.h:
13315         Added new media support to lame
13316
13317 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
13318
13319         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
13320         send vorbis headers at the beginning of a stream, fixes bug #141554.
13321         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
13322         bug #148950.
13323         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
13324         (gst_matroska_demux_plugin_init):
13325         * gst/matroska/matroska-ids.h:
13326         enable demuxing of TTA audio streams, fixes bug #148951.
13327         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
13328         enable typefinding for TTA audio files, fixes bug #148711.
13329         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
13330         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
13331         fixes playback of packed bitstream and xvid with bframes, bug #135407.
13332
13333 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
13334
13335         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
13336         (gst_riff_read_element_data), (gst_riff_read_seek),
13337         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
13338         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
13339         <teuf@gnome.org>
13340
13341 2004-08-23 Iain <iaingnome@gmail.com>
13342
13343         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
13344         tags. They appear to be handled differently to normal.
13345         (tag_list_to_id3_tag_foreach): Ditto.
13346
13347 2004-08-22  Wim Taymans  <wim@fluendo.com>
13348
13349         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
13350         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
13351         Make sure we never send -1 granulepos.
13352
13353 2004-08-20  Wim Taymans  <wim@fluendo.com>
13354
13355         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
13356         (gst_ogg_mux_loop):
13357         I will accept bitchslappings with non sharp objects.
13358
13359 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13360
13361         * configure.ac:
13362         Clean up the test for lame presets
13363
13364 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13365
13366         * configure.ac:
13367         * ext/lame/Makefile.am:
13368         * ext/lame/gstlame.c: (gst_lame_class_init),
13369         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
13370         Only enable lame presets if version of lame has presets in API
13371
13372 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
13373         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
13374         * gst/udp/gstudpsrc.h:
13375           Don't call gst_pad_push in a get function. Fixes #150449
13376
13377 2004-08-18  Wim Taymans  <wim@fluendo.com>
13378
13379         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
13380         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
13381         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
13382         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
13383         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
13384         (gst_fdset_wait):
13385         * gst/tcp/gstfdset.h:
13386         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13387         (gst_multifdsink_client_queue_buffer),
13388         (gst_multifdsink_handle_client_write):
13389         * gst/tcp/gstmultifdsink.h:
13390         Some extra checks in gstfdset.
13391         Only use send() when the fd is a socket. Don't try to
13392         read from write only fds.
13393
13394 2004-08-18  Wim Taymans  <wim@fluendo.com>
13395
13396         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
13397         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
13398         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
13399         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
13400         (gst_fdset_wait):
13401         Add more locking and bounds checking.
13402
13403 2004-08-18  Wim Taymans  <wim@fluendo.com>
13404
13405         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
13406         Realloc test fdset in the lock and right before starting
13407         the poll call. Bump the limit to 4096.
13408
13409 2004-08-17  David Schleef  <ds@schleef.org>
13410
13411         * sys/sunaudio/Makefile.am:
13412         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
13413         of rates and channels.  Make debugging less obnoxious.
13414
13415         Patch from Balamurali Viswanathan implementing a mixer for
13416         Sun audio.  (bug #144091):
13417         * sys/sunaudio/gstsunelement.c:
13418         * sys/sunaudio/gstsunelement.h:
13419         * sys/sunaudio/gstsunmixer.c:
13420         * sys/sunaudio/gstsunmixer.h:
13421
13422 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13423
13424         * gst/audioscale/gstaudioscale.c:
13425         * gst/audioscale/gstaudioscale.h:
13426         made audioscale resample from any sample rate to any sample rate
13427
13428 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
13429
13430         * ext/libpng/gstpngdec.c:
13431           error out on unsupported types
13432
13433 2004-08-17  Iain <iaingnome@gmail.com>
13434
13435         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
13436         mid_side and loose_mid_side properties if its a stereo stream.
13437
13438 2004-08-17  Wim Taymans  <wim@fluendo.com>
13439
13440         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
13441         (theora_get_formats), (theora_dec_src_convert),
13442         (theora_dec_sink_convert), (theora_dec_src_query),
13443         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
13444         Add a debug line.
13445
13446 2004-08-17  Wim Taymans  <wim@fluendo.com>
13447
13448         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
13449         (gst_ogg_pad_push):
13450         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
13451         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
13452         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
13453         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
13454         Mark delta units in the muxer.
13455         Try to decode the packet after an out-of-sync error from
13456         libogg.
13457
13458 2004-08-17  Wim Taymans  <wim@fluendo.com>
13459
13460         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
13461         (gst_multifdsink_init), (gst_multifdsink_add),
13462         (gst_multifdsink_client_queue_buffer),
13463         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
13464         * gst/tcp/gstmultifdsink.h:
13465         Added option to send a keyframe to clients as the first buffer.
13466         Make timeout property writable.
13467
13468 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
13469
13470         patch by: Wim Taymans
13471
13472         * gst/tcp/gstfdset.c:
13473         * gst/tcp/gstmultifdsink.c:
13474           fix index comparison, should include 0
13475
13476 2004-08-16  Wim Taymans  <wim@fluendo.com>
13477
13478         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
13479         (gst_fdset_add_fd), (gst_fdset_remove_fd),
13480         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
13481         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
13482         (gst_fdset_wait):
13483           copy when reallocing for poll so the select arguments don't get
13484           changed during the call
13485
13486 2004-08-16  Wim Taymans  <wim@fluendo.com>
13487
13488         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
13489         (gst_theora_enc_class_init), (theora_enc_sink_link),
13490         (theora_buffer_from_packet), (theora_enc_chain):
13491         Fix bug where buffers were not marked as keyframes
13492         correctly.
13493
13494 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13495
13496         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
13497         (gst_lame_preset_get_type), (gst_lame_class_init):
13498         describe the enum values for vbr mode and presets more verbosely
13499
13500 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13501
13502         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
13503         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
13504         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
13505         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
13506         * ext/lame/gstlame.h:
13507         add preset property to lame so it can use lame presets
13508
13509 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13510
13511         * ext/lame/gstlame.c: (gst_lame_get_property):
13512         whoops forgot break, thanks teuf
13513
13514 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13515
13516         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
13517         (gst_lame_class_init), (gst_lame_src_getcaps),
13518         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
13519         (gst_lame_get_property), (gst_lame_setup):
13520         * ext/lame/gstlame.h:
13521         fix lame's broken vbr stuff, allow it to resample if need be, and also
13522         make xing header optional
13523
13524 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13525
13526         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
13527         added getcaps function so samplerate doesnt get fixated to silly values
13528
13529 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13530
13531         * ext/lame/gstlame.c: (gst_lame_src_link):
13532         revert previous fix
13533
13534 2004-08-12  Johan Dahlin  <johan@gnome.org>
13535
13536         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
13537         checks. Doesn't matter what state we are in. Interfaces are a
13538         compile time thing, not runtime. It also broke the python bindings.
13539
13540 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13541
13542         * ext/lame/gstlame.c: (gst_lame_src_link):
13543         made source pad link function check if sinkpad is ok..fixes the problem
13544         where core fixates the output rate of lame stupidly
13545
13546 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13547
13548         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
13549         * sys/v4l/v4l_calls.c:
13550         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
13551           fix fixate function to handle nonsimple caps.
13552           remove bogus check in _link
13553           cleanups
13554
13555 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13556
13557         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
13558         set default compression ratio parameter to 0.0 so bitrate parameter
13559         works :)
13560
13561 2004-08-11  David Schleef  <ds@schleef.org>
13562
13563         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
13564
13565 2004-08-11  David Schleef  <ds@schleef.org>
13566
13567         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
13568         before.
13569
13570 2004-08-11  David Schleef  <ds@schleef.org>
13571
13572         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
13573
13574 2004-08-11  David Schleef  <ds@schleef.org>
13575
13576         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
13577           license field
13578         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
13579         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
13580           LGPL.
13581         * gst/auparse/gstauparse.c: Fix plugin license field.
13582         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
13583         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
13584         * gst/rtp/gstrtp.c: Fix plugin license field.
13585
13586 2004-08-11  Wim Taymans  <wim@fluendo.com>
13587
13588         * gst/tcp/Makefile.am:
13589         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
13590         (ensure_size), (gst_fdset_new), (gst_fdset_free),
13591         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
13592         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
13593         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
13594         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
13595         (gst_fdset_fd_can_write), (gst_fdset_wait):
13596         * gst/tcp/gstfdset.h:
13597         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
13598         (gst_multifdsink_class_init), (gst_multifdsink_init),
13599         (gst_multifdsink_add), (gst_multifdsink_remove),
13600         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
13601         (gst_multifdsink_remove_client_link),
13602         (gst_multifdsink_handle_client_read),
13603         (gst_multifdsink_client_queue_data),
13604         (gst_multifdsink_client_queue_caps),
13605         (gst_multifdsink_client_queue_buffer),
13606         (gst_multifdsink_handle_client_write),
13607         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13608         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
13609         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
13610         (gst_multifdsink_close):
13611         * gst/tcp/gstmultifdsink.h:
13612         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
13613         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
13614         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
13615         (gst_tcpserversink_close):
13616         * gst/tcp/gsttcpserversink.h:
13617         Abstracted away the select call, implemented poll (yes we ran into
13618         the 1024 limit in production).
13619
13620 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13621
13622         * gst/tcp/gsttcp.c:
13623         * gst/tcp/gsttcpplugin.c:
13624           improve debuggging, remove assert
13625
13626 2004-08-10  Wim Taymans  <wim@fluendo.com>
13627
13628         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
13629         (gst_client_status_get_type), (gst_multifdsink_class_init),
13630         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
13631         (gst_multifdsink_handle_client_read),
13632         (gst_multifdsink_handle_client_write),
13633         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
13634         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
13635         (gst_multifdsink_get_property):
13636         * gst/tcp/gstmultifdsink.h:
13637         * gst/tcp/gsttcp-marshal.list:
13638         Starting to prepare for specifying buffer time in other units
13639         than buffers. Expose remove reason in signal.
13640
13641 2004-08-10  Wim Taymans  <wim@fluendo.com>
13642
13643         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
13644         (gst_multifdsink_remove), (gst_multifdsink_clear),
13645         (gst_multifdsink_remove_client_link),
13646         (gst_multifdsink_handle_client_read),
13647         (gst_multifdsink_client_queue_data),
13648         (gst_multifdsink_client_queue_buffer),
13649         (gst_multifdsink_handle_client_write),
13650         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
13651         (gst_multifdsink_chain), (gst_multifdsink_close):
13652         * gst/tcp/gstmultifdsink.h:
13653         Added more debugging info. Changed the way clients are
13654         removed from the lists. Fixed a bug where a bad file descriptor
13655         could cause many clients to be removed.
13656
13657 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
13658
13659         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
13660           allow all pixel-aspect-ratios, not just 1:1
13661
13662 2004-08-09  David Schleef  <ds@schleef.org>
13663
13664         * sys/glsink/ARB_multitexture.h:  Remove old files.
13665         * sys/glsink/EXT_paletted_texture.h:
13666         * sys/glsink/NV_register_combiners.h:
13667         * sys/glsink/gstgl_nvimage.c:
13668         * sys/glsink/gstgl_pdrimage.c:
13669         * sys/glsink/gstgl_rgbimage.c:
13670         * sys/glsink/gstglsink.c:
13671         * sys/glsink/gstglsink.h:
13672         * sys/glsink/gstglxwindow.c:
13673         * sys/glsink/regcomb_yuvrgb.c:
13674
13675 2004-08-09  David Schleef  <ds@schleef.org>
13676
13677         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
13678         GL sink plugin.  (Bug #147302)
13679
13680         * configure.ac: Test for OpenGL
13681         * sys/Makefile.am: Use test for OpenGL
13682         * sys/glsink/Makefile.am:
13683         * sys/glsink/glimagesink.c: rewrite
13684         * sys/glsink/glimagesink.h: rewrite
13685
13686 2004-08-09  David Schleef  <ds@schleef.org>
13687
13688         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
13689         sane framerates.
13690         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
13691         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
13692         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
13693
13694 2004-08-09  Wim Taymans  <wim@fluendo.com>
13695
13696         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
13697         (gst_multifdsink_add), (gst_multifdsink_get_stats),
13698         (gst_multifdsink_client_remove),
13699         (gst_multifdsink_handle_client_read),
13700         (gst_multifdsink_handle_client_write),
13701         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
13702         Do a bit more logging, make the client_read code more robust.
13703
13704 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13705
13706         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
13707         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
13708         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
13709         (gst_jpegdec_init), (gst_jpegdec_chain):
13710         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
13711         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
13712           cleanups, debugging fixes and memleak plugging
13713
13714 2004-08-09  Wim Taymans  <wim@fluendo.com>
13715
13716         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
13717         (theora_get_formats), (theora_dec_src_convert),
13718         (theora_dec_sink_convert), (theora_dec_src_query),
13719         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
13720         (theora_dec_change_state):
13721         Don't crash on missing header packets.
13722
13723 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13724
13725         * po/LINGUAS:
13726         * po/sq.po:
13727           Added Albanian translation (Laurent Dhima)
13728         * po/cs.po:
13729           updated
13730
13731 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13732
13733         * ext/lame/gstlame.c:
13734           fix/add debugging
13735
13736 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13737
13738         * sys/ximage/ximagesink.c:
13739         * sys/xvimage/xvimagesink.c:
13740           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
13741
13742 2004-08-06  Wim Taymans  <wim@fluendo.com>
13743
13744         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
13745         (gst_multifdsink_add), (gst_multifdsink_get_stats),
13746         (gst_multifdsink_client_remove),
13747         (gst_multifdsink_handle_client_read),
13748         (gst_multifdsink_handle_client_write),
13749         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
13750         Make sure we don't try to read more from a client that what
13751         ioctl says us or we deadlock.
13752
13753 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13754
13755         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
13756         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
13757         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
13758           decouple running_time and n_frames so it can handle changing
13759           framerate while running
13760
13761 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13762
13763         * po/nl.po:
13764         * po/sv.po:
13765           updated translations
13766
13767 2004-08-04  Benjamin Otte  <otte@gnome.org>
13768
13769         * gst/videotestsrc/gstvideotestsrc.c:
13770         (gst_videotestsrc_get_capslist), (generate_capslist),
13771         (plugin_init):
13772           generate the list of supported caps at startup and reuse it instead
13773           of always generating it
13774
13775 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
13776
13777         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
13778           whoops, last checkin broke normal build
13779
13780 2004-08-03  Benjamin Otte  <otte@gnome.org>
13781
13782         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
13783         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
13784         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
13785         (gst_alsa_mixer_get_option):
13786         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
13787         (dvdnavsrc_print_event):
13788         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
13789         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
13790         (gst_ogg_mux_pad_unlink):
13791         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
13792         (gst_multipart_mux_pad_unlink):
13793         * gst/videofilter/gstvideobalance.c:
13794         (gst_videobalance_colorbalance_set_value):
13795         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
13796         (gst_videomixer_pad_unlink):
13797         * po/uk.po:
13798         * sys/oss/gstossmixer.c:
13799         * sys/v4l/gstv4lcolorbalance.c:
13800         * sys/v4l/gstv4ltuner.c:
13801         * sys/v4l/v4lsrc_calls.c:
13802         * sys/v4l2/gstv4l2colorbalance.c:
13803         * sys/v4l2/gstv4l2tuner.c:
13804           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
13805
13806 2004-08-03  Benjamin Otte  <otte@gnome.org>
13807
13808         * examples/dynparams/filter.c: (ui_control_create):
13809         * examples/gstplay/player.c: (print_tag):
13810         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
13811         * ext/gdk_pixbuf/gstgdkanimation.c:
13812         (gst_gdk_animation_iter_may_advance):
13813         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
13814         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
13815         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
13816         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
13817         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
13818         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
13819         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
13820         * gst/sine/demo-dparams.c: (main):
13821         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
13822         * testsuite/alsa/formats.c: (create_pipeline):
13823         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
13824           fixes for G_DISABLE_ASSERT and friends
13825         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
13826         (mp3_type_frame_length_from_header), (mp3_type_find),
13827         (plugin_init):
13828           require mp3 typefinding to have at least MIN_HEADERS valid headers
13829           add typefinding for AAC adts files
13830
13831 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
13832
13833         * sys/ximage/ximagesink.c:
13834         (gst_ximagesink_calculate_pixel_aspect_ratio):
13835         * sys/xvimage/xvimagesink.c:
13836         (gst_xvimagesink_calculate_pixel_aspect_ratio):
13837         Make sure we calculate pixel-aspect-ratio using floating point maths
13838
13839 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13840
13841         * po/uk.po:
13842           updated translation
13843
13844 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13845
13846         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
13847         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
13848           add debugging for display PAR calculation
13849
13850 2004-08-02  David Schleef  <ds@schleef.org>
13851
13852         * configure.ac: Fix mikmod CFLAGS.
13853
13854 2004-07-27  Benjamin Otte  <otte@gnome.org>
13855
13856         * gst/audioscale/gstaudioscale.c:
13857         - fix templates to only support S16, it's the only format that works
13858         - make caps nego code use try_set_caps_nonfixed and fixation instead
13859         of try_set_caps twice, which is not nice for autopluggers
13860         - change rank to secondary, so autopluggers can pick it up after
13861         audioconvert
13862
13863 2004-08-02  Iain <iain@prettypeople.org>
13864
13865         * gst/interleave/interleave.c (interleave_init),
13866         (interleave_request_new_pad),
13867         (interleave_pad_removed),
13868         (interleave_buffered_loop): Use the real pad count, not the artificial
13869         one.
13870
13871 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13872
13873         * configure.ac: bump nano back to development
13874
13875 === release 0.8.3 ===
13876
13877 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13878
13879         * configure.ac: releasing 0.8.3, "Water"
13880
13881 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13882
13883         * sys/xvimage/xvimagesink.c:
13884         (gst_xvimagesink_calculate_pixel_aspect_ratio),
13885         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
13886         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
13887         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
13888         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
13889         * sys/xvimage/xvimagesink.h:
13890           apply similar PAR fixes as to ximagesink
13891
13892 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13893
13894         patch from: Benjamin Otte
13895
13896         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
13897           add link function to lame.  Fixes #148986.
13898
13899 2004-08-02  Johan Dahlin  <johan@gnome.org>
13900
13901         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
13902         fix debugging log
13903
13904 2004-07-30  David Schleef  <ds@schleef.org>
13905
13906         * gst/videomixer/Makefile.am: Fix things that should have been
13907         fixed in the last checkin.
13908
13909 2004-07-30  David Schleef  <ds@schleef.org>
13910
13911         * gst/multipart/Makefile.am: Fix things that should have been
13912         fixed in the last checkin.
13913
13914 2004-07-30  David Schleef  <ds@schleef.org>
13915
13916         * testsuite/multifilesink/Makefile.am: Fix unused variable.
13917
13918 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13919
13920         * configure.ac:
13921           bump nano for prerelease
13922         * po/af.po:
13923         * po/az.po:
13924         * po/cs.po:
13925         * po/en_GB.po:
13926         * po/hu.po:
13927         * po/nl.po:
13928         * po/sr.po:
13929         * po/sv.po:
13930         * po/uk.po:
13931           updates
13932
13933 2004-07-30  Wim Taymans  <wim@fluendo.com>
13934
13935         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
13936         (gst_multifdsink_add), (gst_multifdsink_remove),
13937         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
13938         (gst_multifdsink_client_remove),
13939         (gst_multifdsink_handle_client_write),
13940         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
13941         * gst/tcp/gstmultifdsink.h:
13942         Recover from a select with a bad file descriptor by removing
13943         the client.
13944
13945 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
13946
13947         * configure.ac:
13948           fix requirement of core
13949         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
13950         (gst_play_pipeline_setup):
13951           don't use colorspace element.  do use hermescolorspace element.
13952           make macro to get a colorspace element.
13953           mark strings for translation.
13954         * po/POTFILES.in:
13955           add play.c
13956         * po/af.po:
13957         * po/az.po:
13958         * po/cs.po:
13959         * po/en_GB.po:
13960         * po/hu.po:
13961         * po/nl.po:
13962         * po/sr.po:
13963         * po/sv.po:
13964         * po/uk.po:
13965           update translations
13966
13967 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13968
13969         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
13970         fix default for newmedia flag
13971
13972 2004-07-30  Wim Taymans  <wim@fluendo.com>
13973
13974         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
13975         (gst_theora_dec_init), (theora_get_formats),
13976         (theora_dec_src_convert), (theora_dec_sink_convert),
13977         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
13978         (theora_dec_chain), (theora_dec_set_property),
13979         (theora_dec_get_property):
13980         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
13981         (gst_theora_enc_class_init), (gst_theora_enc_init),
13982         (theora_enc_sink_link), (theora_enc_chain),
13983         (theora_enc_set_property), (theora_enc_get_property):
13984         Added cropping option to theora decoder.
13985         Added border option to theora encoder.
13986
13987 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13988
13989         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
13990         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
13991         (gst_pngenc_set_property):
13992         * ext/libpng/gstpngenc.h:
13993         Added newmedia support to pngenc so now gst-launch-0.8 videotestsrc ! ffmpegcolorspace ! pngenc snapshot=false newmedia=true ! multifilesink location=blah%d.png works as expected
13994
13995 2004-07-30  Wim Taymans  <wim@fluendo.com>
13996
13997         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
13998         (theora_enc_sink_link), (theora_enc_chain),
13999         (theora_enc_set_property), (theora_enc_get_property):
14000         Fix encoding of non-multiple-of-16 video.
14001
14002 2004-07-29  David Schleef  <ds@schleef.org>
14003
14004         * configure.ac: make test for audiofile more strict
14005
14006 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
14007
14008         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14009           give different names to typefind functions
14010
14011 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14012
14013         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14014         (gst_ximagesink_calculate_pixel_aspect_ratio),
14015         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
14016         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
14017         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
14018         (gst_ximagesink_get_property), (gst_ximagesink_init):
14019         * sys/ximage/ximagesink.h:
14020           allocate PAR's dynamically.
14021           use autodetected PAR if no object-set PAR is given.
14022           add workaround for directfb's X not setting physical size.
14023           fix to xvimagesink will follow tomorrow.
14024
14025 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14026
14027         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
14028         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
14029         (gst_shout2send_get_type), (gst_shout2send_set_clock),
14030         (gst_shout2send_class_init), (gst_shout2send_init),
14031         (set_shout_metadata), (gst_shout2send_set_metadata),
14032         (gst_shout2send_chain), (gst_shout2send_set_property),
14033         (gst_shout2send_get_property), (gst_shout2send_connect),
14034         (gst_shout2send_change_state):
14035         * ext/shout2/gstshout2.h:
14036         - fix for sending mp3 audio to icecast2 server, if pad link function not
14037         called before PAUSED state
14038         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
14039         - added tagging support for mp3 audio broadcasted
14040         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
14041         debug info
14042
14043 2004-07-28  Wim Taymans  <wim@fluendo.com>
14044
14045         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
14046         (gst_ogg_demux_push):
14047         Return query failure when we don't know the length of
14048         an ogg stream insteda of returning TRUE with a bogus value.
14049
14050 2004-07-28  Wim Taymans  <wim@fluendo.com>
14051
14052         * ext/theora/theoradec.c: (theora_get_formats),
14053         (theora_dec_src_convert), (theora_dec_sink_convert),
14054         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
14055         (theora_dec_chain):
14056         Don't screw up the 1 Chroma for 1 luma sample situation when we
14057         have an odd offset/width by adding a black border in those cases.
14058
14059 2004-07-28  Wim Taymans  <wim@fluendo.com>
14060
14061         * ext/theora/theoradec.c: (theora_get_formats),
14062         (theora_dec_src_convert), (theora_dec_sink_convert),
14063         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
14064         (theora_dec_chain):
14065         * ext/theora/theoraenc.c: (theora_enc_sink_link):
14066         Added first attempt at cropping of the image as required by the
14067         theora spec. We need more properties in the caps (offset_x,
14068         offset_y,stride) to implement this correctly.
14069
14070 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
14071
14072         * ext/dvdnav/README:
14073           Update the README to use dvddemux
14074         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
14075           Ensure getcaps returns a subset of the template caps
14076         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
14077         (gst_mpeg2subt_init):
14078           Ensure getcaps returns a subset of the template caps
14079         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
14080         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
14081         (gst_dvd_demux_get_subpicture_stream),
14082         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
14083         * gst/mpegstream/gstdvddemux.h:
14084           Set the explicit caps on the current_video pad before pushing
14085           anything
14086         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
14087         (gst_mpeg_demux_get_audio_stream):
14088           Free caps used to gst_pad_set_explicit_caps, which takes a const
14089           GstCaps *
14090
14091 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14092
14093         * configure.ac: update GStreamer requirement to 0.8.4 because of
14094           GstFraction.
14095
14096 2004-07-28  Wim Taymans  <wim@fluendo.com>
14097
14098         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
14099         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
14100         Add the pad to the element after setting up the caps. This
14101         makes it a lot easier to autoplug.
14102
14103 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
14104
14105         * gst/median/gstmedian.c:
14106         * gst/mpeg2subt/gstmpeg2subt.c:
14107         * gst/mpegaudioparse/gstmpegaudioparse.c:
14108         * gst/mpegstream/gstdvddemux.c:
14109         * gst/mpegstream/gstmpegdemux.c:
14110         * gst/mpegstream/gstmpegpacketize.c:
14111         * gst/rtjpeg/gstrtjpeg.c:
14112         * gst/rtjpeg/gstrtjpegdec.c:
14113         * gst/rtjpeg/gstrtjpegenc.c:
14114         * gst/sine/gstsinesrc.c:
14115         * gst/smooth/gstsmooth.c:
14116         * gst/smpte/gstsmpte.c:
14117         * gst/smpte/gstsmpte.h:
14118         * gst/stereo/gststereo.c:
14119         * gst/videofilter/gstgamma.c:
14120         * gst/videofilter/gstvideobalance.c:
14121         * gst/videofilter/gstvideofilter.c:
14122         * gst/videofilter/gstvideoflip.c:
14123         * gst/videoscale/gstvideoscale.c:
14124         * gst/videoscale/videoscale.c:
14125         * gst/videotestsrc/gstvideotestsrc.c:
14126         * gst/videotestsrc/videotestsrc.c:
14127         * gst/wavenc/gstwavenc.c:
14128         * gst/wavparse/gstwavparse.c:
14129           fix local includes and 64 bits constants
14130
14131 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
14132
14133         * win32/gst.sln:
14134         * gst-libs/gst/*/*.vcproj:
14135         * gst/*/*.vcproj:
14136           more working plugins
14137
14138 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14139
14140         * testsuite/alsa/Makefile.am:
14141         * testsuite/alsa/srcstate.c:
14142         add test for alsasrc changing state
14143
14144 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14145
14146         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
14147         (gst_silence_get):
14148         * gst/silence/gstsilence.h:
14149         fix silence generation for 16bit raw audio
14150
14151 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14152
14153         * gst/matroska/matroska-demux.c:
14154         (gst_matroska_demux_parse_metadata),
14155         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
14156         * gst/mpegaudio/common.c:
14157         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
14158         (gst_videoscale_getcaps), (gst_videoscale_link),
14159         (gst_videoscale_src_fixate), (gst_videoscale_init),
14160         (gst_videoscale_finalize):
14161         * gst/videoscale/gstvideoscale.h:
14162         * gst/videotestsrc/gstvideotestsrc.c:
14163         (gst_videotestsrc_get_capslist):
14164         * gst/wavenc/gstwavenc.c:
14165         * sys/oss/gstossmixer.c: (fill_labels):
14166         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
14167         (gst_ximagesink_handle_xevents),
14168         (gst_ximagesink_calculate_pixel_aspect_ratio),
14169         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
14170         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
14171         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
14172         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
14173         (gst_ximagesink_init), (gst_ximagesink_class_init):
14174         * sys/ximage/ximagesink.h:
14175         * sys/xvimage/xvimagesink.c:
14176         (gst_xvimagesink_calculate_pixel_aspect_ratio),
14177         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
14178         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
14179         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
14180         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
14181         * sys/xvimage/xvimagesink.h:
14182           first batch of pixel aspect ratio commits.
14183
14184 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14185
14186         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14187         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
14188         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
14189           handle stride, needs work if we want to move stride handling
14190           upstream, but works correctly for our purposes.
14191
14192 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14193
14194         * gst/videoscale/README:
14195           add testing examples
14196         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
14197         (gst_videoscale_chain):
14198         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
14199         (gst_videoscale_get_size):
14200           add get_size function that handles stride like videotestsrc.
14201           fixes conversion for YUV formats for as much as I can test them.
14202
14203 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14204
14205         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
14206         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
14207         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14208         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
14209         (gst_xvimagesink_xvimage_put):
14210           further cleanups, logging, error handling and synchronizing
14211
14212 2004-07-27  Wim Taymans  <wim@fluendo.com>
14213
14214         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
14215         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
14216         (gst_videomixer_pad_set_property),
14217         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
14218         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
14219         (gst_videomixer_class_init), (gst_videomixer_init),
14220         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
14221         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
14222         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
14223         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
14224         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
14225         (gst_videomixer_loop), (plugin_init):
14226         Be a nicer negotiation citizen and provide a getcaps function on
14227         the srcpad. This also fixes a crash when resizing.
14228
14229 2004-07-27  Julien MOUTTE  <julien@moutte.net>
14230
14231         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14232         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
14233
14234 2004-07-27  Wim Taymans  <wim@fluendo.com>
14235
14236         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
14237         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
14238         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
14239         (gst_pngenc_set_property):
14240         * ext/libpng/gstpngenc.h:
14241         Added snapshot property to pngenc.
14242         removed g_print from pngdec
14243
14244 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
14245
14246         * gst/ac3parse/ac3parse.vcproj
14247         * gst/adder/adder.vcproj
14248         * gst/alpha/alpha.vcproj
14249         * gst/alpha/alphacolor.vcproj
14250         * gst/asfdemux/asf.vcproj
14251         * gst/audioconvert/audioconvert.vcproj
14252         * gst/audiorate/audiorate.vcproj
14253         * gst/audioscale/audioscale.vcproj
14254         * gst/auparse/auparse.vcproj
14255         * gst/avi/avi.vcproj
14256         * gst/cdxaparse/cdxaparse.vcproj
14257         * gst/chart/chart.vcproj
14258         * gst/colorspace/colorspace.vcproj
14259         * gst/cutter/cutter.vcproj
14260         * gst/debug/debug.vcproj
14261         * gst/debug/efence.vcproj
14262         * gst/debug/navigationtest.vcproj
14263         * gst/deinterlace/deinterlace.vcproj
14264         * gst/effectv/effectv.vcproj
14265         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
14266         * gst/filter/filter.vcproj
14267         * gst/flx/flxdec.vcproj
14268         * gst/goom/goom.vcproj
14269         * gst/interleave/interleave.vcproj
14270         * gst/law/alaw.vcproj
14271         * gst/law/mulaw.vcproj
14272         * gst/matroska/matroska.vcproj
14273         * gst/median/median.vcproj
14274         * gst/mixmatrix/mixmatrix.vcproj
14275         * gst/mpeg1sys/mpeg1systemencode.vcproj
14276         * gst/mpeg1videoparse/mp1videoparse.vcproj
14277         * gst/mpeg2sub/mpeg2subt.vcproj
14278         * gst/mpegaudio/mpegaudio.vcproj
14279         * gst/mpegaudioparse/mpegaudioparse.vcproj
14280         * gst/mpegstream/mpegstream.vcproj
14281         * gst/multifilesink/multifilesink.vcproj
14282         * gst/multipart/multipart.vcproj
14283         * gst/oneton/oneton.vcproj
14284         * gst/overlay/overlay.vcproj
14285         * gst/passthrough/passthrough.vcproj
14286         * gst/qtdemux/qtdemux.vcproj
14287         * gst/realmedia/rmdemux.vcproj
14288         * gst/rtjpeg/rtjpeg.vcproj
14289         * gst/rtp/rtp.vcproj
14290         * gst/silence/silence.vcproj
14291         * gst/sine/sinesrc.vcproj
14292         * gst/smooth/smooth.vcproj
14293         * gst/smpte/smpte.vcproj
14294         * gst/spectrum/spectrum.vcproj
14295         * gst/speed/speed.vcproj
14296         * gst/stereo/stereo.vcproj
14297         * gst/switch/switch.vcproj
14298         * gst/tags/tagedit.vcproj
14299         * gst/tcp/tcp.vcproj
14300         * gst/typefind/typefindfunctions.vcproj
14301         * gst/udp/udp.vcproj
14302         * gst/videobox/videobox.vcproj
14303         * gst/videocrop/videocrop.vcproj
14304         * gst/videodrop/videodrop.vcproj
14305         * gst/videofilter/gamma.vcproj
14306         * gst/videofilter/videobalance.vcproj
14307         * gst/videofilter/videofilter.vcproj
14308         * gst/videofilter/videoflip.vcproj
14309         * gst/videoflip/videoflip.vcproj
14310         * gst/videomixer/videomixer.vcproj
14311         * gst/videorate/videorate.vcproj
14312         * gst/videoscale/videoscale.vcproj
14313         * gst/videotestsrc/videotestsrc.vcproj
14314         * gst/virtualdub/virtualdub.vcproj
14315         * gst/volenv/volenv.vcproj
14316         * gst/volume/volume.vcproj
14317         * gst/wavenc/wavenc.vcproj
14318         * gst/wavparse/wavparse.vcproj
14319         * gst/y4m/y4menc.vcproj
14320         * gst-libs/gst/audio/audio.vcproj
14321         * gst-libs/gst/audio/audiofilter.vcproj
14322         * gst-libs/gst/colorbalance/colorbalance.vcproj
14323         * gst-libs/gst/idct/idtc.vcproj
14324         * gst-libs/gst/media-info/media-info.vcproj
14325         * gst-libs/gst/mixer/mixer.vcproj
14326         * gst-libs/gst/navigation/navigation.vcproj
14327         * gst-libs/gst/play/play.vcproj
14328         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
14329         * gst-libs/gst/resample/resample.vcproj
14330         * gst-libs/gst/riff/riff.vcproj
14331         * gst-libs/gst/tuner/tuner.vcproj
14332         * gst-libs/gst/video/video.vcproj
14333         * gst-libs/gst/xoverlay/xoverlay.vcproj
14334           avoid problems with math.h, fix release dependancy
14335           rename GStreamer-0.8.lib to libgstreamer.lib
14336
14337 2004-07-27  Julien MOUTTE  <julien@moutte.net>
14338
14339         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
14340         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
14341         the atom is not available we have to unlock the mutex. Fixes #148023
14342
14343 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14344
14345         * gst-libs/gst/media-info/media-info.h:
14346           issue for a vararg macro with MSVC
14347
14348 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14349
14350         * gst/effectv/effectv.vcproj
14351         * gst-libs/gst/idct/idct.vcproj:
14352         * gst-libs/gst/media-info/media-info.vcproj:
14353         * gst-libs/gst/navigation/navigation.vcproj:
14354         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
14355         * gst-libs/gst/video/video.vcproj:
14356         * gst-libs/gst/xoverlay/xoverlay.vcproj:
14357           fixes for build problems
14358
14359 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14360
14361         * gst-libs/gst/audio/audio.def:
14362         * gst-libs/gst/audio/riff.def:
14363           add some definitions needed by plugins
14364
14365 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14366
14367         * gst/asfdemux/gstasfmux.c
14368           Fix some 64 bits constants to be glib friendly
14369
14370 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14371
14372         * gst/ac3parse/gstac3parse.c
14373         * gst/audioscale/gstaudioscale.c
14374         * gst/auparse/gstauparse.c
14375         * gst/colorspace/gstcolorspace.c
14376         * gst/colorspace/yuv2rgb.h
14377           local include fixes
14378
14379 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14380
14381         * win32/gst.sln
14382           add more plugins to the build
14383
14384 2004-07-26  Julien MOUTTE  <julien@moutte.net>
14385
14386         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
14387         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
14388
14389 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14390
14391         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
14392         (gst_level_set_property), (gst_level_get_property),
14393         (gst_level_base_init), (gst_level_class_init):
14394           add debugging categories.  cleanups.
14395
14396 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14397
14398         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
14399         (gst_videoscale_planar411), (gst_videoscale_planar400),
14400         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
14401         (gst_videoscale_scale_nearest_str1),
14402         (gst_videoscale_scale_nearest_str2),
14403         (gst_videoscale_scale_nearest_str4),
14404         (gst_videoscale_scale_nearest_16bit),
14405         (gst_videoscale_scale_nearest_24bit):
14406           fixed stride issues
14407           tested with 320x240 -> 321, 322, 324 x240
14408           tested with YV12, I420, YUY2, UYVY
14409           fixed packed422rev (don't think it could have worked before)
14410           by testing with UYVY
14411
14412 2004-07-26  Benjamin Otte  <otte@gnome.org>
14413
14414         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
14415         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
14416         (plugin_init):
14417           add debugging category, add error checks like checking return values
14418           of setup calls, make sure it still works after
14419           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
14420
14421 2004-07-26  Wim Taymans  <wim@fluendo.com>
14422
14423         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
14424         (gst_mpeg_demux_get_audio_stream),
14425         (gst_mpeg_demux_process_private):
14426         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
14427         Check for error codes from the negotiation functions. Make sure
14428         we really set the pad caps when a new pad is created.
14429
14430 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14431
14432         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14433         (gst_ffmpeg_caps_to_pix_fmt):
14434         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
14435         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14436         (gst_ffmpegcolorspace_pad_link):
14437           don't make function do two things at the same time without reason.
14438
14439 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14440
14441         * gst/ac3parse/ac3parse.vcproj
14442         * gst/adder/adder.vcproj
14443         * gst/alpha/alpha.vcproj
14444         * gst/alpha/alphacolor.vcproj
14445         * gst/asfdemux/asf.vcproj
14446         * gst/audioconvert/audioconvert.vcproj
14447         * gst/audiorate/audiorate.vcproj
14448         * gst/audioscale/audioscale.vcproj
14449         * gst/auparse/auparse.vcproj
14450         * gst/avi/avi.vcproj
14451         * gst/cdxaparse/cdxaparse.vcproj
14452         * gst/chart/chart.vcproj
14453         * gst/colorspace/colorspace.vcproj
14454         * gst/cutter/cutter.vcproj
14455         * gst/debug/debug.vcproj
14456         * gst/debug/efence.vcproj
14457         * gst/debug/navigationtest.vcproj
14458         * gst/deinterlace/deinterlace.vcproj
14459         * gst/effectv/effectv.vcproj
14460         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
14461         * gst/filter/filter.vcproj
14462         * gst/flx/flxdec.vcproj
14463         * gst/goom/goom.vcproj
14464         * gst/interleave/interleave.vcproj
14465         * gst/law/alaw.vcproj
14466         * gst/law/mulaw.vcproj
14467         * gst/matroska/matroska.vcproj
14468         * gst/median/median.vcproj
14469         * gst/mixmatrix/mixmatrix.vcproj
14470         * gst/mpeg1sys/mpeg1systemencode.vcproj
14471         * gst/mpeg1videoparse/mp1videoparse.vcproj
14472         * gst/mpeg2sub/mpeg2subt.vcproj
14473         * gst/mpegaudio/mpegaudio.vcproj
14474         * gst/mpegaudioparse/mpegaudioparse.vcproj
14475         * gst/mpegstream/mpegstream.vcproj
14476         * gst/multifilesink/multifilesink.vcproj
14477         * gst/multipart/multipart.vcproj
14478         * gst/oneton/oneton.vcproj
14479         * gst/overlay/overlay.vcproj
14480         * gst/passthrough/passthrough.vcproj
14481         * gst/qtdemux/qtdemux.vcproj
14482         * gst/realmedia/rmdemux.vcproj
14483         * gst/rtjpeg/rtjpeg.vcproj
14484         * gst/rtp/rtp.vcproj
14485         * gst/silence/silence.vcproj
14486         * gst/sine/sinesrc.vcproj
14487         * gst/smooth/smooth.vcproj
14488         * gst/smpte/smpte.vcproj
14489         * gst/spectrum/spectrum.vcproj
14490         * gst/speed/speed.vcproj
14491         * gst/stereo/stereo.vcproj
14492         * gst/switch/switch.vcproj
14493         * gst/tags/tagedit.vcproj
14494         * gst/tcp/tcp.vcproj
14495         * gst/typefind/typefindfunctions.vcproj
14496         * gst/udp/udp.vcproj
14497         * gst/videobox/videobox.vcproj
14498         * gst/videocrop/videocrop.vcproj
14499         * gst/videodrop/videodrop.vcproj
14500         * gst/videofilter/gamma.vcproj
14501         * gst/videofilter/videobalance.vcproj
14502         * gst/videofilter/videofilter.vcproj
14503         * gst/videofilter/videoflip.vcproj
14504         * gst/videoflip/videoflip.vcproj
14505         * gst/videomixer/videomixer.vcproj
14506         * gst/videorate/videorate.vcproj
14507         * gst/videoscale/videoscale.vcproj
14508         * gst/videotestsrc/videotestsrc.vcproj
14509         * gst/virtualdub/virtualdub.vcproj
14510         * gst/volenv/volenv.vcproj
14511         * gst/volume/volume.vcproj
14512         * gst/wavenc/wavenc.vcproj
14513         * gst/wavparse/wavparse.vcproj
14514         * gst/y4m/y4menc.vcproj
14515           more plugins supported under windows
14516
14517 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
14518
14519         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14520         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
14521         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
14522         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14523         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
14524           Add debugging statements.  Use the sizes as returned by the
14525           *CreateImage calls.
14526
14527 2004-07-26  Johan Dahlin  <johan@gnome.org>
14528
14529         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
14530         the pad is negotiated.
14531
14532         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
14533
14534 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
14535
14536         * gst-libs/gst/colorbalance/colorbalance.vcproj:
14537         * gst-libs/gst/idct/idct.vcproj:
14538         * gst-libs/gst/media-info/media-info.vcproj:
14539         * gst-libs/gst/mixer/mixer.vcproj:
14540         * gst-libs/gst/navigation/navigation.vcproj:
14541         * gst-libs/gst/play/play.vcproj:
14542         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
14543         * gst-libs/gst/resample/resample.vcproj:
14544         * gst-libs/gst/tuner/tuner.vcproj:
14545         * gst-libs/gst/video/video.vcproj:
14546         * gst-libs/gst/xoverlay/xoverlay.vcproj:
14547           more plugins supported under windows
14548
14549 2004-07-25 Iain <iain@prettypeople.org>
14550
14551         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
14552         pad now rather than when the pad is created because state changes wipe
14553         explicit caps (fixes #148043).
14554
14555 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
14556
14557         reviewed by Benjamin Otte  <otte@gnome.org>
14558
14559         * ext/mad/gstmad.c:
14560           fix mad plugin crashing on Sun (fixes #148289)
14561
14562 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
14563
14564         * gst/avi/avi.def:
14565         * gst/avi/avi.vcproj:
14566         * gst/matroska/matroska.def:
14567         * gst/matroska/matroska.vcproj:
14568           remove unused .def files
14569
14570 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
14571
14572         * gst-libs/gst/audio/gstaudiofilter.c:
14573           Clean the local include
14574
14575 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
14576
14577         * win32/gst.sln:
14578         * gst-libs/gst/audio/audio.def:
14579         * gst-libs/gst/audio/audio.vcproj:
14580         * gst-libs/gst/audio/audiofilter.vcproj:
14581         * gst-libs/gst/audio/riff.def:
14582         * gst-libs/gst/audio/riff.vcproj:
14583         * gst-libs/gst/gst-libs.def:
14584         * gst-libs/gst/gst-libs.vcproj:
14585         * gst/avi/avi.vcproj:
14586         * gst/avi/avi.vcproj:
14587           Copy the files where needed after building, cleaner projects
14588
14589 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
14590
14591         * gst/matroska/ebml-write.c:
14592           Fix some 64 bits constants to be glib friendly
14593
14594 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
14595
14596         * win32/gst.sln:
14597         * gst-libs/gst/gst-libs.def:
14598         * gst-libs/gst/gst-libs.vcproj:
14599         * gst/matroska/matroska.def:
14600         * gst/matroska/matroska.vcproj:
14601           Add the preliminary canvas to build plugins on Win32
14602
14603 2004-07-23  Benjamin Otte  <otte@gnome.org>
14604
14605         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
14606           don't enfore negotiation from source side, it breaks
14607           sinesrc ! audioconvert ! osssink
14608
14609 2004-07-22  David Schleef  <ds@schleef.org>
14610
14611         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
14612         for ELF files, since they can easily be recognized as audio/mpeg.
14613         (bug #147441)
14614
14615 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14616
14617         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
14618         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
14619         (gst_videoscale_scale_nearest_24bit),
14620         (gst_videoscale_scale_nearest_16bit):
14621           fix 16bit and 24bit for stride (24bit might need testing)
14622           don't pretend we do more than one algorithm
14623
14624 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14625
14626         * configure.ac:
14627         * gst/Makefile.am:
14628         * gst/multifilesink/Makefile.am:
14629         * gst/multifilesink/gstmultifilesink.c:
14630         (gst_multifilesink_get_formats),
14631         (gst_multifilesink_get_query_types), (_do_init),
14632         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
14633         (gst_multifilesink_init), (gst_multifilesink_dispose),
14634         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
14635         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
14636         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
14637         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
14638         (gst_multifilesink_chain), (gst_multifilesink_change_state),
14639         (gst_multifilesink_uri_get_type),
14640         (gst_multifilesink_uri_get_protocols),
14641         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
14642         (gst_multifilesink_uri_handler_init), (plugin_init):
14643         * gst/multifilesink/gstmultifilesink.h:
14644         * testsuite/Makefile.am:
14645         * testsuite/multifilesink/Makefile.am:
14646         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
14647         (gst_newmedia_class_init), (gst_newmedia_init),
14648         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
14649         (newfile_signal), (test_signal), (main):
14650         multifilesink plugin for creating new files every time a new media
14651         discontinuity event occurs
14652
14653 2004-07-22  Wim Taymans  <wim@fluendo.com>
14654
14655         * gst/alpha/Makefile.am:
14656         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
14657         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
14658         (gst_alpha_color_init), (gst_alpha_color_set_property),
14659         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
14660         (transform), (gst_alpha_color_chain),
14661         (gst_alpha_color_change_state), (plugin_init):
14662         Stupid plugin to to RGBA to AYUV conversion because none of
14663         the colorspace plugins can handle that yet.
14664
14665 2004-07-22  Wim Taymans  <wim@fluendo.com>
14666
14667         * examples/seeking/seek.c: (update_scale), (main):
14668         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
14669         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
14670         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
14671         (gst_decode_bin_init), (gst_decode_bin_dispose),
14672         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
14673         (no_more_pads), (close_link), (type_found),
14674         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
14675         (plugin_init):
14676         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
14677         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
14678         (gst_play_base_bin_dispose), (queue_overrun),
14679         (gen_preroll_element), (remove_prerolls), (unknown_type),
14680         (no_more_pads), (new_stream), (setup_source),
14681         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
14682         (play_base_eos), (gst_play_base_bin_change_state),
14683         (gst_play_base_bin_add_element),
14684         (gst_play_base_bin_remove_element),
14685         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
14686         (gst_play_base_bin_unlink_stream),
14687         (gst_play_base_bin_get_streaminfo):
14688         * gst/playback/gstplaybin.c: (gen_video_element),
14689         (gen_audio_element):
14690         * gst/playback/gststreaminfo.h:
14691         More playback updates, attempt to fix things after the state change
14692         breakage.
14693
14694 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14695
14696         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
14697         (gst_videoscale_scale_nearest_16bit):
14698           comment algorithm
14699
14700 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14701
14702         * gst/videotestsrc/gstvideotestsrc.c:
14703         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
14704         (gst_videotestsrc_init), (gst_videotestsrc_get),
14705         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
14706         (gst_videotestsrc_get_property):
14707         * gst/videotestsrc/gstvideotestsrc.h:
14708         * gst/videotestsrc/videotestsrc.c:
14709         * gst/videotestsrc/videotestsrc.h:
14710           cleanup and commenting
14711
14712 2004-07-21  Wim Taymans  <wim@fluendo.com>
14713
14714         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
14715         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
14716         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
14717         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
14718         (_find_chain_get_unknown_part), (_find_streams_check),
14719         (gst_ogg_demux_push), (gst_ogg_pad_push):
14720         * ext/theora/theoradec.c: (theora_get_formats),
14721         (theora_dec_src_convert), (theora_dec_sink_convert),
14722         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
14723         (theora_dec_chain):
14724         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
14725         (vorbis_dec_convert), (vorbis_dec_src_query),
14726         (vorbis_dec_src_event), (vorbis_dec_event):
14727         More seeking fixes, oggdemux now supports seeking to time and
14728         uses the downstream element to convert granulepos to time.
14729         Seeking in theora-only ogg files now works.
14730
14731 2004-07-21  Wim Taymans  <wim@fluendo.com>
14732
14733         * ext/theora/theoradec.c: (gst_theora_dec_init),
14734         (theora_get_formats), (theora_get_event_masks),
14735         (theora_get_query_types), (theora_dec_src_convert),
14736         (theora_dec_sink_convert), (theora_dec_src_query),
14737         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
14738         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
14739         (vorbis_get_event_masks), (vorbis_get_query_types),
14740         (gst_vorbis_dec_init), (vorbis_dec_convert),
14741         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
14742         Added query/convert/formats functions to vorbis and theora decoders
14743         so that the outside world can use them too. Fixed seeking on an
14744         ogg/theora/vorbis file by disabling the seeking seeking on the
14745         theora srcpad.
14746
14747 2004-07-21  Julien MOUTTE  <julien@moutte.net>
14748
14749         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
14750         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
14751         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
14752         images creation for both elements. We don't create the image on caps
14753         nego or renego, we just destroy the internal one if present if it does
14754         not match the needs. The chain function takes care of creating a new
14755         image when needed.
14756         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
14757         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
14758         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
14759         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
14760         the image format information. The buffer pool checks for the context
14761         image format and discard images with different formats.
14762         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
14763
14764 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
14765
14766         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14767         (gst_ffmpegcolorspace_chain):
14768           no point in doing any chaining if the pad we want to push from
14769           isn't usable.
14770
14771 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
14772
14773         * gst-libs/gst/riff/riff-media.c:
14774         (gst_riff_create_audio_caps_with_data):
14775           Fix double end-to-native symbol conversion (#148021).
14776
14777 2004-07-20  David Schleef  <ds@schleef.org>
14778
14779         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
14780         Don't use an Atom that doesn't exist.
14781
14782 2004-07-20  Wim Taymans  <wim@fluendo.com>
14783
14784         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14785         (gst_multifdsink_add), (gst_multifdsink_get_stats),
14786         (gst_multifdsink_client_remove),
14787         (gst_multifdsink_handle_client_write),
14788         (gst_multifdsink_queue_buffer):
14789         * gst/tcp/gstmultifdsink.h:
14790         More multifdsink stats. Avoid deadlock by releasing locks
14791         before sending out a signal.
14792
14793 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
14794
14795         * po/LINGUAS:
14796         * po/hu.po:
14797           added Hungarian translation (Laszlo Dvornik)
14798
14799 2004-07-20  Wim Taymans  <wim@fluendo.com>
14800
14801         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14802         (gst_multifdsink_add), (gst_multifdsink_client_remove),
14803         (gst_multifdsink_handle_client_write),
14804         (gst_multifdsink_queue_buffer):
14805         * gst/tcp/gsttcp-marshal.list:
14806         Fixed the stupid marshal definition.
14807
14808 2004-07-20  Wim Taymans  <wim@fluendo.com>
14809
14810         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14811         (gst_multifdsink_init), (gst_multifdsink_add),
14812         (gst_multifdsink_client_remove),
14813         (gst_multifdsink_handle_client_write),
14814         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
14815         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
14816         (gst_multifdsink_init_send):
14817         * gst/tcp/gstmultifdsink.h:
14818         Added more stats, added timeout for a client, fixed some typos
14819         and added some comments.
14820
14821 2004-07-20  Wim Taymans  <wim@fluendo.com>
14822
14823         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
14824         (gst_multifdsink_add), (gst_multifdsink_get_stats),
14825         (gst_multifdsink_client_remove),
14826         (gst_multifdsink_handle_client_write):
14827         * gst/tcp/gstmultifdsink.h:
14828         * gst/tcp/gsttcp-marshal.list:
14829         Added get_stats method that returns a GValueArray of
14830         stats values.
14831
14832 2004-07-19  Benjamin Otte  <otte@gnome.org>
14833
14834         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
14835           make sure longname, description and author are valid UTF-8
14836
14837 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14838
14839         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
14840         (gst_ximagesink_set_property):
14841         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
14842         (gst_xvimagesink_set_property):
14843           make sure SYNCHRONOUS is respected after getting the X context
14844
14845 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
14846
14847         * gst/matroska/matroska-demux.c:
14848         (gst_matroska_demux_handle_src_event),
14849         (gst_matroska_demux_parse_blockgroup):
14850         * gst/matroska/matroska-ids.h:
14851           add BlockReference tag and ignore it to clear out log.
14852           ignore NAVIGATION events to clear out log.
14853
14854 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
14855
14856         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
14857         (gst_matroska_demux_add_stream):
14858         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
14859           add debug categories
14860
14861 2004-07-16  Wim Taymans  <wim@fluendo.com>
14862
14863         * ext/libpng/Makefile.am:
14864         * ext/libpng/gstpng.c: (plugin_init):
14865         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
14866         (gst_pngdec_get_type), (gst_pngdec_base_init),
14867         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
14868         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
14869         * ext/libpng/gstpngdec.h:
14870         Added png decoder.
14871
14872 2004-07-16  Julien MOUTTE  <julien@moutte.net>
14873
14874         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
14875         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
14876         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
14877         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
14878         (gst_ximagesink_buffer_alloc):
14879         * sys/ximage/ximagesink.h:
14880         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14881         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
14882         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
14883         (gst_xvimagesink_buffer_alloc):
14884         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
14885         again. Using internal data pointer of the x(v)image to store image's
14886         data to be coherent with the buffer alloc mechanism. Investigated the
14887         image destruction code to be sure that everything gets freed correctly.
14888
14889 2004-07-16  Wim Taymans  <wim@fluendo.com>
14890
14891         * gst-libs/gst/riff/riff-read.c:
14892         (gst_riff_read_strf_vids_with_data),
14893         (gst_riff_read_strf_auds_with_data):
14894         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
14895         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
14896         Make sure we don't create 0 sized subbuffers in riff-read.
14897         Signal the no more pads signal after reading the avi header.
14898
14899 2004-07-16  Wim Taymans  <wim@fluendo.com>
14900
14901         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
14902         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
14903         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
14904         (gst_decode_bin_init), (gst_decode_bin_dispose),
14905         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
14906         (no_more_pads), (close_link), (type_found),
14907         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
14908         (gst_decode_bin_change_state), (plugin_init):
14909         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
14910         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
14911         (gst_play_base_bin_dispose), (queue_overrun),
14912         (gen_preroll_element), (remove_prerolls), (unknown_type),
14913         (no_more_pads), (new_stream), (setup_source),
14914         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
14915         (play_base_eos), (gst_play_base_bin_change_state),
14916         (gst_play_base_bin_add_element),
14917         (gst_play_base_bin_remove_element),
14918         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
14919         (gst_play_base_bin_unlink_stream),
14920         (gst_play_base_bin_get_streaminfo):
14921         * gst/playback/gstplaybasebin.h:
14922         Better error recovery. Added configurable preroll queue size. Faster
14923         detection of no-more-pads.
14924
14925 2004-07-16  Wim Taymans  <wim@fluendo.com>
14926
14927         * gst-libs/gst/video/video.h:
14928         Added 32 bits RGBA. Not sure if we should use another mime-type
14929         for alpha rgb. Currently the presence of the alpha_mask property
14930         signals an alpha channel.
14931
14932 2004-07-16  Wim Taymans  <wim@fluendo.com>
14933
14934         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
14935         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
14936         FPS seems to be 0.0 to MAX everywhere else.
14937
14938 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
14939
14940         * gst-libs/gst/riff/riff-media.c:
14941         (gst_riff_create_video_caps_with_data):
14942           mp42/mp43 (no caps) exist too.
14943         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
14944           Set pixel_width/height; we've got them in-caps.
14945         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
14946         * gst/wavparse/gstwavparse.c: (plugin_init):
14947           Both are valid primary.
14948         * sys/oss/gstossmixer.c:
14949           Remove i18n hack and enable translations.
14950
14951 2004-07-15  Benjamin Otte  <otte@gnome.org>
14952
14953         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
14954         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
14955           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
14956
14957 2004-07-15  Benjamin Otte  <otte@gnome.org>
14958
14959         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
14960         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
14961         (gst_alsa_close_audio):
14962           disable some of the debugging code for now. Writing debugging to a
14963           buffer is broken in current alsalib releases.
14964
14965 2004-07-12  Benjamin Otte  <otte@gnome.org>
14966
14967         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
14968           use bufferpools
14969
14970 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14971
14972         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
14973         (theora_dec_src_query), (theora_dec_event):
14974         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
14975           add debugging categories.  Remove \n's.
14976
14977 2004-07-13  Johan Dahlin  <johan@gnome.org>
14978
14979         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
14980         (gst_play_bin_get_property): Impl.
14981
14982 2004-07-13  Wim Taymans  <wim@fluendo.com>
14983
14984         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
14985         When trying to find the stream length, seek back N pages
14986         instead of just one, where N is the number of streams in
14987         the current chain.
14988
14989 2004-07-13  Wim Taymans  <wim@fluendo.com>
14990
14991         * gst-libs/gst/riff/riff-media.c:
14992         (gst_riff_create_audio_caps_with_data),
14993         (gst_riff_create_audio_caps),
14994         (gst_riff_create_audio_template_caps):
14995         * gst-libs/gst/riff/riff-media.h:
14996         * gst-libs/gst/riff/riff-read.c:
14997         (gst_riff_read_strf_vids_with_data),
14998         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
14999         * gst-libs/gst/riff/riff-read.h:
15000         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
15001         (gst_avi_demux_add_stream):
15002         Set codec_data on caps for avidemuxer.
15003
15004 2004-07-12  David Schleef  <ds@schleef.org>
15005
15006         * configure.ac: Fix test for Objective C
15007
15008 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
15009         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
15010         (gst_gdk_pixbuf_chain):
15011           Add svg and pcx to template caps, and ensure that getcaps returns a
15012           subset of the template caps.
15013           Copy each row manually for output, as gdkpixbuf may pad the
15014           rowstride to a 32-bit word boundary.
15015
15016 2004-07-12  Wim Taymans  <wim@fluendo.com>
15017
15018         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
15019         (gst_riff_create_video_template_caps):
15020         Fix the template caps to include some more media types.
15021
15022 2004-07-12  Wim Taymans  <wim@fluendo.com>
15023
15024         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15025         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
15026         (compare_ranks), (print_feature), (gst_decode_bin_init),
15027         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
15028         (try_to_link_1), (new_pad), (close_link), (type_found),
15029         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
15030         (gst_decode_bin_change_state), (plugin_init):
15031         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15032         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
15033         (gst_play_base_bin_dispose), (queue_overrun),
15034         (gen_preroll_element), (remove_prerolls), (no_more_pads),
15035         (new_stream), (setup_source), (gst_play_base_bin_set_property),
15036         (gst_play_base_bin_get_property), (play_base_eos),
15037         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15038         (gst_play_base_bin_remove_element),
15039         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
15040         (gst_play_base_bin_unlink_stream),
15041         (gst_play_base_bin_get_streaminfo):
15042         * gst/playback/gstplaybasebin.h:
15043         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
15044         (gst_play_bin_class_init), (gst_play_bin_init),
15045         (gst_play_bin_dispose), (gst_play_bin_set_property),
15046         (gst_play_bin_get_property), (gen_video_element),
15047         (gen_audio_element), (remove_sinks), (setup_sinks),
15048         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
15049         (gst_play_bin_send_event), (gst_play_bin_get_formats),
15050         (gst_play_bin_convert), (gst_play_bin_get_query_types),
15051         (gst_play_bin_query), (plugin_init):
15052         * gst/playback/test4.c: (main):
15053         More fixes on reusing of the element.
15054
15055 2004-07-11  Benjamin Otte  <otte@gnome.org>
15056
15057         * ext/mad/gstmad.c: (normal_seek):
15058           allow seeking for other methods than just SET
15059
15060 2004-07-11  Andy Wingo  <wingo@pobox.com>
15061
15062         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
15063         float, "any" caps -> buffer_frames=[0,MAX].
15064
15065         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
15066         doesn't intersect our caps with the template any more. Do it
15067         ourselves.
15068         (interleave_buffered_loop): Use g_newa instead of malloc/free.
15069
15070 2004-07-09  Wim Taymans  <wim@fluendo.com>
15071
15072         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15073         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
15074         (compare_ranks), (print_feature), (gst_decode_bin_init),
15075         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
15076         (try_to_link_1), (new_pad), (close_link), (type_found),
15077         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
15078         (gst_decode_bin_change_state), (plugin_init):
15079         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15080         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
15081         (gst_play_base_bin_dispose), (queue_overrun),
15082         (gen_preroll_element), (remove_prerolls), (no_more_pads),
15083         (new_stream), (setup_source), (gst_play_base_bin_set_property),
15084         (gst_play_base_bin_get_property), (play_base_eos),
15085         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
15086         (gst_play_base_bin_remove_element),
15087         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
15088         (gst_play_base_bin_unlink_stream),
15089         (gst_play_base_bin_get_streaminfo):
15090         * gst/playback/gstplaybasebin.h:
15091         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
15092         (gst_play_bin_class_init), (gst_play_bin_init),
15093         (gst_play_bin_dispose), (gst_play_bin_set_property),
15094         (gst_play_bin_get_property), (gen_video_element),
15095         (gen_audio_element), (remove_sinks), (setup_sinks),
15096         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
15097         (gst_play_bin_send_event), (gst_play_bin_get_formats),
15098         (gst_play_bin_convert), (gst_play_bin_get_query_types),
15099         (gst_play_bin_query), (plugin_init):
15100         * gst/playback/test4.c: (main):
15101         Work on object reuse and seeking.
15102
15103 2004-07-09  Wim Taymans  <wim@fluendo.com>
15104
15105         * examples/seeking/seek.c: (iterate):
15106         Don't consume all CPU in the idle loop.
15107
15108 2004-07-09  Wim Taymans  <wim@fluendo.com>
15109
15110         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
15111         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
15112         Add pad to element *after* setting the pad functions so that
15113         the scheduler can use the correct ones.
15114
15115 2004-07-09  Wim Taymans  <wim@fluendo.com>
15116
15117         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
15118         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
15119         Sync to keyframe after seek
15120
15121 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15122
15123         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
15124         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
15125         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
15126         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
15127         * ext/libvisual/visual.c: (gst_visual_change_state):
15128         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
15129         * ext/theora/theoradec.c: (theora_dec_change_state):
15130         * ext/theora/theoraenc.c: (theora_enc_change_state):
15131         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
15132         * gst-libs/gst/navigation/navigation.c:
15133         * gst/adder/gstadder.c: (gst_adder_change_state):
15134         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
15135         (gst_audio_convert_get_buffer):
15136         * gst/multipart/multipartdemux.c:
15137         (gst_multipart_demux_change_state):
15138         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
15139         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
15140         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
15141         * gst/videoscale/gstvideoscale.c:
15142         (gst_videoscale_handle_src_event):
15143         * gst/volume/gstvolume.c: (volume_chain_int16):
15144           don't assert in state change, this should be done by the base
15145           GstElement class.
15146           various debugging fixes.
15147
15148 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15149
15150         * configure.ac:
15151         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
15152         (gst_play_dispose), (gst_play_set_location),
15153         (gst_play_set_data_src), (gst_play_set_video_sink),
15154         (gst_play_set_audio_sink), (gst_play_set_visualization),
15155         (gst_play_connect_visualization), (gst_play_get_sink_element),
15156         (gst_play_get_all_by_interface):
15157         * gst-libs/gst/play/play.h:
15158           add new method to get elements implementing an interface.
15159           add various error logging
15160
15161 2004-07-08  Wim Taymans  <wim@fluendo.com>
15162
15163         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
15164         (make_mpeg_pipeline), (make_mpegnt_pipeline),
15165         (make_playerbin_pipeline), (query_durations_elems),
15166         (query_durations_pads), (query_positions_elems),
15167         (query_positions_pads), (update_scale), (iterate), (stop_seek),
15168         (main):
15169         Added playbin seeking example.
15170
15171 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15172
15173         * gst-libs/gst/play/play.c: (gst_play_set_location),
15174         (gst_play_set_data_src), (gst_play_set_video_sink),
15175         (gst_play_set_audio_sink), (gst_play_set_visualization),
15176         (gst_play_connect_visualization), (gst_play_get_framerate):
15177           use a macro to look up elements from hash table
15178
15179 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15180
15181         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
15182         (gst_play_get_length_callback), (gst_play_set_location),
15183         (gst_play_seek_to_time), (gst_play_set_data_src),
15184         (gst_play_set_video_sink), (gst_play_set_audio_sink),
15185         (gst_play_set_visualization), (gst_play_connect_visualization),
15186         (gst_play_get_sink_element):
15187         - add debugging info
15188         - fix looking up sink elements by iterating over complete caps
15189         - put everything except for source and autoplugger in a complete bin
15190
15191 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15192
15193         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
15194         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
15195         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
15196         (gst_alsa_sink_write), (gst_alsa_sink_loop):
15197         * ext/alsa/gstalsasink.h:
15198         - add debugging info
15199         - clean up schizophrenia of data/buffer/event
15200         - fix double event unref error
15201
15202 2004-07-08  Wim Taymans  <wim@fluendo.com>
15203
15204         * gst/playback/Makefile.am:
15205         Add headers to noinst
15206
15207 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15208
15209         * tools/gst-launch-ext-m.m:
15210         * tools/gst-launch-ext.1.in:
15211           convert to the third millenium
15212
15213 2004-07-07  David Schleef  <ds@schleef.org>
15214
15215         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
15216
15217 2004-07-07  Wim Taymans  <wim@fluendo.com>
15218
15219         * gst/playback/Makefile.am:
15220         * gst/playback/README:
15221         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15222         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
15223         (compare_ranks), (print_feature), (gst_decode_bin_init),
15224         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
15225         (try_to_link_1), (new_pad), (close_link), (type_found),
15226         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
15227         (plugin_init):
15228         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
15229         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
15230         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
15231         (gen_preroll_element), (no_more_pads), (new_stream),
15232         (setup_source), (gst_play_base_bin_set_property),
15233         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
15234         (gst_play_base_bin_add_element),
15235         (gst_play_base_bin_remove_element),
15236         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
15237         (gst_play_base_bin_unlink_stream),
15238         (gst_play_base_bin_get_streaminfo):
15239         * gst/playback/gstplaybasebin.h:
15240         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
15241         (gst_play_bin_class_init), (gst_play_bin_init),
15242         (gst_play_bin_dispose), (gst_play_bin_set_property),
15243         (gst_play_bin_get_property), (gen_video_element),
15244         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
15245         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
15246         (gst_play_bin_get_formats), (gst_play_bin_convert),
15247         (gst_play_bin_get_query_types), (gst_play_bin_query),
15248         (plugin_init):
15249         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
15250         (gst_stream_info_get_type), (gst_stream_info_class_init),
15251         (gst_stream_info_init), (gst_stream_info_new),
15252         (gst_stream_info_dispose), (gst_stream_info_set_property),
15253         (gst_stream_info_get_property):
15254         * gst/playback/gststreaminfo.h:
15255         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
15256         (main):
15257         * gst/playback/test2.c: (main):
15258         * gst/playback/test3.c: (update_scale), (main):
15259         More playbin fixes. Added README. Do better element filtering.
15260         Added base class to preroll media. Added test apps.
15261
15262 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
15263
15264         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
15265         * ext/mpeg2dec/gstmpeg2dec.h:
15266           various debugging improvements.  Reset stream to next picture
15267           instead of sequence header, otherwise seeks cannot work.
15268
15269 2004-07-07  Wim Taymans  <wim@fluendo.com>
15270
15271         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
15272         (gst_video_box_class_init), (gst_video_box_set_property),
15273         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
15274         Use pad_alloc where possible.
15275
15276 2004-07-07  Wim Taymans  <wim@fluendo.com>
15277
15278         * sys/oss/gstosselement.c: (gst_osselement_reset),
15279         (gst_osselement_parse_caps):
15280         * sys/oss/gstosselement.h:
15281         * sys/oss/gstosssrc.c: (gst_osssrc_get):
15282         Fix offset on osssrc.
15283
15284 2004-07-07  Wim Taymans  <wim@fluendo.com>
15285
15286         * ext/theora/theora.c: (plugin_init):
15287         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
15288         (theora_dec_src_query), (theora_dec_chain):
15289         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15290         (theora_enc_sink_link), (theora_buffer_from_packet),
15291         (theora_push_packet), (theora_enc_chain):
15292         Fix theora granulepos calculation.
15293         Fix overflow in duration/position calculation.
15294         Bump rank to PRIMARY for theoradec.
15295         Use granulepos of last packet to calculate position.
15296         Set keyframe flag on buffers when needed.
15297
15298 2004-07-06  David Schleef  <ds@schleef.org>
15299
15300         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
15301         serious?  (Fixed, obviously.)
15302
15303 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
15304
15305         * po/LINGUAS:
15306         * po/cs.po:
15307           added Czech translation (Miloslav Trmac)
15308
15309 2004-07-05  Wim Taymans  <wim@fluendo.com>
15310
15311         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15312         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
15313         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
15314         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
15315         (close_link), (type_found), (gst_decode_bin_set_property),
15316         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
15317         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
15318         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
15319         (gst_decode_bin_query), (plugin_init):
15320         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
15321         (gst_play_bin_class_init), (gst_play_bin_init),
15322         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
15323         (get_video_element), (new_pad), (setup_source),
15324         (gst_play_bin_set_property), (gst_play_bin_get_property),
15325         (gst_play_bin_change_state), (gst_play_bin_add_element),
15326         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
15327         (gst_play_bin_send_event), (gst_play_bin_get_formats),
15328         (gst_play_bin_convert), (gst_play_bin_get_query_types),
15329         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
15330         * gst/playback/test.c: (main):
15331         More fixes, cleaned up playbin, make it use decodebin. Added
15332         threaded property to playbin.
15333
15334 2004-07-05  Wim Taymans  <wim@fluendo.com>
15335
15336         * configure.ac:
15337         * gst/playback/Makefile.am:
15338         * gst/playback/decodetest.c: (main):
15339         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
15340         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
15341         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
15342         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
15343         (close_link), (type_found), (gst_decode_bin_set_property),
15344         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
15345         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
15346         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
15347         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
15348         (plugin_init):
15349         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
15350         (gst_play_bin_class_init), (gst_play_bin_init),
15351         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
15352         (collect_sink_pads), (find_compatibles), (close_pad_link),
15353         (try_to_link_1), (new_pad), (close_link), (type_found),
15354         (setup_source), (gst_play_bin_set_property),
15355         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
15356         (compare_ranks), (gst_play_bin_collect_factories),
15357         (gst_play_bin_change_state), (gst_play_bin_add_element),
15358         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
15359         (gst_play_bin_send_event), (gst_play_bin_get_formats),
15360         (gst_play_bin_convert), (gst_play_bin_get_query_types),
15361         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
15362         * gst/playback/test.c: (main):
15363         Added some playback helper elements and some test apps, very alpha
15364         still.
15365
15366 2004-07-04  Benjamin Otte  <otte@gnome.org>
15367
15368         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
15369           only restart audio when we indeed have an xrun to fix repeated
15370           xruns. Fix suggested by Giuliano Pochini.
15371
15372 2004-07-03  David Schleef  <ds@schleef.org>
15373
15374         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
15375         call to gst_debug_log() if debugging is disabled (bug #145118)
15376
15377 2004-07-03  Benjamin Otte  <otte@gnome.org>
15378
15379         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
15380           use our own functions for restarting the alsa device.
15381         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
15382           I should apply patches myself - use MIN for the third argument, not
15383           the second, this fixes seeking
15384
15385 2004-07-02  David Schleef  <ds@schleef.org>
15386
15387         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
15388         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
15389         do with the logic.
15390
15391 2004-07-02  David Schleef  <ds@schleef.org>
15392
15393         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
15394         output buffers.  Fix logic mistake.  (bug #144866)
15395
15396 2004-07-02  David Schleef  <ds@schleef.org>
15397
15398         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
15399         on X.  (bug #144753)
15400
15401 2004-07-02  David Schleef  <ds@schleef.org>
15402
15403         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
15404         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
15405         (bug #144624)
15406         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
15407         (gst_osselement_rate_probe_check): Add another workaround for
15408         buggy drivers (bug #145336)
15409
15410 2004-07-02  David Schleef  <ds@schleef.org>
15411
15412         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
15413         Most systems don't have MSG_NOSIGNAL.
15414
15415 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
15416
15417         * Makefile.am:
15418         * gst-libs/gst/colorbalance/Makefile.am:
15419         * gst-libs/gst/mixer/Makefile.am:
15420         * gst-libs/gst/play/Makefile.am:
15421         * gst-libs/gst/tuner/Makefile.am:
15422           (hopefully) fix both install and dist and make error message useful.
15423           needs testing across automakes.
15424
15425 2004-07-02  Benjamin Otte  <otte@gnome.org>
15426
15427         * ext/ogg/gstogg.c: (plugin_init):
15428           we require bytestream now
15429         * ext/ogg/gstoggdemux.c:
15430           huge diff to implement chain setup in a fast and generic way. This
15431           improves tag reading and startup of huge files (read: Theora videos)
15432           quite a bit. It probably contains bugs, too, so please test.
15433           Seeking is not improved to the fast method.
15434
15435 2004-06-29  Wim Taymans  <wim@fluendo.com>
15436
15437         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
15438         * ext/ogg/gstoggmux.c:
15439         Fix memleak in oggdemux when running unconnected pads.
15440         doc update in mux, start working on keyframe mode.
15441
15442 2004-06-29  Benjamin Otte  <otte@gnome.org>
15443
15444         * sys/oss/gstosssink.c:
15445         * sys/oss/gstosssrc.c:
15446           advertise correct template caps - we indeed do non-native endianness
15447           and 8bit audio has no endianness
15448         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
15449         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
15450           avoid (wrong) duplications in getcaps function and return
15451           template caps
15452
15453 2004-06-29  Wim Taymans  <wim@fluendo.com>
15454
15455         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15456         (gst_multifdsink_class_init), (gst_multifdsink_add),
15457         (gst_multifdsink_remove), (gst_multifdsink_clear),
15458         (gst_multifdsink_client_remove),
15459         (gst_multifdsink_handle_client_read),
15460         (gst_multifdsink_client_queue_data),
15461         (gst_multifdsink_client_queue_caps),
15462         (gst_multifdsink_client_queue_buffer),
15463         (gst_multifdsink_handle_client_write),
15464         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
15465         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
15466         (gst_multifdsink_init_send), (gst_multifdsink_close):
15467         Fix wrong GList iteration that could crash the server when
15468         more then 2 clients disconnect at the same time. Read all the
15469         pending commands in one batch to recover from command storms under
15470         very heavy load.
15471
15472 2004-06-28  Wim Taymans  <wim@fluendo.com>
15473
15474         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
15475         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
15476         (gst_videomixer_pad_set_property),
15477         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
15478         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
15479         (gst_videomixer_class_init), (gst_videomixer_init),
15480         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
15481         (pad_zorder_compare), (gst_videomixer_sort_pads),
15482         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
15483         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
15484         (gst_videomixer_update_queues), (gst_videomixer_loop),
15485         (plugin_init):
15486         Avoid divide by zero, choose masterpad as the pad with the highest
15487         framerate.
15488
15489 2004-06-27  Julien Moutte  <julien@moutte.net>
15490
15491         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
15492         (gst_ximagesink_xwindow_new):
15493         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
15494         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
15495         function directly. We might want to call it from somewhere else one day.
15496
15497 2004-06-27  Julien Moutte  <julien@moutte.net>
15498
15499         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
15500         (gst_ximagesink_xwindow_new):
15501         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
15502         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
15503         window decorations.
15504
15505 2004-06-27  Wim Taymans  <wim@fluendo.com>
15506
15507         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
15508         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
15509         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
15510         (gst_dvdec_set_property), (gst_dvdec_get_property):
15511         * ext/dv/gstdvdec.h:
15512         Implement drop_factor property to lower the framerate with
15513         a factor.
15514
15515 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
15516
15517         * gst-libs/gst/colorbalance/Makefile.am:
15518         * gst-libs/gst/mixer/Makefile.am:
15519         * gst-libs/gst/play/Makefile.am:
15520         * gst-libs/gst/tuner/Makefile.am:
15521           unbreak Company's fix that didn't install the -enum.h files
15522
15523 2004-06-27  Wim Taymans  <wim@fluendo.com>
15524
15525         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
15526         (gst_dvdec_change_state):
15527         * ext/dv/gstdvdec.h:
15528         Fix timestamp, duration and offset of the buffers.
15529
15530 2004-06-27  Wim Taymans  <wim@fluendo.com>
15531
15532         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15533         (gst_multifdsink_class_init), (gst_multifdsink_add),
15534         (gst_multifdsink_remove), (gst_multifdsink_clear),
15535         (gst_multifdsink_client_remove),
15536         (gst_multifdsink_handle_client_read),
15537         (gst_multifdsink_client_queue_data),
15538         (gst_multifdsink_client_queue_caps),
15539         (gst_multifdsink_client_queue_buffer),
15540         (gst_multifdsink_handle_client_write),
15541         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
15542         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
15543         (gst_multifdsink_init_send), (gst_multifdsink_close):
15544         * gst/tcp/gstmultifdsink.h:
15545         * gst/tcp/gsttcpserversink.c:
15546         (gst_tcpserversink_handle_server_read),
15547         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
15548         More multifdsink fixes, more recovery policy fixes.
15549         Removed stupid g_print
15550
15551 2004-06-26  Wim Taymans  <wim@fluendo.com>
15552
15553         * gst/tcp/Makefile.am:
15554         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
15555         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
15556         (gst_multifdsink_class_init), (gst_multifdsink_init),
15557         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
15558         (gst_multifdsink_handle_client_read),
15559         (gst_multifdsink_client_queue_data),
15560         (gst_multifdsink_client_queue_caps),
15561         (gst_multifdsink_client_queue_buffer),
15562         (gst_multifdsink_handle_client_write),
15563         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
15564         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
15565         (gst_multifdsink_chain), (gst_multifdsink_set_property),
15566         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
15567         (gst_multifdsink_close), (gst_multifdsink_change_state):
15568         * gst/tcp/gstmultifdsink.h:
15569         * gst/tcp/gsttcpplugin.c: (plugin_init):
15570         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
15571         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
15572         (gst_tcpserversink_handle_server_read),
15573         (gst_tcpserversink_handle_select),
15574         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
15575         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
15576         * gst/tcp/gsttcpserversink.h:
15577         Added multifdsink, made tcpserversink a subclass of fdsink, removed
15578         one of the locks, added recovery policy to multifdsink.
15579
15580 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15581
15582         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
15583           fix decision for when getting frames with same timestamp
15584         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
15585         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
15586         (gst_v4lsrc_get_property):
15587         * sys/v4l/gstv4lsrc.h:
15588           add latency offset property
15589
15590 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
15591
15592         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
15593         (plugin_init):
15594           fix debugging. add category.
15595
15596 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15597
15598         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
15599           fix wrong offsets
15600
15601 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15602
15603         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
15604         (gst_alsa_src_get_time), (gst_alsa_src_loop),
15605         (gst_alsa_src_change_state):
15606           return a time that is in sync with the element's processing
15607
15608 2004-06-25  Wim Taymans  <wim@fluendo.com>
15609
15610         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
15611         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
15612         (gst_tcpserversink_client_remove),
15613         (gst_tcpserversink_handle_client_read),
15614         (gst_tcpserversink_client_queue_data),
15615         (gst_tcpserversink_client_queue_caps),
15616         (gst_tcpserversink_client_queue_buffer),
15617         (gst_tcpserversink_handle_client_write),
15618         (gst_tcpserversink_queue_buffer),
15619         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
15620         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
15621         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
15622         (gst_tcpserversink_close):
15623         * gst/tcp/gsttcpserversink.h:
15624         Serversink rewrite. Really do non blocking writes to clients and
15625         maintain an internal queue to handle slower clients while not
15626         disturbing fast clients.
15627
15628 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
15629
15630         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
15631           better debug, don't override OFFSET and OFFSET_END
15632
15633 2004-06-25  Iain <iain@prettypeople.org>
15634
15635         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
15636         name=source for the wavparse pipeline.
15637
15638 2004-06-24  Johan Dahlin  <johan@gnome.org>
15639
15640         * ext/theora/theoraenc.c (theora_enc_chain): Call
15641         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
15642         streamheader caps are set correctly.
15643
15644 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
15645
15646         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
15647         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
15648           respect minimum bitrate; same could be done for max bitrate
15649
15650 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
15651
15652         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
15653         (gst_vorbisenc_setup):
15654           fix sample rate range
15655
15656 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
15657
15658         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
15659         (gst_oggvorbisenc_setup):
15660         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
15661         (gst_vorbisenc_setup):
15662           resolve ambiguities in code and description
15663
15664 2004-06-24  Wim Taymans  <wim@fluendo.com>
15665
15666         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
15667         * ext/alsa/gstalsa.h:
15668         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
15669         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
15670         Use alsa trigger_tstamp to get the timestamp of the first
15671         sample in the buffer for more precise sync. Some cleanups.
15672
15673 2004-06-24  Wim Taymans  <wim@fluendo.com>
15674
15675         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
15676         (gst_audiorate_init), (gst_audiorate_chain),
15677         (gst_audiorate_set_property), (gst_audiorate_get_property):
15678         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15679         (gst_videorate_chain):
15680         Added some logging, fixed an overflow bug in videorate.
15681
15682 2004-06-24  Benjamin Otte  <otte@gnome.org>
15683
15684         * ext/kio/Makefile.am:
15685           fix for builddir != srcdir and distcheck
15686
15687 2004-06-24  Benjamin Otte  <otte@gnome.org>
15688
15689         * gst-libs/gst/colorbalance/Makefile.am:
15690         * gst-libs/gst/mixer/Makefile.am:
15691         * gst-libs/gst/play/Makefile.am:
15692         * gst-libs/gst/tuner/Makefile.am:
15693         * gst/tcp/Makefile.am:
15694         * sys/dxr3/Makefile.am:
15695           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
15696           tarball.
15697           Also add all *.list files that were missing.
15698         * Makefile.am:
15699           add a distcheck hook to ensure the above doesn't happen again.
15700
15701 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
15702
15703         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
15704
15705 2004-06-23  Colin Walters  <walters@redhat.com>
15706
15707         * m4/Makefile.am: Distribute gst-fionread.m4.
15708
15709 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15710
15711         * configure.ac: back to dev
15712
15713 2004-06-23  Wim Taymans  <wim@fluendo.com>
15714
15715         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
15716         (gst_alsa_xrun_recovery):
15717         * ext/alsa/gstalsa.h:
15718         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
15719         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
15720         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
15721         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
15722         (gst_alsa_src_loop):
15723         Add clock to alsasrc. Take new capture timestamp when
15724         restarting after an overrun. Split up some functions between
15725         alsasrc and alsasink.
15726
15727 === release 0.8.2 ===
15728
15729 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
15730
15731         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
15732         (gst_alsa_change_state), (gst_alsa_update_avail),
15733         (gst_alsa_xrun_recovery):
15734         * ext/alsa/gstalsa.h:
15735         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
15736           merge back changes from release
15737
15738 2004-06-23  Wim Taymans  <wim@fluendo.com>
15739
15740         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
15741         (gst_audiorate_init), (gst_audiorate_chain),
15742         (gst_audiorate_set_property), (gst_audiorate_get_property):
15743         Implement sample dropping and notify
15744
15745 2004-06-22  Wim Taymans  <wim@fluendo.com>
15746
15747         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
15748         (theora_enc_sink_link), (theora_buffer_from_packet),
15749         (theora_push_packet), (theora_enc_chain):
15750         Some cleanups, make sure the timestamps are correct.
15751
15752 2004-06-22  Wim Taymans  <wim@fluendo.com>
15753
15754         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
15755         (gst_alsa_change_state), (gst_alsa_update_avail),
15756         (gst_alsa_xrun_recovery):
15757         * ext/alsa/gstalsa.h:
15758         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
15759         Cleanups, take queued samples into account when reporting
15760         the time.
15761
15762 2004-06-22  Wim Taymans  <wim@fluendo.com>
15763
15764         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15765         (gst_videorate_init):
15766         Initialize the property as well.
15767
15768 2004-06-22  Wim Taymans  <wim@fluendo.com>
15769
15770         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
15771         (gst_videorate_init), (gst_videorate_chain),
15772         (gst_videorate_set_property), (gst_videorate_get_property):
15773         Add property to make videorate silent.
15774         Add property to prefer new frames over old ones.
15775
15776 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15777
15778         * sys/osxvideo/Makefile.am:
15779         Workaround so that the osxvideo .so file gets linked with the
15780         Cocoa, OpenGL and QuickTime frameworks
15781
15782 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15783
15784         * sys/osxaudio/Makefile.am:
15785         Workaround so that the osxaudio .so file gets linked with the
15786         CoreAudio framework
15787
15788 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15789
15790         * configure.ac:
15791         Whoops, my fault...fixed build issues
15792
15793 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15794
15795         * configure.ac:
15796         Add objective-c support if running in Darwin/Mac OS X
15797         * sys/Makefile.am:
15798         * sys/osxvideo:
15799         * sys/osxvideo/Makefile.am:
15800         * sys/osxvideo/osxvideosink.h:
15801         * sys/osxvideo/osxvideosink.m:
15802         * sys/osxvideo/cocoawindow.h:
15803         * sys/osxvideo/cocoawindow.m:
15804         Add osxvideosink, a cocoa-based osx video sink
15805
15806
15807 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
15808         * ext/dvdnav/gst-dvd:
15809         Grab the gconf key from the right spot
15810         * gst/debug/gstnavseek.c: (gst_navseek_init),
15811         (gst_navseek_segseek), (gst_navseek_handle_src_event),
15812         (gst_navseek_chain):
15813         * gst/debug/gstnavseek.h:
15814           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
15815           and loop parameters of a segment seek.
15816         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
15817         (gst_videotestsrc_get_event_masks),
15818         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
15819         * gst/videotestsrc/gstvideotestsrc.h:
15820           Add seeking support to videotestsrc
15821           Initialise the timestamp_offset variable.
15822
15823 2004-06-18  Wim Taymans  <wim@fluendo.com>
15824
15825         * ext/sidplay/gstsiddec.cc:
15826         Fix negotiation and set correct end offset.
15827
15828 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
15829
15830         * configure.ac: branch and prerelease
15831
15832 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15833
15834         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
15835         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
15836         (gst_tcpclientsrc_init_receive):
15837         * gst/tcp/gsttcpclientsrc.h:
15838           read caps when connecting to server for GDP so we set them correctly
15839
15840 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15841
15842         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
15843           notify drops and duplicates
15844         * gst/videoscale/videoscale.c: (videoscale_get_structure):
15845           no good reason to limit ourselves to 100x100
15846
15847 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15848
15849         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
15850         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
15851         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
15852         (gst_v4lsrc_get_property):
15853         * sys/v4l/gstv4lsrc.h:
15854         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
15855         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
15856         (gst_v4l_set_audio):
15857         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
15858         (gst_v4lsrc_try_capture):
15859         * sys/v4l/v4lsrc_calls.h:
15860           change try_palette to more general try_capture
15861           add autoprobe option so we can turn off autoprobing
15862           various fixes
15863
15864 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15865
15866         * configure.ac:
15867           add videorate
15868         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
15869         (gst_ximagesink_class_init):
15870         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
15871         (gst_xvimagesink_class_init):
15872           run them as finalize, not dispose, since dispose can be invoked
15873           multiple times
15874
15875 2004-06-17  Wim Taymans  <wim@fluendo.com>
15876
15877         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
15878         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
15879         * ext/alsa/gstalsa.h:
15880         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
15881         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
15882         (gst_alsa_src_change_state):
15883         * ext/alsa/gstalsasrc.h:
15884         Make the xrun code timestamp and offset the buffers correctly.
15885         moved the clock to the base class, use alsa methods to get time.
15886         Do correct timestamping on outgoing buffers.
15887
15888 2004-06-17  Wim Taymans  <wim@fluendo.com>
15889
15890         * gst/audiorate/Makefile.am:
15891         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
15892         (gst_audiorate_base_init), (gst_audiorate_class_init),
15893         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
15894         (gst_audiorate_set_property), (gst_audiorate_get_property),
15895         (gst_audiorate_change_state), (plugin_init):
15896         Added an audiorate converter that fills in gaps.
15897
15898 2004-06-17  Johan Dahlin  <johan@gnome.org>
15899
15900         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
15901
15902 2004-06-16  Wim Taymans  <wim@fluendo.com>
15903
15904         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
15905         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
15906         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
15907         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
15908         (gst_v4lsrc_get_property):
15909         * sys/v4l/gstv4lsrc.h:
15910         Added a copy mode to v4lsrc where it will output a copied version
15911         of its internal hardware buffer.
15912         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
15913         can't | them.
15914
15915 2004-06-16  Wim Taymans  <wim@fluendo.com>
15916
15917         * sys/oss/gstosssrc.c: (gst_osssrc_get):
15918         Timestamp fixes.
15919
15920 2004-06-16  Wim Taymans  <wim@fluendo.com>
15921
15922         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
15923         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
15924         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
15925         (gst_v4lsrc_get_property):
15926         * sys/v4l/gstv4lsrc.h:
15927         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
15928         Added a sync mode enum property to control v4lsrc timestamp method
15929         Removed the use-fixed-fps property and moved functionality in
15930         the enum.
15931         Don't error on an error value from v4l-conf, it might not always
15932         be a real error.
15933
15934 2004-06-16  Wim Taymans  <wim@fluendo.com>
15935
15936         * gst/videorate/Makefile.am:
15937         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
15938         (gst_videorate_base_init), (gst_videorate_class_init),
15939         (gst_videorate_getcaps), (gst_videorate_link),
15940         (gst_videorate_init), (gst_videorate_chain),
15941         (gst_videorate_set_property), (gst_videorate_get_property),
15942         (gst_videorate_change_state), (plugin_init):
15943         Added a video timestamp corrector.
15944
15945 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15946
15947         fixed a potential leak with previous commit
15948
15949         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
15950
15951 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15952
15953         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
15954         Added missing refcount, fixes bug #144425
15955         Cheers Tim for finding the bug
15956
15957 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15958
15959         * sys/v4l/gstv4l.c: (plugin_init):
15960         * sys/v4l/gstv4lcolorbalance.c:
15961         * sys/v4l/gstv4lcolorbalance.h:
15962         * sys/v4l/gstv4lelement.c:
15963         * sys/v4l/gstv4lelement.h:
15964         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
15965         * sys/v4l/gstv4lmjpegsink.h:
15966         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
15967         * sys/v4l/gstv4lmjpegsrc.h:
15968         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
15969         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
15970         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
15971         * sys/v4l/gstv4lsrc.h:
15972         * sys/v4l/gstv4ltuner.c:
15973         * sys/v4l/gstv4ltuner.h:
15974         * sys/v4l/gstv4lxoverlay.c:
15975         * sys/v4l/gstv4lxoverlay.h:
15976         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
15977         (gst_v4l_set_window), (gst_v4l_enable_overlay):
15978         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
15979         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
15980         (gst_v4l_set_audio):
15981         * sys/v4l/v4l_calls.h:
15982         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
15983         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
15984         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
15985         (gst_v4lmjpegsink_playback_init),
15986         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
15987         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
15988         (gst_v4lmjpegsink_playback_stop),
15989         (gst_v4lmjpegsink_playback_deinit):
15990         * sys/v4l/v4lmjpegsink_calls.h:
15991         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
15992         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
15993         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
15994         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
15995         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
15996         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
15997         * sys/v4l/v4lmjpegsrc_calls.h:
15998         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
15999         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
16000         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
16001         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
16002         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
16003         (gst_v4lsrc_try_palette):
16004         * sys/v4l/v4lsrc_calls.h:
16005           bunch of paranoia cleanups
16006
16007 2004-06-14  David Schleef  <ds@schleef.org>
16008
16009         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
16010         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
16011         Send discont events and change timestamps appropriately when
16012         we get a seek event.  (bug #144240)
16013         * ext/cdparanoia/gstcdparanoia.h:
16014
16015 2004-06-14  Benjamin Otte  <otte@gnome.org>
16016
16017         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
16018           snd_pcm_hw_params_set_rate  since the latter fails for no good
16019           reason on some setups.
16020
16021 2004-06-14  David Schleef  <ds@schleef.org>
16022
16023         * gst/volume/demo.c: (value_changed_callback): exp10() is not
16024         standard.  Thank you for playing.
16025
16026 2004-06-14  Wim Taymans  <wim@fluendo.com>
16027
16028         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
16029         Patch 1.3 broke the ordering of the colorspace info and
16030         made the plugin basically work by coincidence, reordered
16031         the info.
16032
16033 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
16034
16035         * ext/lame/gstlame.c:
16036         * ext/mad/gstmad.c:
16037           sync caps.  Make sure mad can only output a list of rates, not
16038           a full range.  In the future, have three caps lists for each of the
16039           mpeg versions.  Change mpegversion to a double as well.
16040
16041 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
16042
16043         * gst/volume/.cvsignore:
16044         * gst/volume/Makefile.am:
16045         * gst/volume/demo.c: (value_changed_callback), (idler),
16046         (setup_gui), (main):
16047           added small demo app
16048
16049 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
16050         * ext/esd/esdsink.c: (gst_esdsink_change_state):
16051         * ext/esd/esdsink.h:
16052         Close the esd connection on pause, because esd will just wait -
16053         blocking all other esd clients indefinitely.
16054
16055 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
16056
16057         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
16058           previous commit with GST_DEBUG
16059
16060 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
16061
16062         * configure.ac:
16063           add a header check for a dvdread header in dvdnav.  Fixes #133002
16064
16065 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16066
16067         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
16068         * gst/tcp/gsttcpclientsink.h:
16069         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
16070         * gst/tcp/gsttcpclientsrc.h:
16071         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
16072         (gst_tcpserversink_handle_server_read),
16073         (gst_tcpserversink_init_send):
16074         * gst/tcp/gsttcpserversink.h:
16075         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
16076         * gst/tcp/gsttcpserversrc.h:
16077         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
16078         version of IP)
16079
16080 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16081
16082         * configure.ac:
16083         Added ogg library so that OSX detects libtheora properly
16084
16085 2004-06-11  Wim Taymans  <wim@fluendo.com>
16086
16087         * ext/theora/theoradec.c: (theora_dec_chain),
16088         (theora_dec_change_state):
16089         Don't try to decode frames before we received a keyframe.
16090
16091 2004-06-11  Wim Taymans  <wim@fluendo.com>
16092
16093         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16094         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
16095         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
16096         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
16097         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
16098         Added property to set the maximum delay of a page.
16099
16100 2004-06-10  Wim Taymans  <wim@fluendo.com>
16101
16102         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
16103         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
16104         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
16105         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
16106         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
16107         Added max-delay property to control the maximum amount
16108         of data to put in one page.
16109
16110 2004-06-10  Wim Taymans  <wim@fluendo.com>
16111
16112         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
16113         (gst_theora_enc_init), (theora_enc_sink_link),
16114         (theora_buffer_from_packet), (theora_enc_set_property),
16115         (theora_enc_get_property):
16116         Set duration on encoded buffer, added some more properties
16117
16118 2004-06-10  Wim Taymans  <wim@fluendo.com>
16119
16120         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
16121         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
16122         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
16123         * ext/theora/theoraenc.c: (theora_enc_chain):
16124         Fix refcounting bugs
16125
16126 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16127
16128         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
16129         (gst_asf_demux_loop), (gst_asf_demux_process_file),
16130         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
16131         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
16132         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
16133         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
16134         (gst_asf_demux_change_state):
16135         * gst/asfdemux/gstasfdemux.h:
16136           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
16137           feels like. I think we should set a new requirement for demuxers
16138           from now on to implement sane loop functions, data loops, query
16139           and seek functions before first commit into CVS. And this commit
16140           fixes all of the above.
16141
16142 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
16143
16144         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
16145           vorbis comments are properly encoded in UTF-8 before adding them
16146           to a GstTagList
16147
16148 2004-06-09  Benjamin Otte  <otte@gnome.org>
16149
16150         * ext/alsa/gstalsa.c: (add_channels):
16151           handle min <= max correctly
16152         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
16153         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
16154           add fixation functions so we fixate correctly. No preferring of alaw
16155           anymore because it's the first structure.
16156         * ext/alsa/gstalsa.h:
16157         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
16158         (gst_alsa_hw_params_dump):
16159           add functions to ease debugging in alsalib
16160         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
16161         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
16162         (gst_alsa_start_audio):
16163           only specify hw params if we really setup a format (fixes #134007 -
16164           or at least works around it)
16165
16166 2004-06-09  Wim Taymans  <wim@fluendo.com>
16167
16168         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
16169         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
16170         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
16171         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
16172         (gst_ogg_mux_loop):
16173         Use stream caps to setup the initial pages in the ogg stream.
16174         Correctly set the streamheader caps on the srcpad.
16175
16176 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16177
16178         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
16179         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
16180         (gst_v4lsrc_getcaps):
16181         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
16182         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
16183           add querying of fps lists for webcams.  Negotiating to a framerate
16184           now works.
16185
16186 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16187
16188         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
16189         (theora_push_buffer), (theora_push_packet),
16190         (theora_set_header_on_caps), (theora_enc_chain):
16191           mark buffers and put on streamheader, raw theora streaming
16192           now works too, whee
16193
16194 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16195
16196         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
16197         (gst_tcp_gdp_read_caps):
16198           do a looping read for caps and GDP headers too
16199
16200 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16201
16202         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
16203         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
16204           return EOS instead of NULL in _get
16205
16206 2004-06-08  Wim Taymans  <wim@fluendo.com>
16207
16208         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
16209         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
16210         (gst_tcp_gdp_write_caps):
16211         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
16212         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
16213         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
16214         Memory leak fixes
16215
16216 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16217
16218         * ext/vorbis/Makefile.am:
16219         * ext/vorbis/vorbis.c: (plugin_init):
16220         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
16221         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
16222         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
16223         (vorbis_parse_change_state):
16224         * ext/vorbis/vorbisparse.h:
16225           adding a vorbisparse element that marks the buffers, streaming
16226           raw vorbis using GDP now works, whee
16227
16228 2004-06-08  Wim Taymans  <wim@fluendo.com>
16229
16230         * ext/jpeg/Makefile.am:
16231         * ext/jpeg/README:
16232         * ext/jpeg/gstjpeg.c: (plugin_init):
16233         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
16234         (gst_smokedec_base_init), (gst_smokedec_class_init),
16235         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
16236         * ext/jpeg/gstsmokedec.h:
16237         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
16238         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
16239         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
16240         (gst_smokeenc_resync), (gst_smokeenc_chain),
16241         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
16242         * ext/jpeg/gstsmokeenc.h:
16243         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
16244         (smokecodec_flush_destination), (smokecodec_term_destination),
16245         (smokecodec_init_source), (smokecodec_fill_input_buffer),
16246         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
16247         (smokecodec_term_source), (smokecodec_encode_new),
16248         (smokecodec_decode_new), (smokecodec_info_free),
16249         (smokecodec_set_quality), (smokecodec_get_quality),
16250         (smokecodec_set_threshold), (smokecodec_get_threshold),
16251         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
16252         (find_best_size), (abs_diff), (put), (smokecodec_encode),
16253         (smokecodec_parse_header), (smokecodec_decode):
16254         * ext/jpeg/smokecodec.h:
16255         Added a new simple jpeg based codec
16256
16257 2004-06-08  Wim Taymans  <wim@fluendo.com>
16258
16259         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
16260         (gst_multipart_mux_loop):
16261         Fix memory leak
16262
16263 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16264
16265         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
16266         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
16267         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
16268         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
16269         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
16270         * gst/tcp/gsttcpserversink.h:
16271           take streamheader into account
16272
16273 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16274
16275         * gst/level/Makefile.am:
16276         * gst/level/gstlevel.c: (gst_level_class_init):
16277           clean up marshal generation
16278
16279 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16280
16281         * gst/tcp/Makefile.am:
16282         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
16283         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
16284         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
16285         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
16286         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
16287         (gst_tcpclientsrc_get_property):
16288         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16289         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
16290         (gst_tcpserversink_handle_client_read),
16291         (gst_tcpserversink_handle_client_write),
16292         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
16293         * gst/tcp/gsttcpserversink.h:
16294           add signals client-added and client-removed
16295         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
16296         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
16297         (gst_tcpserversrc_get_property):
16298         uniformized, change default protocol to NONE
16299         * gst/tcp/gsttcp-marshal.list: added
16300 2004-06-07  Benjamin Otte  <otte@gnome.org>
16301
16302         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16303           handle discont events if they happen before caps nego
16304
16305 2004-06-07  Wim Taymans  <wim@fluendo.com>
16306
16307         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
16308         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
16309         (gst_multipart_demux_plugin_init):
16310         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
16311         (gst_multipart_mux_init), (gst_multipart_mux_loop),
16312         (gst_multipart_mux_change_state):
16313         Small updates, fix a memleak
16314
16315 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
16316
16317         * configure.ac: OSS portability
16318         * ext/arts/gst_arts.c: idem
16319         * sys/oss/gstosselement.c: idem
16320         * sys/oss/gstossmixer.c: idem
16321         * sys/oss/gstosssink.c: idem
16322         * sys/oss/gstosssrc.c: idem
16323         * sys/oss/oss_probe.c: idem
16324           - check for soundcard.h in different places for some BSD
16325
16326 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
16327
16328         * AUTHORS:
16329         Add me to the authors file
16330         * configure.ac:
16331         Increase the libdv requirement to >= version 0.100
16332         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
16333         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
16334         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
16335         * ext/dv/gstdvdec.h:
16336         Add support for the new_media flag when sending DISCONT events
16337         Make the querying work when video pad is not linked
16338
16339 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
16340
16341         reviewed by Benjamin Otte  <otte@gnome.org>
16342
16343         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
16344           create a NULL-initialized array of pads, so we don't think they
16345           exist already. (fixes #143130)
16346
16347 2004-06-07  Benjamin Otte  <otte@gnome.org>
16348
16349         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
16350         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
16351         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
16352           don't use // coments
16353
16354 2004-06-07  Benjamin Otte  <otte@gnome.org>
16355
16356         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
16357           cast to GstClockTime to get higher granularity
16358         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
16359           use gst_element_set_time_delay to get the exact time
16360         * ext/mad/gstmad.c: (gst_mad_chain):
16361           use the negotiated rate instead of the current frame's rate which
16362           might be wrong because of bit errors. This avoids emitting totally
16363           bogus timestamps and screwing sync.
16364         (fixes #143454)
16365
16366 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
16367
16368         reviewed by Benjamin Otte  <otte@gnome.org>
16369
16370         * gst/adder/gstadder.c: (gst_adder_loop):
16371           properly error out when no negotiation has happened yet. (fixes
16372           #143032)
16373
16374 2004-06-06  Benjamin Otte  <otte@gnome.org>
16375
16376         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
16377           forward correctly transformed offset in discont events. Based on
16378           patch by Arwed v. Merkatz. (fixes #142851)
16379
16380 2004-06-06  David Schleef  <ds@schleef.org>
16381
16382         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
16383         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
16384         problems on several systems.
16385
16386 2004-06-06  Benjamin Otte  <otte@gnome.org>
16387
16388         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
16389           use explicit caps on the srcpad
16390         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
16391           properly error out if caps couldn't be set (fixes #142764)
16392
16393 2004-06-06  Benjamin Otte  <otte@gnome.org>
16394
16395         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
16396         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
16397         (gst_alsa_start_audio):
16398           - don't call set_periods_integer anymore, it breaks the
16399           configuration randomly
16400           - call snd_pcm_hw_params_set_access directly instead of using masks
16401           - don't fail if the sw_params can't be set, just use the default
16402           params and hope it works. Alsalib has weird issues when you touch
16403           sw_params and does no proper error reporting about what failed.
16404         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
16405         (gst_alsa_close_audio):
16406           make our alsa debugging go via gst debugging and not conditionally
16407           defined
16408         * ext/alsa/gstalsa.h:
16409           add ALSA_DEBUG_FLUSH macro
16410         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
16411         (plugin_init):
16412           wrap alsa errors to be printed via the gst debugging system and not
16413           spammed to stderr
16414
16415 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16416
16417         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
16418         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
16419         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
16420         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
16421         (qtdemux_parse_trak):
16422         * gst/qtdemux/qtdemux.h:
16423           Bitch. Also known as seeking, querying & co.
16424         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
16425         (gst_osssink_change_state):
16426         * sys/oss/gstosssink.h:
16427           Resyncing is for weenies, this hack is no longer needed and was
16428           broken anyway (since it - unintendedly - always leaves resync to
16429           TRUE).
16430
16431 2004-06-05  Andrew Turner <zxombie@hotpop.com>
16432
16433         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
16434         * gst/tcp/gsttcpclientsrc.h: idem
16435           - define MSG_NOSIGNAL if not done
16436           - include unistd.h for off_t
16437           (fixes #143749)
16438
16439 2004-06-05  Benjamin Otte  <otte@gnome.org>
16440
16441         * configure.ac:
16442         * ext/kio/Makefile.am:
16443           check for qt's moc preprocessor explicitly and use it
16444
16445 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16446
16447         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
16448           don't get a signal for EPIPE on socket writes
16449           (somebody check if this works on other platforms)
16450
16451 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16452
16453         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
16454         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
16455           check error condition on available samples correctly
16456
16457 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16458
16459         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
16460           avoid a segfault
16461         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
16462         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
16463         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
16464         (gst_tcpserversrc_gdp_read_header):
16465          use ssize_t over size_t since the former is signed and thus the
16466          check for error codes can work
16467
16468 2004-06-02  Wim Taymans  <wim@fluendo.com>
16469
16470         reviewed by: Johan
16471
16472         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
16473         (gst_multipart_mux_loop):
16474         Oops
16475
16476 2004-06-02  Wim Taymans  <wim@fluendo.com>
16477
16478         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
16479         (gst_multipart_mux_init), (gst_multipart_mux_loop),
16480         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
16481         (gst_multipart_mux_change_state):
16482         Added configurable boundary specifier, added the value as a
16483         caps field as well.
16484
16485 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16486
16487         * gst/tcp/gsttcp.c:
16488         * gst/tcp/gsttcpclientsrc.c:
16489         * gst/tcp/gsttcpclientsrc.h:
16490         * gst/tcp/gsttcpserversrc.c:
16491           - portability fix, to compile on OSX
16492             (fixes #143146)
16493
16494         * sys/osxaudio/gstosxaudioelement.c:
16495         * sys/osxaudio/gstosxaudiosink.c:
16496         * sys/osxaudio/gstosxaudiosrc.c:
16497           - compilation warnings on OSX
16498             (fixes #143153)
16499
16500 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16501
16502         * ext/vorbis/vorbisdec.c : sign warning fixes
16503
16504         * gst-libs/gst/mixer/mixertrack.c :
16505           do no use defines which are glib 2.4 specific
16506
16507 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
16508
16509         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
16510           buffer since libflac doesn't expect it (reports a sync error when
16511           it encounters that)
16512
16513
16514 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
16515
16516         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
16517         * gst-libs/gst/mixer/mixertrack.c:
16518         (gst_mixer_track_get_property), (get_mixer_track_init),
16519         (get_mixer_track_get_property): Added property accessors
16520         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
16521         * gst-libs/gst/mixer/mixeroptions.c:
16522         (gst_mixer_options_get_values): Added
16523         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
16524         * gst-libs/gst/mixer/mixer.c: Fixed comment
16525
16526
16527 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16528
16529         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
16530           improve error messages on open
16531
16532
16533 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16534
16535         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
16536           check if v4l-conf is in path
16537
16538 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
16539
16540         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
16541           change assert to a more readable error message
16542
16543 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
16544
16545         * gst-libs/gst/tuner/tunerchannel.h:
16546           - add a freq_multiplicator field to make the conversion
16547             between internal frequency unit and Hz
16548         * sys/v4l/gstv4lelement.c:
16549         * sys/v4l2/gstv4l2element.c:
16550           - change default video device to /dev/video0
16551         * sys/v4l/v4l_calls.c:
16552         * sys/v4l2/v4l2_calls.c:
16553           - we only expose frequency to the user in Hz instead of
16554             bastard v4lX unit (either 62.5kHz or 62.5Hz)
16555
16556 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
16557         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
16558           Initialise b_o_s and e_o_s variables
16559         * gst-libs/gst/riff/riff-media.c:
16560         (gst_riff_create_video_caps_with_data):
16561           Add some unusual fourcc's from mplayer avi's
16562         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
16563           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
16564           autoplugging.
16565
16566 2004-05-28  Wim Taymans  <wim@fluendo.com>
16567
16568         * configure.ac:
16569         * gst/alpha/Makefile.am:
16570         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
16571         (gst_alpha_get_type), (gst_alpha_base_init),
16572         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
16573         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
16574         (gst_alpha_chroma_key), (gst_alpha_chain),
16575         (gst_alpha_change_state), (plugin_init):
16576         A plugin to add an alpha channel to I420 video. Can optionally do
16577         chroma keying.
16578         * gst/multipart/Makefile.am:
16579         * gst/multipart/multipart.c: (plugin_init):
16580         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
16581         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
16582         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
16583         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
16584         (gst_multipart_demux_change_state),
16585         (gst_multipart_demux_plugin_init):
16586         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
16587         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
16588         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
16589         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
16590         (gst_multipart_mux_pad_unlink),
16591         (gst_multipart_mux_request_new_pad),
16592         (gst_multipart_mux_handle_src_event),
16593         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
16594         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
16595         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
16596         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
16597         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
16598         send multipart jpeg images to a browser.
16599         * gst/videobox/Makefile.am:
16600         * gst/videobox/README:
16601         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
16602         (gst_video_box_get_type), (gst_video_box_base_init),
16603         (gst_video_box_class_init), (gst_video_box_init),
16604         (gst_video_box_set_property), (gst_video_box_get_property),
16605         (gst_video_box_sink_link), (gst_video_box_i420),
16606         (gst_video_box_ayuv), (gst_video_box_chain),
16607         (gst_video_box_change_state), (plugin_init):
16608         Crops or adds borders around an image. can do alpha channel
16609         borders as well.
16610         * gst/videomixer/Makefile.am:
16611         * gst/videomixer/README:
16612         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
16613         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
16614         (gst_videomixer_pad_get_sink_event_masks),
16615         (gst_videomixer_pad_get_property),
16616         (gst_videomixer_pad_set_property),
16617         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
16618         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
16619         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
16620         (gst_videomixer_base_init), (gst_videomixer_class_init),
16621         (gst_videomixer_init), (gst_videomixer_request_new_pad),
16622         (gst_videomixer_handle_src_event),
16623         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
16624         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
16625         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
16626         (gst_videomixer_loop), (gst_videomixer_get_property),
16627         (gst_videomixer_set_property), (gst_videomixer_change_state),
16628         (plugin_init):
16629         Generic video mixer plugin, can handle multiple inputs all with
16630         different framerates and video sizes. Is fully alpha channel
16631         aware.
16632
16633 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16634
16635         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
16636           Select first track as master track. Not sure how else to handle
16637           that...
16638         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
16639           Discard discont events. Should fix #142962.
16640
16641 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16642
16643         * ext/alsa/Makefile.am:
16644         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
16645         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
16646         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
16647         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
16648         (gst_alsa_mixer_get_option):
16649         * ext/alsa/gstalsamixer.h:
16650         * ext/alsa/gstalsamixeroptions.c:
16651         (gst_alsa_mixer_options_get_type),
16652         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
16653         (gst_alsa_mixer_options_new):
16654         * ext/alsa/gstalsamixeroptions.h:
16655         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
16656         * ext/alsa/gstalsamixertrack.h:
16657           Add enumerations (as GstMixerOptions). Make correct distinction
16658           between input/output tracks. Add capture/playback private flag.
16659           Use flag to decide on whether to set capture or playback volumes
16660           or switches. Use playback and record switches.
16661         * gst-libs/gst/mixer/Makefile.am:
16662         * gst-libs/gst/mixer/mixer-marshal.list:
16663         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
16664         (gst_mixer_set_option), (gst_mixer_get_option),
16665         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
16666         (gst_mixer_volume_changed), (gst_mixer_option_changed):
16667         * gst-libs/gst/mixer/mixer.h:
16668         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
16669         (gst_mixer_options_class_init), (gst_mixer_options_init),
16670         (gst_mixer_options_dispose):
16671         * gst-libs/gst/mixer/mixeroptions.h:
16672           Add GstMixerOptions.
16673         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
16674           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
16675           broken device detection on computers with multiple OSS sound
16676           cards.
16677
16678 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16679
16680         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
16681           fixate nicely even when the peer is not negotiating
16682
16683 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16684
16685         * gst/audioconvert/gstaudioconvert.c:
16686         (gst_audio_convert_parse_caps):
16687           make sure we don't allow depth > width
16688         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
16689           fixate endianness to G_BYTE_ORDER as default
16690         * gst/audioscale/gstaudioscale.c:
16691           we don't handle another endianness as host-endianness
16692
16693 2004-05-25  David Schleef  <ds@schleef.org>
16694
16695         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
16696
16697 2004-05-24  Benjamin Otte  <otte@gnome.org>
16698
16699         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
16700         (gst_oggvorbisenc_setup):
16701           properly fail when we can't setup the vorbis encoder due to
16702           unsupported settings
16703         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
16704         (gst_vorbisenc_setup):
16705           same
16706         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
16707           fix case where warnings occured when one pad was unlinked while the
16708           other's link function was called
16709
16710 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
16711
16712         * gst/tcp/Makefile.am:
16713           use GST_ENABLE_NEW
16714
16715 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16716
16717         * gst-libs/gst/resample/private.h:
16718           don't use optimizations that are #if 0'ed
16719
16720 2004-05-24  Wim Taymans  <wim@fluendo.com>
16721
16722         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
16723         Fix potential division by zero error and hopefully get
16724         the position query right to get correct timestamps on avi
16725         audio.
16726
16727 2004-05-24  Wim Taymans  <wim@fluendo.com>
16728
16729         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
16730         (gst_videoscale_scale_nearest_str2),
16731         (gst_videoscale_scale_nearest_str4),
16732         (gst_videoscale_scale_nearest_32bit),
16733         (gst_videoscale_scale_nearest_24bit),
16734         (gst_videoscale_scale_nearest_16bit):
16735         Fix the scaling algorithm and avoid a buffer overflow.
16736         removed the while loop in the scaling function as it
16737         was used for point sampling only.
16738
16739 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16740
16741         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
16742         (gst_id3_tag_class_init), (gst_id3_tag_init),
16743         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
16744         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
16745         (gst_id3_tag_send_tag_event):
16746           lots of fixes to make id3mux work and id3demux work correctly
16747
16748 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16749
16750         * ext/Makefile.am:
16751           add rules to build shout2send (was removed by accident
16752           when this module was no more marked experimental/broken)
16753
16754 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16755
16756         * ext/shout2/gstshout2.c:
16757         * ext/shout2/gstshout2.h:
16758           adding a "connection problem" signal to shout2send
16759           (fixes #142954)
16760
16761 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
16762
16763         * ext/kio/kioreceiver.cpp:
16764         * ext/kio/kioreceiver.h:
16765           fix sign comparison issues
16766
16767 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16768
16769         * gst/cdxaparse/gstcdxaparse.c:
16770         * gst/cdxaparse/gstcdxaparse.h:
16771           some renaming
16772           add some checks/sanity
16773           prepare for seek addition
16774
16775         * sys/sunaudio/gstsunaudio.c:
16776           remove exported dupe init function
16777
16778 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
16779
16780         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
16781         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
16782           Fix format conversion and position querying.
16783         * gst/debug/progressreport.c: (gst_progressreport_report):
16784           Don't output a bogus total value that we didn't query.
16785         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
16786           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
16787           only a blank window after xine has been used.
16788
16789 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16790
16791         * m4/as-arts.m4:
16792           sync with upstream version to fix test on FC2
16793           readd with -ko to preserve Id header
16794
16795 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16796
16797         * configure.ac:
16798           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
16799         * gst/tcp/gsttcpclientsrc.c: idem
16800         * gst/tcp/gsttcpserversink.c: idem
16801         * gst/tcp/gsttcpserversrc.c: idem
16802         * m4/gst-fionread.m4: idem
16803
16804         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
16805
16806         * configure.ac: enable speex plugin for speex 1.1.5+
16807         * ext/speex/gstspeexenc.c: fix cast warning
16808
16809         * ext/esd/README: fix typo
16810
16811 2004-05-20  David Schleef  <ds@schleef.org>
16812
16813         * configure.ac: Minor cosmetic change to convince the buildbot to
16814         reautogen.
16815         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
16816         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
16817         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
16818         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
16819         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
16820         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
16821         More hacking.  Plays audio now.
16822
16823 2004-05-20  David Schleef  <ds@schleef.org>
16824
16825         * configure.ac:
16826         * sys/Makefile.am:
16827
16828 2004-05-20  David Schleef  <ds@schleef.org>
16829
16830         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
16831         * sys/osxaudio/gstosxaudio.c:
16832         * sys/osxaudio/gstosxaudioelement.c:
16833         * sys/osxaudio/gstosxaudioelement.h:
16834         * sys/osxaudio/gstosxaudiosink.c:
16835         * sys/osxaudio/gstosxaudiosink.h:
16836         * sys/osxaudio/gstosxaudiosrc.c:
16837         * sys/osxaudio/gstosxaudiosrc.h:
16838
16839 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
16840
16841         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
16842         (gst_vorbisenc_chain):
16843           put the codec headers on the caps as streamheader as well as
16844           pushing them out
16845
16846 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
16847
16848         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
16849         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
16850         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
16851         split up push_packet into two functions
16852
16853 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
16854
16855         * gst/tcp/.cvsignore:
16856           ignore enums
16857         * gst/tcp/Makefile.am:
16858         * gst/tcp/README:
16859         * gst/tcp/gsttcp.c:
16860         * gst/tcp/gsttcp.h:
16861         * gst/tcp/gsttcpclientsink.c:
16862         * gst/tcp/gsttcpclientsink.h:
16863         * gst/tcp/gsttcpclientsrc.c:
16864         * gst/tcp/gsttcpclientsrc.h:
16865         * gst/tcp/gsttcpplugin.c:
16866         * gst/tcp/gsttcpserversink.c:
16867         * gst/tcp/gsttcpserversink.h:
16868         * gst/tcp/gsttcpserversrc.c:
16869         * gst/tcp/gsttcpserversrc.h:
16870           add new tcp elements
16871
16872 2004-05-19  Wim Taymans  <wim@fluendo.com>
16873
16874         * gst/law/mulaw-conversion.c: (mulaw_encode):
16875         Fix overflow bug in ulaw encoding.
16876
16877 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16878
16879         * ext/mad/gstmad.c: (gst_mad_handle_event):
16880           don't unref the event twice
16881
16882 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16883
16884         * configure.ac:
16885           remove -Wno-sign-compare
16886
16887 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16888
16889         * configure.ac:
16890           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
16891           if you want to work against glib 2.2 and 2.4
16892
16893 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
16894
16895         * gst/tcp/Makefile.am:
16896         * gst/tcp/gsttcp.c:
16897         * gst/tcp/gsttcp.h:
16898         * gst/tcp/gsttcpsink.h:
16899         * gst/tcp/gsttcpsrc.h:
16900           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
16901
16902 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16903
16904         * gst/debug/tests.c: (md5_get_value):
16905           fix segfault on gst-inspect
16906
16907 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16908
16909         * gst/debug/testplugin.c:
16910         * gst/debug/tests.c:
16911         * gst/debug/tests.h:
16912           add new extensible and configurable testing element. Current tests
16913           include buffer count, stream length, timestamp/duration matching and
16914           md5.
16915         * gst/debug/Makefile.am:
16916         * gst/debug/gstdebug.c: (plugin_init):
16917           add infrastructure for new element
16918
16919 2004-05-19  Johan Dahlin  <johan@gnome.org>
16920
16921         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
16922         ending of the array. Fixes gst-inspect segfault on ppc.
16923
16924 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16925
16926         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
16927
16928         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
16929
16930 2004-05-18  David Schleef  <ds@schleef.org>
16931
16932         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
16933         warnings (bugs, actually) noticed by gcc but not forte.
16934
16935 2004-05-18  David Schleef  <ds@schleef.org>
16936
16937         * sys/sunaudio/Makefile.am:
16938         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
16939
16940 2004-05-18  David Schleef  <ds@schleef.org>
16941
16942         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
16943         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
16944         to allow qtdemux to use non-seekable streams. (bug #142272)
16945
16946 2004-05-18  David Schleef  <ds@schleef.org>
16947
16948         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
16949         (gst_resample_sinc_ft_float): Remove use of static temporary
16950         buffer.  This code was obviously not supposed to last long, but
16951         it's stuck in our ABI, so it required a little hack to make it
16952         ABI-compatible.  Fixes #142585.
16953         * gst-libs/gst/resample/resample.h: same.
16954
16955 2004-05-18  David Schleef  <ds@schleef.org>
16956
16957         * configure.ac: Add sunaudio
16958         * examples/Makefile.am: make gstplay depend on gconf
16959         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
16960         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
16961         (convert_table_lookup), (img_convert): remove c99-isms
16962         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
16963           unsigned, to fix a warning on Solaris
16964         * gst/mpeg1sys/systems.c: bcopy->memcpy
16965         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
16966         * sys/Makefile.am: Add sunaudio
16967
16968 2004-05-18  Wim Taymans  <wim@fluendo.com>
16969
16970         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
16971         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
16972         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
16973         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
16974         (gst_ogg_mux_loop):
16975         Fix an ugly memleak where the muxer didn't flush enough ogg
16976         pages. This also resulted in badly muxed ogg files.
16977
16978 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
16979
16980         * gst/asfdemux/asfheaders.c :
16981         * gst/asfdemux/asfheaders.h :
16982         * gst/asfdemux/gstasfdemux.c :
16983           - fix ASF_OBJ_PADDING guid
16984           - add 3 new object guids (language list, metadata,
16985             extended stream properties)
16986           - add a function to parse extended header objects
16987
16988 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16989
16990         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
16991           remove leftover debugging g_print
16992
16993 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
16994
16995         * ext/mad/gstmad.c: (gst_mad_handle_event):
16996           Fix for when the first format in a discont event is not a
16997           byte-based one. Should fix #137710.
16998
16999 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17000
17001         * m4/a52.m4 : fix compilation with -Wall -Werror
17002         * m4/libfame.m4 : idem
17003         * m4/libmikmod.m4 : idem
17004
17005 2004-05-17  Benjamin Otte  <otte@gnome.org>
17006
17007         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
17008           signal the new tags before giving up the reference
17009
17010 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17011
17012         * ext/shout2/gstshout2.c:
17013           use application/ogg instead of application/x-ogg (patch by Patrick
17014           Guimond, fixes #142432)
17015         * sys/oss/gstosselement.c: (gst_osselement_reset),
17016         (gst_osselement_sync_parms):
17017           don't set fragment size unless specified (fixes #142493)
17018
17019 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17020
17021         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
17022           fixes #142664
17023
17024 2004-05-17  Benjamin Otte  <otte@gnome.org>
17025
17026         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
17027           compute offsets correctly for internal buffers so timestamps are set
17028           correctly when we can't seek. Also handle cases where there are no
17029           offsets. (based on a patch by David Moore, fixes #142507)
17030
17031 2004-05-17  Benjamin Otte  <otte@gnome.org>
17032
17033         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17034           use correct variable when determining amount of data to skip so we
17035           don't skip into the void and segfault
17036
17037 2004-05-16  Benjamin Otte  <otte@gnome.org>
17038
17039         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
17040           Hi, I'm a memleak
17041
17042 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17043
17044         * gst/asfdemux/gstasfdemux.c:
17045           - fix a mem leak and always propagate tags
17046           - add WMV3 to known video codecs (but no decoder yet)
17047           - replace "surplus data" at end of audio header for what
17048             it is : codec specific data
17049           - fix a typo
17050
17051 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
17052
17053         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
17054
17055         * gst-libs/gst/audio/audioclock.c:
17056           Fix wrong return type (#142205).
17057
17058 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17059
17060         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
17061           Ignore CRCs by default (fixes #142566).
17062
17063 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17064
17065         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
17066         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
17067         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
17068         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
17069         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
17070         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
17071           Fix for cases where we fail to attach to a mixer.
17072
17073 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17074
17075         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
17076           Don't touch events after not owning them anymore.
17077         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
17078         (gst_wavparse_fmt), (gst_wavparse_other),
17079         (gst_wavparse_handle_seek), (gst_wavparse_loop),
17080         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
17081         (gst_wavparse_srcpad_event):
17082         * gst/wavparse/gstwavparse.h:
17083           Add seeking, fix querying.
17084
17085 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17086
17087         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
17088           - process comments even if they don't end with \0\0
17089             g_convert would ignore them if present and works well without them
17090
17091 2004-05-16  Benjamin Otte  <otte@gnome.org>
17092
17093         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
17094           simplify caps
17095
17096 2004-05-16  Benjamin Otte  <otte@gnome.org>
17097
17098         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
17099           don't write to memory we might not write to - g_convert does that
17100           for us anyway (fixes #142613)
17101         (gst_asf_demux_audio_caps):
17102           comment out gst_util_dump_mem
17103
17104 2004-05-16  Benjamin Otte  <otte@gnome.org>
17105
17106         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17107           compute correct expected timestamps after seek (broken since
17108           last commit)
17109         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
17110           rename element and debugging category to gdkpixbufscale
17111
17112 2004-05-16  Benjamin Otte  <otte@gnome.org>
17113
17114         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
17115           add error checking to snd_pcm_delay and remove duplicate call to
17116           snd_pcm_delay that caused issues (see inline code comments)
17117         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
17118           make more readable and fix return value when snd_pcm_delay fails
17119         (fixes #142586)
17120
17121 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
17122         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
17123         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
17124         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
17125         (gst_pixbufscale_link), (gst_pixbufscale_init),
17126         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
17127         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
17128         (gst_pixbufscale_get_property), (pixbufscale_init):
17129         * ext/gdk_pixbuf/pixbufscale.h:
17130         Add these files I forgot earlier
17131
17132 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
17133         * ext/gdk_pixbuf/Makefile.am:
17134         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
17135         * ext/gdk_pixbuf/gstgdkpixbuf.h:
17136         Add new pixbufscale element to scale RGB video
17137         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
17138         and HYPER interpolation correctly.
17139         * ext/theora/theoraenc.c: (theora_enc_chain),
17140         Discard buffer and return if explicit caps could not be set
17141         (theora_enc_get_property):
17142         Make _get return kbps for the bitrate consistent with
17143         the _set function.
17144
17145
17146 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17147
17148         * ext/libvisual/visual.c: (gst_visual_chain):
17149           add missing visual_audio_analyze
17150
17151 2004-05-14  David Schleef  <ds@schleef.org>
17152
17153         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
17154         is killed while we're playing.
17155         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
17156         gst_element_no_more_pads().
17157
17158 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17159
17160         * gst-libs/gst/riff/riff-read.c :
17161           - fix INFO tag extraction in RIFF/AVI files
17162             because gst_event_unref (event) also freed taglist
17163           - avoid a mem leak
17164
17165 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17166
17167         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
17168         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
17169
17170         * gst/auparse/gstauparse.c :
17171           - add code (commented for now) to support audio/x-adpcm on src pad
17172             (we have no decoder for those layout yet)
17173
17174         * gst/cdxaparse/gstcdxaparse.c :
17175         * gst/cdxaparse/gstcdxaparse.h :
17176           - partial rewrite using RiffRead (ripped iain's wavparse code)
17177
17178         * gst/rtp/gstrtpL16enc.c : typo
17179         * gst/rtp/gstrtpgsmenc.c : typo
17180
17181 2004-05-13  Benjamin Otte  <otte@gnome.org>
17182
17183         * configure.ac:
17184           check for exact version of libvisual, it's not supposed to be
17185           API/ABI stable yet
17186
17187 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17188
17189         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
17190           signal no-more-pads
17191
17192 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
17193
17194         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
17195         Report which format was used for GST_FORMAT_DEFAULT
17196         * gst/debug/Makefile.am:
17197         * gst/debug/gstdebug.c: (plugin_init):
17198         * gst/debug/progressreport.c: (gst_progressreport_base_init),
17199         (gst_progressreport_class_init), (gst_progressreport_init),
17200         (gst_progressreport_report), (gst_progressreport_set_property),
17201         (gst_progressreport_get_property), (gst_progressreport_chain),
17202         (gst_progressreport_plugin_init):
17203         Add progressreport element for testing.
17204
17205 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17206
17207         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
17208         * sys/v4l/gstv4lsrc.h:
17209         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
17210         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
17211         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
17212         (gst_v4lsrc_grab_frame):
17213           add more debugging
17214           send a discont at start
17215
17216 2004-05-12  Colin Walters  <walters@redhat.com>
17217
17218         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
17219         inflooping if we can't find a chunk.  Or in other words, don't blow
17220         chunks if we don't have a chunk to blow.
17221
17222 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
17223         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
17224         Remove old debug output
17225         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
17226         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
17227         (gst_dvdec_set_property), (gst_dvdec_get_property):
17228         Change the quality setting to an enum, so it works from gst-launch
17229         Don't renegotiate a non-linked pad. Allows audio only decoding.
17230         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
17231         (gst_deinterlace_link), (gst_deinterlace_init):
17232         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
17233         (gst_videodrop_link):
17234         Some caps negotiation fixes
17235
17236 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17237
17238         * ext/tarkin/gsttarkin.c :
17239           - Change RANK from NONE to PRIMARY
17240         * ext/gdk_pixbuf/gstgdkpixbuf.c :
17241           - Change RANK from NONE to MARGINAL
17242         * ext/divx/gstdivxenc.c :
17243           - Change RANK from PRIMARY to NONE (encoder/spider issue)
17244
17245 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17246
17247         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
17248         (gst_vorbisenc_push_packet):
17249           copy a function that was added between 1.0 and 1.0.1 until we
17250           depend on worthwhile features of post-1.0
17251
17252 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17253
17254         * configure.ac:
17255           enable shout2 by default
17256         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
17257         (gst_shout2send_base_init), (gst_shout2send_init),
17258         (gst_shout2send_connect), (gst_shout2send_change_state):
17259         * ext/shout2/gstshout2.h:
17260           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
17261           #142262)
17262         * ext/theora/theora.c: (plugin_init):
17263           don't set rank on encoders
17264
17265 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
17266
17267         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
17268           Use codec_data property instead of flag1 and flag2 for wma
17269
17270 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17271
17272         * gst/cdxaparse/gstcdxaparse.c :
17273           - Add mpegversion to CAPS to make it link
17274           - Rank is as GST_RANK_SECONDARY instead of NONE
17275         * gst/auparse/gstauparse.c :
17276           - Document all audio encoding we can encounter from Solaris 9
17277             headers and libsndfile information.
17278           - Increase max. rate from 48000 to 192000 (to match other elements)
17279           - Don't try to play junk data between header and samples
17280
17281 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17282
17283         * ext/libvisual/visual.c: (gst_visual_getcaps):
17284           use the right caps depending on endianness (I hope)
17285         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
17286           use GST_RANK_NONE for all non-decoding elements or spider gets
17287           mighty confused
17288
17289 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17290
17291         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
17292           Fix some odd cases and fix BE metadata parsing of unicode16 text.
17293
17294 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17295
17296         * gst/switch/gstswitch.c: (gst_switch_release_pad),
17297         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
17298         (gst_switch_loop), (gst_switch_get_type):
17299           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
17300           HEADERS. Had to be said.
17301
17302 2004-05-10  David Schleef  <ds@schleef.org>
17303
17304         * configure.ac: Add prototype Dirac support.
17305         * ext/Makefile.am:
17306         * ext/dirac/Makefile.am:
17307         * ext/dirac/gstdirac.cc:
17308         * ext/dirac/gstdiracdec.cc:
17309
17310 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17311
17312         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
17313         (gst_auparse_init), (gst_auparse_chain),
17314         (gst_auparse_change_state):
17315           Hack around spider. Remove me some day please.
17316
17317 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17318
17319         * gst/auparse/gstauparse.c: (gst_auparse_chain):
17320           Fix for some uninitialized variables in previous patch, also
17321           makes it work. Fixes #142286 while we're at it.
17322
17323 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17324
17325         * gst/auparse/gstauparse.c:
17326                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
17327                 only unsupported formats are ADPCM/CCITT G.72x
17328                 reviewed by Ronald
17329         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
17330
17331 2004-05-10  Wim Taymans  <wim@fluendo.com>
17332
17333         * ext/vorbis/Makefile.am:
17334         * ext/vorbis/README:
17335         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
17336         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
17337         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
17338         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
17339         (gst_oggvorbisenc_convert_sink),
17340         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
17341         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
17342         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
17343         (get_constraints_string), (update_start_message),
17344         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
17345         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
17346         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
17347         * ext/vorbis/oggvorbisenc.h:
17348         * ext/vorbis/vorbis.c: (plugin_init):
17349         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
17350         (raw_caps_factory), (gst_vorbisenc_class_init),
17351         (gst_vorbisenc_init), (gst_vorbisenc_setup),
17352         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
17353         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
17354         * ext/vorbis/vorbisenc.h:
17355         Added a raw vorbis encoder to be used with the oggmuxer.
17356         We still need the old encoder for some gnome applications,
17357         read the README to find out how that works.
17358         The raw encoder is called "rawvorbisenc" until 0.9.
17359
17360 2004-05-10  Wim Taymans  <wim@fluendo.com>
17361
17362         * ext/ogg/gstogg.c: (plugin_init):
17363         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
17364         (gst_ogg_print):
17365         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
17366         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
17367         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
17368         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
17369         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
17370         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
17371         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
17372         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
17373         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
17374         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
17375         Added an ogg muxer.
17376         Small typo fixes in the demuxer.
17377
17378 2004-05-10  Wim Taymans  <wim@fluendo.com>
17379
17380         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17381         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
17382         (theora_enc_change_state), (theora_enc_set_property),
17383         (theora_enc_get_property):
17384         Mark the last packet with an EOS flag which is not really needed
17385         in gstreamer.
17386         Do some better video framerate initialisation.
17387         Update the buffer timestamp.
17388
17389 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
17390
17391         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
17392         Return the result of the parent state change call
17393
17394 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17395
17396         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
17397         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
17398         * gst/law/alaw-encode.c : (idem)
17399         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
17400         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
17401         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
17402
17403 2004-05-09  Benjamin Otte  <otte@gnome.org>
17404
17405         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
17406           don't use a fixed buffer size when writing variable length data to
17407           it. Fixes memory corruption and makes alsasrc work
17408
17409 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17410
17411         * ext/gnomevfs/gstgnomevfssink.c:
17412         (_gst_boolean_allow_overwrite_accumulator),
17413         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
17414           Run glib's default signal handler (??) in RUN_CLEANUP rather than
17415           RUN_LAST, and don't use that to set the accumulator value because
17416           then it's always FALSE.
17417
17418 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17419
17420         * gst-libs/gst/riff/riff-media.c:
17421         (gst_riff_create_video_caps_with_data),
17422         (gst_riff_create_audio_caps),
17423         (gst_riff_create_audio_template_caps):
17424         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
17425           Fix for unaligned RIFF files (i.e. where all the chunks together
17426           in a LIST chunk are not of the same size as the size given in
17427           the LIST chunk header). Fixes several odd WAVE files. Also fix
17428           ADPCM (block_align property) in audio, so that wavparse based
17429           on this works now as it used to stand-alone.
17430
17431 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
17432
17433         reviewed by Benjamin Otte  <otte@gnome.org>
17434
17435         * ext/a52dec/gsta52dec.c:
17436         * ext/divx/gstdivxdec.c:
17437         * ext/divx/gstdivxenc.c:
17438         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
17439         * ext/faac/gstfaac.c: (gst_faac_base_init):
17440         * ext/faad/gstfaad.c: (gst_faad_base_init):
17441         * ext/ivorbis/vorbisfile.c:
17442         * ext/lame/gstlame.c:
17443         * ext/libfame/gstlibfame.c:
17444         * ext/mpeg2enc/gstmpeg2enc.cc:
17445         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
17446         * ext/sidplay/gstsiddec.cc:
17447         * ext/speex/gstspeexdec.c:
17448         * ext/speex/gstspeexenc.c:
17449         * ext/xvid/gstxviddec.c:
17450         * ext/xvid/gstxvidenc.c:
17451           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
17452           (fixes #142193)
17453
17454 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17455
17456         * ext/alsa/gstalsa.c: (device_list),
17457         (gst_alsa_class_probe_devices):
17458         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
17459           Fix alsa oddness in mixer after the combination of using mixer
17460           in source/sink elements and using hw:x,y instead of just hw:x.
17461
17462 2004-05-09  Benjamin Otte  <otte@gnome.org>
17463
17464         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
17465         (gst_wavparse_create_sourcepad):
17466           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
17467           sourcepads
17468
17469 2004-05-09  Benjamin Otte  <otte@gnome.org>
17470
17471         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
17472           allow discont events before caps nego
17473
17474 2004-05-08  Benjamin Otte  <otte@gnome.org>
17475
17476         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
17477           don't leak events
17478
17479 2004-05-08  Benjamin Otte  <otte@gnome.org>
17480
17481         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
17482         (gst_level_change_state), (gst_level_init):
17483         * gst/level/gstlevel.h:
17484           figure out if we're initialized directly instead of keeping a
17485           variable that's wrong in 90% of cases
17486           don't initialize pads and then leak them and use a new unitialized
17487           pad. (fixes #142084)
17488           these were bugs so n00bish I didn't find them for an hour :/
17489
17490 2004-05-08 Iain <iain@prettypeople.org>
17491
17492         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
17493         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
17494         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
17495         return the length that was read.
17496         (gst_riff_read_strf_auds): Allow fmt tags as well.
17497
17498 2004-05-07  David Schleef  <ds@schleef.org>
17499
17500         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
17501         signed char assumption in faad.h.
17502
17503 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17504
17505         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
17506           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
17507
17508 2004-05-07  Colin Walters  <walters@redhat.com>
17509
17510         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
17511         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
17512         function.
17513         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
17514         Add dispose function.
17515
17516 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
17517         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
17518           Fix caps nego and pad templates. RGB mode caps should
17519           work now.
17520         * ext/dvdnav/gst-dvd:
17521           Move mpeg2dec inside the thread because otherwise the
17522           queue rejects cap changes mid-stream
17523         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
17524         (gst_mpeg2dec_flush_decoder):
17525           For mpeg2dec > 0.4.0, call the flush function instead of
17526           manually extracting all in-flight frames.
17527         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
17528         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
17529           Change mime type video/dv go video/x-dv to match the
17530           rest of gst-plugins
17531
17532 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17533
17534         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
17535         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
17536         (gst_alsa_sink_class_init):
17537         * ext/alsa/gstalsasink.h:
17538         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
17539         (gst_alsa_src_class_init):
17540         * ext/alsa/gstalsasrc.h:
17541           Make alsasink/src a subclass of alsamixer so that mixer stuff
17542           shows up in gst-rec. Needs some finetuning.
17543
17544 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17545
17546         * ext/lame/gstlame.c: (gst_lame_chain):
17547           simplify
17548         * ext/mad/gstmad.c: (gst_mad_handle_event):
17549           fix event leak
17550         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
17551           be able to detect mp3 files < 4096 bytes
17552
17553 2004-05-06  Wim Taymans  <wim@fluendo.com>
17554
17555         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
17556         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
17557         (theora_enc_set_property), (theora_enc_get_property):
17558         Also encode the first frame, cleanup some code.
17559
17560 2004-05-06  Wim Taymans  <wim@fluendo.com>
17561
17562         * ext/mpeg2enc/gstmpeg2enc.cc:
17563         Forward events first before deciding that negotiation was
17564         not performed.
17565
17566 2004-05-06  Wim Taymans  <wim@fluendo.com>
17567
17568         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
17569         First process the events before deciding that negotiation
17570         was not performed.
17571
17572 2004-05-06  Wim Taymans  <wim@fluendo.com>
17573
17574         * ext/theora/Makefile.am:
17575         * ext/theora/theora.c: (plugin_init):
17576         * ext/theora/theoradec.c: (theora_dec_change_state):
17577         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
17578         (gst_theora_enc_class_init), (gst_theora_enc_init),
17579         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
17580         (theora_enc_chain), (theora_enc_change_state),
17581         (theora_enc_set_property), (theora_enc_get_property):
17582         Added a theora encoder, grouped the encoder and decoder into the
17583         same plugin.
17584
17585 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17586
17587         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
17588         (gst_jpegenc_chain):
17589         fix DURATION on outgoing buffers
17590         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
17591         debug using time formats
17592         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
17593         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
17594         (gst_xvimagesink_sink_link):
17595         windows with width/height 0 generate X errors, so don't allow them
17596
17597 2004-05-05  Wim Taymans  <wim@fluendo.com>
17598
17599         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
17600         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
17601         (gst_mpeg2dec_negotiate_format):
17602         * ext/mpeg2dec/gstmpeg2dec.h:
17603           removed the static pad template so that we can add the
17604           more accurate framerate value to the caps.
17605
17606
17607 2004-05-04  Benjamin Otte  <otte@gnome.org>
17608
17609         * configure.ac:
17610           check for kdemacros.h, too (should fix #141821)
17611         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
17612           don't crash if no header was sent, but nicely error out (fixes part
17613           of #141554)
17614
17615 2004-05-04  Wim Taymans  <wim@fluendo.com>
17616
17617         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
17618         parent dispose function to avoid segfault on destroy.
17619
17620 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
17621
17622         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
17623         (plugin_init):
17624         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
17625         (gst_xvimagesink_sink_link):
17626         clean up debugging caps
17627         also recreate xvimage when format has changed
17628
17629 2004-05-04  Benjamin Otte  <otte@gnome.org>
17630
17631         * ext/libvisual/Makefile.am:
17632         * ext/libvisual/visual.c: (gst_visual_class_init),
17633         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
17634         (gst_visual_srclink), (gst_visual_chain),
17635         (gst_visual_change_state), (plugin_init):
17636           use a GstAdapter to correctly adapt buffer sizes - allows using a
17637           framerate
17638
17639 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17640
17641         * sys/v4l/gstv4lelement.h:
17642         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
17643         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
17644         (gst_v4lsrc_buffer_free):
17645         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
17646         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
17647         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
17648         (gst_v4lsrc_requeue_frame):
17649         move some debugging categories around
17650         query for fps index and set accordingly if found
17651
17652 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17653
17654         * ext/lame/gstlame.c:
17655         correct defaults that lame_init puts out of range
17656
17657 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17658
17659         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
17660         (gst_divxenc_class_init):
17661         fix range since -1 is the default
17662         * gst/mpeg1sys/gstmpeg1systemencode.c:
17663         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
17664         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
17665         (gst_rtjpegdec_chain):
17666         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
17667         (gst_rtjpegenc_chain):
17668         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
17669         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
17670         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
17671         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
17672         * sys/v4l/gstv4lsrc.c:
17673         * sys/v4l/v4l_calls.c: (gst_v4l_open):
17674         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
17675         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
17676         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
17677         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
17678           remove gst_info calls
17679
17680 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17681
17682         * Makefile.am:
17683         * po/af.po:
17684         * po/az.po:
17685         * po/en_GB.po:
17686         * po/nl.po:
17687         * po/sr.po:
17688         * po/sv.po:
17689           Updated translations
17690
17691 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
17692
17693         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
17694           refactor/comment code
17695
17696 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17697
17698         * gst/asfdemux/Makefile.am:
17699         * gst/asfdemux/asfheaders.c:
17700         * gst/asfdemux/asfheaders.h:
17701         * gst/asfdemux/gstasf.c: (plugin_init):
17702         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
17703         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
17704         (gst_asf_demux_setup_pad):
17705         * gst/asfdemux/gstasfdemux.h:
17706         * gst/asfdemux/gstasfmux.c:
17707         * gst/asfdemux/gstasfmux.h:
17708           Add tagging support to demuxer, split out registration in its own
17709           file instead of in demux (hacky), and prevent having some tables
17710           in our memory multiple times (in asfheaders.h).
17711
17712 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17713
17714         * gst/matroska/matroska-demux.c:
17715         (gst_matroska_demux_parse_metadata):
17716         * gst/matroska/matroska-ids.h:
17717           Basic tag reading support.
17718
17719 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17720
17721         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
17722           Really detect ac-3 audio.
17723         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
17724           really detect matroska files (off-by-1).
17725
17726 2004-04-30  David Schleef  <ds@schleef.org>
17727
17728         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
17729         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
17730         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
17731         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
17732         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
17733         hackage -- parse a lot more atoms, extract a few tags.  One might even
17734         mistake this for tag support.  Maybe it is.
17735         * gst/qtdemux/qtdemux.h:
17736
17737 2004-04-30  Colin Walters  <walters@verbum.org>
17738
17739         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
17740
17741 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
17742
17743         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17744         (gst_ffmpegcolorspace_getcaps):
17745           remove broken nego fix
17746
17747 2004-04-30  Benjamin Otte  <otte@gnome.org>
17748
17749         * configure.ac:
17750         * ext/Makefile.am:
17751         * ext/libvisual/Makefile.am:
17752         * ext/libvisual/visual.c:
17753           add initial support for libvisual (http://libvisual.sourceforge.net)
17754           libvisual is still quite alpha, so expect crashes in there :)
17755
17756 2004-04-29  David Schleef  <ds@schleef.org>
17757
17758         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
17759         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
17760         up qtdemux to make it spit out codec_data.  Do _not_ look at this
17761         code; you will no longer respect me.
17762
17763 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
17764
17765         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
17766         * ext/alsa/gstalsa.h :
17767         change alsa pcm device discovery to find more than 1 device
17768         per card. code review by Ronald.
17769
17770 2004-04-29  David Schleef  <ds@schleef.org>
17771
17772         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
17773         Add a check for a driver bug on FreeBSD.  (bug #140565)
17774
17775 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
17776
17777         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
17778         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
17779         (gst_jpegenc_getcaps):
17780           move format setting to inner loop
17781         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17782         (gst_ffmpegcolorspace_getcaps):
17783           use GST_PAD_CAPS if available so that we use already negotiated
17784           caps
17785         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
17786         (qtdemux_parse_moov), (qtdemux_parse):
17787           extra debugging
17788         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
17789         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
17790           move hardcoded path to DEFINE
17791
17792 2004-04-28  David Schleef  <ds@schleef.org>
17793
17794         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
17795         (bug #140064)
17796
17797 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17798
17799         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
17800           Don't probe for playback device if we're a source element. Fixes
17801           #139658.
17802
17803 2004-04-29  Benjamin Otte  <otte@gnome.org>
17804
17805         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
17806         (gst_id3_tag_chain):
17807           rewrite buffer offset
17808
17809 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17810
17811         * configure.ac:
17812         * ext/Makefile.am:
17813         * ext/dts/Makefile.am:
17814         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
17815         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
17816         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
17817         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
17818         (gst_dtsdec_loop), (gst_dtsdec_change_state),
17819         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
17820         (plugin_init):
17821         * ext/dts/gstdtsdec.h:
17822           New DTS decoder.
17823         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
17824         (gst_faad_srcconnect):
17825           Add ESDS atom handling (.m4a).
17826
17827 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17828
17829         * ext/divx/gstdivxdec.c: (plugin_init):
17830           Remove comment that makes no sense.
17831         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
17832           Fix for obvious typo that resulted in warnings during gst-register.
17833         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
17834         (gst_xviddec_sink_link):
17835           Fix caps negotiation a bit better.
17836         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
17837           We call this 'codec_data', not 'esds'.
17838
17839 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
17840
17841         * gst/monoscope/gstmonoscope.c:
17842           make sure we only provide 256x128
17843         * gst/monoscope/monoscope.c: (monoscope_init):
17844           assert size of 256x128
17845
17846 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17847
17848         * Makefile.am:
17849         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
17850         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
17851           fixate to max width and height of device
17852
17853 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17854
17855         * Makefile.am:
17856         * sys/v4l/gstv4l.c:
17857         * sys/v4l/gstv4lsrc.c:
17858         * sys/v4l/v4l_calls.c:
17859         * sys/v4l/v4lsrc_calls.c:
17860           fix for qc-usb driver which fakes having more than one buffer
17861           by handing the same buffer twice, which confused GStreamer's/v4lsrc
17862           buffer_free override
17863           add debugging
17864
17865 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
17866
17867         * Makefile.am:
17868         * gst/videotestsrc/gstvideotestsrc.c:
17869         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
17870         (gst_videotestsrc_init), (gst_videotestsrc_get),
17871         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
17872         * gst/videotestsrc/gstvideotestsrc.h:
17873           add num-buffers property
17874
17875         2004-04-26  Benjamin Otte  <otte@gnome.org>
17876
17877         * ext/mad/gstid3tag.c: (plugin_init):
17878           set id3mux rank to NONE so it doesn't confuse spider
17879           require audio/mpeg,mpegversion=1 in id3mux
17880
17881 2004-04-26  Benjamin Otte  <otte@gnome.org>
17882
17883         * configure.ac:
17884           detect faad correctly as non-working if it's indeed non-working
17885
17886 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17887
17888         * Makefile.am:
17889         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
17890         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
17891         fix _getcaps so it only negotiates to its supported format
17892
17893 2004-04-25  Benjamin Otte  <otte@gnome.org>
17894
17895         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
17896           fix memleak
17897
17898 2004-04-23  Benjamin Otte  <otte@gnome.org>
17899
17900         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
17901           audio/x-raw-int with height rules! not. Now it's depth.
17902
17903 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17904
17905         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
17906         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
17907         (gst_wavparse_loop):
17908           Missing variable initialization. Add handling of DVI ADPCM. Fix
17909           mis-parsing of LIST chunks. This works around a bug where we mis-
17910           parse non-aligning LIST chunks (so LIST chunks where the contents
17911           don't align with the actual LIST size). The correct fix is to use
17912           rifflib, I'm not going to fix wavparse - too much work. All this
17913           fixes #104878.
17914
17915 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17916
17917         reviewed by Benjamin Otte  <otte@gnome.org>
17918
17919         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
17920           fix shoutcast not working (fixes #140844)
17921
17922 2004-04-22  Benjamin Otte  <otte@gnome.org>
17923
17924         * ext/hermes/gsthermescolorspace.c:
17925         (gst_hermes_colorspace_caps_remove_format_info):
17926         * gst/colorspace/gstcolorspace.c:
17927         (gst_colorspace_caps_remove_format_info):
17928         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17929         (gst_ffmpegcolorspace_caps_remove_format_info):
17930           s/gst_caps_simplify/gst_caps_do_simplify/
17931
17932 2004-04-22  Benjamin Otte  <otte@gnome.org>
17933
17934         * gst-libs/gst/riff/riff-media.c:
17935         (gst_riff_create_video_caps_with_data):
17936           mpegversion is an int
17937         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
17938           don't try to create pad templates with NULL caps, use any caps
17939           instead.
17940
17941 2004-04-20  David Schleef  <ds@schleef.org>
17942
17943         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
17944         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
17945         (bug #140384)
17946
17947 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
17948
17949         reviewed by David Schleef
17950
17951         * ext/mad/gstid3tag.c: Add stdlib.h
17952         * gst/rtp/gstrtpgsmenc.c: same
17953         * gst/tags/gstid3tag.c: same
17954         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
17955         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
17956         GST_DISABLE_LOADSAVE use.
17957         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
17958         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
17959         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
17960         atol(3)).
17961         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
17962         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
17963         strtoul(3)).
17964         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
17965         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
17966         $(ID3_CFLAGS).
17967         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
17968         $(LIBFAME_CFLAGS).
17969
17970 2004-04-20  David Schleef  <ds@schleef.org>
17971
17972         * gst/realmedia/rmdemux.c:  This was supposed to part of the
17973         last checkin.  Same idea.
17974
17975 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
17976
17977         reviewed by David Schleef
17978
17979         * configure.ac: bump required gstreamer version to 0.8.1.1
17980         because of following changes [--ds]
17981
17982         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
17983         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
17984         (gst_riff_read_header):  Use GST_READ_UINT*
17985         macros to access possibly unaligned memory.
17986
17987         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
17988         (mp3_type_find):  Use GST_READ_UINT*
17989         macros to access possibly unaligned memory.
17990         (mp3_type_find, mpeg1_parse_header, qt_type_find)
17991         (speex_type_find): Likewise
17992
17993         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
17994
17995         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
17996         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
17997         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
17998         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
17999         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
18000         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
18001         macros to access possibly unaligned memory.
18002
18003         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
18004         Likewise.
18005
18006         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
18007         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
18008
18009         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18010         Likewise.
18011
18012         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
18013         (gst_mpeg2subt_chain_subtitle): Likewise.
18014
18015         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
18016         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
18017         Likewise.
18018
18019         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
18020         Likewise.
18021
18022         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
18023         Likewise.
18024
18025         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
18026         Likewise.
18027
18028 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18029
18030         * configure.ac:
18031           update required version of GStreamer because of GST_TIME_FORMAT
18032
18033 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18034
18035         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
18036           remove leftover g_print
18037         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
18038           don't try setting only a subset of the caps. We don't want to kill
18039           autoplugging on purpose
18040
18041 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18042
18043         * sys/ximage/ximagesink.c: (plugin_init):
18044         * sys/xvimage/xvimagesink.c: (plugin_init):
18045           add debugging categories
18046
18047 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
18048
18049         * po/en_GB.po:
18050         * po/LINGUAS:
18051           Adding en_GB translation (Gareth Owen)
18052
18053 2004-04-20  David Schleef  <ds@schleef.org>
18054
18055         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
18056         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
18057         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
18058         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
18059         A number of new features and hacks to extract the esds atom and
18060         put it into the caps.  (bug #137724)
18061
18062 2004-04-19  David Schleef  <ds@schleef.org>
18063
18064         * gconf/Makefile.am: Fix for non-GNU make
18065         * gst-libs/gst/Makefile.am: Change directory order to handle
18066         GstPlay linking with gstinterfaces
18067         * gst-libs/gst/audio/make_filter: make use of tr portable
18068         * gst-libs/gst/play/Makefile.am: Add intended \
18069         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
18070         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
18071         function prototype instead of void *.
18072         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
18073         macro.
18074         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18075         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
18076         * gst/videofilter/make_filter: make use of tr portable
18077         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
18078
18079 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
18080
18081         * po/LINGUAS:
18082         * po/uk.po:
18083           Added Ukrainian translation (Maxim V. Dziumanenko)
18084
18085 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18086
18087         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
18088         (gst_gsmdec_link), (gst_gsmdec_chain):
18089           Fix capsnego, simplify chain function slightly.
18090         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
18091           Add GSM.
18092
18093 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18094
18095         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
18096         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
18097         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
18098           Hack to make wavparse work with spider (always -> sometimes pad).
18099           Fixes #135862 && #140411.
18100
18101 2004-04-18  Benjamin Otte  <otte@gnome.org>
18102
18103         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
18104         (gst_osselement_rate_probe_check),
18105         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
18106           get rid of \n in debug output
18107
18108 2004-04-17  Iain <iain@prettypeople.org>
18109
18110         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
18111         not just EOS.
18112
18113 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18114
18115         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
18116         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
18117         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
18118         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
18119         (gst_id3_tag_src_link), (gst_id3_tag_chain),
18120         (gst_id3_tag_change_state), (plugin_init):
18121           deprecate id3tag element and replace with id3demux/id3mux.
18122           great side effect: this ugly file is now even uglier, yay!
18123         * ext/mad/gstmad.h:
18124           remove non-available function
18125           update for new get_type
18126
18127 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18128
18129         * configure.ac:
18130           require mpeg2dec >= 0.4.0
18131
18132 2004-04-17  Benjamin Otte  <otte@gnome.org>
18133
18134         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
18135         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
18136         (gst_xvimagesink_set_xwindow_id):
18137           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
18138           assorted cleanup fixes.
18139
18140 2004-04-16  David Schleef  <ds@schleef.org>
18141
18142         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
18143         * sys/xvimage/xvimagesink.h: same
18144
18145 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18146
18147         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
18148           Fix GST_ELEMENT_ERROR with (NULL)
18149
18150 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18151
18152         * gst-libs/gst/riff/riff-media.c:
18153         (gst_riff_create_video_caps_with_data):
18154           Add div[3456] as fourccs for DivX 3 (fixes #140137).
18155
18156 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18157
18158         * gst-libs/gst/riff/riff-media.c:
18159         (gst_riff_create_video_caps_with_data),
18160         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
18161         (gst_riff_create_video_template_caps),
18162         (gst_riff_create_audio_template_caps):
18163         * gst-libs/gst/riff/riff-media.h:
18164         * gst-libs/gst/riff/riff-read.c:
18165         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
18166         * gst-libs/gst/riff/riff-read.h:
18167         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
18168           Add MS RLE support. I added some functions to read out strf chunks
18169           into strf chunks and the data behind it. This is usually color
18170           palettes (as in RLE, but also in 8-bit RGB). Also use those during
18171           caps creation. Lastly, add ADPCM (similar to wavparse - which
18172           should eventually be rifflib based).
18173         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
18174         (gst_matroska_demux_init), (gst_matroska_demux_reset):
18175         * gst/matroska/matroska-demux.h:
18176           Remove placeholders for some prehistoric tagging system. Didn't add
18177           support for any tag system really anyway.
18178         * gst/qtdemux/qtdemux.c:
18179           Add support for audio/x-m4a (MPEG-4) through spider.
18180         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
18181         (gst_wavparse_loop):
18182           ADPCM support (#135862). Increase max. buffer size because we
18183           cannot split buffers for ADPCM (screws references) and I've seen
18184           files with 2048 byte chunks. 4096 seems safe for now.
18185
18186 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18187
18188         * configure.ac: bump nano to 1
18189
18190 === release 0.8.1 ===
18191
18192 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18193
18194         * configure.ac: releasing 0.8.1, "Comforting Sounds"
18195
18196 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18197
18198         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
18199           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
18200           Fixes #140058
18201
18202 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18203
18204         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
18205           lower rank of dvddemux so that it's not used for mpeg playback.
18206
18207 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18208
18209         * configure.ac:
18210           save libs correctly when checking mad
18211
18212 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18213
18214         * ext/mad/gstid3tag.c: (plugin_init):
18215           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
18216
18217 2004-04-13  David Schleef  <ds@schleef.org>
18218
18219         * common/m4/gst-feature.m4: Call -config scripts with
18220         --plugin-libs if it is supported.
18221         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
18222         JPEG images are image/jpeg.
18223         * gst/debug/Makefile.am:
18224         * gst/debug/negotiation.c: (gst_negotiation_class_init),
18225         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
18226         (gst_negotiation_update_caps), (gst_negotiation_get_property),
18227         (gst_negotiation_plugin_init): Add a property that acts like
18228         filter caps.
18229         * testsuite/gst-lint:  Move license checking to be a standard
18230         test.
18231
18232 2004-04-13  David Schleef  <ds@schleef.org>
18233
18234         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
18235         patch from Sebastien Cote (bug #139958)
18236
18237 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18238
18239         * examples/gstplay/Makefile.am:
18240         * examples/gstplay/player.c: (main):
18241           make the commandline player example use gconf settings
18242
18243 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
18244
18245         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
18246         (gst_cacasink_sinkconnect), (gst_cacasink_init),
18247         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
18248           init/end library during state transition, not object
18249           creation/disposal.  get rid of custom dispose handler.
18250
18251
18252 2004-04-12  Christian Schaller <Uraeus@gnome.org>
18253
18254         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
18255         be a symlink
18256
18257 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18258
18259         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
18260           Handle JUNK chunks inside data section. Prevents warnings.
18261
18262 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18263
18264         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
18265         (gst_riff_create_video_template_caps):
18266           Add MS video v1.
18267         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
18268         (gst_avi_demux_stream_data):
18269           Add support for "rec-list" chunks.
18270
18271 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18272
18273         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
18274           Fix another codecname mismatch.
18275
18276 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18277
18278         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
18279           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
18280           so that MJPEG plays back.
18281
18282 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18283
18284         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
18285         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
18286         * gst/mpeg1videoparse/gstmp1videoparse.h:
18287           Fix for some slight mis-cuts in buffer parsing, and for some
18288           potential overflows or faults-causers. Adds disconts. Also fixes
18289           #139105 while we're at it.
18290
18291 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18292
18293         * configure.ac:
18294         * sys/v4l2/gstv4l2element.h:
18295           Workaround for missing struct v4l2_buffer declaration in Suse 9
18296           and Mandrake 10 linux/videodev2.h header file (#135919).
18297
18298 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18299
18300         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
18301           Bail out if no filename was given.
18302
18303 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18304
18305         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
18306         (gst_v4l2_fourcc_from_structure):
18307           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
18308           Y41B somewhere).
18309
18310 2004-04-09  Benjamin Otte  <otte@gnome.org>
18311
18312         * ext/gnomevfs/gstgnomevfssink.c:
18313         (_gst_boolean_allow_overwrite_accumulator),
18314         (gst_gnomevfssink_class_init):
18315           fix erase signal - if any handler returns false the file will not be
18316           overwritten. If no handler is connected, the file will not be
18317           overwritten either.
18318           renamed signal to "allow-overwrite"
18319         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
18320           free string when adding it to ID3 failed
18321         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
18322           unref event when done
18323         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
18324           free caps
18325         * gst/typefind/gsttypefindfunctions.c:
18326         (mpeg_video_stream_type_find):
18327           fix invalid read
18328
18329 2004-04-08  David Schleef  <ds@schleef.org>
18330
18331         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18332         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
18333
18334 2004-04-08  David Schleef  <ds@schleef.org>
18335
18336         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
18337         we don't support (bug #139532)
18338
18339 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
18340
18341         * ext/mad/gstmad.c: (gst_mad_handle_event),
18342         (gst_mad_check_caps_reset), (gst_mad_chain),
18343         (gst_mad_change_state):
18344           only set explicit caps if they haven't been set before for
18345           this stream.  MPEG-audio sample rate/channels aren't allowed
18346           to change in-stream.
18347           Fixes #139382
18348
18349 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18350
18351         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
18352         (_gst_boolean_did_something_accumulator),
18353         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
18354         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
18355         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
18356         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
18357         (gst_gnomevfssink_change_state):
18358           Fix erase signal. Don't erase by default. Remove handoff signal.
18359           Remove erase property. Don't segfault. General cleanup.
18360
18361 2004-04-07  Benjamin Otte  <otte@gnome.org>
18362
18363         * gst-libs/gst/gconf/test-gconf.c: (main):
18364           add missing gst_init
18365
18366 2004-04-07  Benjamin Otte  <otte@gnome.org>
18367
18368         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
18369           free the mutexes, too
18370
18371 2004-04-07  Benjamin Otte  <otte@gnome.org>
18372
18373         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
18374           actually free the URI string
18375         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
18376           compute offset correctly when passing discont events
18377         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
18378           don't leak discont events
18379         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
18380           add some missing breaks so caps aren't copied randomly
18381         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
18382           if we realloc memory, we better use it
18383
18384 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18385
18386         * ext/mad/gstmad.c: (normal_seek):
18387           fix GST_FORMAT_TIME usage
18388
18389 2004-04-05  David Schleef  <ds@schleef.org>
18390
18391         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
18392         a deprecated function (hack!)
18393
18394 2004-04-05  Benjamin Otte  <otte@gnome.org>
18395
18396         * ext/esd/esdmon.c: (gst_esdmon_get):
18397           fix nonterminated vararg and memleak
18398
18399 2004-04-05  Benjamin Otte  <otte@gnome.org>
18400
18401         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
18402         (gst_ladspa_init), (gst_ladspa_force_src_caps),
18403         (gst_ladspa_set_property), (gst_ladspa_get_property),
18404         (gst_ladspa_instantiate), (gst_ladspa_activate),
18405         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
18406           clean up debugging
18407
18408 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
18409
18410         reviewed by Benjamin Otte  <otte@gnome.org>
18411
18412         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
18413           check for broken LADSPA parameters (fixes #138635)
18414
18415 2004-04-05  Benjamin Otte  <otte@gnome.org>
18416
18417         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
18418           advertise buffer-frames correctly on sinkpads
18419
18420 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18421
18422         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
18423         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
18424         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
18425         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
18426         (gst_mad_check_caps_reset), (gst_mad_chain):
18427         add more debugging, only reset caps when we're not in error state
18428
18429 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18430
18431         * ext/mad/gstmad.c: add debugging category, comment + cleanups
18432
18433 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
18434
18435         reviewed by Benjamin Otte  <otte@gnome.org>
18436
18437         * configure.ac:
18438           fix == in test(1) operator
18439
18440 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
18441
18442         reviewed by Benjamin Otte  <otte@gnome.org>
18443
18444         * configure.ac:
18445           fix --export-symblos-regex to a working regex.
18446
18447 2004-04-04  Benjamin Otte  <otte@gnome.org>
18448
18449         * sys/oss/.cvsignore:
18450           add for oss_probe
18451
18452 2004-04-03  Tim-Phillip M??ller <t.i.m@zen.co.uk>
18453
18454         reviewed by Benjamin Otte  <otte@gnome.org>
18455
18456         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
18457           add missing 'new_media' argument (fixes #138168)
18458         * gst/matroska/matroska-demux.c:
18459         (gst_matroska_demux_handle_seek_event):
18460           add vararg terminator (fixes #138169)
18461
18462 2004-04-02  David Schleef  <ds@schleef.org>
18463
18464         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
18465         disted (bug #138914)
18466
18467 2004-04-01  Benjamin Otte  <otte@gnome.org>
18468
18469         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
18470         (gst_alsa_close_audio):
18471           handle case better where a soundcard can't pause
18472         * ext/ogg/gstoggdemux.c:
18473           don't crash when we get events but don't have pads yet
18474
18475 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18476
18477         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
18478           throw an error if we couldn't probe any caps.
18479
18480 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
18481
18482         * ext/dvdnav/gst-dvd:
18483         Add a really simple sample DVD player
18484
18485 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
18486
18487         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
18488         (gst_a52dec_push), (gst_a52dec_handle_event),
18489         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
18490         (gst_a52dec_change_state):
18491         * ext/a52dec/gsta52dec.h:
18492           Use a debug category, Output timestamps correctly
18493           Emit tag info, Handle events, tell liba52dec about cpu
18494           capabilities so it can use MMX etc.
18495         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
18496           Fix a crasher accessing invalid memory
18497         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
18498         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
18499         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
18500         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
18501         (dvdnavsrc_query):
18502           Some support for byte-format seeking.
18503           Small fixes for still frames and menu button overlays
18504         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
18505         (gst_mpeg2dec_alloc_buffer):
18506           Use a debug category. Adjust the report level of several items to
18507           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
18508           so it doesn't lose the GstBuffer pointer
18509         * gst/debug/Makefile.am:
18510         * gst/debug/gstdebug.c: (plugin_init):
18511         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
18512         (gst_navseek_base_init), (gst_navseek_class_init),
18513         (gst_navseek_init), (gst_navseek_seek),
18514         (gst_navseek_handle_src_event), (gst_navseek_set_property),
18515         (gst_navseek_get_property), (gst_navseek_chain),
18516         (gst_navseek_plugin_init):
18517         * gst/debug/gstnavseek.h:
18518           Add the navseek debug element for seeking back and forth in a
18519           video stream using arrow keys.
18520         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
18521         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
18522         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
18523         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
18524         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
18525         (gst_mpeg2subt_parse_header), (gst_get_nibble),
18526         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
18527         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
18528         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
18529         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
18530         * gst/mpeg2sub/gstmpeg2subt.h:
18531           Pretty much a complete rewrite. Now a loopbased element. May still
18532           require work to properly synchronise subtitle buffers.
18533         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
18534         (gst_dvd_demux_send_subbuffer):
18535         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
18536           Don't attempt to create subbuffers of size 0
18537           Reduce a couple of error outputs to warnings.
18538         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
18539         (gst_y4mencode_chain):
18540         Output the y4m frame header correctly.
18541
18542 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18543
18544         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
18545           throw errors instead of allowing SIGFPE
18546
18547 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18548
18549         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
18550         (gst_gconf_render_bin_from_key):
18551           leak plugging and style fixing
18552
18553 2004-03-31  David Schleef  <ds@schleef.org>
18554
18555         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
18556         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
18557         (bug #138225)
18558         * gst/debug/Makefile.am:
18559         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
18560         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
18561         plugin.
18562         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
18563         (gst_negotiation_base_init), (gst_negotiation_class_init),
18564         (gst_negotiation_init), (gst_negotiation_getcaps),
18565         (gst_negotiation_pad_link), (gst_negotiation_chain),
18566         (gst_negotiation_set_property), (gst_negotiation_get_property),
18567         (gst_negotiation_plugin_init):  New element to talk about random
18568         negotiation things happening in a pipeline.
18569
18570 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
18571
18572         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
18573           fix integer addition with help of Stefan Kost
18574
18575 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
18576
18577         * po/nl.po: updated Dutch translation (Elros Cyriatan)
18578
18579 2004-03-30  David Schleef  <ds@schleef.org>
18580
18581         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
18582         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
18583         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
18584         (bug #137504)
18585         * ext/mpeg2dec/gstmpeg2dec.h:
18586
18587 2004-03-30  David Schleef  <ds@schleef.org>
18588
18589         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
18590
18591 2004-03-30  David Schleef  <ds@schleef.org>
18592
18593         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
18594         Michael Petullo) to handle .mov
18595
18596 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18597
18598         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
18599         (gst_osselement_rate_check_rate):
18600           probe caps correctly for sound cards that only support one format
18601
18602 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18603
18604         * ext/kio/kiosrc.cpp: (process_events):
18605           update handling event processing if inside KDE - untested
18606
18607 2004-03-29  David Schleef  <ds@schleef.org>
18608
18609         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
18610         by 2 to not interfere with other colorspaces.
18611         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
18612         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
18613         one to not interfere with ffmpeg_colorspace.
18614
18615 2004-03-29  David Schleef  <ds@schleef.org>
18616
18617         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
18618         aren't in the caps.
18619         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
18620         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
18621
18622 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18623
18624         * gst-libs/gst/riff/riff-media.c:
18625           fail on error, don't try to set stuff on NULL caps
18626
18627 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
18628
18629         * configure.ac:
18630         * ext/Makefile.am:
18631         * ext/kio/Makefile.am:
18632         * ext/kio/kioreceiver.cpp:
18633         * ext/kio/kioreceiver.h:
18634         * ext/kio/kiosrc.cpp:
18635         * ext/kio/kiosrc.h:
18636           add experimental kiosrc plugin
18637         * ext/alsa/gstalsaplugin.c: (plugin_init):
18638           initialize debugging category only when we're sure registering the
18639           plugins worked.
18640
18641 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18642
18643         * examples/gstplay/player.c: (main):
18644         * gst-libs/gst/play/play.c: (gst_play_class_init),
18645         (gst_play_set_location), (gst_play_set_data_src),
18646         (gst_play_set_video_sink), (gst_play_set_audio_sink),
18647         (gst_play_set_visualization), (gst_play_connect_visualization):
18648           check return values of element_set_state and return FALSE where
18649           failed
18650
18651 2004-03-29  Benjamin Otte  <otte@gnome.org>
18652
18653         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
18654           try harder to check if an event is really a discont
18655
18656 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18657
18658         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
18659         * po/az.po:
18660
18661 2004-03-28  Benjamin Otte  <otte@gnome.org>
18662
18663         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
18664         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
18665         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
18666           get rid of non-standard "..." ranges in case statements.
18667
18668 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
18669
18670         * gst/mpegstream/gstmpegdemux.c:
18671         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
18672         specific functionality split to the new dvddemux element.
18673         * gst/mpegstream/gstdvddemux.c:
18674         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
18675         streams, derived from mpegdemux.
18676         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
18677         up. SCR based timestamp rewriting can be turned off (will probably
18678         completely disappear soon).
18679         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
18680         hacking. General cleanup. All printf statements replaced by
18681         debugging messages. Almost complete libdvdnav support.
18682         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
18683         by events. New properties for audio and subpicture languages.
18684         (dvdnavsrc_update_highlight): Now uses events.
18685         (dvdnavsrc_user_op): Cleaned up.
18686         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
18687         based). Lots of cleanup, and propper support for most libdvdnav
18688         events.
18689         (dvdnavsrc_make_dvd_event): New function.
18690         (dvdnavsrc_make_dvd_nav_packet_event): New function.
18691         (dvdnavsrc_make_clut_change_event): New function.
18692
18693 2004-03-26  Benjamin Otte  <otte@gnome.org>
18694
18695         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
18696           fix bug where typefinding would claim it's theora whenever less then
18697           7 bytes of data were available
18698
18699 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18700
18701         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
18702         (gst_alawdec_base_init), (gst_alawdec_class_init),
18703         (gst_alawdec_init), (gst_alawdec_chain):
18704         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
18705         (gst_alawenc_base_init), (gst_alawenc_class_init),
18706         (gst_alawenc_init), (gst_alawenc_chain):
18707         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
18708         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
18709         (gst_mulawdec_init), (gst_mulawdec_chain):
18710         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
18711         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
18712         (gst_mulawenc_init), (gst_mulawenc_chain):
18713           Fix capsnego in all four, remove the unused property functions and
18714           simplify the chain functions slightly. I guess we could use macros
18715           or something similar for those, since the code is so similar, but
18716           I'm currently too lazy...
18717
18718 2004-03-24  David Schleef  <ds@schleef.org>
18719
18720         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
18721         (gst_osselement_close_audio), (gst_osselement_probe_caps),
18722         (gst_osselement_get_format_structure),
18723         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
18724         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
18725         (gst_osselement_rate_int_compare): Add code to handle rate probing
18726         (bug #120883)
18727         * sys/oss/gstosselement.h: same
18728         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
18729         Use rate probing provided by osselement.
18730         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
18731
18732 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18733
18734         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
18735         (gst_xvidenc_get_property):
18736           ulong/int mess-up.
18737
18738 2004-03-24  David Schleef  <ds@schleef.org>
18739
18740         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
18741         (gst_speexdec_init):
18742         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
18743         (gst_speexenc_init):  Create the pad template correctly (from
18744         the static pad template, not a NULL pointer.)
18745
18746 2004-03-25  Benjamin Otte  <otte@gnome.org>
18747
18748         * gst/debug/Makefile.am:
18749         * gst/debug/breakmydata.c:
18750           add element that quasi-randomly changes bytes in the stream.
18751           Intended use is robustness checking of demuxers and decoders in
18752           media tests.
18753
18754 2004-03-24  Benjamin Otte  <otte@gnome.org>
18755
18756         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
18757         (gst_alsa_probe_hw_params):
18758         * ext/alsa/gstalsa.h:
18759           debugging output fixes
18760
18761 2004-03-24  Benjamin Otte  <otte@gnome.org>
18762
18763         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
18764           don't g_return_if_fail if element is PLAYING, fail silently as every
18765           other element.
18766         * gst/effectv/gstquark.c: (gst_quarktv_chain):
18767           only fix needed for cast lvalue issues in gst-plugins
18768         * gst/volenv/gstvolenv.c: (gst_volenv_init):
18769           add proxy_getcaps
18770
18771 2004-03-24  Benjamin Otte  <otte@gnome.org>
18772
18773         * gst/level/gstlevel.c: (gst_level_init):
18774           add proxying getcaps function, so level doesn't advertise impossible
18775           caps
18776
18777 2004-03-24  David Schleef  <ds@schleef.org>
18778
18779         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
18780         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
18781         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
18782         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
18783         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
18784         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
18785         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
18786         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
18787         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
18788         messages.  Divide the chunk size by the compression ratio
18789         (needed for MACE audio)
18790
18791 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18792
18793         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
18794           Fix buffer overflow read error.
18795
18796 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18797
18798         * ext/alsa/gstalsa.h:
18799           Remove unused entry.
18800         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
18801           Add cinepak.
18802         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
18803         (gst_videodrop_link), (gst_videodrop_chain):
18804           Fix, sort of. Was horribly broken with new capsnego. Bah...
18805
18806 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
18807
18808         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
18809         (plugin_init):
18810         Add a monkeysaudio typefind function
18811
18812 2004-03-23  Johan Dahlin  <johan@gnome.org>
18813
18814         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
18815         (gst_play_video_fixate): Check so the structure has the field
18816         before trying to fixate them, this makes it possible to have
18817         fakesinks for video and audio output without printing errors on
18818         the output console.
18819
18820 2004-03-22  David Schleef  <ds@schleef.org>
18821
18822         * sys/oss/Makefile.am:
18823         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
18824         (check_rate), (add_rate):  Rate probing test app.
18825
18826 2004-03-21  Benjamin Otte  <otte@gnome.org>
18827
18828         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
18829         (_fixate_caps_to_int), (gst_audio_convert_fixate):
18830           add a fixation function that pretty much does the right thing (fixes
18831           #137556)
18832
18833 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
18834
18835         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
18836
18837 2004-03-20  Tim-Phillip M??ller <t.i.m@zen.co.uk>
18838
18839         reviewed by: Benjamin Otte  <otte@gnome.org>
18840
18841         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
18842           terminate gst_event_new_discontinuous correctly (fixes parts of
18843           #137711)
18844
18845 2004-03-19  David Schleef  <ds@schleef.org>
18846
18847         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
18848         since it doesn't depend on X, and it's part of our ABI.
18849
18850 2004-03-19  Iain <iain@prettypeople.org>
18851
18852         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
18853         is_int in the structure, not the local variable.
18854
18855 2004-03-19  David Schleef  <ds@schleef.org>
18856
18857         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
18858         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
18859         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
18860         Improvements in caps negotiation.
18861
18862 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
18863
18864         * po/LINGUAS:
18865         * po/af.po:
18866           adding Afrikaans (Petri Jooste)
18867
18868 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
18869
18870         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18871         (gst_ffmpegcolorspace_chain):
18872         throw error instead of g_critical (#137588)
18873
18874 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
18875
18876         * Makefile.am:
18877         * configure.ac:
18878           dist common and m4 correctly
18879         * po/sv.po:
18880
18881 2004-03-17  David Schleef  <ds@schleef.org>
18882
18883         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
18884         (bug #137348)
18885
18886 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18887
18888         * po/LINGUAS:
18889         * po/sv.po:
18890           adding Swedish translation (Christian Rose)
18891
18892 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18893
18894         * Makefile.am: use release.mak
18895
18896 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18897
18898         * common/ChangeLog:
18899         * common/gst-autogen.sh:
18900           add some explanation about the version detection
18901         * configure.ac:
18902           fix X check
18903
18904 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18905
18906         * configure.ac: bump nano to 1
18907
18908 === release 0.8.0 ===
18909
18910 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18911
18912         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
18913
18914 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
18915
18916         * configure.ac:
18917           update libtool version
18918         * gst-libs/gst/media-info/Makefile.am:
18919           actually use libtool version
18920
18921 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18922
18923         * configure.ac: fix speex detection to work with 1.0 but not 1.1
18924
18925 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18926
18927         * configure.ac:
18928         * gst-plugins.spec.in:
18929         * pkgconfig/Makefile.am:
18930         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
18931         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
18932         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
18933         * pkgconfig/gstreamer-libs.pc.in:
18934         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
18935         * pkgconfig/gstreamer-play-uninstalled.pc.in:
18936         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
18937         * pkgconfig/gstreamer-plugins.pc.in:
18938           remove @VERSION@ from some of the pc files since core and plugins
18939           are decoupled.
18940           created gstreamer-plugins.pc as it's a better name, but keeping
18941           -libs around for now to get fixes upstream done first.
18942
18943 2004-03-15  Julien MOUTTE <julien@moutte.net>
18944
18945         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
18946         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
18947         * gst-libs/gst/play/play.h:
18948
18949 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18950
18951         * *.c, *.cc: don't mix tabs and spaces
18952
18953 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18954
18955         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
18956           use the new ffmpegcolorspace
18957         * gst-plugins.spec.in:
18958           package new colorspace and media-info
18959         * configure.ac:
18960         * pkgconfig/Makefile.am:
18961           fix some more disting issues
18962         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
18963         * pkgconfig/gstreamer-media-info.pc.in:
18964           generate media-info pc files
18965
18966 2004-03-15  Johan Dahlin  <johan@gnome.org>
18967
18968         * *.h: Revert indenting
18969
18970 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18971
18972         * configure.ac:
18973           adding ffmpegcolorspace element
18974         * gst/ffmpegcolorspace/Makefile.am:
18975         * gst/ffmpegcolorspace/avcodec.h:
18976         * gst/ffmpegcolorspace/common.h:
18977         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
18978         * gst/ffmpegcolorspace/dsputil.h:
18979         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
18980         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
18981         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
18982         (gst_ffmpeg_caps_to_pix_fmt):
18983         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
18984         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
18985         (gst_ffmpegcolorspace_caps_remove_format_info),
18986         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
18987         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
18988         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
18989         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
18990         (gst_ffmpegcolorspace_set_property),
18991         (gst_ffmpegcolorspace_get_property),
18992         (gst_ffmpegcolorspace_register):
18993         * gst/ffmpegcolorspace/imgconvert.c:
18994         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
18995         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
18996         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
18997         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
18998         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
18999         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
19000         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
19001         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
19002         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
19003         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
19004         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
19005         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
19006         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
19007         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
19008         (img_get_alpha_info), (deinterlace_line),
19009         (deinterlace_line_inplace), (deinterlace_bottom_field),
19010         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
19011         * gst/ffmpegcolorspace/imgconvert_template.h:
19012         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
19013         * gst/ffmpegcolorspace/mmx.h:
19014         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
19015           adding ffmpegcolorspace element supplied by Ronald after cleaning
19016           up and pulling in the right bits of upstream source.
19017           I'm sure a better C/compiler wizard could do some cleaning up (for
19018           example use GLIB's malloc stuff), but as a first pass this
19019           works very well
19020
19021 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19022
19023         * ext/alsa/gstalsa.h:
19024           I assume Ronald forgot to commit the change to have cardname
19025           as a struct member.  Expect some public spanking at the next
19026           opportunity.
19027
19028 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19029
19030         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
19031         (gst_alsa_open_audio), (gst_alsa_close_audio):
19032         * ext/alsa/gstalsa.c:
19033           Don't open the device if we're a mixer (= padless).
19034         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
19035         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
19036         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
19037           Open mixer during state change rather than during object
19038           initialization. Also, get a device name. Currently in a somewhat
19039           hackish fashion, but I didn't really find something better.
19040
19041 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
19042
19043         * *.c, *.h: run gst-indent
19044
19045 2004-03-14  Benjamin Otte  <otte@gnome.org>
19046
19047         * gst/modplug/gstmodplug.cc:
19048         * gst/modplug/gstmodplug.h:
19049           set correct timestamps on outgoing buffers
19050
19051 2004-03-14  Benjamin Otte  <otte@gnome.org>
19052
19053         * gst/modplug/gstmodplug.cc:
19054           handle events - don't do crap when a discont arrives that's not
19055           necessary
19056           This allows correct loading and playback of mods in Rhythmbox
19057
19058 2004-03-14  Benjamin Otte  <otte@gnome.org>
19059
19060         * configure.ac:
19061         * gst-libs/gst/gconf/Makefile.am:
19062         * pkgconfig/Makefile.am:
19063           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
19064           they get rebuilt properly
19065         * configure.ac:
19066           when checking for vorbis, try pkgconfig first.
19067         * gst/modplug/gstmodplug.cc:
19068           add fixate function
19069
19070 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19071
19072         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
19073           Fix for obvious mistake, where we first shift the offset and then
19074           read a samplesize element assuming the old offset. Note that this
19075           part still has something weird, i.e. my movies containing those
19076           don't actually play well, but at least there's something that looks
19077           like sound now.
19078
19079 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
19080         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
19081         (plugin_init):
19082         Add a typefind function for speex format
19083
19084 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19085
19086         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
19087         (gst_asf_demux_setup_pad):
19088           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
19089           instead of 0. Reason is simple: some elements have a fps range
19090           of 1-max instead of 0-max. So now ASF video actually works.
19091
19092 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19093
19094         * po/LINGUAS:
19095         * po/sr.po:
19096           adding serbian as a language
19097
19098 2004-03-13  Benjamin Otte  <otte@gnome.org>
19099
19100         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
19101           return taglist correctly from _get function, don't gst_pad_push it.
19102           (fixes #137042)
19103
19104 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
19105         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
19106
19107 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19108
19109         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
19110         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
19111         (gst_alsa_mixer_track_new):
19112         * ext/alsa/gstalsamixertrack.h:
19113           Fix ancient leftovers... MixerTrack is a GObject.
19114
19115 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19116
19117         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
19118         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
19119           Don't block during probing...
19120
19121 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19122
19123         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
19124         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
19125         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
19126         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
19127         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
19128         (gst_alsa_open_audio), (gst_alsa_close_audio):
19129         * ext/alsa/gstalsa.h:
19130           Add propertyprobe interface implementation, add some device-name
19131           property, all this so that it looks good in gnome-volume-control.
19132
19133 2004-03-12  David Schleef  <ds@schleef.org>
19134
19135         * configure.ac: the Hermes library controls hermescolorspace, not
19136         colorspace.
19137         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
19138         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
19139         not /* */
19140         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
19141         * ext/sdl/sdlvideosink.h: ditto.
19142         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
19143
19144 2004-03-12  Benjamin Otte  <otte@gnome.org>
19145
19146         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
19147         (gst_x_overlay_got_xwindow_id):
19148         * gst-libs/gst/xoverlay/xoverlay.h:
19149           replace XID with unsigned long to get rid of the xlibs dependency in
19150           XOverlay (fixes #137004)
19151
19152 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
19153         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
19154         (gst_agingtv_setup):
19155         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
19156         (gst_dicetv_base_init), (gst_dicetv_class_init),
19157         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
19158         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
19159         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
19160         (gst_edgetv_setup), (gst_edgetv_rgb32):
19161         * gst/effectv/gsteffectv.c:
19162         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
19163         (gst_quarktv_set_property):
19164         * gst/effectv/gstrev.c: (gst_revtv_get_type),
19165         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
19166         (gst_revtv_setup), (gst_revtv_rgb32):
19167         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
19168         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
19169         (gst_shagadelictv_init), (gst_shagadelictv_setup),
19170         (gst_shagadelictv_rgb32):
19171         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
19172         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
19173         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
19174         * gst/effectv/gstwarp.c:
19175         Port everything that can be ported to videofilter and fix up the caps.
19176         Can someone with a big-endian machine please check these?
19177
19178 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19179
19180         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
19181         (gst_osssink_chain), (gst_osssink_change_state):
19182           Latest fixes for A/V sync, audio playback and such. This is about
19183           all... MPEG playback issues are mostly related to the async build-
19184           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
19185
19186 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
19187
19188         patch from: Stephane Loeuillet
19189
19190         * configure.ac:
19191           use pkg-config for some libraries, falling back to the old .m4 way
19192           (fixes #131270)
19193         * m4/libdv.m4:
19194           removed
19195
19196 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
19197
19198         * configure.ac:
19199         * tools/Makefile.am:
19200         * tools/Makefile.in:
19201         * tools/gst-launch-ext-m.m:
19202         * tools/gst-launch-ext.1.in:
19203         * tools/gst-visualise-m.m:
19204         * tools/gst-visualise.1:
19205         * tools/gst-visualise.1.in:
19206           reorganizing generation of script tools
19207
19208 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19209
19210         * ext/divx/gstdivxdec.c:
19211           Downgrade priority. We prefer ffdec_mpeg4.
19212         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
19213         (gst_faad_chain), (gst_faad_change_state):
19214           Fix capsnego. Doesn't work for some sounds because we don't have
19215           a 5:1 to stereo element.
19216         * ext/xvid/gstxvid.c: (plugin_init):
19217           Add priority.
19218         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
19219         (gst_osssink_change_state):
19220           Add discont handling.
19221
19222 2004-03-09  Colin Walters  <walters@verbum.org>
19223
19224         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
19225         conversion.
19226
19227 2004-03-09  Benjamin Otte  <otte@gnome.org>
19228
19229         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
19230           the signals take 2 arguments
19231
19232 2004-03-09  David Schleef  <ds@schleef.org>
19233
19234         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
19235         (gst_alsa_fixate): Add fixate function.  (bug #136686)
19236         * ext/alsa/gstalsa.h:
19237         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
19238
19239 2004-03-09  Benjamin Otte  <otte@gnome.org>
19240
19241         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
19242         (gst_mikmod_change_state):
19243         * ext/mikmod/gstmikmod.h:
19244           make mikmod's loop function not loop infinitely and call
19245           gst_element_yield anymore
19246         * gst/modplug/gstmodplug.cc:
19247           fix pad negotiation (fixes #136590)
19248
19249 2004-03-09  David Schleef  <ds@schleef.org>
19250
19251         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
19252         doesn't conflict with the internal colorspace plugin.
19253         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
19254         satisfy the crappy-ass shell shipped by a certain vendor.
19255         * gst/videofilter/make_filter: same (bug #135299)
19256
19257 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19258
19259         * configure.ac: bump nano to 1
19260
19261 === release 0.7.6 ===
19262
19263 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19264
19265         * configure.in: releasing 0.7.6, "There"
19266
19267 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19268
19269         * pkgconfig/gstreamer-play-uninstalled.pc.in:
19270         * pkgconfig/gstreamer-play.pc.in:
19271           synchronize the two
19272
19273 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19274
19275         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
19276         (cdparanoia_open), (cdparanoia_event):
19277           fix/add error handling
19278         * po/POTFILES.in:
19279           add cdparanoia source
19280         * tools/Makefile.am:
19281           make scripts executable
19282
19283 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
19284
19285         * configure.ac:
19286         * ext/vorbis/Makefile.am:
19287         * sys/Makefile.am:
19288           remove id3types, vorbisfile and xvideosink from the build (#133783)
19289
19290 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19291
19292         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
19293           Fix metadata read crash (#136537).
19294
19295 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19296
19297         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
19298         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
19299           adding mime types, fixing the one-stop function
19300
19301 2004-03-08  Christian Schaller <Uraeus@gnome.org>
19302
19303         * ext/nas/nassink.c and /ext/nas/nassink.h:
19304         More NAS love from Arwed von Merkatz
19305         So lets all sing 'Can you feel the NAS tonight'
19306
19307 2004-03-08  Christian Schaller <Uraeus@gnome.org>
19308
19309         * tools/gst-launch-ext.in:
19310         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
19311
19312 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19313
19314         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
19315         (gst_mpeg2dec_init):
19316         remove the user_data pad for now, because it is being used in
19317         fixating causing MPEG playback to fixate on 1000 Hz for playback.
19318         If someone knows how to fix this properly, please do.
19319
19320 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19321
19322         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
19323         (gst_osssink_get_time):
19324         add a warning, IMO this won't get triggered anymore, remove later
19325
19326 2004-03-07  David Schleef  <ds@schleef.org>
19327
19328         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
19329         format (bug #136470)
19330
19331 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
19332
19333         * gst-libs/Makefile.am:
19334         * gst-libs/gst/media-info/Makefile.am:
19335         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
19336         (error_callback), (gst_media_info_error_create),
19337         (gst_media_info_error_element), (gmip_init), (gmip_reset),
19338         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
19339         * gst-libs/gst/media-info/media-info-priv.h:
19340         * gst-libs/gst/media-info/media-info-test.c: (main):
19341         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
19342         (gst_media_info_class_init), (gst_media_info_instance_init),
19343         (gst_media_info_set_source), (gst_media_info_read_with_idler),
19344         (gst_media_info_read_idler), (gst_media_info_read):
19345         * gst-libs/gst/media-info/media-info.h:
19346         fixed, should work now
19347
19348 2004-03-07  Christian Schaller <Uraeus@gnome.org>
19349
19350         * ext/nas/nassink.c:
19351         A bunch of NAS fixes from Arwed von Merkatz
19352
19353 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19354
19355         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
19356         (qtdemux_parse_trak):
19357           Fix crash (j might be greater than n_samples, in which case we're
19358           writing outside the allocated space for the array) and memleak.
19359
19360 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19361
19362         * sys/oss/gstosssink.c: (gst_osssink_chain):
19363           And another caller that couldn't handle delay < 0 (unsigned
19364           integer overflow). Video now continues playing on an audio
19365           buffer underrun, and the clock continues working. Audio still
19366           stalls.
19367
19368 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19369
19370         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
19371         (gst_osssink_get_time):
19372           get_delay() may return values lower than 0. In those cases, we
19373           should not actually cast to *unsigned* int64, that will break
19374           stuff horribly. In my case, it screwed up A/V sync in movies
19375           in totem rather badly.
19376
19377 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
19378
19379         * ext/faac/gstfaac.c: (gst_faac_chain):
19380         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
19381         * ext/libpng/gstpngenc.c: (user_write_data):
19382         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
19383         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
19384         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
19385         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
19386         Fix several misuse of gst_buffer_merge (it doesn't take ownership
19387         of any buffer), should fix some leaks. I hope I didn't unref buffers
19388         that shouldn't be...
19389
19390 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19391
19392         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
19393         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
19394         (error_callback), (gmi_reset), (gmi_seek_to_track),
19395         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
19396         (gmip_find_type_post), (gmip_find_stream_post),
19397         (gmip_find_track_streaminfo_post):
19398         * gst-libs/gst/media-info/media-info-priv.h:
19399         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
19400         (info_print), (main):
19401         * gst-libs/gst/media-info/media-info.c:
19402         (gst_media_info_error_create), (gst_media_info_error_element),
19403         (gst_media_info_instance_init), (gst_media_info_get_property),
19404         (gst_media_info_new), (gst_media_info_set_source),
19405         (gst_media_info_read_idler), (gst_media_info_read):
19406         * gst-libs/gst/media-info/media-info.h:
19407           first pass at making this work again.  This seems to work on
19408           tagged ogg/vorbis and mp3 files.
19409
19410 2004-03-06  Benjamin Otte  <otte@gnome.org>
19411
19412         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
19413           fix huge leak: gst_buffer_merge doesn't unref the first argument
19414           itself.
19415
19416 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19417
19418         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
19419           report layer/mode/emphasis
19420
19421 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
19422
19423         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
19424
19425 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19426
19427         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
19428           signal serial
19429
19430 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19431
19432         * ext/vorbis/vorbis.c: (plugin_init):
19433         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
19434         (gst_vorbis_dec_init), (vorbis_dec_event):
19435         add debug category
19436         make vorbisdec handle _BYTE and _TIME queries
19437
19438 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
19439
19440         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
19441           from the xing header
19442
19443 2004-03-06  Benjamin Otte  <otte@gnome.org>
19444
19445         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
19446         (gst_audio_convert_link), (gst_audio_convert_change_state),
19447         (gst_audio_convert_buffer_from_default_format):
19448           do conversions from/to float correctly, fix some caps nego errors,
19449           export correct supported caps in template and getcaps, use correct
19450           caps in try_set_caps functions
19451
19452 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
19453
19454         For some reason, I only committed a ChangeLog entry yesterday and
19455         not the corresponding code...
19456         * ext/mad/gstmad.c: Fix detection of Xing headers
19457         * gst/tags/gstid3tag.c: Changes to support TLEN tags
19458
19459 2004-03-06  Benjamin Otte  <otte@gnome.org>
19460
19461         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
19462         (gst_ogg_demux_src_query):
19463           make sure to handle the case where there's no current chain
19464           gracefully.
19465
19466 2004-03-05  David Schleef  <ds@schleef.org>
19467
19468         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
19469         Add fixate function. (bug #131128)
19470         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
19471         (gst_sdlvideosink_fixate):  Add fixate function.
19472         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
19473         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
19474         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
19475         Fix missing break that was causing ulaw to be interpreted as
19476         raw int.
19477
19478 2004-03-05  David Schleef  <ds@schleef.org>
19479
19480         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
19481         Fix code that ignores return value of gst_buffer_merge().
19482         (bug #114560)
19483         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
19484         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
19485         * testsuite/gst-lint:  Check for above.
19486
19487 2004-03-05  David Schleef  <ds@schleef.org>
19488
19489         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
19490         caps and throw an element error.  (bug #136334)
19491
19492 2004-03-05  David Schleef  <ds@schleef.org>
19493
19494         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
19495         (gst_faad_chain): Fix negotiation.
19496         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
19497         key and button events.
19498         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
19499         dung heap of code.
19500         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
19501         depends on gconf
19502         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
19503         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
19504         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
19505         function to encourage better negotiation, particularly between
19506         audioconvert and osssink.
19507         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
19508         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
19509         more important.
19510         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
19511         typefinding.
19512         * gst/vbidec/vbiscreen.c:  Add glib header
19513         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
19514
19515 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
19516
19517         * ext/mad/gstmad.c: Fix detection of Xing headers
19518         * gst/tags/gstid3tag.c: Changes to support TLEN tags
19519
19520 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
19521
19522         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
19523         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
19524           debug updates
19525
19526 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
19527
19528         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
19529         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
19530         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
19531         files, and report the parsed length as a GST_TAG_DURATION tag.
19532         * gst/tags/gstid3tag.c: support TLEN (duration) tag
19533
19534 2004-03-05  Benjamin Otte  <otte@gnome.org>
19535
19536         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
19537           convert channels correctly. convert correctly to unsigned.
19538
19539 2004-03-05  Julien MOUTTE <julien@moutte.net>
19540
19541         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
19542         we have a window before clearing it.
19543
19544 2004-03-05  Julien MOUTTE <julien@moutte.net>
19545
19546         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
19547         have a window before clearing it.
19548
19549 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19550
19551         * gconf/gstreamer.schemas.in:
19552         * gst-libs/gst/gconf/Makefile.am:
19553           version installation path the same way as for 0.6
19554         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
19555         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
19556         * pkgconfig/gstreamer-play-uninstalled.pc.in:
19557           remove comment that was fixed
19558
19559 2004-03-05  David Schleef  <ds@schleef.org>
19560
19561         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
19562         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
19563         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
19564         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
19565         Add prototype code for handling seeking and querying.
19566
19567 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19568
19569         * examples/gstplay/player.c: (main):
19570           Initialize variables to NULL. Prevents a segfault because the
19571           (uninitialized) variable is not NULL, resulting in a crash on
19572           trying to reach error->message.
19573
19574 2004-03-05  Benjamin Otte  <otte@gnome.org>
19575
19576         * gst/audioconvert/gstaudioconvert.c:
19577         (gst_audio_convert_buffer_to_default_format):
19578         make float=>int conversion work correctly even in cornercases.
19579
19580 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
19581
19582         * debian/README.Debian:
19583         * debian/build-deps:
19584         * debian/changelog:
19585         * debian/control:
19586         * debian/control.in:
19587         * debian/copyright:
19588         * debian/gstreamer-a52dec.files:
19589         * debian/gstreamer-aa.files:
19590         * debian/gstreamer-alsa.files:
19591         * debian/gstreamer-alsa.manpages:
19592         * debian/gstreamer-arts.files:
19593         * debian/gstreamer-artsd.files:
19594         * debian/gstreamer-audiofile.files:
19595         * debian/gstreamer-avifile.files:
19596         * debian/gstreamer-cdparanoia.files:
19597         * debian/gstreamer-colorspace.files:
19598         * debian/gstreamer-doc.files:
19599         * debian/gstreamer-dv.files:
19600         * debian/gstreamer-dvd.files:
19601         * debian/gstreamer-esd.files:
19602         * debian/gstreamer-festival.files:
19603         * debian/gstreamer-flac.files:
19604         * debian/gstreamer-gconf.conffiles:
19605         * debian/gstreamer-gconf.files:
19606         * debian/gstreamer-gconf.postinst:
19607         * debian/gstreamer-gnomevfs.files:
19608         * debian/gstreamer-gsm.files:
19609         * debian/gstreamer-http.files:
19610         * debian/gstreamer-jack.files:
19611         * debian/gstreamer-jpeg.files:
19612         * debian/gstreamer-mad.files:
19613         * debian/gstreamer-mikmod.files:
19614         * debian/gstreamer-misc.files:
19615         * debian/gstreamer-mpeg2dec.files:
19616         * debian/gstreamer-oss.files:
19617         * debian/gstreamer-plugin-apps.files:
19618         * debian/gstreamer-plugin-apps.manpages:
19619         * debian/gstreamer-plugin-libs-dev.files:
19620         * debian/gstreamer-plugin-libs.files:
19621         * debian/gstreamer-plugin-template.postinst:
19622         * debian/gstreamer-plugin-template.postrm:
19623         * debian/gstreamer-sdl.files:
19624         * debian/gstreamer-sid.files:
19625         * debian/gstreamer-vorbis.files:
19626         * debian/gstreamer-x.files:
19627         * debian/mk.control:
19628         * debian/rules:
19629         Debian package info not maintained here.
19630
19631 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
19632
19633         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
19634         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
19635         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
19636         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
19637         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
19638         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
19639         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
19640         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
19641         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
19642         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
19643         * gst-libs/gst/colorbalance/colorbalance.c:
19644         (gst_color_balance_class_init):
19645         * gst-libs/gst/colorbalance/colorbalancechannel.c:
19646         (gst_color_balance_channel_class_init):
19647         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
19648         * gst-libs/gst/play/play.c: (gst_play_class_init):
19649         * gst-libs/gst/propertyprobe/propertyprobe.c:
19650         (gst_property_probe_iface_init):
19651         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
19652         * gst-libs/gst/tuner/tunerchannel.c:
19653         (gst_tuner_channel_class_init):
19654         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
19655         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
19656         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
19657         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
19658         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
19659         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
19660         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
19661         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
19662         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
19663           fix signals to use - instead of _
19664         * ext/libcaca/gstcacasink.h:
19665         * ext/sdl/sdlvideosink.h:
19666           fix header rename
19667
19668 2004-03-04  David Schleef  <ds@schleef.org>
19669
19670         * testsuite/gst-lint:  Add a check for bad signal names.
19671
19672 2004-03-04  <kost@imn.htwk-leipzig.de>
19673
19674         reviewed by David Schleef
19675
19676         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
19677         modified the alpha channel and caused a warning. (bug #136192)
19678
19679 2004-04-03  Christian Schaller <Uraeus@gnome.org>
19680
19681         * gst-plugins.spec.in:
19682         Change names of plugins to actually be correct. Try to keep things
19683         alphabetical to avoid getting beat up by Thomas
19684
19685 2004-03-03  Julien MOUTTE <julien@moutte.net>
19686
19687         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
19688         Using ximagesink as a default if no gconf key found. We should
19689         probably consider using alsasink instead of osssink for the audio
19690         part.
19691
19692 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
19693
19694         * configure.ac:
19695           fix --with-plugins, don't think it ever worked before
19696         * gst-plugins.spec.in:
19697           even more updates
19698
19699 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19700
19701         * ext/sdl/sdlvideosink.h:
19702         * sys/ximage/ximagesink.h:
19703         * sys/xvideo/xvideosink.h:
19704         * sys/xvimage/xvimagesink.h:
19705           Fix for move of gstvideosink.h -> videosink.h.
19706
19707 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
19708
19709         * gst-libs/gst/xwindowlistener/Makefile.am:
19710           this is a plugin library, not a library
19711
19712 2004-03-01  David Schleef  <ds@schleef.org>
19713
19714         * AUTHORS:  Added some names.  Add yourself if you're still
19715         missing.
19716
19717 2004-03-01  David Schleef  <ds@schleef.org>
19718
19719         * MAINTAINERS: Add
19720
19721 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19722
19723         * gst-plugins.spec.in: clean up spec file
19724
19725 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19726
19727         * gst-libs/gst/video/Makefile.am:
19728         * gst-libs/gst/video/gstvideosink.c:
19729         * gst-libs/gst/video/gstvideosink.h:
19730           rename gstvideosink.h to videosink.h to match other headers
19731         * gst/mixmatrix/Makefile.am:
19732           fix plugin filename
19733         * gst/tags/Makefile.am: fix plugin filename
19734
19735 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19736
19737         * gst/tags/Makefile.am: fix plugin filename
19738
19739 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19740
19741         * examples/gstplay/player.c: (got_time_tick), (main):
19742           add error handler
19743           display time_tick more readably
19744         * gst/mixmatrix/Makefile.am:
19745           fix plugin file name
19746
19747 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
19748
19749         * sys/oss/gstosselement.c: (gst_osselement_probe),
19750         (device_combination_append), (gst_osselement_class_probe_devices):
19751         * sys/oss/gstosselement.h:
19752           Reworked enumeration of oss dsps and mixers so that gst-mixer works
19753           on my system using alsa oss emulation, fixes bug #135597
19754
19755 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19756
19757         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
19758         (gst_videodrop_chain), (gst_videodrop_change_state):
19759         * gst/videodrop/gstvideodrop.h:
19760           Work based on timestamp of input data, not based on the expected
19761           framerate from the input. The consequence is that this element now
19762           not only scales framerates, but also functions as a framerate
19763           corrector or framerate stabilizer/constantizer.
19764
19765 2004-02-27  David Schleef  <ds@schleef.org>
19766
19767         patches from jmmv@menta.net (Julio M. Merino Vidal)
19768
19769         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
19770         GST_ELEMENT_ERROR call (bug #135634)
19771         * gst/interleave/interleave.c: (interleave_buffered_loop),
19772         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
19773         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
19774         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
19775         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
19776         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
19777         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
19778         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
19779         Fix GST_ELEMENT_ERROR call.
19780         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
19781         GST_ELEMENT_ERROR call.
19782
19783 2004-02-27  Benjamin Otte  <otte@gnome.org>
19784
19785         * gst-libs/gst/audio/audio.h:
19786           add macro to make sure header isn't included twice
19787         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
19788           don't use gst_buffer_free
19789         * gst/playondemand/filter.func:
19790           don't use gst_data_free. Free data only once.
19791
19792 2004-02-26  David Schleef  <ds@schleef.org>
19793
19794         * gst-libs/gst/colorbalance/Makefile.am:
19795         * gst-libs/gst/mixer/Makefile.am:
19796         * gst-libs/gst/tuner/Makefile.am:
19797         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
19798         should not be disted, -marshal.h files should not be installed,
19799         and -enum.h files _should_ be installed.  Fix to make this the
19800         case.
19801
19802 === release 0.7.5 ===
19803
19804 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
19805
19806         * configure.ac: release 0.7.5, "Under The Sea"
19807
19808 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19809
19810         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
19811         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
19812         * gst/videoscale/gstvideoscale.c:
19813         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
19814           assorted debug/warning fixes
19815
19816 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19817
19818         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
19819         (gst_videoscale_init), (gst_videoscale_chain),
19820         (gst_videoscale_set_property), (plugin_init):
19821         * gst/videoscale/gstvideoscale.h:
19822         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
19823         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
19824         (gst_videoscale_planar400), (gst_videoscale_packed422),
19825         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
19826         (gst_videoscale_24bit), (gst_videoscale_16bit),
19827         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
19828         (gst_videoscale_scale_plane_slow),
19829         (gst_videoscale_scale_point_sample),
19830         (gst_videoscale_scale_nearest),
19831         (gst_videoscale_scale_nearest_str2),
19832         (gst_videoscale_scale_nearest_str4),
19833         (gst_videoscale_scale_nearest_32bit),
19834         (gst_videoscale_scale_nearest_24bit),
19835         (gst_videoscale_scale_nearest_16bit):
19836         add debugging category and use it properly
19837         fix use of GST_PTR_FORMAT
19838
19839 2004-02-25  Andy Wingo  <wingo@pobox.com>
19840
19841         * gst/interleave/interleave.c (interleave_buffered_loop): Always
19842         push only when channel->buffer is NULL. Prevents segfaults doing
19843         the state change after a nonlocal exit, like a scheme exception.
19844
19845         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
19846         Handle the case where the intersected caps is empty.
19847
19848 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
19849
19850         * gst/law/mulaw-decode.c: (mulawdec_link):
19851         * gst/law/mulaw.c: (plugin_init):
19852           fix mulawdec so it actually works again
19853
19854 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
19855
19856         reviewed by: David Schleef  <ds@schleef.org>
19857
19858         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
19859         (gst_gamma_init), (gst_gamma_set_property),
19860         (gst_gamma_get_property), (gst_gamma_calculate_tables),
19861         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
19862         for RGB, with separate r g and b correction factors. (#131167)
19863
19864 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19865
19866         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19867           only signal tags for bitrate if they're > 0 (#134894)
19868
19869 2004-02-24  David Schleef  <ds@schleef.org>
19870
19871         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
19872         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
19873         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
19874         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
19875         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
19876         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
19877         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
19878         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
19879         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
19880         category.  Attempt to fix timestamp calculation.
19881
19882 2004-02-24  Johan Dahlin  <johan@gnome.org>
19883
19884         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
19885
19886 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19887
19888         * configure.ac:
19889         * gconf/Makefile.am:
19890         * gconf/gstreamer.schemas:
19891         * gst-libs/gst/gconf/Makefile.am:
19892         * gst-libs/gst/gconf/gconf.c:
19893           version gconf schemas and install locations
19894
19895 2004-02-23  Benjamin Otte  <otte@gnome.org>
19896
19897         * ext/xine/xineinput.c: (gst_xine_input_dispose):
19898         (gst_xine_input_subclass_init):
19899           call parent dispose.
19900           change pad template for CD reader correctly
19901         * ext/xine/Makefile.am:
19902         * ext/xine/gstxine.h:
19903         * ext/xine/xine.c: (plugin_init):
19904         * ext/xine/xineaudiosink.c:
19905           wrap audio sinks, too
19906         * gst-libs/gst/resample/private.h:
19907         * gst-libs/gst/resample/resample.c: (gst_resample_init),
19908         (gst_resample_reinit), (gst_resample_scale),
19909         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
19910         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
19911         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
19912         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
19913         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
19914         * gst-libs/gst/resample/resample.h:
19915         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
19916         (gst_audioscale_class_init), (gst_audioscale_link),
19917         (gst_audioscale_get_buffer), (gst_audioscale_init),
19918         (gst_audioscale_chain), (gst_audioscale_set_property),
19919         (gst_audioscale_get_property):
19920         * gst/audioscale/gstaudioscale.h:
19921           s/resample_*/gst_resample_*/i to not clobber namespaces
19922
19923 2004-02-23  Julien MOUTTE  <julien@moutte.net>
19924
19925         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
19926         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
19927         (gst_riff_create_video_template_caps),
19928         (gst_riff_create_audio_template_caps),
19929         (gst_riff_create_iavs_template_caps):
19930         * gst-libs/gst/riff/riff-media.h:
19931         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
19932         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
19933         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
19934         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
19935         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
19936         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
19937         (gst_matroska_demux_plugin_init): First batch implementing audio and
19938         video codec tags in demuxers.
19939
19940 2004-02-22  Benjamin Otte  <otte@gnome.org>
19941
19942         * ext/xine/Makefile.am:
19943         * ext/xine/gstxine.h:
19944         * ext/xine/xine.c: (plugin_init):
19945         * ext/xine/xineinput.c:
19946           add input plugin wrapper. Playback from files, http, mms and cdda
19947           works.
19948         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
19949           remove leftover G_GNUC_UNUSED
19950         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
19951         (gst_asf_demux_identify_guid):
19952           improve debugging output
19953
19954 2004-02-22  Benjamin Otte  <otte@gnome.org>
19955
19956         reported by: Padraig O'Briain <padraig.obriain@sun.com>
19957
19958         * autogen.sh:
19959           replace test -e with test -x for mkinstalldirs to be more portable.
19960           (fixes #134816)
19961
19962 2004-02-22  Benjamin Otte  <otte@gnome.org>
19963
19964         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
19965
19966         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
19967           set rank to PRIMARY
19968         * gst/volume/gstvolume.c: (plugin_init):
19969           set rank to NONE
19970         fixes #134960
19971
19972 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
19973
19974         reviewed by Benjamin Otte  <otte@gnome.org>
19975
19976         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
19977           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
19978
19979 2004-02-22  Benjamin Otte  <otte@gnome.org>
19980
19981         * configure.ac:
19982           export [_]*{gst,Gst,GST}.* symbols from plugins
19983
19984 2004-02-22  Christophe Fergeau <teuf@gnome.org>
19985
19986         reviewed by: Benjamin Otte  <otte@gnome.org>
19987
19988         * ext/lame/gstlame.c: (add_one_tag):
19989         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
19990         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
19991         (gst_vorbisenc_metadata_set1):
19992         * gst/tags/gstid3tag.c:
19993         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
19994           apply fixes from bugs #135042 (lame can't write tags) and #133817
19995           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
19996
19997 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
19998
19999         * configure.ac: Export only gst_plugin_desc from plugins.
20000          Note that this change only makes any effect with Linux using libtool
20001          1.5.2 or higher. Otherwise it is silently ignored, but it would build
20002          fine. And don't try to have several versions of libtool in different
20003          directories.
20004
20005 2004-02-20  Andy Wingo  <wingo@pobox.com>
20006
20007         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
20008         interleave respectively.
20009
20010         * gst/interleave/deinterleave.c: New plugin: deinterleave
20011         (replaces on oneton).
20012         * gst/interleave/interleave.c: New plugin: interleave.
20013         * gst/interleave/plugin.h: Support file.
20014         * gst/interleave/plugin.c: Support file.
20015
20016         * configure.ac: Remove intfloat and oneton, add interleave.
20017
20018         * ext/sndfile/gstsf.c: Handle events better.
20019
20020         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
20021         and float2int operation. int2float has scheduling problems as
20022         noted in in2float_chain.
20023
20024 2004-02-20  Benjamin Otte  <otte@gnome.org>
20025
20026         * ext/xine/Makefile.am:
20027         * ext/xine/gstxine.h:
20028         * ext/xine/xine.c:
20029         * ext/xine/xineaudiodec.c:
20030         * ext/xine/xinecaps.c:
20031           add first version of xine plugin wrapper. Currently only wraps the
20032           QDM2 win32 DLL, and even that only in proof-of-concept quality.
20033         * configure.ac:
20034         * ext/Makefile.am:
20035           add xine plugin wrapper, disabled by default. Use --enable-xine to
20036           build. Note that it'll segfault on gst-register if you don't remove
20037           the goom and tvtime post plugins from xine.
20038         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
20039         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
20040           add extradata parsing for QDM2.
20041           change around debugging prints.
20042
20043 2004-02-19  Benjamin Otte  <otte@gnome.org>
20044
20045         * ext/lame/gstlame.c: (gst_lame_chain):
20046         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
20047           use gst_tag_list_insert when you want to insert tags
20048
20049 2004-02-18  David Schleef  <ds@schleef.org>
20050
20051         * configure.ac:  Move massink to gst-rotten
20052         * ext/Makefile.am:
20053         * ext/mas/Makefile.am:
20054         * ext/mas/massink.c:
20055         * ext/mas/massink.h:
20056
20057 2004-02-18  David Schleef  <ds@schleef.org>
20058
20059         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
20060         typefinding, since it seems to be worse than nothing.
20061         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
20062         atom to recognize .mp4 and .m4a files as video/quicktime.
20063
20064 2004-02-18  David Schleef  <ds@schleef.org>
20065
20066         * gst/sine/demo-dparams.c: (quit_live),
20067         (dynparm_log_value_changed), (dynparm_value_changed), (main):
20068         Use double dparams, not float.
20069         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20070         (gst_sinesrc_init): Change sync default to FALSE, since multiple
20071         sync'd elements don't really work correctly.
20072         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
20073         (volume_update_volume), (volume_get_property):  Change dparam
20074         to double.
20075
20076 2004-02-18  Julien MOUTTE  <julien@moutte.net>
20077
20078         * sys/ximage/ximagesink.c:
20079         (gst_ximagesink_xwindow_update_geometry),
20080         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
20081         (gst_ximagesink_change_state), (gst_ximagesink_expose),
20082         (gst_ximagesink_init): Rework the way software video scaling works. So
20083         now we check on each chain call if the video frames are feeling the
20084         window. If not we try to renegotiate caps. On failure we memorize that
20085         and we won't try again for that PLAYING sessions.
20086         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
20087         failure.
20088         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
20089         synchronous flag.
20090
20091 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20092
20093         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
20094           break up _link so we can give a better debug message for errors
20095
20096 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20097
20098         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
20099           set up debug category
20100
20101 2004-02-18  Julien MOUTTE <julien@moutte.net>
20102
20103         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
20104         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
20105         the way renegotiation work. The event handling function is not taking
20106         care of external windows and renegotiate method check for pad flags
20107         NEGOTIATING. Should fix : #133209
20108
20109 2004-02-17  Julien MOUTTE  <julien@moutte.net>
20110
20111         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
20112         pad is negotiating before trying renegotiation.
20113
20114 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
20115
20116         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
20117           pass on all possible mime types as typefind hints
20118
20119 2004-02-17  Julien MOUTTE <julien@moutte.net>
20120
20121         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
20122         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
20123         possible SHM leak if we crash. All other apps using XShm are doing
20124         that.
20125
20126 2004-02-17  Julien MOUTTE  <julien@moutte.net>
20127
20128         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
20129         (gst_ximagesink_expose): Renegotiate size on expose.
20130         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
20131         size on expose.
20132
20133 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20134
20135         * testsuite/alsa/sinesrc.c:
20136           cosmetic fix to fix compile issue with gcc 2.95.4
20137
20138 2004-02-16  Julien MOUTTE <julien@moutte.net>
20139
20140         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
20141         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
20142         failed opening the audio device.
20143         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
20144         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
20145         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
20146         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
20147         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
20148         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
20149         (gst_ximagesink_change_state), (gst_ximagesink_chain),
20150         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
20151         Removing some useless g_return_if_fail like wingo suggested.
20152         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
20153         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
20154         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
20155         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
20156         (gst_xvimagesink_update_colorbalance),
20157         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
20158         (gst_xvimagesink_xcontext_clear),
20159         (gst_xvimagesink_get_fourcc_from_caps),
20160         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
20161         (gst_xvimagesink_set_xwindow_id),
20162         (gst_xvimagesink_colorbalance_list_channels),
20163         (gst_xvimagesink_colorbalance_set_value),
20164         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
20165         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
20166
20167 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20168
20169         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
20170           throw error when not negotiated instead of asserting
20171
20172 2004-02-15  Julien MOUTTE  <julien@moutte.net>
20173
20174         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
20175         correct data refcounting.
20176
20177 2004-02-15  Julien MOUTTE  <julien@moutte.net>
20178
20179         * gst/switch/gstswitch.c: (gst_switch_change_state),
20180         (gst_switch_class_init): Cleaning the sinkpads correctly on state
20181         change, mostly the EOS flag.
20182
20183 2004-02-15  Julien MOUTTE  <julien@moutte.net>
20184
20185         * examples/gstplay/player.c: (got_eos), (main): Adding some
20186         output for debugging.
20187         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
20188         timeouts if we go to any state different from PLAYING.
20189         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
20190         more EOS bugs in riff lib.
20191
20192 2004-02-14  Julien MOUTTE  <julien@moutte.net>
20193
20194         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
20195         visualization until i find a way to fix switch correctly.
20196         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
20197         EOS arrives.
20198         * gst/switch/gstswitch.c: (gst_switch_release_pad),
20199         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
20200         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
20201         Reworked switch to get a more correct behaviour with events and refing
20202         of data stored in sinkpads.
20203         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
20204         we don't pull from a pad in EOS.
20205
20206 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20207
20208         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20209           remove v1 tag even if we can't read it (makes sure we don't detect
20210           it again)
20211
20212 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20213
20214         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
20215         (gst_alsa_xrun_recovery):
20216         * ext/alsa/gstalsa.h:
20217           try xrun recovery when wait failed. Make xrun recovery function
20218           return TRUE/FALSE to indicate success. (might fix #134354)
20219
20220 2004-02-13  David Schleef  <ds@schleef.org>
20221
20222         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
20223         (dynparm_value_changed), (main): Convert from float to double.
20224         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
20225
20226 2004-02-13  David Schleef  <ds@schleef.org>
20227
20228         * gst/silence/gstsilence.c: (gst_silence_class_init),
20229         (gst_silence_set_clock), (gst_silence_get),
20230         (gst_silence_set_property), (gst_silence_get_property):
20231         * gst/silence/gstsilence.h: Add sync property.
20232         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20233         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
20234         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
20235         * gst/sine/gstsinesrc.h: Add sync property.
20236
20237 2004-02-13  David Schleef  <ds@schleef.org>
20238
20239         * gst/intfloat/gstint2float.c: (conv_f32_s16),
20240         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
20241
20242 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20243
20244         * configure.ac:
20245         * ext/Makefile.am:
20246         * gst-libs/ext/Makefile.am:
20247           move ffmpeg plugin to gst-ffmpeg module
20248
20249 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20250
20251         * configure.ac: use GST_ARCH to detect architecture
20252
20253 2004-02-12  Julien MOUTTE  <julien@moutte.net>
20254
20255         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
20256
20257 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
20258
20259         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
20260           classify LADSPA plugins based on number of src/sink pads
20261           (#133663, Stefan Kost)
20262         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
20263           fix dparams registration
20264           (#133528, Stefan Kost)
20265         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
20266           fix use of isprint and use g_ascii_isprint instead
20267           (#133316, Stefan Kost)
20268
20269 2004-02-11  David Schleef  <ds@schleef.org>
20270
20271         Convert a few inner loops to use liboil.  This is currently
20272         optional, and is only enabled if liboil is present (duh!).
20273         * configure.ac: Check for liboil-0.1
20274         * gst/intfloat/Makefile.am:
20275         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
20276         (gst_int2float_chain_gint16):
20277         * gst/videofilter/Makefile.am:
20278         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
20279         (tablelookup_u8), (gst_videobalance_planar411):
20280         * gst/videotestsrc/Makefile.am:
20281         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
20282         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
20283         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
20284         (paint_hline_RGB565), (paint_hline_xRGB1555):
20285
20286 2004-02-11  David Schleef  <ds@schleef.org>
20287
20288         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
20289         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
20290         (gst_colorspace_getcaps), (gst_colorspace_link),
20291         (gst_colorspace_base_init), (gst_colorspace_init),
20292         (gst_colorspace_chain), (gst_colorspace_change_state),
20293         (plugin_init): Merge Ronald's patch (bug #117897) and update
20294         for new caps and negotiation.  Seems to work, although it
20295         shows off bugs in lcs.
20296
20297 2004-02-11  David Schleef  <ds@schleef.org>
20298
20299         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
20300         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
20301
20302 2004-02-11  David Schleef  <ds@schleef.org>
20303
20304         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
20305         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
20306         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
20307         Add server and port properties
20308
20309 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20310
20311         * m4/a52.m4:
20312         * m4/aalib.m4:
20313         * m4/as-ffmpeg.m4:
20314         * m4/as-liblame.m4:
20315         * m4/as-slurp-ffmpeg.m4:
20316         * m4/check-libheader.m4:
20317         * m4/esd.m4:
20318         * m4/freetype2.m4:
20319         * m4/gconf-2.m4:
20320         * m4/glib.m4:
20321         * m4/gst-alsa.m4:
20322         * m4/gst-artsc.m4:
20323         * m4/gst-ivorbis.m4:
20324         * m4/gst-matroska.m4:
20325         * m4/gst-sdl.m4:
20326         * m4/gst-shout2.m4:
20327         * m4/gst-sid.m4:
20328         * m4/gtk.m4:
20329         * m4/libdv.m4:
20330         * m4/libfame.m4:
20331         * m4/libmikmod.m4:
20332         * m4/ogg.m4:
20333         * m4/vorbis.m4:
20334           fix underquotedness of macros (#133800)
20335         * m4/as-avifile.m4:
20336         * m4/xmms.m4:
20337           removed because no longer used
20338
20339 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20340
20341         * configure.ac:
20342           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
20343           by autopoint (fixes #132996)
20344
20345 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20346
20347         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
20348         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
20349         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
20350         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
20351           fix memleaks
20352
20353 2004-02-11  David Schleef  <ds@schleef.org>
20354
20355         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
20356         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
20357         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
20358         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
20359         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
20360         (gst_jpegenc_class_init), (gst_jpegenc_init),
20361         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
20362         (gst_jpegenc_chain), (gst_jpegenc_set_property),
20363         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
20364         * ext/jpeg/gstjpegenc.h: Fix negotiation.
20365
20366 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20367
20368         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
20369         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
20370         * ext/mikmod/gstmikmod.h:
20371           fix caps negotiation in mikmod
20372         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
20373           output debug information
20374
20375 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20376
20377         * gst-libs/gst/colorbalance/Makefile.am:
20378         * gst-libs/gst/navigation/Makefile.am:
20379         * gst-libs/gst/xoverlay/Makefile.am:
20380           remove unused GST_OPT_CFLAGS from Makefiles
20381           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
20382
20383 2004-02-07  David Schleef  <ds@schleef.org>
20384
20385         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
20386         push events to pads that haven't been created (#133508)
20387
20388 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
20389
20390         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
20391         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
20392         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
20393         (gst_dvdec_loop), (gst_dvdec_change_state):
20394         Second attempt at committing a working dvdec element.
20395
20396 2004-02-06  David Schleef  <ds@schleef.org>
20397
20398         Build fixes for OS X: (see #129600)
20399         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
20400         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
20401         (gst_riff_read_strf_iavs):
20402         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
20403         (gst_avi_demux_stream_odml):
20404         * gst/playondemand/Makefile.am:
20405         * gst/rtp/rtp-packet.c:
20406
20407 2004-02-05  David Schleef  <ds@schleef.org>
20408
20409         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
20410         last change, because it Just Doesn't Compile.
20411
20412 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20413
20414         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
20415           skip undecodable id3v2 tag instead of keeping it
20416
20417 2004-02-05  David Schleef  <ds@schleef.org>
20418
20419         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
20420         Unref leaked buffer.  (Noticed by Ronald)
20421
20422 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
20423
20424         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20425         Sync requires with other checks.  >= vs =.
20426
20427 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
20428
20429         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
20430         (gst_dvdec_video_link), (gst_dvdec_loop):
20431         * ext/dv/gstdvdec.h:
20432           rework the caps negotiation so that dvdec works again instead
20433           of just segfaulting.
20434
20435 === release 0.7.4 ===
20436
20437 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
20438
20439         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
20440         * configure.ac: changed for release
20441
20442 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20443
20444         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
20445         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
20446         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
20447         * pkgconfig/gstreamer-play-uninstalled.pc.in:
20448           reworked patch by David Lehn to fix libdir and includedir for
20449           uninstalled libraries
20450           removed play and gconf from gstreamer-libs since they have their
20451           own pkgconfig files
20452
20453 2004-02-04  David Schleef  <ds@schleef.org>
20454
20455         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
20456         memleak.
20457
20458 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20459
20460         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
20461           use correct GST_TAG_ENCODER tag
20462
20463 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20464
20465         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
20466           be sure to stop the clock when going to paused
20467         * sys/oss/gstosssink.c: (gst_osssink_change_state):
20468           reset number of transmitted when going to ready.
20469         fixes #132935
20470
20471 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
20472
20473         reviewed by Benjamin Otte
20474
20475         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
20476           extract track count (fixes #133410)
20477
20478 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20479
20480         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
20481           that should be !=, not == (fixes #132519)
20482
20483 2004-02-04  David Schleef  <ds@schleef.org>
20484
20485         Make sure set_explicit_caps() is called before adding pad.
20486         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
20487         * gst/id3/gstid3types.c: (gst_id3types_loop):
20488         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
20489         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
20490
20491 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20492
20493         * configure.ac:
20494           bump nano to 2, first prerelease
20495           put back AM_PROG_LIBTOOL
20496
20497 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20498
20499         * testsuite/alsa/Makefile.am:
20500           these are user test apps, not automatic testsuite tests
20501
20502 2004-02-04  David Schleef  <ds@schleef.org>
20503
20504         Convert GST_DEBUG_CAPS() to GST_DEBUG():
20505         * gst/mpeg1videoparse/gstmp1videoparse.c:
20506         (mp1videoparse_parse_seq):
20507         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
20508         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
20509         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
20510         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
20511         (gst_xvideosink_getcaps):
20512         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
20513         * testsuite/gst-lint: more tests
20514
20515 2004-02-04  David Schleef  <ds@schleef.org>
20516
20517         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
20518         with the code that they would expand to.
20519         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
20520         (gst_flacdec_get_src_query_types),
20521         (gst_flacdec_get_src_event_masks):
20522         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
20523         (gst_gnomevfssrc_get_query_types),
20524         (gst_gnomevfssrc_get_event_mask):
20525
20526 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20527
20528         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
20529         (gst_sinesrc_dispose):
20530           fix memleak by properly disposing sinesrc
20531
20532 2004-02-04  Julien MOUTTE  <julien@moutte.net>
20533
20534         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
20535         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
20536         an overlay to redraw the image because it has been exposed.
20537         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
20538         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
20539         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
20540         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
20541         interface
20542         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
20543         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
20544         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
20545         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
20546         interface
20547
20548 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20549
20550         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
20551           more memleak fixage
20552
20553 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20554
20555         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
20556         * gst/typefind/gsttypefindfunctions.c:
20557           fix memleaks shown by gst-typefind
20558
20559 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20560
20561         * common/glib-gen.mak:
20562           add hack rule to touch .Plo files
20563         * gst-libs/gst/colorbalance/Makefile.am:
20564         * gst-libs/gst/mixer/Makefile.am:
20565         * gst-libs/gst/play/Makefile.am:
20566         * gst-libs/gst/tuner/Makefile.am:
20567           remove glib_root variable
20568
20569 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20570
20571         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
20572           set explicit caps before adding the element, so the autopluggers can
20573           plug correctly.
20574         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
20575         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
20576         (mpeg_video_type_find), (mpeg_video_stream_type_find),
20577         (dv_type_find):
20578           fix memleaks in typefind functions. gst_type_find_suggest takes a const
20579           argument.
20580
20581 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20582
20583         * gst-libs/gst/colorbalance/Makefile.am:
20584         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
20585         * gst-libs/gst/colorbalance/colorbalance.c:
20586         * gst-libs/gst/colorbalance/colorbalance.h:
20587         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
20588         * gst-libs/gst/mixer/Makefile.am:
20589         * gst-libs/gst/mixer/mixer-marshal.list:
20590         * gst-libs/gst/mixer/mixer.c:
20591         * gst-libs/gst/mixer/mixer.h:
20592         * gst-libs/gst/mixer/mixermarshal.list:
20593         * gst-libs/gst/play/Makefile.am:
20594         * gst-libs/gst/play/play.h:
20595         * gst-libs/gst/tuner/Makefile.am:
20596         * gst-libs/gst/tuner/tuner-marshal.list:
20597         * gst-libs/gst/tuner/tuner.c:
20598         * gst-libs/gst/tuner/tuner.h:
20599         * gst-libs/gst/tuner/tunermarshal.list:
20600           use new glib-gen.mak snippet to clean up Makefile.am
20601           fix various bugs in Makefile.am's
20602
20603 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20604
20605         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
20606           handle chain parsing correctly in the multichain case
20607         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
20608         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
20609         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
20610         (theora_dec_chain):
20611           handle events and queries correctly
20612
20613 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
20614
20615         * .cvsignore:
20616         Ignore generated file _stdint.h.
20617
20618 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
20619
20620         * gst-libs/gst/colorbalance/Makefile.am:
20621         * gst-libs/gst/colorbalance/colorbalance.h:
20622         * gst-libs/gst/mixer/Makefile.am:
20623         * gst-libs/gst/mixer/mixer.h:
20624         * gst-libs/gst/play/Makefile.am:
20625         * gst-libs/gst/play/play.h:
20626         * gst-libs/gst/tuner/Makefile.am:
20627         * gst-libs/gst/tuner/tuner.h:
20628         Generate enum type code with glib-mkenums.
20629         * gst-libs/gst/colorbalance/.cvsignore:
20630         * gst-libs/gst/mixer/.cvsignore:
20631         * gst-libs/gst/play/.cvsignore:
20632         * gst-libs/gst/tuner/.cvsignore:
20633         Ignore generated files.
20634
20635 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
20636
20637         * gst-libs/gst/audio/.cvsignore:
20638         Ignore generated file.
20639         * gst-libs/gst/audio/Makefile.am:
20640         Do not install example filter.
20641
20642 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
20643
20644         * examples/switch/.cvsignore:
20645         Ignore generated file.
20646
20647 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20648
20649         * common/m4/ax_create_stdint_h.m4:
20650         * configure.ac:
20651           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
20652           _stdint.h.
20653         * Makefile.am:
20654           remove generated _stdint.h in DISTCLEANFILES
20655         * ext/a52dec/gsta52dec.c:
20656           include _stdint.h for a52dec. (should fix #133064)
20657
20658 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
20659
20660         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
20661         (gst_tag_to_vorbis_comments):
20662         Add replaygain support to vorbistag
20663
20664 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
20665         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
20666         (gst_ffmpeg_caps_to_extradata):
20667           Fix SVQ3 caps flag properties
20668           Use glib macro for bytes swap
20669
20670 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20671
20672         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
20673         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
20674         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
20675         * ext/sndfile/gstsf.c: (plugin_init):
20676         * gst/avi/gstavi.c: (plugin_init):
20677         * sys/dxr3/dxr3init.c: (plugin_init):
20678         * sys/oss/gstossaudio.c: (plugin_init):
20679         * sys/v4l/gstv4l.c: (plugin_init):
20680         * sys/v4l2/gstv4l2.c: (plugin_init):
20681           remove textdomain calls
20682         * po/nl.po:
20683           update Dutch translation
20684
20685 2004-02-02  Julien MOUTTE  <julien@moutte.net>
20686
20687         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
20688         (gst_play_set_audio_sink): Moving volume in the audio thread for
20689         instantaneous volume change. Maybe i will add another volume in front
20690         of visualization later, not sure yet though.
20691
20692 2004-02-02  Julien MOUTTE  <julien@moutte.net>
20693
20694         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
20695         (gst_ximagesink_handle_xevents): Better X events handling, only take
20696         the latest events for configure and motion.
20697         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
20698
20699 2004-02-02  Jon Trowbridge  <trow@gnu.org>
20700
20701         reviewed by: David Schleef  <ds@schleef.org>
20702
20703         Fix memory leaks:
20704         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
20705         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
20706
20707 2004-02-02  David Schleef  <ds@schleef.org>
20708
20709         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
20710         of lines.
20711         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
20712         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
20713         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
20714         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
20715         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
20716         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
20717         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
20718         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
20719         (gst_float2_2_int_link):
20720         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
20721         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
20722         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
20723         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
20724         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
20725         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
20726         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
20727         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
20728         * testsuite/gst-lint: Add tests for bzero and ;;
20729
20730 2004-02-02  David Schleef  <ds@schleef.org>
20731
20732         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
20733
20734 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20735
20736         * ext/aalib/gstaasink.c: (gst_aasink_open):
20737         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
20738         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
20739         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
20740         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
20741         (gst_afsink_close_file):
20742         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
20743         (gst_afsrc_close_file):
20744         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
20745         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
20746         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
20747         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
20748         * ext/esd/esdmon.c: (gst_esdmon_get):
20749         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
20750         * ext/faac/gstfaac.c: (gst_faac_chain):
20751         * ext/faad/gstfaad.c: (gst_faad_chain):
20752         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
20753         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
20754         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
20755         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
20756         (gst_flacdec_loop):
20757         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
20758         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
20759         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
20760         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
20761         (gst_gnomevfssink_close_file):
20762         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
20763         (gst_gnomevfssrc_open_file):
20764         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
20765         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
20766         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
20767         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
20768         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
20769         * ext/mad/gstmad.c: (gst_mad_chain):
20770         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
20771         * ext/mpeg2dec/gstmpeg2dec.c:
20772         * ext/mpeg2enc/gstmpeg2enc.cc:
20773         * ext/mplex/gstmplex.cc:
20774         * ext/mplex/gstmplexibitstream.cc:
20775         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
20776         (gst_ogg_demux_push):
20777         * ext/raw1394/gstdv1394src.c:
20778         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
20779         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
20780         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
20781         (gst_sf_loop):
20782         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
20783         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
20784         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
20785         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
20786         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
20787         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
20788         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
20789         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
20790         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
20791         (gst_riff_read_element_data), (gst_riff_read_seek),
20792         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
20793         * gst/adder/gstadder.c: (gst_adder_loop):
20794         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
20795         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
20796         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
20797         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
20798         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
20799         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
20800         * gst/goom/gstgoom.c: (gst_goom_chain):
20801         * gst/id3/gstid3types.c: (gst_id3types_loop):
20802         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
20803         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
20804         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
20805         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
20806         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
20807         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
20808         (gst_ebml_read_float), (gst_ebml_read_header):
20809         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
20810         (gst_matroska_demux_parse_blockgroup):
20811         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
20812         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
20813         * gst/oneton/gstoneton.c: (gst_oneton_chain):
20814         * gst/silence/gstsilence.c: (gst_silence_get):
20815         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
20816         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
20817         * gst/speed/gstspeed.c: (speed_loop):
20818         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
20819         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
20820         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
20821         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
20822         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
20823         (gst_wavparse_loop):
20824         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
20825         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
20826         (dxr3audiosink_close):
20827         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
20828         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
20829         (dxr3videosink_close), (dxr3videosink_write_data):
20830         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
20831         * sys/oss/gstosssink.c: (gst_osssink_chain):
20832         * sys/oss/gstosssrc.c: (gst_osssrc_get):
20833         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
20834         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
20835         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
20836         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
20837         (gst_v4l_set_window), (gst_v4l_enable_overlay):
20838         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
20839         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
20840         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
20841         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
20842         (gst_v4l_set_audio):
20843         * sys/v4l/v4l_calls.h:
20844         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
20845         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
20846         (gst_v4lmjpegsink_playback_init),
20847         (gst_v4lmjpegsink_playback_start):
20848         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
20849         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
20850         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
20851         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
20852         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
20853         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
20854         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
20855         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
20856         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
20857         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
20858         (gst_v4l2_get_output), (gst_v4l2_set_output),
20859         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
20860         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
20861         (gst_v4l2_set_attribute):
20862         * sys/v4l2/v4l2_calls.h:
20863         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
20864         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
20865         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
20866         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
20867         (gst_v4l2src_capture_stop):
20868         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
20869         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
20870         (gst_ximagesink_chain):
20871         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
20872         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
20873         (gst_xvideosink_xwindow_new):
20874         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
20875         (gst_xvimagesink_chain):
20876
20877 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20878
20879         * gst/volume/gstvolume.c: (gst_volume_set_volume),
20880         (gst_volume_get_volume), (volume_class_init), (volume_init),
20881         (volume_chain_int16), (volume_update_volume):
20882         * gst/volume/gstvolume.h:
20883           make code more readable by removing magic numbers
20884           make mixer interface export 0-100 range
20885           make it internally map to 0.0-1.0 range so users don't distort
20886           output by putting the sliders at full volume
20887
20888 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20889
20890         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
20891         (gst_play_state_change), (gst_play_seek_to_time):
20892         block the tick callback for 0.5 secs after doing a seek
20893
20894 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
20895
20896         * gst-libs/gst/play/play.c: (gst_play_new):
20897           check for GError
20898
20899 2004-02-01  Julien MOUTTE  <julien@moutte.net>
20900
20901         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
20902         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
20903         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20904         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
20905         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
20906         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
20907
20908 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
20909
20910         * configure.ac:
20911         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
20912           check for a function added in vorbis 1.1
20913
20914 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20915
20916         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
20917         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
20918           really start/stop clock only on PLAYING <=> PAUSED
20919         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
20920           remove \n from debugging lines
20921         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
20922           make it work when seeking does not
20923         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
20924           reset on DISCONT
20925
20926 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20927
20928         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
20929           start clock on PAUSED=>PLAYING, not later
20930         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
20931           extract correct time for different discont formats
20932         (gst_alsa_sink_get_time):
20933           don't segfault when no format is negotiated yet, just return 0
20934         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20935         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
20936         (gst_ogg_pad_push):
20937           handle flush and discont events correctly
20938         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
20939           handle discont events correctly
20940
20941 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
20942
20943         * gst-libs/gst/play/play.c: (gst_play_error_quark),
20944         (gst_play_error_create), (gst_play_error_plugin),
20945         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
20946         * gst-libs/gst/play/play.h:
20947           add error handling during creation
20948         * examples/gstplay/player.c: (main):
20949           use new gst_play_new
20950
20951
20952 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20953
20954         * ext/theora/theoradec.c: (theora_dec_chain):
20955           make comments work
20956         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
20957         (vorbis_dec_src_event), (vorbis_dec_chain):
20958           add encoder tag, fix tag reading to be more error tolerant, change
20959           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
20960           gst_pad_event_default.
20961         * gst/tags/gstvorbistag.c:
20962         (gst_tag_list_from_vorbiscomment_buffer):
20963           undefine function specific define at end of function
20964
20965 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
20966
20967         * ext/flac/gstflac.c: (plugin_init):
20968         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
20969         * ext/flac/gstflacdec.h:
20970         * ext/flac/gstflacenc.h:
20971           Fix typos
20972
20973 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
20974
20975         * examples/gstplay/player.c: s/gstplay.h/play.h/
20976
20977 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20978
20979         * gst-libs/gst/play/Makefile.am:
20980         * gst-libs/gst/play/gstplay.c:
20981         * gst-libs/gst/play/gstplay.h:
20982         * gst-libs/gst/play/play.c:
20983           more surgery, operation complete
20984
20985 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20986
20987         * gst-libs/gst/play/play.old.c:
20988         * gst-libs/gst/play/play.old.h:
20989           after CVS surgery by moving, remove
20990         * gst-libs/gst/play/playpipelines.c:
20991           remove
20992
20993         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
20994           add negotiation error
20995
20996 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20997
20998         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
20999         (gst_ogg_demux_push):
21000           add some seeking debug info
21001           send a flush when seeking
21002
21003 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21004
21005         * configure.ac:
21006           use AC_C_INLINE
21007         * configure.ac:
21008         * ext/Makefile.am:
21009         * ext/theora/Makefile.am:
21010         * ext/theora/theoradec.c:
21011           add theora video decoder. Does just do simple decoding for now and
21012           has been tested against Theora cvs only. It only works when theora
21013           is compiled with --enable-static.
21014         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
21015           always reset packetno on DISCONT
21016
21017 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21018
21019         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
21020           Fix audio.
21021
21022 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21023
21024         * gst/mpegaudioparse/gstmpegaudioparse.c:
21025         (mp3_type_frame_length_from_header):
21026           Fix header parsing - stolen from ffmpeg (thank you! :) ).
21027
21028 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21029
21030         * ext/esd/esdsink.c: (gst_esdsink_init):
21031           Since we have static pad template caps, we don't need to negotiate;
21032           either the core errors out or we know the format.
21033
21034 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21035
21036         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21037         (gst_riff_read_seek):
21038         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
21039         (gst_ebml_read_seek):
21040           Fix event handling.
21041
21042 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21043
21044         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
21045           removee video/x-theora from vp3 decoder, it doesn't handle raw
21046           theora streams
21047         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
21048           fix bug with finalizing element that never went to PAUSED
21049         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
21050           length and position queries were swapped
21051         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
21052         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
21053         (vorbis_dec_src_event):
21054           implement querying time and bytes
21055
21056 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
21057
21058         * just about every source file:
21059           gst_element_error -> GST_ELEMENT_ERROR
21060
21061 2004-01-29  Julien MOUTTE  <julien@moutte.net>
21062
21063         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
21064         emiting FLUSH and even before DISCONT.
21065         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
21066         get the best instant seeking as possible yay!
21067
21068 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21069
21070         * gst/mpeg1videoparse/gstmp1videoparse.c:
21071         (gst_mp1videoparse_real_chain):
21072           Committed wrong version last week... Grr... Didn't notice until now.
21073
21074 2004-01-29  Julien MOUTTE <julien@moutte.net>
21075
21076         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
21077         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
21078         have_xwindow_id signal in xwindow_create.
21079
21080 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21081
21082         * ext/ogg/gstoggdemux.c:
21083           lots of changes - mainly support for chained bitstreams, seeking,
21084           querying and bugfixes of course
21085         * ext/vorbis/Makefile.am:
21086         * ext/vorbis/vorbisdec.c:
21087         * ext/vorbis/vorbisdec.h:
21088           add vorbisdec raw vorbis decoder
21089         * ext/vorbis/vorbis.c: (plugin_init):
21090           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
21091         * gst/intfloat/Makefile.am:
21092         * gst/intfloat/float22int.c:
21093         * gst/intfloat/float22int.h:
21094         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
21095           add float2intnew plugin. It converts multichannel interleaved float to
21096           multichannel interleaved int. The name should probably be changed.
21097         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
21098         (plugin_init):
21099           add typefinding for raw theora video so oggdemux can detect it.
21100
21101 2004-01-28  Julien MOUTTE  <julien@moutte.net>
21102
21103         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
21104         sink element first.
21105         * gst/videoscale/gstvideoscale.c:
21106         (gst_videoscale_handle_src_event): Fixing src event handler.
21107
21108 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21109
21110         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
21111         (gst_v4lsrc_open), (gst_v4lsrc_close),
21112         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
21113         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
21114         * sys/v4l/gstv4lsrc.h:
21115         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
21116         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
21117           Implement resizing... Hack. But that's why v4l is b0rked...
21118
21119 2004-01-28  Julien MOUTTE <julien@moutte.net>
21120
21121         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
21122         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
21123         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
21124         (gst_ximagesink_xwindow_destroy):
21125         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
21126         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
21127         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
21128         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
21129         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
21130         correctly cleaning the image created to check xshm calls on succes,
21131         added a lot of XSync calls in X11 functions, and fixed a segfault when
21132         no image format was defined before negotiation happened.
21133
21134 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21135
21136         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
21137           use gst_element_get_time to get correct time
21138
21139 2004-01-28  Julien MOUTTE  <julien@moutte.net>
21140
21141         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
21142         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
21143         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
21144         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
21145         (gst_xvimagesink_check_xshm_calls),
21146         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
21147         X plugins are now able to detect that XShm calls will fail even if the
21148         server claims that it has XShm support (remote displays most of the
21149         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
21150         so that we use non XShm functions. This feature is almost useless for
21151         xvimagesink as Xv is not supported on remote displays anyway, but
21152         it might happen than even on the local display XShm calls fail.
21153
21154 2004-01-27  David Schleef  <ds@schleef.org>
21155
21156         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
21157         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
21158         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
21159         changed esdsink to only use 44100,16,2, since esd sucks at rate
21160         conversion and esdsink has had difficulty negotiating.
21161
21162 2004-01-27  Julien MOUTTE <julien@moutte.net>
21163
21164         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
21165         (gst_play_seek_to_time): Fixing the way to get current position.
21166
21167 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21168
21169         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
21170           use gst_element_get_time to get correct time
21171
21172 2004-01-27  Julien MOUTTE <julien@moutte.net>
21173
21174         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
21175         fix ever... Inverting 2 lines of code make spider autoplug correctly
21176         tagged mp3 !
21177
21178 2004-01-27  David Schleef  <ds@schleef.org>
21179
21180         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
21181         Use gst_pad_try_set_caps_nonfixed().
21182
21183 2004-01-27  David Schleef  <ds@schleef.org>
21184
21185         * gst/ac3parse/gstac3parse.c: update to checklist 5
21186         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
21187         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
21188         * gst/audioscale/gstaudioscale.c: same
21189         * gst/auparse/gstauparse.c: same
21190         * gst/avi/gstavidemux.c: same
21191
21192 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21193
21194         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
21195           stop processing after EOS
21196
21197 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21198
21199         * gst/asfdemux/asfheaders.h:
21200         * gst/asfdemux/gstasfdemux.c:
21201         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
21202         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
21203         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
21204           lot's of fixes to make data extraction simpler and get the code
21205           architecture and compiler independant. Add debugging category
21206         * gst/goom/gstgoom.c: (gst_goom_change_state):
21207           reset channel count on PAUSED=>READY, not READY=>PAUSED
21208
21209 2004-01-26  Colin Walters  <walters@verbum.org>
21210
21211         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
21212         code to pull a bigger buffer in iradio mode.  This as a side effect
21213         makes typefinding work.
21214
21215 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
21216
21217         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
21218         Fix SVQ3 decoding on PPC
21219
21220 2004-01-26  Julien MOUTTE <julien@moutte.net>
21221
21222         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
21223         that one managed to stay there... Fixed.
21224
21225 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
21226
21227         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
21228         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
21229         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
21230         (qtdemux_video_caps):
21231         * gst/qtdemux/qtdemux.h:
21232         Add SVQ3 specific flags to qtdemux and ffmpeg
21233
21234 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21235
21236         * gst-libs/gst/audio/audio.h:
21237           remove buffer-frames from audio caps
21238         * gst/audioconvert/gstaudioconvert.c:
21239           fix plugin to really work.
21240
21241 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21242
21243         * gst-libs/gst/mixer/mixer.c:
21244         * gst-libs/gst/propertyprobe/propertyprobe.c:
21245         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
21246         (gst_tuner_find_channel_by_name):
21247         * gst-libs/gst/tuner/tuner.h:
21248           Add gtk-doc style comments. Also fix a function name.
21249
21250 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21251
21252         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
21253         (gst_divxdec_negotiate):
21254           Fix for new capsnego - also fixes gst-player with divxdec.
21255
21256 2004-01-25  Julien MOUTTE  <julien@moutte.net>
21257
21258         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
21259         (gst_play_identity_handoff), (gst_play_set_location),
21260         (gst_play_set_visualization), (gst_play_connect_visualization): Another
21261         try in visualization implementation. Still have an issue with switch
21262         blocking when pulling from video_queue and only audio comes out of
21263         spider.
21264         * gst/switch/gstswitch.c: (gst_switch_release_pad),
21265         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
21266         release method. And check if the pad is usable before pulling.
21267
21268 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21269
21270         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
21271         (gst_videobalance_init),
21272         (gst_videobalance_colorbalance_list_channels),
21273         (gst_videobalance_colorbalance_set_value),
21274         (gst_videobalance_colorbalance_get_value),
21275         (gst_videobalance_update_properties),
21276         (gst_videobalance_update_tables_planar411),
21277         (gst_videobalance_planar411):
21278         * gst/videofilter/gstvideobalance.h:
21279           Implement lookup-tables. +/- 10x faster.
21280
21281 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21282
21283         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
21284         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
21285           The index reading was broken. The rest worked fine, but the whole
21286           goal of my rewrite was to make avidemux readable, and this was
21287           not at all readable. Please use typed variables.
21288
21289 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21290
21291         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
21292           Additional pad usability check.
21293         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
21294         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
21295         (gst_mp1videoparse_real_chain):
21296           Fix MPEG video stream parsing. The original plugin had several
21297           issues, including not timestamping streams where the source was
21298           not timestamped (this happens with PTS values in mpeg system
21299           streams, but MPEG video is also a valid stream on its own so
21300           that needs timestamps too). We use the display time code for that
21301           for now. Also, if one incoming buffer contains multiple valid
21302           frames, we push them all on correctly now, including proper EOS
21303           handling. Lastly, several potential segfaults were fixed, and we
21304           properly sync on new sequence/gop headers to include them in next,
21305           not previous frames (since they're header for the next frame, not
21306           the previous). Also see #119206.
21307         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
21308         (bpf_from_header):
21309           Move caps setting so we only do it after finding several valid
21310           MPEG-1 fraes sequentially, not right after the first one (which
21311           might be coincidental).
21312         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
21313         (mpeg_video_type_find), (mpeg_video_stream_type_find),
21314         (plugin_init):
21315           Add unsynced MPEG video stream typefinding, and change some
21316           probability values so we detect streams rightly. The idea is as
21317           follows: I can have an unsynced system stream which contains
21318           video. In the current code, I would randomly get a type for either
21319           system or video stream type found, because the probabilities are
21320           being calculated rather randomly. I now use fixed values, so we
21321           always prefer system stream if that was found (and that is how it
21322           should be). If no system stream was found, we can still identity                the stream as video-only.
21323
21324 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21325
21326         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
21327         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
21328           don't write to buffer. Extract data without the need of
21329           __attribute__ ((packed))
21330
21331 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21332
21333         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
21334         (mpeg1_sys_type_find):
21335           Fix MPEG-1 stream typefinding.
21336
21337 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21338
21339         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
21340           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
21341
21342 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21343
21344         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
21345         * ext/esd/gstesd.c: (plugin_init):
21346           private debugging, better error reporting
21347
21348 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21349
21350         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
21351         (gst_riff_read_init), (gst_riff_read_change_state):
21352         * gst-libs/gst/riff/riff-read.h:
21353           Remove stuff fromold metadata system.
21354
21355 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21356
21357         * ext/ogg/gstoggdemux.c:
21358           Fix wrong file comment.
21359         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
21360         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
21361           Add metadata reading properly.
21362
21363 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21364
21365         * ext/Makefile.am:
21366           Fix nas DIST_SUBDIRS
21367           Uraeus:
21368           Fix bug where make distcheck doesn't get run on adding stuff to
21369           the build.
21370
21371 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21372
21373         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
21374         * ext/divx/gstdivxdec.h:
21375           Fix divx3 ("msmpeg4") playback using divxdec.
21376
21377 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21378
21379         * gst/typefind/gsttypefindfunctions.c:
21380         (mp3_type_frame_length_from_header): fix bug in length computation
21381         (mp3_type_find): improve debugging output
21382
21383 2004-01-23  Julien MOUTTE  <julien@moutte.net>
21384
21385         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
21386         (gst_play_set_location), (gst_play_seek_to_time),
21387         (gst_play_set_audio_sink), (gst_play_set_visualization),
21388         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
21389         the pipeline from scratch. Visualization is back and switch went out as
21390         i realized it was not possible to use the way i wanted.
21391         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
21392         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
21393         clearing in state change from READY to NULL. So that one can clean the
21394         X ressources keeping the element.
21395         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
21396         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
21397         (gst_xvimagesink_colorbalance_set_value),
21398         (gst_xvimagesink_colorbalance_get_value),
21399         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
21400         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
21401         change from READY to NULL and fixed some stupid bugs in colorbalance
21402         get/set values. Also added the following feature : when nobody tries to
21403         set some values to the colorbalance levels before the xcontext is
21404         grabbed, then when creating channels list from Xv attributes we set the
21405         internal values to the Xv defaults. This way we handle buggy Xv drivers
21406         that set default hue values far from the middle of the range (Thanks
21407         to Jon Trowbridge for pointing that issue).
21408         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
21409         colorbalance levels have been set before xcontext is grabbed.
21410
21411 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21412
21413         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
21414           Fix the ossmixer case where we shouldn't open /dev/dsp* because
21415           it might block operations (which is bad for a mixer).
21416
21417 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
21418
21419         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
21420         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
21421         (gmip_find_type_pre):
21422         * gst-libs/gst/media-info/media-info-priv.h:
21423         * gst-libs/gst/media-info/media-info.c:
21424         (gst_media_info_instance_init), (gst_media_info_read_idler):
21425         add fakesink to get caps on decoder src pad again
21426         fix callback prototype to match new have_type signal signature
21427
21428 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
21429
21430         * gst/adder/gstadder.c: (gst_adder_link):
21431           fix non-compile and cut-n-paste code
21432
21433 2004-01-21  David Schleef  <ds@schleef.org>
21434
21435         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
21436         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
21437         (gst_swfdec_init), (gst_swfdec_change_state):
21438         * ext/swfdec/gstswfdec.h:
21439         Fix negotiation.
21440         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
21441         (gst_adder_request_new_pad): Fix negotiation.
21442         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
21443         Add a fixate function.
21444         * gst/intfloat/gstfloat2int.c:
21445         * gst/intfloat/gstfloat2int.h:
21446         * gst/intfloat/gstint2float.c:
21447         * gst/intfloat/gstint2float.h:
21448         Completely rewrite the negotiation.  Doesn't quite work yet,
21449         due to some buffer-frames problem.
21450
21451 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
21452
21453         * ext/gnomevfs/gstgnomevfssrc.c:
21454         * sys/v4l2/v4l2_calls.h:
21455           fix includes for distcheck
21456
21457 2004-01-21  Christian Schaller <uraeus@gnome.org>
21458
21459         * ext/nas/
21460         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
21461         based on earlier patch from Laurent Vivier
21462
21463 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
21464
21465         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
21466         Fix wma caps property
21467         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
21468         Fix typo (flags1 and flags2)
21469
21470 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
21471
21472         * gst-libs/gst/media-info/media-info-priv.c:
21473         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
21474         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
21475         (gmip_find_stream), (gmip_find_track_metadata),
21476         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
21477         (gmip_find_track_format):
21478         * gst-libs/gst/media-info/media-info-priv.h:
21479         * gst-libs/gst/media-info/media-info-test.c: (main):
21480         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
21481         (gst_media_info_read_idler), (gst_media_info_read):
21482         * gst-libs/gst/media-info/media-info.h:
21483           register debugging category and use it for debugging
21484
21485 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
21486
21487         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
21488         (gst_vorbisfile_new_link):
21489           signal streaminfo through tags
21490
21491 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21492
21493         * ext/mplex/gstmplex.cc:
21494         * ext/mplex/gstmplexibitstream.cc:
21495           g++ doesn't like NULL in our i18n/error macros, should be
21496           either (NULL) or ("").
21497
21498 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21499
21500         * sys/dxr3/dxr3audiosink.c:
21501         * sys/dxr3/dxr3init.c:
21502         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
21503         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
21504           Fix more error error error errors (missing includes here).
21505
21506 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21507
21508         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
21509           fix thomas' error errors.
21510
21511 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
21512
21513         * ext/mpeg2enc/gstmpeg2enc.cc:
21514           fix error errors.
21515
21516 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21517
21518         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
21519         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
21520           Fix for new error system.
21521
21522 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
21523
21524         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
21525           fix for new error reporting
21526
21527 2004-01-20  David Schleef  <ds@schleef.org>
21528
21529         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
21530         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
21531         (gst_ximagesink_set_xwindow_id): Change to using a framerate
21532         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
21533         and neither is 100+, most likely.
21534         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
21535         (gst_xvimagesink_getcaps): same
21536
21537 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21538
21539         * configure.ac:
21540           Up version requirement to 2.0.3 (not yet released) to avoid symbol
21541           clashes with ffmpeg.
21542
21543 2004-01-20  Julien MOUTTE  <julien@moutte.net>
21544
21545         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
21546         (gst_switch_init): Fixed switch element : proxying link and setting
21547         caps from src to sink on request.
21548
21549 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21550
21551         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
21552         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
21553         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
21554         fix element_error
21555
21556 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21557
21558         * sys/v4l/v4l_calls.h:
21559         * sys/v4l2/v4l2_calls.h:
21560           element_error fixes
21561
21562 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21563
21564         * gst-libs/gst/gst-i18n-plugin.h:
21565           add locale.h
21566           remove config.h inclusion
21567
21568 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21569
21570         * autogen.sh:
21571           adding autopoint invocation
21572         * Makefile.am:
21573         * configure.ac:
21574         * gst-libs/gst/gettext.h:
21575           adding gettext bits
21576         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
21577         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
21578         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
21579         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
21580         (gst_gnomevfssink_close_file):
21581         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
21582         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
21583         * gst-libs/gst/gst-i18n-plugin.h:
21584         * gst/avi/gstavi.c: (plugin_init):
21585         * sys/dxr3/dxr3init.c: (plugin_init):
21586         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
21587         * sys/oss/gstossaudio.c: (plugin_init):
21588         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
21589         * sys/v4l/gstv4l.c: (plugin_init):
21590         * sys/v4l/v4l_calls.c: (gst_v4l_open):
21591         * sys/v4l2/gstv4l2.c: (plugin_init):
21592         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
21593         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
21594         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
21595         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
21596         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
21597         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
21598           make sure locale and translation domain are set
21599           fix translated strings
21600         * po/.cvsignore:
21601         * po/LINGUAS:
21602         * po/Makevars:
21603         * po/POTFILES.in:
21604         * po/nl.po:
21605           put translation files into place
21606         * sys/xvideo/imagetest.c: (main):
21607         * ext/dv/demo-play.c: (main):
21608           fix unnecessary translations
21609
21610 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
21611
21612         * ext/sndfile/gstsf.c:
21613         * gst/avi/gstavimux.c:
21614         * ext/audiofile/gstafsink.c:
21615         * ext/audiofile/gstafsrc.c:
21616         * ext/gnomevfs/gstgnomevfssink.c:
21617         * ext/gnomevfs/gstgnomevfssrc.c:
21618         * sys/oss/gstosselement.c:
21619         * sys/v4l/v4l_calls.h:
21620           fix i18n include
21621
21622 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21623
21624         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
21625         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
21626         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
21627         (gst_v4l2_get_output), (gst_v4l2_set_output),
21628         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
21629         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
21630         (gst_v4l2_set_attribute):
21631         update to new error handling
21632
21633 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21634
21635         * ext/sidplay/gstsiddec.cc:
21636         * gst/modplug/gstmodplug.cc:
21637           parenthese NULL because C++ seems angry about it
21638
21639 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21640
21641         * gst-libs/gst/gst-i18n-plugin.h:
21642           add skeleton i18n stuff, but needs to be further implemented
21643
21644 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21645
21646         * examples/gstplay/player.c: (main):
21647         * ext/aalib/gstaasink.c: (gst_aasink_open):
21648         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
21649         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
21650         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
21651         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
21652         (gst_afsink_close_file):
21653         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
21654         (gst_afsrc_close_file):
21655         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
21656         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
21657         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
21658         * ext/esd/esdmon.c: (gst_esdmon_get):
21659         * ext/esd/esdsink.c: (gst_esdsink_chain):
21660         * ext/faac/gstfaac.c: (gst_faac_chain):
21661         * ext/faad/gstfaad.c: (gst_faad_chain):
21662         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
21663         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
21664         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
21665         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
21666         (gst_flacdec_loop):
21667         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
21668         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
21669         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
21670         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
21671         (gst_gnomevfssink_close_file):
21672         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
21673         (gst_gnomevfssrc_open_file):
21674         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
21675         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
21676         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
21677         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
21678         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
21679         * ext/mad/gstmad.c: (gst_mad_chain):
21680         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
21681         * ext/mpeg2dec/gstmpeg2dec.c:
21682         * ext/mpeg2enc/gstmpeg2enc.cc:
21683         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
21684         * ext/mplex/gstmplex.cc:
21685         * ext/mplex/gstmplexibitstream.cc:
21686         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
21687         (gst_ogg_demux_push), (gst_ogg_pad_push):
21688         * ext/raw1394/gstdv1394src.c:
21689         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
21690         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
21691         * ext/sidplay/gstsiddec.cc:
21692         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
21693         (gst_sf_loop):
21694         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
21695         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
21696         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
21697         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
21698         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
21699         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
21700         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
21701         * gst-libs/gst/Makefile.am:
21702         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
21703         (gst_riff_read_element_data), (gst_riff_read_seek),
21704         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
21705         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
21706         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
21707         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
21708         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
21709         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
21710         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
21711         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
21712         * gst/goom/gstgoom.c: (gst_goom_chain):
21713         * gst/id3/gstid3types.c: (gst_id3types_loop):
21714         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
21715         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
21716         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
21717         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
21718         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
21719         (gst_ebml_read_float), (gst_ebml_read_header):
21720         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
21721         (gst_matroska_demux_parse_blockgroup):
21722         * gst/modplug/gstmodplug.cc:
21723         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
21724         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
21725         * gst/oneton/gstoneton.c: (gst_oneton_chain):
21726         * gst/silence/gstsilence.c: (gst_silence_get):
21727         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
21728         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
21729         * gst/speed/gstspeed.c: (speed_loop):
21730         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
21731         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
21732         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
21733         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
21734         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
21735         (gst_wavparse_loop):
21736         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
21737         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
21738         (dxr3audiosink_close):
21739         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
21740         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
21741         (dxr3videosink_close), (dxr3videosink_write_data):
21742         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
21743         * sys/oss/gstosselement.h:
21744         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
21745         (gst_osssink_chain):
21746         * sys/oss/gstosssrc.c: (gst_osssrc_get):
21747         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
21748         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
21749         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
21750         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
21751         (gst_v4l_enable_overlay):
21752         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
21753         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
21754         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
21755         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
21756         (gst_v4l_set_audio):
21757         * sys/v4l/v4l_calls.h:
21758         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
21759         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
21760         (gst_v4lmjpegsink_playback_init),
21761         (gst_v4lmjpegsink_playback_start):
21762         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
21763         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
21764         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
21765         (gst_v4lmjpegsrc_requeue_frame):
21766         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
21767         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
21768         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
21769         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
21770         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
21771         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
21772         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
21773         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
21774         (gst_v4l2src_capture_stop):
21775         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
21776         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
21777         (gst_ximagesink_chain):
21778         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
21779         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
21780         (gst_xvideosink_xwindow_new):
21781         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
21782         (gst_xvimagesink_chain):
21783         use new error signal, function and categories
21784
21785 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
21786
21787         * configure.ac:
21788         * ext/Makefile.am:
21789         * ext/musicbrainz/gsttrm.c:
21790         * ext/musicbrainz/gsttrm.h:
21791         * ext/musicbrainz/Makefile.am:
21792         Add a trm plugin
21793
21794 2004-01-18  Julien MOUTTE  <julien@moutte.net>
21795
21796         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
21797         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
21798         synchronous property for debugging.
21799         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
21800         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
21801         (gst_xvimagesink_set_property): Moving a pointer declaration to a
21802         smaller block, fixing indent.
21803
21804 2004-01-16  David Schleef  <ds@schleef.org>
21805
21806         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
21807         property affects the video stream.
21808         * sys/xvimage/xvimagesink.c:
21809         * sys/xvimage/xvimagesink.h:
21810         Add synchronous property for debugging.  Should probably be
21811         disabled in non-CVS builds.  Make sure that the Xv attribute
21812         exists before we set it (crash!).  Fix a silly float bug that
21813         caused colorbalance to just not work.
21814
21815 2004-01-17  Christian Schaller <Uraeus@gnome.org>
21816
21817         * tools/gst-launch-ext.in - update for new plugins
21818
21819 2004-01-16  David Schleef  <ds@schleef.org>
21820
21821         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
21822         already-freed caps.
21823
21824 2994-01-16  Christian Schaller <Uraeus@gnome.org>
21825
21826         * Update spec for new colorspace plugin and libcaca plugin
21827         * Fix compilation of libcaca plugin (clock -> id)
21828
21829 2004-01-16  Julien MOUTTE <julien@moutte.net>
21830
21831         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
21832         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
21833         (gst_xvimagesink_set_xwindow_id),
21834         (gst_xvimagesink_colorbalance_set_value),
21835         (gst_xvimagesink_colorbalance_get_value),
21836         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
21837         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
21838         correct colorbalance properties. They can now be set when the element
21839         is still in NULL state. The values will be committed to the Xv Port
21840         when xcontext is initialized.
21841         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
21842         brightness int values in the GstXvImagesink structure.
21843
21844 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21845
21846         * gst-libs/gst/Makefile.am:
21847           restructure so having local patches works easier.
21848
21849 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21850
21851         * ext/mpeg2enc/Makefile.am:
21852         * ext/mpeg2enc/gstmpeg2enc.cc:
21853         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
21854           Bugfix with respect to EOS handling.
21855
21856 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21857
21858         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
21859           Link with right caps (else, it segfaults).
21860         * ext/mplex/gstmplexjob.cc:
21861           Fix for slight API change in 1.6.1.93 release of mjpegtools.
21862
21863 2004-01-15  David Schleef  <ds@schleef.org>
21864
21865         * gst-libs/gst/audio/Makefile.am:
21866         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
21867         from the template.
21868         * gst-libs/gst/audio/gstaudiofilter.c:
21869         * gst-libs/gst/audio/gstaudiofilter.h:
21870         Add bytes_per_sample and size and n_samples calculation.
21871         * gst-libs/gst/audio/gstaudiofilterexample.c:
21872         Remove, now autogenerated.
21873         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
21874         Moved from gstaudiofilterexample, object name changed, code added
21875         so that it actually works.
21876         * gst-libs/gst/audio/make_filter:
21877         Script to build an audiofilter subclass from the template.
21878         * gst/colorspace/Makefile.am:
21879         * gst/colorspace/yuv2yuv.c:
21880         Remove file, since it's GPL, and we don't use it.
21881
21882 2004-01-15  Julien MOUTTE  <julien@moutte.net>
21883
21884         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
21885         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
21886         them use the buffer free function to test how the buffer was allocated.
21887
21888 2004-01-15  David Schleef  <ds@schleef.org>
21889
21890         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
21891         that handles osssink fallback.
21892         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
21893         (gst_audio_convert_getcaps):
21894         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
21895         Add audio/x-qdm2 for QDM2 audio.
21896         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
21897         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
21898         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
21899         Decrease minimum size to 16x16.
21900         * gst/wavparse/gstwavparse.c:
21901         Convert disabled pad template caps to new caps.
21902         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
21903         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
21904         (gst_xvimagesink_chain): Throw element error when display cannot
21905         be opened.  Increase minimum framerate to 1.0.  Check the data
21906         free function on a buffer to make sure it is the type we expect
21907         before manipulating it.
21908
21909 2004-01-15  Julien MOUTTE <julien@moutte.net>
21910
21911         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
21912         (gst_videobalance_colorbalance_set_value): Implement passthru if
21913         settings are in the middle.
21914         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
21915
21916 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21917
21918         * gst/videofilter/Makefile.am:
21919         * gst/volume/Makefile.am:
21920           Since we use videofilter symbols, link to it.
21921
21922 2004-01-15  Julien MOUTTE <julien@moutte.net>
21923
21924         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
21925         mixer interface type to HARDWARE.
21926         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
21927         type to SOFTWARE.
21928         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
21929         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
21930         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
21931         (gst_volume_interface_init), (gst_volume_list_tracks),
21932         (gst_volume_set_volume), (gst_volume_get_volume),
21933         (gst_volume_set_mute), (gst_volume_mixer_init),
21934         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
21935         (volume_init): Implementing mixer interface.
21936         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
21937         * sys/oss/gstosselement.c: (gst_osselement_get_type),
21938         (gst_osselement_change_state): Removing some trailing commas in
21939         structures.
21940         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
21941         interface type to HARDWARE.
21942         * sys/v4l/gstv4lcolorbalance.c:
21943         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
21944         type to HARDWARE.
21945         * sys/v4l2/gstv4l2colorbalance.c:
21946         (gst_v4l2_color_balance_interface_init): Setting colorbalance
21947         interface type to HARDWARE.
21948         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
21949         same code than ximagesink for event handling.
21950
21951 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21952
21953         * ext/snapshot/Makefile.am:
21954         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
21955         (gst_snapshot_chain):
21956         * ext/snapshot/gstsnapshot.h:
21957           This has to be a joke... Snapshot should be connected to a tee,
21958           colorspace element before it and EOS after that, where the other
21959           src of the tee receives normal data.
21960           The current way is *wrong*.
21961
21962 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21963
21964         * ext/hermes/gsthermescolorspace.c:
21965           Fix another compile error. Same as below.
21966
21967 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21968
21969         * gst/colorspace/gstcolorspace.c:
21970         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
21971         (gst_colorspace_i420_to_yv12):
21972           Fix compiling... Didn't test if it actually works.
21973
21974 2004-01-15  David Schleef  <ds@schleef.org>
21975
21976         * configure.ac:
21977         * gst/colorspace/Makefile.am:
21978         * gst/colorspace/gstcolorspace.c:
21979         * gst/colorspace/gstcolorspace.h:
21980         * gst/colorspace/yuv2rgb.c:
21981         * gst/colorspace/yuv2rgb.h:
21982         Duplicate the ext/hermes colorspace plugin, and remove Hermes
21983         code and GPL code.  Fix for new caps negotiation.  Rewrite
21984         much of the format handling code, and some of the conversion
21985         code.  Basically, rewrote almost everything.  This element
21986         handles I420, YV12 to RGB conversions.
21987         * ext/hermes/Makefile.am:
21988         * ext/hermes/gsthermescolorspace.c:
21989         Rename colorspace to hermescolorspace.  Fix negotiation issues.
21990         Remove non-Hermes related code.  This element handles lots of
21991         RGB to RGB conversions, but no YUV.
21992         * ext/hermes/gstcolorspace.c:
21993         * ext/hermes/gstcolorspace.h:
21994         * ext/hermes/rgb2yuv.c:
21995         * ext/hermes/yuv2rgb.c:
21996         * ext/hermes/yuv2rgb.h:
21997         * ext/hermes/yuv2rgb_mmx16.s:
21998         * ext/hermes/yuv2yuv.c:
21999         * ext/hermes/yuv2yuv.h:
22000         Remove old code.
22001
22002 2004-01-14  Colin Walters  <walters@verbum.org>
22003
22004         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
22005         they've already been.
22006
22007 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22008
22009         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
22010           assume tag mode when pad is not connected
22011
22012 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22013
22014         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22015           Don't update the time of the clock
22016         (gst_alsa_sink_loop):
22017           sync to the clock given to alsasink, not the own clock
22018         * sys/oss/gstosssink.c: (gst_osssink_chain):
22019           sync to the clock
22020         (gst_osssink_change_state):
22021           activate the clock
22022         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
22023         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
22024           remove bogus code that made DISCONT events unhandled
22025         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
22026           explicitly case to double in _set_simple. (fixes 2nd warning in bug
22027           #131502)
22028         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
22029         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
22030         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
22031           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
22032           2nd warning in bug #131502)
22033
22034 2004-01-14  Julien MOUTTE  <julien@moutte.net>
22035
22036         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
22037         (gst_videobalance_colorbalance_set_value),
22038         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
22039         for colorbalance interface implementation.
22040         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
22041         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
22042         (gst_ximagesink_dispose), (gst_ximagesink_init),
22043         (gst_ximagesink_class_init): Adding DISPLAY property.
22044         * sys/ximage/ximagesink.h: Adding display_name to store display.
22045         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22046         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
22047         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
22048         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
22049         properties (they still need polishing though for gst-launch use : no
22050         xcontext yet, i ll do that tomorrow).
22051         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
22052
22053 2004-01-14  Julien MOUTTE  <julien@moutte.net>
22054
22055         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
22056         (gst_play_set_location), (gst_play_set_visualization): Preparing
22057         switch integration, adding videobalance in the pipeline.
22058
22059 2004-01-14  Julien MOUTTE <julien@moutte.net>
22060
22061         * gst-libs/gst/colorbalance/colorbalance.c:
22062         (gst_color_balance_class_init): Adding a default type.
22063         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
22064         the type.
22065         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
22066         (gst_videobalance_dispose), (gst_videobalance_class_init),
22067         (gst_videobalance_init), (gst_videobalance_interface_supported),
22068         (gst_videobalance_interface_init),
22069         (gst_videobalance_colorbalance_list_channels),
22070         (gst_videobalance_colorbalance_set_value),
22071         (gst_videobalance_colorbalance_get_value),
22072         (gst_videobalance_colorbalance_init): Implementing colorbalance
22073         interface.
22074         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
22075         list.
22076         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
22077         bug which was triggering a BadAccess X error when setting an overlay
22078         before pad was really negotiated.
22079         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
22080         Using the colorbalance type macro.
22081
22082 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22083
22084         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
22085         (gst_flacenc_chain):
22086           handle tags correctly
22087         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
22088           extract ID3v1 tags correctly
22089
22090 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22091
22092         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
22093         (plugin_init):
22094           Improve matroska typefinding for odd-typed headers...
22095
22096 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22097
22098         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
22099           Fix for using incremental number on padnames.
22100
22101 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22102
22103         * ext/divx/gstdivxdec.c:
22104         * ext/divx/gstdivxenc.c:
22105           Set category to divx4linux instead of divx (too generic).
22106         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
22107         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
22108         (gst_wavparse_loop), (gst_wavparse_change_state):
22109         * gst/wavparse/gstwavparse.h:
22110           fix parsing of WAV files with non-standard fmt-tag size and fix
22111           skipping of unrecognized chunks... Someone please fix this thing
22112           to use rifflib so all this is automated.
22113         * sys/v4l/Makefile.am:
22114         * sys/v4l2/Makefile.am:
22115           Add X_CFLAGS because we depend on X (for overlay).
22116
22117 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
22118
22119         * ext/mpeg2dec/gstmpeg2dec.c:
22120           Don't issue a timestamp unless we tagged the frame
22121           with a PTS.
22122
22123 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22124
22125         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
22126           Query the audio element to get the time, not the clock. We're
22127           interested in the element's time here.
22128
22129 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22130
22131         * ext/aalib/gstaasink.c: (gst_aasink_chain):
22132         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
22133         * ext/esd/esdsink.c: (gst_esdsink_chain):
22134         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
22135         * ext/mas/massink.c: (gst_massink_chain):
22136         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
22137         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
22138         (gst_matroska_demux_parse_metadata):
22139         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
22140         (gst_mpeg_parse_release_locks):
22141         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
22142         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
22143         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
22144         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
22145         (gst_osssink_change_state):
22146         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
22147         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
22148         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
22149         (gst_xvideosink_release_locks):
22150         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
22151           use element time.
22152         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
22153         (gst_alsa_clock_stop):
22154         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
22155         (gst_audio_clock_get_internal_time):
22156           simplify for use with new clocking code.
22157         * testsuite/alsa/Makefile.am:
22158         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
22159           fix testsuite for new caps system
22160
22161 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22162
22163         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
22164         * ext/flac/gstflacenc.c: (add_one_tag):
22165           length is already host endian, no need to convert. Fixes playback of
22166           tagged files on PPC. (bug #128384)
22167
22168 2004-01-13  Julien MOUTTE <julien@moutte.net>
22169
22170         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
22171         colorbalance interface stating if it is hardware based or software
22172         based.
22173         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
22174         Removing a trailing comma.
22175         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22176         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
22177         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
22178         the documentation seems to be wrong on the -1000 to 1000 interval.
22179
22180 2004-01-12  David Schleef  <ds@schleef.org>
22181
22182         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
22183         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
22184         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
22185         Fix negotiation.  Add a bufferalloc function for the sink pad,
22186         and generally clean up some of the code.
22187
22188 2004-01-12  Julien MOUTTE <julien@moutte.net>
22189
22190         * gst-libs/gst/colorbalance/colorbalancechannel.c:
22191         (gst_color_balance_channel_dispose): Adding safety check in dispose
22192         method.
22193         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
22194         (gst_xvimagesink_xcontext_clear),
22195         (gst_xvimagesink_interface_supported),
22196         (gst_xvimagesink_colorbalance_list_channels),
22197         (gst_xvimagesink_colorbalance_set_value),
22198         (gst_xvimagesink_colorbalance_get_value),
22199         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
22200         Adding colorbalance interface support to set XV parameters such as
22201         HUE, BRIGHTNESS, CONTRAST, SATURATION.
22202         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
22203         interface.
22204
22205 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22206
22207         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
22208         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
22209         (gst_audio_convert_init), (gst_audio_convert_set_property),
22210         (gst_audio_convert_get_property), (gst_audio_convert_chain),
22211         (gst_audio_convert_link),
22212         (gst_audio_convert_buffer_to_default_format),
22213         (gst_audio_convert_buffer_from_default_format), (plugin_init):
22214           - implement _getcaps and use it
22215           - improve linking
22216           - remove float caps since no float conversion is actually done
22217           - remove properties and arguments that were to be used for rate
22218             conversion
22219
22220 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22221
22222         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
22223         (gst_audio_structure_set_int):
22224         * gst-libs/gst/audio/audio.h:
22225           add helper functions for _getcaps matching the standard audio
22226           templates
22227
22228 2004-01-12  David Schleef  <ds@schleef.org>
22229
22230         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22231         Test that pad is negotiated before getting its caps.
22232
22233 2004-01-12  Julien MOUTTE <julien@moutte.net>
22234
22235         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
22236         analyzing the pads of an element the bin is mostly in READY state so
22237         no caps were negotiated. This helper function needs to work with
22238         _get_caps directly then. I was not freeing them though, added that to
22239         fix the mem leak.
22240
22241 2004-01-12  Julien MOUTTE <julien@moutte.net>
22242
22243         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
22244         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
22245         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
22246         than the free_func.
22247
22248 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22249
22250         * sys/oss/gstossaudio.c: (plugin_init):
22251         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
22252         * sys/oss/gstosselement.h:
22253           make an oss debugging category
22254           make failure more descriptive
22255
22256 2004-01-11  David Schleef  <ds@schleef.org>
22257
22258         * ext/ffmpeg/gstffmpeg.c:
22259         * ext/ffmpeg/gstffmpegcodecmap.c:
22260         * ext/ffmpeg/gstffmpegdec.c:
22261         * ext/ffmpeg/gstffmpegenc.c:
22262         * ext/ffmpeg/gstffmpegprotocol.c:
22263         * ext/gdk_pixbuf/gstgdkanimation.c:
22264         * ext/jpeg/gstjpeg.c:
22265         * ext/libpng/gstpng.c:
22266         * ext/mpeg2dec/perftest.c:
22267         * ext/speex/gstspeex.c:
22268         * gst-libs/gst/resample/dtos.c:
22269         * gst/intfloat/gstintfloatconvert.c:
22270         * gst/oneton/gstoneton.c:
22271         * gst/rtjpeg/RTjpeg.c:
22272         * gst/rtp/gstrtp.c:
22273         * sys/dxr3/dxr3init.c:
22274         * sys/glsink/gstgl_nvimage.c:
22275         * sys/glsink/gstgl_pdrimage.c:
22276         * sys/glsink/gstglsink.c:
22277         * testsuite/gst-lint:
22278         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
22279
22280 2004-01-11  David Schleef  <ds@schleef.org>
22281
22282         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
22283         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
22284         * ext/gdk_pixbuf/gstgdkanimation.c:
22285         (gst_gdk_animation_iter_create_pixbuf):
22286         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
22287         (gst_gdk_pixbuf_chain):
22288         * ext/gdk_pixbuf/gstgdkpixbuf.h:
22289         * ext/jack/gstjack.c: (gst_jack_change_state):
22290         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
22291         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
22292         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
22293         * gst/videofilter/gstvideofilter.c:
22294         (gst_videofilter_set_output_size):
22295         Remove all usage of gst_pad_get_caps(), and replace it with
22296         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
22297
22298 2004-01-11  David Schleef  <ds@schleef.org>
22299
22300         * configure.ac:
22301         * ext/Makefile.am: Fixes to make ext/libcaca compile.
22302         * ext/divx/gstdivxdec.c:
22303         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
22304         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
22305         handle images that span multiple buffers.  Now work with both
22306         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
22307         * ext/gdk_pixbuf/gstgdkpixbuf.h:
22308         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
22309         video/video.h changes
22310         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
22311         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
22312         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
22313         of GstData free function.
22314         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
22315         same.
22316
22317 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22318
22319         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
22320         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
22321         (gst_v4l2element_get_property):
22322         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
22323           add norm, channel and frequency properties.
22324         * sys/v4l2/gstv4l2tuner.c:
22325           fixes for tuner interface changes
22326         * sys/v4l2/gstv4l2element.h:
22327         * sys/v4l2/gstv4l2src.c:
22328         * sys/v4l2/gstv4l2src.h:
22329         * sys/v4l2/v4l2src_calls.c:
22330         * sys/v4l2/v4l2src_calls.h:
22331           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
22332
22333 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22334
22335         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
22336         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
22337         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
22338         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
22339         * gst-libs/gst/tuner/tuner.h:
22340           GObjects aren't const.
22341           Add find_by_name functions.
22342           Add checks to _changed functions.
22343         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
22344         (gst_v4l_tuner_get_norm):
22345           Fixes for above.
22346
22347 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22348
22349         * gst-libs/gst/video/video.h:
22350           Fix caps template names to be understandable.
22351           Prefix everything with GST_VIDEO.
22352         * ext/aalib/gstaasink.c:
22353         * ext/divx/gstdivxdec.c:
22354         * ext/divx/gstdivxenc.c:
22355         * ext/gdk_pixbuf/gstgdkpixbuf.c:
22356         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
22357         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
22358         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
22359         * ext/libcaca/gstcacasink.c:
22360         * ext/libpng/gstpngenc.c: (raw_caps_factory):
22361         * ext/snapshot/gstsnapshot.c:
22362         * ext/swfdec/gstswfdec.c:
22363         * ext/xvid/gstxviddec.c:
22364         * ext/xvid/gstxvidenc.c:
22365         * gst/chart/gstchart.c:
22366         * gst/deinterlace/gstdeinterlace.c:
22367         * gst/effectv/gsteffectv.c:
22368         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
22369         * gst/goom/gstgoom.c:
22370         * gst/median/gstmedian.c:
22371         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
22372         (gst_monoscope_srcconnect), (gst_monoscope_chain):
22373         * gst/overlay/gstoverlay.c:
22374         * gst/smooth/gstsmooth.c:
22375         * gst/smpte/gstsmpte.c:
22376         * gst/synaesthesia/gstsynaesthesia.c:
22377         * gst/videocrop/gstvideocrop.c:
22378         * gst/videodrop/gstvideodrop.c:
22379         * gst/y4m/gsty4mencode.c:
22380         * sys/qcam/gstqcamsrc.c:
22381         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
22382           Make them work with new video.h file.
22383         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
22384         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
22385         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
22386         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
22387           Make it work with new buffer allocation system.
22388
22389 2004-01-11  Julien MOUTTE  <julien@moutte.net>
22390
22391         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
22392         pad_alloc_buffer implementation to use ->srcpad
22393         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
22394         pad_alloc_buffer implementation to use ->srcpad
22395         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
22396         pad_alloc_buffer implementation to use ->srcpad
22397         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22398         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
22399         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
22400         a reference to everything we need.
22401         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
22402         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22403         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
22404         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
22405         a reference to everything we need.
22406         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
22407
22408 2004-01-11  David Schleef  <ds@schleef.org>
22409
22410         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
22411         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
22412         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
22413         structure members.
22414         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
22415         value during a resize/renegotiation.
22416         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
22417         gst_pad_alloc_buffer();
22418         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
22419         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
22420         structure members.
22421         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
22422         Fix for rename of buffer private structure members.
22423         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
22424         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
22425         Fix for rename of buffer private structure members.
22426         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
22427         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
22428         Fix for rename of buffer private structure members.
22429
22430 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
22431
22432         reviewed by: David Schleef <ds@schleef.org>
22433
22434         * gst/videofilter/Makefile.am:
22435         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
22436         from the patch by ds to fit in with recent make_filter changes.
22437
22438 2004-01-11  Julien MOUTTE  <julien@moutte.net>
22439
22440         * configure.ac: Adding examples/switch/Makefile
22441         * examples/Makefile.am: Adding examples/switch
22442         * examples/switch/Makefile.am: Adding switcher example.
22443         * examples/switch/switcher.c: (got_eos), (idle_iterate),
22444         (switch_timer), (main): Adding an example demonstrating switch usage
22445         with 2 videotestsrc showing different patterns.
22446         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
22447         (gst_switch_init): Fixing switch with the new caps system.
22448
22449 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22450
22451         * gst-libs/gst/video/video.h:
22452           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
22453           They should probably be like
22454           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
22455
22456 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22457
22458         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
22459         (qtdemux_parse_trak):
22460           fix audio chunk size/timestamp calculation
22461
22462 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22463
22464         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
22465           fix SVQ3 caps
22466
22467 2004-01-11  Steve Baker  <steve@stevebaker.org>
22468
22469         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
22470         (gst_agingtv_base_init), (gst_agingtv_class_init),
22471         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
22472         (gst_agingtv_set_property), (gst_agingtv_get_property):
22473         Port agingTV to videofilter
22474
22475 2004-01-09  Julien MOUTTE <julien@moutte.net>
22476
22477         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
22478         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
22479
22480 2004-01-09  Julien MOUTTE <julien@moutte.net>
22481
22482         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
22483         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
22484         * gst-libs/gst/xoverlay/xoverlay.c:
22485         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
22486         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
22487         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
22488         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
22489         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
22490         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
22491         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
22492         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
22493         the bufferalloc_function to replace bufferpools, fixing the XOverlay
22494         interface implementation to handle xid being 0 and fix some bugs
22495         triggered by Benjamin's testcase.
22496         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
22497         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
22498         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
22499         the bufferalloc_function to replace bufferpools, fixing the XOverlay
22500         interface implementation to handle xid being 0 and fix some bugs
22501         triggered by Benjamin's testcase.
22502
22503 2004-01-09  David Schleef  <ds@schleef.org>
22504
22505         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
22506         mouse pointer events.  It works.
22507
22508 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22509
22510         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
22511           Use explicit caps - fix capsnego.
22512         * ext/xvid/gstxviddec.c:
22513         * ext/xvid/gstxvidenc.c:
22514           Remove macro-inside-macro which caused compile errors.
22515         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
22516           Error out if it's not a RIFF file. Else we error out without
22517           gst_element_error() which is not good...
22518
22519 2004-01-08  David Schleef  <ds@schleef.org>
22520
22521         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
22522         Fix pad_link function to handle formats that ffmpeg returns
22523         as multiple caps structures.
22524         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
22525         Only complain if source buffer is _smaller_ than expected.
22526         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
22527         (gst_videoscale_handle_src_event): Resize navigation events
22528         when passing them upstream.
22529         * gst/videotestsrc/gstvideotestsrc.c:
22530         * gst/videotestsrc/gstvideotestsrc.h:
22531         * gst/videotestsrc/videotestsrc.c:
22532         * gst/videotestsrc/videotestsrc.h:
22533         Rewrite many of the buffer painting functions to handle odd
22534         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
22535         been verified to work with my video card.
22536         * testsuite/gst-lint:  Add check for elements calling
22537         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
22538
22539 2004-01-08  David Schleef  <ds@schleef.org>
22540
22541         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
22542         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
22543
22544 2004-01-08  Julien MOUTTE  <julien@moutte.net>
22545
22546         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
22547         configure event is not emiting the desired size signal. That fixes
22548         aspect ratio issues with gst-player.
22549
22550 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22551
22552         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
22553           Fix capsnego.
22554
22555 2004-01-08  Julien MOUTTE  <julien@moutte.net>
22556
22557         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
22558         public method to fire size signal.
22559
22560 2004-01-07  Julien MOUTTE  <julien@moutte.net>
22561
22562         * examples/gstplay/Makefile.am: Adding the interface library.
22563         * gst-libs/gst/play/Makefile.am: Adding the interface library.
22564         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
22565         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
22566         GST_IS_X_OVERLAY before signal connect.
22567         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
22568         Removing the have_video_size signal.
22569         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
22570         and associated public method.
22571         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
22572         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
22573         signal.
22574         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
22575         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
22576         signal.
22577         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
22578         Using XOverlay public method to fire size signal.
22579
22580 2004-01-07  David Schleef  <ds@schleef.org>
22581
22582         * gst/videofilter/Makefile.am:
22583         * gst/videofilter/gstvideotemplate.c:
22584         * gst/videofilter/make_filter:
22585         Create gstvideoexample.c in a srcdir!=builddir friendly way.
22586         Convert make_filter to /bin/sh script.
22587
22588 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
22589
22590         * gst/modplug/gstmodplug.cc: fix element description
22591
22592 2004-01-07  Julien MOUTTE  <julien@moutte.net>
22593
22594         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
22595         (got_video_size): Adding some new lines in g_print calls.
22596         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
22597         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
22598         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
22599         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
22600         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
22601         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
22602         Complete code review, reverting some stuff i disagree with, adding
22603         some fixes : time synchronization on invalid timestamps, renegotiation
22604         of private window.
22605         * sys/ximage/ximagesink.h:
22606         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
22607         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
22608         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
22609         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
22610         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
22611         (gst_xvimagesink_buffer_new),
22612         (gst_xvimagesink_navigation_send_event),
22613         (gst_xvimagesink_set_xwindow_id),
22614         (gst_xvimagesink_get_desired_size),
22615         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
22616         stuff i disagree with, adding some fixes : Renegotiation of private
22617         window, implementing get_desired_size.
22618
22619 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22620
22621         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
22622         (gst_afsink_handle_event):
22623         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
22624         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
22625         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
22626         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
22627         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
22628           Fix for instantiate-test (see core). Also remove dead code from
22629           jpegenc (which still needs fixing, but that's lower on my TODO
22630           list...).
22631         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
22632           Never return NULL as caps.
22633
22634 2004-01-07  David Schleef  <ds@schleef.org>
22635
22636         * configure.ac:
22637         * ext/Makefile.am:
22638         * ext/librfb/Makefile.am:
22639         * ext/librfb/gstrfbsrc.c:
22640         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
22641         is the protocol used by VNC.
22642
22643 2004-01-07  David Schleef  <ds@schleef.org>
22644
22645         * gst/videofilter/gstvideotemplate.c:
22646         * gst/videofilter/gstvideotemplate.h:
22647         * gst/videofilter/make_filter:
22648         Merge videotemplate header into source file.
22649         * gst/effectv/Makefile.am:
22650         * gst/effectv/gsteffectv.c: (plugin_init):
22651         * gst/effectv/gstwarp.c:
22652         Make warpTV a subclass of videofilter.
22653
22654 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22655
22656         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
22657           Add guard against invalid utf-8 conversions in mad. Just in case.
22658
22659 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22660
22661         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
22662           Fix for bug shown by poisoning
22663
22664 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22665
22666         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
22667         (gst_v4lmjpegsrc_buffer_free):
22668         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
22669         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
22670         (gst_v4lsrc_buffer_free):
22671           Fix for removed bufferpools.
22672
22673 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
22674
22675         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
22676         Fix caps negotiation.
22677
22678         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
22679         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
22680         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
22681         (dvdnavsrc_event):
22682         * ext/mpeg2dec/gstmpeg2dec.c:
22683         * gst-libs/gst/navigation/navigation.c:
22684         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
22685         * gst-libs/gst/navigation/navigation.h:
22686         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
22687         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
22688         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
22689         Super-simple first version of mouse and keyboard events. Clicking
22690         on a DVD menu now works, although it may not take you where you
22691         expected.
22692
22693         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
22694         * gst/videotestsrc/gstvideotestsrc.c:
22695         (gst_videotestsrc_src_fixate):
22696         These fixate functions were broken - they never actually
22697         fixated :)
22698
22699 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22700
22701         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
22702         (gst_icecastsend_init):
22703           fix for new caps system.
22704         * gst-libs/gst/mixer/mixertrack.h:
22705         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
22706           Add 'master track' flag (for tools like ACME that only want to
22707           change the main volume).
22708
22709 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
22710
22711         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
22712         (gst_xvid_csp_to_caps):
22713         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
22714         * ext/xvid/gstxvidenc.c:
22715         ifdef out ARGB type when it isn't available
22716         in xvidcore 1.0.0beta2
22717
22718 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22719
22720         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
22721           When we have received a new SCR right in the first buffer after
22722           a seek (so in the same cycle that handles the discont), we should
22723           handle the buffer instead of unreffing it, else we lose data.
22724
22725 2004-01-06  Iain <iain@prettypeople.org>
22726
22727         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
22728           buffer-frames caps too.
22729
22730         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
22731           caps that we need, don't destroy them all and rebuild them. And when
22732           creating src pads, use the src pad template rather than the sink...
22733
22734 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22735
22736         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
22737           Add pad to element *after* setting functions such as event handler.
22738           Without this, the scheduler (opt) will link pads, set the event
22739           handler from the default event function (dispatcher in gstpad.c)
22740           and *after* that, we will set our own event function, which will
22741           thus never be used (and thus mpegdemux doesn't handle events).
22742
22743 2004-01-04  David Schleef  <ds@schleef.org>
22744
22745         Fix the fixate functions to handle new prototype:
22746         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
22747         * gst/videotestsrc/gstvideotestsrc.c:
22748         (gst_videotestsrc_src_fixate):
22749         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
22750         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
22751         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
22752
22753 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22754
22755         * sys/ximage/ximagesink.h:
22756         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
22757         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
22758         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
22759         (gst_ximagesink_xoverlay_init):
22760           assorted fixes to make (re)embedding work
22761         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
22762         (gst_ximagesink_get_desired_size):
22763           implement desired size additions to XOverlay
22764
22765 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22766
22767         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
22768         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
22769         (gst_x_overlay_got_desired_size):
22770         * gst-libs/gst/xoverlay/xoverlay.h:
22771           Add optional "desired size" signal and querying.
22772
22773 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22774
22775         * gst/matroska/matroska-demux.c:
22776         (gst_matroska_demux_parse_blockgroup):
22777           Fix EBML-laced block parsing. Diffs are relative to previous
22778           lace, not the first lace. Thanks to Mosu from the Matroska
22779           team for detecting this.
22780         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
22781         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
22782         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
22783         (gst_wavparse_change_state):
22784         * gst/wavparse/gstwavparse.h:
22785           Quickfix for capsnego.
22786
22787 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22788
22789         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
22790           Fix indenting, fix pad creation.
22791
22792 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22793
22794         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
22795         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
22796         (gst_xviddec_sink_link):
22797           Implement src_getcaps() so proper size caps is negotiated.
22798
22799 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22800
22801         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
22802           Finish flac decoder on EOS. See #116178.
22803
22804 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22805
22806         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
22807         (gst_matroska_demux_add_stream):
22808         * gst/matroska/matroska-ids.h:
22809           Add getcaps() function to fix capsnego...
22810
22811 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22812
22813         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
22814         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
22815         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
22816           Fix more integer overflows. Again, see #126967.
22817
22818 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22819
22820         * ext/mpeg2dec/gstmpeg2dec.c:
22821           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
22822           #130416.
22823
22824 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22825
22826         * configure.ac:
22827         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
22828         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
22829         * ext/xvid/gstxvid.h:
22830         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
22831         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
22832         (gst_xviddec_src_link), (gst_xviddec_sink_link),
22833         (gst_xviddec_change_state):
22834         * ext/xvid/gstxviddec.h:
22835         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
22836         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
22837         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
22838         (gst_xvidenc_link), (gst_xvidenc_set_property),
22839         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
22840         * ext/xvid/gstxvidenc.h:
22841           Update xvid plugin to latest xvid (1.0.0-beta3) API.
22842
22843 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22844
22845         * gst/rtp/rtp-packet.c:
22846           Add sys/types.h include, since OS X doesn't define in_addr_t
22847           in netinet/in.h, like it does on Linux (see #129600).
22848
22849 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
22850
22851         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
22852
22853         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
22854           Correct logic of dispose function (see #129306).
22855
22856 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22857
22858         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
22859         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
22860         (gst_mpeg_parse_init):
22861         * gst/mpegstream/gstmpegparse.h:
22862           Remove clock (which was never provided, i.e. dead code), and
22863           also fix integer overflows at high PTS values (see #126967).
22864
22865 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22866
22867         * ext/flac/gstflacdec.c:
22868         * ext/libpng/gstpngenc.h:
22869         * ext/mikmod/gstmikmod.h:
22870           OS X fixes (see #126628).
22871
22872 2004-01-02  David Schleef  <ds@schleef.org>
22873
22874         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
22875         (gst_alsa_src_base_init): Remove bogus "src" request pad.
22876         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
22877         (gst_mpeg_parse_class_init): Move pad template registration
22878         to class_init, since the derived class (mpegdemux) doesn't
22879         want them.
22880
22881 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22882
22883         * sys/ximage/Makefile.am:
22884         * sys/xvideo/Makefile.am:
22885         * sys/xvimage/Makefile.am:
22886           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
22887           after installation (see #127664).
22888
22889 2004-01-02  David Schleef  <ds@schleef.org>
22890
22891         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
22892         (gst_ffmpegenc_connect):  Negotiation fixes.
22893         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
22894         Remove inappropriate gst_caps_free().
22895         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
22896         Reenable Ronald's internal resize code, since the core handles
22897         it correctly now.
22898
22899 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22900
22901         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
22902         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
22903         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
22904           Fix pad template stuff.
22905
22906 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22907
22908         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
22909         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
22910           fix signed integer reading/writing.
22911
22912 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22913
22914         * ext/alsa/README:
22915           Remove outdated document
22916
22917 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
22918
22919         * gst/cutter/gstcutter.c: (gst_cutter_init):
22920           src pad was being created twice - oops.
22921
22922 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22923
22924         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
22925           Comment out internal resize. It doesn't handle the resulting
22926           XEvent internally, does another try_set_caps() which leads to
22927           a really nice loop.
22928           Real fix will come when Julien and Dave are awake. ;).
22929
22930 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22931
22932         * ext/mpeg2enc/gstmpeg2enc.cc:
22933           fix const/nonconst compile issue.
22934
22935 2004-01-02  David Schleef  <ds@schleef.org>
22936
22937         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
22938         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
22939         Add fixate function and a check for bad formats.
22940
22941 2004-01-01  David Schleef  <ds@schleef.org>
22942
22943         Negotiation fixes:
22944         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
22945         (gst_audiofilter_init):
22946         * gst/debug/efence.c: (gst_efence_init):
22947         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
22948         (gst_deinterlace_init):
22949         * gst/volume/gstvolume.c: (volume_connect):
22950
22951 2004-01-01  David Schleef  <ds@schleef.org>
22952
22953         Convert elements to use gst_pad_use_explicit_caps() where
22954         appropriate:
22955         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
22956         * ext/audiofile/gstafparse.c: (gst_afparse_init),
22957         (gst_afparse_open_file):
22958         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
22959         (gst_afsrc_open_file):
22960         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
22961         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
22962         (gst_ffmpegdec_chain):
22963         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
22964         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
22965         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
22966         (gst_gdk_pixbuf_chain):
22967         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
22968         (gst_jpegdec_chain):
22969         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
22970         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
22971         (gst_mikmod_negotiate):
22972         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
22973         (gst_mpeg2dec_negotiate_format):
22974         * ext/mpeg2enc/gstmpeg2enc.cc:
22975         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
22976         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
22977         (gst_speexdec_sinkconnect):
22978         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
22979         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
22980         (gst_vorbisfile_new_link):
22981         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
22982         (gst_ac3parse_chain):
22983         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
22984         (gst_asf_demux_setup_pad):
22985         * gst/auparse/gstauparse.c: (gst_auparse_init),
22986         (gst_auparse_chain):
22987         * gst/id3/gstid3types.c: (gst_id3types_loop):
22988         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
22989         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
22990         (mp1videoparse_parse_seq):
22991         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
22992         (bpf_from_header):
22993         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
22994         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
22995         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
22996         (gst_mpeg_parse_send_data):
22997         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
22998         (gst_qtdemux_add_stream):
22999         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
23000         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
23001         (gst_wavparse_parse_fmt):
23002
23003 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23004
23005         * configure.ac:
23006           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
23007           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
23008           it therefore uses the wrong include paths. Too bad... Note
23009           that 1.6.1.93 is not release yet. ;).
23010           Also add a check for mplex, which is now using the lib'ified
23011           mplex from mjpegtools, too.
23012         * ext/ffmpeg/gstffmpegcodecmap.c:
23013           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
23014           issues. I don't think ffmpeg handles 3ivx correctly, so this
23015           probably won't work. But it won't hurt either.
23016         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
23017         (gst_ffmpegdec_chain):
23018         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
23019         (gst_ffmpegenc_chain_audio):
23020           Fix memleak in audio encoding. Close codec if open fails, this
23021           calls the cleanup routines so we can re-use the context.
23022         * ext/mpeg2enc/gstmpeg2enc.cc:
23023           Fix pad template names/types, fix memory issue with getcaps().
23024         * ext/mpeg2enc/gstmpeg2encoder.cc:
23025         * ext/mpeg2enc/gstmpeg2encoder.hh:
23026           Fix compile issue with new caps system (const thingy).
23027         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
23028         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
23029           We read a first frame right on initing, so that we have a caps
23030           when we init the output. This caps is cached in padprivate and
23031           read as first frame.
23032         * ext/mplex/Makefile.am:
23033         * ext/mplex/gstmplex.cc:
23034         * ext/mplex/gstmplex.h:
23035         * ext/mplex/gstmplex.hh:
23036         * ext/mplex/gstmplexibitstream.cc:
23037         * ext/mplex/gstmplexibitstream.hh:
23038         * ext/mplex/gstmplexjob.cc:
23039         * ext/mplex/gstmplexjob.hh:
23040         * ext/mplex/gstmplexoutputstream.cc:
23041         * ext/mplex/gstmplexoutputstream.hh:
23042           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
23043           had issues, didn't do capsnego, supported only a subset of the
23044           mplex features and required a mplex fork in our local CVS. Plus
23045           that it worked agaist a very old mplex version. Rewriting was
23046           faster than updating it.
23047         * gst-libs/ext/Makefile.am:
23048         * gst-libs/ext/mplex/INSTRUCT:
23049         * gst-libs/ext/mplex/Makefile.am:
23050         * gst-libs/ext/mplex/README:
23051         * gst-libs/ext/mplex/TODO:
23052         * gst-libs/ext/mplex/ac3strm_in.cc:
23053         * gst-libs/ext/mplex/audiostrm.hh:
23054         * gst-libs/ext/mplex/audiostrm_out.cc:
23055         * gst-libs/ext/mplex/aunit.hh:
23056         * gst-libs/ext/mplex/bits.cc:
23057         * gst-libs/ext/mplex/bits.hh:
23058         * gst-libs/ext/mplex/buffer.cc:
23059         * gst-libs/ext/mplex/buffer.hh:
23060         * gst-libs/ext/mplex/fastintfns.h:
23061         * gst-libs/ext/mplex/format_codes.h:
23062         * gst-libs/ext/mplex/inputstrm.cc:
23063         * gst-libs/ext/mplex/inputstrm.hh:
23064         * gst-libs/ext/mplex/lpcmstrm_in.cc:
23065         * gst-libs/ext/mplex/mjpeg_logging.cc:
23066         * gst-libs/ext/mplex/mjpeg_logging.h:
23067         * gst-libs/ext/mplex/mjpeg_types.h:
23068         * gst-libs/ext/mplex/mpastrm_in.cc:
23069         * gst-libs/ext/mplex/mpegconsts.cc:
23070         * gst-libs/ext/mplex/mpegconsts.h:
23071         * gst-libs/ext/mplex/mplexconsts.hh:
23072         * gst-libs/ext/mplex/multplex.cc:
23073         * gst-libs/ext/mplex/outputstream.hh:
23074         * gst-libs/ext/mplex/padstrm.cc:
23075         * gst-libs/ext/mplex/padstrm.hh:
23076         * gst-libs/ext/mplex/stillsstream.cc:
23077         * gst-libs/ext/mplex/stillsstream.hh:
23078         * gst-libs/ext/mplex/systems.cc:
23079         * gst-libs/ext/mplex/systems.hh:
23080         * gst-libs/ext/mplex/vector.cc:
23081         * gst-libs/ext/mplex/vector.hh:
23082         * gst-libs/ext/mplex/videostrm.hh:
23083         * gst-libs/ext/mplex/videostrm_in.cc:
23084         * gst-libs/ext/mplex/videostrm_out.cc:
23085         * gst-libs/ext/mplex/yuv4mpeg.cc:
23086         * gst-libs/ext/mplex/yuv4mpeg.h:
23087         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
23088         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
23089           We don't fork mjpegtools' mplex in our CVS anymore.
23090         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
23091         (gst_avi_demux_add_stream):
23092         * gst/avi/gstavidemux.h:
23093           Add getcaps() function for proper caps nego. This makes some
23094           parts of AVI playback/reading work.
23095         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
23096           Resize window on new capsnego. This is probably wrong, but
23097           I'm still committing it because with current capsnego, the
23098           first successfull capsnego is auto-fixated, therefore rounded
23099           down to the lowest values in the caps. this results in a 16x16
23100           XWindow that is not reized when real capsnego finishes.
23101           Dave, I see more cases of this, do you know a proper solution?
23102         * tools/gst-launch-ext.in:
23103           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
23104
23105 2003-12-31  David Schleef  <ds@schleef.org>
23106
23107         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
23108         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
23109           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
23110
23111 2003-12-30  David Schleef  <ds@schleef.org>
23112
23113         * ext/ffmpeg/gstffmpegcolorspace.c:
23114         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
23115         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
23116         (gst_ffmpegcsp_chain): Negotiation fixes
23117         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
23118         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
23119         (gst_audio_convert_link), (gst_audio_convert_channels):
23120         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
23121         (gst_audioscale_link), (gst_audioscale_get_buffer),
23122         (gst_audioscale_chain): Negotiation fixes
23123         * gst/audioscale/gstaudioscale.h:
23124         * gst/videofilter/gstvideofilter.c:
23125         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
23126         (gst_videofilter_link), (gst_videofilter_init),
23127         (gst_videofilter_set_output_size), (gst_videofilter_setup),
23128         (gst_videofilter_find_format_by_structure):
23129         * gst/videofilter/gstvideofilter.h: Negotiation fixes
23130         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
23131         (gst_videoscale_link):
23132         * gst/videoscale/videoscale.c: (videoscale_get_structure),
23133         (videoscale_find_by_structure), (gst_videoscale_setup):
23134         * gst/videoscale/videoscale.h: Negotiation fixes
23135         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
23136         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
23137         function, restrict resizing to a multiple of 4 (hack until
23138         everyone supports odd sizes correctly).
23139
23140 2003-12-29  Colin Walters  <walters@verbum.org>
23141
23142         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
23143         signed.
23144
23145 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
23146
23147         * ext/sndfile/gstsf.c: (gst_sf_loop):
23148           Fix warning about discarding const qualifier
23149
23150 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
23151
23152         * gst/cutter/gstcutter.c:
23153         * gst/videoscale/gstvideoscale.c:
23154         * gst/volenv/gstvolenv.c:
23155         * gst-libs/gst/audio/audio.c:
23156         * gst-libs/gst/video/video.c:
23157           Fix warnings
23158
23159 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23160
23161         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
23162           Don't send ALSA debugging to stderr.
23163         * ext/alsa/gstalsa.h:
23164           Use GST_WARNING instead of g_warning when ALSA functions fail.
23165
23166 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23167
23168         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23169           Free XVAdapterInfo correctly.
23170
23171 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23172
23173         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
23174         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
23175           Make id3tag use correct caps nego.
23176
23177 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
23178
23179         * ext/ivorbis/vorbis.c:
23180         * ext/ivorbis/vorbisenc.h:
23181         * ext/ivorbis/vorbisfile.c:
23182           Modify so that it uses the new caps things
23183
23184 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23185
23186         * testsuite/spider/spider1.c: (main):
23187         * testsuite/spider/spider2.c: (main):
23188         * testsuite/spider/spider3.c: (main):
23189           Make tests compile again. They probably don't work.
23190
23191 2003-12-24  Colin Walters  <walters@verbum.org>
23192
23193         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
23194         we can't fixate the caps anymore.
23195
23196 2003-12-23  David Schleef  <ds@schleef.org>
23197
23198         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
23199         * sys/oss/gstosssink.c: (gst_osssink_init),
23200         (gst_osssink_sink_fixate): Add fixate function.
23201
23202 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23203
23204         * ext/ffmpeg/gstffmpegcodecmap.c:
23205         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
23206         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
23207         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
23208         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
23209         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
23210         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
23211         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
23212           fix typo in RGB masks, and move back to "old" colorspace
23213           capsnego code until whoever wrote this new crap has actually
23214           tested it so that it works.
23215           And yes, this works, keep it that way please.
23216
23217 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23218
23219         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
23220         (gst_divxdec_init), (gst_divxdec_negotiate):
23221         * ext/divx/gstdivxdec.h:
23222         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
23223         (gst_divxenc_init):
23224         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
23225         (gst_faac_sinkconnect), (gst_faac_srcconnect):
23226         * ext/mpeg2enc/gstmpeg2enc.cc:
23227         * ext/mpeg2enc/gstmpeg2encoder.cc:
23228         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
23229         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
23230         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
23231         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
23232         (dxr3spusink_init):
23233         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
23234         (dxr3videosink_init):
23235           Fix caps breakage after Dave's caps branch merge.
23236
23237 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23238
23239         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
23240           Fix for 24bpp display.
23241
23242 2003-12-23  Colin Walters  <walters@verbum.org>
23243
23244         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
23245         a GnomeVFSHandle directly.
23246
23247 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23248
23249         * gst/volume/Makefile.am:
23250         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
23251         (volume_base_init), (volume_init):
23252           Reenable volume element and fix to work with new caps stuff.
23253           Rhythmbox needs this.
23254
23255 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23256
23257         * gst/qtdemux/qtdemux.c: (plugin_init):
23258           qtdemux requires bytestream
23259
23260 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23261
23262         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
23263           Fix remaining caps handling errors due to CAPS merge.
23264
23265 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23266
23267         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
23268         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
23269         (gst_faad_srcconnect):
23270           Port to new caps system.
23271
23272 2003-12-21  Julien MOUTTE  <julien@moutte.net>
23273
23274         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
23275         (got_video_size), (main): using g_print instead of g_message.
23276         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
23277         signal which was not emitted because of "switch" element added to the
23278         bin but not connected. (Removing from the bin temporarily)
23279
23280 2003-12-21  Julien MOUTTE  <julien@moutte.net>
23281
23282         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
23283         find X development files. I don't understand the previous tests and
23284         they fail on my debian/ppc unstable. This one works.
23285         * examples/gstplay/player.c: (main): Set the pipeline to READY before
23286         exiting.
23287         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
23288         (gst_play_set_video_sink), (gst_play_set_audio_sink),
23289         (gst_play_set_visualization): Add some safety checks in set_ methods
23290         and state_change. This was throwing some ugly CRITICAL messages when
23291         pipeline was getting disposed and casts were failing.
23292
23293 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23294
23295         * configure.ac:
23296           Improve mpeg2enc detection. This is for distributions that do
23297           ship mjpegtools, but without mpeg2enc. Also does object check
23298           for might there ever be ABI incompatibility.
23299         * ext/mpeg2enc/gstmpeg2enc.cc:
23300           Add Andrew as second maintainer (he's helping me), and also add
23301           an error if no caps was set. This happens if I pull before capsnego
23302           and that's something I should solve sometime else.
23303         * gst/matroska/matroska-demux.c:
23304         (gst_matroska_demux_parse_blockgroup):
23305           Fix time parsing.
23306         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
23307         (gst_matroska_mux_track_header):
23308           Add caps to templates.
23309         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
23310           Add mpegversion=1 to prevent confusion with MPEG/AAC.
23311         * gst/mpegstream/gstmpegdemux.c:
23312           Remove layer since it causes warnings about unfixed caps.
23313         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23314           Fix obvious typo (we error out if caps were set, we should of
23315           course error out if *no* caps were set).
23316         * sys/oss/gstosselement.c: (gst_osselement_convert):
23317           Fix format conversion, we confused bits/bytes.
23318         * sys/oss/gstosselement.h:
23319           Improve documentation for 'bps'.
23320         * sys/v4l/TODO:
23321           Remove stuff about plugins that need removing - this was done
23322           ages ago.
23323         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
23324         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
23325         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
23326         (gst_v4lsrc_src_query):
23327         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
23328         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
23329           Add get_query_types(), get_formats() and query() functions.
23330
23331 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
23332
23333         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
23334         * moved CVS to freedesktop.org